From 130584c4e2b3dd55b9312ae67a7fc7b39fbd5b10 Mon Sep 17 00:00:00 2001 From: SyntaX Date: Thu, 21 Nov 2019 10:41:57 +0100 Subject: [PATCH 01/14] - using getter for receiving values from globals (pill _max) --- Characters/Player/UI/UI.gd | 2 +- Global/Pills.gd | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Characters/Player/UI/UI.gd b/Characters/Player/UI/UI.gd index 6de3907..ab6b794 100644 --- a/Characters/Player/UI/UI.gd +++ b/Characters/Player/UI/UI.gd @@ -11,7 +11,7 @@ func _ready(): _pillLevel = get_node("TextureProgress") # TODO: may use global values in Inspector? - _pillLevel.max_value = Pills._max + _pillLevel.max_value = Pills.get_max() func add_item (name): diff --git a/Global/Pills.gd b/Global/Pills.gd index 8b78ea3..dc13e77 100644 --- a/Global/Pills.gd +++ b/Global/Pills.gd @@ -8,8 +8,13 @@ var _decrease_per_second: float = 0.2 var _pill_add_amount: float = 2.0 +# Returns the max level +func get_max() -> float: + return _max + + # Returns the exact current level as a floating point number between min and max -func get_level(): +func get_level() -> float: return _level From 41e2d5b0962b0cb54762832cc384e9ea69f5b2db Mon Sep 17 00:00:00 2001 From: SyntaX Date: Thu, 21 Nov 2019 11:25:59 +0100 Subject: [PATCH 02/14] moved "taking pill" to own script --- Characters/Player/PillTaker.gd | 16 ++++++++++++++++ Characters/Player/Player.gd | 7 ------- Characters/Player/Player.tscn | 18 ++++++++++++++++-- 3 files changed, 32 insertions(+), 9 deletions(-) create mode 100644 Characters/Player/PillTaker.gd diff --git a/Characters/Player/PillTaker.gd b/Characters/Player/PillTaker.gd new file mode 100644 index 0000000..3c4a5f6 --- /dev/null +++ b/Characters/Player/PillTaker.gd @@ -0,0 +1,16 @@ +extends Node + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta): + # Taking a pill + if Input.is_action_just_pressed("take_pill"): + Pills.take_pill() + Logger.info("Player took a pill; new level: %s" % [Pills.get_round_level()]) diff --git a/Characters/Player/Player.gd b/Characters/Player/Player.gd index e3a35d8..501922b 100644 --- a/Characters/Player/Player.gd +++ b/Characters/Player/Player.gd @@ -82,13 +82,6 @@ func process_input(): # sprinting _is_sprinting = Input.is_action_pressed("move_sprint") - - # Taking a pill - # TODO: Should be moved to a different component which only handles pills - this script should only do movement - # Only here for testing purposes! - if Input.is_action_just_pressed("take_pill"): - Pills.take_pill() - Logger.info("Player took a pill; new level: %s" % [Pills.get_round_level()]) func process_movement(delta): diff --git a/Characters/Player/Player.tscn b/Characters/Player/Player.tscn index ce01d52..092add3 100644 --- a/Characters/Player/Player.tscn +++ b/Characters/Player/Player.tscn @@ -1,9 +1,10 @@ -[gd_scene load_steps=8 format=2] +[gd_scene load_steps=10 format=2] [ext_resource path="res://Characters/Player/Player.gd" type="Script" id=1] [ext_resource path="res://Characters/Player/Footsteps.gd" type="Script" id=2] [ext_resource path="res://Resources/Audio/Step.wav" type="AudioStream" id=3] [ext_resource path="res://Characters/Player/UI/UI.tscn" type="PackedScene" id=4] +[ext_resource path="res://Characters/Player/PillTaker.gd" type="Script" id=5] [sub_resource type="CylinderShape" id=1] @@ -45,6 +46,8 @@ tracks/1/keys = { audio_stream = ExtResource( 3 ) random_pitch = 1.3 +[sub_resource type="CapsuleMesh" id=4] + [node name="Player" type="KinematicBody" groups=[ "Player", ]] @@ -63,7 +66,7 @@ transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0625, 1.85, 0 ) current = true [node name="LookingAt" type="RayCast" parent="Body/Camera"] -transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0 ) +transform = Transform( -1, 0, -8.74228e-008, 0, 1, 0, 8.74228e-008, 0, -1, 0, 0, 0 ) enabled = true cast_to = Vector3( 0, 0, 2 ) @@ -89,4 +92,15 @@ pitch_scale = 1.5 [node name="HUD" parent="." instance=ExtResource( 4 )] +[node name="PillTaker" type="Node" parent="."] +script = ExtResource( 5 ) + +[node name="Pill" type="Spatial" parent="PillTaker"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1 ) + +[node name="MeshInstance" type="MeshInstance" parent="PillTaker/Pill"] +transform = Transform( 0.1, 0, 0, 0, -4.37114e-009, -0.1, 0, 0.1, -4.37114e-009, 0, 0, 0 ) +mesh = SubResource( 4 ) +material/0 = null + [editable path="HUD"] From 4c683444ddcb3290a3ef364082fbce2a4c9d3a9c Mon Sep 17 00:00:00 2001 From: SyntaX Date: Thu, 21 Nov 2019 11:28:48 +0100 Subject: [PATCH 03/14] PillTaker is now a spacial (due to its child need a position) --- Characters/Player/PillTaker.gd | 9 +-------- Characters/Player/Player.tscn | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Characters/Player/PillTaker.gd b/Characters/Player/PillTaker.gd index 3c4a5f6..b5221cf 100644 --- a/Characters/Player/PillTaker.gd +++ b/Characters/Player/PillTaker.gd @@ -1,12 +1,5 @@ -extends Node +extends Spatial -# Declare member variables here. Examples: -# var a = 2 -# var b = "text" - -# Called when the node enters the scene tree for the first time. -func _ready(): - pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta): diff --git a/Characters/Player/Player.tscn b/Characters/Player/Player.tscn index 092add3..df0ac88 100644 --- a/Characters/Player/Player.tscn +++ b/Characters/Player/Player.tscn @@ -92,7 +92,7 @@ pitch_scale = 1.5 [node name="HUD" parent="." instance=ExtResource( 4 )] -[node name="PillTaker" type="Node" parent="."] +[node name="PillTaker" type="Spatial" parent="."] script = ExtResource( 5 ) [node name="Pill" type="Spatial" parent="PillTaker"] From 09e0f325030744a77d4220288eaa6408e2922c99 Mon Sep 17 00:00:00 2001 From: karl Date: Thu, 21 Nov 2019 12:19:03 +0100 Subject: [PATCH 04/14] Add shader which mixes true and masked view Player now has 2 cameras (one true, one masked), each with a viewport, which the shader alternates between based on the Pill factor. --- Characters/Player/PillCameras.gd | 8 ++++ Characters/Player/Player.gd | 3 +- Characters/Player/Player.tscn | 80 ++++++++++++++++++++++++------- Global/Pills.gd | 10 ++++ Shaders/PillScreenRenderer.shader | 11 +++++ 5 files changed, 94 insertions(+), 18 deletions(-) create mode 100644 Characters/Player/PillCameras.gd create mode 100644 Shaders/PillScreenRenderer.shader diff --git a/Characters/Player/PillCameras.gd b/Characters/Player/PillCameras.gd new file mode 100644 index 0000000..b4835b7 --- /dev/null +++ b/Characters/Player/PillCameras.gd @@ -0,0 +1,8 @@ +extends Spatial + + +onready var screen_texture = get_node("ScreenTexture") as ColorRect + + +func _process(delta: float) -> void: + screen_texture.material.set_shader_param("mask_factor", Pills.get_level() / Pills.get_max()) \ No newline at end of file diff --git a/Characters/Player/Player.gd b/Characters/Player/Player.gd index 501922b..fa722b6 100644 --- a/Characters/Player/Player.gd +++ b/Characters/Player/Player.gd @@ -5,6 +5,7 @@ export(NodePath) var body_nodepath export(NodePath) var lookingAt_nodepath export(NodePath) var animation_nodepath export(NodePath) var ui_interact_nodepath +export(NodePath) var camera_nodepath export(int) var keycard_lvl export(Array) var key_chain @@ -36,7 +37,7 @@ func _ready(): _body = get_node(body_nodepath) as Spatial # = $Body assert(null != _body) - _camera = $Body/Camera + _camera = get_node(camera_nodepath) assert(null != _camera) _animation = get_node(animation_nodepath) as AnimationPlayer diff --git a/Characters/Player/Player.tscn b/Characters/Player/Player.tscn index df0ac88..5a5cf32 100644 --- a/Characters/Player/Player.tscn +++ b/Characters/Player/Player.tscn @@ -1,10 +1,25 @@ -[gd_scene load_steps=10 format=2] +[gd_scene load_steps=15 format=2] [ext_resource path="res://Characters/Player/Player.gd" type="Script" id=1] -[ext_resource path="res://Characters/Player/Footsteps.gd" type="Script" id=2] -[ext_resource path="res://Resources/Audio/Step.wav" type="AudioStream" id=3] -[ext_resource path="res://Characters/Player/UI/UI.tscn" type="PackedScene" id=4] -[ext_resource path="res://Characters/Player/PillTaker.gd" type="Script" id=5] +[ext_resource path="res://Characters/Player/PillCameras.gd" type="Script" id=2] +[ext_resource path="res://Shaders/PillScreenRenderer.shader" type="Shader" id=3] +[ext_resource path="res://Characters/Player/Footsteps.gd" type="Script" id=4] +[ext_resource path="res://Resources/Audio/Step.wav" type="AudioStream" id=5] +[ext_resource path="res://Characters/Player/UI/UI.tscn" type="PackedScene" id=6] +[ext_resource path="res://Characters/Player/PillTaker.gd" type="Script" id=7] + +[sub_resource type="ViewportTexture" id=7] +viewport_path = NodePath("Body/PillCameras/MaskedView") + +[sub_resource type="ViewportTexture" id=8] +viewport_path = NodePath("Body/PillCameras/TrueView") + +[sub_resource type="ShaderMaterial" id=6] +resource_local_to_scene = true +shader = ExtResource( 3 ) +shader_param/mask_factor = 0.5 +shader_param/true_view = SubResource( 8 ) +shader_param/masked_view = SubResource( 7 ) [sub_resource type="CylinderShape" id=1] @@ -13,7 +28,7 @@ resource_name = "Walk" length = 0.8 loop = true tracks/0/type = "value" -tracks/0/path = NodePath("Body/Camera:translation") +tracks/0/path = NodePath("Body/PillCameras:translation") tracks/0/interp = 2 tracks/0/loop_wrap = true tracks/0/imported = false @@ -43,7 +58,7 @@ tracks/1/keys = { } [sub_resource type="AudioStreamRandomPitch" id=3] -audio_stream = ExtResource( 3 ) +audio_stream = ExtResource( 5 ) random_pitch = 1.3 [sub_resource type="CapsuleMesh" id=4] @@ -55,24 +70,55 @@ collision_layer = 5 collision_mask = 5 script = ExtResource( 1 ) body_nodepath = NodePath("Body") -lookingAt_nodepath = NodePath("Body/Camera/LookingAt") +lookingAt_nodepath = NodePath("Body/PillCameras/LookingAt") animation_nodepath = NodePath("AnimationPlayer") ui_interact_nodepath = NodePath("HUD/PressInteract") +camera_nodepath = NodePath("Body/PillCameras") [node name="Body" type="Spatial" parent="."] -[node name="Camera" type="Camera" parent="Body"] +[node name="PillCameras" type="Spatial" parent="Body"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0625, 1.85, 0 ) -current = true +script = ExtResource( 2 ) -[node name="LookingAt" type="RayCast" parent="Body/Camera"] -transform = Transform( -1, 0, -8.74228e-008, 0, 1, 0, 8.74228e-008, 0, -1, 0, 0, 0 ) +[node name="LookingAt" type="RayCast" parent="Body/PillCameras"] +transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 0, 0, 0 ) enabled = true cast_to = Vector3( 0, 0, 2 ) -[node name="Listener" type="Listener" parent="Body/Camera"] +[node name="Listener" type="Listener" parent="Body/PillCameras"] current = true +[node name="TrueView" type="Viewport" parent="Body/PillCameras"] +size = Vector2( 1024, 600 ) +render_target_update_mode = 3 + +[node name="TrueCamera" type="Camera" parent="Body/PillCameras/TrueView"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0625, 1.85, 0 ) +cull_mask = 2 +current = true + +[node name="MaskedView" type="Viewport" parent="Body/PillCameras"] +size = Vector2( 1024, 600 ) +render_target_update_mode = 3 + +[node name="MaskedCamera" type="Camera" parent="Body/PillCameras/MaskedView"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0625, 1.85, 0 ) +cull_mask = 1 +current = true + +[node name="ScreenTexture" type="ColorRect" parent="Body/PillCameras"] +material = SubResource( 6 ) +anchor_right = 1.0 +anchor_bottom = 1.0 +mouse_filter = 2 + +[node name="TrueCameraRemoteTransform" type="RemoteTransform" parent="Body/PillCameras"] +remote_path = NodePath("../TrueView/TrueCamera") + +[node name="MaskedCameraRemoteTransform" type="RemoteTransform" parent="Body/PillCameras"] +remote_path = NodePath("../MaskedView/MaskedCamera") + [node name="Collider" type="CollisionShape" parent="."] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0 ) shape = SubResource( 1 ) @@ -82,7 +128,7 @@ autoplay = "Walk" anims/Walk = SubResource( 2 ) [node name="Footsteps" type="Spatial" parent="."] -script = ExtResource( 2 ) +script = ExtResource( 4 ) [node name="Footstep1" type="AudioStreamPlayer3D" parent="Footsteps"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1 ) @@ -90,16 +136,16 @@ stream = SubResource( 3 ) unit_db = -25.0 pitch_scale = 1.5 -[node name="HUD" parent="." instance=ExtResource( 4 )] +[node name="HUD" parent="." instance=ExtResource( 6 )] [node name="PillTaker" type="Spatial" parent="."] -script = ExtResource( 5 ) +script = ExtResource( 7 ) [node name="Pill" type="Spatial" parent="PillTaker"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1 ) [node name="MeshInstance" type="MeshInstance" parent="PillTaker/Pill"] -transform = Transform( 0.1, 0, 0, 0, -4.37114e-009, -0.1, 0, 0.1, -4.37114e-009, 0, 0, 0 ) +transform = Transform( 0.1, 0, 0, 0, -4.37114e-09, -0.1, 0, 0.1, -4.37114e-09, 0, 0, 0 ) mesh = SubResource( 4 ) material/0 = null diff --git a/Global/Pills.gd b/Global/Pills.gd index dc13e77..d787b07 100644 --- a/Global/Pills.gd +++ b/Global/Pills.gd @@ -7,6 +7,16 @@ var _max: float = 6.0 var _decrease_per_second: float = 0.2 var _pill_add_amount: float = 2.0 +enum LEVELS { + SOBRE = 0, + VERY_LOW = 1, + LOW = 2, + MEDIUM = 3, + HIGH = 4, + VERY_HIGH = 5, + FULL = 6 +} + # Returns the max level func get_max() -> float: diff --git a/Shaders/PillScreenRenderer.shader b/Shaders/PillScreenRenderer.shader new file mode 100644 index 0000000..b69a06f --- /dev/null +++ b/Shaders/PillScreenRenderer.shader @@ -0,0 +1,11 @@ +shader_type canvas_item; + +uniform sampler2D true_view; +uniform sampler2D masked_view; + +uniform float mask_factor; + +void fragment() { + // Add the masked view and the true view depending on the factor + COLOR = (1.0f - mask_factor) * texture(true_view, SCREEN_UV) + mask_factor * texture(masked_view, SCREEN_UV); +} \ No newline at end of file From d16f88f39bcf3d299547c25fbcb7868714154a60 Mon Sep 17 00:00:00 2001 From: SyntaX Date: Thu, 21 Nov 2019 12:22:55 +0100 Subject: [PATCH 05/14] added animation for PillTaking --- Characters/Player/Player.tscn | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Characters/Player/Player.tscn b/Characters/Player/Player.tscn index df0ac88..bff4077 100644 --- a/Characters/Player/Player.tscn +++ b/Characters/Player/Player.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=10 format=2] +[gd_scene load_steps=11 format=2] [ext_resource path="res://Characters/Player/Player.gd" type="Script" id=1] [ext_resource path="res://Characters/Player/Footsteps.gd" type="Script" id=2] @@ -8,6 +8,16 @@ [sub_resource type="CylinderShape" id=1] +[sub_resource type="Animation" id=5] +resource_name = "PillTaking" +tracks/0/type = "transform" +tracks/0/path = NodePath("PillTaker/Pill") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = PoolRealArray( ) + [sub_resource type="Animation" id=2] resource_name = "Walk" length = 0.8 @@ -79,6 +89,7 @@ shape = SubResource( 1 ) [node name="AnimationPlayer" type="AnimationPlayer" parent="."] autoplay = "Walk" +anims/PillTaking = SubResource( 5 ) anims/Walk = SubResource( 2 ) [node name="Footsteps" type="Spatial" parent="."] From 92c8e66e63e0e921886530f55bdce56d233ee833 Mon Sep 17 00:00:00 2001 From: karl Date: Thu, 21 Nov 2019 12:36:41 +0100 Subject: [PATCH 06/14] Collision also changes depending on pill status Corresponds to visibility --- Characters/Player/PillCameras.gd | 4 +++- Characters/Player/Player.gd | 13 +++++++++++++ Characters/Player/Player.tscn | 4 ++-- Level/Buildings/BuildingBlock.tscn | 10 +++++++++- Level/World.tscn | 28 ++++++++++++++++------------ 5 files changed, 43 insertions(+), 16 deletions(-) diff --git a/Characters/Player/PillCameras.gd b/Characters/Player/PillCameras.gd index b4835b7..b12f92c 100644 --- a/Characters/Player/PillCameras.gd +++ b/Characters/Player/PillCameras.gd @@ -5,4 +5,6 @@ onready var screen_texture = get_node("ScreenTexture") as ColorRect func _process(delta: float) -> void: - screen_texture.material.set_shader_param("mask_factor", Pills.get_level() / Pills.get_max()) \ No newline at end of file + # The factor is 0 when the level is between 0% and 20%; 1 when the level is between 80% and 100%; lerp inbetween + var factor = clamp((Pills.get_level() / Pills.get_max() * 1.4 - 0.2), 0.0, 1.0) + screen_texture.material.set_shader_param("mask_factor", factor) \ No newline at end of file diff --git a/Characters/Player/Player.gd b/Characters/Player/Player.gd index fa722b6..39fd975 100644 --- a/Characters/Player/Player.gd +++ b/Characters/Player/Player.gd @@ -54,6 +54,7 @@ func _ready(): func _physics_process(delta): process_input() process_movement(delta) + process_collision_layers() func _process(_delta): check_interact() @@ -102,6 +103,18 @@ func process_animations(): _animation.playback_speed = _vel.length() / MOVE_SPEED +func process_collision_layers(): + var new_layer: int = 6 + + if Pills.get_level() >= Pills.LEVELS.LOW: + # If the masked view is almost invisible, collision with masked objects is disabled + new_layer -= 1 # See collision layer names in editor + + print(new_layer) + collision_layer = new_layer + collision_mask = new_layer + + func check_interact(): if _lookCast.is_colliding(): var collider = _lookCast.get_collider() diff --git a/Characters/Player/Player.tscn b/Characters/Player/Player.tscn index 5a5cf32..e1d1ec9 100644 --- a/Characters/Player/Player.tscn +++ b/Characters/Player/Player.tscn @@ -66,8 +66,8 @@ random_pitch = 1.3 [node name="Player" type="KinematicBody" groups=[ "Player", ]] -collision_layer = 5 -collision_mask = 5 +collision_layer = 7 +collision_mask = 7 script = ExtResource( 1 ) body_nodepath = NodePath("Body") lookingAt_nodepath = NodePath("Body/PillCameras/LookingAt") diff --git a/Level/Buildings/BuildingBlock.tscn b/Level/Buildings/BuildingBlock.tscn index 3610afc..a1bba60 100644 --- a/Level/Buildings/BuildingBlock.tscn +++ b/Level/Buildings/BuildingBlock.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=3 format=2] +[gd_scene load_steps=4 format=2] [sub_resource type="CubeMesh" id=1] size = Vector3( 26, 12, 14 ) @@ -6,9 +6,17 @@ size = Vector3( 26, 12, 14 ) [sub_resource type="SpatialMaterial" id=2] albedo_color = Color( 1, 0.917647, 0.537255, 1 ) +[sub_resource type="ConcavePolygonShape" id=3] +data = PoolVector3Array( -13, 6, 7, 13, 6, 7, -13, -6, 7, 13, 6, 7, 13, -6, 7, -13, -6, 7, 13, 6, -7, -13, 6, -7, 13, -6, -7, -13, 6, -7, -13, -6, -7, 13, -6, -7, 13, 6, 7, 13, 6, -7, 13, -6, 7, 13, 6, -7, 13, -6, -7, 13, -6, 7, -13, 6, -7, -13, 6, 7, -13, -6, -7, -13, 6, 7, -13, -6, 7, -13, -6, -7, 13, 6, 7, -13, 6, 7, 13, 6, -7, -13, 6, 7, -13, 6, -7, 13, 6, -7, -13, -6, 7, 13, -6, 7, -13, -6, -7, 13, -6, 7, 13, -6, -7, -13, -6, -7 ) + [node name="BuildingBlock" type="Spatial"] [node name="MeshInstance" type="MeshInstance" parent="."] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6, 0 ) mesh = SubResource( 1 ) material/0 = SubResource( 2 ) + +[node name="StaticBody" type="StaticBody" parent="MeshInstance"] + +[node name="CollisionShape" type="CollisionShape" parent="MeshInstance/StaticBody"] +shape = SubResource( 3 ) diff --git a/Level/World.tscn b/Level/World.tscn index c3ab6d1..207342f 100644 --- a/Level/World.tscn +++ b/Level/World.tscn @@ -10,24 +10,24 @@ [ext_resource path="res://Characters/Util/PathNavigatorForNPC.tscn" type="PackedScene" id=8] [ext_resource path="res://Characters/Meldewesen/Meldewesen.tscn" type="PackedScene" id=9] -[sub_resource type="NavigationMesh" id=3] +[sub_resource type="NavigationMesh" id=1] vertices = PoolVector3Array( -189.32, 0.2, -228.061, -184.22, 0.2, -228.061, -189.62, 0.2, -237.061, -197.12, 0.2, -226.261, -189.32, 0.2, -228.061, -189.62, 0.2, -237.061, -321.32, 0.2, -353.761, -331.82, 0.2, -353.761, -331.82, 0.2, -344.161, -203.12, 0.2, -223.561, -197.12, 0.2, -226.261, -189.62, 0.2, -237.061, -321.32, 0.2, -353.761, -331.82, 0.2, -344.161, -331.82, 0.2, -334.261, -203.12, 0.2, -223.561, -189.62, 0.2, -237.061, -192.02, 0.2, -246.361, -209.42, 0.2, -219.061, -310.82, 0.2, -353.761, -321.32, 0.2, -353.761, -331.82, 0.2, -334.261, -331.82, 0.2, -324.661, -331.82, 0.2, -226.561, -331.82, 0.2, -216.661, -220.82, 0.2, -201.361, -185.42, 0.2, -272.461, -225.62, 0.2, -353.761, -236.42, 0.2, -353.761, -214.52, 0.2, -213.661, -209.42, 0.2, -219.061, -192.02, 0.2, -246.361, -192.02, 0.2, -255.361, -300.32, 0.2, -353.761, -310.82, 0.2, -353.761, -331.82, 0.2, -324.661, -331.82, 0.2, -314.761, -257.72, 0.2, -353.761, -268.22, 0.2, -353.761, -331.82, 0.2, -285.361, -331.82, 0.2, -275.461, -189.92, 0.2, -264.061, -185.42, 0.2, -272.461, -236.42, 0.2, -353.761, -246.92, 0.2, -353.761, -217.52, 0.2, -209.161, -214.52, 0.2, -213.661, -192.02, 0.2, -255.361, -189.92, 0.2, -264.061, -289.52, 0.2, -353.761, -300.32, 0.2, -353.761, -331.82, 0.2, -314.761, -331.82, 0.2, -305.161, -257.72, 0.2, -353.761, -331.82, 0.2, -265.861, -331.82, 0.2, -255.961, -331.82, 0.2, -226.561, -220.82, 0.2, -201.361, -217.52, 0.2, -209.161, -331.82, 0.2, -236.161, -165.32, 0.2, -286.861, -161.42, 0.2, -287.461, -161.72, 0.2, -353.761, -172.52, 0.2, -353.761, -331.82, 0.2, -206.761, -331.82, 0.2, -196.861, -221.72, 0.2, -196.261, -170.12, 0.2, -285.061, -165.32, 0.2, -286.861, -172.52, 0.2, -353.761, -183.02, 0.2, -353.761, -331.82, 0.2, -206.761, -221.72, 0.2, -196.261, -220.82, 0.2, -201.361, -331.82, 0.2, -216.661, -279.02, 0.2, -353.761, -289.52, 0.2, -353.761, -331.82, 0.2, -305.161, -331.82, 0.2, -295.261, -170.12, 0.2, -285.061, -183.02, 0.2, -353.761, -193.82, 0.2, -353.761, -177.62, 0.2, -280.561, -170.12, 0.2, -285.061, -193.82, 0.2, -353.761, -204.32, 0.2, -353.761, -189.92, 0.2, -264.061, -246.92, 0.2, -353.761, -257.72, 0.2, -353.761, -331.82, 0.2, -255.961, -331.82, 0.2, -246.061, -217.52, 0.2, -209.161, -331.82, 0.2, -246.061, -331.82, 0.2, -236.161, -217.52, 0.2, -209.161, -177.62, 0.2, -280.561, -204.32, 0.2, -353.761, -215.12, 0.2, -353.761, -279.02, 0.2, -353.761, -331.82, 0.2, -295.261, -331.82, 0.2, -285.361, -268.22, 0.2, -353.761, -185.42, 0.2, -272.461, -177.62, 0.2, -280.561, -215.12, 0.2, -353.761, -225.62, 0.2, -353.761, -257.72, 0.2, -353.761, -331.82, 0.2, -275.461, -331.82, 0.2, -265.861, -161.72, 0.2, -353.761, -161.42, 0.2, -287.461, -159.32, 0.2, -288.061, -155.12, 0.2, -353.761, -150.92, 0.2, -288.061, -148.52, 0.2, -287.461, -148.22, 0.2, -353.761, -150.92, 0.2, -288.061, -148.22, 0.2, -353.761, -155.12, 0.2, -353.761, -159.32, 0.2, -288.061, -123.92, 0.2, -271.561, -122.42, 0.2, -268.561, -121.82, 0.2, -270.061, -123.92, 0.2, -271.561, -121.82, 0.2, -270.061, -120.32, 0.2, -271.261, -127.52, 0.2, -276.061, -123.92, 0.2, -271.561, -120.32, 0.2, -271.261, -114.02, 0.2, -271.261, -138.02, 0.2, -353.761, -148.52, 0.2, -287.461, -141.32, 0.2, -285.661, -127.82, 0.2, -353.761, -127.52, 0.2, -276.061, -114.02, 0.2, -271.261, -107.42, 0.2, -271.261, -134.42, 0.2, -282.061, -117.62, 0.2, -353.761, -127.82, 0.2, -353.761, -141.32, 0.2, -285.661, -141.32, 0.2, -285.661, -134.42, 0.2, -282.061, -107.42, 0.2, -271.261, -107.12, 0.2, -353.761, -117.62, 0.2, -353.761, -138.02, 0.2, -353.761, -148.22, 0.2, -353.761, -148.52, 0.2, -287.461, -103.82, 0.2, -269.461, -103.82, 0.2, -259.261, -94.2196, 0.2, -259.261, -103.82, 0.2, -269.461, -94.2196, 0.2, -259.261, -84.3196, 0.2, -259.261, -105.62, 0.2, -271.261, -103.82, 0.2, -269.461, -84.3196, 0.2, -259.261, -75.3196, 0.2, -259.261, -86.1196, 0.2, -353.761, -96.6196, 0.2, -353.761, -105.62, 0.2, -271.261, -105.62, 0.2, -271.261, -75.3196, 0.2, -259.261, -65.4196, 0.2, -259.261, -65.1196, 0.2, -353.761, -75.6196, 0.2, -353.761, -107.12, 0.2, -353.761, -107.42, 0.2, -271.261, -105.62, 0.2, -271.261, -96.6196, 0.2, -353.761, -75.6196, 0.2, -353.761, -86.1196, 0.2, -353.761, -105.62, 0.2, -271.261, -61.8196, 0.2, -238.561, -61.8196, 0.2, -232.261, -54.9196, 0.2, -232.261, 164.08, 0.2, -345.361, 164.08, 0.2, -353.761, 156.88, 0.2, -353.761, -61.8196, 0.2, -244.861, -61.8196, 0.2, -238.561, -54.9196, 0.2, -232.261, -46.8196, 0.2, -230.461, -46.8196, 0.2, -220.261, -35.1196, 0.2, -220.261, 164.08, 0.2, -345.361, 156.88, 0.2, -353.761, 149.68, 0.2, -353.761, -48.0196, 0.2, -231.961, -46.8196, 0.2, -230.461, -35.1196, 0.2, -220.261, -23.1196, 0.2, -220.261, -61.8196, 0.2, -244.861, -54.9196, 0.2, -232.261, -48.0196, 0.2, -231.961, -61.8196, 0.2, -251.161, 141.88, 0.2, -219.061, 142.18, 0.2, -216.661, 164.08, 0.2, -216.961, 164.08, 0.2, -225.661, 164.08, 0.2, -336.661, 164.08, 0.2, -345.361, 149.68, 0.2, -353.761, 142.48, 0.2, -353.761, 81.8804, 0.2, -220.261, 93.2804, 0.2, -220.261, 164.08, 0.2, -294.061, -7.81961, 0.2, -353.761, -15.0196, 0.2, -353.761, -61.8196, 0.2, -257.461, 140.38, 0.2, -220.261, 141.88, 0.2, -219.061, 164.08, 0.2, -225.661, 164.08, 0.2, -234.061, -0.919617, 0.2, -353.761, -7.81961, 0.2, -353.761, -61.8196, 0.2, -257.461, -48.0196, 0.2, -231.961, 46.7804, 0.2, -220.261, 58.4804, 0.2, -220.261, 164.08, 0.2, -294.061, 77.9804, 0.2, -353.761, 70.7804, 0.2, -353.761, -61.8196, 0.2, -257.461, -61.8196, 0.2, -251.161, -48.0196, 0.2, -231.961, 140.38, 0.2, -220.261, 164.08, 0.2, -234.061, 164.08, 0.2, -242.761, 164.08, 0.2, -328.261, 164.08, 0.2, -336.661, 142.48, 0.2, -353.761, 135.28, 0.2, -353.761, -48.0196, 0.2, -231.961, -23.1196, 0.2, -220.261, -11.7196, 0.2, -220.261, 164.08, 0.2, -294.061, 70.7804, 0.2, -353.761, 63.5804, 0.2, -353.761, 140.38, 0.2, -220.261, 164.08, 0.2, -242.761, 164.08, 0.2, -251.161, 164.08, 0.2, -328.261, 135.28, 0.2, -353.761, 128.08, 0.2, -353.761, 140.38, 0.2, -220.261, 164.08, 0.2, -251.161, 164.08, 0.2, -259.861, 164.08, 0.2, -319.561, 164.08, 0.2, -328.261, 128.08, 0.2, -353.761, 120.88, 0.2, -353.761, -48.0196, 0.2, -231.961, -11.7196, 0.2, -220.261, 0.280396, 0.2, -220.261, 128.38, 0.2, -220.261, 140.38, 0.2, -220.261, 164.08, 0.2, -259.861, 164.08, 0.2, -268.261, 6.2804, 0.2, -353.761, -0.919617, 0.2, -353.761, -61.8196, 0.2, -257.461, -48.0196, 0.2, -231.961, 58.4804, 0.2, -220.261, 69.8804, 0.2, -220.261, 42.2804, 0.2, -353.761, 35.0804, 0.2, -353.761, -61.8196, 0.2, -257.461, -48.0196, 0.2, -231.961, 0.280396, 0.2, -220.261, 11.3804, 0.2, -220.261, 164.08, 0.2, -311.161, 164.08, 0.2, -319.561, 120.88, 0.2, -353.761, 113.68, 0.2, -353.761, 69.8804, 0.2, -220.261, 81.8804, 0.2, -220.261, 164.08, 0.2, -294.061, 49.4804, 0.2, -353.761, 42.2804, 0.2, -353.761, 128.38, 0.2, -220.261, 164.08, 0.2, -268.261, 164.08, 0.2, -276.961, 164.08, 0.2, -311.161, 113.68, 0.2, -353.761, 106.78, 0.2, -353.761, -48.0196, 0.2, -231.961, 11.3804, 0.2, -220.261, 23.3804, 0.2, -220.261, 116.38, 0.2, -220.261, 128.38, 0.2, -220.261, 164.08, 0.2, -276.961, 164.08, 0.2, -285.361, 164.08, 0.2, -302.461, 164.08, 0.2, -311.161, 106.78, 0.2, -353.761, 99.5804, 0.2, -353.761, 13.4804, 0.2, -353.761, 6.2804, 0.2, -353.761, -61.8196, 0.2, -257.461, 164.08, 0.2, -294.061, 63.5804, 0.2, -353.761, 56.3804, 0.2, -353.761, -48.0196, 0.2, -231.961, 23.3804, 0.2, -220.261, 34.7804, 0.2, -220.261, 116.38, 0.2, -220.261, 164.08, 0.2, -285.361, 164.08, 0.2, -294.061, 104.98, 0.2, -220.261, 164.08, 0.2, -294.061, 164.08, 0.2, -302.461, 99.5804, 0.2, -353.761, 92.3804, 0.2, -353.761, 164.08, 0.2, -294.061, 56.3804, 0.2, -353.761, 49.4804, 0.2, -353.761, -65.1196, 0.2, -353.761, -65.4196, 0.2, -259.261, -63.6196, 0.2, -259.261, -58.2196, 0.2, -353.761, 20.6804, 0.2, -353.761, 13.4804, 0.2, -353.761, -61.8196, 0.2, -257.461, 27.8804, 0.2, -353.761, 20.6804, 0.2, -353.761, -61.8196, 0.2, -257.461, -51.0196, 0.2, -353.761, -58.2196, 0.2, -353.761, -63.6196, 0.2, -259.261, -48.0196, 0.2, -231.961, 34.7804, 0.2, -220.261, 46.7804, 0.2, -220.261, -43.8196, 0.2, -353.761, -51.0196, 0.2, -353.761, -63.6196, 0.2, -259.261, -43.8196, 0.2, -353.761, -63.6196, 0.2, -259.261, -61.8196, 0.2, -257.461, -36.6196, 0.2, -353.761, 164.08, 0.2, -294.061, 92.3804, 0.2, -353.761, 85.1804, 0.2, -353.761, 35.0804, 0.2, -353.761, 27.8804, 0.2, -353.761, -61.8196, 0.2, -257.461, -29.4196, 0.2, -353.761, -36.6196, 0.2, -353.761, -61.8196, 0.2, -257.461, 93.2804, 0.2, -220.261, 104.98, 0.2, -220.261, 164.08, 0.2, -294.061, -22.2196, 0.2, -353.761, -29.4196, 0.2, -353.761, -61.8196, 0.2, -257.461, 164.08, 0.2, -294.061, 85.1804, 0.2, -353.761, 77.9804, 0.2, -353.761, -15.0196, 0.2, -353.761, -22.2196, 0.2, -353.761, -61.8196, 0.2, -257.461, -182.12, 0.4, -232.861, -179.12, 0.4, -228.961, -177.32, 0.4, -227.161, -171.32, 0.4, -225.661, -186.92, 0.4, -244.861, -185.12, 0.4, -238.561, -141.92, 0.4, -221.161, -137.42, 0.4, -223.561, -132.32, 0.4, -227.461, -128.72, 0.4, -231.661, -125.12, 0.4, -237.961, -165.92, 0.4, -222.961, -161.12, 0.4, -219.061, -155.12, 0.4, -218.461, -126.62, 0.4, -267.061, -129.62, 0.4, -271.561, -134.42, 0.4, -276.361, -134.42, 0.4, -276.361, -138.92, 0.4, -279.361, -145.22, 0.4, -282.061, -186.92, 0.4, -257.161, -187.52, 0.4, -251.461, -186.92, 0.4, -244.861, -145.22, 0.4, -282.061, -151.22, 0.4, -283.261, -159.02, 0.4, -283.261, -171.62, 0.4, -279.061, -126.62, 0.4, -267.061, -134.42, 0.4, -276.361, -122.72, 0.4, -254.761, -123.92, 0.4, -260.461, -126.62, 0.4, -267.061, -125.12, 0.4, -237.961, -122.72, 0.4, -247.261, -155.12, 0.4, -218.461, -148.82, 0.4, -219.061, -141.92, 0.4, -221.161, -171.32, 0.4, -225.661, -165.92, 0.4, -222.961, -182.12, 0.4, -269.161, -184.82, 0.4, -264.061, -186.92, 0.4, -257.161, -186.92, 0.4, -244.861, -171.62, 0.4, -279.061, -177.02, 0.4, -275.161, -171.32, 0.4, -225.661, -141.92, 0.4, -221.161, -125.12, 0.4, -237.961, -126.62, 0.4, -267.061, -171.62, 0.4, -279.061, -186.92, 0.4, -244.861, -159.02, 0.4, -283.261, -164.72, 0.4, -282.061, -171.62, 0.4, -279.061, -140.72, 100.4, -262.561, -143.42, 100.4, -265.261, -147.32, 100.4, -267.661, -154.22, 100.4, -269.161, -172.52, 100.4, -246.061, -170.72, 100.4, -241.561, -168.62, 100.4, -238.561, -171.62, 100.4, -258.661, -173.12, 100.4, -252.361, -154.22, 100.4, -269.161, -158.42, 100.4, -268.861, -162.62, 100.4, -267.661, -167.72, 100.4, -264.361, -171.62, 100.4, -258.661, -156.02, 100.4, -232.861, -151.52, 100.4, -233.161, -147.32, 100.4, -234.361, -141.92, 100.4, -237.961, -138.32, 100.4, -243.361, -136.82, 100.4, -250.861, -138.02, 100.4, -257.761, -140.72, 100.4, -262.561, -138.32, 100.4, -243.361, -168.62, 100.4, -238.561, -162.62, 100.4, -234.361, -156.02, 100.4, -232.861, -171.62, 100.4, -258.661, -168.62, 100.4, -238.561, -156.02, 100.4, -232.861, -138.32, 100.4, -243.361, -140.72, 100.4, -262.561, -154.22, 100.4, -269.161, -117.92, 12.4, -255.961, -117.92, 12.4, -244.861, -108.02, 12.4, -244.861, -108.02, 12.4, -255.961, -108.02, 12.4, -255.961, -108.02, 12.4, -267.061, -117.92, 12.4, -267.061, -117.92, 12.4, -255.961, -117.62, 0.4, -255.961, -117.62, 0.4, -245.161, -108.32, 0.4, -245.161, -108.32, 0.4, -255.961, -108.32, 0.4, -255.961, -108.32, 0.4, -266.761, -117.62, 0.4, -266.761, -117.62, 0.4, -255.961, -102.92, 12.4, -255.061, -102.92, 12.4, -244.861, -92.1196, 12.4, -244.861, -92.1196, 12.4, -255.061, -92.1196, 12.4, -244.861, -81.0196, 12.4, -244.861, -81.0196, 12.4, -255.061, -92.1196, 12.4, -255.061, -75.9196, 12.4, -243.961, -75.9196, 12.4, -232.861, -66.0196, 12.4, -232.861, -66.0196, 12.4, -243.961, -66.0196, 12.4, -243.961, -66.0196, 12.4, -255.061, -75.9196, 12.4, -255.061, -75.9196, 12.4, -243.961, -102.62, 0.4, -254.761, -102.62, 0.4, -245.161, -92.1196, 0.4, -245.161, -92.1196, 0.4, -254.761, -92.1196, 0.4, -245.161, -81.3196, 0.4, -245.161, -81.3196, 0.4, -254.761, -92.1196, 0.4, -254.761, -75.6196, 0.4, -243.961, -75.6196, 0.4, -233.161, -66.3196, 0.4, -233.161, -66.3196, 0.4, -243.961, -66.3196, 0.4, -243.961, -66.3196, 0.4, -254.761, -75.6196, 0.4, -254.761, -75.6196, 0.4, -243.961, -119.42, 0.2, -142.261, -118.52, 0.2, -137.161, -118.22, 0.2, -143.161, -152.12, 0.2, -173.461, -155.72, 0.2, -168.061, -150.92, 0.2, -168.061, -150.62, 0.2, -213.961, -155.72, 0.2, -213.961, -152.12, 0.2, -208.561, -122.12, 0.2, -148.561, -119.42, 0.2, -142.261, -118.22, 0.2, -143.161, -118.22, 0.2, -149.461, -80.1196, 0.2, -222.061, -90.3196, 0.2, -240.661, -100.22, 0.2, -240.661, -80.1196, 0.2, -212.761, -122.12, 0.2, -148.561, -118.22, 0.2, -149.461, -116.42, 0.2, -151.261, -125.72, 0.2, -153.961, -150.62, 0.2, -213.961, -152.12, 0.2, -208.561, -150.32, 0.2, -204.661, -144.62, 0.2, -215.161, -106.52, 0.2, -151.261, -96.3196, 0.2, -151.261, -76.2196, 0.2, -176.461, -152.12, 0.2, -173.461, -150.92, 0.2, -168.061, -144.62, 0.2, -166.861, -149.42, 0.2, -179.761, -109.52, 0.2, -240.661, -119.42, 0.2, -240.661, -120.32, 0.2, -237.361, -109.52, 0.2, -240.661, -127.22, 0.2, -226.261, -132.32, 0.2, -221.461, -80.1196, 0.2, -203.461, -80.1196, 0.2, -212.761, -100.22, 0.2, -240.661, -86.4196, 0.2, -151.261, -76.2196, 0.2, -151.261, -76.2196, 0.2, -157.561, -147.92, 0.2, -195.061, -147.92, 0.2, -186.961, -137.42, 0.2, -163.861, -80.1196, 0.2, -231.361, -80.1196, 0.2, -240.661, -90.3196, 0.2, -240.661, -86.4196, 0.2, -151.261, -76.2196, 0.2, -157.561, -76.2196, 0.2, -163.861, -109.52, 0.2, -240.661, -120.32, 0.2, -237.361, -123.92, 0.2, -230.461, -132.02, 0.2, -160.261, -125.72, 0.2, -153.961, -116.42, 0.2, -151.261, -137.42, 0.2, -218.161, -144.62, 0.2, -215.161, -150.32, 0.2, -204.661, -149.42, 0.2, -179.761, -144.62, 0.2, -166.861, -137.42, 0.2, -163.861, -147.92, 0.2, -186.961, -80.1196, 0.2, -222.061, -80.1196, 0.2, -231.361, -90.3196, 0.2, -240.661, -86.4196, 0.2, -151.261, -76.2196, 0.2, -163.861, -76.2196, 0.2, -170.161, -109.52, 0.2, -240.661, -123.92, 0.2, -230.461, -127.22, 0.2, -226.261, -74.1196, 0.2, -178.261, -74.1196, 0.2, -201.661, -78.3196, 0.2, -201.661, -137.42, 0.2, -163.861, -132.02, 0.2, -160.261, -116.42, 0.2, -151.261, -106.52, 0.2, -151.261, -132.32, 0.2, -221.461, -137.42, 0.2, -218.161, -150.32, 0.2, -204.661, -147.92, 0.2, -195.061, -76.2196, 0.2, -176.461, -74.1196, 0.2, -178.261, -78.3196, 0.2, -201.661, -80.1196, 0.2, -203.461, -132.32, 0.2, -221.461, -147.92, 0.2, -195.061, -137.42, 0.2, -163.861, -106.52, 0.2, -151.261, -76.2196, 0.2, -176.461, -80.1196, 0.2, -203.461, -86.4196, 0.2, -151.261, -76.2196, 0.2, -170.161, -76.2196, 0.2, -176.461, -96.3196, 0.2, -151.261, -75.9196, 12.4, -216.961, -75.9196, 12.4, -205.861, -66.0196, 12.4, -205.861, -66.0196, 12.4, -216.961, -66.0196, 12.4, -216.961, -66.0196, 12.4, -228.061, -75.9196, 12.4, -228.061, -75.9196, 12.4, -216.961, -60.9196, 12.4, -216.961, -60.9196, 12.4, -205.861, -51.0196, 12.4, -205.861, -51.0196, 12.4, -216.961, -51.0196, 12.4, -216.961, -51.0196, 12.4, -228.061, -60.9196, 12.4, -228.061, -60.9196, 12.4, -216.961, -75.6196, 0.4, -216.961, -75.6196, 0.4, -206.161, -66.3196, 0.4, -206.161, -66.3196, 0.4, -216.961, -66.3196, 0.4, -216.961, -66.3196, 0.4, -227.761, -75.6196, 0.4, -227.761, -75.6196, 0.4, -216.961, -60.6196, 0.4, -216.961, -60.6196, 0.4, -206.161, -51.3196, 0.4, -206.161, -51.3196, 0.4, -216.961, -51.3196, 0.4, -216.961, -51.3196, 0.4, -227.761, -60.6196, 0.4, -227.761, -60.6196, 0.4, -216.961, -176.42, 0.4, -220.561, -178.52, 0.4, -222.661, -181.22, 0.4, -223.261, -185.12, 0.4, -158.461, -178.82, 0.4, -159.061, -177.92, 0.4, -160.261, -166.22, 0.4, -166.561, -162.32, 0.4, -167.461, -158.72, 0.4, -171.661, -156.62, 0.4, -207.061, -159.62, 0.4, -211.561, -162.32, 0.4, -214.561, -215.12, 0.4, -178.561, -212.12, 0.4, -172.861, -209.12, 0.4, -168.961, -204.02, 0.4, -164.461, -198.02, 0.4, -161.161, -216.92, 0.4, -184.861, -170.72, 0.4, -217.261, -176.42, 0.4, -220.561, -181.22, 0.4, -223.261, -216.92, 0.4, -197.161, -217.52, 0.4, -191.461, -216.92, 0.4, -184.861, -212.12, 0.4, -209.161, -214.82, 0.4, -204.061, -152.72, 0.4, -194.761, -153.92, 0.4, -200.461, -156.62, 0.4, -207.061, -162.32, 0.4, -214.561, -170.72, 0.4, -217.261, -152.72, 0.4, -187.261, -172.52, 0.4, -163.861, -166.22, 0.4, -166.561, -158.72, 0.4, -171.661, -155.12, 0.4, -177.961, -152.72, 0.4, -187.261, -198.02, 0.4, -161.161, -191.12, 0.4, -159.061, -185.12, 0.4, -158.461, -177.92, 0.4, -160.261, -172.52, 0.4, -163.861, -189.02, 0.4, -223.261, -194.72, 0.4, -222.061, -201.62, 0.4, -219.061, -201.62, 0.4, -219.061, -207.02, 0.4, -215.161, -212.12, 0.4, -209.161, -170.72, 0.4, -217.261, -181.22, 0.4, -223.261, -189.02, 0.4, -223.261, -216.92, 0.4, -184.861, -198.02, 0.4, -161.161, -172.52, 0.4, -163.861, -152.72, 0.4, -187.261, -170.72, 0.4, -217.261, -212.12, 0.4, -209.161, 164.08, 0.2, -210.361, 164.08, 0.2, -216.961, 142.18, 0.2, -216.661, 142.18, 0.2, -210.061, 142.18, 0.2, -210.061, 142.18, 0.2, -203.461, 164.08, 0.2, -203.461, 164.08, 0.2, -210.361, 142.18, 0.2, -163.261, 164.08, 0.2, -162.961, 164.08, 0.2, -169.861, 142.18, 0.2, -170.161, 142.18, 0.2, -196.861, 142.18, 0.2, -189.961, 164.08, 0.2, -189.961, 164.08, 0.2, -196.861, 142.18, 0.2, -170.161, 164.08, 0.2, -169.861, 164.08, 0.2, -176.461, 142.18, 0.2, -176.761, 142.18, 0.2, -189.961, 142.18, 0.2, -183.361, 164.08, 0.2, -183.361, 164.08, 0.2, -189.961, 142.18, 0.2, -176.761, 164.08, 0.2, -176.461, 164.08, 0.2, -183.361, 142.18, 0.2, -183.361, 142.18, 0.2, -203.461, 142.18, 0.2, -196.861, 164.08, 0.2, -196.861, 164.08, 0.2, -203.461, -45.9196, 12.4, -216.061, -45.9196, 12.4, -205.861, -35.1196, 12.4, -205.861, -35.1196, 12.4, -216.061, -35.1196, 12.4, -205.861, -24.0196, 12.4, -205.861, -24.0196, 12.4, -216.061, -35.1196, 12.4, -216.061, -18.9196, 12.4, -216.061, -18.9196, 12.4, -205.861, -8.1196, 12.4, -205.861, -8.1196, 12.4, -216.061, -8.1196, 12.4, -205.861, 2.98041, 12.4, -205.861, 2.98041, 12.4, -216.061, -8.1196, 12.4, -216.061, 8.08038, 12.4, -216.061, 8.08038, 12.4, -205.861, 18.8804, 12.4, -205.861, 18.8804, 12.4, -216.061, 18.8804, 12.4, -205.861, 29.9804, 12.4, -205.861, 29.9804, 12.4, -216.061, 18.8804, 12.4, -216.061, 35.0804, 12.4, -216.061, 35.0804, 12.4, -205.861, 45.8804, 12.4, -205.861, 45.8804, 12.4, -216.061, 45.8804, 12.4, -205.861, 56.9804, 12.4, -205.861, 56.9804, 12.4, -216.061, 45.8804, 12.4, -216.061, 62.0804, 12.4, -216.061, 62.0804, 12.4, -205.861, 72.8804, 12.4, -205.861, 72.8804, 12.4, -216.061, 72.8804, 12.4, -205.861, 83.9804, 12.4, -205.861, 83.9804, 12.4, -216.061, 72.8804, 12.4, -216.061, 89.0804, 12.4, -216.061, 89.0804, 12.4, -205.861, 99.8804, 12.4, -205.861, 99.8804, 12.4, -216.061, 99.8804, 12.4, -205.861, 110.98, 12.4, -205.861, 110.98, 12.4, -216.061, 99.8804, 12.4, -216.061, 116.08, 12.4, -216.061, 116.08, 12.4, -205.861, 126.88, 12.4, -205.861, 126.88, 12.4, -216.061, 126.88, 12.4, -205.861, 137.98, 12.4, -205.861, 137.98, 12.4, -216.061, 126.88, 12.4, -216.061, -45.6196, 0.4, -215.761, -45.6196, 0.4, -206.161, -35.1196, 0.4, -206.161, -35.1196, 0.4, -215.761, -35.1196, 0.4, -206.161, -24.3196, 0.4, -206.161, -24.3196, 0.4, -215.761, -35.1196, 0.4, -215.761, -18.6196, 0.4, -215.761, -18.6196, 0.4, -206.161, -8.1196, 0.4, -206.161, -8.1196, 0.4, -215.761, -8.1196, 0.4, -206.161, 2.68039, 0.4, -206.161, 2.68039, 0.4, -215.761, -8.1196, 0.4, -215.761, 8.3804, 0.4, -215.761, 8.3804, 0.4, -206.161, 18.8804, 0.4, -206.161, 18.8804, 0.4, -215.761, 18.8804, 0.4, -206.161, 29.6804, 0.4, -206.161, 29.6804, 0.4, -215.761, 18.8804, 0.4, -215.761, 35.3804, 0.4, -215.761, 35.3804, 0.4, -206.161, 45.8804, 0.4, -206.161, 45.8804, 0.4, -215.761, 45.8804, 0.4, -206.161, 56.6804, 0.4, -206.161, 56.6804, 0.4, -215.761, 45.8804, 0.4, -215.761, 62.3804, 0.4, -215.761, 62.3804, 0.4, -206.161, 72.8804, 0.4, -206.161, 72.8804, 0.4, -215.761, 72.8804, 0.4, -206.161, 83.6804, 0.4, -206.161, 83.6804, 0.4, -215.761, 72.8804, 0.4, -215.761, 89.3804, 0.4, -215.761, 89.3804, 0.4, -206.161, 99.8804, 0.4, -206.161, 99.8804, 0.4, -215.761, 99.8804, 0.4, -206.161, 110.68, 0.4, -206.161, 110.68, 0.4, -215.761, 99.8804, 0.4, -215.761, 116.38, 0.4, -215.761, 116.38, 0.4, -206.161, 126.88, 0.4, -206.161, 126.88, 0.4, -215.761, 126.88, 0.4, -206.161, 137.68, 0.4, -206.161, 137.68, 0.4, -215.761, 126.88, 0.4, -215.761, -170.72, 100.4, -202.561, -173.42, 100.4, -205.261, -177.32, 100.4, -207.661, -184.22, 100.4, -209.161, -202.52, 100.4, -186.061, -200.72, 100.4, -181.561, -198.62, 100.4, -178.561, -201.62, 100.4, -198.661, -203.12, 100.4, -192.361, -184.22, 100.4, -209.161, -188.42, 100.4, -208.861, -192.62, 100.4, -207.661, -197.72, 100.4, -204.361, -201.62, 100.4, -198.661, -186.02, 100.4, -172.861, -181.52, 100.4, -173.161, -177.32, 100.4, -174.361, -171.92, 100.4, -177.961, -168.32, 100.4, -183.361, -166.82, 100.4, -190.861, -168.02, 100.4, -197.761, -170.72, 100.4, -202.561, -168.32, 100.4, -183.361, -198.62, 100.4, -178.561, -192.62, 100.4, -174.361, -186.02, 100.4, -172.861, -201.62, 100.4, -198.661, -198.62, 100.4, -178.561, -186.02, 100.4, -172.861, -168.32, 100.4, -183.361, -170.72, 100.4, -202.561, -184.22, 100.4, -209.161, 40.1804, 0.2, -201.661, 32.6804, 0.2, -201.961, 25.1804, 0.2, -201.661, 25.1804, 0.2, -178.261, 32.9804, 0.2, -178.261, -74.1196, 0.2, -201.661, -74.1196, 0.2, -178.261, -66.6196, 0.2, -178.261, -66.3196, 0.2, -201.661, 2.3804, 0.2, -178.261, 9.8804, 0.2, -178.261, 9.58038, 0.2, -201.661, 2.3804, 0.2, -201.661, -59.1196, 0.2, -201.661, -66.3196, 0.2, -201.661, -66.6196, 0.2, -178.261, -58.8196, 0.2, -178.261, 17.3804, 0.2, -201.661, 9.58038, 0.2, -201.661, 9.8804, 0.2, -178.261, 17.6804, 0.2, -178.261, -51.3196, 0.2, -201.661, -59.1196, 0.2, -201.661, -58.8196, 0.2, -178.261, -51.3196, 0.2, -178.261, 25.1804, 0.2, -201.661, 17.3804, 0.2, -201.661, 17.6804, 0.2, -178.261, 25.1804, 0.2, -178.261, -44.1196, 0.2, -201.661, -51.3196, 0.2, -201.661, -51.3196, 0.2, -178.261, -43.5196, 0.2, -178.261, 40.4804, 0.2, -178.261, 48.2804, 0.2, -178.261, 48.2804, 0.2, -201.661, 40.1804, 0.2, -201.661, -36.3196, 0.2, -201.661, -44.1196, 0.2, -201.661, -43.5196, 0.2, -178.261, -36.0196, 0.2, -178.261, 32.9804, 0.2, -178.261, 40.4804, 0.2, -178.261, 40.1804, 0.2, -201.661, -28.5196, 0.2, -201.661, -36.3196, 0.2, -201.661, -36.0196, 0.2, -178.261, -28.2196, 0.2, -178.261, 2.3804, 0.2, -201.661, -5.41962, 0.2, -201.661, -5.41962, 0.2, -178.261, 2.3804, 0.2, -178.261, -21.3196, 0.2, -201.661, -28.5196, 0.2, -201.661, -28.2196, 0.2, -178.261, -20.7196, 0.2, -178.261, -5.41962, 0.2, -201.661, -13.2196, 0.2, -201.661, -12.9196, 0.2, -178.261, -5.41962, 0.2, -178.261, -13.2196, 0.2, -201.661, -21.3196, 0.2, -201.661, -20.7196, 0.2, -178.261, -12.9196, 0.2, -178.261, 50.0804, 0.2, -177.061, 50.3804, 0.2, -174.361, 69.8804, 0.2, -174.361, 70.1804, 0.2, -177.061, 71.9804, 0.2, -178.261, 71.9804, 0.2, -201.661, 65.6804, 0.2, -201.661, 48.2804, 0.2, -178.261, 50.0804, 0.2, -177.061, 70.1804, 0.2, -177.061, 71.9804, 0.2, -178.261, 65.6804, 0.2, -201.661, 59.6804, 0.2, -201.661, 59.6804, 0.2, -201.661, 48.2804, 0.2, -201.661, 48.2804, 0.2, -178.261, 116.98, 0.2, -178.261, 123.88, 0.2, -178.261, 123.88, 0.2, -189.961, 123.88, 0.2, -189.961, 123.88, 0.2, -201.661, 116.98, 0.2, -201.661, 110.98, 0.2, -178.261, 116.98, 0.2, -178.261, 123.88, 0.2, -189.961, 123.88, 0.2, -189.961, 116.98, 0.2, -201.661, 110.98, 0.2, -201.661, 104.38, 0.2, -178.261, 110.98, 0.2, -178.261, 123.88, 0.2, -189.961, 123.88, 0.2, -189.961, 110.98, 0.2, -201.661, 104.38, 0.2, -201.661, 104.38, 0.2, -178.261, 123.88, 0.2, -189.961, 104.38, 0.2, -201.661, 97.7804, 0.2, -201.661, 97.7804, 0.2, -178.261, 71.9804, 0.2, -201.661, 71.9804, 0.2, -178.261, 78.5804, 0.2, -178.261, 78.5804, 0.2, -201.661, 85.1804, 0.2, -201.661, 78.5804, 0.2, -201.661, 78.5804, 0.2, -178.261, 85.1804, 0.2, -178.261, 91.1804, 0.2, -178.261, 97.7804, 0.2, -178.261, 97.7804, 0.2, -201.661, 91.1804, 0.2, -201.661, 91.1804, 0.2, -201.661, 85.1804, 0.2, -201.661, 85.1804, 0.2, -178.261, 91.1804, 0.2, -178.261, 128.08, 12.4, -189.961, 128.08, 12.4, -178.861, 137.98, 12.4, -178.861, 137.98, 12.4, -189.961, 137.98, 12.4, -189.961, 137.98, 12.4, -201.061, 128.08, 12.4, -201.061, 128.08, 12.4, -189.961, 128.38, 0.4, -189.961, 128.38, 0.4, -179.161, 137.68, 0.4, -179.161, 137.68, 0.4, -189.961, 137.68, 0.4, -189.961, 137.68, 0.4, -200.761, 128.38, 0.4, -200.761, 128.38, 0.4, -189.961, -331.82, 0.2, -185.161, -221.72, 0.2, -185.761, -221.72, 0.2, -196.261, -331.82, 0.2, -196.861, -189.32, 0.2, -145.561, -184.22, 0.2, -153.961, -191.42, 0.2, -154.261, -189.32, 0.2, -145.561, -191.42, 0.2, -154.261, -198.02, 0.2, -156.061, -331.82, 0.2, 131.639, -331.82, 0.2, 142.139, -321.32, 0.2, 142.139, -189.32, 0.2, -145.561, -198.02, 0.2, -156.061, -203.12, 0.2, -158.461, -331.82, 0.2, 121.439, -331.82, 0.2, 131.639, -321.32, 0.2, 142.139, -191.72, 0.2, -137.461, -189.32, 0.2, -145.561, -203.12, 0.2, -158.461, -209.12, 0.2, -162.661, -331.82, 0.2, 121.439, -321.32, 0.2, 142.139, -310.52, 0.2, 142.139, -331.82, 0.2, 111.239, -331.82, 0.2, 29.339, -331.82, 0.2, 39.539, -235.22, 0.2, 142.139, -224.42, 0.2, 142.139, -191.72, 0.2, -137.461, -209.12, 0.2, -162.661, -213.32, 0.2, -166.861, -192.02, 0.2, -126.361, -189.62, 0.2, -117.061, -331.82, 0.2, -83.161, -331.82, 0.2, -72.961, -331.82, 0.2, 111.239, -310.52, 0.2, 142.139, -299.72, 0.2, 142.139, -331.82, 0.2, 101.039, -184.52, 0.2, -108.361, -189.62, 0.2, -117.061, -331.82, 0.2, -72.961, -331.82, 0.2, -62.761, -165.32, 0.2, -95.161, -169.52, 0.2, -96.661, -331.82, 0.2, -11.461, -192.02, 0.2, -126.361, -213.32, 0.2, -166.861, -217.52, 0.2, -172.861, -331.82, 0.2, -93.361, -331.82, 0.2, -83.161, -189.62, 0.2, -117.061, -331.82, 0.2, 101.039, -299.72, 0.2, 142.139, -288.92, 0.2, 142.139, -331.82, 0.2, 90.839, -331.82, 0.2, -1.26099, -192.02, 0.2, 142.139, -181.22, 0.2, 142.139, -184.52, 0.2, -108.361, -331.82, 0.2, -62.761, -331.82, 0.2, -52.561, -331.82, 0.2, 90.839, -288.92, 0.2, 142.139, -278.12, 0.2, 142.139, -331.82, 0.2, 80.639, -331.82, 0.2, 19.139, -331.82, 0.2, 29.339, -224.42, 0.2, 142.139, -213.62, 0.2, 142.139, -331.82, 0.2, 80.639, -278.12, 0.2, 142.139, -267.32, 0.2, 142.139, -331.82, 0.2, 70.439, -177.62, 0.2, -101.461, -184.52, 0.2, -108.361, -331.82, 0.2, -42.361, -331.82, 0.2, -32.161, -331.82, 0.2, 70.439, -267.32, 0.2, 142.139, -256.52, 0.2, 142.139, -331.82, 0.2, 60.239, -221.72, 0.2, -185.761, -331.82, 0.2, -185.161, -331.82, 0.2, -174.961, -220.82, 0.2, -180.661, -221.72, 0.2, -185.761, -331.82, 0.2, -174.961, -331.82, 0.2, -164.761, -331.82, 0.2, -1.26099, -331.82, 0.2, 8.93903, -202.82, 0.2, 142.139, -192.02, 0.2, 142.139, -165.32, 0.2, -95.161, -331.82, 0.2, -11.461, -331.82, 0.2, -1.26099, -170.42, 0.2, 142.139, -159.62, 0.2, 142.139, -159.02, 0.2, -93.961, -220.82, 0.2, -180.661, -331.82, 0.2, -164.761, -331.82, 0.2, -154.561, -217.52, 0.2, -172.861, -220.82, 0.2, -180.661, -331.82, 0.2, -154.561, -331.82, 0.2, -144.361, -177.62, 0.2, -101.461, -331.82, 0.2, -32.161, -331.82, 0.2, -21.661, -331.82, 0.2, 60.239, -256.52, 0.2, 142.139, -245.72, 0.2, 142.139, -331.82, 0.2, 49.739, -217.52, 0.2, -172.861, -331.82, 0.2, -144.361, -331.82, 0.2, -134.161, -217.52, 0.2, -172.861, -331.82, 0.2, -134.161, -331.82, 0.2, -123.961, -331.82, 0.2, 8.93903, -331.82, 0.2, 19.139, -213.62, 0.2, 142.139, -202.82, 0.2, 142.139, -217.52, 0.2, -172.861, -331.82, 0.2, -123.961, -331.82, 0.2, -113.761, -217.52, 0.2, -172.861, -331.82, 0.2, -113.761, -331.82, 0.2, -103.561, -331.82, 0.2, 49.739, -245.72, 0.2, 142.139, -235.22, 0.2, 142.139, -331.82, 0.2, 39.539, -217.52, 0.2, -172.861, -331.82, 0.2, -103.561, -331.82, 0.2, -93.361, -177.62, 0.2, -101.461, -331.82, 0.2, -21.661, -331.82, 0.2, -11.461, -169.52, 0.2, -96.661, -184.52, 0.2, -108.361, -331.82, 0.2, -52.561, -331.82, 0.2, -42.361, -331.82, 0.2, -1.26099, -181.22, 0.2, 142.139, -170.42, 0.2, 142.139, 50.3804, 0.2, -121.261, 69.8804, 0.2, -120.961, 69.8804, 0.2, -127.861, 50.3804, 0.2, -128.161, 50.3804, 0.2, -147.961, 69.8804, 0.2, -147.661, 69.8804, 0.2, -154.561, 50.3804, 0.2, -154.561, 50.3804, 0.2, -128.161, 69.8804, 0.2, -127.861, 69.8804, 0.2, -134.461, 50.3804, 0.2, -134.761, 69.8804, 0.2, -161.161, 69.8804, 0.2, -167.761, 50.3804, 0.2, -167.761, 50.3804, 0.2, -161.161, 50.3804, 0.2, -134.761, 69.8804, 0.2, -134.461, 69.8804, 0.2, -141.061, 50.3804, 0.2, -141.361, 50.3804, 0.2, -161.161, 50.3804, 0.2, -154.561, 69.8804, 0.2, -154.561, 69.8804, 0.2, -161.161, 50.3804, 0.2, -141.361, 69.8804, 0.2, -141.061, 69.8804, 0.2, -147.661, 50.3804, 0.2, -147.961, 69.8804, 0.2, -167.761, 69.8804, 0.2, -174.361, 50.3804, 0.2, -174.361, 50.3804, 0.2, -167.761, -72.0196, 12.4, -162.961, -72.0196, 12.4, -151.861, -61.8196, 12.4, -151.861, -61.8196, 12.4, -162.961, -61.8196, 12.4, -162.961, -61.8196, 12.4, -174.061, -72.0196, 12.4, -174.061, -72.0196, 12.4, -162.961, -57.0196, 12.4, -174.061, -57.0196, 12.4, -163.861, -45.9196, 12.4, -163.861, -45.9196, 12.4, -174.061, -34.8196, 12.4, -174.061, -45.9196, 12.4, -174.061, -45.9196, 12.4, -163.861, -34.8196, 12.4, -163.861, -30.0196, 12.4, -174.061, -30.0196, 12.4, -163.861, -18.9196, 12.4, -163.861, -18.9196, 12.4, -174.061, -7.81961, 12.4, -174.061, -18.9196, 12.4, -174.061, -18.9196, 12.4, -163.861, -7.81961, 12.4, -163.861, -3.01959, 12.4, -174.061, -3.01959, 12.4, -163.861, 8.08038, 12.4, -163.861, 8.08038, 12.4, -174.061, 19.1804, 12.4, -174.061, 8.08038, 12.4, -174.061, 8.08038, 12.4, -163.861, 19.1804, 12.4, -163.861, 23.9804, 12.4, -174.061, 23.9804, 12.4, -163.861, 35.0804, 12.4, -163.861, 35.0804, 12.4, -174.061, 46.1804, 12.4, -174.061, 35.0804, 12.4, -174.061, 35.0804, 12.4, -163.861, 46.1804, 12.4, -163.861, 74.0804, 12.4, -162.961, 74.0804, 12.4, -151.861, 83.9804, 12.4, -151.861, 83.9804, 12.4, -162.961, 83.9804, 12.4, -162.961, 83.9804, 12.4, -174.061, 74.0804, 12.4, -174.061, 74.0804, 12.4, -162.961, 89.0804, 12.4, -174.061, 89.0804, 12.4, -163.861, 99.8804, 12.4, -163.861, 99.8804, 12.4, -174.061, 99.8804, 12.4, -163.861, 110.98, 12.4, -163.861, 110.98, 12.4, -174.061, 99.8804, 12.4, -174.061, 116.08, 12.4, -174.061, 116.08, 12.4, -163.861, 126.88, 12.4, -163.861, 126.88, 12.4, -174.061, 126.88, 12.4, -163.861, 137.98, 12.4, -163.861, 137.98, 12.4, -174.061, 126.88, 12.4, -174.061, -71.7196, 0.4, -162.961, -71.7196, 0.4, -152.161, -62.1196, 0.4, -152.161, -62.1196, 0.4, -162.961, -62.1196, 0.4, -162.961, -62.1196, 0.4, -173.761, -71.7196, 0.4, -173.761, -71.7196, 0.4, -162.961, -56.7196, 0.4, -173.761, -56.7196, 0.4, -164.161, -45.9196, 0.4, -164.161, -45.9196, 0.4, -173.761, -35.1196, 0.4, -173.761, -45.9196, 0.4, -173.761, -45.9196, 0.4, -164.161, -35.1196, 0.4, -164.161, -29.7196, 0.4, -173.761, -29.7196, 0.4, -164.161, -18.9196, 0.4, -164.161, -18.9196, 0.4, -173.761, -8.1196, 0.4, -173.761, -18.9196, 0.4, -173.761, -18.9196, 0.4, -164.161, -8.1196, 0.4, -164.161, -2.7196, 0.4, -173.761, -2.7196, 0.4, -164.161, 8.08038, 0.4, -164.161, 8.08038, 0.4, -173.761, 18.8804, 0.4, -173.761, 8.08038, 0.4, -173.761, 8.08038, 0.4, -164.161, 18.8804, 0.4, -164.161, 24.2804, 0.4, -173.761, 24.2804, 0.4, -164.161, 35.0804, 0.4, -164.161, 35.0804, 0.4, -173.761, 45.8804, 0.4, -173.761, 35.0804, 0.4, -173.761, 35.0804, 0.4, -164.161, 45.8804, 0.4, -164.161, 74.3804, 0.4, -162.961, 74.3804, 0.4, -152.161, 83.6804, 0.4, -152.161, 83.6804, 0.4, -162.961, 83.6804, 0.4, -162.961, 83.6804, 0.4, -173.761, 74.3804, 0.4, -173.761, 74.3804, 0.4, -162.961, 89.3804, 0.4, -173.761, 89.3804, 0.4, -164.161, 99.8804, 0.4, -164.161, 99.8804, 0.4, -173.761, 99.8804, 0.4, -164.161, 110.68, 0.4, -164.161, 110.68, 0.4, -173.761, 99.8804, 0.4, -173.761, 116.38, 0.4, -173.761, 116.38, 0.4, -164.161, 126.88, 0.4, -164.161, 126.88, 0.4, -173.761, 126.88, 0.4, -164.161, 137.68, 0.4, -164.161, 137.68, 0.4, -173.761, 126.88, 0.4, -173.761, -173.72, 0.4, -155.461, -177.32, 0.4, -154.861, -182.12, 0.4, -149.161, -185.12, 0.4, -118.561, -182.12, 0.4, -112.861, -179.12, 0.4, -108.961, -174.02, 0.4, -104.461, -168.02, 0.4, -101.161, -186.92, 0.4, -124.861, -141.92, 0.4, -101.161, -137.42, 0.4, -103.561, -132.32, 0.4, -107.461, -126.62, 0.4, -147.061, -129.62, 0.4, -151.561, -134.42, 0.4, -156.361, -134.42, 0.4, -156.361, -138.92, 0.4, -159.361, -145.22, 0.4, -162.061, -161.12, 0.4, -99.061, -155.12, 0.4, -98.461, -148.82, 0.4, -99.061, -141.92, 0.4, -101.161, -132.32, 0.4, -107.461, -168.02, 0.4, -101.161, -186.92, 0.4, -137.161, -187.52, 0.4, -131.461, -186.92, 0.4, -124.861, -182.12, 0.4, -149.161, -184.82, 0.4, -144.061, -132.32, 0.4, -107.461, -128.72, 0.4, -111.661, -125.12, 0.4, -117.961, -122.72, 0.4, -127.261, -122.72, 0.4, -134.761, -122.72, 0.4, -134.761, -123.92, 0.4, -140.461, -126.62, 0.4, -147.061, -134.42, 0.4, -156.361, -145.22, 0.4, -162.061, -151.22, 0.4, -163.261, -182.12, 0.4, -149.161, -186.92, 0.4, -124.861, -168.02, 0.4, -101.161, -132.32, 0.4, -107.461, -122.72, 0.4, -134.761, -151.22, 0.4, -163.261, -151.22, 0.4, -163.261, -164.42, 0.4, -159.961, -168.62, 0.4, -157.561, -182.12, 0.4, -149.161, -151.22, 0.4, -163.261, -160.82, 0.4, -162.961, -164.42, 0.4, -159.961, -168.62, 0.4, -157.561, -173.72, 0.4, -155.461, -182.12, 0.4, -149.161, 94.7804, 0.2, -159.661, 88.1804, 0.2, -159.661, 88.1804, 0.2, -150.061, 101.38, 0.2, -159.661, 94.7804, 0.2, -159.661, 88.1804, 0.2, -150.061, 107.98, 0.2, -159.661, 101.38, 0.2, -159.661, 88.1804, 0.2, -150.061, 164.08, 0.2, -162.961, 142.18, 0.2, -163.261, 141.88, 0.2, -160.861, 164.08, 0.2, -153.061, 164.08, 0.2, -162.961, 141.88, 0.2, -160.861, 140.38, 0.2, -159.661, 164.08, 0.2, -112.561, 164.08, 0.2, -122.461, 127.18, 0.2, -159.661, 113.98, 0.2, -159.661, 107.98, 0.2, -159.661, 88.1804, 0.2, -150.061, 88.1804, 0.2, -140.461, 164.08, 0.2, -142.861, 164.08, 0.2, -153.061, 140.38, 0.2, -159.661, 133.78, 0.2, -159.661, 127.18, 0.2, -159.661, 88.1804, 0.2, -120.961, 88.1804, 0.2, -111.361, 164.08, 0.2, -102.361, 164.08, 0.2, -112.561, 127.18, 0.2, -159.661, 120.58, 0.2, -159.661, 113.98, 0.2, -159.661, 88.1804, 0.2, -140.461, 88.1804, 0.2, -130.861, 164.08, 0.2, -142.861, 133.78, 0.2, -159.661, 127.18, 0.2, -159.661, 164.08, 0.2, -132.661, 127.18, 0.2, -159.661, 88.1804, 0.2, -111.361, 88.1804, 0.2, -101.761, 164.08, 0.2, -102.361, 127.18, 0.2, -159.661, 88.1804, 0.2, -101.761, 88.1804, 0.2, -92.161, 164.08, 0.2, -92.161, 127.18, 0.2, -159.661, 120.58, 0.2, -159.661, 88.1804, 0.2, -130.861, 88.1804, 0.2, -120.961, 164.08, 0.2, -122.461, 164.08, 0.2, -132.661, 127.18, 0.2, -159.661, 88.1804, 0.2, -82.261, 164.08, 0.2, -81.961, 164.08, 0.2, -92.161, 88.1804, 0.2, -92.161, -58.8196, 0.2, -147.961, -60.6196, 0.2, -147.661, -60.6196, 0.2, -141.061, -57.6196, 0.2, -149.461, -58.8196, 0.2, -147.961, -60.6196, 0.2, -141.061, -60.6196, 0.2, -134.461, -47.7196, 0.2, -159.661, -57.6196, 0.2, -159.661, -57.6196, 0.2, -149.461, -22.2196, 0.2, -134.161, -21.0196, 0.2, -135.961, -27.9196, 0.2, -159.661, -37.8196, 0.2, -159.661, -57.6196, 0.2, -149.461, -60.6196, 0.2, -134.461, -37.8196, 0.2, -159.661, -47.7196, 0.2, -159.661, -57.6196, 0.2, -149.461, -21.0196, 0.2, -135.961, -18.0196, 0.2, -136.261, -18.0196, 0.2, -159.661, -27.9196, 0.2, -159.661, 25.4804, 0.2, -136.261, 31.7804, 0.2, -136.261, 31.7804, 0.2, -147.961, 31.7804, 0.2, -147.961, 31.7804, 0.2, -159.661, 25.4804, 0.2, -159.661, 19.1804, 0.2, -136.261, 25.4804, 0.2, -136.261, 31.7804, 0.2, -147.961, 31.7804, 0.2, -147.961, 25.4804, 0.2, -159.661, 19.1804, 0.2, -159.661, 12.8804, 0.2, -136.261, 19.1804, 0.2, -136.261, 31.7804, 0.2, -147.961, 31.7804, 0.2, -147.961, 19.1804, 0.2, -159.661, 12.8804, 0.2, -159.661, 12.8804, 0.2, -136.261, 31.7804, 0.2, -147.961, 12.8804, 0.2, -159.661, 6.8804, 0.2, -159.661, 6.8804, 0.2, -136.261, 0.580383, 0.2, -136.261, 6.8804, 0.2, -136.261, 6.8804, 0.2, -159.661, 0.580383, 0.2, -159.661, -5.7196, 0.2, -136.261, 0.580383, 0.2, -136.261, 0.580383, 0.2, -159.661, -5.7196, 0.2, -159.661, -12.0196, 0.2, -159.661, -18.0196, 0.2, -159.661, -18.0196, 0.2, -136.261, -12.0196, 0.2, -136.261, -5.7196, 0.2, -159.661, -12.0196, 0.2, -159.661, -12.0196, 0.2, -136.261, -5.7196, 0.2, -136.261, 35.9804, 12.4, -147.961, 35.9804, 12.4, -136.861, 46.1804, 12.4, -136.861, 46.1804, 12.4, -147.961, 46.1804, 12.4, -147.961, 46.1804, 12.4, -159.061, 35.9804, 12.4, -159.061, 35.9804, 12.4, -147.961, 36.2804, 0.4, -147.961, 36.2804, 0.4, -137.161, 45.8804, 0.4, -137.161, 45.8804, 0.4, -147.961, 45.8804, 0.4, -147.961, 45.8804, 0.4, -158.761, 36.2804, 0.4, -158.761, 36.2804, 0.4, -147.961, -140.72, 100.4, -142.561, -143.42, 100.4, -145.261, -147.32, 100.4, -147.661, -154.22, 100.4, -149.161, -172.52, 100.4, -126.061, -170.72, 100.4, -121.561, -168.62, 100.4, -118.561, -171.62, 100.4, -138.661, -173.12, 100.4, -132.361, -154.22, 100.4, -149.161, -158.42, 100.4, -148.861, -162.62, 100.4, -147.661, -167.72, 100.4, -144.361, -171.62, 100.4, -138.661, -156.02, 100.4, -112.861, -151.52, 100.4, -113.161, -147.32, 100.4, -114.361, -141.92, 100.4, -117.961, -138.32, 100.4, -123.361, -136.82, 100.4, -130.861, -138.02, 100.4, -137.761, -140.72, 100.4, -142.561, -138.32, 100.4, -123.361, -168.62, 100.4, -118.561, -162.62, 100.4, -114.361, -156.02, 100.4, -112.861, -171.62, 100.4, -138.661, -168.62, 100.4, -118.561, -156.02, 100.4, -112.861, -138.32, 100.4, -123.361, -140.72, 100.4, -142.561, -154.22, 100.4, -149.161, -114.02, 12.4, -147.061, -114.02, 12.4, -136.861, -102.92, 12.4, -136.861, -102.92, 12.4, -147.061, -91.8196, 12.4, -147.061, -102.92, 12.4, -147.061, -102.92, 12.4, -136.861, -91.8196, 12.4, -136.861, -87.0196, 12.4, -147.061, -87.0196, 12.4, -136.861, -75.9196, 12.4, -136.861, -75.9196, 12.4, -147.061, -64.8196, 12.4, -147.061, -75.9196, 12.4, -147.061, -75.9196, 12.4, -136.861, -64.8196, 12.4, -136.861, 74.0804, 12.4, -135.961, 74.0804, 12.4, -124.861, 83.9804, 12.4, -124.861, 83.9804, 12.4, -135.961, 83.9804, 12.4, -135.961, 83.9804, 12.4, -147.061, 74.0804, 12.4, -147.061, 74.0804, 12.4, -135.961, -113.72, 0.4, -146.761, -113.72, 0.4, -137.161, -102.92, 0.4, -137.161, -102.92, 0.4, -146.761, -92.1196, 0.4, -146.761, -102.92, 0.4, -146.761, -102.92, 0.4, -137.161, -92.1196, 0.4, -137.161, -86.7196, 0.4, -146.761, -86.7196, 0.4, -137.161, -75.9196, 0.4, -137.161, -75.9196, 0.4, -146.761, -65.1196, 0.4, -146.761, -75.9196, 0.4, -146.761, -75.9196, 0.4, -137.161, -65.1196, 0.4, -137.161, 74.3804, 0.4, -135.961, 74.3804, 0.4, -125.161, 83.6804, 0.4, -125.161, 83.6804, 0.4, -135.961, 83.6804, 0.4, -135.961, 83.6804, 0.4, -146.761, 74.3804, 0.4, -146.761, 74.3804, 0.4, -135.961, -28.8196, 0.2, -97.261, -22.2196, 0.2, -97.261, -22.2196, 0.2, -106.561, -35.1196, 0.2, -97.261, -28.8196, 0.2, -97.261, -22.2196, 0.2, -106.561, -41.7196, 0.2, -97.261, -35.1196, 0.2, -97.261, -22.2196, 0.2, -106.561, -22.2196, 0.2, -115.861, -22.2196, 0.2, -134.161, -60.6196, 0.2, -134.461, -60.9196, 0.2, -134.161, -47.7196, 0.2, -96.961, -22.2196, 0.2, -125.161, -47.7196, 0.2, -96.961, -41.7196, 0.2, -97.261, -22.2196, 0.2, -115.861, -22.2196, 0.2, -125.161, -62.1196, 0.2, -132.961, -48.9196, 0.2, -95.761, -47.7196, 0.2, -96.961, -60.9196, 0.2, -134.161, -116.42, 0.2, -132.661, -117.92, 0.2, -133.861, -118.22, 0.2, -124.861, -109.82, 0.2, -132.661, -116.42, 0.2, -132.661, -118.22, 0.2, -124.861, -58.8196, 0.2, -82.261, -49.2196, 0.2, -82.261, -49.2196, 0.2, -89.161, -58.8196, 0.2, -82.261, -49.2196, 0.2, -89.161, -48.9196, 0.2, -95.761, -67.8196, 0.2, -81.961, -102.92, 0.2, -132.661, -109.82, 0.2, -132.661, -118.22, 0.2, -124.861, -127.22, 0.2, -106.261, -130.52, 0.2, -103.261, -115.22, 0.2, -87.961, -102.92, 0.2, -132.661, -118.22, 0.2, -124.861, -120.32, 0.2, -117.361, -96.0196, 0.2, -132.661, -48.9196, 0.2, -95.761, -68.7196, 0.2, -132.661, -75.6196, 0.2, -132.661, -123.92, 0.2, -110.461, -127.22, 0.2, -106.261, -115.22, 0.2, -87.961, -75.6196, 0.2, -132.661, -82.5196, 0.2, -132.661, -120.32, 0.2, -117.361, -115.22, 0.2, -87.961, -67.8196, 0.2, -81.961, -48.9196, 0.2, -95.761, -120.32, 0.2, -117.361, -123.92, 0.2, -110.461, -115.22, 0.2, -87.961, -89.1196, 0.2, -132.661, -96.0196, 0.2, -132.661, -120.32, 0.2, -117.361, -82.5196, 0.2, -132.661, -89.1196, 0.2, -132.661, -120.32, 0.2, -117.361, -48.9196, 0.2, -95.761, -62.1196, 0.2, -132.961, -68.7196, 0.2, -132.661, -18.0196, 12.4, -120.961, -18.0196, 12.4, -109.861, -7.81961, 12.4, -109.861, -7.81961, 12.4, -120.961, -7.81961, 12.4, -120.961, -7.81961, 12.4, -132.061, -18.0196, 12.4, -132.061, -18.0196, 12.4, -120.961, -3.01959, 12.4, -132.061, -3.01959, 12.4, -121.861, 8.08038, 12.4, -121.861, 8.08038, 12.4, -132.061, 19.1804, 12.4, -132.061, 8.08038, 12.4, -132.061, 8.08038, 12.4, -121.861, 19.1804, 12.4, -121.861, 23.9804, 12.4, -132.061, 23.9804, 12.4, -121.861, 35.0804, 12.4, -121.861, 35.0804, 12.4, -132.061, 46.1804, 12.4, -132.061, 35.0804, 12.4, -132.061, 35.0804, 12.4, -121.861, 46.1804, 12.4, -121.861, -17.7196, 0.4, -120.961, -17.7196, 0.4, -110.161, -8.1196, 0.4, -110.161, -8.1196, 0.4, -120.961, -8.1196, 0.4, -120.961, -8.1196, 0.4, -131.761, -17.7196, 0.4, -131.761, -17.7196, 0.4, -120.961, -2.7196, 0.4, -131.761, -2.7196, 0.4, -122.161, 8.08038, 0.4, -122.161, 8.08038, 0.4, -131.761, 18.8804, 0.4, -131.761, 8.08038, 0.4, -131.761, 8.08038, 0.4, -122.161, 18.8804, 0.4, -122.161, 24.2804, 0.4, -131.761, 24.2804, 0.4, -122.161, 35.0804, 0.4, -122.161, 35.0804, 0.4, -131.761, 45.8804, 0.4, -131.761, 35.0804, 0.4, -131.761, 35.0804, 0.4, -122.161, 45.8804, 0.4, -122.161, 59.3804, 0.2, -97.261, 69.8804, 0.2, -97.261, 69.8804, 0.2, -109.261, 69.8804, 0.2, -120.961, 50.3804, 0.2, -121.261, 50.0804, 0.2, -118.861, 50.0804, 0.2, -118.861, 48.2804, 0.2, -117.661, 48.2804, 0.2, -97.261, 59.3804, 0.2, -97.261, 69.8804, 0.2, -109.261, 69.8804, 0.2, -120.961, 74.0804, 12.4, -108.961, 74.0804, 12.4, -97.861, 83.9804, 12.4, -97.861, 83.9804, 12.4, -108.961, 83.9804, 12.4, -108.961, 83.9804, 12.4, -120.061, 74.0804, 12.4, -120.061, 74.0804, 12.4, -108.961, 74.3804, 0.4, -108.961, 74.3804, 0.4, -98.161, 83.6804, 0.4, -98.161, 83.6804, 0.4, -108.961, 83.6804, 0.4, -108.961, 83.6804, 0.4, -119.761, 74.3804, 0.4, -119.761, 74.3804, 0.4, -108.961, -3.6196, 0.2, -93.961, 3.8804, 0.2, -93.661, 3.8804, 0.2, -95.461, -3.6196, 0.2, -93.961, 3.8804, 0.2, -95.461, 5.68039, 0.2, -97.261, -3.6196, 0.2, -105.961, 27.2804, 0.2, -97.261, 37.4804, 0.2, -97.261, 35.0804, 0.2, -117.661, 28.4804, 0.2, -117.661, 2.68039, 0.2, -117.661, -3.6196, 0.2, -117.661, -3.6196, 0.2, -105.961, 9.2804, 0.2, -117.661, 2.68039, 0.2, -117.661, -3.6196, 0.2, -105.961, 9.2804, 0.2, -117.661, -3.6196, 0.2, -105.961, 5.68039, 0.2, -97.261, 16.4804, 0.2, -97.261, 15.5804, 0.2, -117.661, 48.2804, 0.2, -97.261, 48.2804, 0.2, -117.661, 41.6804, 0.2, -117.661, 37.4804, 0.2, -97.261, 28.4804, 0.2, -117.661, 22.1804, 0.2, -117.661, 27.2804, 0.2, -97.261, 37.4804, 0.2, -97.261, 41.6804, 0.2, -117.661, 35.0804, 0.2, -117.661, 22.1804, 0.2, -117.661, 15.5804, 0.2, -117.661, 16.4804, 0.2, -97.261, 27.2804, 0.2, -97.261, -18.0196, 12.4, -93.961, -18.0196, 12.4, -82.861, -7.81961, 12.4, -82.861, -7.81961, 12.4, -93.961, -7.81961, 12.4, -93.961, -7.81961, 12.4, -105.061, -18.0196, 12.4, -105.061, -18.0196, 12.4, -93.961, -17.7196, 0.4, -93.961, -17.7196, 0.4, -83.161, -8.1196, 0.4, -83.161, -8.1196, 0.4, -93.961, -8.1196, 0.4, -93.961, -8.1196, 0.4, -104.761, -17.7196, 0.4, -104.761, -17.7196, 0.4, -93.961, -7.2196, 0.2, 116.939, -7.2196, 0.2, 110.339, -13.8196, 0.2, 110.339, -22.2196, 0.2, -27.661, -22.2196, 0.2, -36.661, -28.5196, 0.2, -36.661, -49.2196, 0.2, -45.061, -49.2196, 0.2, -51.661, -58.8196, 0.2, -51.661, -7.2196, 0.2, 123.539, -7.2196, 0.2, 116.939, -13.8196, 0.2, 110.339, -20.4196, 0.2, 110.339, -32.7196, 0.2, 142.139, -22.8196, 0.2, 142.139, -22.2196, 0.2, -27.661, -28.5196, 0.2, -36.661, -34.8196, 0.2, -36.661, -49.2196, 0.2, -38.461, -49.2196, 0.2, -45.061, -58.8196, 0.2, -51.661, -68.1196, 0.2, -51.961, -3.01959, 0.2, 142.139, -3.01959, 0.2, 125.339, -5.41962, 0.2, 125.339, -12.9196, 0.2, 142.139, -22.2196, 0.2, 44.939, -22.2196, 0.2, 35.939, -47.4196, 0.2, -36.661, -71.7196, 0.2, 142.139, -22.2196, 0.2, 90.239, -22.2196, 0.2, 81.239, -81.3196, 0.2, 142.139, -12.9196, 0.2, 142.139, -5.41962, 0.2, 125.339, -7.2196, 0.2, 123.539, -22.8196, 0.2, 142.139, -22.2196, 0.2, -27.661, -34.8196, 0.2, -36.661, -41.1196, 0.2, -36.661, -22.2196, 0.2, -18.661, -115.22, 0.2, -87.961, -130.52, 0.2, -103.261, -135.32, 0.2, -99.361, -130.52, 0.2, 142.139, -120.62, 0.2, 142.139, -22.2196, 0.2, 62.939, -22.2196, 0.2, 53.939, -22.2196, 0.2, 44.939, -47.4196, 0.2, -36.661, -47.4196, 0.2, -36.661, -49.2196, 0.2, -38.461, -68.1196, 0.2, -51.961, -140.12, 0.2, 142.139, -130.52, 0.2, 142.139, -22.2196, 0.2, 62.939, -115.22, 0.2, -87.961, -135.32, 0.2, -99.361, -144.62, 0.2, -95.161, -22.2196, 0.2, -18.661, -41.1196, 0.2, -36.661, -47.4196, 0.2, -36.661, -22.2196, 0.2, -9.66098, -81.3196, 0.2, 142.139, -22.2196, 0.2, 81.239, -22.2196, 0.2, 72.239, -91.2196, 0.2, 142.139, -22.2196, 0.2, 62.939, -22.2196, 0.2, 53.939, -47.4196, 0.2, -36.661, -32.7196, 0.2, 142.139, -20.4196, 0.2, 110.339, -22.2196, 0.2, 108.539, -42.3196, 0.2, 142.139, -115.22, 0.2, -87.961, -144.62, 0.2, -95.161, -150.62, 0.2, -93.961, -22.2196, 0.2, 62.939, -47.4196, 0.2, -36.661, -68.1196, 0.2, -51.961, -159.02, 0.2, -93.961, -159.62, 0.2, 142.139, -150.02, 0.2, 142.139, -91.2196, 0.2, 142.139, -22.2196, 0.2, 72.239, -22.2196, 0.2, 62.939, -101.12, 0.2, 142.139, -22.2196, 0.2, -0.360992, -22.2196, 0.2, -9.66098, -47.4196, 0.2, -36.661, -115.22, 0.2, -87.961, -150.62, 0.2, -93.961, -159.02, 0.2, -93.961, -68.1196, 0.2, -51.961, -69.3196, 0.2, -53.461, -52.2196, 0.2, 142.139, -42.3196, 0.2, 142.139, -22.2196, 0.2, 108.539, -69.3196, 0.2, -74.161, -69.0196, 0.2, -80.761, -115.22, 0.2, -87.961, -69.3196, 0.2, -67.261, -69.3196, 0.2, -74.161, -115.22, 0.2, -87.961, -22.2196, 0.2, 8.63901, -22.2196, 0.2, -0.360992, -47.4196, 0.2, -36.661, -61.8196, 0.2, 142.139, -52.2196, 0.2, 142.139, -22.2196, 0.2, 108.539, -22.2196, 0.2, 99.239, -69.3196, 0.2, -60.361, -69.3196, 0.2, -67.261, -115.22, 0.2, -87.961, -69.3196, 0.2, -53.461, -69.3196, 0.2, -60.361, -115.22, 0.2, -87.961, -111.02, 0.2, 142.139, -101.12, 0.2, 142.139, -22.2196, 0.2, 62.939, -150.02, 0.2, 142.139, -140.12, 0.2, 142.139, -22.2196, 0.2, 62.939, -22.2196, 0.2, 17.639, -22.2196, 0.2, 8.63901, -47.4196, 0.2, -36.661, -61.8196, 0.2, 142.139, -22.2196, 0.2, 99.239, -22.2196, 0.2, 90.239, -71.7196, 0.2, 142.139, -22.2196, 0.2, 26.639, -22.2196, 0.2, 17.639, -47.4196, 0.2, -36.661, -120.62, 0.2, 142.139, -111.02, 0.2, 142.139, -22.2196, 0.2, 62.939, -22.2196, 0.2, 35.939, -22.2196, 0.2, 26.639, -47.4196, 0.2, -36.661, -3.6196, 0.2, -82.261, 3.8804, 0.2, -81.961, 3.8804, 0.2, -93.661, -3.6196, 0.2, -93.961, -45.0196, 12.4, -93.061, -45.0196, 12.4, -82.861, -33.9196, 12.4, -82.861, -33.9196, 12.4, -93.061, -22.8196, 12.4, -93.061, -33.9196, 12.4, -93.061, -33.9196, 12.4, -82.861, -22.8196, 12.4, -82.861, 8.08038, 12.4, -93.061, 8.08038, 12.4, -82.861, 18.8804, 12.4, -82.861, 18.8804, 12.4, -93.061, 18.8804, 12.4, -82.861, 29.9804, 12.4, -82.861, 29.9804, 12.4, -93.061, 18.8804, 12.4, -93.061, 35.0804, 12.4, -93.061, 35.0804, 12.4, -82.861, 45.8804, 12.4, -82.861, 45.8804, 12.4, -93.061, 45.8804, 12.4, -82.861, 56.9804, 12.4, -82.861, 56.9804, 12.4, -93.061, 45.8804, 12.4, -93.061, 62.0804, 12.4, -93.061, 62.0804, 12.4, -82.861, 72.8804, 12.4, -82.861, 72.8804, 12.4, -93.061, 72.8804, 12.4, -82.861, 83.9804, 12.4, -82.861, 83.9804, 12.4, -93.061, 72.8804, 12.4, -93.061, -44.7196, 0.4, -92.761, -44.7196, 0.4, -83.161, -33.9196, 0.4, -83.161, -33.9196, 0.4, -92.761, -23.1196, 0.4, -92.761, -33.9196, 0.4, -92.761, -33.9196, 0.4, -83.161, -23.1196, 0.4, -83.161, 8.3804, 0.4, -92.761, 8.3804, 0.4, -83.161, 18.8804, 0.4, -83.161, 18.8804, 0.4, -92.761, 18.8804, 0.4, -83.161, 29.6804, 0.4, -83.161, 29.6804, 0.4, -92.761, 18.8804, 0.4, -92.761, 35.3804, 0.4, -92.761, 35.3804, 0.4, -83.161, 45.8804, 0.4, -83.161, 45.8804, 0.4, -92.761, 45.8804, 0.4, -83.161, 56.6804, 0.4, -83.161, 56.6804, 0.4, -92.761, 45.8804, 0.4, -92.761, 62.3804, 0.4, -92.761, 62.3804, 0.4, -83.161, 72.8804, 0.4, -83.161, 72.8804, 0.4, -92.761, 72.8804, 0.4, -83.161, 83.6804, 0.4, -83.161, 83.6804, 0.4, -92.761, 72.8804, 0.4, -92.761, -69.0196, 0.2, -80.761, -67.8196, 0.2, -81.961, -115.22, 0.2, -87.961, 3.8804, 0.2, -81.961, -3.6196, 0.2, -82.261, -3.91962, 0.2, -79.861, -3.91962, 0.2, -54.061, -3.6196, 0.2, -51.661, 3.8804, 0.2, -51.961, 3.8804, 0.2, -74.461, 3.8804, 0.2, -81.961, -3.91962, 0.2, -79.861, -5.41962, 0.2, -78.661, -3.91962, 0.2, -54.061, 3.8804, 0.2, -51.961, 3.8804, 0.2, -59.461, -5.41962, 0.2, -55.261, -25.2196, 0.2, -78.661, -35.1196, 0.2, -78.661, -44.7196, 0.2, -66.961, -44.7196, 0.2, -66.961, -35.1196, 0.2, -55.261, -25.2196, 0.2, -55.261, 3.8804, 0.2, -66.961, 3.8804, 0.2, -74.461, -5.41962, 0.2, -78.661, -15.3196, 0.2, -78.661, -5.41962, 0.2, -55.261, 3.8804, 0.2, -59.461, 3.8804, 0.2, -66.961, -15.3196, 0.2, -55.261, -35.1196, 0.2, -78.661, -44.7196, 0.2, -78.661, -44.7196, 0.2, -66.961, -44.7196, 0.2, -66.961, -44.7196, 0.2, -55.261, -35.1196, 0.2, -55.261, -15.3196, 0.2, -78.661, -25.2196, 0.2, -78.661, -44.7196, 0.2, -66.961, -25.2196, 0.2, -55.261, -15.3196, 0.2, -55.261, 3.8804, 0.2, -66.961, 22.1804, 0.2, 27.539, 22.1804, 0.2, 37.739, 28.4804, 0.2, 37.739, 30.2804, 0.2, -78.661, 22.1804, 0.2, -78.661, 22.1804, 0.2, -68.761, 22.1804, 0.2, 27.539, 28.4804, 0.2, 37.739, 34.7804, 0.2, 37.739, 37.7804, 0.2, -78.661, 30.2804, 0.2, -78.661, 22.1804, 0.2, -68.761, 20.3804, 0.2, 25.739, 22.1804, 0.2, 27.539, 34.7804, 0.2, 37.739, 41.0804, 0.2, 37.739, 17.9804, 0.2, 2.33902, 17.9804, 0.2, 25.739, 20.3804, 0.2, 25.739, 20.3804, 0.2, 2.33902, 164.08, 0.2, -36.061, 164.08, 0.2, -43.861, 86.3804, 0.2, -78.661, 164.08, 0.2, -43.861, 164.08, 0.2, -51.361, 86.3804, 0.2, -78.661, 37.7804, 0.2, -78.661, 22.1804, 0.2, -68.761, 22.1804, 0.2, -58.861, 45.8804, 0.2, -78.661, 22.1804, 0.2, 0.539032, 20.3804, 0.2, 2.33902, 20.3804, 0.2, 25.739, 41.0804, 0.2, 37.739, 47.3804, 0.2, 37.739, 164.08, 0.2, -20.461, 164.08, 0.2, -28.261, 86.3804, 0.2, -78.661, 164.08, 0.2, -28.261, 164.08, 0.2, -36.061, 86.3804, 0.2, -78.661, 54.2804, 0.2, -78.661, 45.8804, 0.2, -78.661, 22.1804, 0.2, -58.861, 54.2804, 0.2, -78.661, 22.1804, 0.2, -58.861, 22.1804, 0.2, -48.961, 61.7804, 0.2, -78.661, 164.08, 0.2, -12.961, 164.08, 0.2, -20.461, 86.3804, 0.2, -78.661, 22.1804, 0.2, 0.539032, 47.3804, 0.2, 37.739, 48.8804, 0.2, 38.939, 22.1804, 0.2, -9.36099, 164.08, 0.2, -5.16098, 164.08, 0.2, -12.961, 86.3804, 0.2, -78.661, 164.08, 0.2, 2.33902, 164.08, 0.2, -5.16098, 86.3804, 0.2, -78.661, 61.7804, 0.2, -78.661, 22.1804, 0.2, -48.961, 22.1804, 0.2, -39.061, 69.8804, 0.2, -78.661, 49.1804, 0.2, 41.339, 164.08, 0.2, 41.039, 164.08, 0.2, 33.239, 22.1804, 0.2, -19.261, 22.1804, 0.2, -9.36099, 48.8804, 0.2, 38.939, 77.9804, 0.2, -78.661, 69.8804, 0.2, -78.661, 22.1804, 0.2, -39.061, 22.1804, 0.2, -29.161, 22.1804, 0.2, -29.161, 22.1804, 0.2, -19.261, 48.8804, 0.2, 38.939, 48.8804, 0.2, 38.939, 49.1804, 0.2, 41.339, 164.08, 0.2, 33.239, 164.08, 0.2, 25.439, 164.08, 0.2, -81.961, 88.1804, 0.2, -82.261, 87.8804, 0.2, -79.861, 164.08, 0.2, -74.461, 164.08, 0.2, 10.139, 164.08, 0.2, 2.33902, 86.3804, 0.2, -78.661, 164.08, 0.2, -66.661, 164.08, 0.2, -74.461, 87.8804, 0.2, -79.861, 164.08, 0.2, -66.661, 87.8804, 0.2, -79.861, 86.3804, 0.2, -78.661, 164.08, 0.2, -59.161, 48.8804, 0.2, 38.939, 164.08, 0.2, 25.439, 164.08, 0.2, 17.639, 86.3804, 0.2, -78.661, 77.9804, 0.2, -78.661, 22.1804, 0.2, -29.161, 48.8804, 0.2, 38.939, 164.08, 0.2, 17.639, 164.08, 0.2, 10.139, 164.08, 0.2, -51.361, 164.08, 0.2, -59.161, 86.3804, 0.2, -78.661, -57.0196, 19.4, -78.061, -65.1196, 19.4, -66.961, -65.1196, 19.4, -55.861, -57.0196, 19.4, -55.861, -48.9196, 19.4, -66.961, -48.9196, 19.4, -78.061, -57.0196, 19.4, -55.861, -48.9196, 19.4, -55.861, -48.9196, 19.4, -66.961, -57.0196, 19.4, -78.061, -65.1196, 19.4, -78.061, -65.1196, 19.4, -66.961, 8.08038, 12.4, -66.961, 8.08038, 12.4, -55.861, 17.9804, 12.4, -55.861, 17.9804, 12.4, -66.961, 17.9804, 12.4, -66.961, 17.9804, 12.4, -78.061, 8.08038, 12.4, -78.061, 8.08038, 12.4, -66.961, -57.0196, 0.2, -77.761, -64.8196, 0.2, -66.961, -64.8196, 0.2, -56.161, -57.0196, 0.2, -56.161, -49.2196, 0.2, -66.961, -49.2196, 0.2, -77.761, -57.0196, 0.2, -56.161, -49.2196, 0.2, -56.161, -49.2196, 0.2, -66.961, -57.0196, 0.2, -77.761, -64.8196, 0.2, -77.761, -64.8196, 0.2, -66.961, 8.3804, 0.4, -66.961, 8.3804, 0.4, -56.161, 17.6804, 0.4, -56.161, 17.6804, 0.4, -66.961, 17.6804, 0.4, -66.961, 17.6804, 0.4, -77.761, 8.3804, 0.4, -77.761, 8.3804, 0.4, -66.961, 3.8804, 0.2, -45.661, 3.8804, 0.2, -51.961, -3.6196, 0.2, -51.661, -3.6196, 0.2, -45.361, -3.6196, 0.2, -7.56097, -3.6196, 0.2, -0.960968, 3.8804, 0.2, -1.26099, 3.8804, 0.2, -7.86099, 3.8804, 0.2, -39.361, 3.8804, 0.2, -45.661, -3.6196, 0.2, -45.361, -3.6196, 0.2, -39.061, -3.6196, 0.2, -13.861, -3.6196, 0.2, -7.56097, 3.8804, 0.2, -7.86099, 3.8804, 0.2, -14.161, 3.8804, 0.2, -33.061, 3.8804, 0.2, -39.361, -3.6196, 0.2, -39.061, -3.6196, 0.2, -32.761, -3.6196, 0.2, -20.161, -3.6196, 0.2, -13.861, 3.8804, 0.2, -14.161, 3.8804, 0.2, -20.461, 3.8804, 0.2, -26.761, 3.8804, 0.2, -33.061, -3.6196, 0.2, -32.761, -3.6196, 0.2, -26.461, -3.6196, 0.2, -26.461, -3.6196, 0.2, -20.161, 3.8804, 0.2, -20.461, 3.8804, 0.2, -26.761, -45.0196, 12.4, -51.061, -45.0196, 12.4, -40.861, -33.9196, 12.4, -40.861, -33.9196, 12.4, -51.061, -22.8196, 12.4, -51.061, -33.9196, 12.4, -51.061, -33.9196, 12.4, -40.861, -22.8196, 12.4, -40.861, -18.0196, 12.4, -39.961, -18.0196, 12.4, -28.861, -7.81961, 12.4, -28.861, -7.81961, 12.4, -39.961, -7.81961, 12.4, -39.961, -7.81961, 12.4, -51.061, -18.0196, 12.4, -51.061, -18.0196, 12.4, -39.961, 8.08038, 12.4, -39.961, 8.08038, 12.4, -28.861, 17.9804, 12.4, -28.861, 17.9804, 12.4, -39.961, 17.9804, 12.4, -39.961, 17.9804, 12.4, -51.061, 8.08038, 12.4, -51.061, 8.08038, 12.4, -39.961, -44.7196, 0.4, -50.761, -44.7196, 0.4, -41.161, -33.9196, 0.4, -41.161, -33.9196, 0.4, -50.761, -23.1196, 0.4, -50.761, -33.9196, 0.4, -50.761, -33.9196, 0.4, -41.161, -23.1196, 0.4, -41.161, -17.7196, 0.4, -39.961, -17.7196, 0.4, -29.161, -8.1196, 0.4, -29.161, -8.1196, 0.4, -39.961, -8.1196, 0.4, -39.961, -8.1196, 0.4, -50.761, -17.7196, 0.4, -50.761, -17.7196, 0.4, -39.961, 8.3804, 0.4, -39.961, 8.3804, 0.4, -29.161, 17.6804, 0.4, -29.161, 17.6804, 0.4, -39.961, 17.6804, 0.4, -39.961, 17.6804, 0.4, -50.761, 8.3804, 0.4, -50.761, 8.3804, 0.4, -39.961, -18.0196, 12.4, -12.961, -18.0196, 12.4, -1.86099, -7.81961, 12.4, -1.86099, -7.81961, 12.4, -12.961, -7.81961, 12.4, -12.961, -7.81961, 12.4, -24.061, -18.0196, 12.4, -24.061, -18.0196, 12.4, -12.961, 8.08038, 12.4, -12.961, 8.08038, 12.4, -1.86099, 17.9804, 12.4, -1.86099, 17.9804, 12.4, -12.961, 17.9804, 12.4, -12.961, 17.9804, 12.4, -24.061, 8.08038, 12.4, -24.061, 8.08038, 12.4, -12.961, -17.7196, 0.4, -12.961, -17.7196, 0.4, -2.16098, -8.1196, 0.4, -2.16098, -8.1196, 0.4, -12.961, -8.1196, 0.4, -12.961, -8.1196, 0.4, -23.761, -17.7196, 0.4, -23.761, -17.7196, 0.4, -12.961, 8.3804, 0.4, -12.961, 8.3804, 0.4, -2.16098, 17.6804, 0.4, -2.16098, 17.6804, 0.4, -12.961, 17.6804, 0.4, -12.961, 17.6804, 0.4, -23.761, 8.3804, 0.4, -23.761, 8.3804, 0.4, -12.961, -3.6196, 0.2, 29.039, 3.8804, 0.2, 29.339, 3.8804, 0.2, 27.539, 3.8804, 0.2, 0.539032, 3.8804, 0.2, -1.26099, -3.6196, 0.2, -0.960968, -3.6196, 0.2, 21.539, -3.6196, 0.2, 29.039, 3.8804, 0.2, 27.539, 5.68039, 0.2, 25.739, 3.8804, 0.2, 0.539032, -3.6196, 0.2, -0.960968, -3.6196, 0.2, 6.53903, 5.68039, 0.2, 2.33902, 11.6804, 0.2, 2.33902, -3.6196, 0.2, 14.039, 11.6804, 0.2, 25.739, 17.9804, 0.2, 25.739, 17.9804, 0.2, 2.33902, 5.68039, 0.2, 2.33902, -3.6196, 0.2, 6.53903, -3.6196, 0.2, 14.039, 11.6804, 0.2, 2.33902, -3.6196, 0.2, 14.039, -3.6196, 0.2, 21.539, 5.68039, 0.2, 25.739, 11.6804, 0.2, 25.739, -18.0196, 12.4, 14.039, -18.0196, 12.4, 25.139, -7.81961, 12.4, 25.139, -7.81961, 12.4, 14.039, -7.81961, 12.4, 14.039, -7.81961, 12.4, 2.93903, -18.0196, 12.4, 2.93903, -18.0196, 12.4, 14.039, -17.7196, 0.4, 14.039, -17.7196, 0.4, 24.839, -8.1196, 0.4, 24.839, -8.1196, 0.4, 14.039, -8.1196, 0.4, 14.039, -8.1196, 0.4, 3.23901, -17.7196, 0.4, 3.23901, -17.7196, 0.4, 14.039, 3.8804, 0.2, 29.339, -3.6196, 0.2, 29.039, -3.6196, 0.2, 41.039, 3.8804, 0.2, 41.039, -3.6196, 0.2, 41.039, -3.6196, 0.2, 53.039, 3.8804, 0.2, 52.739, 3.8804, 0.2, 41.039, -18.0196, 12.4, 41.039, -18.0196, 12.4, 52.139, -7.81961, 12.4, 52.139, -7.81961, 12.4, 41.039, -7.81961, 12.4, 41.039, -7.81961, 12.4, 29.939, -18.0196, 12.4, 29.939, -18.0196, 12.4, 41.039, 8.08038, 12.4, 41.039, 8.08038, 12.4, 52.139, 17.9804, 12.4, 52.139, 17.9804, 12.4, 41.039, 17.9804, 12.4, 41.039, 17.9804, 12.4, 29.939, 8.08038, 12.4, 29.939, 8.08038, 12.4, 41.039, -17.7196, 0.4, 41.039, -17.7196, 0.4, 51.839, -8.1196, 0.4, 51.839, -8.1196, 0.4, 41.039, -8.1196, 0.4, 41.039, -8.1196, 0.4, 30.239, -17.7196, 0.4, 30.239, -17.7196, 0.4, 41.039, 8.3804, 0.4, 41.039, 8.3804, 0.4, 51.839, 17.6804, 0.4, 51.839, 17.6804, 0.4, 41.039, 17.6804, 0.4, 41.039, 17.6804, 0.4, 30.239, 8.3804, 0.4, 30.239, 8.3804, 0.4, 41.039, 49.1804, 0.2, 41.339, 49.1804, 0.2, 53.339, 50.3804, 0.2, 54.539, 164.08, 0.2, 48.539, 164.08, 0.2, 41.039, 50.3804, 0.2, 54.539, 50.3804, 0.2, 56.339, 164.08, 0.2, 56.039, 164.08, 0.2, 48.539, 23.0804, 12.4, 41.939, 23.0804, 12.4, 52.139, 33.8804, 12.4, 52.139, 33.8804, 12.4, 41.939, 33.8804, 12.4, 52.139, 44.9804, 12.4, 52.139, 44.9804, 12.4, 41.939, 33.8804, 12.4, 41.939, 23.3804, 0.4, 42.239, 23.3804, 0.4, 51.839, 33.8804, 0.4, 51.839, 33.8804, 0.4, 42.239, 33.8804, 0.4, 51.839, 44.6804, 0.4, 51.839, 44.6804, 0.4, 42.239, 33.8804, 0.4, 42.239, 3.8804, 0.2, 54.539, 3.8804, 0.2, 52.739, -3.6196, 0.2, 53.039, -3.6196, 0.2, 59.639, 31.7804, 0.2, 81.539, 31.7804, 0.2, 75.239, 12.2804, 0.2, 56.339, -3.6196, 0.2, 79.739, -3.6196, 0.2, 86.339, 14.0804, 0.2, 106.739, 31.7804, 0.2, 62.639, 31.7804, 0.2, 56.339, 24.8804, 0.2, 56.339, 5.68039, 0.2, 56.339, 3.8804, 0.2, 54.539, -3.6196, 0.2, 59.639, -3.6196, 0.2, 66.239, 22.7804, 0.2, 106.739, 31.7804, 0.2, 106.739, 31.7804, 0.2, 100.439, -3.6196, 0.2, 99.839, -3.6196, 0.2, 106.739, 5.08038, 0.2, 106.739, 14.0804, 0.2, 106.739, 22.7804, 0.2, 106.739, 31.7804, 0.2, 87.839, 31.7804, 0.2, 81.539, 31.7804, 0.2, 62.639, 24.8804, 0.2, 56.339, 18.8804, 0.2, 56.339, 31.7804, 0.2, 68.939, 22.7804, 0.2, 106.739, 31.7804, 0.2, 100.439, 31.7804, 0.2, 94.139, -3.6196, 0.2, 93.239, -3.6196, 0.2, 99.839, 5.08038, 0.2, 106.739, 12.2804, 0.2, 56.339, -3.6196, 0.2, 72.839, -3.6196, 0.2, 79.739, 12.2804, 0.2, 56.339, 5.68039, 0.2, 56.339, -3.6196, 0.2, 66.239, -3.6196, 0.2, 72.839, 22.7804, 0.2, 106.739, 31.7804, 0.2, 94.139, 31.7804, 0.2, 87.839, -3.6196, 0.2, 86.339, -3.6196, 0.2, 93.239, 5.08038, 0.2, 106.739, 14.0804, 0.2, 106.739, 31.7804, 0.2, 75.239, 31.7804, 0.2, 68.939, 18.8804, 0.2, 56.339, 12.2804, 0.2, 56.339, 156.58, 0.2, 142.139, 164.08, 0.2, 142.139, 164.08, 0.2, 131.339, 48.5804, 0.2, 125.339, 46.1804, 0.2, 125.339, 46.1804, 0.2, 142.139, 53.3804, 0.2, 142.139, 104.98, 0.2, 142.139, 164.08, 0.2, 77.339, 164.08, 0.2, 66.539, 149.08, 0.2, 142.139, 156.58, 0.2, 142.139, 164.08, 0.2, 131.339, 50.3804, 0.2, 123.539, 48.5804, 0.2, 125.339, 53.3804, 0.2, 142.139, 60.8804, 0.2, 142.139, 50.3804, 0.2, 56.339, 50.3804, 0.2, 64.739, 104.98, 0.2, 142.139, 164.08, 0.2, 66.539, 164.08, 0.2, 56.039, 141.58, 0.2, 142.139, 149.08, 0.2, 142.139, 164.08, 0.2, 131.339, 50.3804, 0.2, 123.539, 60.8804, 0.2, 142.139, 68.0804, 0.2, 142.139, 141.58, 0.2, 142.139, 164.08, 0.2, 131.339, 164.08, 0.2, 120.539, 134.38, 0.2, 142.139, 50.3804, 0.2, 123.539, 68.0804, 0.2, 142.139, 75.5804, 0.2, 142.139, 104.98, 0.2, 142.139, 164.08, 0.2, 98.939, 164.08, 0.2, 88.139, 50.3804, 0.2, 115.139, 50.3804, 0.2, 123.539, 75.5804, 0.2, 142.139, 82.7804, 0.2, 142.139, 50.3804, 0.2, 81.539, 50.3804, 0.2, 89.939, 104.98, 0.2, 142.139, 126.88, 0.2, 142.139, 134.38, 0.2, 142.139, 164.08, 0.2, 120.539, 50.3804, 0.2, 106.739, 50.3804, 0.2, 115.139, 82.7804, 0.2, 142.139, 90.2804, 0.2, 142.139, 126.88, 0.2, 142.139, 164.08, 0.2, 120.539, 164.08, 0.2, 109.739, 119.68, 0.2, 142.139, 104.98, 0.2, 142.139, 164.08, 0.2, 88.139, 164.08, 0.2, 77.339, 50.3804, 0.2, 73.139, 50.3804, 0.2, 81.539, 104.98, 0.2, 142.139, 50.3804, 0.2, 106.739, 90.2804, 0.2, 142.139, 97.4804, 0.2, 142.139, 50.3804, 0.2, 98.339, 112.18, 0.2, 142.139, 119.68, 0.2, 142.139, 164.08, 0.2, 109.739, 50.3804, 0.2, 64.739, 50.3804, 0.2, 73.139, 104.98, 0.2, 142.139, 104.98, 0.2, 142.139, 112.18, 0.2, 142.139, 164.08, 0.2, 109.739, 164.08, 0.2, 98.939, 50.3804, 0.2, 98.339, 97.4804, 0.2, 142.139, 104.98, 0.2, 142.139, 50.3804, 0.2, 89.939, -18.0196, 12.4, 68.039, -18.0196, 12.4, 79.139, -7.81961, 12.4, 79.139, -7.81961, 12.4, 68.039, -7.81961, 12.4, 68.039, -7.81961, 12.4, 56.939, -18.0196, 12.4, 56.939, -18.0196, 12.4, 68.039, 35.9804, 12.4, 68.039, 35.9804, 12.4, 79.139, 46.1804, 12.4, 79.139, 46.1804, 12.4, 68.039, 46.1804, 12.4, 68.039, 46.1804, 12.4, 56.939, 35.9804, 12.4, 56.939, 35.9804, 12.4, 68.039, -17.7196, 0.4, 68.039, -17.7196, 0.4, 78.839, -8.1196, 0.4, 78.839, -8.1196, 0.4, 68.039, -8.1196, 0.4, 68.039, -8.1196, 0.4, 57.239, -17.7196, 0.4, 57.239, -17.7196, 0.4, 68.039, 36.2804, 0.4, 68.039, 36.2804, 0.4, 78.839, 45.8804, 0.4, 78.839, 45.8804, 0.4, 68.039, 45.8804, 0.4, 68.039, 45.8804, 0.4, 57.239, 36.2804, 0.4, 57.239, 36.2804, 0.4, 68.039, -18.0196, 12.4, 95.039, -18.0196, 12.4, 106.139, -7.81961, 12.4, 106.139, -7.81961, 12.4, 95.039, -7.81961, 12.4, 95.039, -7.81961, 12.4, 83.939, -18.0196, 12.4, 83.939, -18.0196, 12.4, 95.039, 35.9804, 12.4, 95.039, 35.9804, 12.4, 106.139, 46.1804, 12.4, 106.139, 46.1804, 12.4, 95.039, 46.1804, 12.4, 95.039, 46.1804, 12.4, 83.939, 35.9804, 12.4, 83.939, 35.9804, 12.4, 95.039, -17.7196, 0.4, 95.039, -17.7196, 0.4, 105.839, -8.1196, 0.4, 105.839, -8.1196, 0.4, 95.039, -8.1196, 0.4, 95.039, -8.1196, 0.4, 84.239, -17.7196, 0.4, 84.239, -17.7196, 0.4, 95.039, 36.2804, 0.4, 95.039, 36.2804, 0.4, 105.839, 45.8804, 0.4, 105.839, 45.8804, 0.4, 95.039, 45.8804, 0.4, 95.039, 45.8804, 0.4, 84.239, 36.2804, 0.4, 84.239, 36.2804, 0.4, 95.039, -3.01959, 12.4, 110.939, -3.01959, 12.4, 121.139, 8.08038, 12.4, 121.139, 8.08038, 12.4, 110.939, 19.1804, 12.4, 110.939, 8.08038, 12.4, 110.939, 8.08038, 12.4, 121.139, 19.1804, 12.4, 121.139, 23.9804, 12.4, 110.939, 23.9804, 12.4, 121.139, 35.0804, 12.4, 121.139, 35.0804, 12.4, 110.939, 46.1804, 12.4, 110.939, 35.0804, 12.4, 110.939, 35.0804, 12.4, 121.139, 46.1804, 12.4, 121.139, -2.7196, 0.4, 111.239, -2.7196, 0.4, 120.839, 8.08038, 0.4, 120.839, 8.08038, 0.4, 111.239, 18.8804, 0.4, 111.239, 8.08038, 0.4, 111.239, 8.08038, 0.4, 120.839, 18.8804, 0.4, 120.839, 24.2804, 0.4, 111.239, 24.2804, 0.4, 120.839, 35.0804, 0.4, 120.839, 35.0804, 0.4, 111.239, 45.8804, 0.4, 111.239, 35.0804, 0.4, 111.239, 35.0804, 0.4, 120.839, 45.8804, 0.4, 120.839, 2.98041, 0.2, 125.339, -3.01959, 0.2, 125.339, -3.01959, 0.2, 142.139, 2.98041, 0.2, 142.139, 9.2804, 0.2, 142.139, 15.2804, 0.2, 142.139, 15.2804, 0.2, 125.339, 9.2804, 0.2, 125.339, 39.8804, 0.2, 142.139, 46.1804, 0.2, 142.139, 46.1804, 0.2, 125.339, 39.8804, 0.2, 125.339, 9.2804, 0.2, 125.339, 2.98041, 0.2, 125.339, 2.98041, 0.2, 142.139, 9.2804, 0.2, 142.139, 33.8804, 0.2, 142.139, 39.8804, 0.2, 142.139, 39.8804, 0.2, 125.339, 33.8804, 0.2, 125.339, 27.5804, 0.2, 125.339, 21.5804, 0.2, 125.339, 21.5804, 0.2, 142.139, 27.5804, 0.2, 142.139, 27.5804, 0.2, 142.139, 33.8804, 0.2, 142.139, 33.8804, 0.2, 125.339, 27.5804, 0.2, 125.339, 15.2804, 0.2, 142.139, 21.5804, 0.2, 142.139, 21.5804, 0.2, 125.339, 15.2804, 0.2, 125.339 ) polygons = [ PoolIntArray( 2, 0, 1 ), PoolIntArray( 5, 3, 4 ), PoolIntArray( 8, 6, 7 ), PoolIntArray( 11, 9, 10 ), PoolIntArray( 14, 12, 13 ), PoolIntArray( 18, 15, 17 ), PoolIntArray( 15, 16, 17 ), PoolIntArray( 22, 19, 21 ), PoolIntArray( 19, 20, 21 ), PoolIntArray( 25, 23, 24 ), PoolIntArray( 28, 26, 27 ), PoolIntArray( 32, 29, 31 ), PoolIntArray( 29, 30, 31 ), PoolIntArray( 36, 33, 35 ), PoolIntArray( 33, 34, 35 ), PoolIntArray( 40, 37, 39 ), PoolIntArray( 37, 38, 39 ), PoolIntArray( 44, 41, 43 ), PoolIntArray( 41, 42, 43 ), PoolIntArray( 48, 45, 47 ), PoolIntArray( 45, 46, 47 ), PoolIntArray( 52, 49, 51 ), PoolIntArray( 49, 50, 51 ), PoolIntArray( 55, 53, 54 ), PoolIntArray( 59, 56, 58 ), PoolIntArray( 56, 57, 58 ), PoolIntArray( 63, 60, 62 ), PoolIntArray( 60, 61, 62 ), PoolIntArray( 66, 64, 65 ), PoolIntArray( 70, 67, 69 ), PoolIntArray( 67, 68, 69 ), PoolIntArray( 74, 71, 73 ), PoolIntArray( 71, 72, 73 ), PoolIntArray( 78, 75, 77 ), PoolIntArray( 75, 76, 77 ), PoolIntArray( 81, 79, 80 ), PoolIntArray( 85, 82, 84 ), PoolIntArray( 82, 83, 84 ), PoolIntArray( 91, 86, 90 ), PoolIntArray( 86, 89, 90 ), PoolIntArray( 86, 88, 89 ), PoolIntArray( 86, 87, 88 ), PoolIntArray( 94, 92, 93 ), PoolIntArray( 97, 95, 96 ), PoolIntArray( 101, 98, 100 ), PoolIntArray( 98, 99, 100 ), PoolIntArray( 105, 102, 104 ), PoolIntArray( 102, 103, 104 ), PoolIntArray( 108, 106, 107 ), PoolIntArray( 112, 109, 111 ), PoolIntArray( 109, 110, 111 ), PoolIntArray( 115, 113, 114 ), PoolIntArray( 119, 116, 118 ), PoolIntArray( 116, 117, 118 ), PoolIntArray( 122, 120, 121 ), PoolIntArray( 125, 123, 124 ), PoolIntArray( 129, 126, 128 ), PoolIntArray( 126, 127, 128 ), PoolIntArray( 133, 130, 132 ), PoolIntArray( 130, 131, 132 ), PoolIntArray( 137, 134, 136 ), PoolIntArray( 134, 135, 136 ), PoolIntArray( 140, 138, 139 ), PoolIntArray( 145, 141, 144 ), PoolIntArray( 141, 142, 144 ), PoolIntArray( 142, 143, 144 ), PoolIntArray( 148, 146, 147 ), PoolIntArray( 151, 149, 150 ), PoolIntArray( 154, 152, 153 ), PoolIntArray( 158, 155, 157 ), PoolIntArray( 155, 156, 157 ), PoolIntArray( 161, 159, 160 ), PoolIntArray( 166, 162, 165 ), PoolIntArray( 162, 163, 165 ), PoolIntArray( 163, 164, 165 ), PoolIntArray( 170, 167, 169 ), PoolIntArray( 167, 168, 169 ), PoolIntArray( 173, 171, 172 ), PoolIntArray( 176, 174, 175 ), PoolIntArray( 179, 177, 178 ), PoolIntArray( 182, 180, 181 ), PoolIntArray( 185, 183, 184 ), PoolIntArray( 188, 186, 187 ), PoolIntArray( 192, 189, 191 ), PoolIntArray( 189, 190, 191 ), PoolIntArray( 196, 193, 195 ), PoolIntArray( 193, 194, 195 ), PoolIntArray( 200, 197, 199 ), PoolIntArray( 197, 198, 199 ), PoolIntArray( 204, 201, 203 ), PoolIntArray( 201, 202, 203 ), PoolIntArray( 207, 205, 206 ), PoolIntArray( 210, 208, 209 ), PoolIntArray( 214, 211, 213 ), PoolIntArray( 211, 212, 213 ), PoolIntArray( 217, 215, 216 ), PoolIntArray( 220, 218, 219 ), PoolIntArray( 223, 221, 222 ), PoolIntArray( 226, 224, 225 ), PoolIntArray( 229, 227, 228 ), PoolIntArray( 233, 230, 232 ), PoolIntArray( 230, 231, 232 ), PoolIntArray( 236, 234, 235 ), PoolIntArray( 239, 237, 238 ), PoolIntArray( 242, 240, 241 ), PoolIntArray( 245, 243, 244 ), PoolIntArray( 248, 246, 247 ), PoolIntArray( 252, 249, 251 ), PoolIntArray( 249, 250, 251 ), PoolIntArray( 255, 253, 254 ), PoolIntArray( 259, 256, 258 ), PoolIntArray( 256, 257, 258 ), PoolIntArray( 262, 260, 261 ), PoolIntArray( 268, 263, 267 ), PoolIntArray( 263, 266, 267 ), PoolIntArray( 263, 264, 266 ), PoolIntArray( 264, 265, 266 ), PoolIntArray( 271, 269, 270 ), PoolIntArray( 275, 272, 274 ), PoolIntArray( 272, 273, 274 ), PoolIntArray( 280, 276, 279 ), PoolIntArray( 276, 277, 279 ), PoolIntArray( 277, 278, 279 ), PoolIntArray( 283, 281, 282 ), PoolIntArray( 286, 284, 285 ), PoolIntArray( 289, 287, 288 ), PoolIntArray( 293, 290, 292 ), PoolIntArray( 290, 291, 292 ), PoolIntArray( 297, 294, 296 ), PoolIntArray( 294, 295, 296 ), PoolIntArray( 300, 298, 299 ), PoolIntArray( 303, 301, 302 ), PoolIntArray( 306, 304, 305 ), PoolIntArray( 310, 307, 309 ), PoolIntArray( 307, 308, 309 ), PoolIntArray( 314, 311, 313 ), PoolIntArray( 311, 312, 313 ), PoolIntArray( 317, 315, 316 ), PoolIntArray( 321, 318, 320 ), PoolIntArray( 318, 319, 320 ), PoolIntArray( 324, 322, 323 ), PoolIntArray( 327, 325, 326 ), PoolIntArray( 330, 328, 329 ), PoolIntArray( 333, 331, 332 ), PoolIntArray( 336, 334, 335 ), PoolIntArray( 340, 337, 339 ), PoolIntArray( 337, 338, 339 ), PoolIntArray( 343, 341, 342 ), PoolIntArray( 346, 344, 345 ), PoolIntArray( 349, 347, 348 ), PoolIntArray( 352, 350, 351 ), PoolIntArray( 355, 353, 354 ), PoolIntArray( 358, 356, 357 ), PoolIntArray( 361, 359, 360 ), PoolIntArray( 367, 362, 366 ), PoolIntArray( 362, 363, 366 ), PoolIntArray( 363, 364, 366 ), PoolIntArray( 364, 365, 366 ), PoolIntArray( 372, 368, 371 ), PoolIntArray( 368, 369, 371 ), PoolIntArray( 369, 370, 371 ), PoolIntArray( 375, 373, 374 ), PoolIntArray( 378, 376, 377 ), PoolIntArray( 381, 379, 380 ), PoolIntArray( 384, 382, 383 ), PoolIntArray( 390, 385, 389 ), PoolIntArray( 385, 386, 389 ), PoolIntArray( 386, 387, 389 ), PoolIntArray( 387, 388, 389 ), PoolIntArray( 395, 391, 394 ), PoolIntArray( 391, 392, 394 ), PoolIntArray( 392, 393, 394 ), PoolIntArray( 400, 396, 399 ), PoolIntArray( 396, 397, 399 ), PoolIntArray( 397, 398, 399 ), PoolIntArray( 406, 401, 405 ), PoolIntArray( 401, 402, 405 ), PoolIntArray( 402, 403, 405 ), PoolIntArray( 403, 404, 405 ), PoolIntArray( 412, 407, 411 ), PoolIntArray( 407, 408, 411 ), PoolIntArray( 408, 409, 411 ), PoolIntArray( 409, 410, 411 ), PoolIntArray( 415, 413, 414 ), PoolIntArray( 419, 416, 418 ), PoolIntArray( 416, 417, 418 ), PoolIntArray( 424, 420, 423 ), PoolIntArray( 420, 421, 423 ), PoolIntArray( 421, 422, 423 ), PoolIntArray( 429, 425, 428 ), PoolIntArray( 425, 426, 428 ), PoolIntArray( 426, 427, 428 ), PoolIntArray( 434, 430, 433 ), PoolIntArray( 430, 431, 433 ), PoolIntArray( 431, 432, 433 ), PoolIntArray( 438, 435, 437 ), PoolIntArray( 435, 436, 437 ), PoolIntArray( 441, 439, 440 ), PoolIntArray( 447, 442, 446 ), PoolIntArray( 442, 445, 446 ), PoolIntArray( 442, 444, 445 ), PoolIntArray( 442, 443, 444 ), PoolIntArray( 451, 448, 450 ), PoolIntArray( 448, 449, 450 ), PoolIntArray( 455, 452, 454 ), PoolIntArray( 452, 453, 454 ), PoolIntArray( 459, 456, 458 ), PoolIntArray( 456, 457, 458 ), PoolIntArray( 463, 460, 462 ), PoolIntArray( 460, 461, 462 ), PoolIntArray( 467, 464, 466 ), PoolIntArray( 464, 465, 466 ), PoolIntArray( 471, 468, 470 ), PoolIntArray( 468, 469, 470 ), PoolIntArray( 475, 472, 474 ), PoolIntArray( 472, 473, 474 ), PoolIntArray( 479, 476, 478 ), PoolIntArray( 476, 477, 478 ), PoolIntArray( 483, 480, 482 ), PoolIntArray( 480, 481, 482 ), PoolIntArray( 487, 484, 486 ), PoolIntArray( 484, 485, 486 ), PoolIntArray( 491, 488, 490 ), PoolIntArray( 488, 489, 490 ), PoolIntArray( 495, 492, 494 ), PoolIntArray( 492, 493, 494 ), PoolIntArray( 498, 496, 497 ), PoolIntArray( 501, 499, 500 ), PoolIntArray( 504, 502, 503 ), PoolIntArray( 508, 505, 507 ), PoolIntArray( 505, 506, 507 ), PoolIntArray( 512, 509, 511 ), PoolIntArray( 509, 510, 511 ), PoolIntArray( 516, 513, 515 ), PoolIntArray( 513, 514, 515 ), PoolIntArray( 520, 517, 519 ), PoolIntArray( 517, 518, 519 ), PoolIntArray( 523, 521, 522 ), PoolIntArray( 527, 524, 526 ), PoolIntArray( 524, 525, 526 ), PoolIntArray( 530, 528, 529 ), PoolIntArray( 536, 531, 535 ), PoolIntArray( 531, 534, 535 ), PoolIntArray( 531, 532, 534 ), PoolIntArray( 532, 533, 534 ), PoolIntArray( 539, 537, 538 ), PoolIntArray( 542, 540, 541 ), PoolIntArray( 545, 543, 544 ), PoolIntArray( 548, 546, 547 ), PoolIntArray( 551, 549, 550 ), PoolIntArray( 554, 552, 553 ), PoolIntArray( 557, 555, 556 ), PoolIntArray( 561, 558, 560 ), PoolIntArray( 558, 559, 560 ), PoolIntArray( 564, 562, 563 ), PoolIntArray( 567, 565, 566 ), PoolIntArray( 570, 568, 569 ), PoolIntArray( 573, 571, 572 ), PoolIntArray( 577, 574, 576 ), PoolIntArray( 574, 575, 576 ), PoolIntArray( 581, 578, 580 ), PoolIntArray( 578, 579, 580 ), PoolIntArray( 585, 582, 584 ), PoolIntArray( 582, 583, 584 ), PoolIntArray( 591, 586, 590 ), PoolIntArray( 586, 587, 590 ), PoolIntArray( 587, 588, 590 ), PoolIntArray( 588, 589, 590 ), PoolIntArray( 595, 592, 594 ), PoolIntArray( 592, 593, 594 ), PoolIntArray( 599, 596, 598 ), PoolIntArray( 596, 597, 598 ), PoolIntArray( 603, 600, 602 ), PoolIntArray( 600, 601, 602 ), PoolIntArray( 607, 604, 606 ), PoolIntArray( 604, 605, 606 ), PoolIntArray( 611, 608, 610 ), PoolIntArray( 608, 609, 610 ), PoolIntArray( 615, 612, 614 ), PoolIntArray( 612, 613, 614 ), PoolIntArray( 619, 616, 618 ), PoolIntArray( 616, 617, 618 ), PoolIntArray( 623, 620, 622 ), PoolIntArray( 620, 621, 622 ), PoolIntArray( 627, 624, 626 ), PoolIntArray( 624, 625, 626 ), PoolIntArray( 630, 628, 629 ), PoolIntArray( 633, 631, 632 ), PoolIntArray( 636, 634, 635 ), PoolIntArray( 639, 637, 638 ), PoolIntArray( 645, 640, 644 ), PoolIntArray( 640, 641, 644 ), PoolIntArray( 641, 642, 644 ), PoolIntArray( 642, 643, 644 ), PoolIntArray( 648, 646, 647 ), PoolIntArray( 653, 649, 652 ), PoolIntArray( 649, 650, 652 ), PoolIntArray( 650, 651, 652 ), PoolIntArray( 659, 654, 658 ), PoolIntArray( 654, 655, 658 ), PoolIntArray( 655, 656, 658 ), PoolIntArray( 656, 657, 658 ), PoolIntArray( 664, 660, 663 ), PoolIntArray( 660, 661, 663 ), PoolIntArray( 661, 662, 663 ), PoolIntArray( 669, 665, 668 ), PoolIntArray( 665, 666, 668 ), PoolIntArray( 666, 667, 668 ), PoolIntArray( 672, 670, 671 ), PoolIntArray( 678, 673, 677 ), PoolIntArray( 673, 674, 677 ), PoolIntArray( 674, 675, 677 ), PoolIntArray( 675, 676, 677 ), PoolIntArray( 684, 679, 683 ), PoolIntArray( 679, 680, 683 ), PoolIntArray( 680, 681, 683 ), PoolIntArray( 681, 682, 683 ), PoolIntArray( 688, 685, 687 ), PoolIntArray( 685, 686, 687 ), PoolIntArray( 692, 689, 691 ), PoolIntArray( 689, 690, 691 ), PoolIntArray( 696, 693, 695 ), PoolIntArray( 693, 694, 695 ), PoolIntArray( 700, 697, 699 ), PoolIntArray( 697, 698, 699 ), PoolIntArray( 704, 701, 703 ), PoolIntArray( 701, 702, 703 ), PoolIntArray( 708, 705, 707 ), PoolIntArray( 705, 706, 707 ), PoolIntArray( 712, 709, 711 ), PoolIntArray( 709, 710, 711 ), PoolIntArray( 716, 713, 715 ), PoolIntArray( 713, 714, 715 ), PoolIntArray( 720, 717, 719 ), PoolIntArray( 717, 718, 719 ), PoolIntArray( 724, 721, 723 ), PoolIntArray( 721, 722, 723 ), PoolIntArray( 728, 725, 727 ), PoolIntArray( 725, 726, 727 ), PoolIntArray( 732, 729, 731 ), PoolIntArray( 729, 730, 731 ), PoolIntArray( 736, 733, 735 ), PoolIntArray( 733, 734, 735 ), PoolIntArray( 740, 737, 739 ), PoolIntArray( 737, 738, 739 ), PoolIntArray( 744, 741, 743 ), PoolIntArray( 741, 742, 743 ), PoolIntArray( 748, 745, 747 ), PoolIntArray( 745, 746, 747 ), PoolIntArray( 752, 749, 751 ), PoolIntArray( 749, 750, 751 ), PoolIntArray( 756, 753, 755 ), PoolIntArray( 753, 754, 755 ), PoolIntArray( 760, 757, 759 ), PoolIntArray( 757, 758, 759 ), PoolIntArray( 764, 761, 763 ), PoolIntArray( 761, 762, 763 ), PoolIntArray( 768, 765, 767 ), PoolIntArray( 765, 766, 767 ), PoolIntArray( 772, 769, 771 ), PoolIntArray( 769, 770, 771 ), PoolIntArray( 776, 773, 775 ), PoolIntArray( 773, 774, 775 ), PoolIntArray( 780, 777, 779 ), PoolIntArray( 777, 778, 779 ), PoolIntArray( 784, 781, 783 ), PoolIntArray( 781, 782, 783 ), PoolIntArray( 788, 785, 787 ), PoolIntArray( 785, 786, 787 ), PoolIntArray( 792, 789, 791 ), PoolIntArray( 789, 790, 791 ), PoolIntArray( 796, 793, 795 ), PoolIntArray( 793, 794, 795 ), PoolIntArray( 800, 797, 799 ), PoolIntArray( 797, 798, 799 ), PoolIntArray( 804, 801, 803 ), PoolIntArray( 801, 802, 803 ), PoolIntArray( 808, 805, 807 ), PoolIntArray( 805, 806, 807 ), PoolIntArray( 812, 809, 811 ), PoolIntArray( 809, 810, 811 ), PoolIntArray( 816, 813, 815 ), PoolIntArray( 813, 814, 815 ), PoolIntArray( 820, 817, 819 ), PoolIntArray( 817, 818, 819 ), PoolIntArray( 824, 821, 823 ), PoolIntArray( 821, 822, 823 ), PoolIntArray( 828, 825, 827 ), PoolIntArray( 825, 826, 827 ), PoolIntArray( 832, 829, 831 ), PoolIntArray( 829, 830, 831 ), PoolIntArray( 837, 833, 836 ), PoolIntArray( 833, 834, 836 ), PoolIntArray( 834, 835, 836 ), PoolIntArray( 842, 838, 841 ), PoolIntArray( 838, 839, 841 ), PoolIntArray( 839, 840, 841 ), PoolIntArray( 847, 843, 846 ), PoolIntArray( 843, 844, 846 ), PoolIntArray( 844, 845, 846 ), PoolIntArray( 851, 848, 850 ), PoolIntArray( 848, 849, 850 ), PoolIntArray( 854, 852, 853 ), PoolIntArray( 860, 855, 859 ), PoolIntArray( 855, 858, 859 ), PoolIntArray( 855, 857, 858 ), PoolIntArray( 855, 856, 857 ), PoolIntArray( 865, 861, 864 ), PoolIntArray( 861, 862, 864 ), PoolIntArray( 862, 863, 864 ), PoolIntArray( 869, 866, 868 ), PoolIntArray( 866, 867, 868 ), PoolIntArray( 873, 870, 872 ), PoolIntArray( 870, 871, 872 ), PoolIntArray( 877, 874, 876 ), PoolIntArray( 874, 875, 876 ), PoolIntArray( 881, 878, 880 ), PoolIntArray( 878, 879, 880 ), PoolIntArray( 885, 882, 884 ), PoolIntArray( 882, 883, 884 ), PoolIntArray( 889, 886, 888 ), PoolIntArray( 886, 887, 888 ), PoolIntArray( 893, 890, 892 ), PoolIntArray( 890, 891, 892 ), PoolIntArray( 897, 894, 896 ), PoolIntArray( 894, 895, 896 ), PoolIntArray( 901, 898, 900 ), PoolIntArray( 898, 899, 900 ), PoolIntArray( 904, 902, 903 ), PoolIntArray( 908, 905, 907 ), PoolIntArray( 905, 906, 907 ), PoolIntArray( 912, 909, 911 ), PoolIntArray( 909, 910, 911 ), PoolIntArray( 916, 913, 915 ), PoolIntArray( 913, 914, 915 ), PoolIntArray( 920, 917, 919 ), PoolIntArray( 917, 918, 919 ), PoolIntArray( 924, 921, 923 ), PoolIntArray( 921, 922, 923 ), PoolIntArray( 928, 925, 927 ), PoolIntArray( 925, 926, 927 ), PoolIntArray( 931, 929, 930 ), PoolIntArray( 937, 932, 936 ), PoolIntArray( 932, 933, 936 ), PoolIntArray( 933, 934, 936 ), PoolIntArray( 934, 935, 936 ), PoolIntArray( 940, 938, 939 ), PoolIntArray( 943, 941, 942 ), PoolIntArray( 946, 944, 945 ), PoolIntArray( 949, 947, 948 ), PoolIntArray( 952, 950, 951 ), PoolIntArray( 955, 953, 954 ), PoolIntArray( 958, 956, 957 ), PoolIntArray( 963, 959, 962 ), PoolIntArray( 959, 961, 962 ), PoolIntArray( 959, 960, 961 ), PoolIntArray( 967, 964, 966 ), PoolIntArray( 964, 965, 966 ), PoolIntArray( 971, 968, 970 ), PoolIntArray( 968, 969, 970 ), PoolIntArray( 975, 972, 974 ), PoolIntArray( 972, 973, 974 ), PoolIntArray( 979, 976, 978 ), PoolIntArray( 976, 977, 978 ), PoolIntArray( 983, 980, 982 ), PoolIntArray( 980, 981, 982 ), PoolIntArray( 987, 984, 986 ), PoolIntArray( 984, 985, 986 ), PoolIntArray( 991, 988, 990 ), PoolIntArray( 988, 989, 990 ), PoolIntArray( 995, 992, 994 ), PoolIntArray( 992, 993, 994 ), PoolIntArray( 999, 996, 998 ), PoolIntArray( 996, 997, 998 ), PoolIntArray( 1002, 1000, 1001 ), PoolIntArray( 1005, 1003, 1004 ), PoolIntArray( 1008, 1006, 1007 ), PoolIntArray( 1011, 1009, 1010 ), PoolIntArray( 1014, 1012, 1013 ), PoolIntArray( 1018, 1015, 1017 ), PoolIntArray( 1015, 1016, 1017 ), PoolIntArray( 1022, 1019, 1021 ), PoolIntArray( 1019, 1020, 1021 ), PoolIntArray( 1026, 1023, 1025 ), PoolIntArray( 1023, 1024, 1025 ), PoolIntArray( 1030, 1027, 1029 ), PoolIntArray( 1027, 1028, 1029 ), PoolIntArray( 1033, 1031, 1032 ), PoolIntArray( 1037, 1034, 1036 ), PoolIntArray( 1034, 1035, 1036 ), PoolIntArray( 1041, 1038, 1040 ), PoolIntArray( 1038, 1039, 1040 ), PoolIntArray( 1044, 1042, 1043 ), PoolIntArray( 1050, 1045, 1049 ), PoolIntArray( 1045, 1048, 1049 ), PoolIntArray( 1045, 1046, 1048 ), PoolIntArray( 1046, 1047, 1048 ), PoolIntArray( 1054, 1051, 1053 ), PoolIntArray( 1051, 1052, 1053 ), PoolIntArray( 1057, 1055, 1056 ), PoolIntArray( 1060, 1058, 1059 ), PoolIntArray( 1064, 1061, 1063 ), PoolIntArray( 1061, 1062, 1063 ), PoolIntArray( 1068, 1065, 1067 ), PoolIntArray( 1065, 1066, 1067 ), PoolIntArray( 1072, 1069, 1071 ), PoolIntArray( 1069, 1070, 1071 ), PoolIntArray( 1076, 1073, 1075 ), PoolIntArray( 1073, 1074, 1075 ), PoolIntArray( 1080, 1077, 1079 ), PoolIntArray( 1077, 1078, 1079 ), PoolIntArray( 1083, 1081, 1082 ), PoolIntArray( 1087, 1084, 1086 ), PoolIntArray( 1084, 1085, 1086 ), PoolIntArray( 1091, 1088, 1090 ), PoolIntArray( 1088, 1089, 1090 ), PoolIntArray( 1097, 1092, 1096 ), PoolIntArray( 1092, 1095, 1096 ), PoolIntArray( 1092, 1094, 1095 ), PoolIntArray( 1092, 1093, 1094 ), PoolIntArray( 1100, 1098, 1099 ), PoolIntArray( 1104, 1101, 1103 ), PoolIntArray( 1101, 1102, 1103 ), PoolIntArray( 1107, 1105, 1106 ), PoolIntArray( 1111, 1108, 1110 ), PoolIntArray( 1108, 1109, 1110 ), PoolIntArray( 1114, 1112, 1113 ), PoolIntArray( 1117, 1115, 1116 ), PoolIntArray( 1121, 1118, 1120 ), PoolIntArray( 1118, 1119, 1120 ), PoolIntArray( 1124, 1122, 1123 ), PoolIntArray( 1127, 1125, 1126 ), PoolIntArray( 1131, 1128, 1130 ), PoolIntArray( 1128, 1129, 1130 ), PoolIntArray( 1134, 1132, 1133 ), PoolIntArray( 1138, 1135, 1137 ), PoolIntArray( 1135, 1136, 1137 ), PoolIntArray( 1141, 1139, 1140 ), PoolIntArray( 1144, 1142, 1143 ), PoolIntArray( 1148, 1145, 1147 ), PoolIntArray( 1145, 1146, 1147 ), PoolIntArray( 1152, 1149, 1151 ), PoolIntArray( 1149, 1150, 1151 ), PoolIntArray( 1156, 1153, 1155 ), PoolIntArray( 1153, 1154, 1155 ), PoolIntArray( 1160, 1157, 1159 ), PoolIntArray( 1157, 1158, 1159 ), PoolIntArray( 1164, 1161, 1163 ), PoolIntArray( 1161, 1162, 1163 ), PoolIntArray( 1168, 1165, 1167 ), PoolIntArray( 1165, 1166, 1167 ), PoolIntArray( 1172, 1169, 1171 ), PoolIntArray( 1169, 1170, 1171 ), PoolIntArray( 1176, 1173, 1175 ), PoolIntArray( 1173, 1174, 1175 ), PoolIntArray( 1180, 1177, 1179 ), PoolIntArray( 1177, 1178, 1179 ), PoolIntArray( 1184, 1181, 1183 ), PoolIntArray( 1181, 1182, 1183 ), PoolIntArray( 1188, 1185, 1187 ), PoolIntArray( 1185, 1186, 1187 ), PoolIntArray( 1192, 1189, 1191 ), PoolIntArray( 1189, 1190, 1191 ), PoolIntArray( 1196, 1193, 1195 ), PoolIntArray( 1193, 1194, 1195 ), PoolIntArray( 1200, 1197, 1199 ), PoolIntArray( 1197, 1198, 1199 ), PoolIntArray( 1204, 1201, 1203 ), PoolIntArray( 1201, 1202, 1203 ), PoolIntArray( 1208, 1205, 1207 ), PoolIntArray( 1205, 1206, 1207 ), PoolIntArray( 1212, 1209, 1211 ), PoolIntArray( 1209, 1210, 1211 ), PoolIntArray( 1216, 1213, 1215 ), PoolIntArray( 1213, 1214, 1215 ), PoolIntArray( 1220, 1217, 1219 ), PoolIntArray( 1217, 1218, 1219 ), PoolIntArray( 1224, 1221, 1223 ), PoolIntArray( 1221, 1222, 1223 ), PoolIntArray( 1228, 1225, 1227 ), PoolIntArray( 1225, 1226, 1227 ), PoolIntArray( 1232, 1229, 1231 ), PoolIntArray( 1229, 1230, 1231 ), PoolIntArray( 1236, 1233, 1235 ), PoolIntArray( 1233, 1234, 1235 ), PoolIntArray( 1240, 1237, 1239 ), PoolIntArray( 1237, 1238, 1239 ), PoolIntArray( 1244, 1241, 1243 ), PoolIntArray( 1241, 1242, 1243 ), PoolIntArray( 1248, 1245, 1247 ), PoolIntArray( 1245, 1246, 1247 ), PoolIntArray( 1252, 1249, 1251 ), PoolIntArray( 1249, 1250, 1251 ), PoolIntArray( 1256, 1253, 1255 ), PoolIntArray( 1253, 1254, 1255 ), PoolIntArray( 1260, 1257, 1259 ), PoolIntArray( 1257, 1258, 1259 ), PoolIntArray( 1264, 1261, 1263 ), PoolIntArray( 1261, 1262, 1263 ), PoolIntArray( 1268, 1265, 1267 ), PoolIntArray( 1265, 1266, 1267 ), PoolIntArray( 1272, 1269, 1271 ), PoolIntArray( 1269, 1270, 1271 ), PoolIntArray( 1276, 1273, 1275 ), PoolIntArray( 1273, 1274, 1275 ), PoolIntArray( 1280, 1277, 1279 ), PoolIntArray( 1277, 1278, 1279 ), PoolIntArray( 1284, 1281, 1283 ), PoolIntArray( 1281, 1282, 1283 ), PoolIntArray( 1288, 1285, 1287 ), PoolIntArray( 1285, 1286, 1287 ), PoolIntArray( 1292, 1289, 1291 ), PoolIntArray( 1289, 1290, 1291 ), PoolIntArray( 1296, 1293, 1295 ), PoolIntArray( 1293, 1294, 1295 ), PoolIntArray( 1300, 1297, 1299 ), PoolIntArray( 1297, 1298, 1299 ), PoolIntArray( 1304, 1301, 1303 ), PoolIntArray( 1301, 1302, 1303 ), PoolIntArray( 1307, 1305, 1306 ), PoolIntArray( 1313, 1308, 1312 ), PoolIntArray( 1308, 1309, 1312 ), PoolIntArray( 1309, 1310, 1312 ), PoolIntArray( 1310, 1311, 1312 ), PoolIntArray( 1316, 1314, 1315 ), PoolIntArray( 1319, 1317, 1318 ), PoolIntArray( 1322, 1320, 1321 ), PoolIntArray( 1328, 1323, 1327 ), PoolIntArray( 1323, 1324, 1327 ), PoolIntArray( 1324, 1325, 1327 ), PoolIntArray( 1325, 1326, 1327 ), PoolIntArray( 1333, 1329, 1332 ), PoolIntArray( 1329, 1330, 1332 ), PoolIntArray( 1330, 1331, 1332 ), PoolIntArray( 1338, 1334, 1337 ), PoolIntArray( 1334, 1335, 1337 ), PoolIntArray( 1335, 1336, 1337 ), PoolIntArray( 1344, 1339, 1343 ), PoolIntArray( 1339, 1340, 1343 ), PoolIntArray( 1340, 1341, 1343 ), PoolIntArray( 1341, 1342, 1343 ), PoolIntArray( 1350, 1345, 1349 ), PoolIntArray( 1345, 1346, 1349 ), PoolIntArray( 1346, 1348, 1349 ), PoolIntArray( 1346, 1347, 1348 ), PoolIntArray( 1354, 1351, 1353 ), PoolIntArray( 1351, 1352, 1353 ), PoolIntArray( 1357, 1355, 1356 ), PoolIntArray( 1360, 1358, 1359 ), PoolIntArray( 1363, 1361, 1362 ), PoolIntArray( 1366, 1364, 1365 ), PoolIntArray( 1369, 1367, 1368 ), PoolIntArray( 1372, 1370, 1371 ), PoolIntArray( 1376, 1373, 1375 ), PoolIntArray( 1373, 1374, 1375 ), PoolIntArray( 1379, 1377, 1378 ), PoolIntArray( 1383, 1380, 1382 ), PoolIntArray( 1380, 1381, 1382 ), PoolIntArray( 1387, 1384, 1386 ), PoolIntArray( 1384, 1385, 1386 ), PoolIntArray( 1390, 1388, 1389 ), PoolIntArray( 1393, 1391, 1392 ), PoolIntArray( 1397, 1394, 1396 ), PoolIntArray( 1394, 1395, 1396 ), PoolIntArray( 1401, 1398, 1400 ), PoolIntArray( 1398, 1399, 1400 ), PoolIntArray( 1404, 1402, 1403 ), PoolIntArray( 1409, 1405, 1408 ), PoolIntArray( 1405, 1407, 1408 ), PoolIntArray( 1405, 1406, 1407 ), PoolIntArray( 1413, 1410, 1412 ), PoolIntArray( 1410, 1411, 1412 ), PoolIntArray( 1416, 1414, 1415 ), PoolIntArray( 1420, 1417, 1419 ), PoolIntArray( 1417, 1418, 1419 ), PoolIntArray( 1423, 1421, 1422 ), PoolIntArray( 1427, 1424, 1426 ), PoolIntArray( 1424, 1425, 1426 ), PoolIntArray( 1430, 1428, 1429 ), PoolIntArray( 1436, 1431, 1435 ), PoolIntArray( 1431, 1432, 1435 ), PoolIntArray( 1432, 1434, 1435 ), PoolIntArray( 1432, 1433, 1434 ), PoolIntArray( 1439, 1437, 1438 ), PoolIntArray( 1443, 1440, 1442 ), PoolIntArray( 1440, 1441, 1442 ), PoolIntArray( 1446, 1444, 1445 ), PoolIntArray( 1449, 1447, 1448 ), PoolIntArray( 1452, 1450, 1451 ), PoolIntArray( 1455, 1453, 1454 ), PoolIntArray( 1458, 1456, 1457 ), PoolIntArray( 1461, 1459, 1460 ), PoolIntArray( 1466, 1462, 1465 ), PoolIntArray( 1462, 1464, 1465 ), PoolIntArray( 1462, 1463, 1464 ), PoolIntArray( 1470, 1467, 1469 ), PoolIntArray( 1467, 1468, 1469 ), PoolIntArray( 1474, 1471, 1473 ), PoolIntArray( 1471, 1472, 1473 ), PoolIntArray( 1478, 1475, 1477 ), PoolIntArray( 1475, 1476, 1477 ), PoolIntArray( 1482, 1479, 1481 ), PoolIntArray( 1479, 1480, 1481 ), PoolIntArray( 1486, 1483, 1485 ), PoolIntArray( 1483, 1484, 1485 ), PoolIntArray( 1490, 1487, 1489 ), PoolIntArray( 1487, 1488, 1489 ), PoolIntArray( 1494, 1491, 1493 ), PoolIntArray( 1491, 1492, 1493 ), PoolIntArray( 1498, 1495, 1497 ), PoolIntArray( 1495, 1496, 1497 ), PoolIntArray( 1502, 1499, 1501 ), PoolIntArray( 1499, 1500, 1501 ), PoolIntArray( 1507, 1503, 1506 ), PoolIntArray( 1503, 1504, 1506 ), PoolIntArray( 1504, 1505, 1506 ), PoolIntArray( 1512, 1508, 1511 ), PoolIntArray( 1508, 1509, 1511 ), PoolIntArray( 1509, 1510, 1511 ), PoolIntArray( 1517, 1513, 1516 ), PoolIntArray( 1513, 1514, 1516 ), PoolIntArray( 1514, 1515, 1516 ), PoolIntArray( 1521, 1518, 1520 ), PoolIntArray( 1518, 1519, 1520 ), PoolIntArray( 1524, 1522, 1523 ), PoolIntArray( 1530, 1525, 1529 ), PoolIntArray( 1525, 1528, 1529 ), PoolIntArray( 1525, 1527, 1528 ), PoolIntArray( 1525, 1526, 1527 ), PoolIntArray( 1534, 1531, 1533 ), PoolIntArray( 1531, 1532, 1533 ), PoolIntArray( 1538, 1535, 1537 ), PoolIntArray( 1535, 1536, 1537 ), PoolIntArray( 1542, 1539, 1541 ), PoolIntArray( 1539, 1540, 1541 ), PoolIntArray( 1546, 1543, 1545 ), PoolIntArray( 1543, 1544, 1545 ), PoolIntArray( 1550, 1547, 1549 ), PoolIntArray( 1547, 1548, 1549 ), PoolIntArray( 1554, 1551, 1553 ), PoolIntArray( 1551, 1552, 1553 ), PoolIntArray( 1558, 1555, 1557 ), PoolIntArray( 1555, 1556, 1557 ), PoolIntArray( 1562, 1559, 1561 ), PoolIntArray( 1559, 1560, 1561 ), PoolIntArray( 1566, 1563, 1565 ), PoolIntArray( 1563, 1564, 1565 ), PoolIntArray( 1570, 1567, 1569 ), PoolIntArray( 1567, 1568, 1569 ), PoolIntArray( 1574, 1571, 1573 ), PoolIntArray( 1571, 1572, 1573 ), PoolIntArray( 1578, 1575, 1577 ), PoolIntArray( 1575, 1576, 1577 ), PoolIntArray( 1581, 1579, 1580 ), PoolIntArray( 1584, 1582, 1583 ), PoolIntArray( 1588, 1585, 1587 ), PoolIntArray( 1585, 1586, 1587 ), PoolIntArray( 1593, 1589, 1592 ), PoolIntArray( 1589, 1590, 1592 ), PoolIntArray( 1590, 1591, 1592 ), PoolIntArray( 1597, 1594, 1596 ), PoolIntArray( 1594, 1595, 1596 ), PoolIntArray( 1601, 1598, 1600 ), PoolIntArray( 1598, 1599, 1600 ), PoolIntArray( 1604, 1602, 1603 ), PoolIntArray( 1607, 1605, 1606 ), PoolIntArray( 1610, 1608, 1609 ), PoolIntArray( 1614, 1611, 1613 ), PoolIntArray( 1611, 1612, 1613 ), PoolIntArray( 1617, 1615, 1616 ), PoolIntArray( 1620, 1618, 1619 ), PoolIntArray( 1624, 1621, 1623 ), PoolIntArray( 1621, 1622, 1623 ), PoolIntArray( 1627, 1625, 1626 ), PoolIntArray( 1630, 1628, 1629 ), PoolIntArray( 1636, 1631, 1635 ), PoolIntArray( 1631, 1632, 1635 ), PoolIntArray( 1632, 1634, 1635 ), PoolIntArray( 1632, 1633, 1634 ), PoolIntArray( 1639, 1637, 1638 ), PoolIntArray( 1642, 1640, 1641 ), PoolIntArray( 1645, 1643, 1644 ), PoolIntArray( 1648, 1646, 1647 ), PoolIntArray( 1652, 1649, 1651 ), PoolIntArray( 1649, 1650, 1651 ), PoolIntArray( 1656, 1653, 1655 ), PoolIntArray( 1653, 1654, 1655 ), PoolIntArray( 1660, 1657, 1659 ), PoolIntArray( 1657, 1658, 1659 ), PoolIntArray( 1664, 1661, 1663 ), PoolIntArray( 1661, 1662, 1663 ), PoolIntArray( 1668, 1665, 1667 ), PoolIntArray( 1665, 1666, 1667 ), PoolIntArray( 1672, 1669, 1671 ), PoolIntArray( 1669, 1670, 1671 ), PoolIntArray( 1676, 1673, 1675 ), PoolIntArray( 1673, 1674, 1675 ), PoolIntArray( 1680, 1677, 1679 ), PoolIntArray( 1677, 1678, 1679 ), PoolIntArray( 1684, 1681, 1683 ), PoolIntArray( 1681, 1682, 1683 ), PoolIntArray( 1688, 1685, 1687 ), PoolIntArray( 1685, 1686, 1687 ), PoolIntArray( 1692, 1689, 1691 ), PoolIntArray( 1689, 1690, 1691 ), PoolIntArray( 1696, 1693, 1695 ), PoolIntArray( 1693, 1694, 1695 ), PoolIntArray( 1699, 1697, 1698 ), PoolIntArray( 1702, 1700, 1701 ), PoolIntArray( 1708, 1703, 1707 ), PoolIntArray( 1703, 1704, 1707 ), PoolIntArray( 1704, 1706, 1707 ), PoolIntArray( 1704, 1705, 1706 ), PoolIntArray( 1712, 1709, 1711 ), PoolIntArray( 1709, 1710, 1711 ), PoolIntArray( 1716, 1713, 1715 ), PoolIntArray( 1713, 1714, 1715 ), PoolIntArray( 1720, 1717, 1719 ), PoolIntArray( 1717, 1718, 1719 ), PoolIntArray( 1724, 1721, 1723 ), PoolIntArray( 1721, 1722, 1723 ), PoolIntArray( 1727, 1725, 1726 ), PoolIntArray( 1731, 1728, 1730 ), PoolIntArray( 1728, 1729, 1730 ), PoolIntArray( 1735, 1732, 1734 ), PoolIntArray( 1732, 1733, 1734 ), PoolIntArray( 1738, 1736, 1737 ), PoolIntArray( 1741, 1739, 1740 ), PoolIntArray( 1746, 1742, 1745 ), PoolIntArray( 1742, 1744, 1745 ), PoolIntArray( 1742, 1743, 1744 ), PoolIntArray( 1750, 1747, 1749 ), PoolIntArray( 1747, 1748, 1749 ), PoolIntArray( 1753, 1751, 1752 ), PoolIntArray( 1756, 1754, 1755 ), PoolIntArray( 1760, 1757, 1759 ), PoolIntArray( 1757, 1758, 1759 ), PoolIntArray( 1764, 1761, 1763 ), PoolIntArray( 1761, 1762, 1763 ), PoolIntArray( 1768, 1765, 1767 ), PoolIntArray( 1765, 1766, 1767 ), PoolIntArray( 1772, 1769, 1771 ), PoolIntArray( 1769, 1770, 1771 ), PoolIntArray( 1776, 1773, 1775 ), PoolIntArray( 1773, 1774, 1775 ), PoolIntArray( 1779, 1777, 1778 ), PoolIntArray( 1782, 1780, 1781 ), PoolIntArray( 1785, 1783, 1784 ), PoolIntArray( 1791, 1786, 1790 ), PoolIntArray( 1786, 1787, 1790 ), PoolIntArray( 1787, 1788, 1790 ), PoolIntArray( 1788, 1789, 1790 ), PoolIntArray( 1794, 1792, 1793 ), PoolIntArray( 1798, 1795, 1797 ), PoolIntArray( 1795, 1796, 1797 ), PoolIntArray( 1802, 1799, 1801 ), PoolIntArray( 1799, 1800, 1801 ), PoolIntArray( 1805, 1803, 1804 ), PoolIntArray( 1809, 1806, 1808 ), PoolIntArray( 1806, 1807, 1808 ), PoolIntArray( 1813, 1810, 1812 ), PoolIntArray( 1810, 1811, 1812 ), PoolIntArray( 1817, 1814, 1816 ), PoolIntArray( 1814, 1815, 1816 ), PoolIntArray( 1820, 1818, 1819 ), PoolIntArray( 1823, 1821, 1822 ), PoolIntArray( 1826, 1824, 1825 ), PoolIntArray( 1829, 1827, 1828 ), PoolIntArray( 1832, 1830, 1831 ), PoolIntArray( 1835, 1833, 1834 ), PoolIntArray( 1839, 1836, 1838 ), PoolIntArray( 1836, 1837, 1838 ), PoolIntArray( 1843, 1840, 1842 ), PoolIntArray( 1840, 1841, 1842 ), PoolIntArray( 1846, 1844, 1845 ), PoolIntArray( 1850, 1847, 1849 ), PoolIntArray( 1847, 1848, 1849 ), PoolIntArray( 1853, 1851, 1852 ), PoolIntArray( 1859, 1854, 1858 ), PoolIntArray( 1854, 1855, 1858 ), PoolIntArray( 1855, 1856, 1858 ), PoolIntArray( 1856, 1857, 1858 ), PoolIntArray( 1863, 1860, 1862 ), PoolIntArray( 1860, 1861, 1862 ), PoolIntArray( 1866, 1864, 1865 ), PoolIntArray( 1871, 1867, 1870 ), PoolIntArray( 1867, 1868, 1870 ), PoolIntArray( 1868, 1869, 1870 ), PoolIntArray( 1874, 1872, 1873 ), PoolIntArray( 1877, 1875, 1876 ), PoolIntArray( 1880, 1878, 1879 ), PoolIntArray( 1883, 1881, 1882 ), PoolIntArray( 1887, 1884, 1886 ), PoolIntArray( 1884, 1885, 1886 ), PoolIntArray( 1890, 1888, 1889 ), PoolIntArray( 1893, 1891, 1892 ), PoolIntArray( 1896, 1894, 1895 ), PoolIntArray( 1899, 1897, 1898 ), PoolIntArray( 1902, 1900, 1901 ), PoolIntArray( 1906, 1903, 1905 ), PoolIntArray( 1903, 1904, 1905 ), PoolIntArray( 1909, 1907, 1908 ), PoolIntArray( 1912, 1910, 1911 ), PoolIntArray( 1915, 1913, 1914 ), PoolIntArray( 1919, 1916, 1918 ), PoolIntArray( 1916, 1917, 1918 ), PoolIntArray( 1923, 1920, 1922 ), PoolIntArray( 1920, 1921, 1922 ), PoolIntArray( 1927, 1924, 1926 ), PoolIntArray( 1924, 1925, 1926 ), PoolIntArray( 1931, 1928, 1930 ), PoolIntArray( 1928, 1929, 1930 ), PoolIntArray( 1935, 1932, 1934 ), PoolIntArray( 1932, 1933, 1934 ), PoolIntArray( 1939, 1936, 1938 ), PoolIntArray( 1936, 1937, 1938 ), PoolIntArray( 1943, 1940, 1942 ), PoolIntArray( 1940, 1941, 1942 ), PoolIntArray( 1947, 1944, 1946 ), PoolIntArray( 1944, 1945, 1946 ), PoolIntArray( 1951, 1948, 1950 ), PoolIntArray( 1948, 1949, 1950 ), PoolIntArray( 1955, 1952, 1954 ), PoolIntArray( 1952, 1953, 1954 ), PoolIntArray( 1959, 1956, 1958 ), PoolIntArray( 1956, 1957, 1958 ), PoolIntArray( 1963, 1960, 1962 ), PoolIntArray( 1960, 1961, 1962 ), PoolIntArray( 1967, 1964, 1966 ), PoolIntArray( 1964, 1965, 1966 ), PoolIntArray( 1971, 1968, 1970 ), PoolIntArray( 1968, 1969, 1970 ), PoolIntArray( 1975, 1972, 1974 ), PoolIntArray( 1972, 1973, 1974 ), PoolIntArray( 1979, 1976, 1978 ), PoolIntArray( 1976, 1977, 1978 ), PoolIntArray( 1983, 1980, 1982 ), PoolIntArray( 1980, 1981, 1982 ), PoolIntArray( 1986, 1984, 1985 ), PoolIntArray( 1989, 1987, 1988 ), PoolIntArray( 1992, 1990, 1991 ), PoolIntArray( 1996, 1993, 1995 ), PoolIntArray( 1993, 1994, 1995 ), PoolIntArray( 2000, 1997, 1999 ), PoolIntArray( 1997, 1998, 1999 ), PoolIntArray( 2003, 2001, 2002 ), PoolIntArray( 2006, 2004, 2005 ), PoolIntArray( 2010, 2007, 2009 ), PoolIntArray( 2007, 2008, 2009 ), PoolIntArray( 2014, 2011, 2013 ), PoolIntArray( 2011, 2012, 2013 ), PoolIntArray( 2017, 2015, 2016 ), PoolIntArray( 2020, 2018, 2019 ), PoolIntArray( 2026, 2021, 2025 ), PoolIntArray( 2021, 2024, 2025 ), PoolIntArray( 2021, 2022, 2024 ), PoolIntArray( 2022, 2023, 2024 ), PoolIntArray( 2029, 2027, 2028 ), PoolIntArray( 2032, 2030, 2031 ), PoolIntArray( 2035, 2033, 2034 ), PoolIntArray( 2038, 2036, 2037 ), PoolIntArray( 2042, 2039, 2041 ), PoolIntArray( 2039, 2040, 2041 ), PoolIntArray( 2046, 2043, 2045 ), PoolIntArray( 2043, 2044, 2045 ), PoolIntArray( 2049, 2047, 2048 ), PoolIntArray( 2052, 2050, 2051 ), PoolIntArray( 2056, 2053, 2055 ), PoolIntArray( 2053, 2054, 2055 ), PoolIntArray( 2061, 2057, 2060 ), PoolIntArray( 2057, 2058, 2060 ), PoolIntArray( 2058, 2059, 2060 ), PoolIntArray( 2064, 2062, 2063 ), PoolIntArray( 2067, 2065, 2066 ), PoolIntArray( 2070, 2068, 2069 ), PoolIntArray( 2074, 2071, 2073 ), PoolIntArray( 2071, 2072, 2073 ), PoolIntArray( 2077, 2075, 2076 ), PoolIntArray( 2081, 2078, 2080 ), PoolIntArray( 2078, 2079, 2080 ), PoolIntArray( 2084, 2082, 2083 ), PoolIntArray( 2087, 2085, 2086 ), PoolIntArray( 2091, 2088, 2090 ), PoolIntArray( 2088, 2089, 2090 ), PoolIntArray( 2094, 2092, 2093 ), PoolIntArray( 2097, 2095, 2096 ), PoolIntArray( 2101, 2098, 2100 ), PoolIntArray( 2098, 2099, 2100 ), PoolIntArray( 2104, 2102, 2103 ), PoolIntArray( 2108, 2105, 2107 ), PoolIntArray( 2105, 2106, 2107 ), PoolIntArray( 2112, 2109, 2111 ), PoolIntArray( 2109, 2110, 2111 ), PoolIntArray( 2115, 2113, 2114 ), PoolIntArray( 2118, 2116, 2117 ), PoolIntArray( 2122, 2119, 2121 ), PoolIntArray( 2119, 2120, 2121 ), PoolIntArray( 2125, 2123, 2124 ), PoolIntArray( 2131, 2126, 2130 ), PoolIntArray( 2126, 2127, 2130 ), PoolIntArray( 2127, 2128, 2130 ), PoolIntArray( 2128, 2129, 2130 ), PoolIntArray( 2134, 2132, 2133 ), PoolIntArray( 2140, 2135, 2139 ), PoolIntArray( 2135, 2136, 2139 ), PoolIntArray( 2136, 2138, 2139 ), PoolIntArray( 2136, 2137, 2138 ), PoolIntArray( 2143, 2141, 2142 ), PoolIntArray( 2146, 2144, 2145 ), PoolIntArray( 2150, 2147, 2149 ), PoolIntArray( 2147, 2148, 2149 ), PoolIntArray( 2154, 2151, 2153 ), PoolIntArray( 2151, 2152, 2153 ), PoolIntArray( 2160, 2155, 2159 ), PoolIntArray( 2155, 2156, 2159 ), PoolIntArray( 2156, 2158, 2159 ), PoolIntArray( 2156, 2157, 2158 ), PoolIntArray( 2163, 2161, 2162 ), PoolIntArray( 2166, 2164, 2165 ), PoolIntArray( 2170, 2167, 2169 ), PoolIntArray( 2167, 2168, 2169 ), PoolIntArray( 2174, 2171, 2173 ), PoolIntArray( 2171, 2172, 2173 ), PoolIntArray( 2178, 2175, 2177 ), PoolIntArray( 2175, 2176, 2177 ), PoolIntArray( 2182, 2179, 2181 ), PoolIntArray( 2179, 2180, 2181 ), PoolIntArray( 2186, 2183, 2185 ), PoolIntArray( 2183, 2184, 2185 ), PoolIntArray( 2190, 2187, 2189 ), PoolIntArray( 2187, 2188, 2189 ), PoolIntArray( 2194, 2191, 2193 ), PoolIntArray( 2191, 2192, 2193 ), PoolIntArray( 2198, 2195, 2197 ), PoolIntArray( 2195, 2196, 2197 ), PoolIntArray( 2202, 2199, 2201 ), PoolIntArray( 2199, 2200, 2201 ), PoolIntArray( 2206, 2203, 2205 ), PoolIntArray( 2203, 2204, 2205 ), PoolIntArray( 2210, 2207, 2209 ), PoolIntArray( 2207, 2208, 2209 ), PoolIntArray( 2214, 2211, 2213 ), PoolIntArray( 2211, 2212, 2213 ), PoolIntArray( 2218, 2215, 2217 ), PoolIntArray( 2215, 2216, 2217 ), PoolIntArray( 2222, 2219, 2221 ), PoolIntArray( 2219, 2220, 2221 ), PoolIntArray( 2226, 2223, 2225 ), PoolIntArray( 2223, 2224, 2225 ), PoolIntArray( 2230, 2227, 2229 ), PoolIntArray( 2227, 2228, 2229 ), PoolIntArray( 2234, 2231, 2233 ), PoolIntArray( 2231, 2232, 2233 ), PoolIntArray( 2238, 2235, 2237 ), PoolIntArray( 2235, 2236, 2237 ), PoolIntArray( 2242, 2239, 2241 ), PoolIntArray( 2239, 2240, 2241 ), PoolIntArray( 2246, 2243, 2245 ), PoolIntArray( 2243, 2244, 2245 ), PoolIntArray( 2250, 2247, 2249 ), PoolIntArray( 2247, 2248, 2249 ), PoolIntArray( 2254, 2251, 2253 ), PoolIntArray( 2251, 2252, 2253 ), PoolIntArray( 2258, 2255, 2257 ), PoolIntArray( 2255, 2256, 2257 ), PoolIntArray( 2262, 2259, 2261 ), PoolIntArray( 2259, 2260, 2261 ), PoolIntArray( 2266, 2263, 2265 ), PoolIntArray( 2263, 2264, 2265 ), PoolIntArray( 2270, 2267, 2269 ), PoolIntArray( 2267, 2268, 2269 ), PoolIntArray( 2274, 2271, 2273 ), PoolIntArray( 2271, 2272, 2273 ), PoolIntArray( 2278, 2275, 2277 ), PoolIntArray( 2275, 2276, 2277 ), PoolIntArray( 2282, 2279, 2281 ), PoolIntArray( 2279, 2280, 2281 ), PoolIntArray( 2286, 2283, 2285 ), PoolIntArray( 2283, 2284, 2285 ), PoolIntArray( 2289, 2287, 2288 ), PoolIntArray( 2292, 2290, 2291 ), PoolIntArray( 2296, 2293, 2295 ), PoolIntArray( 2293, 2294, 2295 ), PoolIntArray( 2300, 2297, 2299 ), PoolIntArray( 2297, 2298, 2299 ), PoolIntArray( 2305, 2301, 2304 ), PoolIntArray( 2301, 2303, 2304 ), PoolIntArray( 2301, 2302, 2303 ), PoolIntArray( 2309, 2306, 2308 ), PoolIntArray( 2306, 2307, 2308 ), PoolIntArray( 2313, 2310, 2312 ), PoolIntArray( 2310, 2311, 2312 ), PoolIntArray( 2317, 2314, 2316 ), PoolIntArray( 2314, 2315, 2316 ), PoolIntArray( 2321, 2318, 2320 ), PoolIntArray( 2318, 2319, 2320 ), PoolIntArray( 2325, 2322, 2324 ), PoolIntArray( 2322, 2323, 2324 ), PoolIntArray( 2329, 2326, 2328 ), PoolIntArray( 2326, 2327, 2328 ), PoolIntArray( 2333, 2330, 2332 ), PoolIntArray( 2330, 2331, 2332 ), PoolIntArray( 2337, 2334, 2336 ), PoolIntArray( 2334, 2335, 2336 ), PoolIntArray( 2341, 2338, 2340 ), PoolIntArray( 2338, 2339, 2340 ), PoolIntArray( 2345, 2342, 2344 ), PoolIntArray( 2342, 2343, 2344 ), PoolIntArray( 2349, 2346, 2348 ), PoolIntArray( 2346, 2347, 2348 ), PoolIntArray( 2353, 2350, 2352 ), PoolIntArray( 2350, 2351, 2352 ), PoolIntArray( 2357, 2354, 2356 ), PoolIntArray( 2354, 2355, 2356 ), PoolIntArray( 2361, 2358, 2360 ), PoolIntArray( 2358, 2359, 2360 ), PoolIntArray( 2365, 2362, 2364 ), PoolIntArray( 2362, 2363, 2364 ), PoolIntArray( 2369, 2366, 2368 ), PoolIntArray( 2366, 2367, 2368 ), PoolIntArray( 2374, 2370, 2373 ), PoolIntArray( 2370, 2371, 2373 ), PoolIntArray( 2371, 2372, 2373 ), PoolIntArray( 2378, 2375, 2377 ), PoolIntArray( 2375, 2376, 2377 ), PoolIntArray( 2382, 2379, 2381 ), PoolIntArray( 2379, 2380, 2381 ), PoolIntArray( 2386, 2383, 2385 ), PoolIntArray( 2383, 2384, 2385 ), PoolIntArray( 2390, 2387, 2389 ), PoolIntArray( 2387, 2388, 2389 ), PoolIntArray( 2394, 2391, 2393 ), PoolIntArray( 2391, 2392, 2393 ), PoolIntArray( 2398, 2395, 2397 ), PoolIntArray( 2395, 2396, 2397 ), PoolIntArray( 2404, 2399, 2403 ), PoolIntArray( 2399, 2402, 2403 ), PoolIntArray( 2399, 2400, 2402 ), PoolIntArray( 2400, 2401, 2402 ), PoolIntArray( 2407, 2405, 2406 ), PoolIntArray( 2411, 2408, 2410 ), PoolIntArray( 2408, 2409, 2410 ), PoolIntArray( 2414, 2412, 2413 ), PoolIntArray( 2417, 2415, 2416 ), PoolIntArray( 2421, 2418, 2420 ), PoolIntArray( 2418, 2419, 2420 ), PoolIntArray( 2425, 2422, 2424 ), PoolIntArray( 2422, 2423, 2424 ), PoolIntArray( 2428, 2426, 2427 ), PoolIntArray( 2431, 2429, 2430 ), PoolIntArray( 2434, 2432, 2433 ), PoolIntArray( 2438, 2435, 2437 ), PoolIntArray( 2435, 2436, 2437 ), PoolIntArray( 2441, 2439, 2440 ), PoolIntArray( 2445, 2442, 2444 ), PoolIntArray( 2442, 2443, 2444 ), PoolIntArray( 2449, 2446, 2448 ), PoolIntArray( 2446, 2447, 2448 ), PoolIntArray( 2452, 2450, 2451 ), PoolIntArray( 2456, 2453, 2455 ), PoolIntArray( 2453, 2454, 2455 ), PoolIntArray( 2459, 2457, 2458 ), PoolIntArray( 2462, 2460, 2461 ), PoolIntArray( 2466, 2463, 2465 ), PoolIntArray( 2463, 2464, 2465 ), PoolIntArray( 2471, 2467, 2470 ), PoolIntArray( 2467, 2468, 2470 ), PoolIntArray( 2468, 2469, 2470 ), PoolIntArray( 2474, 2472, 2473 ), PoolIntArray( 2477, 2475, 2476 ), PoolIntArray( 2481, 2478, 2480 ), PoolIntArray( 2478, 2479, 2480 ), PoolIntArray( 2484, 2482, 2483 ), PoolIntArray( 2487, 2485, 2486 ), PoolIntArray( 2491, 2488, 2490 ), PoolIntArray( 2488, 2489, 2490 ), PoolIntArray( 2494, 2492, 2493 ), PoolIntArray( 2497, 2495, 2496 ), PoolIntArray( 2501, 2498, 2500 ), PoolIntArray( 2498, 2499, 2500 ), PoolIntArray( 2505, 2502, 2504 ), PoolIntArray( 2502, 2503, 2504 ), PoolIntArray( 2508, 2506, 2507 ), PoolIntArray( 2511, 2509, 2510 ), PoolIntArray( 2515, 2512, 2514 ), PoolIntArray( 2512, 2513, 2514 ), PoolIntArray( 2518, 2516, 2517 ), PoolIntArray( 2521, 2519, 2520 ), PoolIntArray( 2525, 2522, 2524 ), PoolIntArray( 2522, 2523, 2524 ), PoolIntArray( 2529, 2526, 2528 ), PoolIntArray( 2526, 2527, 2528 ), PoolIntArray( 2533, 2530, 2532 ), PoolIntArray( 2530, 2531, 2532 ), PoolIntArray( 2537, 2534, 2536 ), PoolIntArray( 2534, 2535, 2536 ), PoolIntArray( 2541, 2538, 2540 ), PoolIntArray( 2538, 2539, 2540 ), PoolIntArray( 2545, 2542, 2544 ), PoolIntArray( 2542, 2543, 2544 ), PoolIntArray( 2549, 2546, 2548 ), PoolIntArray( 2546, 2547, 2548 ), PoolIntArray( 2553, 2550, 2552 ), PoolIntArray( 2550, 2551, 2552 ), PoolIntArray( 2557, 2554, 2556 ), PoolIntArray( 2554, 2555, 2556 ), PoolIntArray( 2561, 2558, 2560 ), PoolIntArray( 2558, 2559, 2560 ), PoolIntArray( 2565, 2562, 2564 ), PoolIntArray( 2562, 2563, 2564 ), PoolIntArray( 2569, 2566, 2568 ), PoolIntArray( 2566, 2567, 2568 ), PoolIntArray( 2573, 2570, 2572 ), PoolIntArray( 2570, 2571, 2572 ), PoolIntArray( 2577, 2574, 2576 ), PoolIntArray( 2574, 2575, 2576 ), PoolIntArray( 2581, 2578, 2580 ), PoolIntArray( 2578, 2579, 2580 ), PoolIntArray( 2585, 2582, 2584 ), PoolIntArray( 2582, 2583, 2584 ), PoolIntArray( 2589, 2586, 2588 ), PoolIntArray( 2586, 2587, 2588 ), PoolIntArray( 2593, 2590, 2592 ), PoolIntArray( 2590, 2591, 2592 ), PoolIntArray( 2597, 2594, 2596 ), PoolIntArray( 2594, 2595, 2596 ), PoolIntArray( 2601, 2598, 2600 ), PoolIntArray( 2598, 2599, 2600 ), PoolIntArray( 2605, 2602, 2604 ), PoolIntArray( 2602, 2603, 2604 ), PoolIntArray( 2609, 2606, 2608 ), PoolIntArray( 2606, 2607, 2608 ), PoolIntArray( 2613, 2610, 2612 ), PoolIntArray( 2610, 2611, 2612 ), PoolIntArray( 2617, 2614, 2616 ), PoolIntArray( 2614, 2615, 2616 ), PoolIntArray( 2621, 2618, 2620 ), PoolIntArray( 2618, 2619, 2620 ), PoolIntArray( 2625, 2622, 2624 ), PoolIntArray( 2622, 2623, 2624 ), PoolIntArray( 2629, 2626, 2628 ), PoolIntArray( 2626, 2627, 2628 ), PoolIntArray( 2633, 2630, 2632 ), PoolIntArray( 2630, 2631, 2632 ), PoolIntArray( 2637, 2634, 2636 ), PoolIntArray( 2634, 2635, 2636 ), PoolIntArray( 2641, 2638, 2640 ), PoolIntArray( 2638, 2639, 2640 ), PoolIntArray( 2645, 2642, 2644 ), PoolIntArray( 2642, 2643, 2644 ), PoolIntArray( 2649, 2646, 2648 ), PoolIntArray( 2646, 2647, 2648 ), PoolIntArray( 2653, 2650, 2652 ), PoolIntArray( 2650, 2651, 2652 ), PoolIntArray( 2657, 2654, 2656 ), PoolIntArray( 2654, 2655, 2656 ) ] agent/radius = 2.0 -[sub_resource type="PlaneMesh" id=1] +[sub_resource type="PlaneMesh" id=2] size = Vector2( 500, 500 ) -[sub_resource type="ConcavePolygonShape" id=2] +[sub_resource type="ConcavePolygonShape" id=3] data = PoolVector3Array( 250, 0, 250, -250, 0, 250, 250, 0, -250, -250, 0, 250, -250, 0, -250, 250, 0, -250 ) -[sub_resource type="ProceduralSky" id=5] +[sub_resource type="ProceduralSky" id=4] -[sub_resource type="Environment" id=6] +[sub_resource type="Environment" id=5] background_mode = 2 -background_sky = SubResource( 5 ) +background_sky = SubResource( 4 ) -[sub_resource type="Curve3D" id=7] +[sub_resource type="Curve3D" id=6] _data = { "points": PoolVector3Array( 0, 0, 0, 0, 0, 0, 2.77093, 0, 97.8557, 0, 0, 0, 0, 0, 0, 26.9732, -0.000976562, 98.019, 0, 0, 0, 0, 0, 0, 26.5524, -0.0141602, 64.329, 0, 0, 0, 0, 0, 0, 3.05817, 0, 64.3674 ), "tilts": PoolRealArray( 0, 0, 0, 0 ) @@ -42,7 +42,7 @@ transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 7 ) transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 15.0831, 1.63203, 88.0992 ) [node name="NavigationMeshInstance" type="NavigationMeshInstance" parent="."] -navmesh = SubResource( 3 ) +navmesh = SubResource( 1 ) [node name="PlayerHouse" parent="NavigationMeshInstance" instance=ExtResource( 3 )] transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 13, 0, 14 ) @@ -208,21 +208,25 @@ transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 73, 0, -88 ) [node name="Ground" type="MeshInstance" parent="NavigationMeshInstance"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -83.9196, -0.0216179, -105.861 ) -mesh = SubResource( 1 ) +layers = 7 +mesh = SubResource( 2 ) material/0 = null [node name="StaticBody" type="StaticBody" parent="NavigationMeshInstance/Ground"] +collision_layer = 7 +collision_mask = 7 [node name="CollisionShape" type="CollisionShape" parent="NavigationMeshInstance/Ground/StaticBody"] -shape = SubResource( 2 ) +shape = SubResource( 3 ) [node name="Environment" type="Spatial" parent="."] [node name="WorldEnvironment" type="WorldEnvironment" parent="Environment"] -environment = SubResource( 6 ) +environment = SubResource( 5 ) [node name="DirectionalLight" type="DirectionalLight" parent="Environment"] transform = Transform( 0.642788, -0.262003, -0.719846, 0, -0.939693, 0.34202, -0.766044, -0.219846, -0.604023, 0, 7, 0 ) +layers = 3 shadow_enabled = true [node name="NodeGroupNotifier" parent="." instance=ExtResource( 7 )] @@ -230,7 +234,7 @@ group_name = "Navigator" node_to_send = NodePath("..") [node name="PathNavigatorForNPC" parent="." instance=ExtResource( 8 )] -curve = SubResource( 7 ) +curve = SubResource( 6 ) body_nodepath = NodePath("Meldewesen") [node name="Meldewesen" parent="PathNavigatorForNPC" instance=ExtResource( 9 )] From 51e263e83ddd52868298dacce472c4931b10d190 Mon Sep 17 00:00:00 2001 From: karl Date: Thu, 21 Nov 2019 12:37:54 +0100 Subject: [PATCH 07/14] Collision depends on pill level; works in World World is now the default scene since the old one hasn't been modified for this --- project.godot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.godot b/project.godot index 053a578..e2ae918 100644 --- a/project.godot +++ b/project.godot @@ -63,7 +63,7 @@ _global_script_class_icons={ [application] config/name="retrace" -run/main_scene="res://Level/PathTestWorld.tscn" +run/main_scene="res://Level/World.tscn" config/icon="res://icon.png" [autoload] From 9d82dbe5213f968c3668c4b4f130ef12fe1f7dd9 Mon Sep 17 00:00:00 2001 From: karl Date: Thu, 21 Nov 2019 12:45:44 +0100 Subject: [PATCH 08/14] Tweaks for pill-based visuals and collision --- Characters/Player/PillCameras.gd | 4 ++-- Characters/Player/Player.gd | 3 +-- Characters/Player/Player.tscn | 6 ++++++ Level/Buildings/Factory.tscn | 8 ++++---- Level/World.tscn | 2 +- 5 files changed, 14 insertions(+), 9 deletions(-) diff --git a/Characters/Player/PillCameras.gd b/Characters/Player/PillCameras.gd index b12f92c..2d4569f 100644 --- a/Characters/Player/PillCameras.gd +++ b/Characters/Player/PillCameras.gd @@ -5,6 +5,6 @@ onready var screen_texture = get_node("ScreenTexture") as ColorRect func _process(delta: float) -> void: - # The factor is 0 when the level is between 0% and 20%; 1 when the level is between 80% and 100%; lerp inbetween - var factor = clamp((Pills.get_level() / Pills.get_max() * 1.4 - 0.2), 0.0, 1.0) + # The factor is 0 when the level is between 0% and 25%; 1 when the level is between 75% and 100%; lerp inbetween + var factor = clamp((Pills.get_level() / Pills.get_max() * 1.5 - 0.25), 0.0, 1.0) screen_texture.material.set_shader_param("mask_factor", factor) \ No newline at end of file diff --git a/Characters/Player/Player.gd b/Characters/Player/Player.gd index 39fd975..82957a1 100644 --- a/Characters/Player/Player.gd +++ b/Characters/Player/Player.gd @@ -106,11 +106,10 @@ func process_animations(): func process_collision_layers(): var new_layer: int = 6 - if Pills.get_level() >= Pills.LEVELS.LOW: + if Pills.get_level() >= Pills.LEVELS.VERY_LOW: # If the masked view is almost invisible, collision with masked objects is disabled new_layer -= 1 # See collision layer names in editor - print(new_layer) collision_layer = new_layer collision_mask = new_layer diff --git a/Characters/Player/Player.tscn b/Characters/Player/Player.tscn index e1d1ec9..d819dfc 100644 --- a/Characters/Player/Player.tscn +++ b/Characters/Player/Player.tscn @@ -92,20 +92,26 @@ current = true [node name="TrueView" type="Viewport" parent="Body/PillCameras"] size = Vector2( 1024, 600 ) render_target_update_mode = 3 +shadow_atlas_size = 4 [node name="TrueCamera" type="Camera" parent="Body/PillCameras/TrueView"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0625, 1.85, 0 ) cull_mask = 2 current = true +fov = 80.0 +far = 2000.0 [node name="MaskedView" type="Viewport" parent="Body/PillCameras"] size = Vector2( 1024, 600 ) render_target_update_mode = 3 +shadow_atlas_size = 4 [node name="MaskedCamera" type="Camera" parent="Body/PillCameras/MaskedView"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0625, 1.85, 0 ) cull_mask = 1 current = true +fov = 80.0 +far = 2000.0 [node name="ScreenTexture" type="ColorRect" parent="Body/PillCameras"] material = SubResource( 6 ) diff --git a/Level/Buildings/Factory.tscn b/Level/Buildings/Factory.tscn index 67ebc89..907a411 100644 --- a/Level/Buildings/Factory.tscn +++ b/Level/Buildings/Factory.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=2] -[sub_resource type="CylinderMesh" id=4] +[sub_resource type="CylinderMesh" id=1] top_radius = 20.0 bottom_radius = 35.0 height = 100.0 @@ -10,15 +10,15 @@ transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -185, 0, -191 ) [node name="MeshInstance" type="MeshInstance" parent="."] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 50, 0 ) -mesh = SubResource( 4 ) +mesh = SubResource( 1 ) material/0 = null [node name="MeshInstance2" type="MeshInstance" parent="."] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 50, 60 ) -mesh = SubResource( 4 ) +mesh = SubResource( 1 ) material/0 = null [node name="MeshInstance3" type="MeshInstance" parent="."] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 50, -60 ) -mesh = SubResource( 4 ) +mesh = SubResource( 1 ) material/0 = null diff --git a/Level/World.tscn b/Level/World.tscn index 207342f..5a9c343 100644 --- a/Level/World.tscn +++ b/Level/World.tscn @@ -208,7 +208,7 @@ transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 73, 0, -88 ) [node name="Ground" type="MeshInstance" parent="NavigationMeshInstance"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -83.9196, -0.0216179, -105.861 ) -layers = 7 +layers = 3 mesh = SubResource( 2 ) material/0 = null From 0cd0c4e9b74d309104795fabe478fbf934d63ddd Mon Sep 17 00:00:00 2001 From: Ententerminator Date: Thu, 21 Nov 2019 13:26:28 +0100 Subject: [PATCH 09/14] added pill TRUEFORM --- Models/pill/pill101blend.glb | Bin 0 -> 145984 bytes Models/pill/pill101blend.glb.import | 1062 +++++++++++++++++++++++++++ Things/pills/Pills.tscn | 43 ++ 3 files changed, 1105 insertions(+) create mode 100644 Models/pill/pill101blend.glb create mode 100644 Models/pill/pill101blend.glb.import create mode 100644 Things/pills/Pills.tscn diff --git a/Models/pill/pill101blend.glb b/Models/pill/pill101blend.glb new file mode 100644 index 0000000000000000000000000000000000000000..5c057631971c5268bb086ed170d89738d9699127 GIT binary patch literal 145984 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%0ADXY0S7msIm2)5ag6dRx-dm*)Zwvoa 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

6z{B7p=9lJC^O$+u zJOTU){FV7N@R)fL(l?O5GQTyyGru=a0lzhWFi)FjfM>zy%pc94fak$Ko4=U9niqgS zn-|UB%uD9)z>DT(^NRTg@GAIE^Dpz7c^&wtdBgnMylLJ7-Y{>Qcg%mxyXHOfU-Lfj zuK56X-+TysVEzYuXg)F@n@@mG!OzTiY%r!}Spq1*(z1c3<%8shEUkbQv?8ozz<`z9 zN@1l0rUIw7(pYJM>A>l&3|2-f6EMA%*~(&N1!eR5Gw^}zM523A90BXDEuRjY~B6xi5mW;M53SS^9g ztX9@*R%>7za9gXL)gJgdxP#Tv>ST2WcCccsE>>5o8!*P|ZoOgkuzFg(tlq#r;67Gg zU{9+bq&I;*t^U>kYoPTOu)j6P8f*=*-Ube`hFZg{;lL5#k-(wWDBwtIG;oyljy1*_ zYsCWJvBp{BtqH)1;7QhGYl<}$ILUg~nr2N0z6XBanqhrl%>=%0&9XkUW?OTtkF2@C zdEoih0&AhQ2sq#R*!sj;3|svLrdcc;A_@(>jv;|@J;KMb=$fFylMSo z-L>uk{{`Q-9#{{p|A6;?5q(8J@g}g3 z=r0C{fxx%GgT!DlM7#|gB!-G%Vz?L~Mv76u(csbI9pDHt2GUsI2oWpBiSfV*;E7_A zm@KAl8Zk@#4A z0$eB-izQ;I_!PKUEECJc3gBnpm131x4O|2MT&xxA#23KN#d@(pYy@rsZx&m`R9q|wFF8H4KSKJ3a06!G}iATW4;3wj#cm|9I8`6}PG^7Aa zX-gl_4-Uwni~uGBCzmN?N?xJIb=>?E^uy{ zN9G0Q1Lv0oWIk5- z*-o|xz7FmnJIYSL&fpl?MRo;t19z8i$R5C+;9jz~>;voz?kC@r{ec6(1La$C5O6Sf zhSFat81N z@Ju;Neh8cmo+Ce!bAj`~^W_4$5V#2ZvHV0X1}*_Fm7mIGz~$f-@-w*-xC*>lu92Su z*Mir{FXVdQ2Jl9?Np1#i0dJMtf1Pp`s$^G&G@F4h*JS>j@ zzXTtZ$K-L~3Gi3)Yk3m*4ftF6o%|kn3jBjSEzbbYg3rkxk#m@J0EX zyafCmd|6(Re*mw7|CE2pYryN^8}e^?6L<@JTi%iX0PlkD$$#a2-~;eO`Ja3Qd<=df zpUP*zc(7rcwq+Z(0887peLz1rUH@92ZErHGKR`zRlYhW92Tf3dz9{4)AgWb{Y1ndlsvAft^f!)B}?KkWmz@Fe< zc5k~6urIiu{ifX?H~>7*e#;&N91I>}zikf%4g(LjN7y5Qqrju>ckD61vEW#HoIM^m z0X)&3WKRZ80Z+BxwWk56gWt2?w`Tx90ME2%*&hODgXh>E*>i#O!1L_|_Cnwy@W=Ki z_F~`?@KXCzdl_&!c!m9$y%M+zyxLx4e-2y=UT1${uLo`bZ?rern}J)vTkUQ3cHj>1 UPJ5TV8@LC&*N(G8z%cm#0g-rnDgXcg literal 0 HcmV?d00001 diff --git a/Models/pill/pill101blend.glb.import b/Models/pill/pill101blend.glb.import new file mode 100644 index 0000000..af6db69 --- /dev/null +++ b/Models/pill/pill101blend.glb.import @@ -0,0 +1,1062 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/pill101blend.glb-1f36c25bd0acd2e89dd05338b3417030.scn" + +[deps] + +source_file="res://Models/pill/pill101blend.glb" +dest_files=[ "res://.import/pill101blend.glb-1f36c25bd0acd2e89dd05338b3417030.scn" ] + +[params] + +nodes/root_type="Spatial" +nodes/root_name="Scene Root" +nodes/root_scale=1.0 +nodes/custom_script="" +nodes/storage=0 +materials/location=1 +materials/storage=1 +materials/keep_on_reimport=true +meshes/compress=true +meshes/ensure_tangents=true +meshes/storage=0 +meshes/light_baking=0 +meshes/lightmap_texel_size=0.1 +external_files/store_in_subdir=false +animation/import=true +animation/fps=15 +animation/filter_script="" +animation/storage=false +animation/keep_custom_tracks=false +animation/optimizer/enabled=true +animation/optimizer/max_linear_error=0.05 +animation/optimizer/max_angular_error=0.01 +animation/optimizer/max_angle=22 +animation/optimizer/remove_unused_tracks=true +animation/clips/amount=0 +animation/clip_1/name="" +animation/clip_1/start_frame=0 +animation/clip_1/end_frame=0 +animation/clip_1/loops=false +animation/clip_2/name="" +animation/clip_2/start_frame=0 +animation/clip_2/end_frame=0 +animation/clip_2/loops=false +animation/clip_3/name="" +animation/clip_3/start_frame=0 +animation/clip_3/end_frame=0 +animation/clip_3/loops=false +animation/clip_4/name="" +animation/clip_4/start_frame=0 +animation/clip_4/end_frame=0 +animation/clip_4/loops=false +animation/clip_5/name="" +animation/clip_5/start_frame=0 +animation/clip_5/end_frame=0 +animation/clip_5/loops=false +animation/clip_6/name="" +animation/clip_6/start_frame=0 +animation/clip_6/end_frame=0 +animation/clip_6/loops=false +animation/clip_7/name="" +animation/clip_7/start_frame=0 +animation/clip_7/end_frame=0 +animation/clip_7/loops=false +animation/clip_8/name="" +animation/clip_8/start_frame=0 +animation/clip_8/end_frame=0 +animation/clip_8/loops=false +animation/clip_9/name="" +animation/clip_9/start_frame=0 +animation/clip_9/end_frame=0 +animation/clip_9/loops=false +animation/clip_10/name="" +animation/clip_10/start_frame=0 +animation/clip_10/end_frame=0 +animation/clip_10/loops=false +animation/clip_11/name="" +animation/clip_11/start_frame=0 +animation/clip_11/end_frame=0 +animation/clip_11/loops=false +animation/clip_12/name="" +animation/clip_12/start_frame=0 +animation/clip_12/end_frame=0 +animation/clip_12/loops=false +animation/clip_13/name="" +animation/clip_13/start_frame=0 +animation/clip_13/end_frame=0 +animation/clip_13/loops=false +animation/clip_14/name="" +animation/clip_14/start_frame=0 +animation/clip_14/end_frame=0 +animation/clip_14/loops=false +animation/clip_15/name="" +animation/clip_15/start_frame=0 +animation/clip_15/end_frame=0 +animation/clip_15/loops=false +animation/clip_16/name="" +animation/clip_16/start_frame=0 +animation/clip_16/end_frame=0 +animation/clip_16/loops=false +animation/clip_17/name="" +animation/clip_17/start_frame=0 +animation/clip_17/end_frame=0 +animation/clip_17/loops=false +animation/clip_18/name="" +animation/clip_18/start_frame=0 +animation/clip_18/end_frame=0 +animation/clip_18/loops=false +animation/clip_19/name="" +animation/clip_19/start_frame=0 +animation/clip_19/end_frame=0 +animation/clip_19/loops=false +animation/clip_20/name="" +animation/clip_20/start_frame=0 +animation/clip_20/end_frame=0 +animation/clip_20/loops=false +animation/clip_21/name="" +animation/clip_21/start_frame=0 +animation/clip_21/end_frame=0 +animation/clip_21/loops=false +animation/clip_22/name="" +animation/clip_22/start_frame=0 +animation/clip_22/end_frame=0 +animation/clip_22/loops=false +animation/clip_23/name="" +animation/clip_23/start_frame=0 +animation/clip_23/end_frame=0 +animation/clip_23/loops=false +animation/clip_24/name="" +animation/clip_24/start_frame=0 +animation/clip_24/end_frame=0 +animation/clip_24/loops=false +animation/clip_25/name="" +animation/clip_25/start_frame=0 +animation/clip_25/end_frame=0 +animation/clip_25/loops=false +animation/clip_26/name="" +animation/clip_26/start_frame=0 +animation/clip_26/end_frame=0 +animation/clip_26/loops=false +animation/clip_27/name="" +animation/clip_27/start_frame=0 +animation/clip_27/end_frame=0 +animation/clip_27/loops=false +animation/clip_28/name="" +animation/clip_28/start_frame=0 +animation/clip_28/end_frame=0 +animation/clip_28/loops=false +animation/clip_29/name="" +animation/clip_29/start_frame=0 +animation/clip_29/end_frame=0 +animation/clip_29/loops=false +animation/clip_30/name="" +animation/clip_30/start_frame=0 +animation/clip_30/end_frame=0 +animation/clip_30/loops=false +animation/clip_31/name="" +animation/clip_31/start_frame=0 +animation/clip_31/end_frame=0 +animation/clip_31/loops=false +animation/clip_32/name="" +animation/clip_32/start_frame=0 +animation/clip_32/end_frame=0 +animation/clip_32/loops=false +animation/clip_33/name="" +animation/clip_33/start_frame=0 +animation/clip_33/end_frame=0 +animation/clip_33/loops=false +animation/clip_34/name="" +animation/clip_34/start_frame=0 +animation/clip_34/end_frame=0 +animation/clip_34/loops=false +animation/clip_35/name="" +animation/clip_35/start_frame=0 +animation/clip_35/end_frame=0 +animation/clip_35/loops=false +animation/clip_36/name="" +animation/clip_36/start_frame=0 +animation/clip_36/end_frame=0 +animation/clip_36/loops=false +animation/clip_37/name="" +animation/clip_37/start_frame=0 +animation/clip_37/end_frame=0 +animation/clip_37/loops=false +animation/clip_38/name="" +animation/clip_38/start_frame=0 +animation/clip_38/end_frame=0 +animation/clip_38/loops=false +animation/clip_39/name="" +animation/clip_39/start_frame=0 +animation/clip_39/end_frame=0 +animation/clip_39/loops=false +animation/clip_40/name="" +animation/clip_40/start_frame=0 +animation/clip_40/end_frame=0 +animation/clip_40/loops=false +animation/clip_41/name="" +animation/clip_41/start_frame=0 +animation/clip_41/end_frame=0 +animation/clip_41/loops=false +animation/clip_42/name="" +animation/clip_42/start_frame=0 +animation/clip_42/end_frame=0 +animation/clip_42/loops=false +animation/clip_43/name="" +animation/clip_43/start_frame=0 +animation/clip_43/end_frame=0 +animation/clip_43/loops=false +animation/clip_44/name="" +animation/clip_44/start_frame=0 +animation/clip_44/end_frame=0 +animation/clip_44/loops=false +animation/clip_45/name="" +animation/clip_45/start_frame=0 +animation/clip_45/end_frame=0 +animation/clip_45/loops=false +animation/clip_46/name="" +animation/clip_46/start_frame=0 +animation/clip_46/end_frame=0 +animation/clip_46/loops=false +animation/clip_47/name="" +animation/clip_47/start_frame=0 +animation/clip_47/end_frame=0 +animation/clip_47/loops=false +animation/clip_48/name="" +animation/clip_48/start_frame=0 +animation/clip_48/end_frame=0 +animation/clip_48/loops=false +animation/clip_49/name="" +animation/clip_49/start_frame=0 +animation/clip_49/end_frame=0 +animation/clip_49/loops=false +animation/clip_50/name="" +animation/clip_50/start_frame=0 +animation/clip_50/end_frame=0 +animation/clip_50/loops=false +animation/clip_51/name="" +animation/clip_51/start_frame=0 +animation/clip_51/end_frame=0 +animation/clip_51/loops=false +animation/clip_52/name="" +animation/clip_52/start_frame=0 +animation/clip_52/end_frame=0 +animation/clip_52/loops=false +animation/clip_53/name="" +animation/clip_53/start_frame=0 +animation/clip_53/end_frame=0 +animation/clip_53/loops=false +animation/clip_54/name="" +animation/clip_54/start_frame=0 +animation/clip_54/end_frame=0 +animation/clip_54/loops=false +animation/clip_55/name="" +animation/clip_55/start_frame=0 +animation/clip_55/end_frame=0 +animation/clip_55/loops=false +animation/clip_56/name="" +animation/clip_56/start_frame=0 +animation/clip_56/end_frame=0 +animation/clip_56/loops=false +animation/clip_57/name="" +animation/clip_57/start_frame=0 +animation/clip_57/end_frame=0 +animation/clip_57/loops=false +animation/clip_58/name="" +animation/clip_58/start_frame=0 +animation/clip_58/end_frame=0 +animation/clip_58/loops=false +animation/clip_59/name="" +animation/clip_59/start_frame=0 +animation/clip_59/end_frame=0 +animation/clip_59/loops=false +animation/clip_60/name="" +animation/clip_60/start_frame=0 +animation/clip_60/end_frame=0 +animation/clip_60/loops=false +animation/clip_61/name="" +animation/clip_61/start_frame=0 +animation/clip_61/end_frame=0 +animation/clip_61/loops=false +animation/clip_62/name="" +animation/clip_62/start_frame=0 +animation/clip_62/end_frame=0 +animation/clip_62/loops=false +animation/clip_63/name="" +animation/clip_63/start_frame=0 +animation/clip_63/end_frame=0 +animation/clip_63/loops=false +animation/clip_64/name="" +animation/clip_64/start_frame=0 +animation/clip_64/end_frame=0 +animation/clip_64/loops=false +animation/clip_65/name="" +animation/clip_65/start_frame=0 +animation/clip_65/end_frame=0 +animation/clip_65/loops=false +animation/clip_66/name="" +animation/clip_66/start_frame=0 +animation/clip_66/end_frame=0 +animation/clip_66/loops=false +animation/clip_67/name="" +animation/clip_67/start_frame=0 +animation/clip_67/end_frame=0 +animation/clip_67/loops=false +animation/clip_68/name="" +animation/clip_68/start_frame=0 +animation/clip_68/end_frame=0 +animation/clip_68/loops=false +animation/clip_69/name="" +animation/clip_69/start_frame=0 +animation/clip_69/end_frame=0 +animation/clip_69/loops=false +animation/clip_70/name="" +animation/clip_70/start_frame=0 +animation/clip_70/end_frame=0 +animation/clip_70/loops=false +animation/clip_71/name="" +animation/clip_71/start_frame=0 +animation/clip_71/end_frame=0 +animation/clip_71/loops=false +animation/clip_72/name="" +animation/clip_72/start_frame=0 +animation/clip_72/end_frame=0 +animation/clip_72/loops=false +animation/clip_73/name="" +animation/clip_73/start_frame=0 +animation/clip_73/end_frame=0 +animation/clip_73/loops=false +animation/clip_74/name="" +animation/clip_74/start_frame=0 +animation/clip_74/end_frame=0 +animation/clip_74/loops=false +animation/clip_75/name="" +animation/clip_75/start_frame=0 +animation/clip_75/end_frame=0 +animation/clip_75/loops=false +animation/clip_76/name="" +animation/clip_76/start_frame=0 +animation/clip_76/end_frame=0 +animation/clip_76/loops=false +animation/clip_77/name="" +animation/clip_77/start_frame=0 +animation/clip_77/end_frame=0 +animation/clip_77/loops=false +animation/clip_78/name="" +animation/clip_78/start_frame=0 +animation/clip_78/end_frame=0 +animation/clip_78/loops=false +animation/clip_79/name="" +animation/clip_79/start_frame=0 +animation/clip_79/end_frame=0 +animation/clip_79/loops=false +animation/clip_80/name="" +animation/clip_80/start_frame=0 +animation/clip_80/end_frame=0 +animation/clip_80/loops=false +animation/clip_81/name="" +animation/clip_81/start_frame=0 +animation/clip_81/end_frame=0 +animation/clip_81/loops=false +animation/clip_82/name="" +animation/clip_82/start_frame=0 +animation/clip_82/end_frame=0 +animation/clip_82/loops=false +animation/clip_83/name="" +animation/clip_83/start_frame=0 +animation/clip_83/end_frame=0 +animation/clip_83/loops=false +animation/clip_84/name="" +animation/clip_84/start_frame=0 +animation/clip_84/end_frame=0 +animation/clip_84/loops=false +animation/clip_85/name="" +animation/clip_85/start_frame=0 +animation/clip_85/end_frame=0 +animation/clip_85/loops=false +animation/clip_86/name="" +animation/clip_86/start_frame=0 +animation/clip_86/end_frame=0 +animation/clip_86/loops=false +animation/clip_87/name="" +animation/clip_87/start_frame=0 +animation/clip_87/end_frame=0 +animation/clip_87/loops=false +animation/clip_88/name="" +animation/clip_88/start_frame=0 +animation/clip_88/end_frame=0 +animation/clip_88/loops=false +animation/clip_89/name="" +animation/clip_89/start_frame=0 +animation/clip_89/end_frame=0 +animation/clip_89/loops=false +animation/clip_90/name="" +animation/clip_90/start_frame=0 +animation/clip_90/end_frame=0 +animation/clip_90/loops=false +animation/clip_91/name="" +animation/clip_91/start_frame=0 +animation/clip_91/end_frame=0 +animation/clip_91/loops=false +animation/clip_92/name="" +animation/clip_92/start_frame=0 +animation/clip_92/end_frame=0 +animation/clip_92/loops=false +animation/clip_93/name="" +animation/clip_93/start_frame=0 +animation/clip_93/end_frame=0 +animation/clip_93/loops=false +animation/clip_94/name="" +animation/clip_94/start_frame=0 +animation/clip_94/end_frame=0 +animation/clip_94/loops=false +animation/clip_95/name="" +animation/clip_95/start_frame=0 +animation/clip_95/end_frame=0 +animation/clip_95/loops=false +animation/clip_96/name="" +animation/clip_96/start_frame=0 +animation/clip_96/end_frame=0 +animation/clip_96/loops=false +animation/clip_97/name="" +animation/clip_97/start_frame=0 +animation/clip_97/end_frame=0 +animation/clip_97/loops=false +animation/clip_98/name="" +animation/clip_98/start_frame=0 +animation/clip_98/end_frame=0 +animation/clip_98/loops=false +animation/clip_99/name="" +animation/clip_99/start_frame=0 +animation/clip_99/end_frame=0 +animation/clip_99/loops=false +animation/clip_100/name="" +animation/clip_100/start_frame=0 +animation/clip_100/end_frame=0 +animation/clip_100/loops=false +animation/clip_101/name="" +animation/clip_101/start_frame=0 +animation/clip_101/end_frame=0 +animation/clip_101/loops=false +animation/clip_102/name="" +animation/clip_102/start_frame=0 +animation/clip_102/end_frame=0 +animation/clip_102/loops=false +animation/clip_103/name="" +animation/clip_103/start_frame=0 +animation/clip_103/end_frame=0 +animation/clip_103/loops=false +animation/clip_104/name="" +animation/clip_104/start_frame=0 +animation/clip_104/end_frame=0 +animation/clip_104/loops=false +animation/clip_105/name="" +animation/clip_105/start_frame=0 +animation/clip_105/end_frame=0 +animation/clip_105/loops=false +animation/clip_106/name="" +animation/clip_106/start_frame=0 +animation/clip_106/end_frame=0 +animation/clip_106/loops=false +animation/clip_107/name="" +animation/clip_107/start_frame=0 +animation/clip_107/end_frame=0 +animation/clip_107/loops=false +animation/clip_108/name="" +animation/clip_108/start_frame=0 +animation/clip_108/end_frame=0 +animation/clip_108/loops=false +animation/clip_109/name="" +animation/clip_109/start_frame=0 +animation/clip_109/end_frame=0 +animation/clip_109/loops=false +animation/clip_110/name="" +animation/clip_110/start_frame=0 +animation/clip_110/end_frame=0 +animation/clip_110/loops=false +animation/clip_111/name="" +animation/clip_111/start_frame=0 +animation/clip_111/end_frame=0 +animation/clip_111/loops=false +animation/clip_112/name="" +animation/clip_112/start_frame=0 +animation/clip_112/end_frame=0 +animation/clip_112/loops=false +animation/clip_113/name="" +animation/clip_113/start_frame=0 +animation/clip_113/end_frame=0 +animation/clip_113/loops=false +animation/clip_114/name="" +animation/clip_114/start_frame=0 +animation/clip_114/end_frame=0 +animation/clip_114/loops=false +animation/clip_115/name="" +animation/clip_115/start_frame=0 +animation/clip_115/end_frame=0 +animation/clip_115/loops=false +animation/clip_116/name="" +animation/clip_116/start_frame=0 +animation/clip_116/end_frame=0 +animation/clip_116/loops=false +animation/clip_117/name="" +animation/clip_117/start_frame=0 +animation/clip_117/end_frame=0 +animation/clip_117/loops=false +animation/clip_118/name="" +animation/clip_118/start_frame=0 +animation/clip_118/end_frame=0 +animation/clip_118/loops=false +animation/clip_119/name="" +animation/clip_119/start_frame=0 +animation/clip_119/end_frame=0 +animation/clip_119/loops=false +animation/clip_120/name="" +animation/clip_120/start_frame=0 +animation/clip_120/end_frame=0 +animation/clip_120/loops=false +animation/clip_121/name="" +animation/clip_121/start_frame=0 +animation/clip_121/end_frame=0 +animation/clip_121/loops=false +animation/clip_122/name="" +animation/clip_122/start_frame=0 +animation/clip_122/end_frame=0 +animation/clip_122/loops=false +animation/clip_123/name="" +animation/clip_123/start_frame=0 +animation/clip_123/end_frame=0 +animation/clip_123/loops=false +animation/clip_124/name="" +animation/clip_124/start_frame=0 +animation/clip_124/end_frame=0 +animation/clip_124/loops=false +animation/clip_125/name="" +animation/clip_125/start_frame=0 +animation/clip_125/end_frame=0 +animation/clip_125/loops=false +animation/clip_126/name="" +animation/clip_126/start_frame=0 +animation/clip_126/end_frame=0 +animation/clip_126/loops=false +animation/clip_127/name="" +animation/clip_127/start_frame=0 +animation/clip_127/end_frame=0 +animation/clip_127/loops=false +animation/clip_128/name="" +animation/clip_128/start_frame=0 +animation/clip_128/end_frame=0 +animation/clip_128/loops=false +animation/clip_129/name="" +animation/clip_129/start_frame=0 +animation/clip_129/end_frame=0 +animation/clip_129/loops=false +animation/clip_130/name="" +animation/clip_130/start_frame=0 +animation/clip_130/end_frame=0 +animation/clip_130/loops=false +animation/clip_131/name="" +animation/clip_131/start_frame=0 +animation/clip_131/end_frame=0 +animation/clip_131/loops=false +animation/clip_132/name="" +animation/clip_132/start_frame=0 +animation/clip_132/end_frame=0 +animation/clip_132/loops=false +animation/clip_133/name="" +animation/clip_133/start_frame=0 +animation/clip_133/end_frame=0 +animation/clip_133/loops=false +animation/clip_134/name="" +animation/clip_134/start_frame=0 +animation/clip_134/end_frame=0 +animation/clip_134/loops=false +animation/clip_135/name="" +animation/clip_135/start_frame=0 +animation/clip_135/end_frame=0 +animation/clip_135/loops=false +animation/clip_136/name="" +animation/clip_136/start_frame=0 +animation/clip_136/end_frame=0 +animation/clip_136/loops=false +animation/clip_137/name="" +animation/clip_137/start_frame=0 +animation/clip_137/end_frame=0 +animation/clip_137/loops=false +animation/clip_138/name="" +animation/clip_138/start_frame=0 +animation/clip_138/end_frame=0 +animation/clip_138/loops=false +animation/clip_139/name="" +animation/clip_139/start_frame=0 +animation/clip_139/end_frame=0 +animation/clip_139/loops=false +animation/clip_140/name="" +animation/clip_140/start_frame=0 +animation/clip_140/end_frame=0 +animation/clip_140/loops=false +animation/clip_141/name="" +animation/clip_141/start_frame=0 +animation/clip_141/end_frame=0 +animation/clip_141/loops=false +animation/clip_142/name="" +animation/clip_142/start_frame=0 +animation/clip_142/end_frame=0 +animation/clip_142/loops=false +animation/clip_143/name="" +animation/clip_143/start_frame=0 +animation/clip_143/end_frame=0 +animation/clip_143/loops=false +animation/clip_144/name="" +animation/clip_144/start_frame=0 +animation/clip_144/end_frame=0 +animation/clip_144/loops=false +animation/clip_145/name="" +animation/clip_145/start_frame=0 +animation/clip_145/end_frame=0 +animation/clip_145/loops=false +animation/clip_146/name="" +animation/clip_146/start_frame=0 +animation/clip_146/end_frame=0 +animation/clip_146/loops=false +animation/clip_147/name="" +animation/clip_147/start_frame=0 +animation/clip_147/end_frame=0 +animation/clip_147/loops=false +animation/clip_148/name="" +animation/clip_148/start_frame=0 +animation/clip_148/end_frame=0 +animation/clip_148/loops=false +animation/clip_149/name="" +animation/clip_149/start_frame=0 +animation/clip_149/end_frame=0 +animation/clip_149/loops=false +animation/clip_150/name="" +animation/clip_150/start_frame=0 +animation/clip_150/end_frame=0 +animation/clip_150/loops=false +animation/clip_151/name="" +animation/clip_151/start_frame=0 +animation/clip_151/end_frame=0 +animation/clip_151/loops=false +animation/clip_152/name="" +animation/clip_152/start_frame=0 +animation/clip_152/end_frame=0 +animation/clip_152/loops=false +animation/clip_153/name="" +animation/clip_153/start_frame=0 +animation/clip_153/end_frame=0 +animation/clip_153/loops=false +animation/clip_154/name="" +animation/clip_154/start_frame=0 +animation/clip_154/end_frame=0 +animation/clip_154/loops=false +animation/clip_155/name="" +animation/clip_155/start_frame=0 +animation/clip_155/end_frame=0 +animation/clip_155/loops=false +animation/clip_156/name="" +animation/clip_156/start_frame=0 +animation/clip_156/end_frame=0 +animation/clip_156/loops=false +animation/clip_157/name="" +animation/clip_157/start_frame=0 +animation/clip_157/end_frame=0 +animation/clip_157/loops=false +animation/clip_158/name="" +animation/clip_158/start_frame=0 +animation/clip_158/end_frame=0 +animation/clip_158/loops=false +animation/clip_159/name="" +animation/clip_159/start_frame=0 +animation/clip_159/end_frame=0 +animation/clip_159/loops=false +animation/clip_160/name="" +animation/clip_160/start_frame=0 +animation/clip_160/end_frame=0 +animation/clip_160/loops=false +animation/clip_161/name="" +animation/clip_161/start_frame=0 +animation/clip_161/end_frame=0 +animation/clip_161/loops=false +animation/clip_162/name="" +animation/clip_162/start_frame=0 +animation/clip_162/end_frame=0 +animation/clip_162/loops=false +animation/clip_163/name="" +animation/clip_163/start_frame=0 +animation/clip_163/end_frame=0 +animation/clip_163/loops=false +animation/clip_164/name="" +animation/clip_164/start_frame=0 +animation/clip_164/end_frame=0 +animation/clip_164/loops=false +animation/clip_165/name="" +animation/clip_165/start_frame=0 +animation/clip_165/end_frame=0 +animation/clip_165/loops=false +animation/clip_166/name="" +animation/clip_166/start_frame=0 +animation/clip_166/end_frame=0 +animation/clip_166/loops=false +animation/clip_167/name="" +animation/clip_167/start_frame=0 +animation/clip_167/end_frame=0 +animation/clip_167/loops=false +animation/clip_168/name="" +animation/clip_168/start_frame=0 +animation/clip_168/end_frame=0 +animation/clip_168/loops=false +animation/clip_169/name="" +animation/clip_169/start_frame=0 +animation/clip_169/end_frame=0 +animation/clip_169/loops=false +animation/clip_170/name="" +animation/clip_170/start_frame=0 +animation/clip_170/end_frame=0 +animation/clip_170/loops=false +animation/clip_171/name="" +animation/clip_171/start_frame=0 +animation/clip_171/end_frame=0 +animation/clip_171/loops=false +animation/clip_172/name="" +animation/clip_172/start_frame=0 +animation/clip_172/end_frame=0 +animation/clip_172/loops=false +animation/clip_173/name="" +animation/clip_173/start_frame=0 +animation/clip_173/end_frame=0 +animation/clip_173/loops=false +animation/clip_174/name="" +animation/clip_174/start_frame=0 +animation/clip_174/end_frame=0 +animation/clip_174/loops=false +animation/clip_175/name="" +animation/clip_175/start_frame=0 +animation/clip_175/end_frame=0 +animation/clip_175/loops=false +animation/clip_176/name="" +animation/clip_176/start_frame=0 +animation/clip_176/end_frame=0 +animation/clip_176/loops=false +animation/clip_177/name="" +animation/clip_177/start_frame=0 +animation/clip_177/end_frame=0 +animation/clip_177/loops=false +animation/clip_178/name="" +animation/clip_178/start_frame=0 +animation/clip_178/end_frame=0 +animation/clip_178/loops=false +animation/clip_179/name="" +animation/clip_179/start_frame=0 +animation/clip_179/end_frame=0 +animation/clip_179/loops=false +animation/clip_180/name="" +animation/clip_180/start_frame=0 +animation/clip_180/end_frame=0 +animation/clip_180/loops=false +animation/clip_181/name="" +animation/clip_181/start_frame=0 +animation/clip_181/end_frame=0 +animation/clip_181/loops=false +animation/clip_182/name="" +animation/clip_182/start_frame=0 +animation/clip_182/end_frame=0 +animation/clip_182/loops=false +animation/clip_183/name="" +animation/clip_183/start_frame=0 +animation/clip_183/end_frame=0 +animation/clip_183/loops=false +animation/clip_184/name="" +animation/clip_184/start_frame=0 +animation/clip_184/end_frame=0 +animation/clip_184/loops=false +animation/clip_185/name="" +animation/clip_185/start_frame=0 +animation/clip_185/end_frame=0 +animation/clip_185/loops=false +animation/clip_186/name="" +animation/clip_186/start_frame=0 +animation/clip_186/end_frame=0 +animation/clip_186/loops=false +animation/clip_187/name="" +animation/clip_187/start_frame=0 +animation/clip_187/end_frame=0 +animation/clip_187/loops=false +animation/clip_188/name="" +animation/clip_188/start_frame=0 +animation/clip_188/end_frame=0 +animation/clip_188/loops=false +animation/clip_189/name="" +animation/clip_189/start_frame=0 +animation/clip_189/end_frame=0 +animation/clip_189/loops=false +animation/clip_190/name="" +animation/clip_190/start_frame=0 +animation/clip_190/end_frame=0 +animation/clip_190/loops=false +animation/clip_191/name="" +animation/clip_191/start_frame=0 +animation/clip_191/end_frame=0 +animation/clip_191/loops=false +animation/clip_192/name="" +animation/clip_192/start_frame=0 +animation/clip_192/end_frame=0 +animation/clip_192/loops=false +animation/clip_193/name="" +animation/clip_193/start_frame=0 +animation/clip_193/end_frame=0 +animation/clip_193/loops=false +animation/clip_194/name="" +animation/clip_194/start_frame=0 +animation/clip_194/end_frame=0 +animation/clip_194/loops=false +animation/clip_195/name="" +animation/clip_195/start_frame=0 +animation/clip_195/end_frame=0 +animation/clip_195/loops=false +animation/clip_196/name="" +animation/clip_196/start_frame=0 +animation/clip_196/end_frame=0 +animation/clip_196/loops=false +animation/clip_197/name="" +animation/clip_197/start_frame=0 +animation/clip_197/end_frame=0 +animation/clip_197/loops=false +animation/clip_198/name="" +animation/clip_198/start_frame=0 +animation/clip_198/end_frame=0 +animation/clip_198/loops=false +animation/clip_199/name="" +animation/clip_199/start_frame=0 +animation/clip_199/end_frame=0 +animation/clip_199/loops=false +animation/clip_200/name="" +animation/clip_200/start_frame=0 +animation/clip_200/end_frame=0 +animation/clip_200/loops=false +animation/clip_201/name="" +animation/clip_201/start_frame=0 +animation/clip_201/end_frame=0 +animation/clip_201/loops=false +animation/clip_202/name="" +animation/clip_202/start_frame=0 +animation/clip_202/end_frame=0 +animation/clip_202/loops=false +animation/clip_203/name="" +animation/clip_203/start_frame=0 +animation/clip_203/end_frame=0 +animation/clip_203/loops=false +animation/clip_204/name="" +animation/clip_204/start_frame=0 +animation/clip_204/end_frame=0 +animation/clip_204/loops=false +animation/clip_205/name="" +animation/clip_205/start_frame=0 +animation/clip_205/end_frame=0 +animation/clip_205/loops=false +animation/clip_206/name="" +animation/clip_206/start_frame=0 +animation/clip_206/end_frame=0 +animation/clip_206/loops=false +animation/clip_207/name="" +animation/clip_207/start_frame=0 +animation/clip_207/end_frame=0 +animation/clip_207/loops=false +animation/clip_208/name="" +animation/clip_208/start_frame=0 +animation/clip_208/end_frame=0 +animation/clip_208/loops=false +animation/clip_209/name="" +animation/clip_209/start_frame=0 +animation/clip_209/end_frame=0 +animation/clip_209/loops=false +animation/clip_210/name="" +animation/clip_210/start_frame=0 +animation/clip_210/end_frame=0 +animation/clip_210/loops=false +animation/clip_211/name="" +animation/clip_211/start_frame=0 +animation/clip_211/end_frame=0 +animation/clip_211/loops=false +animation/clip_212/name="" +animation/clip_212/start_frame=0 +animation/clip_212/end_frame=0 +animation/clip_212/loops=false +animation/clip_213/name="" +animation/clip_213/start_frame=0 +animation/clip_213/end_frame=0 +animation/clip_213/loops=false +animation/clip_214/name="" +animation/clip_214/start_frame=0 +animation/clip_214/end_frame=0 +animation/clip_214/loops=false +animation/clip_215/name="" +animation/clip_215/start_frame=0 +animation/clip_215/end_frame=0 +animation/clip_215/loops=false +animation/clip_216/name="" +animation/clip_216/start_frame=0 +animation/clip_216/end_frame=0 +animation/clip_216/loops=false +animation/clip_217/name="" +animation/clip_217/start_frame=0 +animation/clip_217/end_frame=0 +animation/clip_217/loops=false +animation/clip_218/name="" +animation/clip_218/start_frame=0 +animation/clip_218/end_frame=0 +animation/clip_218/loops=false +animation/clip_219/name="" +animation/clip_219/start_frame=0 +animation/clip_219/end_frame=0 +animation/clip_219/loops=false +animation/clip_220/name="" +animation/clip_220/start_frame=0 +animation/clip_220/end_frame=0 +animation/clip_220/loops=false +animation/clip_221/name="" +animation/clip_221/start_frame=0 +animation/clip_221/end_frame=0 +animation/clip_221/loops=false +animation/clip_222/name="" +animation/clip_222/start_frame=0 +animation/clip_222/end_frame=0 +animation/clip_222/loops=false +animation/clip_223/name="" +animation/clip_223/start_frame=0 +animation/clip_223/end_frame=0 +animation/clip_223/loops=false +animation/clip_224/name="" +animation/clip_224/start_frame=0 +animation/clip_224/end_frame=0 +animation/clip_224/loops=false +animation/clip_225/name="" +animation/clip_225/start_frame=0 +animation/clip_225/end_frame=0 +animation/clip_225/loops=false +animation/clip_226/name="" +animation/clip_226/start_frame=0 +animation/clip_226/end_frame=0 +animation/clip_226/loops=false +animation/clip_227/name="" +animation/clip_227/start_frame=0 +animation/clip_227/end_frame=0 +animation/clip_227/loops=false +animation/clip_228/name="" +animation/clip_228/start_frame=0 +animation/clip_228/end_frame=0 +animation/clip_228/loops=false +animation/clip_229/name="" +animation/clip_229/start_frame=0 +animation/clip_229/end_frame=0 +animation/clip_229/loops=false +animation/clip_230/name="" +animation/clip_230/start_frame=0 +animation/clip_230/end_frame=0 +animation/clip_230/loops=false +animation/clip_231/name="" +animation/clip_231/start_frame=0 +animation/clip_231/end_frame=0 +animation/clip_231/loops=false +animation/clip_232/name="" +animation/clip_232/start_frame=0 +animation/clip_232/end_frame=0 +animation/clip_232/loops=false +animation/clip_233/name="" +animation/clip_233/start_frame=0 +animation/clip_233/end_frame=0 +animation/clip_233/loops=false +animation/clip_234/name="" +animation/clip_234/start_frame=0 +animation/clip_234/end_frame=0 +animation/clip_234/loops=false +animation/clip_235/name="" +animation/clip_235/start_frame=0 +animation/clip_235/end_frame=0 +animation/clip_235/loops=false +animation/clip_236/name="" +animation/clip_236/start_frame=0 +animation/clip_236/end_frame=0 +animation/clip_236/loops=false +animation/clip_237/name="" +animation/clip_237/start_frame=0 +animation/clip_237/end_frame=0 +animation/clip_237/loops=false +animation/clip_238/name="" +animation/clip_238/start_frame=0 +animation/clip_238/end_frame=0 +animation/clip_238/loops=false +animation/clip_239/name="" +animation/clip_239/start_frame=0 +animation/clip_239/end_frame=0 +animation/clip_239/loops=false +animation/clip_240/name="" +animation/clip_240/start_frame=0 +animation/clip_240/end_frame=0 +animation/clip_240/loops=false +animation/clip_241/name="" +animation/clip_241/start_frame=0 +animation/clip_241/end_frame=0 +animation/clip_241/loops=false +animation/clip_242/name="" +animation/clip_242/start_frame=0 +animation/clip_242/end_frame=0 +animation/clip_242/loops=false +animation/clip_243/name="" +animation/clip_243/start_frame=0 +animation/clip_243/end_frame=0 +animation/clip_243/loops=false +animation/clip_244/name="" +animation/clip_244/start_frame=0 +animation/clip_244/end_frame=0 +animation/clip_244/loops=false +animation/clip_245/name="" +animation/clip_245/start_frame=0 +animation/clip_245/end_frame=0 +animation/clip_245/loops=false +animation/clip_246/name="" +animation/clip_246/start_frame=0 +animation/clip_246/end_frame=0 +animation/clip_246/loops=false +animation/clip_247/name="" +animation/clip_247/start_frame=0 +animation/clip_247/end_frame=0 +animation/clip_247/loops=false +animation/clip_248/name="" +animation/clip_248/start_frame=0 +animation/clip_248/end_frame=0 +animation/clip_248/loops=false +animation/clip_249/name="" +animation/clip_249/start_frame=0 +animation/clip_249/end_frame=0 +animation/clip_249/loops=false +animation/clip_250/name="" +animation/clip_250/start_frame=0 +animation/clip_250/end_frame=0 +animation/clip_250/loops=false +animation/clip_251/name="" +animation/clip_251/start_frame=0 +animation/clip_251/end_frame=0 +animation/clip_251/loops=false +animation/clip_252/name="" +animation/clip_252/start_frame=0 +animation/clip_252/end_frame=0 +animation/clip_252/loops=false +animation/clip_253/name="" +animation/clip_253/start_frame=0 +animation/clip_253/end_frame=0 +animation/clip_253/loops=false +animation/clip_254/name="" +animation/clip_254/start_frame=0 +animation/clip_254/end_frame=0 +animation/clip_254/loops=false +animation/clip_255/name="" +animation/clip_255/start_frame=0 +animation/clip_255/end_frame=0 +animation/clip_255/loops=false +animation/clip_256/name="" +animation/clip_256/start_frame=0 +animation/clip_256/end_frame=0 +animation/clip_256/loops=false diff --git a/Things/pills/Pills.tscn b/Things/pills/Pills.tscn new file mode 100644 index 0000000..8703791 --- /dev/null +++ b/Things/pills/Pills.tscn @@ -0,0 +1,43 @@ +[gd_scene load_steps=5 format=2] + +[ext_resource path="res://Models/pill/blue.material" type="Material" id=1] +[ext_resource path="res://Models/pill/other.material" type="Material" id=2] +[ext_resource path="res://Models/pill/pill101blend.glb" type="PackedScene" id=3] + +[sub_resource type="ArrayMesh" id=1] +resource_name = "Sphere" +surfaces/0 = { +"aabb": AABB( -1, 0.50578, -1, 2, 3.10261, 2 ), +"array_data": PoolByteArray( 0, 0, 0, 0, 92, 126, 74, 64, 50, 219, 84, 191, 9, 80, 159, 0, 130, 0, 244, 127, 0, 58, 0, 53, 179, 66, 13, 62, 35, 49, 84, 64, 133, 138, 49, 191, 9, 80, 159, 0, 130, 0, 244, 127, 192, 57, 255, 51, 214, 26, 38, 62, 92, 126, 74, 64, 41, 196, 80, 191, 9, 80, 159, 0, 130, 0, 244, 127, 192, 57, 0, 53, 0, 0, 0, 0, 35, 49, 84, 64, 243, 4, 53, 191, 9, 80, 159, 0, 130, 0, 244, 127, 0, 58, 255, 51, 0, 0, 0, 0, 92, 126, 74, 64, 50, 219, 84, 191, 10, 59, 145, 0, 130, 0, 244, 127, 0, 58, 0, 53, 214, 144, 56, 62, 201, 109, 63, 64, 247, 247, 103, 191, 10, 59, 145, 0, 130, 0, 244, 127, 192, 57, 0, 54, 0, 0, 0, 0, 201, 109, 63, 64, 94, 131, 108, 191, 10, 59, 145, 0, 130, 0, 244, 127, 0, 58, 0, 54, 214, 26, 38, 62, 92, 126, 74, 64, 41, 196, 80, 191, 10, 59, 145, 0, 130, 0, 244, 127, 192, 57, 0, 53, 0, 0, 0, 0, 201, 109, 63, 64, 94, 131, 108, 191, 11, 36, 136, 0, 130, 0, 244, 127, 0, 58, 0, 54, 25, 239, 67, 62, 66, 108, 51, 64, 174, 65, 118, 191, 11, 36, 136, 0, 130, 0, 244, 127, 192, 57, 0, 55, 0, 0, 0, 0, 66, 108, 51, 64, 190, 20, 123, 191, 11, 36, 136, 0, 130, 0, 244, 127, 0, 58, 0, 55, 214, 144, 56, 62, 201, 109, 63, 64, 247, 247, 103, 191, 11, 36, 136, 0, 130, 0, 244, 127, 192, 57, 0, 54, 0, 0, 0, 0, 66, 108, 51, 64, 190, 20, 123, 191, 12, 12, 131, 0, 130, 0, 244, 127, 0, 58, 0, 55, 198, 197, 71, 61, 230, 239, 38, 64, 48, 197, 126, 191, 12, 12, 131, 0, 130, 0, 244, 127, 240, 57, 0, 56, 0, 0, 0, 0, 230, 239, 38, 64, 0, 0, 128, 191, 12, 12, 131, 0, 130, 0, 244, 127, 0, 58, 0, 56, 198, 197, 199, 61, 230, 239, 38, 64, 95, 138, 125, 191, 12, 12, 131, 0, 130, 0, 244, 127, 224, 57, 0, 56, 84, 212, 21, 62, 230, 239, 38, 64, 142, 79, 124, 191, 12, 12, 131, 0, 130, 0, 244, 127, 208, 57, 0, 56, 198, 197, 71, 62, 230, 239, 38, 64, 190, 20, 123, 191, 12, 12, 131, 0, 130, 0, 244, 127, 192, 57, 0, 56, 25, 239, 67, 62, 66, 108, 51, 64, 174, 65, 118, 191, 12, 12, 131, 0, 130, 0, 244, 127, 192, 57, 0, 55, 0, 0, 0, 0, 22, 181, 101, 64, 194, 197, 71, 190, 1, 126, 244, 0, 130, 0, 244, 127, 0, 58, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 1, 126, 244, 0, 130, 0, 244, 127, 224, 57, 0, 0, 29, 229, 27, 61, 22, 181, 101, 64, 21, 239, 67, 190, 1, 126, 244, 0, 130, 0, 244, 127, 191, 57, 255, 43, 84, 212, 21, 62, 230, 239, 38, 64, 142, 79, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 0, 56, 27, 208, 70, 62, 171, 41, 244, 63, 250, 223, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 192, 57, 32, 56, 20, 28, 21, 62, 171, 41, 244, 63, 72, 25, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 32, 56, 198, 197, 71, 62, 230, 239, 38, 64, 190, 20, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 192, 57, 0, 56, 0, 0, 0, 0, 22, 181, 101, 64, 194, 197, 71, 190, 3, 121, 220, 0, 130, 0, 244, 127, 0, 58, 255, 43, 63, 230, 152, 61, 190, 16, 98, 64, 75, 43, 192, 190, 3, 121, 220, 0, 130, 0, 244, 127, 192, 57, 0, 48, 0, 0, 0, 0, 190, 16, 98, 64, 22, 239, 195, 190, 3, 121, 220, 0, 130, 0, 244, 127, 0, 58, 0, 48, 29, 229, 27, 61, 22, 181, 101, 64, 21, 239, 67, 190, 3, 121, 220, 0, 130, 0, 244, 127, 191, 57, 255, 43, 0, 0, 0, 0, 190, 16, 98, 64, 22, 239, 195, 190, 5, 111, 197, 0, 130, 0, 244, 127, 0, 58, 0, 48, 183, 249, 221, 61, 178, 38, 92, 64, 63, 126, 11, 191, 5, 111, 197, 0, 130, 0, 244, 127, 192, 57, 0, 50, 0, 0, 0, 0, 178, 38, 92, 64, 218, 57, 14, 191, 5, 111, 197, 0, 130, 0, 244, 127, 0, 58, 0, 50, 63, 230, 152, 61, 190, 16, 98, 64, 75, 43, 192, 190, 5, 111, 197, 0, 130, 0, 244, 127, 192, 57, 0, 48, 0, 0, 0, 0, 178, 38, 92, 64, 218, 57, 14, 191, 7, 97, 176, 0, 130, 0, 244, 127, 0, 58, 0, 50, 179, 66, 13, 62, 35, 49, 84, 64, 133, 138, 49, 191, 7, 97, 176, 0, 130, 0, 244, 127, 192, 57, 255, 51, 0, 0, 0, 0, 35, 49, 84, 64, 243, 4, 53, 191, 7, 97, 176, 0, 130, 0, 244, 127, 0, 58, 255, 51, 183, 249, 221, 61, 178, 38, 92, 64, 63, 126, 11, 191, 7, 97, 176, 0, 130, 0, 244, 127, 192, 57, 0, 50, 183, 249, 221, 61, 178, 38, 92, 64, 63, 126, 11, 191, 17, 111, 199, 0, 135, 0, 220, 127, 192, 57, 0, 50, 34, 246, 21, 62, 190, 16, 98, 64, 244, 4, 181, 190, 17, 111, 199, 0, 135, 0, 220, 127, 127, 57, 0, 48, 210, 181, 89, 62, 178, 38, 92, 64, 80, 102, 3, 191, 17, 111, 199, 0, 135, 0, 220, 127, 127, 57, 0, 50, 63, 230, 152, 61, 190, 16, 98, 64, 75, 43, 192, 190, 17, 111, 199, 0, 135, 0, 220, 127, 192, 57, 0, 48, 179, 66, 13, 62, 35, 49, 84, 64, 133, 138, 49, 191, 23, 97, 179, 0, 135, 0, 220, 127, 192, 57, 255, 51, 210, 181, 89, 62, 178, 38, 92, 64, 80, 102, 3, 191, 23, 97, 179, 0, 135, 0, 220, 127, 127, 57, 0, 50, 216, 139, 138, 62, 35, 49, 84, 64, 115, 61, 39, 191, 23, 97, 179, 0, 135, 0, 220, 127, 127, 57, 255, 51, 183, 249, 221, 61, 178, 38, 92, 64, 63, 126, 11, 191, 23, 97, 179, 0, 135, 0, 220, 127, 192, 57, 0, 50, 214, 26, 38, 62, 92, 126, 74, 64, 41, 196, 80, 191, 28, 80, 162, 0, 135, 0, 220, 127, 192, 57, 0, 53, 216, 139, 138, 62, 35, 49, 84, 64, 115, 61, 39, 191, 28, 80, 162, 0, 135, 0, 220, 127, 127, 57, 255, 51, 197, 233, 162, 62, 92, 126, 74, 64, 75, 167, 68, 191, 28, 80, 162, 0, 135, 0, 220, 127, 128, 57, 0, 53, 179, 66, 13, 62, 35, 49, 84, 64, 133, 138, 49, 191, 28, 80, 162, 0, 135, 0, 220, 127, 192, 57, 255, 51, 214, 26, 38, 62, 92, 126, 74, 64, 41, 196, 80, 191, 32, 59, 149, 0, 135, 0, 220, 127, 192, 57, 0, 53, 246, 4, 181, 62, 201, 109, 63, 64, 120, 130, 90, 191, 32, 59, 149, 0, 135, 0, 220, 127, 128, 57, 0, 54, 214, 144, 56, 62, 201, 109, 63, 64, 247, 247, 103, 191, 32, 59, 149, 0, 135, 0, 220, 127, 192, 57, 0, 54, 197, 233, 162, 62, 92, 126, 74, 64, 75, 167, 68, 191, 32, 59, 149, 0, 135, 0, 220, 127, 128, 57, 0, 53, 214, 144, 56, 62, 201, 109, 63, 64, 247, 247, 103, 191, 35, 36, 140, 0, 135, 0, 220, 127, 192, 57, 0, 54, 78, 43, 192, 62, 66, 108, 51, 64, 246, 247, 103, 191, 35, 36, 140, 0, 135, 0, 220, 127, 128, 57, 0, 55, 25, 239, 67, 62, 66, 108, 51, 64, 174, 65, 118, 191, 35, 36, 140, 0, 135, 0, 220, 127, 192, 57, 0, 55, 246, 4, 181, 62, 201, 109, 63, 64, 120, 130, 90, 191, 35, 36, 140, 0, 135, 0, 220, 127, 128, 57, 0, 54, 25, 239, 67, 62, 66, 108, 51, 64, 174, 65, 118, 191, 36, 12, 136, 0, 135, 0, 220, 127, 192, 57, 0, 55, 225, 203, 119, 62, 230, 239, 38, 64, 102, 112, 119, 191, 36, 12, 136, 0, 135, 0, 220, 127, 176, 57, 0, 56, 198, 197, 71, 62, 230, 239, 38, 64, 190, 20, 123, 191, 36, 12, 136, 0, 135, 0, 220, 127, 192, 57, 0, 56, 254, 232, 147, 62, 230, 239, 38, 64, 14, 204, 115, 191, 36, 12, 136, 0, 135, 0, 220, 127, 160, 57, 0, 56, 12, 236, 171, 62, 230, 239, 38, 64, 182, 39, 112, 191, 36, 12, 136, 0, 135, 0, 220, 127, 144, 57, 0, 56, 25, 239, 195, 62, 230, 239, 38, 64, 93, 131, 108, 191, 36, 12, 136, 0, 135, 0, 220, 127, 128, 57, 0, 56, 78, 43, 192, 62, 66, 108, 51, 64, 246, 247, 103, 191, 36, 12, 136, 0, 135, 0, 220, 127, 128, 57, 0, 55, 29, 229, 27, 61, 22, 181, 101, 64, 21, 239, 67, 190, 3, 126, 245, 0, 135, 0, 220, 127, 191, 57, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 3, 126, 245, 0, 135, 0, 220, 127, 159, 57, 0, 0, 70, 230, 152, 61, 22, 181, 101, 64, 210, 144, 56, 190, 3, 126, 245, 0, 135, 0, 220, 127, 127, 57, 255, 43, 12, 236, 171, 62, 230, 239, 38, 64, 182, 39, 112, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 0, 56, 38, 254, 194, 62, 171, 41, 244, 63, 132, 96, 107, 191, 36, 0, 135, 0, 135, 0, 220, 127, 128, 57, 32, 56, 160, 24, 171, 62, 171, 41, 244, 63, 98, 0, 111, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 32, 56, 25, 239, 195, 62, 230, 239, 38, 64, 93, 131, 108, 191, 36, 0, 135, 0, 135, 0, 220, 127, 128, 57, 0, 56, 63, 230, 152, 61, 190, 16, 98, 64, 75, 43, 192, 190, 10, 121, 221, 0, 135, 0, 220, 127, 192, 57, 0, 48, 70, 230, 152, 61, 22, 181, 101, 64, 210, 144, 56, 190, 10, 121, 221, 0, 135, 0, 220, 127, 127, 57, 255, 43, 34, 246, 21, 62, 190, 16, 98, 64, 244, 4, 181, 190, 10, 121, 221, 0, 135, 0, 220, 127, 127, 57, 0, 48, 29, 229, 27, 61, 22, 181, 101, 64, 21, 239, 67, 190, 10, 121, 221, 0, 135, 0, 220, 127, 191, 57, 255, 43, 246, 4, 181, 62, 201, 109, 63, 64, 120, 130, 90, 191, 57, 36, 149, 0, 144, 0, 197, 127, 128, 57, 0, 54, 65, 126, 11, 63, 66, 108, 51, 64, 38, 196, 80, 191, 57, 36, 149, 0, 144, 0, 197, 127, 64, 57, 0, 55, 78, 43, 192, 62, 66, 108, 51, 64, 246, 247, 103, 191, 57, 36, 149, 0, 144, 0, 197, 127, 128, 57, 0, 55, 83, 102, 3, 63, 201, 109, 63, 64, 74, 167, 68, 191, 57, 36, 149, 0, 144, 0, 197, 127, 64, 57, 0, 54, 78, 43, 192, 62, 66, 108, 51, 64, 246, 247, 103, 191, 59, 12, 145, 0, 144, 0, 197, 127, 128, 57, 0, 55, 66, 16, 218, 62, 230, 239, 38, 64, 82, 153, 102, 191, 59, 12, 145, 0, 144, 0, 197, 127, 112, 57, 0, 56, 25, 239, 195, 62, 230, 239, 38, 64, 93, 131, 108, 191, 59, 12, 145, 0, 144, 0, 197, 127, 128, 57, 0, 56, 106, 49, 240, 62, 230, 239, 38, 64, 70, 175, 96, 191, 59, 12, 145, 0, 144, 0, 197, 127, 95, 57, 0, 56, 73, 41, 3, 63, 230, 239, 38, 64, 58, 197, 90, 191, 59, 12, 145, 0, 144, 0, 197, 127, 79, 57, 0, 56, 221, 57, 14, 63, 230, 239, 38, 64, 47, 219, 84, 191, 59, 12, 145, 0, 144, 0, 197, 127, 63, 57, 0, 56, 65, 126, 11, 63, 66, 108, 51, 64, 38, 196, 80, 191, 59, 12, 145, 0, 144, 0, 197, 127, 64, 57, 0, 55, 70, 230, 152, 61, 22, 181, 101, 64, 210, 144, 56, 190, 5, 126, 245, 0, 144, 0, 197, 127, 127, 57, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 5, 126, 245, 0, 144, 0, 197, 127, 95, 57, 0, 0, 199, 249, 221, 61, 22, 181, 101, 64, 206, 26, 38, 190, 5, 126, 245, 0, 144, 0, 197, 127, 63, 57, 255, 43, 73, 41, 3, 63, 230, 239, 38, 64, 58, 197, 90, 191, 59, 0, 144, 0, 144, 0, 197, 127, 79, 57, 0, 56, 246, 138, 13, 63, 171, 41, 244, 63, 108, 213, 83, 191, 59, 0, 144, 0, 144, 0, 197, 127, 63, 57, 32, 56, 254, 135, 2, 63, 171, 41, 244, 63, 50, 184, 89, 191, 59, 0, 144, 0, 144, 0, 197, 127, 79, 57, 32, 56, 221, 57, 14, 63, 230, 239, 38, 64, 47, 219, 84, 191, 59, 0, 144, 0, 144, 0, 197, 127, 63, 57, 0, 56, 34, 246, 21, 62, 190, 16, 98, 64, 244, 4, 181, 190, 17, 121, 224, 0, 144, 0, 197, 127, 127, 57, 0, 48, 199, 249, 221, 61, 22, 181, 101, 64, 206, 26, 38, 190, 17, 121, 224, 0, 144, 0, 197, 127, 63, 57, 255, 43, 214, 181, 89, 62, 190, 16, 98, 64, 192, 233, 162, 190, 17, 121, 224, 0, 144, 0, 197, 127, 63, 57, 0, 48, 70, 230, 152, 61, 22, 181, 101, 64, 210, 144, 56, 190, 17, 121, 224, 0, 144, 0, 197, 127, 127, 57, 255, 43, 34, 246, 21, 62, 190, 16, 98, 64, 244, 4, 181, 190, 28, 111, 204, 0, 144, 0, 197, 127, 127, 57, 0, 48, 123, 8, 158, 62, 178, 38, 92, 64, 92, 131, 236, 190, 28, 111, 204, 0, 144, 0, 197, 127, 63, 57, 0, 50, 210, 181, 89, 62, 178, 38, 92, 64, 80, 102, 3, 191, 28, 111, 204, 0, 144, 0, 197, 127, 127, 57, 0, 50, 214, 181, 89, 62, 190, 16, 98, 64, 192, 233, 162, 190, 28, 111, 204, 0, 144, 0, 197, 127, 63, 57, 0, 48, 210, 181, 89, 62, 178, 38, 92, 64, 80, 102, 3, 191, 38, 97, 185, 0, 144, 0, 197, 127, 127, 57, 0, 50, 84, 35, 201, 62, 35, 49, 84, 64, 22, 131, 22, 191, 38, 97, 185, 0, 144, 0, 197, 127, 63, 57, 0, 52, 216, 139, 138, 62, 35, 49, 84, 64, 115, 61, 39, 191, 38, 97, 185, 0, 144, 0, 197, 127, 127, 57, 255, 51, 123, 8, 158, 62, 178, 38, 92, 64, 92, 131, 236, 190, 38, 97, 185, 0, 144, 0, 197, 127, 63, 57, 0, 50, 197, 233, 162, 62, 92, 126, 74, 64, 75, 167, 68, 191, 46, 80, 170, 0, 144, 0, 197, 127, 128, 57, 0, 53, 84, 35, 201, 62, 35, 49, 84, 64, 22, 131, 22, 191, 46, 80, 170, 0, 144, 0, 197, 127, 63, 57, 0, 52, 100, 131, 236, 62, 92, 126, 74, 64, 196, 251, 48, 191, 46, 80, 170, 0, 144, 0, 197, 127, 64, 57, 0, 53, 216, 139, 138, 62, 35, 49, 84, 64, 115, 61, 39, 191, 46, 80, 170, 0, 144, 0, 197, 127, 127, 57, 255, 51, 197, 233, 162, 62, 92, 126, 74, 64, 75, 167, 68, 191, 52, 59, 158, 0, 144, 0, 197, 127, 128, 57, 0, 53, 83, 102, 3, 63, 201, 109, 63, 64, 74, 167, 68, 191, 52, 59, 158, 0, 144, 0, 197, 127, 64, 57, 0, 54, 246, 4, 181, 62, 201, 109, 63, 64, 120, 130, 90, 191, 52, 59, 158, 0, 144, 0, 197, 127, 128, 57, 0, 54, 100, 131, 236, 62, 92, 126, 74, 64, 196, 251, 48, 191, 52, 59, 158, 0, 144, 0, 197, 127, 64, 57, 0, 53, 84, 35, 201, 62, 35, 49, 84, 64, 22, 131, 22, 191, 51, 97, 194, 0, 158, 0, 176, 127, 63, 57, 0, 52, 85, 35, 201, 62, 178, 38, 92, 64, 74, 35, 201, 190, 51, 97, 194, 0, 158, 0, 176, 127, 255, 56, 0, 50, 3, 0, 0, 63, 35, 49, 84, 64, 252, 255, 255, 190, 51, 97, 194, 0, 158, 0, 176, 127, 255, 56, 0, 52, 123, 8, 158, 62, 178, 38, 92, 64, 92, 131, 236, 190, 51, 97, 194, 0, 158, 0, 176, 127, 63, 57, 0, 50, 84, 35, 201, 62, 35, 49, 84, 64, 22, 131, 22, 191, 62, 80, 180, 0, 158, 0, 176, 127, 63, 57, 0, 52, 27, 131, 22, 63, 92, 126, 74, 64, 21, 131, 22, 191, 62, 80, 180, 0, 158, 0, 176, 127, 255, 56, 0, 53, 100, 131, 236, 62, 92, 126, 74, 64, 196, 251, 48, 191, 62, 80, 180, 0, 158, 0, 176, 127, 64, 57, 0, 53, 3, 0, 0, 63, 35, 49, 84, 64, 252, 255, 255, 190, 62, 80, 180, 0, 158, 0, 176, 127, 255, 56, 0, 52, 100, 131, 236, 62, 92, 126, 74, 64, 196, 251, 48, 191, 71, 59, 170, 0, 158, 0, 176, 127, 64, 57, 0, 53, 119, 61, 39, 63, 201, 109, 63, 64, 114, 61, 39, 191, 71, 59, 170, 0, 158, 0, 176, 127, 255, 56, 0, 54, 83, 102, 3, 63, 201, 109, 63, 64, 74, 167, 68, 191, 71, 59, 170, 0, 158, 0, 176, 127, 64, 57, 0, 54, 27, 131, 22, 63, 92, 126, 74, 64, 21, 131, 22, 191, 71, 59, 170, 0, 158, 0, 176, 127, 255, 56, 0, 53, 83, 102, 3, 63, 201, 109, 63, 64, 74, 167, 68, 191, 77, 36, 163, 0, 158, 0, 176, 127, 64, 57, 0, 54, 136, 138, 49, 63, 66, 108, 51, 64, 130, 138, 49, 191, 77, 36, 163, 0, 158, 0, 176, 127, 255, 56, 0, 55, 65, 126, 11, 63, 66, 108, 51, 64, 38, 196, 80, 191, 77, 36, 163, 0, 158, 0, 176, 127, 64, 57, 0, 55, 119, 61, 39, 63, 201, 109, 63, 64, 114, 61, 39, 191, 77, 36, 163, 0, 158, 0, 176, 127, 255, 56, 0, 54, 65, 126, 11, 63, 66, 108, 51, 64, 38, 196, 80, 191, 80, 12, 159, 0, 158, 0, 176, 127, 64, 57, 0, 55, 164, 236, 23, 63, 230, 239, 38, 64, 160, 229, 76, 191, 80, 12, 159, 0, 158, 0, 176, 127, 47, 57, 0, 56, 221, 57, 14, 63, 230, 239, 38, 64, 47, 219, 84, 191, 80, 12, 159, 0, 158, 0, 176, 127, 63, 57, 0, 56, 106, 159, 33, 63, 230, 239, 38, 64, 16, 240, 68, 191, 80, 12, 159, 0, 158, 0, 176, 127, 31, 57, 0, 56, 48, 82, 43, 63, 230, 239, 38, 64, 128, 250, 60, 191, 80, 12, 159, 0, 158, 0, 176, 127, 15, 57, 0, 56, 247, 4, 53, 63, 230, 239, 38, 64, 240, 4, 53, 191, 80, 12, 159, 0, 158, 0, 176, 127, 255, 56, 0, 56, 136, 138, 49, 63, 66, 108, 51, 64, 130, 138, 49, 191, 80, 12, 159, 0, 158, 0, 176, 127, 255, 56, 0, 55, 199, 249, 221, 61, 22, 181, 101, 64, 206, 26, 38, 190, 7, 126, 247, 0, 158, 0, 176, 127, 63, 57, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 7, 126, 247, 0, 158, 0, 176, 127, 31, 57, 0, 0, 191, 66, 13, 62, 22, 181, 101, 64, 169, 66, 13, 190, 7, 126, 247, 0, 158, 0, 176, 127, 255, 56, 0, 44, 48, 82, 43, 63, 230, 239, 38, 64, 128, 250, 60, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 0, 56, 92, 38, 52, 63, 171, 41, 244, 63, 84, 38, 52, 191, 80, 0, 158, 0, 158, 0, 176, 127, 255, 56, 32, 56, 130, 127, 42, 63, 171, 41, 244, 63, 26, 18, 60, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 32, 56, 247, 4, 53, 63, 230, 239, 38, 64, 240, 4, 53, 191, 80, 0, 158, 0, 158, 0, 176, 127, 255, 56, 0, 56, 199, 249, 221, 61, 22, 181, 101, 64, 206, 26, 38, 190, 23, 121, 228, 0, 158, 0, 176, 127, 63, 57, 255, 43, 220, 139, 138, 62, 190, 16, 98, 64, 209, 139, 138, 190, 23, 121, 228, 0, 158, 0, 176, 127, 255, 56, 0, 48, 214, 181, 89, 62, 190, 16, 98, 64, 192, 233, 162, 190, 23, 121, 228, 0, 158, 0, 176, 127, 63, 57, 0, 48, 191, 66, 13, 62, 22, 181, 101, 64, 169, 66, 13, 190, 23, 121, 228, 0, 158, 0, 176, 127, 255, 56, 0, 44, 214, 181, 89, 62, 190, 16, 98, 64, 192, 233, 162, 190, 38, 111, 210, 0, 158, 0, 176, 127, 63, 57, 0, 48, 85, 35, 201, 62, 178, 38, 92, 64, 74, 35, 201, 190, 38, 111, 210, 0, 158, 0, 176, 127, 255, 56, 0, 50, 123, 8, 158, 62, 178, 38, 92, 64, 92, 131, 236, 190, 38, 111, 210, 0, 158, 0, 176, 127, 63, 57, 0, 50, 220, 139, 138, 62, 190, 16, 98, 64, 209, 139, 138, 190, 38, 111, 210, 0, 158, 0, 176, 127, 255, 56, 0, 48, 136, 138, 49, 63, 66, 108, 51, 64, 130, 138, 49, 191, 97, 12, 176, 0, 176, 0, 158, 127, 255, 56, 0, 55, 134, 250, 60, 63, 230, 239, 38, 64, 42, 82, 43, 191, 97, 12, 176, 0, 176, 0, 158, 127, 239, 56, 0, 56, 247, 4, 53, 63, 230, 239, 38, 64, 240, 4, 53, 191, 97, 12, 176, 0, 176, 0, 158, 127, 255, 56, 0, 56, 22, 240, 68, 63, 230, 239, 38, 64, 99, 159, 33, 191, 97, 12, 176, 0, 176, 0, 158, 127, 223, 56, 0, 56, 166, 229, 76, 63, 230, 239, 38, 64, 156, 236, 23, 191, 97, 12, 176, 0, 176, 0, 158, 127, 207, 56, 0, 56, 53, 219, 84, 63, 230, 239, 38, 64, 214, 57, 14, 191, 97, 12, 176, 0, 176, 0, 158, 127, 191, 56, 0, 56, 43, 196, 80, 63, 66, 108, 51, 64, 58, 126, 11, 191, 97, 12, 176, 0, 176, 0, 158, 127, 191, 56, 0, 55, 191, 66, 13, 62, 22, 181, 101, 64, 169, 66, 13, 190, 9, 126, 249, 0, 176, 0, 158, 127, 255, 56, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 9, 126, 249, 0, 176, 0, 158, 127, 223, 56, 0, 0, 227, 26, 38, 62, 22, 181, 101, 64, 154, 249, 221, 189, 9, 126, 249, 0, 176, 0, 158, 127, 191, 56, 0, 44, 166, 229, 76, 63, 230, 239, 38, 64, 156, 236, 23, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 0, 56, 114, 213, 83, 63, 171, 41, 244, 63, 239, 138, 13, 191, 98, 0, 176, 0, 176, 0, 158, 127, 191, 56, 32, 56, 172, 233, 75, 63, 171, 41, 244, 63, 200, 49, 23, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 32, 56, 53, 219, 84, 63, 230, 239, 38, 64, 214, 57, 14, 191, 98, 0, 176, 0, 176, 0, 158, 127, 191, 56, 0, 56, 220, 139, 138, 62, 190, 16, 98, 64, 209, 139, 138, 190, 28, 121, 233, 0, 176, 0, 158, 127, 255, 56, 0, 48, 227, 26, 38, 62, 22, 181, 101, 64, 154, 249, 221, 189, 28, 121, 233, 0, 176, 0, 158, 127, 191, 56, 0, 44, 202, 233, 162, 62, 190, 16, 98, 64, 193, 181, 89, 190, 28, 121, 233, 0, 176, 0, 158, 127, 191, 56, 0, 48, 191, 66, 13, 62, 22, 181, 101, 64, 169, 66, 13, 190, 28, 121, 233, 0, 176, 0, 158, 127, 255, 56, 0, 44, 220, 139, 138, 62, 190, 16, 98, 64, 209, 139, 138, 190, 46, 111, 218, 0, 176, 0, 158, 127, 255, 56, 0, 48, 102, 131, 236, 62, 178, 38, 92, 64, 112, 8, 158, 190, 46, 111, 218, 0, 176, 0, 158, 127, 191, 56, 0, 50, 85, 35, 201, 62, 178, 38, 92, 64, 74, 35, 201, 190, 46, 111, 218, 0, 176, 0, 158, 127, 255, 56, 0, 50, 202, 233, 162, 62, 190, 16, 98, 64, 193, 181, 89, 190, 46, 111, 218, 0, 176, 0, 158, 127, 191, 56, 0, 48, 85, 35, 201, 62, 178, 38, 92, 64, 74, 35, 201, 190, 62, 97, 205, 0, 176, 0, 158, 127, 255, 56, 0, 50, 27, 131, 22, 63, 35, 49, 84, 64, 72, 35, 201, 190, 62, 97, 205, 0, 176, 0, 158, 127, 191, 56, 0, 52, 3, 0, 0, 63, 35, 49, 84, 64, 252, 255, 255, 190, 62, 97, 205, 0, 176, 0, 158, 127, 255, 56, 0, 52, 102, 131, 236, 62, 178, 38, 92, 64, 112, 8, 158, 190, 62, 97, 205, 0, 176, 0, 158, 127, 191, 56, 0, 50, 3, 0, 0, 63, 35, 49, 84, 64, 252, 255, 255, 190, 76, 80, 194, 0, 176, 0, 158, 127, 255, 56, 0, 52, 201, 251, 48, 63, 92, 126, 74, 64, 88, 131, 236, 190, 76, 80, 194, 0, 176, 0, 158, 127, 191, 56, 0, 53, 27, 131, 22, 63, 92, 126, 74, 64, 21, 131, 22, 191, 76, 80, 194, 0, 176, 0, 158, 127, 255, 56, 0, 53, 27, 131, 22, 63, 35, 49, 84, 64, 72, 35, 201, 190, 76, 80, 194, 0, 176, 0, 158, 127, 191, 56, 0, 52, 27, 131, 22, 63, 92, 126, 74, 64, 21, 131, 22, 191, 86, 59, 185, 0, 176, 0, 158, 127, 255, 56, 0, 53, 79, 167, 68, 63, 201, 109, 63, 64, 78, 102, 3, 191, 86, 59, 185, 0, 176, 0, 158, 127, 191, 56, 0, 54, 119, 61, 39, 63, 201, 109, 63, 64, 114, 61, 39, 191, 86, 59, 185, 0, 176, 0, 158, 127, 255, 56, 0, 54, 201, 251, 48, 63, 92, 126, 74, 64, 88, 131, 236, 190, 86, 59, 185, 0, 176, 0, 158, 127, 191, 56, 0, 53, 119, 61, 39, 63, 201, 109, 63, 64, 114, 61, 39, 191, 93, 36, 179, 0, 176, 0, 158, 127, 255, 56, 0, 54, 43, 196, 80, 63, 66, 108, 51, 64, 58, 126, 11, 191, 93, 36, 179, 0, 176, 0, 158, 127, 191, 56, 0, 55, 136, 138, 49, 63, 66, 108, 51, 64, 130, 138, 49, 191, 93, 36, 179, 0, 176, 0, 158, 127, 255, 56, 0, 55, 79, 167, 68, 63, 201, 109, 63, 64, 78, 102, 3, 191, 93, 36, 179, 0, 176, 0, 158, 127, 191, 56, 0, 54, 27, 131, 22, 63, 35, 49, 84, 64, 72, 35, 201, 190, 86, 80, 210, 0, 197, 0, 144, 127, 191, 56, 0, 52, 80, 167, 68, 63, 92, 126, 74, 64, 184, 233, 162, 190, 86, 80, 210, 0, 197, 0, 144, 127, 127, 56, 0, 53, 201, 251, 48, 63, 92, 126, 74, 64, 88, 131, 236, 190, 86, 80, 210, 0, 197, 0, 144, 127, 191, 56, 0, 53, 120, 61, 39, 63, 35, 49, 84, 64, 204, 139, 138, 190, 86, 80, 210, 0, 197, 0, 144, 127, 127, 56, 0, 52, 201, 251, 48, 63, 92, 126, 74, 64, 88, 131, 236, 190, 98, 59, 204, 0, 197, 0, 144, 127, 191, 56, 0, 53, 124, 130, 90, 63, 201, 109, 63, 64, 236, 4, 181, 190, 98, 59, 204, 0, 197, 0, 144, 127, 127, 56, 0, 54, 79, 167, 68, 63, 201, 109, 63, 64, 78, 102, 3, 191, 98, 59, 204, 0, 197, 0, 144, 127, 191, 56, 0, 54, 80, 167, 68, 63, 92, 126, 74, 64, 184, 233, 162, 190, 98, 59, 204, 0, 197, 0, 144, 127, 127, 56, 0, 53, 79, 167, 68, 63, 201, 109, 63, 64, 78, 102, 3, 191, 107, 36, 199, 0, 197, 0, 144, 127, 191, 56, 0, 54, 249, 247, 103, 63, 66, 108, 51, 64, 62, 43, 192, 190, 107, 36, 199, 0, 197, 0, 144, 127, 127, 56, 0, 55, 43, 196, 80, 63, 66, 108, 51, 64, 58, 126, 11, 191, 107, 36, 199, 0, 197, 0, 144, 127, 191, 56, 0, 55, 124, 130, 90, 63, 201, 109, 63, 64, 236, 4, 181, 190, 107, 36, 199, 0, 197, 0, 144, 127, 127, 56, 0, 54, 43, 196, 80, 63, 66, 108, 51, 64, 58, 126, 11, 191, 111, 12, 197, 0, 197, 0, 144, 127, 191, 56, 0, 55, 64, 197, 90, 63, 230, 239, 38, 64, 66, 41, 3, 191, 111, 12, 197, 0, 197, 0, 144, 127, 175, 56, 0, 56, 53, 219, 84, 63, 230, 239, 38, 64, 214, 57, 14, 191, 111, 12, 197, 0, 197, 0, 144, 127, 191, 56, 0, 56, 76, 175, 96, 63, 230, 239, 38, 64, 92, 49, 240, 190, 111, 12, 197, 0, 197, 0, 144, 127, 159, 56, 0, 56, 87, 153, 102, 63, 230, 239, 38, 64, 52, 16, 218, 190, 111, 12, 197, 0, 197, 0, 144, 127, 143, 56, 0, 56, 98, 131, 108, 63, 230, 239, 38, 64, 12, 239, 195, 190, 111, 12, 197, 0, 197, 0, 144, 127, 127, 56, 0, 56, 249, 247, 103, 63, 66, 108, 51, 64, 62, 43, 192, 190, 111, 12, 197, 0, 197, 0, 144, 127, 127, 56, 0, 55, 227, 26, 38, 62, 22, 181, 101, 64, 154, 249, 221, 189, 11, 126, 251, 0, 197, 0, 144, 127, 191, 56, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 11, 126, 251, 0, 197, 0, 144, 127, 159, 56, 0, 0, 230, 144, 56, 62, 22, 181, 101, 64, 25, 230, 152, 189, 11, 126, 251, 0, 197, 0, 144, 127, 127, 56, 0, 44, 87, 153, 102, 63, 230, 239, 38, 64, 52, 16, 218, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 0, 56, 136, 96, 107, 63, 171, 41, 244, 63, 24, 254, 194, 190, 112, 0, 197, 0, 197, 0, 144, 127, 127, 56, 32, 56, 195, 125, 101, 63, 171, 41, 244, 63, 10, 4, 217, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 32, 56, 98, 131, 108, 63, 230, 239, 38, 64, 12, 239, 195, 190, 112, 0, 197, 0, 197, 0, 144, 127, 127, 56, 0, 56, 227, 26, 38, 62, 22, 181, 101, 64, 154, 249, 221, 189, 32, 121, 239, 0, 197, 0, 144, 127, 191, 56, 0, 44, 253, 4, 181, 62, 190, 16, 98, 64, 13, 246, 21, 190, 32, 121, 239, 0, 197, 0, 144, 127, 127, 56, 0, 48, 202, 233, 162, 62, 190, 16, 98, 64, 193, 181, 89, 190, 32, 121, 239, 0, 197, 0, 144, 127, 191, 56, 0, 48, 230, 144, 56, 62, 22, 181, 101, 64, 25, 230, 152, 189, 32, 121, 239, 0, 197, 0, 144, 127, 127, 56, 0, 44, 102, 131, 236, 62, 178, 38, 92, 64, 112, 8, 158, 190, 52, 111, 228, 0, 197, 0, 144, 127, 191, 56, 0, 50, 253, 4, 181, 62, 190, 16, 98, 64, 13, 246, 21, 190, 52, 111, 228, 0, 197, 0, 144, 127, 127, 56, 0, 48, 85, 102, 3, 63, 178, 38, 92, 64, 188, 181, 89, 190, 52, 111, 228, 0, 197, 0, 144, 127, 127, 56, 0, 50, 202, 233, 162, 62, 190, 16, 98, 64, 193, 181, 89, 190, 52, 111, 228, 0, 197, 0, 144, 127, 191, 56, 0, 48, 27, 131, 22, 63, 35, 49, 84, 64, 72, 35, 201, 190, 71, 97, 218, 0, 197, 0, 144, 127, 191, 56, 0, 52, 85, 102, 3, 63, 178, 38, 92, 64, 188, 181, 89, 190, 71, 97, 218, 0, 197, 0, 144, 127, 127, 56, 0, 50, 120, 61, 39, 63, 35, 49, 84, 64, 204, 139, 138, 190, 71, 97, 218, 0, 197, 0, 144, 127, 127, 56, 0, 52, 102, 131, 236, 62, 178, 38, 92, 64, 112, 8, 158, 190, 71, 97, 218, 0, 197, 0, 144, 127, 191, 56, 0, 50, 230, 144, 56, 62, 22, 181, 101, 64, 25, 230, 152, 189, 11, 126, 253, 0, 220, 0, 135, 127, 127, 56, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 11, 126, 253, 0, 220, 0, 135, 127, 95, 56, 0, 0, 41, 239, 67, 62, 22, 181, 101, 64, 196, 228, 27, 189, 11, 126, 253, 0, 220, 0, 135, 127, 63, 56, 0, 44, 106, 112, 119, 63, 230, 239, 38, 64, 199, 203, 119, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 0, 56, 254, 223, 121, 63, 171, 41, 244, 63, 0, 208, 70, 190, 121, 0, 220, 0, 220, 0, 135, 127, 63, 56, 32, 56, 32, 64, 118, 63, 171, 41, 244, 63, 12, 155, 118, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 32, 56, 194, 20, 123, 63, 230, 239, 38, 64, 172, 197, 71, 190, 121, 0, 220, 0, 220, 0, 135, 127, 63, 56, 0, 56, 230, 144, 56, 62, 22, 181, 101, 64, 25, 230, 152, 189, 35, 121, 246, 0, 220, 0, 135, 127, 127, 56, 0, 44, 84, 43, 192, 62, 190, 16, 98, 64, 18, 230, 152, 189, 35, 121, 246, 0, 220, 0, 135, 127, 63, 56, 0, 48, 253, 4, 181, 62, 190, 16, 98, 64, 13, 246, 21, 190, 35, 121, 246, 0, 220, 0, 135, 127, 127, 56, 0, 48, 41, 239, 67, 62, 22, 181, 101, 64, 196, 228, 27, 189, 35, 121, 246, 0, 220, 0, 135, 127, 63, 56, 0, 44, 253, 4, 181, 62, 190, 16, 98, 64, 13, 246, 21, 190, 57, 111, 239, 0, 220, 0, 135, 127, 127, 56, 0, 48, 67, 126, 11, 63, 178, 38, 92, 64, 138, 249, 221, 189, 57, 111, 239, 0, 220, 0, 135, 127, 63, 56, 0, 50, 85, 102, 3, 63, 178, 38, 92, 64, 188, 181, 89, 190, 57, 111, 239, 0, 220, 0, 135, 127, 127, 56, 0, 50, 84, 43, 192, 62, 190, 16, 98, 64, 18, 230, 152, 189, 57, 111, 239, 0, 220, 0, 135, 127, 63, 56, 0, 48, 85, 102, 3, 63, 178, 38, 92, 64, 188, 181, 89, 190, 77, 97, 233, 0, 220, 0, 135, 127, 127, 56, 0, 50, 137, 138, 49, 63, 35, 49, 84, 64, 157, 66, 13, 190, 77, 97, 233, 0, 220, 0, 135, 127, 63, 56, 0, 52, 120, 61, 39, 63, 35, 49, 84, 64, 204, 139, 138, 190, 77, 97, 233, 0, 220, 0, 135, 127, 127, 56, 0, 52, 67, 126, 11, 63, 178, 38, 92, 64, 138, 249, 221, 189, 77, 97, 233, 0, 220, 0, 135, 127, 63, 56, 0, 50, 120, 61, 39, 63, 35, 49, 84, 64, 204, 139, 138, 190, 94, 80, 228, 0, 220, 0, 135, 127, 127, 56, 0, 52, 44, 196, 80, 63, 92, 126, 74, 64, 189, 26, 38, 190, 94, 80, 228, 0, 220, 0, 135, 127, 63, 56, 0, 53, 80, 167, 68, 63, 92, 126, 74, 64, 184, 233, 162, 190, 94, 80, 228, 0, 220, 0, 135, 127, 127, 56, 0, 53, 137, 138, 49, 63, 35, 49, 84, 64, 157, 66, 13, 190, 94, 80, 228, 0, 220, 0, 135, 127, 63, 56, 0, 52, 80, 167, 68, 63, 92, 126, 74, 64, 184, 233, 162, 190, 107, 59, 224, 0, 220, 0, 135, 127, 127, 56, 0, 53, 250, 247, 103, 63, 201, 109, 63, 64, 194, 144, 56, 190, 107, 59, 224, 0, 220, 0, 135, 127, 63, 56, 0, 54, 124, 130, 90, 63, 201, 109, 63, 64, 236, 4, 181, 190, 107, 59, 224, 0, 220, 0, 135, 127, 127, 56, 0, 54, 44, 196, 80, 63, 92, 126, 74, 64, 189, 26, 38, 190, 107, 59, 224, 0, 220, 0, 135, 127, 63, 56, 0, 53, 124, 130, 90, 63, 201, 109, 63, 64, 236, 4, 181, 190, 116, 36, 221, 0, 220, 0, 135, 127, 127, 56, 0, 54, 176, 65, 118, 63, 66, 108, 51, 64, 252, 238, 67, 190, 116, 36, 221, 0, 220, 0, 135, 127, 63, 56, 0, 55, 249, 247, 103, 63, 66, 108, 51, 64, 62, 43, 192, 190, 116, 36, 221, 0, 220, 0, 135, 127, 127, 56, 0, 55, 250, 247, 103, 63, 201, 109, 63, 64, 194, 144, 56, 190, 116, 36, 221, 0, 220, 0, 135, 127, 63, 56, 0, 54, 249, 247, 103, 63, 66, 108, 51, 64, 62, 43, 192, 190, 120, 12, 220, 0, 220, 0, 135, 127, 127, 56, 0, 55, 186, 39, 112, 63, 230, 239, 38, 64, 254, 235, 171, 190, 120, 12, 220, 0, 220, 0, 135, 127, 111, 56, 0, 56, 98, 131, 108, 63, 230, 239, 38, 64, 12, 239, 195, 190, 120, 12, 220, 0, 220, 0, 135, 127, 127, 56, 0, 56, 18, 204, 115, 63, 230, 239, 38, 64, 241, 232, 147, 190, 120, 12, 220, 0, 220, 0, 135, 127, 95, 56, 0, 56, 106, 112, 119, 63, 230, 239, 38, 64, 199, 203, 119, 190, 120, 12, 220, 0, 220, 0, 135, 127, 79, 56, 0, 56, 194, 20, 123, 63, 230, 239, 38, 64, 172, 197, 71, 190, 120, 12, 220, 0, 220, 0, 135, 127, 63, 56, 0, 56, 176, 65, 118, 63, 66, 108, 51, 64, 252, 238, 67, 190, 120, 12, 220, 0, 220, 0, 135, 127, 63, 56, 0, 55, 137, 138, 49, 63, 35, 49, 84, 64, 157, 66, 13, 190, 97, 80, 247, 0, 244, 0, 130, 127, 63, 56, 0, 52, 52, 219, 84, 63, 92, 126, 74, 64, 128, 92, 179, 52, 97, 80, 247, 0, 244, 0, 130, 127, 255, 55, 0, 53, 44, 196, 80, 63, 92, 126, 74, 64, 189, 26, 38, 190, 97, 80, 247, 0, 244, 0, 130, 127, 63, 56, 0, 53, 246, 4, 53, 63, 35, 49, 84, 64, 128, 92, 171, 52, 97, 80, 247, 0, 244, 0, 130, 127, 255, 55, 0, 52, 250, 247, 103, 63, 201, 109, 63, 64, 194, 144, 56, 190, 111, 59, 246, 0, 244, 0, 130, 127, 63, 56, 0, 54, 52, 219, 84, 63, 92, 126, 74, 64, 128, 92, 179, 52, 111, 59, 246, 0, 244, 0, 130, 127, 255, 55, 0, 53, 97, 131, 108, 63, 201, 109, 63, 64, 128, 92, 147, 52, 111, 59, 246, 0, 244, 0, 130, 127, 255, 55, 0, 54, 44, 196, 80, 63, 92, 126, 74, 64, 189, 26, 38, 190, 111, 59, 246, 0, 244, 0, 130, 127, 63, 56, 0, 53, 250, 247, 103, 63, 201, 109, 63, 64, 194, 144, 56, 190, 120, 36, 245, 0, 244, 0, 130, 127, 63, 56, 0, 54, 190, 20, 123, 63, 66, 108, 51, 64, 128, 92, 211, 52, 120, 36, 245, 0, 244, 0, 130, 127, 255, 55, 0, 55, 176, 65, 118, 63, 66, 108, 51, 64, 252, 238, 67, 190, 120, 36, 245, 0, 244, 0, 130, 127, 63, 56, 0, 55, 97, 131, 108, 63, 201, 109, 63, 64, 128, 92, 147, 52, 120, 36, 245, 0, 244, 0, 130, 127, 255, 55, 0, 54, 176, 65, 118, 63, 66, 108, 51, 64, 252, 238, 67, 190, 125, 12, 244, 0, 244, 0, 130, 127, 63, 56, 0, 55, 146, 79, 124, 63, 230, 239, 38, 64, 58, 212, 21, 190, 125, 12, 244, 0, 244, 0, 130, 127, 47, 56, 0, 56, 194, 20, 123, 63, 230, 239, 38, 64, 172, 197, 71, 190, 125, 12, 244, 0, 244, 0, 130, 127, 63, 56, 0, 56, 99, 138, 125, 63, 230, 239, 38, 64, 146, 197, 199, 189, 125, 12, 244, 0, 244, 0, 130, 127, 31, 56, 0, 56, 52, 197, 126, 63, 230, 239, 38, 64, 95, 197, 71, 189, 125, 12, 244, 0, 244, 0, 130, 127, 15, 56, 0, 56, 2, 0, 128, 63, 230, 239, 38, 64, 128, 92, 203, 52, 125, 12, 244, 0, 244, 0, 130, 127, 255, 55, 0, 56, 190, 20, 123, 63, 66, 108, 51, 64, 128, 92, 211, 52, 125, 12, 244, 0, 244, 0, 130, 127, 255, 55, 0, 55, 41, 239, 67, 62, 22, 181, 101, 64, 196, 228, 27, 189, 12, 126, 255, 0, 244, 0, 130, 127, 63, 56, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 12, 126, 255, 0, 244, 0, 130, 127, 31, 56, 0, 0, 213, 197, 71, 62, 22, 181, 101, 64, 128, 92, 175, 52, 12, 126, 255, 0, 244, 0, 130, 127, 255, 55, 0, 44, 52, 197, 126, 63, 230, 239, 38, 64, 95, 197, 71, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 0, 56, 50, 197, 126, 63, 171, 41, 244, 63, 128, 92, 205, 52, 126, 0, 244, 0, 244, 0, 130, 127, 255, 55, 32, 56, 229, 139, 125, 63, 171, 41, 244, 63, 179, 207, 70, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 32, 56, 2, 0, 128, 63, 230, 239, 38, 64, 128, 92, 203, 52, 126, 0, 244, 0, 244, 0, 130, 127, 255, 55, 0, 56, 41, 239, 67, 62, 22, 181, 101, 64, 196, 228, 27, 189, 36, 121, 253, 0, 244, 0, 130, 127, 63, 56, 0, 44, 30, 239, 195, 62, 190, 16, 98, 64, 128, 92, 171, 52, 36, 121, 253, 0, 244, 0, 130, 127, 255, 55, 0, 48, 84, 43, 192, 62, 190, 16, 98, 64, 18, 230, 152, 189, 36, 121, 253, 0, 244, 0, 130, 127, 63, 56, 0, 48, 213, 197, 71, 62, 22, 181, 101, 64, 128, 92, 175, 52, 36, 121, 253, 0, 244, 0, 130, 127, 255, 55, 0, 44, 84, 43, 192, 62, 190, 16, 98, 64, 18, 230, 152, 189, 59, 111, 251, 0, 244, 0, 130, 127, 63, 56, 0, 48, 222, 57, 14, 63, 178, 38, 92, 64, 128, 92, 167, 52, 59, 111, 251, 0, 244, 0, 130, 127, 255, 55, 0, 50, 67, 126, 11, 63, 178, 38, 92, 64, 138, 249, 221, 189, 59, 111, 251, 0, 244, 0, 130, 127, 63, 56, 0, 50, 30, 239, 195, 62, 190, 16, 98, 64, 128, 92, 171, 52, 59, 111, 251, 0, 244, 0, 130, 127, 255, 55, 0, 48, 67, 126, 11, 63, 178, 38, 92, 64, 138, 249, 221, 189, 80, 97, 249, 0, 244, 0, 130, 127, 63, 56, 0, 50, 246, 4, 53, 63, 35, 49, 84, 64, 128, 92, 171, 52, 80, 97, 249, 0, 244, 0, 130, 127, 255, 55, 0, 52, 137, 138, 49, 63, 35, 49, 84, 64, 157, 66, 13, 190, 80, 97, 249, 0, 244, 0, 130, 127, 63, 56, 0, 52, 222, 57, 14, 63, 178, 38, 92, 64, 128, 92, 167, 52, 80, 97, 249, 0, 244, 0, 130, 127, 255, 55, 0, 50, 146, 79, 124, 63, 230, 239, 38, 64, 109, 212, 21, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 0, 56, 253, 223, 121, 63, 171, 41, 244, 63, 50, 208, 70, 62, 126, 0, 12, 0, 12, 0, 130, 127, 127, 55, 32, 56, 74, 25, 123, 63, 171, 41, 244, 63, 44, 28, 21, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 32, 56, 194, 20, 123, 63, 230, 239, 38, 64, 222, 197, 71, 62, 126, 0, 12, 0, 12, 0, 130, 127, 127, 55, 0, 56, 213, 197, 71, 62, 22, 181, 101, 64, 128, 92, 175, 52, 36, 121, 3, 0, 12, 0, 130, 127, 255, 55, 0, 44, 83, 43, 192, 62, 190, 16, 98, 64, 103, 230, 152, 61, 36, 121, 3, 0, 12, 0, 130, 127, 127, 55, 0, 48, 30, 239, 195, 62, 190, 16, 98, 64, 128, 92, 171, 52, 36, 121, 3, 0, 12, 0, 130, 127, 255, 55, 0, 48, 40, 239, 67, 62, 22, 181, 101, 64, 115, 229, 27, 61, 36, 121, 3, 0, 12, 0, 130, 127, 127, 55, 0, 44, 30, 239, 195, 62, 190, 16, 98, 64, 128, 92, 171, 52, 59, 111, 5, 0, 12, 0, 130, 127, 255, 55, 0, 48, 67, 126, 11, 63, 178, 38, 92, 64, 222, 249, 221, 61, 59, 111, 5, 0, 12, 0, 130, 127, 127, 55, 0, 50, 222, 57, 14, 63, 178, 38, 92, 64, 128, 92, 167, 52, 59, 111, 5, 0, 12, 0, 130, 127, 255, 55, 0, 50, 83, 43, 192, 62, 190, 16, 98, 64, 103, 230, 152, 61, 59, 111, 5, 0, 12, 0, 130, 127, 127, 55, 0, 48, 222, 57, 14, 63, 178, 38, 92, 64, 128, 92, 167, 52, 80, 97, 7, 0, 12, 0, 130, 127, 255, 55, 0, 50, 136, 138, 49, 63, 35, 49, 84, 64, 198, 66, 13, 62, 80, 97, 7, 0, 12, 0, 130, 127, 127, 55, 0, 52, 246, 4, 53, 63, 35, 49, 84, 64, 128, 92, 171, 52, 80, 97, 7, 0, 12, 0, 130, 127, 255, 55, 0, 52, 67, 126, 11, 63, 178, 38, 92, 64, 222, 249, 221, 61, 80, 97, 7, 0, 12, 0, 130, 127, 127, 55, 0, 50, 246, 4, 53, 63, 35, 49, 84, 64, 128, 92, 171, 52, 97, 80, 9, 0, 12, 0, 130, 127, 255, 55, 0, 52, 43, 196, 80, 63, 92, 126, 74, 64, 233, 26, 38, 62, 97, 80, 9, 0, 12, 0, 130, 127, 127, 55, 0, 53, 52, 219, 84, 63, 92, 126, 74, 64, 128, 92, 179, 52, 97, 80, 9, 0, 12, 0, 130, 127, 255, 55, 0, 53, 136, 138, 49, 63, 35, 49, 84, 64, 198, 66, 13, 62, 97, 80, 9, 0, 12, 0, 130, 127, 127, 55, 0, 52, 52, 219, 84, 63, 92, 126, 74, 64, 128, 92, 179, 52, 111, 59, 10, 0, 12, 0, 130, 127, 255, 55, 0, 53, 250, 247, 103, 63, 201, 109, 63, 64, 231, 144, 56, 62, 111, 59, 10, 0, 12, 0, 130, 127, 127, 55, 0, 54, 97, 131, 108, 63, 201, 109, 63, 64, 128, 92, 147, 52, 111, 59, 10, 0, 12, 0, 130, 127, 255, 55, 0, 54, 43, 196, 80, 63, 92, 126, 74, 64, 233, 26, 38, 62, 111, 59, 10, 0, 12, 0, 130, 127, 127, 55, 0, 53, 97, 131, 108, 63, 201, 109, 63, 64, 128, 92, 147, 52, 120, 36, 11, 0, 12, 0, 130, 127, 255, 55, 0, 54, 174, 65, 118, 63, 66, 108, 51, 64, 47, 239, 67, 62, 120, 36, 11, 0, 12, 0, 130, 127, 127, 55, 0, 55, 190, 20, 123, 63, 66, 108, 51, 64, 128, 92, 211, 52, 120, 36, 11, 0, 12, 0, 130, 127, 255, 55, 0, 55, 250, 247, 103, 63, 201, 109, 63, 64, 231, 144, 56, 62, 120, 36, 11, 0, 12, 0, 130, 127, 127, 55, 0, 54, 190, 20, 123, 63, 66, 108, 51, 64, 128, 92, 211, 52, 125, 12, 12, 0, 12, 0, 130, 127, 255, 55, 0, 55, 52, 197, 126, 63, 230, 239, 38, 64, 43, 198, 71, 61, 125, 12, 12, 0, 12, 0, 130, 127, 223, 55, 0, 56, 2, 0, 128, 63, 230, 239, 38, 64, 128, 92, 203, 52, 125, 12, 12, 0, 12, 0, 130, 127, 255, 55, 0, 56, 99, 138, 125, 63, 230, 239, 38, 64, 248, 197, 199, 61, 125, 12, 12, 0, 12, 0, 130, 127, 191, 55, 0, 56, 146, 79, 124, 63, 230, 239, 38, 64, 109, 212, 21, 62, 125, 12, 12, 0, 12, 0, 130, 127, 159, 55, 0, 56, 194, 20, 123, 63, 230, 239, 38, 64, 222, 197, 71, 62, 125, 12, 12, 0, 12, 0, 130, 127, 127, 55, 0, 56, 174, 65, 118, 63, 66, 108, 51, 64, 47, 239, 67, 62, 125, 12, 12, 0, 12, 0, 130, 127, 127, 55, 0, 55, 213, 197, 71, 62, 22, 181, 101, 64, 128, 92, 175, 52, 12, 126, 1, 0, 12, 0, 130, 127, 255, 55, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 12, 126, 1, 0, 12, 0, 130, 127, 191, 55, 0, 0, 40, 239, 67, 62, 22, 181, 101, 64, 115, 229, 27, 61, 12, 126, 1, 0, 12, 0, 130, 127, 127, 55, 0, 44, 43, 196, 80, 63, 92, 126, 74, 64, 233, 26, 38, 62, 107, 59, 32, 0, 36, 0, 135, 127, 127, 55, 0, 53, 124, 130, 90, 63, 201, 109, 63, 64, 254, 4, 181, 62, 107, 59, 32, 0, 36, 0, 135, 127, 255, 54, 0, 54, 250, 247, 103, 63, 201, 109, 63, 64, 231, 144, 56, 62, 107, 59, 32, 0, 36, 0, 135, 127, 127, 55, 0, 54, 77, 167, 68, 63, 92, 126, 74, 64, 206, 233, 162, 62, 107, 59, 32, 0, 36, 0, 135, 127, 255, 54, 0, 53, 250, 247, 103, 63, 201, 109, 63, 64, 231, 144, 56, 62, 116, 36, 35, 0, 36, 0, 135, 127, 127, 55, 0, 54, 246, 247, 103, 63, 66, 108, 51, 64, 86, 43, 192, 62, 116, 36, 35, 0, 36, 0, 135, 127, 255, 54, 0, 55, 174, 65, 118, 63, 66, 108, 51, 64, 47, 239, 67, 62, 116, 36, 35, 0, 36, 0, 135, 127, 127, 55, 0, 55, 124, 130, 90, 63, 201, 109, 63, 64, 254, 4, 181, 62, 116, 36, 35, 0, 36, 0, 135, 127, 255, 54, 0, 54, 174, 65, 118, 63, 66, 108, 51, 64, 47, 239, 67, 62, 120, 12, 36, 0, 36, 0, 135, 127, 127, 55, 0, 55, 106, 112, 119, 63, 230, 239, 38, 64, 249, 203, 119, 62, 120, 12, 36, 0, 36, 0, 135, 127, 95, 55, 0, 56, 194, 20, 123, 63, 230, 239, 38, 64, 222, 197, 71, 62, 120, 12, 36, 0, 36, 0, 135, 127, 127, 55, 0, 56, 18, 204, 115, 63, 230, 239, 38, 64, 10, 233, 147, 62, 120, 12, 36, 0, 36, 0, 135, 127, 63, 55, 0, 56, 186, 39, 112, 63, 230, 239, 38, 64, 23, 236, 171, 62, 120, 12, 36, 0, 36, 0, 135, 127, 31, 55, 0, 56, 97, 131, 108, 63, 230, 239, 38, 64, 36, 239, 195, 62, 120, 12, 36, 0, 36, 0, 135, 127, 255, 54, 0, 56, 246, 247, 103, 63, 66, 108, 51, 64, 86, 43, 192, 62, 120, 12, 36, 0, 36, 0, 135, 127, 255, 54, 0, 55, 40, 239, 67, 62, 22, 181, 101, 64, 115, 229, 27, 61, 11, 126, 3, 0, 36, 0, 135, 127, 127, 55, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 11, 126, 3, 0, 36, 0, 135, 127, 63, 55, 0, 0, 227, 144, 56, 62, 22, 181, 101, 64, 111, 230, 152, 61, 11, 126, 3, 0, 36, 0, 135, 127, 255, 54, 0, 44, 186, 39, 112, 63, 230, 239, 38, 64, 23, 236, 171, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 0, 56, 134, 96, 107, 63, 171, 41, 244, 63, 48, 254, 194, 62, 121, 0, 36, 0, 36, 0, 135, 127, 255, 54, 32, 56, 100, 0, 111, 63, 171, 41, 244, 63, 170, 24, 171, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 32, 56, 97, 131, 108, 63, 230, 239, 38, 64, 36, 239, 195, 62, 121, 0, 36, 0, 36, 0, 135, 127, 255, 54, 0, 56, 40, 239, 67, 62, 22, 181, 101, 64, 115, 229, 27, 61, 35, 121, 10, 0, 36, 0, 135, 127, 127, 55, 0, 44, 251, 4, 181, 62, 190, 16, 98, 64, 53, 246, 21, 62, 35, 121, 10, 0, 36, 0, 135, 127, 255, 54, 0, 48, 83, 43, 192, 62, 190, 16, 98, 64, 103, 230, 152, 61, 35, 121, 10, 0, 36, 0, 135, 127, 127, 55, 0, 48, 227, 144, 56, 62, 22, 181, 101, 64, 111, 230, 152, 61, 35, 121, 10, 0, 36, 0, 135, 127, 255, 54, 0, 44, 83, 43, 192, 62, 190, 16, 98, 64, 103, 230, 152, 61, 57, 111, 17, 0, 36, 0, 135, 127, 127, 55, 0, 48, 84, 102, 3, 63, 178, 38, 92, 64, 228, 181, 89, 62, 57, 111, 17, 0, 36, 0, 135, 127, 255, 54, 0, 50, 67, 126, 11, 63, 178, 38, 92, 64, 222, 249, 221, 61, 57, 111, 17, 0, 36, 0, 135, 127, 127, 55, 0, 50, 251, 4, 181, 62, 190, 16, 98, 64, 53, 246, 21, 62, 57, 111, 17, 0, 36, 0, 135, 127, 255, 54, 0, 48, 136, 138, 49, 63, 35, 49, 84, 64, 198, 66, 13, 62, 77, 97, 23, 0, 36, 0, 135, 127, 127, 55, 0, 52, 84, 102, 3, 63, 178, 38, 92, 64, 228, 181, 89, 62, 77, 97, 23, 0, 36, 0, 135, 127, 255, 54, 0, 50, 119, 61, 39, 63, 35, 49, 84, 64, 224, 139, 138, 62, 77, 97, 23, 0, 36, 0, 135, 127, 255, 54, 0, 52, 67, 126, 11, 63, 178, 38, 92, 64, 222, 249, 221, 61, 77, 97, 23, 0, 36, 0, 135, 127, 127, 55, 0, 50, 136, 138, 49, 63, 35, 49, 84, 64, 198, 66, 13, 62, 94, 80, 28, 0, 36, 0, 135, 127, 127, 55, 0, 52, 77, 167, 68, 63, 92, 126, 74, 64, 206, 233, 162, 62, 94, 80, 28, 0, 36, 0, 135, 127, 255, 54, 0, 53, 43, 196, 80, 63, 92, 126, 74, 64, 233, 26, 38, 62, 94, 80, 28, 0, 36, 0, 135, 127, 127, 55, 0, 53, 119, 61, 39, 63, 35, 49, 84, 64, 224, 139, 138, 62, 94, 80, 28, 0, 36, 0, 135, 127, 255, 54, 0, 52, 251, 4, 181, 62, 190, 16, 98, 64, 53, 246, 21, 62, 32, 121, 17, 0, 59, 0, 144, 127, 255, 54, 0, 48, 223, 26, 38, 62, 22, 181, 101, 64, 237, 249, 221, 61, 32, 121, 17, 0, 59, 0, 144, 127, 127, 54, 0, 44, 200, 233, 162, 62, 190, 16, 98, 64, 230, 181, 89, 62, 32, 121, 17, 0, 59, 0, 144, 127, 127, 54, 0, 48, 227, 144, 56, 62, 22, 181, 101, 64, 111, 230, 152, 61, 32, 121, 17, 0, 59, 0, 144, 127, 255, 54, 0, 44, 251, 4, 181, 62, 190, 16, 98, 64, 53, 246, 21, 62, 52, 111, 28, 0, 59, 0, 144, 127, 255, 54, 0, 48, 100, 131, 236, 62, 178, 38, 92, 64, 131, 8, 158, 62, 52, 111, 28, 0, 59, 0, 144, 127, 127, 54, 0, 50, 84, 102, 3, 63, 178, 38, 92, 64, 228, 181, 89, 62, 52, 111, 28, 0, 59, 0, 144, 127, 255, 54, 0, 50, 200, 233, 162, 62, 190, 16, 98, 64, 230, 181, 89, 62, 52, 111, 28, 0, 59, 0, 144, 127, 127, 54, 0, 48, 84, 102, 3, 63, 178, 38, 92, 64, 228, 181, 89, 62, 71, 97, 38, 0, 59, 0, 144, 127, 255, 54, 0, 50, 26, 131, 22, 63, 35, 49, 84, 64, 90, 35, 201, 62, 71, 97, 38, 0, 59, 0, 144, 127, 127, 54, 0, 52, 119, 61, 39, 63, 35, 49, 84, 64, 224, 139, 138, 62, 71, 97, 38, 0, 59, 0, 144, 127, 255, 54, 0, 52, 100, 131, 236, 62, 178, 38, 92, 64, 131, 8, 158, 62, 71, 97, 38, 0, 59, 0, 144, 127, 127, 54, 0, 50, 119, 61, 39, 63, 35, 49, 84, 64, 224, 139, 138, 62, 86, 80, 46, 0, 59, 0, 144, 127, 255, 54, 0, 52, 198, 251, 48, 63, 92, 126, 74, 64, 108, 131, 236, 62, 86, 80, 46, 0, 59, 0, 144, 127, 127, 54, 0, 53, 77, 167, 68, 63, 92, 126, 74, 64, 206, 233, 162, 62, 86, 80, 46, 0, 59, 0, 144, 127, 255, 54, 0, 53, 26, 131, 22, 63, 35, 49, 84, 64, 90, 35, 201, 62, 86, 80, 46, 0, 59, 0, 144, 127, 127, 54, 0, 52, 77, 167, 68, 63, 92, 126, 74, 64, 206, 233, 162, 62, 98, 59, 52, 0, 59, 0, 144, 127, 255, 54, 0, 53, 78, 167, 68, 63, 201, 109, 63, 64, 86, 102, 3, 63, 98, 59, 52, 0, 59, 0, 144, 127, 127, 54, 0, 54, 124, 130, 90, 63, 201, 109, 63, 64, 254, 4, 181, 62, 98, 59, 52, 0, 59, 0, 144, 127, 255, 54, 0, 54, 198, 251, 48, 63, 92, 126, 74, 64, 108, 131, 236, 62, 98, 59, 52, 0, 59, 0, 144, 127, 127, 54, 0, 53, 124, 130, 90, 63, 201, 109, 63, 64, 254, 4, 181, 62, 107, 36, 57, 0, 59, 0, 144, 127, 255, 54, 0, 54, 39, 196, 80, 63, 66, 108, 51, 64, 68, 126, 11, 63, 107, 36, 57, 0, 59, 0, 144, 127, 127, 54, 0, 55, 246, 247, 103, 63, 66, 108, 51, 64, 86, 43, 192, 62, 107, 36, 57, 0, 59, 0, 144, 127, 255, 54, 0, 55, 78, 167, 68, 63, 201, 109, 63, 64, 86, 102, 3, 63, 107, 36, 57, 0, 59, 0, 144, 127, 127, 54, 0, 54, 246, 247, 103, 63, 66, 108, 51, 64, 86, 43, 192, 62, 111, 12, 59, 0, 59, 0, 144, 127, 255, 54, 0, 55, 86, 153, 102, 63, 230, 239, 38, 64, 76, 16, 218, 62, 111, 12, 59, 0, 59, 0, 144, 127, 223, 54, 0, 56, 97, 131, 108, 63, 230, 239, 38, 64, 36, 239, 195, 62, 111, 12, 59, 0, 59, 0, 144, 127, 255, 54, 0, 56, 74, 175, 96, 63, 230, 239, 38, 64, 115, 49, 240, 62, 111, 12, 59, 0, 59, 0, 144, 127, 191, 54, 0, 56, 62, 197, 90, 63, 230, 239, 38, 64, 77, 41, 3, 63, 111, 12, 59, 0, 59, 0, 144, 127, 159, 54, 0, 56, 51, 219, 84, 63, 230, 239, 38, 64, 225, 57, 14, 63, 111, 12, 59, 0, 59, 0, 144, 127, 127, 54, 0, 56, 39, 196, 80, 63, 66, 108, 51, 64, 68, 126, 11, 63, 111, 12, 59, 0, 59, 0, 144, 127, 127, 54, 0, 55, 227, 144, 56, 62, 22, 181, 101, 64, 111, 230, 152, 61, 11, 126, 5, 0, 59, 0, 144, 127, 255, 54, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 11, 126, 5, 0, 59, 0, 144, 127, 191, 54, 0, 0, 223, 26, 38, 62, 22, 181, 101, 64, 237, 249, 221, 61, 11, 126, 5, 0, 59, 0, 144, 127, 127, 54, 0, 44, 62, 197, 90, 63, 230, 239, 38, 64, 77, 41, 3, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 0, 56, 112, 213, 83, 63, 171, 41, 244, 63, 250, 138, 13, 63, 112, 0, 59, 0, 59, 0, 144, 127, 127, 54, 32, 56, 54, 184, 89, 63, 171, 41, 244, 63, 2, 136, 2, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 32, 56, 51, 219, 84, 63, 230, 239, 38, 64, 225, 57, 14, 63, 112, 0, 59, 0, 59, 0, 144, 127, 127, 54, 0, 56, 198, 251, 48, 63, 92, 126, 74, 64, 108, 131, 236, 62, 86, 59, 71, 0, 80, 0, 158, 127, 127, 54, 0, 53, 119, 61, 39, 63, 201, 109, 63, 64, 122, 61, 39, 63, 86, 59, 71, 0, 80, 0, 158, 127, 255, 53, 0, 54, 78, 167, 68, 63, 201, 109, 63, 64, 86, 102, 3, 63, 86, 59, 71, 0, 80, 0, 158, 127, 127, 54, 0, 54, 23, 131, 22, 63, 92, 126, 74, 64, 30, 131, 22, 63, 86, 59, 71, 0, 80, 0, 158, 127, 255, 53, 0, 53, 78, 167, 68, 63, 201, 109, 63, 64, 86, 102, 3, 63, 93, 36, 77, 0, 80, 0, 158, 127, 127, 54, 0, 54, 132, 138, 49, 63, 66, 108, 51, 64, 138, 138, 49, 63, 93, 36, 77, 0, 80, 0, 158, 127, 255, 53, 0, 55, 39, 196, 80, 63, 66, 108, 51, 64, 68, 126, 11, 63, 93, 36, 77, 0, 80, 0, 158, 127, 127, 54, 0, 55, 119, 61, 39, 63, 201, 109, 63, 64, 122, 61, 39, 63, 93, 36, 77, 0, 80, 0, 158, 127, 255, 53, 0, 54, 39, 196, 80, 63, 66, 108, 51, 64, 68, 126, 11, 63, 97, 12, 80, 0, 80, 0, 158, 127, 127, 54, 0, 55, 164, 229, 76, 63, 230, 239, 38, 64, 168, 236, 23, 63, 97, 12, 80, 0, 80, 0, 158, 127, 95, 54, 0, 56, 51, 219, 84, 63, 230, 239, 38, 64, 225, 57, 14, 63, 97, 12, 80, 0, 80, 0, 158, 127, 127, 54, 0, 56, 20, 240, 68, 63, 230, 239, 38, 64, 110, 159, 33, 63, 97, 12, 80, 0, 80, 0, 158, 127, 63, 54, 0, 56, 132, 250, 60, 63, 230, 239, 38, 64, 52, 82, 43, 63, 97, 12, 80, 0, 80, 0, 158, 127, 31, 54, 0, 56, 244, 4, 53, 63, 230, 239, 38, 64, 251, 4, 53, 63, 97, 12, 80, 0, 80, 0, 158, 127, 255, 53, 0, 56, 132, 138, 49, 63, 66, 108, 51, 64, 138, 138, 49, 63, 97, 12, 80, 0, 80, 0, 158, 127, 255, 53, 0, 55, 223, 26, 38, 62, 22, 181, 101, 64, 237, 249, 221, 61, 9, 126, 7, 0, 80, 0, 158, 127, 127, 54, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 9, 126, 7, 0, 80, 0, 158, 127, 63, 54, 0, 0, 186, 66, 13, 62, 22, 181, 101, 64, 209, 66, 13, 62, 9, 126, 7, 0, 80, 0, 158, 127, 255, 53, 0, 44, 132, 250, 60, 63, 230, 239, 38, 64, 52, 82, 43, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 0, 56, 88, 38, 52, 63, 171, 41, 244, 63, 94, 38, 52, 63, 98, 0, 80, 0, 80, 0, 158, 127, 255, 53, 32, 56, 30, 18, 60, 63, 171, 41, 244, 63, 133, 127, 42, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 32, 56, 244, 4, 53, 63, 230, 239, 38, 64, 251, 4, 53, 63, 98, 0, 80, 0, 80, 0, 158, 127, 255, 53, 0, 56, 223, 26, 38, 62, 22, 181, 101, 64, 237, 249, 221, 61, 28, 121, 23, 0, 80, 0, 158, 127, 127, 54, 0, 44, 218, 139, 138, 62, 190, 16, 98, 64, 227, 139, 138, 62, 28, 121, 23, 0, 80, 0, 158, 127, 255, 53, 0, 48, 200, 233, 162, 62, 190, 16, 98, 64, 230, 181, 89, 62, 28, 121, 23, 0, 80, 0, 158, 127, 127, 54, 0, 48, 186, 66, 13, 62, 22, 181, 101, 64, 209, 66, 13, 62, 28, 121, 23, 0, 80, 0, 158, 127, 255, 53, 0, 44, 100, 131, 236, 62, 178, 38, 92, 64, 131, 8, 158, 62, 46, 111, 38, 0, 80, 0, 158, 127, 127, 54, 0, 50, 218, 139, 138, 62, 190, 16, 98, 64, 227, 139, 138, 62, 46, 111, 38, 0, 80, 0, 158, 127, 255, 53, 0, 48, 82, 35, 201, 62, 178, 38, 92, 64, 92, 35, 201, 62, 46, 111, 38, 0, 80, 0, 158, 127, 255, 53, 0, 50, 200, 233, 162, 62, 190, 16, 98, 64, 230, 181, 89, 62, 46, 111, 38, 0, 80, 0, 158, 127, 127, 54, 0, 48, 100, 131, 236, 62, 178, 38, 92, 64, 131, 8, 158, 62, 62, 97, 51, 0, 80, 0, 158, 127, 127, 54, 0, 50, 1, 0, 0, 63, 35, 49, 84, 64, 6, 0, 0, 63, 62, 97, 51, 0, 80, 0, 158, 127, 255, 53, 0, 52, 26, 131, 22, 63, 35, 49, 84, 64, 90, 35, 201, 62, 62, 97, 51, 0, 80, 0, 158, 127, 127, 54, 0, 52, 82, 35, 201, 62, 178, 38, 92, 64, 92, 35, 201, 62, 62, 97, 51, 0, 80, 0, 158, 127, 255, 53, 0, 50, 26, 131, 22, 63, 35, 49, 84, 64, 90, 35, 201, 62, 76, 80, 62, 0, 80, 0, 158, 127, 127, 54, 0, 52, 23, 131, 22, 63, 92, 126, 74, 64, 30, 131, 22, 63, 76, 80, 62, 0, 80, 0, 158, 127, 255, 53, 0, 53, 198, 251, 48, 63, 92, 126, 74, 64, 108, 131, 236, 62, 76, 80, 62, 0, 80, 0, 158, 127, 127, 54, 0, 53, 1, 0, 0, 63, 35, 49, 84, 64, 6, 0, 0, 63, 76, 80, 62, 0, 80, 0, 158, 127, 255, 53, 0, 52, 82, 35, 201, 62, 178, 38, 92, 64, 92, 35, 201, 62, 38, 111, 46, 0, 98, 0, 176, 127, 255, 53, 0, 50, 210, 181, 89, 62, 190, 16, 98, 64, 208, 233, 162, 62, 38, 111, 46, 0, 98, 0, 176, 127, 127, 53, 0, 48, 120, 8, 158, 62, 178, 38, 92, 64, 108, 131, 236, 62, 38, 111, 46, 0, 98, 0, 176, 127, 127, 53, 0, 50, 218, 139, 138, 62, 190, 16, 98, 64, 227, 139, 138, 62, 38, 111, 46, 0, 98, 0, 176, 127, 255, 53, 0, 48, 1, 0, 0, 63, 35, 49, 84, 64, 6, 0, 0, 63, 51, 97, 62, 0, 98, 0, 176, 127, 255, 53, 0, 52, 120, 8, 158, 62, 178, 38, 92, 64, 108, 131, 236, 62, 51, 97, 62, 0, 98, 0, 176, 127, 127, 53, 0, 50, 79, 35, 201, 62, 35, 49, 84, 64, 30, 131, 22, 63, 51, 97, 62, 0, 98, 0, 176, 127, 127, 53, 0, 52, 82, 35, 201, 62, 178, 38, 92, 64, 92, 35, 201, 62, 51, 97, 62, 0, 98, 0, 176, 127, 255, 53, 0, 50, 1, 0, 0, 63, 35, 49, 84, 64, 6, 0, 0, 63, 62, 80, 76, 0, 98, 0, 176, 127, 255, 53, 0, 52, 93, 131, 236, 62, 92, 126, 74, 64, 203, 251, 48, 63, 62, 80, 76, 0, 98, 0, 176, 127, 127, 53, 0, 53, 23, 131, 22, 63, 92, 126, 74, 64, 30, 131, 22, 63, 62, 80, 76, 0, 98, 0, 176, 127, 255, 53, 0, 53, 79, 35, 201, 62, 35, 49, 84, 64, 30, 131, 22, 63, 62, 80, 76, 0, 98, 0, 176, 127, 127, 53, 0, 52, 23, 131, 22, 63, 92, 126, 74, 64, 30, 131, 22, 63, 71, 59, 86, 0, 98, 0, 176, 127, 255, 53, 0, 53, 83, 102, 3, 63, 201, 109, 63, 64, 82, 167, 68, 63, 71, 59, 86, 0, 98, 0, 176, 127, 127, 53, 0, 54, 119, 61, 39, 63, 201, 109, 63, 64, 122, 61, 39, 63, 71, 59, 86, 0, 98, 0, 176, 127, 255, 53, 0, 54, 93, 131, 236, 62, 92, 126, 74, 64, 203, 251, 48, 63, 71, 59, 86, 0, 98, 0, 176, 127, 127, 53, 0, 53, 119, 61, 39, 63, 201, 109, 63, 64, 122, 61, 39, 63, 77, 36, 93, 0, 98, 0, 176, 127, 255, 53, 0, 54, 61, 126, 11, 63, 66, 108, 51, 64, 45, 196, 80, 63, 77, 36, 93, 0, 98, 0, 176, 127, 127, 53, 0, 55, 132, 138, 49, 63, 66, 108, 51, 64, 138, 138, 49, 63, 77, 36, 93, 0, 98, 0, 176, 127, 255, 53, 0, 55, 83, 102, 3, 63, 201, 109, 63, 64, 82, 167, 68, 63, 77, 36, 93, 0, 98, 0, 176, 127, 127, 53, 0, 54, 132, 138, 49, 63, 66, 108, 51, 64, 138, 138, 49, 63, 80, 12, 97, 0, 98, 0, 176, 127, 255, 53, 0, 55, 46, 82, 43, 63, 230, 239, 38, 64, 138, 250, 60, 63, 80, 12, 97, 0, 98, 0, 176, 127, 223, 53, 0, 56, 244, 4, 53, 63, 230, 239, 38, 64, 251, 4, 53, 63, 80, 12, 97, 0, 98, 0, 176, 127, 255, 53, 0, 56, 103, 159, 33, 63, 230, 239, 38, 64, 26, 240, 68, 63, 80, 12, 97, 0, 98, 0, 176, 127, 191, 53, 0, 56, 160, 236, 23, 63, 230, 239, 38, 64, 170, 229, 76, 63, 80, 12, 97, 0, 98, 0, 176, 127, 159, 53, 0, 56, 218, 57, 14, 63, 230, 239, 38, 64, 57, 219, 84, 63, 80, 12, 97, 0, 98, 0, 176, 127, 127, 53, 0, 56, 61, 126, 11, 63, 66, 108, 51, 64, 45, 196, 80, 63, 80, 12, 97, 0, 98, 0, 176, 127, 127, 53, 0, 55, 186, 66, 13, 62, 22, 181, 101, 64, 209, 66, 13, 62, 7, 126, 9, 0, 98, 0, 176, 127, 255, 53, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 7, 126, 9, 0, 98, 0, 176, 127, 191, 53, 0, 0, 189, 249, 221, 61, 22, 181, 101, 64, 244, 26, 38, 62, 7, 126, 9, 0, 98, 0, 176, 127, 127, 53, 0, 44, 160, 236, 23, 63, 230, 239, 38, 64, 170, 229, 76, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 0, 56, 243, 138, 13, 63, 171, 41, 244, 63, 118, 213, 83, 63, 80, 0, 98, 0, 98, 0, 176, 127, 127, 53, 32, 56, 204, 49, 23, 63, 171, 41, 244, 63, 176, 233, 75, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 32, 56, 218, 57, 14, 63, 230, 239, 38, 64, 57, 219, 84, 63, 80, 0, 98, 0, 98, 0, 176, 127, 127, 53, 0, 56, 186, 66, 13, 62, 22, 181, 101, 64, 209, 66, 13, 62, 23, 121, 28, 0, 98, 0, 176, 127, 255, 53, 0, 44, 210, 181, 89, 62, 190, 16, 98, 64, 208, 233, 162, 62, 23, 121, 28, 0, 98, 0, 176, 127, 127, 53, 0, 48, 218, 139, 138, 62, 190, 16, 98, 64, 227, 139, 138, 62, 23, 121, 28, 0, 98, 0, 176, 127, 255, 53, 0, 48, 189, 249, 221, 61, 22, 181, 101, 64, 244, 26, 38, 62, 23, 121, 28, 0, 98, 0, 176, 127, 127, 53, 0, 44, 61, 126, 11, 63, 66, 108, 51, 64, 45, 196, 80, 63, 57, 36, 107, 0, 112, 0, 197, 127, 127, 53, 0, 55, 246, 4, 181, 62, 201, 109, 63, 64, 127, 130, 90, 63, 57, 36, 107, 0, 112, 0, 197, 127, 255, 52, 0, 54, 70, 43, 192, 62, 66, 108, 51, 64, 251, 247, 103, 63, 57, 36, 107, 0, 112, 0, 197, 127, 255, 52, 0, 55, 83, 102, 3, 63, 201, 109, 63, 64, 82, 167, 68, 63, 57, 36, 107, 0, 112, 0, 197, 127, 127, 53, 0, 54, 61, 126, 11, 63, 66, 108, 51, 64, 45, 196, 80, 63, 59, 12, 111, 0, 112, 0, 197, 127, 127, 53, 0, 55, 70, 41, 3, 63, 230, 239, 38, 64, 68, 197, 90, 63, 59, 12, 111, 0, 112, 0, 197, 127, 95, 53, 0, 56, 218, 57, 14, 63, 230, 239, 38, 64, 57, 219, 84, 63, 59, 12, 111, 0, 112, 0, 197, 127, 127, 53, 0, 56, 100, 49, 240, 62, 230, 239, 38, 64, 80, 175, 96, 63, 59, 12, 111, 0, 112, 0, 197, 127, 63, 53, 0, 56, 60, 16, 218, 62, 230, 239, 38, 64, 91, 153, 102, 63, 59, 12, 111, 0, 112, 0, 197, 127, 31, 53, 0, 56, 20, 239, 195, 62, 230, 239, 38, 64, 102, 131, 108, 63, 59, 12, 111, 0, 112, 0, 197, 127, 255, 52, 0, 56, 70, 43, 192, 62, 66, 108, 51, 64, 251, 247, 103, 63, 59, 12, 111, 0, 112, 0, 197, 127, 255, 52, 0, 55, 189, 249, 221, 61, 22, 181, 101, 64, 244, 26, 38, 62, 5, 126, 11, 0, 112, 0, 197, 127, 127, 53, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 5, 126, 11, 0, 112, 0, 197, 127, 63, 53, 0, 0, 64, 230, 152, 61, 22, 181, 101, 64, 246, 144, 56, 62, 5, 126, 11, 0, 112, 0, 197, 127, 255, 52, 0, 44, 60, 16, 218, 62, 230, 239, 38, 64, 91, 153, 102, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 0, 56, 32, 254, 194, 62, 171, 41, 244, 63, 139, 96, 107, 63, 59, 0, 112, 0, 112, 0, 197, 127, 255, 52, 32, 56, 18, 4, 217, 62, 171, 41, 244, 63, 198, 125, 101, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 32, 56, 20, 239, 195, 62, 230, 239, 38, 64, 102, 131, 108, 63, 59, 0, 112, 0, 112, 0, 197, 127, 255, 52, 0, 56, 189, 249, 221, 61, 22, 181, 101, 64, 244, 26, 38, 62, 17, 121, 32, 0, 112, 0, 197, 127, 127, 53, 0, 44, 32, 246, 21, 62, 190, 16, 98, 64, 2, 5, 181, 62, 17, 121, 32, 0, 112, 0, 197, 127, 255, 52, 0, 48, 210, 181, 89, 62, 190, 16, 98, 64, 208, 233, 162, 62, 17, 121, 32, 0, 112, 0, 197, 127, 127, 53, 0, 48, 64, 230, 152, 61, 22, 181, 101, 64, 246, 144, 56, 62, 17, 121, 32, 0, 112, 0, 197, 127, 255, 52, 0, 44, 210, 181, 89, 62, 190, 16, 98, 64, 208, 233, 162, 62, 28, 111, 52, 0, 112, 0, 197, 127, 127, 53, 0, 48, 206, 181, 89, 62, 178, 38, 92, 64, 88, 102, 3, 63, 28, 111, 52, 0, 112, 0, 197, 127, 255, 52, 0, 50, 120, 8, 158, 62, 178, 38, 92, 64, 108, 131, 236, 62, 28, 111, 52, 0, 112, 0, 197, 127, 127, 53, 0, 50, 32, 246, 21, 62, 190, 16, 98, 64, 2, 5, 181, 62, 28, 111, 52, 0, 112, 0, 197, 127, 255, 52, 0, 48, 79, 35, 201, 62, 35, 49, 84, 64, 30, 131, 22, 63, 38, 97, 71, 0, 112, 0, 197, 127, 127, 53, 0, 52, 206, 181, 89, 62, 178, 38, 92, 64, 88, 102, 3, 63, 38, 97, 71, 0, 112, 0, 197, 127, 255, 52, 0, 50, 211, 139, 138, 62, 35, 49, 84, 64, 122, 61, 39, 63, 38, 97, 71, 0, 112, 0, 197, 127, 255, 52, 0, 52, 120, 8, 158, 62, 178, 38, 92, 64, 108, 131, 236, 62, 38, 97, 71, 0, 112, 0, 197, 127, 127, 53, 0, 50, 79, 35, 201, 62, 35, 49, 84, 64, 30, 131, 22, 63, 46, 80, 86, 0, 112, 0, 197, 127, 127, 53, 0, 52, 190, 233, 162, 62, 92, 126, 74, 64, 81, 167, 68, 63, 46, 80, 86, 0, 112, 0, 197, 127, 255, 52, 0, 53, 93, 131, 236, 62, 92, 126, 74, 64, 203, 251, 48, 63, 46, 80, 86, 0, 112, 0, 197, 127, 127, 53, 0, 53, 211, 139, 138, 62, 35, 49, 84, 64, 122, 61, 39, 63, 46, 80, 86, 0, 112, 0, 197, 127, 255, 52, 0, 52, 93, 131, 236, 62, 92, 126, 74, 64, 203, 251, 48, 63, 52, 59, 98, 0, 112, 0, 197, 127, 127, 53, 0, 53, 246, 4, 181, 62, 201, 109, 63, 64, 127, 130, 90, 63, 52, 59, 98, 0, 112, 0, 197, 127, 255, 52, 0, 54, 83, 102, 3, 63, 201, 109, 63, 64, 82, 167, 68, 63, 52, 59, 98, 0, 112, 0, 197, 127, 127, 53, 0, 54, 190, 233, 162, 62, 92, 126, 74, 64, 81, 167, 68, 63, 52, 59, 98, 0, 112, 0, 197, 127, 255, 52, 0, 53, 211, 139, 138, 62, 35, 49, 84, 64, 122, 61, 39, 63, 23, 97, 77, 0, 121, 0, 220, 127, 255, 52, 0, 52, 180, 249, 221, 61, 178, 38, 92, 64, 70, 126, 11, 63, 23, 97, 77, 0, 121, 0, 220, 127, 127, 52, 0, 50, 173, 66, 13, 62, 35, 49, 84, 64, 139, 138, 49, 63, 23, 97, 77, 0, 121, 0, 220, 127, 127, 52, 0, 52, 206, 181, 89, 62, 178, 38, 92, 64, 88, 102, 3, 63, 23, 97, 77, 0, 121, 0, 220, 127, 255, 52, 0, 50, 190, 233, 162, 62, 92, 126, 74, 64, 81, 167, 68, 63, 28, 80, 94, 0, 121, 0, 220, 127, 255, 52, 0, 53, 173, 66, 13, 62, 35, 49, 84, 64, 139, 138, 49, 63, 28, 80, 94, 0, 121, 0, 220, 127, 127, 52, 0, 52, 202, 26, 38, 62, 92, 126, 74, 64, 44, 196, 80, 63, 28, 80, 94, 0, 121, 0, 220, 127, 127, 52, 0, 53, 211, 139, 138, 62, 35, 49, 84, 64, 122, 61, 39, 63, 28, 80, 94, 0, 121, 0, 220, 127, 255, 52, 0, 52, 190, 233, 162, 62, 92, 126, 74, 64, 81, 167, 68, 63, 32, 59, 107, 0, 121, 0, 220, 127, 255, 52, 0, 53, 215, 144, 56, 62, 201, 109, 63, 64, 253, 247, 103, 63, 32, 59, 107, 0, 121, 0, 220, 127, 127, 52, 0, 54, 246, 4, 181, 62, 201, 109, 63, 64, 127, 130, 90, 63, 32, 59, 107, 0, 121, 0, 220, 127, 255, 52, 0, 54, 202, 26, 38, 62, 92, 126, 74, 64, 44, 196, 80, 63, 32, 59, 107, 0, 121, 0, 220, 127, 127, 52, 0, 53, 246, 4, 181, 62, 201, 109, 63, 64, 127, 130, 90, 63, 35, 36, 116, 0, 121, 0, 220, 127, 255, 52, 0, 54, 14, 239, 67, 62, 66, 108, 51, 64, 178, 65, 118, 63, 35, 36, 116, 0, 121, 0, 220, 127, 127, 52, 0, 55, 70, 43, 192, 62, 66, 108, 51, 64, 251, 247, 103, 63, 35, 36, 116, 0, 121, 0, 220, 127, 255, 52, 0, 55, 215, 144, 56, 62, 201, 109, 63, 64, 253, 247, 103, 63, 35, 36, 116, 0, 121, 0, 220, 127, 127, 52, 0, 54, 70, 43, 192, 62, 66, 108, 51, 64, 251, 247, 103, 63, 36, 12, 120, 0, 121, 0, 220, 127, 255, 52, 0, 55, 6, 236, 171, 62, 230, 239, 38, 64, 190, 39, 112, 63, 36, 12, 120, 0, 121, 0, 220, 127, 223, 52, 0, 56, 20, 239, 195, 62, 230, 239, 38, 64, 102, 131, 108, 63, 36, 12, 120, 0, 121, 0, 220, 127, 255, 52, 0, 56, 249, 232, 147, 62, 230, 239, 38, 64, 22, 204, 115, 63, 36, 12, 120, 0, 121, 0, 220, 127, 191, 52, 0, 56, 216, 203, 119, 62, 230, 239, 38, 64, 110, 112, 119, 63, 36, 12, 120, 0, 121, 0, 220, 127, 159, 52, 0, 56, 189, 197, 71, 62, 230, 239, 38, 64, 198, 20, 123, 63, 36, 12, 120, 0, 121, 0, 220, 127, 127, 52, 0, 56, 14, 239, 67, 62, 66, 108, 51, 64, 178, 65, 118, 63, 36, 12, 120, 0, 121, 0, 220, 127, 127, 52, 0, 55, 64, 230, 152, 61, 22, 181, 101, 64, 246, 144, 56, 62, 3, 126, 11, 0, 121, 0, 220, 127, 255, 52, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 3, 126, 11, 0, 121, 0, 220, 127, 191, 52, 0, 0, 22, 229, 27, 61, 22, 181, 101, 64, 57, 239, 67, 62, 3, 126, 11, 0, 121, 0, 220, 127, 127, 52, 0, 44, 216, 203, 119, 62, 230, 239, 38, 64, 110, 112, 119, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 0, 56, 18, 208, 70, 62, 171, 41, 244, 63, 1, 224, 121, 63, 36, 0, 121, 0, 121, 0, 220, 127, 127, 52, 32, 56, 29, 155, 118, 62, 171, 41, 244, 63, 36, 64, 118, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 32, 56, 189, 197, 71, 62, 230, 239, 38, 64, 198, 20, 123, 63, 36, 0, 121, 0, 121, 0, 220, 127, 127, 52, 0, 56, 64, 230, 152, 61, 22, 181, 101, 64, 246, 144, 56, 62, 10, 121, 35, 0, 121, 0, 220, 127, 255, 52, 0, 44, 62, 230, 152, 61, 190, 16, 98, 64, 89, 43, 192, 62, 10, 121, 35, 0, 121, 0, 220, 127, 127, 52, 0, 48, 32, 246, 21, 62, 190, 16, 98, 64, 2, 5, 181, 62, 10, 121, 35, 0, 121, 0, 220, 127, 255, 52, 0, 48, 22, 229, 27, 61, 22, 181, 101, 64, 57, 239, 67, 62, 10, 121, 35, 0, 121, 0, 220, 127, 127, 52, 0, 44, 206, 181, 89, 62, 178, 38, 92, 64, 88, 102, 3, 63, 17, 111, 57, 0, 121, 0, 220, 127, 255, 52, 0, 50, 62, 230, 152, 61, 190, 16, 98, 64, 89, 43, 192, 62, 17, 111, 57, 0, 121, 0, 220, 127, 127, 52, 0, 48, 180, 249, 221, 61, 178, 38, 92, 64, 70, 126, 11, 63, 17, 111, 57, 0, 121, 0, 220, 127, 127, 52, 0, 50, 32, 246, 21, 62, 190, 16, 98, 64, 2, 5, 181, 62, 17, 111, 57, 0, 121, 0, 220, 127, 255, 52, 0, 48, 14, 239, 67, 62, 66, 108, 51, 64, 178, 65, 118, 63, 12, 12, 125, 0, 126, 0, 244, 127, 127, 52, 0, 55, 76, 212, 21, 62, 230, 239, 38, 64, 150, 79, 124, 63, 12, 12, 125, 0, 126, 0, 244, 127, 95, 52, 0, 56, 189, 197, 71, 62, 230, 239, 38, 64, 198, 20, 123, 63, 12, 12, 125, 0, 126, 0, 244, 127, 127, 52, 0, 56, 183, 197, 199, 61, 230, 239, 38, 64, 102, 138, 125, 63, 12, 12, 125, 0, 126, 0, 244, 127, 63, 52, 0, 56, 169, 197, 71, 61, 230, 239, 38, 64, 54, 197, 126, 63, 12, 12, 125, 0, 126, 0, 244, 127, 31, 52, 0, 56, 217, 124, 215, 179, 230, 239, 38, 64, 3, 0, 128, 63, 12, 12, 125, 0, 126, 0, 244, 127, 255, 51, 0, 56, 217, 124, 183, 179, 66, 108, 51, 64, 192, 20, 123, 63, 12, 12, 125, 0, 126, 0, 244, 127, 255, 51, 0, 55, 22, 229, 27, 61, 22, 181, 101, 64, 57, 239, 67, 62, 1, 126, 12, 0, 126, 0, 244, 127, 127, 52, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 1, 126, 12, 0, 126, 0, 244, 127, 63, 52, 0, 0, 144, 205, 247, 177, 22, 181, 101, 64, 229, 197, 71, 62, 1, 126, 12, 0, 126, 0, 244, 127, 255, 51, 0, 44, 169, 197, 71, 61, 230, 239, 38, 64, 54, 197, 126, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 0, 56, 217, 124, 207, 179, 171, 41, 244, 63, 52, 197, 126, 63, 12, 0, 126, 0, 126, 0, 244, 127, 255, 51, 32, 56, 255, 207, 70, 61, 171, 41, 244, 63, 232, 139, 125, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 32, 56, 217, 124, 215, 179, 230, 239, 38, 64, 3, 0, 128, 63, 12, 0, 126, 0, 126, 0, 244, 127, 255, 51, 0, 56, 62, 230, 152, 61, 190, 16, 98, 64, 89, 43, 192, 62, 3, 121, 36, 0, 126, 0, 244, 127, 127, 52, 0, 48, 144, 205, 247, 177, 22, 181, 101, 64, 229, 197, 71, 62, 3, 121, 36, 0, 126, 0, 244, 127, 255, 51, 0, 44, 78, 6, 49, 51, 190, 16, 98, 64, 35, 239, 195, 62, 3, 121, 36, 0, 126, 0, 244, 127, 255, 51, 0, 48, 22, 229, 27, 61, 22, 181, 101, 64, 57, 239, 67, 62, 3, 121, 36, 0, 126, 0, 244, 127, 127, 52, 0, 44, 180, 249, 221, 61, 178, 38, 92, 64, 70, 126, 11, 63, 5, 111, 59, 0, 126, 0, 244, 127, 127, 52, 0, 50, 78, 6, 49, 51, 190, 16, 98, 64, 35, 239, 195, 62, 5, 111, 59, 0, 126, 0, 244, 127, 255, 51, 0, 48, 156, 12, 226, 50, 178, 38, 92, 64, 225, 57, 14, 63, 5, 111, 59, 0, 126, 0, 244, 127, 255, 51, 0, 50, 62, 230, 152, 61, 190, 16, 98, 64, 89, 43, 192, 62, 5, 111, 59, 0, 126, 0, 244, 127, 127, 52, 0, 48, 180, 249, 221, 61, 178, 38, 92, 64, 70, 126, 11, 63, 7, 97, 80, 0, 126, 0, 244, 127, 127, 52, 0, 50, 100, 243, 221, 178, 35, 49, 84, 64, 248, 4, 53, 63, 7, 97, 80, 0, 126, 0, 244, 127, 255, 51, 0, 52, 173, 66, 13, 62, 35, 49, 84, 64, 139, 138, 49, 63, 7, 97, 80, 0, 126, 0, 244, 127, 127, 52, 0, 52, 156, 12, 226, 50, 178, 38, 92, 64, 225, 57, 14, 63, 7, 97, 80, 0, 126, 0, 244, 127, 255, 51, 0, 50, 202, 26, 38, 62, 92, 126, 74, 64, 44, 196, 80, 63, 9, 80, 97, 0, 126, 0, 244, 127, 127, 52, 0, 53, 100, 243, 221, 178, 35, 49, 84, 64, 248, 4, 53, 63, 9, 80, 97, 0, 126, 0, 244, 127, 255, 51, 0, 52, 217, 124, 183, 179, 92, 126, 74, 64, 51, 219, 84, 63, 9, 80, 97, 0, 126, 0, 244, 127, 255, 51, 0, 53, 173, 66, 13, 62, 35, 49, 84, 64, 139, 138, 49, 63, 9, 80, 97, 0, 126, 0, 244, 127, 127, 52, 0, 52, 202, 26, 38, 62, 92, 126, 74, 64, 44, 196, 80, 63, 10, 59, 111, 0, 126, 0, 244, 127, 127, 52, 0, 53, 39, 131, 136, 51, 201, 109, 63, 64, 100, 131, 108, 63, 10, 59, 111, 0, 126, 0, 244, 127, 255, 51, 0, 54, 215, 144, 56, 62, 201, 109, 63, 64, 253, 247, 103, 63, 10, 59, 111, 0, 126, 0, 244, 127, 127, 52, 0, 54, 217, 124, 183, 179, 92, 126, 74, 64, 51, 219, 84, 63, 10, 59, 111, 0, 126, 0, 244, 127, 255, 51, 0, 53, 215, 144, 56, 62, 201, 109, 63, 64, 253, 247, 103, 63, 11, 36, 120, 0, 126, 0, 244, 127, 127, 52, 0, 54, 217, 124, 183, 179, 66, 108, 51, 64, 192, 20, 123, 63, 11, 36, 120, 0, 126, 0, 244, 127, 255, 51, 0, 55, 14, 239, 67, 62, 66, 108, 51, 64, 178, 65, 118, 63, 11, 36, 120, 0, 126, 0, 244, 127, 127, 52, 0, 55, 39, 131, 136, 51, 201, 109, 63, 64, 100, 131, 108, 63, 11, 36, 120, 0, 126, 0, 244, 127, 255, 51, 0, 54, 156, 12, 226, 50, 178, 38, 92, 64, 225, 57, 14, 63, 249, 97, 80, 0, 126, 0, 12, 127, 255, 51, 0, 50, 177, 66, 13, 190, 35, 49, 84, 64, 138, 138, 49, 63, 249, 97, 80, 0, 126, 0, 12, 127, 255, 50, 0, 52, 100, 243, 221, 178, 35, 49, 84, 64, 248, 4, 53, 63, 249, 97, 80, 0, 126, 0, 12, 127, 255, 51, 0, 52, 172, 249, 221, 189, 178, 38, 92, 64, 70, 126, 11, 63, 249, 97, 80, 0, 126, 0, 12, 127, 0, 51, 0, 50, 100, 243, 221, 178, 35, 49, 84, 64, 248, 4, 53, 63, 247, 80, 97, 0, 126, 0, 12, 127, 255, 51, 0, 52, 213, 26, 38, 190, 92, 126, 74, 64, 42, 196, 80, 63, 247, 80, 97, 0, 126, 0, 12, 127, 255, 50, 0, 53, 217, 124, 183, 179, 92, 126, 74, 64, 51, 219, 84, 63, 247, 80, 97, 0, 126, 0, 12, 127, 255, 51, 0, 53, 177, 66, 13, 190, 35, 49, 84, 64, 138, 138, 49, 63, 247, 80, 97, 0, 126, 0, 12, 127, 255, 50, 0, 52, 217, 124, 183, 179, 92, 126, 74, 64, 51, 219, 84, 63, 246, 59, 111, 0, 126, 0, 12, 127, 255, 51, 0, 53, 207, 144, 56, 190, 201, 109, 63, 64, 253, 247, 103, 63, 246, 59, 111, 0, 126, 0, 12, 127, 0, 51, 0, 54, 39, 131, 136, 51, 201, 109, 63, 64, 100, 131, 108, 63, 246, 59, 111, 0, 126, 0, 12, 127, 255, 51, 0, 54, 213, 26, 38, 190, 92, 126, 74, 64, 42, 196, 80, 63, 246, 59, 111, 0, 126, 0, 12, 127, 255, 50, 0, 53, 39, 131, 136, 51, 201, 109, 63, 64, 100, 131, 108, 63, 245, 36, 120, 0, 126, 0, 12, 127, 255, 51, 0, 54, 24, 239, 67, 190, 66, 108, 51, 64, 176, 65, 118, 63, 245, 36, 120, 0, 126, 0, 12, 127, 255, 50, 0, 55, 217, 124, 183, 179, 66, 108, 51, 64, 192, 20, 123, 63, 245, 36, 120, 0, 126, 0, 12, 127, 255, 51, 0, 55, 207, 144, 56, 190, 201, 109, 63, 64, 253, 247, 103, 63, 245, 36, 120, 0, 126, 0, 12, 127, 0, 51, 0, 54, 217, 124, 183, 179, 66, 108, 51, 64, 192, 20, 123, 63, 244, 12, 125, 0, 126, 0, 12, 127, 255, 51, 0, 55, 222, 197, 71, 189, 230, 239, 38, 64, 54, 197, 126, 63, 244, 12, 125, 0, 126, 0, 12, 127, 191, 51, 0, 56, 217, 124, 215, 179, 230, 239, 38, 64, 3, 0, 128, 63, 244, 12, 125, 0, 126, 0, 12, 127, 255, 51, 0, 56, 209, 197, 199, 189, 230, 239, 38, 64, 101, 138, 125, 63, 244, 12, 125, 0, 126, 0, 12, 127, 127, 51, 0, 56, 89, 212, 21, 190, 230, 239, 38, 64, 148, 79, 124, 63, 244, 12, 125, 0, 126, 0, 12, 127, 63, 51, 0, 56, 202, 197, 71, 190, 230, 239, 38, 64, 196, 20, 123, 63, 244, 12, 125, 0, 126, 0, 12, 127, 255, 50, 0, 56, 24, 239, 67, 190, 66, 108, 51, 64, 176, 65, 118, 63, 244, 12, 125, 0, 126, 0, 12, 127, 255, 50, 0, 55, 144, 205, 247, 177, 22, 181, 101, 64, 229, 197, 71, 62, 255, 126, 12, 0, 126, 0, 12, 127, 255, 51, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 255, 126, 12, 0, 126, 0, 12, 127, 127, 51, 0, 0, 25, 229, 27, 189, 22, 181, 101, 64, 55, 239, 67, 62, 255, 126, 12, 0, 126, 0, 12, 127, 0, 51, 0, 44, 89, 212, 21, 190, 230, 239, 38, 64, 148, 79, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 0, 56, 30, 208, 70, 190, 171, 41, 244, 63, 255, 223, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 50, 32, 56, 24, 28, 21, 190, 171, 41, 244, 63, 76, 25, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 32, 56, 202, 197, 71, 190, 230, 239, 38, 64, 196, 20, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 50, 0, 56, 78, 6, 49, 51, 190, 16, 98, 64, 35, 239, 195, 62, 253, 121, 36, 0, 126, 0, 12, 127, 255, 51, 0, 48, 25, 229, 27, 189, 22, 181, 101, 64, 55, 239, 67, 62, 253, 121, 36, 0, 126, 0, 12, 127, 0, 51, 0, 44, 50, 230, 152, 189, 190, 16, 98, 64, 87, 43, 192, 62, 253, 121, 36, 0, 126, 0, 12, 127, 0, 51, 0, 48, 144, 205, 247, 177, 22, 181, 101, 64, 229, 197, 71, 62, 253, 121, 36, 0, 126, 0, 12, 127, 255, 51, 0, 44, 78, 6, 49, 51, 190, 16, 98, 64, 35, 239, 195, 62, 251, 111, 59, 0, 126, 0, 12, 127, 255, 51, 0, 48, 172, 249, 221, 189, 178, 38, 92, 64, 70, 126, 11, 63, 251, 111, 59, 0, 126, 0, 12, 127, 0, 51, 0, 50, 156, 12, 226, 50, 178, 38, 92, 64, 225, 57, 14, 63, 251, 111, 59, 0, 126, 0, 12, 127, 255, 51, 0, 50, 50, 230, 152, 189, 190, 16, 98, 64, 87, 43, 192, 62, 251, 111, 59, 0, 126, 0, 12, 127, 0, 51, 0, 48, 24, 239, 67, 190, 66, 108, 51, 64, 176, 65, 118, 63, 220, 12, 120, 0, 121, 0, 36, 127, 255, 50, 0, 55, 229, 203, 119, 190, 230, 239, 38, 64, 108, 112, 119, 63, 220, 12, 120, 0, 121, 0, 36, 127, 191, 50, 0, 56, 202, 197, 71, 190, 230, 239, 38, 64, 196, 20, 123, 63, 220, 12, 120, 0, 121, 0, 36, 127, 255, 50, 0, 56, 0, 233, 147, 190, 230, 239, 38, 64, 20, 204, 115, 63, 220, 12, 120, 0, 121, 0, 36, 127, 127, 50, 0, 56, 13, 236, 171, 190, 230, 239, 38, 64, 188, 39, 112, 63, 220, 12, 120, 0, 121, 0, 36, 127, 63, 50, 0, 56, 26, 239, 195, 190, 230, 239, 38, 64, 99, 131, 108, 63, 220, 12, 120, 0, 121, 0, 36, 127, 255, 49, 0, 56, 74, 43, 192, 190, 66, 108, 51, 64, 248, 247, 103, 63, 220, 12, 120, 0, 121, 0, 36, 127, 255, 49, 0, 55, 25, 229, 27, 189, 22, 181, 101, 64, 55, 239, 67, 62, 253, 126, 11, 0, 121, 0, 36, 127, 0, 51, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 253, 126, 11, 0, 121, 0, 36, 127, 128, 50, 0, 0, 63, 230, 152, 189, 22, 181, 101, 64, 243, 144, 56, 62, 253, 126, 11, 0, 121, 0, 36, 127, 0, 50, 0, 44, 13, 236, 171, 190, 230, 239, 38, 64, 188, 39, 112, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 0, 56, 38, 254, 194, 190, 171, 41, 244, 63, 136, 96, 107, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 49, 32, 56, 160, 24, 171, 190, 171, 41, 244, 63, 102, 0, 111, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 32, 56, 26, 239, 195, 190, 230, 239, 38, 64, 99, 131, 108, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 49, 0, 56, 25, 229, 27, 189, 22, 181, 101, 64, 55, 239, 67, 62, 246, 121, 35, 0, 121, 0, 36, 127, 0, 51, 0, 44, 25, 246, 21, 190, 190, 16, 98, 64, 255, 4, 181, 62, 246, 121, 35, 0, 121, 0, 36, 127, 0, 50, 0, 48, 50, 230, 152, 189, 190, 16, 98, 64, 87, 43, 192, 62, 246, 121, 35, 0, 121, 0, 36, 127, 0, 51, 0, 48, 63, 230, 152, 189, 22, 181, 101, 64, 243, 144, 56, 62, 246, 121, 35, 0, 121, 0, 36, 127, 0, 50, 0, 44, 50, 230, 152, 189, 190, 16, 98, 64, 87, 43, 192, 62, 239, 111, 57, 0, 121, 0, 36, 127, 0, 51, 0, 48, 202, 181, 89, 190, 178, 38, 92, 64, 88, 102, 3, 63, 239, 111, 57, 0, 121, 0, 36, 127, 0, 50, 0, 50, 172, 249, 221, 189, 178, 38, 92, 64, 70, 126, 11, 63, 239, 111, 57, 0, 121, 0, 36, 127, 0, 51, 0, 50, 25, 246, 21, 190, 190, 16, 98, 64, 255, 4, 181, 62, 239, 111, 57, 0, 121, 0, 36, 127, 0, 50, 0, 48, 172, 249, 221, 189, 178, 38, 92, 64, 70, 126, 11, 63, 233, 97, 77, 0, 121, 0, 36, 127, 0, 51, 0, 50, 212, 139, 138, 190, 35, 49, 84, 64, 121, 61, 39, 63, 233, 97, 77, 0, 121, 0, 36, 127, 0, 50, 0, 52, 177, 66, 13, 190, 35, 49, 84, 64, 138, 138, 49, 63, 233, 97, 77, 0, 121, 0, 36, 127, 255, 50, 0, 52, 202, 181, 89, 190, 178, 38, 92, 64, 88, 102, 3, 63, 233, 97, 77, 0, 121, 0, 36, 127, 0, 50, 0, 50, 177, 66, 13, 190, 35, 49, 84, 64, 138, 138, 49, 63, 228, 80, 94, 0, 121, 0, 36, 127, 255, 50, 0, 52, 193, 233, 162, 190, 92, 126, 74, 64, 76, 167, 68, 63, 228, 80, 94, 0, 121, 0, 36, 127, 255, 49, 0, 53, 213, 26, 38, 190, 92, 126, 74, 64, 42, 196, 80, 63, 228, 80, 94, 0, 121, 0, 36, 127, 255, 50, 0, 53, 212, 139, 138, 190, 35, 49, 84, 64, 121, 61, 39, 63, 228, 80, 94, 0, 121, 0, 36, 127, 0, 50, 0, 52, 213, 26, 38, 190, 92, 126, 74, 64, 42, 196, 80, 63, 224, 59, 107, 0, 121, 0, 36, 127, 255, 50, 0, 53, 241, 4, 181, 190, 201, 109, 63, 64, 127, 130, 90, 63, 224, 59, 107, 0, 121, 0, 36, 127, 0, 50, 0, 54, 207, 144, 56, 190, 201, 109, 63, 64, 253, 247, 103, 63, 224, 59, 107, 0, 121, 0, 36, 127, 0, 51, 0, 54, 193, 233, 162, 190, 92, 126, 74, 64, 76, 167, 68, 63, 224, 59, 107, 0, 121, 0, 36, 127, 255, 49, 0, 53, 207, 144, 56, 190, 201, 109, 63, 64, 253, 247, 103, 63, 221, 36, 116, 0, 121, 0, 36, 127, 0, 51, 0, 54, 74, 43, 192, 190, 66, 108, 51, 64, 248, 247, 103, 63, 221, 36, 116, 0, 121, 0, 36, 127, 255, 49, 0, 55, 24, 239, 67, 190, 66, 108, 51, 64, 176, 65, 118, 63, 221, 36, 116, 0, 121, 0, 36, 127, 255, 50, 0, 55, 241, 4, 181, 190, 201, 109, 63, 64, 127, 130, 90, 63, 221, 36, 116, 0, 121, 0, 36, 127, 0, 50, 0, 54, 193, 233, 162, 190, 92, 126, 74, 64, 76, 167, 68, 63, 210, 80, 86, 0, 112, 0, 59, 127, 255, 49, 0, 53, 78, 35, 201, 190, 35, 49, 84, 64, 28, 131, 22, 63, 210, 80, 86, 0, 112, 0, 59, 127, 0, 49, 0, 52, 92, 131, 236, 190, 92, 126, 74, 64, 197, 251, 48, 63, 210, 80, 86, 0, 112, 0, 59, 127, 0, 49, 0, 53, 212, 139, 138, 190, 35, 49, 84, 64, 121, 61, 39, 63, 210, 80, 86, 0, 112, 0, 59, 127, 0, 50, 0, 52, 193, 233, 162, 190, 92, 126, 74, 64, 76, 167, 68, 63, 204, 59, 98, 0, 112, 0, 59, 127, 255, 49, 0, 53, 80, 102, 3, 191, 201, 109, 63, 64, 81, 167, 68, 63, 204, 59, 98, 0, 112, 0, 59, 127, 0, 49, 0, 54, 241, 4, 181, 190, 201, 109, 63, 64, 127, 130, 90, 63, 204, 59, 98, 0, 112, 0, 59, 127, 0, 50, 0, 54, 92, 131, 236, 190, 92, 126, 74, 64, 197, 251, 48, 63, 204, 59, 98, 0, 112, 0, 59, 127, 0, 49, 0, 53, 241, 4, 181, 190, 201, 109, 63, 64, 127, 130, 90, 63, 199, 36, 107, 0, 112, 0, 59, 127, 0, 50, 0, 54, 62, 126, 11, 191, 66, 108, 51, 64, 41, 196, 80, 63, 199, 36, 107, 0, 112, 0, 59, 127, 0, 49, 0, 55, 74, 43, 192, 190, 66, 108, 51, 64, 248, 247, 103, 63, 199, 36, 107, 0, 112, 0, 59, 127, 255, 49, 0, 55, 80, 102, 3, 191, 201, 109, 63, 64, 81, 167, 68, 63, 199, 36, 107, 0, 112, 0, 59, 127, 0, 49, 0, 54, 74, 43, 192, 190, 66, 108, 51, 64, 248, 247, 103, 63, 197, 12, 111, 0, 112, 0, 59, 127, 255, 49, 0, 55, 66, 16, 218, 190, 230, 239, 38, 64, 88, 153, 102, 63, 197, 12, 111, 0, 112, 0, 59, 127, 191, 49, 0, 56, 26, 239, 195, 190, 230, 239, 38, 64, 99, 131, 108, 63, 197, 12, 111, 0, 112, 0, 59, 127, 255, 49, 0, 56, 105, 49, 240, 190, 230, 239, 38, 64, 76, 175, 96, 63, 197, 12, 111, 0, 112, 0, 59, 127, 127, 49, 0, 56, 72, 41, 3, 191, 230, 239, 38, 64, 64, 197, 90, 63, 197, 12, 111, 0, 112, 0, 59, 127, 64, 49, 0, 56, 220, 57, 14, 191, 230, 239, 38, 64, 53, 219, 84, 63, 197, 12, 111, 0, 112, 0, 59, 127, 0, 49, 0, 56, 62, 126, 11, 191, 66, 108, 51, 64, 41, 196, 80, 63, 197, 12, 111, 0, 112, 0, 59, 127, 0, 49, 0, 55, 63, 230, 152, 189, 22, 181, 101, 64, 243, 144, 56, 62, 251, 126, 11, 0, 112, 0, 59, 127, 0, 50, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 251, 126, 11, 0, 112, 0, 59, 127, 128, 49, 0, 0, 186, 249, 221, 189, 22, 181, 101, 64, 240, 26, 38, 62, 251, 126, 11, 0, 112, 0, 59, 127, 0, 49, 0, 44, 72, 41, 3, 191, 230, 239, 38, 64, 64, 197, 90, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 0, 56, 244, 138, 13, 191, 171, 41, 244, 63, 114, 213, 83, 63, 197, 0, 112, 0, 112, 0, 59, 127, 0, 49, 32, 56, 252, 135, 2, 191, 171, 41, 244, 63, 56, 184, 89, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 32, 56, 220, 57, 14, 191, 230, 239, 38, 64, 53, 219, 84, 63, 197, 0, 112, 0, 112, 0, 59, 127, 0, 49, 0, 56, 63, 230, 152, 189, 22, 181, 101, 64, 243, 144, 56, 62, 239, 121, 32, 0, 112, 0, 59, 127, 0, 50, 0, 44, 201, 181, 89, 190, 190, 16, 98, 64, 204, 233, 162, 62, 239, 121, 32, 0, 112, 0, 59, 127, 0, 49, 0, 48, 25, 246, 21, 190, 190, 16, 98, 64, 255, 4, 181, 62, 239, 121, 32, 0, 112, 0, 59, 127, 0, 50, 0, 48, 186, 249, 221, 189, 22, 181, 101, 64, 240, 26, 38, 62, 239, 121, 32, 0, 112, 0, 59, 127, 0, 49, 0, 44, 25, 246, 21, 190, 190, 16, 98, 64, 255, 4, 181, 62, 228, 111, 52, 0, 112, 0, 59, 127, 0, 50, 0, 48, 118, 8, 158, 190, 178, 38, 92, 64, 108, 131, 236, 62, 228, 111, 52, 0, 112, 0, 59, 127, 0, 49, 0, 50, 202, 181, 89, 190, 178, 38, 92, 64, 88, 102, 3, 63, 228, 111, 52, 0, 112, 0, 59, 127, 0, 50, 0, 50, 201, 181, 89, 190, 190, 16, 98, 64, 204, 233, 162, 62, 228, 111, 52, 0, 112, 0, 59, 127, 0, 49, 0, 48, 202, 181, 89, 190, 178, 38, 92, 64, 88, 102, 3, 63, 218, 97, 71, 0, 112, 0, 59, 127, 0, 50, 0, 50, 78, 35, 201, 190, 35, 49, 84, 64, 28, 131, 22, 63, 218, 97, 71, 0, 112, 0, 59, 127, 0, 49, 0, 52, 212, 139, 138, 190, 35, 49, 84, 64, 121, 61, 39, 63, 218, 97, 71, 0, 112, 0, 59, 127, 0, 50, 0, 52, 118, 8, 158, 190, 178, 38, 92, 64, 108, 131, 236, 62, 218, 97, 71, 0, 112, 0, 59, 127, 0, 49, 0, 50, 186, 249, 221, 189, 22, 181, 101, 64, 240, 26, 38, 62, 249, 126, 9, 0, 98, 0, 80, 127, 0, 49, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 249, 126, 9, 0, 98, 0, 80, 127, 128, 48, 0, 0, 183, 66, 13, 190, 22, 181, 101, 64, 204, 66, 13, 62, 249, 126, 9, 0, 98, 0, 80, 127, 0, 48, 0, 44, 46, 82, 43, 191, 230, 239, 38, 64, 134, 250, 60, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 0, 56, 88, 38, 52, 191, 171, 41, 244, 63, 90, 38, 52, 63, 176, 0, 98, 0, 98, 0, 80, 127, 255, 47, 32, 56, 127, 127, 42, 191, 171, 41, 244, 63, 32, 18, 60, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 32, 56, 245, 4, 53, 191, 230, 239, 38, 64, 246, 4, 53, 63, 176, 0, 98, 0, 98, 0, 80, 127, 255, 47, 0, 56, 186, 249, 221, 189, 22, 181, 101, 64, 240, 26, 38, 62, 233, 121, 28, 0, 98, 0, 80, 127, 0, 49, 0, 44, 212, 139, 138, 190, 190, 16, 98, 64, 222, 139, 138, 62, 233, 121, 28, 0, 98, 0, 80, 127, 0, 48, 0, 48, 201, 181, 89, 190, 190, 16, 98, 64, 204, 233, 162, 62, 233, 121, 28, 0, 98, 0, 80, 127, 0, 49, 0, 48, 183, 66, 13, 190, 22, 181, 101, 64, 204, 66, 13, 62, 233, 121, 28, 0, 98, 0, 80, 127, 0, 48, 0, 44, 201, 181, 89, 190, 190, 16, 98, 64, 204, 233, 162, 62, 218, 111, 46, 0, 98, 0, 80, 127, 0, 49, 0, 48, 79, 35, 201, 190, 178, 38, 92, 64, 91, 35, 201, 62, 218, 111, 46, 0, 98, 0, 80, 127, 0, 48, 0, 50, 118, 8, 158, 190, 178, 38, 92, 64, 108, 131, 236, 62, 218, 111, 46, 0, 98, 0, 80, 127, 0, 49, 0, 50, 212, 139, 138, 190, 190, 16, 98, 64, 222, 139, 138, 62, 218, 111, 46, 0, 98, 0, 80, 127, 0, 48, 0, 48, 118, 8, 158, 190, 178, 38, 92, 64, 108, 131, 236, 62, 205, 97, 62, 0, 98, 0, 80, 127, 0, 49, 0, 50, 0, 0, 0, 191, 35, 49, 84, 64, 4, 0, 0, 63, 205, 97, 62, 0, 98, 0, 80, 127, 0, 48, 0, 52, 78, 35, 201, 190, 35, 49, 84, 64, 28, 131, 22, 63, 205, 97, 62, 0, 98, 0, 80, 127, 0, 49, 0, 52, 79, 35, 201, 190, 178, 38, 92, 64, 91, 35, 201, 62, 205, 97, 62, 0, 98, 0, 80, 127, 0, 48, 0, 50, 78, 35, 201, 190, 35, 49, 84, 64, 28, 131, 22, 63, 194, 80, 76, 0, 98, 0, 80, 127, 0, 49, 0, 52, 21, 131, 22, 191, 92, 126, 74, 64, 23, 131, 22, 63, 194, 80, 76, 0, 98, 0, 80, 127, 255, 47, 0, 53, 92, 131, 236, 190, 92, 126, 74, 64, 197, 251, 48, 63, 194, 80, 76, 0, 98, 0, 80, 127, 0, 49, 0, 53, 0, 0, 0, 191, 35, 49, 84, 64, 4, 0, 0, 63, 194, 80, 76, 0, 98, 0, 80, 127, 0, 48, 0, 52, 92, 131, 236, 190, 92, 126, 74, 64, 197, 251, 48, 63, 185, 59, 86, 0, 98, 0, 80, 127, 0, 49, 0, 53, 115, 61, 39, 191, 201, 109, 63, 64, 121, 61, 39, 63, 185, 59, 86, 0, 98, 0, 80, 127, 0, 48, 0, 54, 80, 102, 3, 191, 201, 109, 63, 64, 81, 167, 68, 63, 185, 59, 86, 0, 98, 0, 80, 127, 0, 49, 0, 54, 21, 131, 22, 191, 92, 126, 74, 64, 23, 131, 22, 63, 185, 59, 86, 0, 98, 0, 80, 127, 255, 47, 0, 53, 80, 102, 3, 191, 201, 109, 63, 64, 81, 167, 68, 63, 179, 36, 93, 0, 98, 0, 80, 127, 0, 49, 0, 54, 131, 138, 49, 191, 66, 108, 51, 64, 133, 138, 49, 63, 179, 36, 93, 0, 98, 0, 80, 127, 255, 47, 0, 55, 62, 126, 11, 191, 66, 108, 51, 64, 41, 196, 80, 63, 179, 36, 93, 0, 98, 0, 80, 127, 0, 49, 0, 55, 115, 61, 39, 191, 201, 109, 63, 64, 121, 61, 39, 63, 179, 36, 93, 0, 98, 0, 80, 127, 0, 48, 0, 54, 62, 126, 11, 191, 66, 108, 51, 64, 41, 196, 80, 63, 176, 12, 97, 0, 98, 0, 80, 127, 0, 49, 0, 55, 162, 236, 23, 191, 230, 239, 38, 64, 166, 229, 76, 63, 176, 12, 97, 0, 98, 0, 80, 127, 192, 48, 0, 56, 220, 57, 14, 191, 230, 239, 38, 64, 53, 219, 84, 63, 176, 12, 97, 0, 98, 0, 80, 127, 0, 49, 0, 56, 104, 159, 33, 191, 230, 239, 38, 64, 22, 240, 68, 63, 176, 12, 97, 0, 98, 0, 80, 127, 127, 48, 0, 56, 46, 82, 43, 191, 230, 239, 38, 64, 134, 250, 60, 63, 176, 12, 97, 0, 98, 0, 80, 127, 63, 48, 0, 56, 245, 4, 53, 191, 230, 239, 38, 64, 246, 4, 53, 63, 176, 12, 97, 0, 98, 0, 80, 127, 255, 47, 0, 56, 131, 138, 49, 191, 66, 108, 51, 64, 133, 138, 49, 63, 176, 12, 97, 0, 98, 0, 80, 127, 255, 47, 0, 55, 0, 0, 0, 191, 35, 49, 84, 64, 4, 0, 0, 63, 180, 80, 62, 0, 80, 0, 98, 127, 0, 48, 0, 52, 194, 251, 48, 191, 92, 126, 74, 64, 95, 131, 236, 62, 180, 80, 62, 0, 80, 0, 98, 127, 0, 46, 0, 53, 21, 131, 22, 191, 92, 126, 74, 64, 23, 131, 22, 63, 180, 80, 62, 0, 80, 0, 98, 127, 255, 47, 0, 53, 23, 131, 22, 191, 35, 49, 84, 64, 86, 35, 201, 62, 180, 80, 62, 0, 80, 0, 98, 127, 0, 46, 0, 52, 21, 131, 22, 191, 92, 126, 74, 64, 23, 131, 22, 63, 170, 59, 71, 0, 80, 0, 98, 127, 255, 47, 0, 53, 75, 167, 68, 191, 201, 109, 63, 64, 86, 102, 3, 63, 170, 59, 71, 0, 80, 0, 98, 127, 0, 46, 0, 54, 115, 61, 39, 191, 201, 109, 63, 64, 121, 61, 39, 63, 170, 59, 71, 0, 80, 0, 98, 127, 0, 48, 0, 54, 194, 251, 48, 191, 92, 126, 74, 64, 95, 131, 236, 62, 170, 59, 71, 0, 80, 0, 98, 127, 0, 46, 0, 53, 115, 61, 39, 191, 201, 109, 63, 64, 121, 61, 39, 63, 163, 36, 77, 0, 80, 0, 98, 127, 0, 48, 0, 54, 37, 196, 80, 191, 66, 108, 51, 64, 62, 126, 11, 63, 163, 36, 77, 0, 80, 0, 98, 127, 0, 46, 0, 55, 131, 138, 49, 191, 66, 108, 51, 64, 133, 138, 49, 63, 163, 36, 77, 0, 80, 0, 98, 127, 255, 47, 0, 55, 75, 167, 68, 191, 201, 109, 63, 64, 86, 102, 3, 63, 163, 36, 77, 0, 80, 0, 98, 127, 0, 46, 0, 54, 131, 138, 49, 191, 66, 108, 51, 64, 133, 138, 49, 63, 159, 12, 80, 0, 80, 0, 98, 127, 255, 47, 0, 55, 132, 250, 60, 191, 230, 239, 38, 64, 48, 82, 43, 63, 159, 12, 80, 0, 80, 0, 98, 127, 127, 47, 0, 56, 245, 4, 53, 191, 230, 239, 38, 64, 246, 4, 53, 63, 159, 12, 80, 0, 80, 0, 98, 127, 255, 47, 0, 56, 20, 240, 68, 191, 230, 239, 38, 64, 105, 159, 33, 63, 159, 12, 80, 0, 80, 0, 98, 127, 255, 46, 0, 56, 163, 229, 76, 191, 230, 239, 38, 64, 162, 236, 23, 63, 159, 12, 80, 0, 80, 0, 98, 127, 127, 46, 0, 56, 50, 219, 84, 191, 230, 239, 38, 64, 220, 57, 14, 63, 159, 12, 80, 0, 80, 0, 98, 127, 0, 46, 0, 56, 37, 196, 80, 191, 66, 108, 51, 64, 62, 126, 11, 63, 159, 12, 80, 0, 80, 0, 98, 127, 0, 46, 0, 55, 183, 66, 13, 190, 22, 181, 101, 64, 204, 66, 13, 62, 247, 126, 7, 0, 80, 0, 98, 127, 0, 48, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 247, 126, 7, 0, 80, 0, 98, 127, 0, 47, 0, 0, 218, 26, 38, 190, 22, 181, 101, 64, 227, 249, 221, 61, 247, 126, 7, 0, 80, 0, 98, 127, 0, 46, 0, 44, 163, 229, 76, 191, 230, 239, 38, 64, 162, 236, 23, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 0, 56, 111, 213, 83, 191, 171, 41, 244, 63, 244, 138, 13, 63, 158, 0, 80, 0, 80, 0, 98, 127, 0, 46, 32, 56, 170, 233, 75, 191, 171, 41, 244, 63, 206, 49, 23, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 32, 56, 50, 219, 84, 191, 230, 239, 38, 64, 220, 57, 14, 63, 158, 0, 80, 0, 80, 0, 98, 127, 0, 46, 0, 56, 212, 139, 138, 190, 190, 16, 98, 64, 222, 139, 138, 62, 228, 121, 23, 0, 80, 0, 98, 127, 0, 48, 0, 48, 218, 26, 38, 190, 22, 181, 101, 64, 227, 249, 221, 61, 228, 121, 23, 0, 80, 0, 98, 127, 0, 46, 0, 44, 193, 233, 162, 190, 190, 16, 98, 64, 220, 181, 89, 62, 228, 121, 23, 0, 80, 0, 98, 127, 0, 46, 0, 48, 183, 66, 13, 190, 22, 181, 101, 64, 204, 66, 13, 62, 228, 121, 23, 0, 80, 0, 98, 127, 0, 48, 0, 44, 212, 139, 138, 190, 190, 16, 98, 64, 222, 139, 138, 62, 210, 111, 38, 0, 80, 0, 98, 127, 0, 48, 0, 48, 95, 131, 236, 190, 178, 38, 92, 64, 129, 8, 158, 62, 210, 111, 38, 0, 80, 0, 98, 127, 0, 46, 0, 50, 79, 35, 201, 190, 178, 38, 92, 64, 91, 35, 201, 62, 210, 111, 38, 0, 80, 0, 98, 127, 0, 48, 0, 50, 193, 233, 162, 190, 190, 16, 98, 64, 220, 181, 89, 62, 210, 111, 38, 0, 80, 0, 98, 127, 0, 46, 0, 48, 79, 35, 201, 190, 178, 38, 92, 64, 91, 35, 201, 62, 194, 97, 51, 0, 80, 0, 98, 127, 0, 48, 0, 50, 23, 131, 22, 191, 35, 49, 84, 64, 86, 35, 201, 62, 194, 97, 51, 0, 80, 0, 98, 127, 0, 46, 0, 52, 0, 0, 0, 191, 35, 49, 84, 64, 4, 0, 0, 63, 194, 97, 51, 0, 80, 0, 98, 127, 0, 48, 0, 52, 95, 131, 236, 190, 178, 38, 92, 64, 129, 8, 158, 62, 194, 97, 51, 0, 80, 0, 98, 127, 0, 46, 0, 50, 83, 153, 102, 191, 230, 239, 38, 64, 64, 16, 218, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 0, 56, 131, 96, 107, 191, 171, 41, 244, 63, 37, 254, 194, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 44, 32, 56, 190, 125, 101, 191, 171, 41, 244, 63, 22, 4, 217, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 32, 56, 94, 131, 108, 191, 230, 239, 38, 64, 25, 239, 195, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 44, 0, 56, 218, 26, 38, 190, 22, 181, 101, 64, 227, 249, 221, 61, 224, 121, 17, 0, 59, 0, 112, 127, 0, 46, 0, 44, 242, 4, 181, 190, 190, 16, 98, 64, 43, 246, 21, 62, 224, 121, 17, 0, 59, 0, 112, 127, 0, 44, 0, 48, 193, 233, 162, 190, 190, 16, 98, 64, 220, 181, 89, 62, 224, 121, 17, 0, 59, 0, 112, 127, 0, 46, 0, 48, 220, 144, 56, 190, 22, 181, 101, 64, 103, 230, 152, 61, 224, 121, 17, 0, 59, 0, 112, 127, 0, 44, 0, 44, 95, 131, 236, 190, 178, 38, 92, 64, 129, 8, 158, 62, 204, 111, 28, 0, 59, 0, 112, 127, 0, 46, 0, 50, 242, 4, 181, 190, 190, 16, 98, 64, 43, 246, 21, 62, 204, 111, 28, 0, 59, 0, 112, 127, 0, 44, 0, 48, 81, 102, 3, 191, 178, 38, 92, 64, 222, 181, 89, 62, 204, 111, 28, 0, 59, 0, 112, 127, 0, 44, 0, 50, 193, 233, 162, 190, 190, 16, 98, 64, 220, 181, 89, 62, 204, 111, 28, 0, 59, 0, 112, 127, 0, 46, 0, 48, 23, 131, 22, 191, 35, 49, 84, 64, 86, 35, 201, 62, 185, 97, 38, 0, 59, 0, 112, 127, 0, 46, 0, 52, 81, 102, 3, 191, 178, 38, 92, 64, 222, 181, 89, 62, 185, 97, 38, 0, 59, 0, 112, 127, 0, 44, 0, 50, 116, 61, 39, 191, 35, 49, 84, 64, 219, 139, 138, 62, 185, 97, 38, 0, 59, 0, 112, 127, 0, 44, 0, 52, 95, 131, 236, 190, 178, 38, 92, 64, 129, 8, 158, 62, 185, 97, 38, 0, 59, 0, 112, 127, 0, 46, 0, 50, 23, 131, 22, 191, 35, 49, 84, 64, 86, 35, 201, 62, 170, 80, 46, 0, 59, 0, 112, 127, 0, 46, 0, 52, 71, 167, 68, 191, 92, 126, 74, 64, 194, 233, 162, 62, 170, 80, 46, 0, 59, 0, 112, 127, 0, 44, 0, 53, 194, 251, 48, 191, 92, 126, 74, 64, 95, 131, 236, 62, 170, 80, 46, 0, 59, 0, 112, 127, 0, 46, 0, 53, 116, 61, 39, 191, 35, 49, 84, 64, 219, 139, 138, 62, 170, 80, 46, 0, 59, 0, 112, 127, 0, 44, 0, 52, 194, 251, 48, 191, 92, 126, 74, 64, 95, 131, 236, 62, 158, 59, 52, 0, 59, 0, 112, 127, 0, 46, 0, 53, 121, 130, 90, 191, 201, 109, 63, 64, 254, 4, 181, 62, 158, 59, 52, 0, 59, 0, 112, 127, 0, 44, 0, 54, 75, 167, 68, 191, 201, 109, 63, 64, 86, 102, 3, 63, 158, 59, 52, 0, 59, 0, 112, 127, 0, 46, 0, 54, 71, 167, 68, 191, 92, 126, 74, 64, 194, 233, 162, 62, 158, 59, 52, 0, 59, 0, 112, 127, 0, 44, 0, 53, 75, 167, 68, 191, 201, 109, 63, 64, 86, 102, 3, 63, 149, 36, 57, 0, 59, 0, 112, 127, 0, 46, 0, 54, 243, 247, 103, 191, 66, 108, 51, 64, 73, 43, 192, 62, 149, 36, 57, 0, 59, 0, 112, 127, 0, 44, 0, 55, 37, 196, 80, 191, 66, 108, 51, 64, 62, 126, 11, 63, 149, 36, 57, 0, 59, 0, 112, 127, 0, 46, 0, 55, 121, 130, 90, 191, 201, 109, 63, 64, 254, 4, 181, 62, 149, 36, 57, 0, 59, 0, 112, 127, 0, 44, 0, 54, 37, 196, 80, 191, 66, 108, 51, 64, 62, 126, 11, 63, 145, 12, 59, 0, 59, 0, 112, 127, 0, 46, 0, 55, 61, 197, 90, 191, 230, 239, 38, 64, 72, 41, 3, 63, 145, 12, 59, 0, 59, 0, 112, 127, 128, 45, 0, 56, 50, 219, 84, 191, 230, 239, 38, 64, 220, 57, 14, 63, 145, 12, 59, 0, 59, 0, 112, 127, 0, 46, 0, 56, 72, 175, 96, 191, 230, 239, 38, 64, 104, 49, 240, 62, 145, 12, 59, 0, 59, 0, 112, 127, 0, 45, 0, 56, 83, 153, 102, 191, 230, 239, 38, 64, 64, 16, 218, 62, 145, 12, 59, 0, 59, 0, 112, 127, 128, 44, 0, 56, 94, 131, 108, 191, 230, 239, 38, 64, 25, 239, 195, 62, 145, 12, 59, 0, 59, 0, 112, 127, 0, 44, 0, 56, 243, 247, 103, 191, 66, 108, 51, 64, 73, 43, 192, 62, 145, 12, 59, 0, 59, 0, 112, 127, 0, 44, 0, 55, 218, 26, 38, 190, 22, 181, 101, 64, 227, 249, 221, 61, 245, 126, 5, 0, 59, 0, 112, 127, 0, 46, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 245, 126, 5, 0, 59, 0, 112, 127, 0, 45, 0, 0, 220, 144, 56, 190, 22, 181, 101, 64, 103, 230, 152, 61, 245, 126, 5, 0, 59, 0, 112, 127, 0, 44, 0, 44, 71, 167, 68, 191, 92, 126, 74, 64, 194, 233, 162, 62, 149, 59, 32, 0, 36, 0, 121, 127, 0, 44, 0, 53, 247, 247, 103, 191, 201, 109, 63, 64, 232, 144, 56, 62, 149, 59, 32, 0, 36, 0, 121, 127, 0, 40, 0, 54, 121, 130, 90, 191, 201, 109, 63, 64, 254, 4, 181, 62, 149, 59, 32, 0, 36, 0, 121, 127, 0, 44, 0, 54, 35, 196, 80, 191, 92, 126, 74, 64, 214, 26, 38, 62, 149, 59, 32, 0, 36, 0, 121, 127, 0, 40, 255, 52, 121, 130, 90, 191, 201, 109, 63, 64, 254, 4, 181, 62, 140, 36, 35, 0, 36, 0, 121, 127, 0, 44, 0, 54, 169, 65, 118, 191, 66, 108, 51, 64, 23, 239, 67, 62, 140, 36, 35, 0, 36, 0, 121, 127, 255, 39, 255, 54, 243, 247, 103, 191, 66, 108, 51, 64, 73, 43, 192, 62, 140, 36, 35, 0, 36, 0, 121, 127, 0, 44, 0, 55, 247, 247, 103, 191, 201, 109, 63, 64, 232, 144, 56, 62, 140, 36, 35, 0, 36, 0, 121, 127, 0, 40, 0, 54, 243, 247, 103, 191, 66, 108, 51, 64, 73, 43, 192, 62, 136, 12, 36, 0, 36, 0, 121, 127, 0, 44, 0, 55, 182, 39, 112, 191, 230, 239, 38, 64, 12, 236, 171, 62, 136, 12, 36, 0, 36, 0, 121, 127, 0, 43, 0, 56, 94, 131, 108, 191, 230, 239, 38, 64, 25, 239, 195, 62, 136, 12, 36, 0, 36, 0, 121, 127, 0, 44, 0, 56, 14, 204, 115, 191, 230, 239, 38, 64, 255, 232, 147, 62, 136, 12, 36, 0, 36, 0, 121, 127, 0, 42, 0, 56, 102, 112, 119, 191, 230, 239, 38, 64, 228, 203, 119, 62, 136, 12, 36, 0, 36, 0, 121, 127, 0, 41, 0, 56, 189, 20, 123, 191, 230, 239, 38, 64, 202, 197, 71, 62, 136, 12, 36, 0, 36, 0, 121, 127, 0, 40, 0, 56, 169, 65, 118, 191, 66, 108, 51, 64, 23, 239, 67, 62, 136, 12, 36, 0, 36, 0, 121, 127, 255, 39, 255, 54, 220, 144, 56, 190, 22, 181, 101, 64, 103, 230, 152, 61, 245, 126, 3, 0, 36, 0, 121, 127, 0, 44, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 245, 126, 3, 0, 36, 0, 121, 127, 0, 42, 0, 0, 31, 239, 67, 190, 22, 181, 101, 64, 104, 229, 27, 61, 245, 126, 3, 0, 36, 0, 121, 127, 0, 40, 0, 44, 102, 112, 119, 191, 230, 239, 38, 64, 228, 203, 119, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 0, 56, 248, 223, 121, 191, 171, 41, 244, 63, 29, 208, 70, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 40, 32, 56, 27, 64, 118, 191, 171, 41, 244, 63, 40, 155, 118, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 32, 56, 189, 20, 123, 191, 230, 239, 38, 64, 202, 197, 71, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 40, 0, 56, 220, 144, 56, 190, 22, 181, 101, 64, 103, 230, 152, 61, 221, 121, 10, 0, 36, 0, 121, 127, 0, 44, 0, 44, 72, 43, 192, 190, 190, 16, 98, 64, 89, 230, 152, 61, 221, 121, 10, 0, 36, 0, 121, 127, 0, 40, 0, 48, 242, 4, 181, 190, 190, 16, 98, 64, 43, 246, 21, 62, 221, 121, 10, 0, 36, 0, 121, 127, 0, 44, 0, 48, 31, 239, 67, 190, 22, 181, 101, 64, 104, 229, 27, 61, 221, 121, 10, 0, 36, 0, 121, 127, 0, 40, 0, 44, 242, 4, 181, 190, 190, 16, 98, 64, 43, 246, 21, 62, 199, 111, 17, 0, 36, 0, 121, 127, 0, 44, 0, 48, 63, 126, 11, 191, 178, 38, 92, 64, 212, 249, 221, 61, 199, 111, 17, 0, 36, 0, 121, 127, 0, 40, 0, 50, 81, 102, 3, 191, 178, 38, 92, 64, 222, 181, 89, 62, 199, 111, 17, 0, 36, 0, 121, 127, 0, 44, 0, 50, 72, 43, 192, 190, 190, 16, 98, 64, 89, 230, 152, 61, 199, 111, 17, 0, 36, 0, 121, 127, 0, 40, 0, 48, 81, 102, 3, 191, 178, 38, 92, 64, 222, 181, 89, 62, 179, 97, 23, 0, 36, 0, 121, 127, 0, 44, 0, 50, 133, 138, 49, 191, 35, 49, 84, 64, 188, 66, 13, 62, 179, 97, 23, 0, 36, 0, 121, 127, 0, 40, 0, 52, 116, 61, 39, 191, 35, 49, 84, 64, 219, 139, 138, 62, 179, 97, 23, 0, 36, 0, 121, 127, 0, 44, 0, 52, 63, 126, 11, 191, 178, 38, 92, 64, 212, 249, 221, 61, 179, 97, 23, 0, 36, 0, 121, 127, 0, 40, 0, 50, 71, 167, 68, 191, 92, 126, 74, 64, 194, 233, 162, 62, 162, 80, 28, 0, 36, 0, 121, 127, 0, 44, 0, 53, 133, 138, 49, 191, 35, 49, 84, 64, 188, 66, 13, 62, 162, 80, 28, 0, 36, 0, 121, 127, 0, 40, 0, 52, 35, 196, 80, 191, 92, 126, 74, 64, 214, 26, 38, 62, 162, 80, 28, 0, 36, 0, 121, 127, 0, 40, 255, 52, 116, 61, 39, 191, 35, 49, 84, 64, 219, 139, 138, 62, 162, 80, 28, 0, 36, 0, 121, 127, 0, 44, 0, 52, 72, 43, 192, 190, 190, 16, 98, 64, 89, 230, 152, 61, 197, 111, 5, 0, 12, 0, 126, 127, 0, 40, 0, 48, 217, 57, 14, 191, 178, 38, 92, 64, 128, 92, 151, 52, 197, 111, 5, 0, 12, 0, 126, 127, 0, 0, 0, 50, 63, 126, 11, 191, 178, 38, 92, 64, 212, 249, 221, 61, 197, 111, 5, 0, 12, 0, 126, 127, 0, 40, 0, 50, 19, 239, 195, 190, 190, 16, 98, 64, 128, 92, 151, 52, 197, 111, 5, 0, 12, 0, 126, 127, 0, 0, 0, 48, 63, 126, 11, 191, 178, 38, 92, 64, 212, 249, 221, 61, 176, 97, 7, 0, 12, 0, 126, 127, 0, 40, 0, 50, 242, 4, 53, 191, 35, 49, 84, 64, 0, 185, 70, 52, 176, 97, 7, 0, 12, 0, 126, 127, 0, 0, 255, 51, 133, 138, 49, 191, 35, 49, 84, 64, 188, 66, 13, 62, 176, 97, 7, 0, 12, 0, 126, 127, 0, 40, 0, 52, 217, 57, 14, 191, 178, 38, 92, 64, 128, 92, 151, 52, 176, 97, 7, 0, 12, 0, 126, 127, 0, 0, 0, 50, 133, 138, 49, 191, 35, 49, 84, 64, 188, 66, 13, 62, 159, 80, 9, 0, 12, 0, 126, 127, 0, 40, 0, 52, 43, 219, 84, 191, 92, 126, 74, 64, 0, 185, 22, 52, 159, 80, 9, 0, 12, 0, 126, 127, 0, 0, 255, 52, 35, 196, 80, 191, 92, 126, 74, 64, 214, 26, 38, 62, 159, 80, 9, 0, 12, 0, 126, 127, 0, 40, 255, 52, 242, 4, 53, 191, 35, 49, 84, 64, 0, 185, 70, 52, 159, 80, 9, 0, 12, 0, 126, 127, 0, 0, 255, 51, 35, 196, 80, 191, 92, 126, 74, 64, 214, 26, 38, 62, 145, 59, 10, 0, 12, 0, 126, 127, 0, 40, 255, 52, 93, 131, 108, 191, 201, 109, 63, 64, 128, 92, 171, 52, 145, 59, 10, 0, 12, 0, 126, 127, 0, 0, 255, 53, 247, 247, 103, 191, 201, 109, 63, 64, 232, 144, 56, 62, 145, 59, 10, 0, 12, 0, 126, 127, 0, 40, 0, 54, 43, 219, 84, 191, 92, 126, 74, 64, 0, 185, 22, 52, 145, 59, 10, 0, 12, 0, 126, 127, 0, 0, 255, 52, 247, 247, 103, 191, 201, 109, 63, 64, 232, 144, 56, 62, 136, 36, 11, 0, 12, 0, 126, 127, 0, 40, 0, 54, 183, 20, 123, 191, 66, 108, 51, 64, 0, 114, 205, 51, 136, 36, 11, 0, 12, 0, 126, 127, 0, 0, 255, 54, 169, 65, 118, 191, 66, 108, 51, 64, 23, 239, 67, 62, 136, 36, 11, 0, 12, 0, 126, 127, 255, 39, 255, 54, 93, 131, 108, 191, 201, 109, 63, 64, 128, 92, 171, 52, 136, 36, 11, 0, 12, 0, 126, 127, 0, 0, 255, 53, 169, 65, 118, 191, 66, 108, 51, 64, 23, 239, 67, 62, 131, 12, 12, 0, 12, 0, 126, 127, 255, 39, 255, 54, 141, 79, 124, 191, 230, 239, 38, 64, 90, 212, 21, 62, 131, 12, 12, 0, 12, 0, 126, 127, 0, 38, 0, 56, 189, 20, 123, 191, 230, 239, 38, 64, 202, 197, 71, 62, 131, 12, 12, 0, 12, 0, 126, 127, 0, 40, 0, 56, 93, 138, 125, 191, 230, 239, 38, 64, 212, 197, 199, 61, 131, 12, 12, 0, 12, 0, 126, 127, 0, 36, 0, 56, 45, 197, 126, 191, 230, 239, 38, 64, 231, 197, 71, 61, 131, 12, 12, 0, 12, 0, 126, 127, 0, 32, 0, 56, 253, 255, 127, 191, 230, 239, 38, 64, 0, 185, 22, 52, 131, 12, 12, 0, 12, 0, 126, 127, 0, 0, 0, 56, 183, 20, 123, 191, 66, 108, 51, 64, 0, 114, 205, 51, 131, 12, 12, 0, 12, 0, 126, 127, 0, 0, 255, 54, 31, 239, 67, 190, 22, 181, 101, 64, 104, 229, 27, 61, 244, 126, 1, 0, 12, 0, 126, 127, 0, 40, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 244, 126, 1, 0, 12, 0, 126, 127, 0, 36, 0, 0, 203, 197, 71, 190, 22, 181, 101, 64, 128, 92, 167, 52, 244, 126, 1, 0, 12, 0, 126, 127, 0, 0, 0, 44, 45, 197, 126, 191, 230, 239, 38, 64, 231, 197, 71, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 0, 56, 44, 197, 126, 191, 171, 41, 244, 63, 0, 185, 10, 52, 130, 0, 12, 0, 12, 0, 126, 127, 0, 0, 32, 56, 223, 139, 125, 191, 171, 41, 244, 63, 55, 208, 70, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 32, 56, 253, 255, 127, 191, 230, 239, 38, 64, 0, 185, 22, 52, 130, 0, 12, 0, 12, 0, 126, 127, 0, 0, 0, 56, 72, 43, 192, 190, 190, 16, 98, 64, 89, 230, 152, 61, 220, 121, 3, 0, 12, 0, 126, 127, 0, 40, 0, 48, 203, 197, 71, 190, 22, 181, 101, 64, 128, 92, 167, 52, 220, 121, 3, 0, 12, 0, 126, 127, 0, 0, 0, 44, 19, 239, 195, 190, 190, 16, 98, 64, 128, 92, 151, 52, 220, 121, 3, 0, 12, 0, 126, 127, 0, 0, 0, 48, 31, 239, 67, 190, 22, 181, 101, 64, 104, 229, 27, 61, 220, 121, 3, 0, 12, 0, 126, 127, 0, 40, 0, 44, 93, 131, 108, 191, 201, 109, 63, 64, 128, 92, 171, 52, 136, 36, 245, 0, 244, 0, 126, 127, 0, 60, 255, 53, 166, 65, 118, 191, 66, 108, 51, 64, 9, 239, 67, 190, 136, 36, 245, 0, 244, 0, 126, 127, 192, 59, 255, 54, 183, 20, 123, 191, 66, 108, 51, 64, 0, 114, 205, 51, 136, 36, 245, 0, 244, 0, 126, 127, 0, 60, 255, 54, 246, 247, 103, 191, 201, 109, 63, 64, 189, 144, 56, 190, 136, 36, 245, 0, 244, 0, 126, 127, 192, 59, 255, 53, 183, 20, 123, 191, 66, 108, 51, 64, 0, 114, 205, 51, 131, 12, 244, 0, 244, 0, 126, 127, 0, 60, 255, 54, 44, 197, 126, 191, 230, 239, 38, 64, 155, 197, 71, 189, 131, 12, 244, 0, 244, 0, 126, 127, 240, 59, 0, 56, 253, 255, 127, 191, 230, 239, 38, 64, 0, 185, 22, 52, 131, 12, 244, 0, 244, 0, 126, 127, 0, 60, 0, 56, 92, 138, 125, 191, 230, 239, 38, 64, 174, 197, 199, 189, 131, 12, 244, 0, 244, 0, 126, 127, 224, 59, 0, 56, 139, 79, 124, 191, 230, 239, 38, 64, 71, 212, 21, 190, 131, 12, 244, 0, 244, 0, 126, 127, 208, 59, 0, 56, 186, 20, 123, 191, 230, 239, 38, 64, 183, 197, 71, 190, 131, 12, 244, 0, 244, 0, 126, 127, 192, 59, 0, 56, 166, 65, 118, 191, 66, 108, 51, 64, 9, 239, 67, 190, 131, 12, 244, 0, 244, 0, 126, 127, 192, 59, 255, 54, 203, 197, 71, 190, 22, 181, 101, 64, 128, 92, 167, 52, 244, 126, 255, 0, 244, 0, 126, 127, 0, 60, 0, 44, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 244, 126, 255, 0, 244, 0, 126, 127, 224, 59, 0, 0, 30, 239, 67, 190, 22, 181, 101, 64, 191, 228, 27, 189, 244, 126, 255, 0, 244, 0, 126, 127, 192, 59, 255, 43, 139, 79, 124, 191, 230, 239, 38, 64, 71, 212, 21, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 0, 56, 245, 223, 121, 191, 171, 41, 244, 63, 12, 208, 70, 190, 130, 0, 244, 0, 244, 0, 126, 127, 192, 59, 32, 56, 66, 25, 123, 191, 171, 41, 244, 63, 7, 28, 21, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 32, 56, 186, 20, 123, 191, 230, 239, 38, 64, 183, 197, 71, 190, 130, 0, 244, 0, 244, 0, 126, 127, 192, 59, 0, 56, 203, 197, 71, 190, 22, 181, 101, 64, 128, 92, 167, 52, 220, 121, 253, 0, 244, 0, 126, 127, 0, 60, 0, 44, 72, 43, 192, 190, 190, 16, 98, 64, 13, 230, 152, 189, 220, 121, 253, 0, 244, 0, 126, 127, 192, 59, 0, 48, 19, 239, 195, 190, 190, 16, 98, 64, 128, 92, 151, 52, 220, 121, 253, 0, 244, 0, 126, 127, 0, 60, 0, 48, 30, 239, 67, 190, 22, 181, 101, 64, 191, 228, 27, 189, 220, 121, 253, 0, 244, 0, 126, 127, 192, 59, 255, 43, 19, 239, 195, 190, 190, 16, 98, 64, 128, 92, 151, 52, 197, 111, 251, 0, 244, 0, 126, 127, 0, 60, 0, 48, 62, 126, 11, 191, 178, 38, 92, 64, 134, 249, 221, 189, 197, 111, 251, 0, 244, 0, 126, 127, 192, 59, 0, 50, 217, 57, 14, 191, 178, 38, 92, 64, 128, 92, 151, 52, 197, 111, 251, 0, 244, 0, 126, 127, 0, 60, 0, 50, 72, 43, 192, 190, 190, 16, 98, 64, 13, 230, 152, 189, 197, 111, 251, 0, 244, 0, 126, 127, 192, 59, 0, 48, 217, 57, 14, 191, 178, 38, 92, 64, 128, 92, 151, 52, 176, 97, 249, 0, 244, 0, 126, 127, 0, 60, 0, 50, 132, 138, 49, 191, 35, 49, 84, 64, 162, 66, 13, 190, 176, 97, 249, 0, 244, 0, 126, 127, 192, 59, 255, 51, 242, 4, 53, 191, 35, 49, 84, 64, 0, 185, 70, 52, 176, 97, 249, 0, 244, 0, 126, 127, 0, 60, 255, 51, 62, 126, 11, 191, 178, 38, 92, 64, 134, 249, 221, 189, 176, 97, 249, 0, 244, 0, 126, 127, 192, 59, 0, 50, 242, 4, 53, 191, 35, 49, 84, 64, 0, 185, 70, 52, 159, 80, 247, 0, 244, 0, 126, 127, 0, 60, 255, 51, 33, 196, 80, 191, 92, 126, 74, 64, 195, 26, 38, 190, 159, 80, 247, 0, 244, 0, 126, 127, 192, 59, 255, 52, 43, 219, 84, 191, 92, 126, 74, 64, 0, 185, 22, 52, 159, 80, 247, 0, 244, 0, 126, 127, 0, 60, 255, 52, 132, 138, 49, 191, 35, 49, 84, 64, 162, 66, 13, 190, 159, 80, 247, 0, 244, 0, 126, 127, 192, 59, 255, 51, 43, 219, 84, 191, 92, 126, 74, 64, 0, 185, 22, 52, 145, 59, 246, 0, 244, 0, 126, 127, 0, 60, 255, 52, 246, 247, 103, 191, 201, 109, 63, 64, 189, 144, 56, 190, 145, 59, 246, 0, 244, 0, 126, 127, 192, 59, 255, 53, 93, 131, 108, 191, 201, 109, 63, 64, 128, 92, 171, 52, 145, 59, 246, 0, 244, 0, 126, 127, 0, 60, 255, 53, 33, 196, 80, 191, 92, 126, 74, 64, 195, 26, 38, 190, 145, 59, 246, 0, 244, 0, 126, 127, 192, 59, 255, 52, 72, 43, 192, 190, 190, 16, 98, 64, 13, 230, 152, 189, 199, 111, 239, 0, 220, 0, 121, 127, 192, 59, 0, 48, 79, 102, 3, 191, 178, 38, 92, 64, 182, 181, 89, 190, 199, 111, 239, 0, 220, 0, 121, 127, 128, 59, 255, 49, 62, 126, 11, 191, 178, 38, 92, 64, 134, 249, 221, 189, 199, 111, 239, 0, 220, 0, 121, 127, 192, 59, 0, 50, 241, 4, 181, 190, 190, 16, 98, 64, 5, 246, 21, 190, 199, 111, 239, 0, 220, 0, 121, 127, 128, 59, 255, 47, 62, 126, 11, 191, 178, 38, 92, 64, 134, 249, 221, 189, 179, 97, 233, 0, 220, 0, 121, 127, 192, 59, 0, 50, 114, 61, 39, 191, 35, 49, 84, 64, 205, 139, 138, 190, 179, 97, 233, 0, 220, 0, 121, 127, 128, 59, 255, 51, 132, 138, 49, 191, 35, 49, 84, 64, 162, 66, 13, 190, 179, 97, 233, 0, 220, 0, 121, 127, 192, 59, 255, 51, 79, 102, 3, 191, 178, 38, 92, 64, 182, 181, 89, 190, 179, 97, 233, 0, 220, 0, 121, 127, 128, 59, 255, 49, 132, 138, 49, 191, 35, 49, 84, 64, 162, 66, 13, 190, 162, 80, 228, 0, 220, 0, 121, 127, 192, 59, 255, 51, 68, 167, 68, 191, 92, 126, 74, 64, 183, 233, 162, 190, 162, 80, 228, 0, 220, 0, 121, 127, 128, 59, 255, 52, 33, 196, 80, 191, 92, 126, 74, 64, 195, 26, 38, 190, 162, 80, 228, 0, 220, 0, 121, 127, 192, 59, 255, 52, 114, 61, 39, 191, 35, 49, 84, 64, 205, 139, 138, 190, 162, 80, 228, 0, 220, 0, 121, 127, 128, 59, 255, 51, 33, 196, 80, 191, 92, 126, 74, 64, 195, 26, 38, 190, 149, 59, 224, 0, 220, 0, 121, 127, 192, 59, 255, 52, 120, 130, 90, 191, 201, 109, 63, 64, 232, 4, 181, 190, 149, 59, 224, 0, 220, 0, 121, 127, 128, 59, 255, 53, 246, 247, 103, 191, 201, 109, 63, 64, 189, 144, 56, 190, 149, 59, 224, 0, 220, 0, 121, 127, 192, 59, 255, 53, 68, 167, 68, 191, 92, 126, 74, 64, 183, 233, 162, 190, 149, 59, 224, 0, 220, 0, 121, 127, 128, 59, 255, 52, 246, 247, 103, 191, 201, 109, 63, 64, 189, 144, 56, 190, 140, 36, 221, 0, 220, 0, 121, 127, 192, 59, 255, 53, 238, 247, 103, 191, 66, 108, 51, 64, 64, 43, 192, 190, 140, 36, 221, 0, 220, 0, 121, 127, 128, 59, 255, 54, 166, 65, 118, 191, 66, 108, 51, 64, 9, 239, 67, 190, 140, 36, 221, 0, 220, 0, 121, 127, 192, 59, 255, 54, 120, 130, 90, 191, 201, 109, 63, 64, 232, 4, 181, 190, 140, 36, 221, 0, 220, 0, 121, 127, 128, 59, 255, 53, 98, 112, 119, 191, 230, 239, 38, 64, 208, 203, 119, 190, 136, 12, 220, 0, 220, 0, 121, 127, 176, 59, 0, 56, 178, 39, 112, 191, 230, 239, 38, 64, 2, 236, 171, 190, 136, 12, 220, 0, 127, 0, 0, 127, 144, 59, 0, 56, 10, 204, 115, 191, 230, 239, 38, 64, 245, 232, 147, 190, 136, 12, 220, 0, 127, 0, 0, 127, 160, 59, 0, 56, 89, 131, 108, 191, 230, 239, 38, 64, 14, 239, 195, 190, 136, 12, 220, 0, 220, 0, 121, 127, 128, 59, 0, 56, 238, 247, 103, 191, 66, 108, 51, 64, 64, 43, 192, 190, 136, 12, 220, 0, 220, 0, 121, 127, 128, 59, 255, 54, 166, 65, 118, 191, 66, 108, 51, 64, 9, 239, 67, 190, 136, 12, 220, 0, 220, 0, 121, 127, 192, 59, 255, 54, 186, 20, 123, 191, 230, 239, 38, 64, 183, 197, 71, 190, 136, 12, 220, 0, 220, 0, 121, 127, 192, 59, 0, 56, 30, 239, 67, 190, 22, 181, 101, 64, 191, 228, 27, 189, 245, 126, 253, 0, 220, 0, 121, 127, 192, 59, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 245, 126, 253, 0, 220, 0, 121, 127, 160, 59, 0, 0, 219, 144, 56, 190, 22, 181, 101, 64, 17, 230, 152, 189, 245, 126, 253, 0, 220, 0, 121, 127, 128, 59, 255, 43, 178, 39, 112, 191, 230, 239, 38, 64, 2, 236, 171, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 0, 56, 126, 96, 107, 191, 171, 41, 244, 63, 26, 254, 194, 190, 135, 0, 220, 0, 220, 0, 121, 127, 128, 59, 32, 56, 92, 0, 111, 191, 171, 41, 244, 63, 149, 24, 171, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 32, 56, 89, 131, 108, 191, 230, 239, 38, 64, 14, 239, 195, 190, 135, 0, 220, 0, 220, 0, 121, 127, 128, 59, 0, 56, 72, 43, 192, 190, 190, 16, 98, 64, 13, 230, 152, 189, 221, 121, 246, 0, 220, 0, 121, 127, 192, 59, 0, 48, 219, 144, 56, 190, 22, 181, 101, 64, 17, 230, 152, 189, 221, 121, 246, 0, 220, 0, 121, 127, 128, 59, 255, 43, 241, 4, 181, 190, 190, 16, 98, 64, 5, 246, 21, 190, 221, 121, 246, 0, 220, 0, 121, 127, 128, 59, 255, 47, 30, 239, 67, 190, 22, 181, 101, 64, 191, 228, 27, 189, 221, 121, 246, 0, 220, 0, 121, 127, 192, 59, 255, 43, 120, 130, 90, 191, 201, 109, 63, 64, 232, 4, 181, 190, 149, 36, 199, 0, 197, 0, 112, 127, 128, 59, 255, 53, 31, 196, 80, 191, 66, 108, 51, 64, 56, 126, 11, 191, 149, 36, 199, 0, 197, 0, 112, 127, 64, 59, 255, 54, 238, 247, 103, 191, 66, 108, 51, 64, 64, 43, 192, 190, 149, 36, 199, 0, 197, 0, 112, 127, 128, 59, 255, 54, 74, 167, 68, 191, 201, 109, 63, 64, 75, 102, 3, 191, 149, 36, 199, 0, 197, 0, 112, 127, 64, 59, 255, 53, 238, 247, 103, 191, 66, 108, 51, 64, 64, 43, 192, 190, 145, 12, 197, 0, 197, 0, 112, 127, 128, 59, 255, 54, 78, 153, 102, 191, 230, 239, 38, 64, 53, 16, 218, 190, 145, 12, 197, 0, 197, 0, 112, 127, 112, 59, 0, 56, 89, 131, 108, 191, 230, 239, 38, 64, 14, 239, 195, 190, 145, 12, 197, 0, 197, 0, 112, 127, 128, 59, 0, 56, 66, 175, 96, 191, 230, 239, 38, 64, 92, 49, 240, 190, 145, 12, 197, 0, 197, 0, 112, 127, 96, 59, 0, 56, 54, 197, 90, 191, 230, 239, 38, 64, 66, 41, 3, 191, 145, 12, 197, 0, 197, 0, 112, 127, 80, 59, 0, 56, 43, 219, 84, 191, 230, 239, 38, 64, 213, 57, 14, 191, 145, 12, 197, 0, 197, 0, 112, 127, 64, 59, 0, 56, 31, 196, 80, 191, 66, 108, 51, 64, 56, 126, 11, 191, 145, 12, 197, 0, 197, 0, 112, 127, 64, 59, 255, 54, 219, 144, 56, 190, 22, 181, 101, 64, 17, 230, 152, 189, 245, 126, 251, 0, 197, 0, 112, 127, 128, 59, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 245, 126, 251, 0, 197, 0, 112, 127, 96, 59, 0, 0, 216, 26, 38, 190, 22, 181, 101, 64, 140, 249, 221, 189, 245, 126, 251, 0, 197, 0, 112, 127, 64, 59, 255, 43, 54, 197, 90, 191, 230, 239, 38, 64, 66, 41, 3, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 0, 56, 104, 213, 83, 191, 171, 41, 244, 63, 238, 138, 13, 191, 144, 0, 197, 0, 197, 0, 112, 127, 64, 59, 32, 56, 46, 184, 89, 191, 171, 41, 244, 63, 246, 135, 2, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 32, 56, 43, 219, 84, 191, 230, 239, 38, 64, 213, 57, 14, 191, 144, 0, 197, 0, 197, 0, 112, 127, 64, 59, 0, 56, 219, 144, 56, 190, 22, 181, 101, 64, 17, 230, 152, 189, 224, 121, 239, 0, 197, 0, 112, 127, 128, 59, 255, 43, 190, 233, 162, 190, 190, 16, 98, 64, 180, 181, 89, 190, 224, 121, 239, 0, 197, 0, 112, 127, 64, 59, 255, 47, 241, 4, 181, 190, 190, 16, 98, 64, 5, 246, 21, 190, 224, 121, 239, 0, 197, 0, 112, 127, 128, 59, 255, 47, 216, 26, 38, 190, 22, 181, 101, 64, 140, 249, 221, 189, 224, 121, 239, 0, 197, 0, 112, 127, 64, 59, 255, 43, 241, 4, 181, 190, 190, 16, 98, 64, 5, 246, 21, 190, 204, 111, 228, 0, 197, 0, 112, 127, 128, 59, 255, 47, 90, 131, 236, 190, 178, 38, 92, 64, 107, 8, 158, 190, 204, 111, 228, 0, 197, 0, 112, 127, 64, 59, 255, 49, 79, 102, 3, 191, 178, 38, 92, 64, 182, 181, 89, 190, 204, 111, 228, 0, 197, 0, 112, 127, 128, 59, 255, 49, 190, 233, 162, 190, 190, 16, 98, 64, 180, 181, 89, 190, 204, 111, 228, 0, 197, 0, 112, 127, 64, 59, 255, 47, 114, 61, 39, 191, 35, 49, 84, 64, 205, 139, 138, 190, 185, 97, 218, 0, 197, 0, 112, 127, 128, 59, 255, 51, 90, 131, 236, 190, 178, 38, 92, 64, 107, 8, 158, 190, 185, 97, 218, 0, 197, 0, 112, 127, 64, 59, 255, 49, 21, 131, 22, 191, 35, 49, 84, 64, 70, 35, 201, 190, 185, 97, 218, 0, 197, 0, 112, 127, 64, 59, 255, 51, 79, 102, 3, 191, 178, 38, 92, 64, 182, 181, 89, 190, 185, 97, 218, 0, 197, 0, 112, 127, 128, 59, 255, 49, 114, 61, 39, 191, 35, 49, 84, 64, 205, 139, 138, 190, 170, 80, 210, 0, 197, 0, 112, 127, 128, 59, 255, 51, 189, 251, 48, 191, 92, 126, 74, 64, 82, 131, 236, 190, 170, 80, 210, 0, 197, 0, 112, 127, 64, 59, 255, 52, 68, 167, 68, 191, 92, 126, 74, 64, 183, 233, 162, 190, 170, 80, 210, 0, 197, 0, 112, 127, 128, 59, 255, 52, 21, 131, 22, 191, 35, 49, 84, 64, 70, 35, 201, 190, 170, 80, 210, 0, 197, 0, 112, 127, 64, 59, 255, 51, 68, 167, 68, 191, 92, 126, 74, 64, 183, 233, 162, 190, 158, 59, 204, 0, 197, 0, 112, 127, 128, 59, 255, 52, 74, 167, 68, 191, 201, 109, 63, 64, 75, 102, 3, 191, 158, 59, 204, 0, 197, 0, 112, 127, 64, 59, 255, 53, 120, 130, 90, 191, 201, 109, 63, 64, 232, 4, 181, 190, 158, 59, 204, 0, 197, 0, 112, 127, 128, 59, 255, 53, 189, 251, 48, 191, 92, 126, 74, 64, 82, 131, 236, 190, 158, 59, 204, 0, 197, 0, 112, 127, 64, 59, 255, 52, 21, 131, 22, 191, 35, 49, 84, 64, 70, 35, 201, 190, 194, 97, 205, 0, 176, 0, 98, 127, 64, 59, 255, 51, 73, 35, 201, 190, 178, 38, 92, 64, 67, 35, 201, 190, 194, 97, 205, 0, 176, 0, 98, 127, 0, 59, 255, 49, 251, 255, 255, 190, 35, 49, 84, 64, 247, 255, 255, 190, 194, 97, 205, 0, 176, 0, 98, 127, 0, 59, 255, 51, 90, 131, 236, 190, 178, 38, 92, 64, 107, 8, 158, 190, 194, 97, 205, 0, 176, 0, 98, 127, 64, 59, 255, 49, 21, 131, 22, 191, 35, 49, 84, 64, 70, 35, 201, 190, 180, 80, 194, 0, 176, 0, 98, 127, 64, 59, 255, 51, 15, 131, 22, 191, 92, 126, 74, 64, 16, 131, 22, 191, 180, 80, 194, 0, 176, 0, 98, 127, 0, 59, 255, 52, 189, 251, 48, 191, 92, 126, 74, 64, 82, 131, 236, 190, 180, 80, 194, 0, 176, 0, 98, 127, 64, 59, 255, 52, 251, 255, 255, 190, 35, 49, 84, 64, 247, 255, 255, 190, 180, 80, 194, 0, 176, 0, 98, 127, 0, 59, 255, 51, 189, 251, 48, 191, 92, 126, 74, 64, 82, 131, 236, 190, 170, 59, 185, 0, 176, 0, 98, 127, 64, 59, 255, 52, 115, 61, 39, 191, 201, 109, 63, 64, 110, 61, 39, 191, 170, 59, 185, 0, 176, 0, 98, 127, 0, 59, 255, 53, 74, 167, 68, 191, 201, 109, 63, 64, 75, 102, 3, 191, 170, 59, 185, 0, 176, 0, 98, 127, 64, 59, 255, 53, 15, 131, 22, 191, 92, 126, 74, 64, 16, 131, 22, 191, 170, 59, 185, 0, 176, 0, 98, 127, 0, 59, 255, 52, 74, 167, 68, 191, 201, 109, 63, 64, 75, 102, 3, 191, 163, 36, 179, 0, 176, 0, 98, 127, 64, 59, 255, 53, 124, 138, 49, 191, 66, 108, 51, 64, 124, 138, 49, 191, 163, 36, 179, 0, 176, 0, 98, 127, 0, 59, 255, 54, 31, 196, 80, 191, 66, 108, 51, 64, 56, 126, 11, 191, 163, 36, 179, 0, 176, 0, 98, 127, 64, 59, 255, 54, 115, 61, 39, 191, 201, 109, 63, 64, 110, 61, 39, 191, 163, 36, 179, 0, 176, 0, 98, 127, 0, 59, 255, 53, 31, 196, 80, 191, 66, 108, 51, 64, 56, 126, 11, 191, 159, 12, 176, 0, 176, 0, 98, 127, 64, 59, 255, 54, 156, 229, 76, 191, 230, 239, 38, 64, 155, 236, 23, 191, 159, 12, 176, 0, 176, 0, 98, 127, 48, 59, 0, 56, 43, 219, 84, 191, 230, 239, 38, 64, 213, 57, 14, 191, 159, 12, 176, 0, 176, 0, 98, 127, 64, 59, 0, 56, 12, 240, 68, 191, 230, 239, 38, 64, 97, 159, 33, 191, 159, 12, 176, 0, 176, 0, 98, 127, 32, 59, 0, 56, 124, 250, 60, 191, 230, 239, 38, 64, 39, 82, 43, 191, 159, 12, 176, 0, 176, 0, 98, 127, 16, 59, 0, 56, 236, 4, 53, 191, 230, 239, 38, 64, 237, 4, 53, 191, 159, 12, 176, 0, 176, 0, 98, 127, 0, 59, 0, 56, 124, 138, 49, 191, 66, 108, 51, 64, 124, 138, 49, 191, 159, 12, 176, 0, 176, 0, 98, 127, 0, 59, 255, 54, 216, 26, 38, 190, 22, 181, 101, 64, 140, 249, 221, 189, 247, 126, 249, 0, 176, 0, 98, 127, 64, 59, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 247, 126, 249, 0, 176, 0, 98, 127, 32, 59, 0, 0, 180, 66, 13, 190, 22, 181, 101, 64, 160, 66, 13, 190, 247, 126, 249, 0, 176, 0, 98, 127, 0, 59, 255, 43, 124, 250, 60, 191, 230, 239, 38, 64, 39, 82, 43, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 0, 56, 80, 38, 52, 191, 171, 41, 244, 63, 80, 38, 52, 191, 158, 0, 176, 0, 176, 0, 98, 127, 0, 59, 32, 56, 22, 18, 60, 191, 171, 41, 244, 63, 120, 127, 42, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 32, 56, 236, 4, 53, 191, 230, 239, 38, 64, 237, 4, 53, 191, 158, 0, 176, 0, 176, 0, 98, 127, 0, 59, 0, 56, 216, 26, 38, 190, 22, 181, 101, 64, 140, 249, 221, 189, 228, 121, 233, 0, 176, 0, 98, 127, 64, 59, 255, 43, 208, 139, 138, 190, 190, 16, 98, 64, 200, 139, 138, 190, 228, 121, 233, 0, 176, 0, 98, 127, 0, 59, 255, 47, 190, 233, 162, 190, 190, 16, 98, 64, 180, 181, 89, 190, 228, 121, 233, 0, 176, 0, 98, 127, 64, 59, 255, 47, 180, 66, 13, 190, 22, 181, 101, 64, 160, 66, 13, 190, 228, 121, 233, 0, 176, 0, 98, 127, 0, 59, 255, 43, 90, 131, 236, 190, 178, 38, 92, 64, 107, 8, 158, 190, 210, 111, 218, 0, 176, 0, 98, 127, 64, 59, 255, 49, 208, 139, 138, 190, 190, 16, 98, 64, 200, 139, 138, 190, 210, 111, 218, 0, 176, 0, 98, 127, 0, 59, 255, 47, 73, 35, 201, 190, 178, 38, 92, 64, 67, 35, 201, 190, 210, 111, 218, 0, 176, 0, 98, 127, 0, 59, 255, 49, 190, 233, 162, 190, 190, 16, 98, 64, 180, 181, 89, 190, 210, 111, 218, 0, 176, 0, 98, 127, 64, 59, 255, 47, 124, 138, 49, 191, 66, 108, 51, 64, 124, 138, 49, 191, 176, 12, 159, 0, 158, 0, 80, 127, 0, 59, 255, 54, 38, 82, 43, 191, 230, 239, 38, 64, 124, 250, 60, 191, 176, 12, 159, 0, 158, 0, 80, 127, 240, 58, 0, 56, 236, 4, 53, 191, 230, 239, 38, 64, 237, 4, 53, 191, 176, 12, 159, 0, 158, 0, 80, 127, 0, 59, 0, 56, 96, 159, 33, 191, 230, 239, 38, 64, 11, 240, 68, 191, 176, 12, 159, 0, 158, 0, 80, 127, 224, 58, 0, 56, 154, 236, 23, 191, 230, 239, 38, 64, 154, 229, 76, 191, 176, 12, 159, 0, 158, 0, 80, 127, 208, 58, 0, 56, 211, 57, 14, 191, 230, 239, 38, 64, 41, 219, 84, 191, 176, 12, 159, 0, 158, 0, 80, 127, 192, 58, 0, 56, 54, 126, 11, 191, 66, 108, 51, 64, 29, 196, 80, 191, 176, 12, 159, 0, 158, 0, 80, 127, 192, 58, 255, 54, 180, 66, 13, 190, 22, 181, 101, 64, 160, 66, 13, 190, 249, 126, 247, 0, 158, 0, 80, 127, 0, 59, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 249, 126, 247, 0, 158, 0, 80, 127, 224, 58, 0, 0, 180, 249, 221, 189, 22, 181, 101, 64, 195, 26, 38, 190, 249, 126, 247, 0, 158, 0, 80, 127, 192, 58, 255, 43, 154, 236, 23, 191, 230, 239, 38, 64, 154, 229, 76, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 0, 56, 236, 138, 13, 191, 171, 41, 244, 63, 102, 213, 83, 191, 176, 0, 158, 0, 158, 0, 80, 127, 192, 58, 32, 56, 197, 49, 23, 191, 171, 41, 244, 63, 161, 233, 75, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 32, 56, 211, 57, 14, 191, 230, 239, 38, 64, 41, 219, 84, 191, 176, 0, 158, 0, 158, 0, 80, 127, 192, 58, 0, 56, 208, 139, 138, 190, 190, 16, 98, 64, 200, 139, 138, 190, 233, 121, 228, 0, 158, 0, 80, 127, 0, 59, 255, 47, 180, 249, 221, 189, 22, 181, 101, 64, 195, 26, 38, 190, 233, 121, 228, 0, 158, 0, 80, 127, 192, 58, 255, 43, 194, 181, 89, 190, 190, 16, 98, 64, 180, 233, 162, 190, 233, 121, 228, 0, 158, 0, 80, 127, 192, 58, 255, 47, 180, 66, 13, 190, 22, 181, 101, 64, 160, 66, 13, 190, 233, 121, 228, 0, 158, 0, 80, 127, 0, 59, 255, 43, 73, 35, 201, 190, 178, 38, 92, 64, 67, 35, 201, 190, 218, 111, 210, 0, 158, 0, 80, 127, 0, 59, 255, 49, 194, 181, 89, 190, 190, 16, 98, 64, 180, 233, 162, 190, 218, 111, 210, 0, 158, 0, 80, 127, 192, 58, 255, 47, 112, 8, 158, 190, 178, 38, 92, 64, 82, 131, 236, 190, 218, 111, 210, 0, 158, 0, 80, 127, 192, 58, 255, 49, 208, 139, 138, 190, 190, 16, 98, 64, 200, 139, 138, 190, 218, 111, 210, 0, 158, 0, 80, 127, 0, 59, 255, 47, 73, 35, 201, 190, 178, 38, 92, 64, 67, 35, 201, 190, 205, 97, 194, 0, 158, 0, 80, 127, 0, 59, 255, 49, 72, 35, 201, 190, 35, 49, 84, 64, 18, 131, 22, 191, 205, 97, 194, 0, 158, 0, 80, 127, 192, 58, 255, 51, 251, 255, 255, 190, 35, 49, 84, 64, 247, 255, 255, 190, 205, 97, 194, 0, 158, 0, 80, 127, 0, 59, 255, 51, 112, 8, 158, 190, 178, 38, 92, 64, 82, 131, 236, 190, 205, 97, 194, 0, 158, 0, 80, 127, 192, 58, 255, 49, 251, 255, 255, 190, 35, 49, 84, 64, 247, 255, 255, 190, 194, 80, 180, 0, 158, 0, 80, 127, 0, 59, 255, 51, 79, 131, 236, 190, 92, 126, 74, 64, 188, 251, 48, 191, 194, 80, 180, 0, 158, 0, 80, 127, 192, 58, 255, 52, 15, 131, 22, 191, 92, 126, 74, 64, 16, 131, 22, 191, 194, 80, 180, 0, 158, 0, 80, 127, 0, 59, 255, 52, 72, 35, 201, 190, 35, 49, 84, 64, 18, 131, 22, 191, 194, 80, 180, 0, 158, 0, 80, 127, 192, 58, 255, 51, 15, 131, 22, 191, 92, 126, 74, 64, 16, 131, 22, 191, 185, 59, 170, 0, 158, 0, 80, 127, 0, 59, 255, 52, 79, 102, 3, 191, 201, 109, 63, 64, 69, 167, 68, 191, 185, 59, 170, 0, 158, 0, 80, 127, 192, 58, 255, 53, 115, 61, 39, 191, 201, 109, 63, 64, 110, 61, 39, 191, 185, 59, 170, 0, 158, 0, 80, 127, 0, 59, 255, 53, 79, 131, 236, 190, 92, 126, 74, 64, 188, 251, 48, 191, 185, 59, 170, 0, 158, 0, 80, 127, 192, 58, 255, 52, 115, 61, 39, 191, 201, 109, 63, 64, 110, 61, 39, 191, 179, 36, 163, 0, 158, 0, 80, 127, 0, 59, 255, 53, 54, 126, 11, 191, 66, 108, 51, 64, 29, 196, 80, 191, 179, 36, 163, 0, 158, 0, 80, 127, 192, 58, 255, 54, 124, 138, 49, 191, 66, 108, 51, 64, 124, 138, 49, 191, 179, 36, 163, 0, 158, 0, 80, 127, 0, 59, 255, 54, 79, 102, 3, 191, 201, 109, 63, 64, 69, 167, 68, 191, 179, 36, 163, 0, 158, 0, 80, 127, 192, 58, 255, 53, 112, 8, 158, 190, 178, 38, 92, 64, 82, 131, 236, 190, 218, 97, 185, 0, 144, 0, 59, 127, 192, 58, 255, 49, 206, 139, 138, 190, 35, 49, 84, 64, 111, 61, 39, 191, 218, 97, 185, 0, 144, 0, 59, 127, 128, 58, 255, 51, 72, 35, 201, 190, 35, 49, 84, 64, 18, 131, 22, 191, 218, 97, 185, 0, 144, 0, 59, 127, 192, 58, 255, 51, 192, 181, 89, 190, 178, 38, 92, 64, 74, 102, 3, 191, 218, 97, 185, 0, 144, 0, 59, 127, 128, 58, 255, 49, 72, 35, 201, 190, 35, 49, 84, 64, 18, 131, 22, 191, 210, 80, 170, 0, 144, 0, 59, 127, 192, 58, 255, 51, 178, 233, 162, 190, 92, 126, 74, 64, 65, 167, 68, 191, 210, 80, 170, 0, 144, 0, 59, 127, 128, 58, 255, 52, 79, 131, 236, 190, 92, 126, 74, 64, 188, 251, 48, 191, 210, 80, 170, 0, 144, 0, 59, 127, 192, 58, 255, 52, 206, 139, 138, 190, 35, 49, 84, 64, 111, 61, 39, 191, 210, 80, 170, 0, 144, 0, 59, 127, 128, 58, 255, 51, 79, 131, 236, 190, 92, 126, 74, 64, 188, 251, 48, 191, 204, 59, 158, 0, 144, 0, 59, 127, 192, 58, 255, 52, 240, 4, 181, 190, 201, 109, 63, 64, 114, 130, 90, 191, 204, 59, 158, 0, 144, 0, 59, 127, 128, 58, 255, 53, 79, 102, 3, 191, 201, 109, 63, 64, 69, 167, 68, 191, 204, 59, 158, 0, 144, 0, 59, 127, 192, 58, 255, 53, 178, 233, 162, 190, 92, 126, 74, 64, 65, 167, 68, 191, 204, 59, 158, 0, 144, 0, 59, 127, 128, 58, 255, 52, 79, 102, 3, 191, 201, 109, 63, 64, 69, 167, 68, 191, 199, 36, 149, 0, 144, 0, 59, 127, 192, 58, 255, 53, 58, 43, 192, 190, 66, 108, 51, 64, 234, 247, 103, 191, 199, 36, 149, 0, 144, 0, 59, 127, 128, 58, 255, 54, 54, 126, 11, 191, 66, 108, 51, 64, 29, 196, 80, 191, 199, 36, 149, 0, 144, 0, 59, 127, 192, 58, 255, 54, 240, 4, 181, 190, 201, 109, 63, 64, 114, 130, 90, 191, 199, 36, 149, 0, 144, 0, 59, 127, 128, 58, 255, 53, 54, 126, 11, 191, 66, 108, 51, 64, 29, 196, 80, 191, 197, 12, 145, 0, 144, 0, 59, 127, 192, 58, 255, 54, 63, 41, 3, 191, 230, 239, 38, 64, 52, 197, 90, 191, 197, 12, 145, 0, 144, 0, 59, 127, 176, 58, 0, 56, 211, 57, 14, 191, 230, 239, 38, 64, 41, 219, 84, 191, 197, 12, 145, 0, 144, 0, 59, 127, 192, 58, 0, 56, 87, 49, 240, 190, 230, 239, 38, 64, 62, 175, 96, 191, 197, 12, 145, 0, 144, 0, 59, 127, 160, 58, 0, 56, 48, 16, 218, 190, 230, 239, 38, 64, 73, 153, 102, 191, 197, 12, 145, 0, 144, 0, 59, 127, 144, 58, 0, 56, 8, 239, 195, 190, 230, 239, 38, 64, 84, 131, 108, 191, 197, 12, 145, 0, 144, 0, 59, 127, 128, 58, 0, 56, 58, 43, 192, 190, 66, 108, 51, 64, 234, 247, 103, 191, 197, 12, 145, 0, 144, 0, 59, 127, 128, 58, 255, 54, 180, 249, 221, 189, 22, 181, 101, 64, 195, 26, 38, 190, 251, 126, 245, 0, 144, 0, 59, 127, 192, 58, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 251, 126, 245, 0, 144, 0, 59, 127, 160, 58, 0, 0, 56, 230, 152, 189, 22, 181, 101, 64, 198, 144, 56, 190, 251, 126, 245, 0, 144, 0, 59, 127, 128, 58, 255, 43, 48, 16, 218, 190, 230, 239, 38, 64, 73, 153, 102, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 0, 56, 20, 254, 194, 190, 171, 41, 244, 63, 122, 96, 107, 191, 197, 0, 144, 0, 144, 0, 59, 127, 128, 58, 32, 56, 5, 4, 217, 190, 171, 41, 244, 63, 181, 125, 101, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 32, 56, 8, 239, 195, 190, 230, 239, 38, 64, 84, 131, 108, 191, 197, 0, 144, 0, 144, 0, 59, 127, 128, 58, 0, 56, 194, 181, 89, 190, 190, 16, 98, 64, 180, 233, 162, 190, 239, 121, 224, 0, 144, 0, 59, 127, 192, 58, 255, 47, 56, 230, 152, 189, 22, 181, 101, 64, 198, 144, 56, 190, 239, 121, 224, 0, 144, 0, 59, 127, 128, 58, 255, 43, 19, 246, 21, 190, 190, 16, 98, 64, 230, 4, 181, 190, 239, 121, 224, 0, 144, 0, 59, 127, 128, 58, 255, 47, 180, 249, 221, 189, 22, 181, 101, 64, 195, 26, 38, 190, 239, 121, 224, 0, 144, 0, 59, 127, 192, 58, 255, 43, 194, 181, 89, 190, 190, 16, 98, 64, 180, 233, 162, 190, 228, 111, 204, 0, 144, 0, 59, 127, 192, 58, 255, 47, 192, 181, 89, 190, 178, 38, 92, 64, 74, 102, 3, 191, 228, 111, 204, 0, 144, 0, 59, 127, 128, 58, 255, 49, 112, 8, 158, 190, 178, 38, 92, 64, 82, 131, 236, 190, 228, 111, 204, 0, 144, 0, 59, 127, 192, 58, 255, 49, 19, 246, 21, 190, 190, 16, 98, 64, 230, 4, 181, 190, 228, 111, 204, 0, 144, 0, 59, 127, 128, 58, 255, 47, 58, 43, 192, 190, 66, 108, 51, 64, 234, 247, 103, 191, 220, 12, 136, 0, 135, 0, 36, 127, 128, 58, 255, 54, 252, 235, 171, 190, 230, 239, 38, 64, 172, 39, 112, 191, 220, 12, 136, 0, 135, 0, 36, 127, 112, 58, 0, 56, 8, 239, 195, 190, 230, 239, 38, 64, 84, 131, 108, 191, 220, 12, 136, 0, 135, 0, 36, 127, 128, 58, 0, 56, 239, 232, 147, 190, 230, 239, 38, 64, 3, 204, 115, 191, 220, 12, 136, 0, 135, 0, 36, 127, 95, 58, 0, 56, 196, 203, 119, 190, 230, 239, 38, 64, 90, 112, 119, 191, 220, 12, 136, 0, 135, 0, 36, 127, 79, 58, 0, 56, 171, 197, 71, 190, 230, 239, 38, 64, 178, 20, 123, 191, 220, 12, 136, 0, 135, 0, 36, 127, 63, 58, 0, 56, 252, 238, 67, 190, 66, 108, 51, 64, 160, 65, 118, 191, 220, 12, 136, 0, 135, 0, 36, 127, 63, 58, 255, 54, 56, 230, 152, 189, 22, 181, 101, 64, 198, 144, 56, 190, 253, 126, 245, 0, 135, 0, 36, 127, 128, 58, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 253, 126, 245, 0, 135, 0, 36, 127, 96, 58, 0, 0, 10, 229, 27, 189, 22, 181, 101, 64, 8, 239, 67, 190, 253, 126, 245, 0, 135, 0, 36, 127, 64, 58, 255, 43, 196, 203, 119, 190, 230, 239, 38, 64, 90, 112, 119, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 0, 56, 0, 208, 70, 190, 171, 41, 244, 63, 238, 223, 121, 191, 220, 0, 135, 0, 135, 0, 36, 127, 63, 58, 32, 56, 10, 155, 118, 190, 171, 41, 244, 63, 17, 64, 118, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 32, 56, 171, 197, 71, 190, 230, 239, 38, 64, 178, 20, 123, 191, 220, 0, 135, 0, 135, 0, 36, 127, 63, 58, 0, 56, 56, 230, 152, 189, 22, 181, 101, 64, 198, 144, 56, 190, 246, 121, 221, 0, 135, 0, 36, 127, 128, 58, 255, 43, 40, 230, 152, 189, 190, 16, 98, 64, 60, 43, 192, 190, 246, 121, 221, 0, 135, 0, 36, 127, 64, 58, 255, 47, 19, 246, 21, 190, 190, 16, 98, 64, 230, 4, 181, 190, 246, 121, 221, 0, 135, 0, 36, 127, 128, 58, 255, 47, 10, 229, 27, 189, 22, 181, 101, 64, 8, 239, 67, 190, 246, 121, 221, 0, 135, 0, 36, 127, 64, 58, 255, 43, 19, 246, 21, 190, 190, 16, 98, 64, 230, 4, 181, 190, 239, 111, 199, 0, 135, 0, 36, 127, 128, 58, 255, 47, 155, 249, 221, 189, 178, 38, 92, 64, 55, 126, 11, 191, 239, 111, 199, 0, 135, 0, 36, 127, 64, 58, 255, 49, 192, 181, 89, 190, 178, 38, 92, 64, 74, 102, 3, 191, 239, 111, 199, 0, 135, 0, 36, 127, 128, 58, 255, 49, 40, 230, 152, 189, 190, 16, 98, 64, 60, 43, 192, 190, 239, 111, 199, 0, 135, 0, 36, 127, 64, 58, 255, 47, 206, 139, 138, 190, 35, 49, 84, 64, 111, 61, 39, 191, 233, 97, 179, 0, 135, 0, 36, 127, 128, 58, 255, 51, 155, 249, 221, 189, 178, 38, 92, 64, 55, 126, 11, 191, 233, 97, 179, 0, 135, 0, 36, 127, 64, 58, 255, 49, 164, 66, 13, 190, 35, 49, 84, 64, 127, 138, 49, 191, 233, 97, 179, 0, 135, 0, 36, 127, 64, 58, 255, 51, 192, 181, 89, 190, 178, 38, 92, 64, 74, 102, 3, 191, 233, 97, 179, 0, 135, 0, 36, 127, 128, 58, 255, 49, 206, 139, 138, 190, 35, 49, 84, 64, 111, 61, 39, 191, 228, 80, 162, 0, 135, 0, 36, 127, 128, 58, 255, 51, 185, 26, 38, 190, 92, 126, 74, 64, 28, 196, 80, 191, 228, 80, 162, 0, 135, 0, 36, 127, 63, 58, 255, 52, 178, 233, 162, 190, 92, 126, 74, 64, 65, 167, 68, 191, 228, 80, 162, 0, 135, 0, 36, 127, 128, 58, 255, 52, 164, 66, 13, 190, 35, 49, 84, 64, 127, 138, 49, 191, 228, 80, 162, 0, 135, 0, 36, 127, 64, 58, 255, 51, 178, 233, 162, 190, 92, 126, 74, 64, 65, 167, 68, 191, 224, 59, 149, 0, 135, 0, 36, 127, 128, 58, 255, 52, 205, 144, 56, 190, 201, 109, 63, 64, 240, 247, 103, 191, 224, 59, 149, 0, 135, 0, 36, 127, 64, 58, 255, 53, 240, 4, 181, 190, 201, 109, 63, 64, 114, 130, 90, 191, 224, 59, 149, 0, 135, 0, 36, 127, 128, 58, 255, 53, 185, 26, 38, 190, 92, 126, 74, 64, 28, 196, 80, 191, 224, 59, 149, 0, 135, 0, 36, 127, 63, 58, 255, 52, 240, 4, 181, 190, 201, 109, 63, 64, 114, 130, 90, 191, 221, 36, 140, 0, 135, 0, 36, 127, 128, 58, 255, 53, 252, 238, 67, 190, 66, 108, 51, 64, 160, 65, 118, 191, 221, 36, 140, 0, 135, 0, 36, 127, 63, 58, 255, 54, 58, 43, 192, 190, 66, 108, 51, 64, 234, 247, 103, 191, 221, 36, 140, 0, 135, 0, 36, 127, 128, 58, 255, 54, 205, 144, 56, 190, 201, 109, 63, 64, 240, 247, 103, 191, 221, 36, 140, 0, 135, 0, 36, 127, 64, 58, 255, 53, 185, 26, 38, 190, 92, 126, 74, 64, 28, 196, 80, 191, 247, 80, 159, 0, 130, 0, 12, 127, 63, 58, 255, 52, 0, 0, 0, 0, 35, 49, 84, 64, 243, 4, 53, 191, 247, 80, 159, 0, 130, 0, 12, 127, 0, 58, 255, 51, 0, 0, 0, 0, 92, 126, 74, 64, 50, 219, 84, 191, 247, 80, 159, 0, 130, 0, 12, 127, 0, 58, 0, 53, 164, 66, 13, 190, 35, 49, 84, 64, 127, 138, 49, 191, 247, 80, 159, 0, 130, 0, 12, 127, 64, 58, 255, 51, 185, 26, 38, 190, 92, 126, 74, 64, 28, 196, 80, 191, 246, 59, 145, 0, 130, 0, 12, 127, 63, 58, 255, 52, 0, 0, 0, 0, 201, 109, 63, 64, 94, 131, 108, 191, 246, 59, 145, 0, 130, 0, 12, 127, 0, 58, 0, 54, 205, 144, 56, 190, 201, 109, 63, 64, 240, 247, 103, 191, 246, 59, 145, 0, 130, 0, 12, 127, 64, 58, 255, 53, 0, 0, 0, 0, 92, 126, 74, 64, 50, 219, 84, 191, 246, 59, 145, 0, 130, 0, 12, 127, 0, 58, 0, 53, 205, 144, 56, 190, 201, 109, 63, 64, 240, 247, 103, 191, 245, 36, 136, 0, 130, 0, 12, 127, 64, 58, 255, 53, 0, 0, 0, 0, 66, 108, 51, 64, 190, 20, 123, 191, 245, 36, 136, 0, 130, 0, 12, 127, 0, 58, 0, 55, 252, 238, 67, 190, 66, 108, 51, 64, 160, 65, 118, 191, 245, 36, 136, 0, 130, 0, 12, 127, 63, 58, 255, 54, 0, 0, 0, 0, 201, 109, 63, 64, 94, 131, 108, 191, 245, 36, 136, 0, 130, 0, 12, 127, 0, 58, 0, 54, 252, 238, 67, 190, 66, 108, 51, 64, 160, 65, 118, 191, 244, 12, 131, 0, 130, 0, 12, 127, 63, 58, 255, 54, 64, 212, 21, 190, 230, 239, 38, 64, 134, 79, 124, 191, 244, 12, 131, 0, 130, 0, 12, 127, 47, 58, 0, 56, 171, 197, 71, 190, 230, 239, 38, 64, 178, 20, 123, 191, 244, 12, 131, 0, 130, 0, 12, 127, 63, 58, 0, 56, 171, 197, 199, 189, 230, 239, 38, 64, 89, 138, 125, 191, 244, 12, 131, 0, 130, 0, 12, 127, 31, 58, 0, 56, 171, 197, 71, 189, 230, 239, 38, 64, 44, 197, 126, 191, 244, 12, 131, 0, 130, 0, 12, 127, 16, 58, 0, 56, 0, 0, 0, 0, 230, 239, 38, 64, 0, 0, 128, 191, 244, 12, 131, 0, 130, 0, 12, 127, 0, 58, 0, 56, 0, 0, 0, 0, 66, 108, 51, 64, 190, 20, 123, 191, 244, 12, 131, 0, 130, 0, 12, 127, 0, 58, 0, 55, 10, 229, 27, 189, 22, 181, 101, 64, 8, 239, 67, 190, 255, 126, 244, 0, 130, 0, 12, 127, 64, 58, 255, 43, 30, 101, 119, 180, 230, 239, 102, 64, 237, 80, 21, 53, 255, 126, 244, 0, 130, 0, 12, 127, 32, 58, 0, 0, 0, 0, 0, 0, 22, 181, 101, 64, 194, 197, 71, 190, 255, 126, 244, 0, 130, 0, 12, 127, 0, 58, 255, 43, 171, 197, 71, 189, 230, 239, 38, 64, 44, 197, 126, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 0, 56, 0, 0, 0, 0, 171, 41, 244, 63, 48, 197, 126, 191, 244, 0, 130, 0, 130, 0, 12, 127, 0, 58, 32, 56, 0, 208, 70, 189, 171, 41, 244, 63, 223, 139, 125, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 32, 56, 0, 0, 0, 0, 230, 239, 38, 64, 0, 0, 128, 191, 244, 0, 130, 0, 130, 0, 12, 127, 0, 58, 0, 56, 10, 229, 27, 189, 22, 181, 101, 64, 8, 239, 67, 190, 253, 121, 220, 0, 130, 0, 12, 127, 64, 58, 255, 43, 0, 0, 0, 0, 190, 16, 98, 64, 22, 239, 195, 190, 253, 121, 220, 0, 130, 0, 12, 127, 0, 58, 0, 48, 40, 230, 152, 189, 190, 16, 98, 64, 60, 43, 192, 190, 253, 121, 220, 0, 130, 0, 12, 127, 64, 58, 255, 47, 0, 0, 0, 0, 22, 181, 101, 64, 194, 197, 71, 190, 253, 121, 220, 0, 130, 0, 12, 127, 0, 58, 255, 43, 155, 249, 221, 189, 178, 38, 92, 64, 55, 126, 11, 191, 251, 111, 197, 0, 130, 0, 12, 127, 64, 58, 255, 49, 0, 0, 0, 0, 190, 16, 98, 64, 22, 239, 195, 190, 251, 111, 197, 0, 130, 0, 12, 127, 0, 58, 0, 48, 0, 0, 0, 0, 178, 38, 92, 64, 218, 57, 14, 191, 251, 111, 197, 0, 130, 0, 12, 127, 0, 58, 0, 50, 40, 230, 152, 189, 190, 16, 98, 64, 60, 43, 192, 190, 251, 111, 197, 0, 130, 0, 12, 127, 64, 58, 255, 47, 155, 249, 221, 189, 178, 38, 92, 64, 55, 126, 11, 191, 249, 97, 176, 0, 130, 0, 12, 127, 64, 58, 255, 49, 0, 0, 0, 0, 35, 49, 84, 64, 243, 4, 53, 191, 249, 97, 176, 0, 130, 0, 12, 127, 0, 58, 255, 51, 164, 66, 13, 190, 35, 49, 84, 64, 127, 138, 49, 191, 249, 97, 176, 0, 130, 0, 12, 127, 64, 58, 255, 51, 0, 0, 0, 0, 178, 38, 92, 64, 218, 57, 14, 191, 249, 97, 176, 0, 130, 0, 12, 127, 0, 58, 0, 50, 84, 218, 69, 189, 138, 115, 154, 63, 146, 82, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 64, 56, 0, 0, 0, 0, 211, 122, 1, 63, 144, 79, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 0, 58, 95, 56, 168, 228, 68, 189, 211, 122, 1, 63, 69, 25, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 96, 56, 0, 0, 0, 0, 138, 115, 154, 63, 96, 138, 125, 191, 244, 0, 130, 0, 130, 0, 12, 127, 0, 58, 64, 56, 191, 99, 20, 190, 138, 115, 154, 63, 246, 226, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 64, 56, 168, 228, 196, 189, 211, 122, 1, 63, 250, 226, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 96, 56, 126, 171, 19, 190, 211, 122, 1, 63, 175, 172, 120, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 96, 56, 84, 218, 197, 189, 138, 115, 154, 63, 196, 26, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 64, 56, 64, 212, 21, 190, 230, 239, 38, 64, 134, 79, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 0, 56, 0, 208, 198, 189, 171, 41, 244, 63, 142, 82, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 32, 56, 0, 28, 21, 190, 171, 41, 244, 63, 62, 25, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 32, 56, 171, 197, 199, 189, 230, 239, 38, 64, 89, 138, 125, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 0, 56, 80, 106, 117, 190, 138, 115, 154, 63, 198, 15, 117, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 64, 56, 168, 228, 68, 190, 211, 122, 1, 63, 100, 118, 119, 191, 220, 0, 135, 0, 135, 0, 36, 127, 63, 58, 96, 56, 149, 57, 116, 190, 211, 122, 1, 63, 124, 223, 115, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 96, 56, 84, 218, 69, 190, 138, 115, 154, 63, 41, 171, 120, 191, 220, 0, 135, 0, 135, 0, 36, 127, 63, 58, 64, 56, 36, 69, 170, 190, 138, 115, 154, 63, 2, 217, 109, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 64, 56, 65, 199, 145, 190, 211, 122, 1, 63, 148, 72, 112, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 96, 56, 184, 113, 169, 190, 211, 122, 1, 63, 172, 177, 108, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 96, 56, 38, 125, 146, 190, 138, 115, 154, 63, 100, 116, 113, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 64, 56, 252, 235, 171, 190, 230, 239, 38, 64, 172, 39, 112, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 0, 56, 10, 51, 147, 190, 171, 41, 244, 63, 52, 160, 114, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 32, 56, 143, 24, 171, 190, 171, 41, 244, 63, 87, 0, 111, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 32, 56, 239, 232, 147, 190, 230, 239, 38, 64, 3, 204, 115, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 0, 56, 218, 247, 215, 190, 138, 115, 154, 63, 32, 98, 100, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 64, 56, 46, 28, 193, 190, 211, 122, 1, 63, 196, 26, 105, 191, 197, 0, 144, 0, 144, 0, 59, 127, 128, 58, 96, 56, 177, 235, 214, 190, 211, 122, 1, 63, 139, 70, 99, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 96, 56, 33, 13, 194, 190, 138, 115, 154, 63, 159, 61, 106, 191, 197, 0, 144, 0, 144, 0, 59, 127, 128, 58, 64, 56, 167, 230, 1, 191, 138, 115, 154, 63, 34, 171, 88, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 64, 56, 52, 187, 236, 190, 211, 122, 1, 63, 82, 114, 93, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 96, 56, 92, 69, 1, 191, 211, 122, 1, 63, 25, 158, 87, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 96, 56, 148, 226, 237, 190, 138, 115, 154, 63, 161, 134, 94, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 64, 56, 63, 41, 3, 191, 230, 239, 38, 64, 52, 197, 90, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 0, 56, 246, 9, 239, 190, 171, 41, 244, 63, 240, 154, 95, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 32, 56, 244, 135, 2, 191, 171, 41, 244, 63, 43, 184, 89, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 32, 56, 87, 49, 240, 190, 230, 239, 38, 64, 62, 175, 96, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 0, 56, 240, 118, 22, 191, 138, 115, 154, 63, 168, 237, 74, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 64, 56, 29, 45, 12, 191, 211, 122, 1, 63, 224, 201, 81, 191, 176, 0, 158, 0, 158, 0, 80, 127, 192, 58, 96, 56, 28, 188, 21, 191, 211, 122, 1, 63, 174, 241, 73, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 96, 56, 4, 220, 12, 191, 138, 115, 154, 63, 163, 207, 82, 191, 176, 0, 158, 0, 158, 0, 80, 127, 192, 58, 64, 56, 200, 172, 41, 191, 138, 115, 154, 63, 176, 41, 59, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 64, 56, 26, 75, 31, 191, 211, 122, 1, 63, 124, 25, 66, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 96, 56, 25, 218, 40, 191, 211, 122, 1, 63, 74, 65, 58, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 96, 56, 220, 17, 32, 191, 138, 115, 154, 63, 172, 11, 67, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 64, 56, 38, 82, 43, 191, 230, 239, 38, 64, 124, 250, 60, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 0, 56, 158, 216, 32, 191, 171, 41, 244, 63, 220, 253, 67, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 32, 56, 119, 127, 42, 191, 171, 41, 244, 63, 22, 18, 60, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 32, 56, 96, 159, 33, 191, 230, 239, 38, 64, 11, 240, 68, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 0, 56, 176, 41, 59, 191, 138, 115, 154, 63, 200, 172, 41, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 64, 56, 24, 105, 50, 191, 211, 122, 1, 63, 24, 105, 50, 191, 158, 0, 176, 0, 176, 0, 98, 127, 0, 59, 96, 56, 74, 65, 58, 191, 211, 122, 1, 63, 26, 218, 40, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 96, 56, 180, 71, 51, 191, 138, 115, 154, 63, 180, 71, 51, 191, 158, 0, 176, 0, 176, 0, 98, 127, 0, 59, 64, 56, 168, 237, 74, 191, 138, 115, 154, 63, 242, 118, 22, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 64, 56, 125, 25, 66, 191, 211, 122, 1, 63, 28, 75, 31, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 96, 56, 176, 241, 73, 191, 211, 122, 1, 63, 30, 188, 21, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 96, 56, 172, 11, 67, 191, 138, 115, 154, 63, 221, 17, 32, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 64, 56, 156, 229, 76, 191, 230, 239, 38, 64, 155, 236, 23, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 0, 56, 220, 253, 67, 191, 171, 41, 244, 63, 159, 216, 32, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 32, 56, 162, 233, 75, 191, 171, 41, 244, 63, 198, 49, 23, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 32, 56, 12, 240, 68, 191, 230, 239, 38, 64, 97, 159, 33, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 0, 56, 36, 171, 88, 191, 138, 115, 154, 63, 170, 230, 1, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 64, 56, 226, 201, 81, 191, 211, 122, 1, 63, 31, 45, 12, 191, 144, 0, 197, 0, 197, 0, 112, 127, 64, 59, 96, 56, 28, 158, 87, 191, 211, 122, 1, 63, 94, 69, 1, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 96, 56, 165, 207, 82, 191, 138, 115, 154, 63, 6, 220, 12, 191, 144, 0, 197, 0, 197, 0, 112, 127, 64, 59, 64, 56, 36, 98, 100, 191, 138, 115, 154, 63, 224, 247, 215, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 64, 56, 85, 114, 93, 191, 211, 122, 1, 63, 57, 187, 236, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 96, 56, 143, 70, 99, 191, 211, 122, 1, 63, 182, 235, 214, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 96, 56, 164, 134, 94, 191, 138, 115, 154, 63, 154, 226, 237, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 64, 56, 78, 153, 102, 191, 230, 239, 38, 64, 53, 16, 218, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 0, 56, 243, 154, 95, 191, 171, 41, 244, 63, 251, 9, 239, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 32, 56, 184, 125, 101, 191, 171, 41, 244, 63, 10, 4, 217, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 32, 56, 66, 175, 96, 191, 230, 239, 38, 64, 92, 49, 240, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 0, 56, 7, 217, 109, 191, 138, 115, 154, 63, 42, 69, 170, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 64, 56, 201, 26, 105, 191, 211, 122, 1, 63, 52, 28, 193, 190, 135, 0, 220, 0, 220, 0, 121, 127, 128, 59, 96, 56, 178, 177, 108, 191, 211, 122, 1, 63, 190, 113, 169, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 96, 56, 164, 61, 106, 191, 138, 115, 154, 63, 39, 13, 194, 190, 135, 0, 220, 0, 220, 0, 121, 127, 128, 59, 64, 56, 205, 15, 117, 191, 138, 115, 154, 63, 92, 106, 117, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 64, 56, 154, 72, 112, 191, 211, 122, 1, 63, 71, 199, 145, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 96, 56, 130, 223, 115, 191, 211, 122, 1, 63, 161, 57, 116, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 96, 56, 106, 116, 113, 191, 138, 115, 154, 63, 44, 125, 146, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 64, 56, 98, 112, 119, 191, 230, 239, 38, 64, 208, 203, 119, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 0, 56, 58, 160, 114, 191, 171, 41, 244, 63, 16, 51, 147, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 32, 56, 24, 64, 118, 191, 171, 41, 244, 63, 22, 155, 118, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 32, 56, 10, 204, 115, 191, 230, 239, 38, 64, 245, 232, 147, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 0, 56, 250, 226, 121, 191, 138, 115, 154, 63, 198, 99, 20, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 64, 56, 107, 118, 119, 191, 211, 122, 1, 63, 180, 228, 68, 190, 130, 0, 244, 0, 244, 0, 126, 127, 192, 59, 96, 56, 178, 172, 120, 191, 211, 122, 1, 63, 134, 171, 19, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 96, 56, 48, 171, 120, 191, 138, 115, 154, 63, 96, 218, 69, 190, 130, 0, 244, 0, 244, 0, 126, 127, 192, 59, 64, 56, 144, 82, 124, 191, 138, 115, 154, 63, 72, 218, 69, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 64, 56, 250, 226, 121, 191, 211, 122, 1, 63, 174, 228, 196, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 96, 56, 65, 25, 123, 191, 211, 122, 1, 63, 159, 228, 68, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 96, 56, 197, 26, 123, 191, 138, 115, 154, 63, 88, 218, 197, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 64, 56, 44, 197, 126, 191, 230, 239, 38, 64, 155, 197, 71, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 0, 56, 144, 82, 124, 191, 171, 41, 244, 63, 3, 208, 198, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 32, 56, 222, 139, 125, 191, 171, 41, 244, 63, 241, 207, 70, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 32, 56, 92, 138, 125, 191, 230, 239, 38, 64, 174, 197, 199, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 0, 56, 144, 82, 124, 191, 138, 115, 154, 63, 136, 218, 69, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 64, 56, 136, 79, 124, 191, 211, 122, 1, 63, 0, 114, 229, 51, 130, 0, 12, 0, 12, 0, 126, 127, 0, 0, 96, 56, 66, 25, 123, 191, 211, 122, 1, 63, 216, 228, 68, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 31, 96, 56, 90, 138, 125, 191, 138, 115, 154, 63, 0, 114, 253, 51, 130, 0, 12, 0, 12, 0, 126, 127, 0, 0, 64, 56, 252, 226, 121, 191, 138, 115, 154, 63, 214, 99, 20, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 64, 56, 251, 226, 121, 191, 211, 122, 1, 63, 202, 228, 196, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 35, 96, 56, 180, 172, 120, 191, 211, 122, 1, 63, 148, 171, 19, 62, 130, 0, 12, 0, 12, 0, 126, 127, 255, 37, 96, 56, 198, 26, 123, 191, 138, 115, 154, 63, 120, 218, 197, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 64, 56, 141, 79, 124, 191, 230, 239, 38, 64, 90, 212, 21, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 0, 56, 146, 82, 124, 191, 171, 41, 244, 63, 38, 208, 198, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 32, 56, 69, 25, 123, 191, 171, 41, 244, 63, 24, 28, 21, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 32, 56, 93, 138, 125, 191, 230, 239, 38, 64, 212, 197, 199, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 0, 56, 208, 15, 117, 191, 138, 115, 154, 63, 108, 106, 117, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 64, 56, 110, 118, 119, 191, 211, 122, 1, 63, 196, 228, 68, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 39, 96, 56, 134, 223, 115, 191, 211, 122, 1, 63, 177, 57, 116, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 40, 96, 56, 51, 171, 120, 191, 138, 115, 154, 63, 112, 218, 69, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 40, 64, 56, 11, 217, 109, 191, 138, 115, 154, 63, 50, 69, 170, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 64, 56, 158, 72, 112, 191, 211, 122, 1, 63, 79, 199, 145, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 41, 96, 56, 182, 177, 108, 191, 211, 122, 1, 63, 198, 113, 169, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 42, 96, 56, 110, 116, 113, 191, 138, 115, 154, 63, 52, 125, 146, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 64, 56, 182, 39, 112, 191, 230, 239, 38, 64, 12, 236, 171, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 0, 56, 62, 160, 114, 191, 171, 41, 244, 63, 26, 51, 147, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 32, 56, 96, 0, 111, 191, 171, 41, 244, 63, 160, 24, 171, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 32, 56, 14, 204, 115, 191, 230, 239, 38, 64, 255, 232, 147, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 0, 56, 41, 98, 100, 191, 138, 115, 154, 63, 236, 247, 215, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 64, 56, 206, 26, 105, 191, 211, 122, 1, 63, 61, 28, 193, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 44, 95, 56, 148, 70, 99, 191, 211, 122, 1, 63, 192, 235, 214, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 95, 56, 168, 61, 106, 191, 138, 115, 154, 63, 49, 13, 194, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 44, 64, 56, 43, 171, 88, 191, 138, 115, 154, 63, 176, 230, 1, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 64, 56, 91, 114, 93, 191, 211, 122, 1, 63, 68, 187, 236, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 95, 56, 34, 158, 87, 191, 211, 122, 1, 63, 100, 69, 1, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 95, 56, 170, 134, 94, 191, 138, 115, 154, 63, 166, 226, 237, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 64, 56, 61, 197, 90, 191, 230, 239, 38, 64, 72, 41, 3, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 0, 56, 249, 154, 95, 191, 171, 41, 244, 63, 7, 10, 239, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 32, 56, 52, 184, 89, 191, 171, 41, 244, 63, 252, 135, 2, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 32, 56, 72, 175, 96, 191, 230, 239, 38, 64, 104, 49, 240, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 0, 56, 176, 237, 74, 191, 138, 115, 154, 63, 250, 118, 22, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 64, 56, 232, 201, 81, 191, 211, 122, 1, 63, 38, 45, 12, 63, 158, 0, 80, 0, 80, 0, 98, 127, 0, 46, 95, 56, 182, 241, 73, 191, 211, 122, 1, 63, 37, 188, 21, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 95, 56, 172, 207, 82, 191, 138, 115, 154, 63, 13, 220, 12, 63, 158, 0, 80, 0, 80, 0, 98, 127, 0, 46, 64, 56, 184, 41, 59, 191, 138, 115, 154, 63, 210, 172, 41, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 64, 56, 132, 25, 66, 191, 211, 122, 1, 63, 36, 75, 31, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 95, 56, 82, 65, 58, 191, 211, 122, 1, 63, 35, 218, 40, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 95, 56, 180, 11, 67, 191, 138, 115, 154, 63, 230, 17, 32, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 64, 56, 132, 250, 60, 191, 230, 239, 38, 64, 48, 82, 43, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 0, 56, 228, 253, 67, 191, 171, 41, 244, 63, 168, 216, 32, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 32, 56, 30, 18, 60, 191, 171, 41, 244, 63, 129, 127, 42, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 32, 56, 20, 240, 68, 191, 230, 239, 38, 64, 105, 159, 33, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 0, 56, 208, 172, 41, 191, 138, 115, 154, 63, 186, 41, 59, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 64, 56, 32, 105, 50, 191, 211, 122, 1, 63, 34, 105, 50, 63, 176, 0, 98, 0, 98, 0, 80, 127, 255, 47, 95, 56, 33, 218, 40, 191, 211, 122, 1, 63, 84, 65, 58, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 95, 56, 188, 71, 51, 191, 138, 115, 154, 63, 190, 71, 51, 63, 176, 0, 98, 0, 98, 0, 80, 127, 255, 47, 64, 56, 248, 118, 22, 191, 138, 115, 154, 63, 178, 237, 74, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 64, 56, 34, 75, 31, 191, 211, 122, 1, 63, 134, 25, 66, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 95, 56, 36, 188, 21, 191, 211, 122, 1, 63, 185, 241, 73, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 95, 56, 228, 17, 32, 191, 138, 115, 154, 63, 182, 11, 67, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 64, 56, 162, 236, 23, 191, 230, 239, 38, 64, 166, 229, 76, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 0, 56, 166, 216, 32, 191, 171, 41, 244, 63, 230, 253, 67, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 32, 56, 205, 49, 23, 191, 171, 41, 244, 63, 172, 233, 75, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 32, 56, 104, 159, 33, 191, 230, 239, 38, 64, 22, 240, 68, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 0, 56, 100, 69, 1, 191, 211, 122, 1, 63, 38, 158, 87, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 95, 56, 13, 220, 12, 191, 138, 115, 154, 63, 175, 207, 82, 63, 197, 0, 112, 0, 112, 0, 59, 127, 0, 49, 64, 56, 38, 45, 12, 191, 211, 122, 1, 63, 236, 201, 81, 63, 197, 0, 112, 0, 112, 0, 59, 127, 0, 49, 95, 56, 176, 230, 1, 191, 138, 115, 154, 63, 46, 171, 88, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 64, 56, 236, 247, 215, 190, 138, 115, 154, 63, 46, 98, 100, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 64, 56, 68, 187, 236, 190, 211, 122, 1, 63, 95, 114, 93, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 95, 56, 193, 235, 214, 190, 211, 122, 1, 63, 153, 70, 99, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 95, 56, 166, 226, 237, 190, 138, 115, 154, 63, 174, 134, 94, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 64, 56, 66, 16, 218, 190, 230, 239, 38, 64, 88, 153, 102, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 0, 56, 8, 10, 239, 190, 171, 41, 244, 63, 253, 154, 95, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 32, 56, 23, 4, 217, 190, 171, 41, 244, 63, 194, 125, 101, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 32, 56, 105, 49, 240, 190, 230, 239, 38, 64, 76, 175, 96, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 0, 56, 52, 69, 170, 190, 138, 115, 154, 63, 17, 217, 109, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 64, 56, 62, 28, 193, 190, 211, 122, 1, 63, 211, 26, 105, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 49, 95, 56, 199, 113, 169, 190, 211, 122, 1, 63, 188, 177, 108, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 95, 56, 50, 13, 194, 190, 138, 115, 154, 63, 174, 61, 106, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 49, 64, 56, 110, 106, 117, 190, 138, 115, 154, 63, 215, 15, 117, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 64, 56, 80, 199, 145, 190, 211, 122, 1, 63, 164, 72, 112, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 95, 56, 178, 57, 116, 190, 211, 122, 1, 63, 140, 223, 115, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 95, 56, 53, 125, 146, 190, 138, 115, 154, 63, 116, 116, 113, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 64, 56, 229, 203, 119, 190, 230, 239, 38, 64, 108, 112, 119, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 0, 56, 26, 51, 147, 190, 171, 41, 244, 63, 68, 160, 114, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 32, 56, 41, 155, 118, 190, 171, 41, 244, 63, 34, 64, 118, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 32, 56, 0, 233, 147, 190, 230, 239, 38, 64, 20, 204, 115, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 0, 56, 214, 99, 20, 190, 138, 115, 154, 63, 4, 227, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 64, 56, 196, 228, 68, 190, 211, 122, 1, 63, 117, 118, 119, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 50, 95, 56, 148, 171, 19, 190, 211, 122, 1, 63, 188, 172, 120, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 95, 56, 113, 218, 69, 190, 138, 115, 154, 63, 58, 171, 120, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 50, 64, 56, 132, 218, 69, 189, 138, 115, 154, 63, 152, 82, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 64, 56, 202, 228, 196, 189, 211, 122, 1, 63, 3, 227, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 95, 56, 214, 228, 68, 189, 211, 122, 1, 63, 74, 25, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 95, 56, 119, 218, 197, 189, 138, 115, 154, 63, 206, 26, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 64, 56, 222, 197, 71, 189, 230, 239, 38, 64, 54, 197, 126, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 0, 56, 36, 208, 198, 189, 171, 41, 244, 63, 154, 82, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 32, 56, 49, 208, 70, 189, 171, 41, 244, 63, 231, 139, 125, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 32, 56, 209, 197, 199, 189, 230, 239, 38, 64, 101, 138, 125, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 0, 56, 84, 218, 69, 61, 138, 115, 154, 63, 154, 82, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 64, 56, 217, 124, 191, 179, 211, 122, 1, 63, 146, 79, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 255, 51, 95, 56, 168, 228, 68, 61, 211, 122, 1, 63, 75, 25, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 95, 56, 217, 124, 199, 179, 138, 115, 154, 63, 99, 138, 125, 63, 12, 0, 126, 0, 126, 0, 244, 127, 255, 51, 64, 56, 203, 99, 20, 62, 138, 115, 154, 63, 6, 227, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 64, 56, 180, 228, 196, 61, 211, 122, 1, 63, 4, 227, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 95, 56, 138, 171, 19, 62, 211, 122, 1, 63, 190, 172, 120, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 95, 56, 96, 218, 197, 61, 138, 115, 154, 63, 208, 26, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 64, 56, 76, 212, 21, 62, 230, 239, 38, 64, 150, 79, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 0, 56, 12, 208, 198, 61, 171, 41, 244, 63, 155, 82, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 32, 56, 12, 28, 21, 62, 171, 41, 244, 63, 78, 25, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 32, 56, 183, 197, 199, 61, 230, 239, 38, 64, 102, 138, 125, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 0, 56, 99, 106, 117, 62, 138, 115, 154, 63, 217, 15, 117, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 64, 56, 186, 228, 68, 62, 211, 122, 1, 63, 119, 118, 119, 63, 36, 0, 121, 0, 121, 0, 220, 127, 127, 52, 95, 56, 168, 57, 116, 62, 211, 122, 1, 63, 142, 223, 115, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 95, 56, 102, 218, 69, 62, 138, 115, 154, 63, 60, 171, 120, 63, 36, 0, 121, 0, 121, 0, 220, 127, 127, 52, 64, 56, 46, 69, 170, 62, 138, 115, 154, 63, 19, 217, 109, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 64, 56, 75, 199, 145, 62, 211, 122, 1, 63, 166, 72, 112, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 95, 56, 194, 113, 169, 62, 211, 122, 1, 63, 190, 177, 108, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 95, 56, 48, 125, 146, 62, 138, 115, 154, 63, 118, 116, 113, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 64, 56, 6, 236, 171, 62, 230, 239, 38, 64, 190, 39, 112, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 0, 56, 20, 51, 147, 62, 171, 41, 244, 63, 70, 160, 114, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 32, 56, 154, 24, 171, 62, 171, 41, 244, 63, 104, 0, 111, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 32, 56, 249, 232, 147, 62, 230, 239, 38, 64, 22, 204, 115, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 0, 56, 232, 247, 215, 62, 138, 115, 154, 63, 49, 98, 100, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 64, 56, 58, 28, 193, 62, 211, 122, 1, 63, 214, 26, 105, 63, 59, 0, 112, 0, 112, 0, 197, 127, 255, 52, 95, 56, 190, 235, 214, 62, 211, 122, 1, 63, 156, 70, 99, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 95, 56, 45, 13, 194, 62, 138, 115, 154, 63, 176, 61, 106, 63, 59, 0, 112, 0, 112, 0, 197, 127, 255, 52, 64, 56, 174, 230, 1, 63, 138, 115, 154, 63, 50, 171, 88, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 64, 56, 65, 187, 236, 62, 211, 122, 1, 63, 99, 114, 93, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 95, 56, 98, 69, 1, 63, 211, 122, 1, 63, 42, 158, 87, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 95, 56, 162, 226, 237, 62, 138, 115, 154, 63, 178, 134, 94, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 64, 56, 70, 41, 3, 63, 230, 239, 38, 64, 68, 197, 90, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 0, 56, 3, 10, 239, 62, 171, 41, 244, 63, 1, 155, 95, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 32, 56, 250, 135, 2, 63, 171, 41, 244, 63, 60, 184, 89, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 32, 56, 100, 49, 240, 62, 230, 239, 38, 64, 80, 175, 96, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 0, 56, 248, 118, 22, 63, 138, 115, 154, 63, 182, 237, 74, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 64, 56, 36, 45, 12, 63, 211, 122, 1, 63, 240, 201, 81, 63, 80, 0, 98, 0, 98, 0, 176, 127, 127, 53, 95, 56, 35, 188, 21, 63, 211, 122, 1, 63, 190, 241, 73, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 95, 56, 12, 220, 12, 63, 138, 115, 154, 63, 179, 207, 82, 63, 80, 0, 98, 0, 98, 0, 176, 127, 127, 53, 64, 56, 208, 172, 41, 63, 138, 115, 154, 63, 190, 41, 59, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 64, 56, 34, 75, 31, 63, 211, 122, 1, 63, 139, 25, 66, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 95, 56, 33, 218, 40, 63, 211, 122, 1, 63, 88, 65, 58, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 95, 56, 228, 17, 32, 63, 138, 115, 154, 63, 186, 11, 67, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 64, 56, 46, 82, 43, 63, 230, 239, 38, 64, 138, 250, 60, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 0, 56, 166, 216, 32, 63, 171, 41, 244, 63, 234, 253, 67, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 32, 56, 127, 127, 42, 63, 171, 41, 244, 63, 36, 18, 60, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 32, 56, 103, 159, 33, 63, 230, 239, 38, 64, 26, 240, 68, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 0, 56, 184, 41, 59, 63, 138, 115, 154, 63, 214, 172, 41, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 64, 56, 32, 105, 50, 63, 211, 122, 1, 63, 38, 105, 50, 63, 98, 0, 80, 0, 80, 0, 158, 127, 255, 53, 95, 56, 82, 65, 58, 63, 211, 122, 1, 63, 39, 218, 40, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 95, 56, 188, 71, 51, 63, 138, 115, 154, 63, 194, 71, 51, 63, 98, 0, 80, 0, 80, 0, 158, 127, 255, 53, 64, 56, 176, 237, 74, 63, 138, 115, 154, 63, 254, 118, 22, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 64, 56, 133, 25, 66, 63, 211, 122, 1, 63, 40, 75, 31, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 95, 56, 184, 241, 73, 63, 211, 122, 1, 63, 42, 188, 21, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 95, 56, 180, 11, 67, 63, 138, 115, 154, 63, 234, 17, 32, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 64, 56, 164, 229, 76, 63, 230, 239, 38, 64, 168, 236, 23, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 0, 56, 228, 253, 67, 63, 171, 41, 244, 63, 172, 216, 32, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 32, 56, 170, 233, 75, 63, 171, 41, 244, 63, 211, 49, 23, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 32, 56, 20, 240, 68, 63, 230, 239, 38, 64, 110, 159, 33, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 0, 56, 44, 171, 88, 63, 138, 115, 154, 63, 181, 230, 1, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 64, 56, 234, 201, 81, 63, 211, 122, 1, 63, 43, 45, 12, 63, 112, 0, 59, 0, 59, 0, 144, 127, 127, 54, 95, 56, 36, 158, 87, 63, 211, 122, 1, 63, 106, 69, 1, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 95, 56, 173, 207, 82, 63, 138, 115, 154, 63, 18, 220, 12, 63, 112, 0, 59, 0, 59, 0, 144, 127, 127, 54, 64, 56, 44, 98, 100, 63, 138, 115, 154, 63, 246, 247, 215, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 64, 56, 93, 114, 93, 63, 211, 122, 1, 63, 80, 187, 236, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 95, 56, 151, 70, 99, 63, 211, 122, 1, 63, 205, 235, 214, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 95, 56, 172, 134, 94, 63, 138, 115, 154, 63, 176, 226, 237, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 64, 56, 86, 153, 102, 63, 230, 239, 38, 64, 76, 16, 218, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 0, 56, 251, 154, 95, 63, 171, 41, 244, 63, 18, 10, 239, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 32, 56, 192, 125, 101, 63, 171, 41, 244, 63, 33, 4, 217, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 32, 56, 74, 175, 96, 63, 230, 239, 38, 64, 115, 49, 240, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 0, 56, 15, 217, 109, 63, 138, 115, 154, 63, 62, 69, 170, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 64, 56, 209, 26, 105, 63, 211, 122, 1, 63, 74, 28, 193, 62, 121, 0, 36, 0, 36, 0, 135, 127, 255, 54, 95, 56, 186, 177, 108, 63, 211, 122, 1, 63, 211, 113, 169, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 95, 56, 172, 61, 106, 63, 138, 115, 154, 63, 61, 13, 194, 62, 121, 0, 36, 0, 36, 0, 135, 127, 255, 54, 64, 56, 213, 15, 117, 63, 138, 115, 154, 63, 131, 106, 117, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 64, 56, 162, 72, 112, 63, 211, 122, 1, 63, 92, 199, 145, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 95, 56, 138, 223, 115, 63, 211, 122, 1, 63, 201, 57, 116, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 95, 56, 114, 116, 113, 63, 138, 115, 154, 63, 64, 125, 146, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 64, 56, 106, 112, 119, 63, 230, 239, 38, 64, 249, 203, 119, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 0, 56, 66, 160, 114, 63, 171, 41, 244, 63, 37, 51, 147, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 32, 56, 32, 64, 118, 63, 171, 41, 244, 63, 62, 155, 118, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 32, 56, 18, 204, 115, 63, 230, 239, 38, 64, 10, 233, 147, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 0, 56, 2, 227, 121, 63, 138, 115, 154, 63, 235, 99, 20, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 64, 56, 115, 118, 119, 63, 211, 122, 1, 63, 218, 228, 68, 62, 126, 0, 12, 0, 12, 0, 130, 127, 127, 55, 95, 56, 186, 172, 120, 63, 211, 122, 1, 63, 170, 171, 19, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 95, 56, 56, 171, 120, 63, 138, 115, 154, 63, 134, 218, 69, 62, 126, 0, 12, 0, 12, 0, 130, 127, 127, 55, 64, 56, 150, 82, 124, 63, 138, 115, 154, 63, 212, 218, 69, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 64, 56, 1, 227, 121, 63, 211, 122, 1, 63, 244, 228, 196, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 95, 56, 72, 25, 123, 63, 211, 122, 1, 63, 41, 229, 68, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 95, 56, 204, 26, 123, 63, 138, 115, 154, 63, 160, 218, 197, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 64, 56, 52, 197, 126, 63, 230, 239, 38, 64, 43, 198, 71, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 0, 56, 152, 82, 124, 63, 171, 41, 244, 63, 76, 208, 198, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 32, 56, 229, 139, 125, 63, 171, 41, 244, 63, 128, 208, 70, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 32, 56, 99, 138, 125, 63, 230, 239, 38, 64, 248, 197, 199, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 0, 56, 151, 82, 124, 63, 138, 115, 154, 63, 6, 218, 69, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 64, 56, 144, 79, 124, 63, 211, 122, 1, 63, 128, 92, 209, 52, 126, 0, 244, 0, 244, 0, 130, 127, 255, 55, 95, 56, 73, 25, 123, 63, 211, 122, 1, 63, 90, 228, 68, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 95, 56, 97, 138, 125, 63, 138, 115, 154, 63, 128, 92, 207, 52, 126, 0, 244, 0, 244, 0, 130, 127, 255, 55, 64, 56, 3, 227, 121, 63, 138, 115, 154, 63, 184, 99, 20, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 64, 56, 2, 227, 121, 63, 211, 122, 1, 63, 142, 228, 196, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 95, 56, 187, 172, 120, 63, 211, 122, 1, 63, 120, 171, 19, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 95, 56, 205, 26, 123, 63, 138, 115, 154, 63, 58, 218, 197, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 64, 56, 146, 79, 124, 63, 230, 239, 38, 64, 58, 212, 21, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 0, 56, 152, 82, 124, 63, 171, 41, 244, 63, 230, 207, 198, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 32, 56, 75, 25, 123, 63, 171, 41, 244, 63, 250, 27, 21, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 32, 56, 99, 138, 125, 63, 230, 239, 38, 64, 146, 197, 199, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 0, 56, 214, 15, 117, 63, 138, 115, 154, 63, 82, 106, 117, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 64, 56, 116, 118, 119, 63, 211, 122, 1, 63, 168, 228, 68, 190, 121, 0, 220, 0, 220, 0, 135, 127, 63, 56, 95, 56, 140, 223, 115, 63, 211, 122, 1, 63, 151, 57, 116, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 95, 56, 57, 171, 120, 63, 138, 115, 154, 63, 84, 218, 69, 190, 121, 0, 220, 0, 220, 0, 135, 127, 63, 56, 64, 56, 17, 217, 109, 63, 138, 115, 154, 63, 38, 69, 170, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 64, 56, 164, 72, 112, 63, 211, 122, 1, 63, 67, 199, 145, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 95, 56, 188, 177, 108, 63, 211, 122, 1, 63, 186, 113, 169, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 95, 56, 116, 116, 113, 63, 138, 115, 154, 63, 40, 125, 146, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 64, 56, 186, 39, 112, 63, 230, 239, 38, 64, 254, 235, 171, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 0, 56, 67, 160, 114, 63, 171, 41, 244, 63, 12, 51, 147, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 32, 56, 102, 0, 111, 63, 171, 41, 244, 63, 146, 24, 171, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 32, 56, 18, 204, 115, 63, 230, 239, 38, 64, 241, 232, 147, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 0, 56, 46, 98, 100, 63, 138, 115, 154, 63, 224, 247, 215, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 64, 56, 212, 26, 105, 63, 211, 122, 1, 63, 50, 28, 193, 190, 112, 0, 197, 0, 197, 0, 144, 127, 127, 56, 95, 56, 154, 70, 99, 63, 211, 122, 1, 63, 182, 235, 214, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 95, 56, 174, 61, 106, 63, 138, 115, 154, 63, 37, 13, 194, 190, 112, 0, 197, 0, 197, 0, 144, 127, 127, 56, 64, 56, 48, 171, 88, 63, 138, 115, 154, 63, 170, 230, 1, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 64, 56, 96, 114, 93, 63, 211, 122, 1, 63, 58, 187, 236, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 95, 56, 39, 158, 87, 63, 211, 122, 1, 63, 95, 69, 1, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 95, 56, 175, 134, 94, 63, 138, 115, 154, 63, 154, 226, 237, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 64, 56, 64, 197, 90, 63, 230, 239, 38, 64, 66, 41, 3, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 0, 56, 254, 154, 95, 63, 171, 41, 244, 63, 251, 9, 239, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 32, 56, 56, 184, 89, 63, 171, 41, 244, 63, 246, 135, 2, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 32, 56, 76, 175, 96, 63, 230, 239, 38, 64, 92, 49, 240, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 0, 56, 180, 237, 74, 63, 138, 115, 154, 63, 244, 118, 22, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 64, 56, 238, 201, 81, 63, 211, 122, 1, 63, 33, 45, 12, 191, 98, 0, 176, 0, 176, 0, 158, 127, 191, 56, 95, 56, 188, 241, 73, 63, 211, 122, 1, 63, 32, 188, 21, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 95, 56, 176, 207, 82, 63, 138, 115, 154, 63, 8, 220, 12, 191, 98, 0, 176, 0, 176, 0, 158, 127, 191, 56, 64, 56, 188, 41, 59, 63, 138, 115, 154, 63, 204, 172, 41, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 64, 56, 137, 25, 66, 63, 211, 122, 1, 63, 31, 75, 31, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 95, 56, 86, 65, 58, 63, 211, 122, 1, 63, 30, 218, 40, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 95, 56, 184, 11, 67, 63, 138, 115, 154, 63, 224, 17, 32, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 64, 56, 134, 250, 60, 63, 230, 239, 38, 64, 42, 82, 43, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 0, 56, 231, 253, 67, 63, 171, 41, 244, 63, 162, 216, 32, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 32, 56, 34, 18, 60, 63, 171, 41, 244, 63, 123, 127, 42, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 32, 56, 22, 240, 68, 63, 230, 239, 38, 64, 99, 159, 33, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 0, 56, 212, 172, 41, 63, 138, 115, 154, 63, 182, 41, 59, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 64, 56, 36, 105, 50, 63, 211, 122, 1, 63, 30, 105, 50, 191, 80, 0, 158, 0, 158, 0, 176, 127, 255, 56, 95, 56, 37, 218, 40, 63, 211, 122, 1, 63, 80, 65, 58, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 95, 56, 192, 71, 51, 63, 138, 115, 154, 63, 185, 71, 51, 191, 80, 0, 158, 0, 158, 0, 176, 127, 255, 56, 64, 56, 252, 118, 22, 63, 138, 115, 154, 63, 174, 237, 74, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 64, 56, 38, 75, 31, 63, 211, 122, 1, 63, 131, 25, 66, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 95, 56, 39, 188, 21, 63, 211, 122, 1, 63, 182, 241, 73, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 95, 56, 232, 17, 32, 63, 138, 115, 154, 63, 178, 11, 67, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 64, 56, 164, 236, 23, 63, 230, 239, 38, 64, 160, 229, 76, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 0, 56, 169, 216, 32, 63, 171, 41, 244, 63, 225, 253, 67, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 32, 56, 208, 49, 23, 63, 171, 41, 244, 63, 166, 233, 75, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 32, 56, 106, 159, 33, 63, 230, 239, 38, 64, 16, 240, 68, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 0, 56, 178, 230, 1, 63, 138, 115, 154, 63, 42, 171, 88, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 64, 56, 40, 45, 12, 63, 211, 122, 1, 63, 232, 201, 81, 191, 59, 0, 144, 0, 144, 0, 197, 127, 64, 57, 95, 56, 102, 69, 1, 63, 211, 122, 1, 63, 34, 158, 87, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 95, 56, 15, 220, 12, 63, 138, 115, 154, 63, 170, 207, 82, 191, 59, 0, 144, 0, 144, 0, 197, 127, 63, 57, 64, 56, 238, 247, 215, 62, 138, 115, 154, 63, 42, 98, 100, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 64, 56, 72, 187, 236, 62, 211, 122, 1, 63, 92, 114, 93, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 95, 56, 196, 235, 214, 62, 211, 122, 1, 63, 150, 70, 99, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 95, 56, 169, 226, 237, 62, 138, 115, 154, 63, 170, 134, 94, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 64, 56, 66, 16, 218, 62, 230, 239, 38, 64, 82, 153, 102, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 0, 56, 10, 10, 239, 62, 171, 41, 244, 63, 248, 154, 95, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 32, 56, 24, 4, 217, 62, 171, 41, 244, 63, 190, 125, 101, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 32, 56, 106, 49, 240, 62, 230, 239, 38, 64, 70, 175, 96, 191, 59, 0, 144, 0, 144, 0, 197, 127, 95, 57, 0, 56, 53, 69, 170, 62, 138, 115, 154, 63, 13, 217, 109, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 64, 56, 65, 28, 193, 62, 211, 122, 1, 63, 208, 26, 105, 191, 36, 0, 135, 0, 135, 0, 220, 127, 128, 57, 95, 56, 202, 113, 169, 62, 211, 122, 1, 63, 184, 177, 108, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 95, 56, 52, 13, 194, 62, 138, 115, 154, 63, 170, 61, 106, 191, 36, 0, 135, 0, 135, 0, 220, 127, 128, 57, 64, 56, 110, 106, 117, 62, 138, 115, 154, 63, 211, 15, 117, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 64, 56, 82, 199, 145, 62, 211, 122, 1, 63, 161, 72, 112, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 95, 56, 180, 57, 116, 62, 211, 122, 1, 63, 138, 223, 115, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 95, 56, 54, 125, 146, 62, 138, 115, 154, 63, 112, 116, 113, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 64, 56, 225, 203, 119, 62, 230, 239, 38, 64, 102, 112, 119, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 0, 56, 26, 51, 147, 62, 171, 41, 244, 63, 63, 160, 114, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 32, 56, 40, 155, 118, 62, 171, 41, 244, 63, 28, 64, 118, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 32, 56, 254, 232, 147, 62, 230, 239, 38, 64, 14, 204, 115, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 0, 56, 212, 99, 20, 62, 138, 115, 154, 63, 0, 227, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 64, 56, 197, 228, 68, 62, 211, 122, 1, 63, 114, 118, 119, 191, 12, 0, 130, 0, 130, 0, 244, 127, 192, 57, 95, 56, 148, 171, 19, 62, 211, 122, 1, 63, 186, 172, 120, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 95, 56, 112, 218, 69, 62, 138, 115, 154, 63, 54, 171, 120, 191, 12, 0, 130, 0, 130, 0, 244, 127, 192, 57, 64, 56, 112, 218, 69, 61, 138, 115, 154, 63, 150, 82, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 64, 56, 197, 228, 196, 61, 211, 122, 1, 63, 1, 227, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 95, 56, 197, 228, 68, 61, 211, 122, 1, 63, 72, 25, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 95, 56, 112, 218, 197, 61, 138, 115, 154, 63, 203, 26, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 64, 56, 198, 197, 71, 61, 230, 239, 38, 64, 48, 197, 126, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 0, 56, 27, 208, 198, 61, 171, 41, 244, 63, 149, 82, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 32, 56, 27, 208, 70, 61, 171, 41, 244, 63, 226, 139, 125, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 32, 56, 198, 197, 199, 61, 230, 239, 38, 64, 95, 138, 125, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 0, 56, 27, 208, 70, 61, 171, 41, 244, 63, 226, 139, 125, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 32, 56, 112, 218, 197, 61, 138, 115, 154, 63, 203, 26, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 64, 56, 112, 218, 69, 61, 138, 115, 154, 63, 150, 82, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 64, 56, 27, 208, 198, 61, 171, 41, 244, 63, 149, 82, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 32, 56, 0, 0, 0, 0, 171, 41, 244, 63, 48, 197, 126, 191, 12, 0, 130, 0, 130, 0, 244, 127, 0, 58, 32, 56, 112, 218, 69, 61, 138, 115, 154, 63, 150, 82, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 64, 56, 0, 0, 0, 0, 138, 115, 154, 63, 96, 138, 125, 191, 12, 0, 130, 0, 130, 0, 244, 127, 0, 58, 64, 56, 27, 208, 70, 61, 171, 41, 244, 63, 226, 139, 125, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 32, 56, 0, 0, 0, 0, 230, 239, 38, 64, 0, 0, 128, 191, 12, 0, 130, 0, 130, 0, 244, 127, 0, 58, 0, 56, 27, 208, 70, 61, 171, 41, 244, 63, 226, 139, 125, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 32, 56, 0, 0, 0, 0, 171, 41, 244, 63, 48, 197, 126, 191, 12, 0, 130, 0, 130, 0, 244, 127, 0, 58, 32, 56, 198, 197, 71, 61, 230, 239, 38, 64, 48, 197, 126, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 0, 56, 0, 0, 0, 0, 138, 115, 154, 63, 96, 138, 125, 191, 12, 0, 130, 0, 130, 0, 244, 127, 0, 58, 64, 56, 197, 228, 68, 61, 211, 122, 1, 63, 72, 25, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 95, 56, 0, 0, 0, 0, 211, 122, 1, 63, 144, 79, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 0, 58, 95, 56, 112, 218, 69, 61, 138, 115, 154, 63, 150, 82, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 64, 56, 112, 218, 197, 61, 138, 115, 154, 63, 203, 26, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 64, 56, 148, 171, 19, 62, 211, 122, 1, 63, 186, 172, 120, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 95, 56, 197, 228, 196, 61, 211, 122, 1, 63, 1, 227, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 95, 56, 212, 99, 20, 62, 138, 115, 154, 63, 0, 227, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 64, 56, 40, 155, 118, 62, 171, 41, 244, 63, 28, 64, 118, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 32, 56, 54, 125, 146, 62, 138, 115, 154, 63, 112, 116, 113, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 64, 56, 110, 106, 117, 62, 138, 115, 154, 63, 211, 15, 117, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 64, 56, 26, 51, 147, 62, 171, 41, 244, 63, 63, 160, 114, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 32, 56, 27, 208, 70, 62, 171, 41, 244, 63, 250, 223, 121, 191, 36, 0, 135, 0, 135, 0, 220, 127, 192, 57, 32, 56, 110, 106, 117, 62, 138, 115, 154, 63, 211, 15, 117, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 64, 56, 112, 218, 69, 62, 138, 115, 154, 63, 54, 171, 120, 191, 36, 0, 135, 0, 135, 0, 220, 127, 192, 57, 64, 56, 40, 155, 118, 62, 171, 41, 244, 63, 28, 64, 118, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 32, 56, 198, 197, 71, 62, 230, 239, 38, 64, 190, 20, 123, 191, 36, 0, 135, 0, 135, 0, 220, 127, 192, 57, 0, 56, 40, 155, 118, 62, 171, 41, 244, 63, 28, 64, 118, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 32, 56, 27, 208, 70, 62, 171, 41, 244, 63, 250, 223, 121, 191, 36, 0, 135, 0, 135, 0, 220, 127, 192, 57, 32, 56, 225, 203, 119, 62, 230, 239, 38, 64, 102, 112, 119, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 0, 56, 112, 218, 69, 62, 138, 115, 154, 63, 54, 171, 120, 191, 36, 0, 135, 0, 135, 0, 220, 127, 192, 57, 64, 56, 180, 57, 116, 62, 211, 122, 1, 63, 138, 223, 115, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 95, 56, 197, 228, 68, 62, 211, 122, 1, 63, 114, 118, 119, 191, 36, 0, 135, 0, 135, 0, 220, 127, 192, 57, 95, 56, 110, 106, 117, 62, 138, 115, 154, 63, 211, 15, 117, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 64, 56, 54, 125, 146, 62, 138, 115, 154, 63, 112, 116, 113, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 64, 56, 202, 113, 169, 62, 211, 122, 1, 63, 184, 177, 108, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 95, 56, 82, 199, 145, 62, 211, 122, 1, 63, 161, 72, 112, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 95, 56, 53, 69, 170, 62, 138, 115, 154, 63, 13, 217, 109, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 64, 56, 24, 4, 217, 62, 171, 41, 244, 63, 190, 125, 101, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 32, 56, 169, 226, 237, 62, 138, 115, 154, 63, 170, 134, 94, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 64, 56, 238, 247, 215, 62, 138, 115, 154, 63, 42, 98, 100, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 64, 56, 10, 10, 239, 62, 171, 41, 244, 63, 248, 154, 95, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 32, 56, 38, 254, 194, 62, 171, 41, 244, 63, 132, 96, 107, 191, 59, 0, 144, 0, 144, 0, 197, 127, 128, 57, 32, 56, 238, 247, 215, 62, 138, 115, 154, 63, 42, 98, 100, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 64, 56, 52, 13, 194, 62, 138, 115, 154, 63, 170, 61, 106, 191, 59, 0, 144, 0, 144, 0, 197, 127, 128, 57, 64, 56, 24, 4, 217, 62, 171, 41, 244, 63, 190, 125, 101, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 32, 56, 25, 239, 195, 62, 230, 239, 38, 64, 93, 131, 108, 191, 59, 0, 144, 0, 144, 0, 197, 127, 128, 57, 0, 56, 24, 4, 217, 62, 171, 41, 244, 63, 190, 125, 101, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 32, 56, 38, 254, 194, 62, 171, 41, 244, 63, 132, 96, 107, 191, 59, 0, 144, 0, 144, 0, 197, 127, 128, 57, 32, 56, 66, 16, 218, 62, 230, 239, 38, 64, 82, 153, 102, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 0, 56, 52, 13, 194, 62, 138, 115, 154, 63, 170, 61, 106, 191, 59, 0, 144, 0, 144, 0, 197, 127, 128, 57, 64, 56, 196, 235, 214, 62, 211, 122, 1, 63, 150, 70, 99, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 95, 56, 65, 28, 193, 62, 211, 122, 1, 63, 208, 26, 105, 191, 59, 0, 144, 0, 144, 0, 197, 127, 128, 57, 95, 56, 238, 247, 215, 62, 138, 115, 154, 63, 42, 98, 100, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 64, 56, 169, 226, 237, 62, 138, 115, 154, 63, 170, 134, 94, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 64, 56, 102, 69, 1, 63, 211, 122, 1, 63, 34, 158, 87, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 95, 56, 72, 187, 236, 62, 211, 122, 1, 63, 92, 114, 93, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 95, 56, 178, 230, 1, 63, 138, 115, 154, 63, 42, 171, 88, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 64, 56, 208, 49, 23, 63, 171, 41, 244, 63, 166, 233, 75, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 32, 56, 232, 17, 32, 63, 138, 115, 154, 63, 178, 11, 67, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 64, 56, 252, 118, 22, 63, 138, 115, 154, 63, 174, 237, 74, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 64, 56, 169, 216, 32, 63, 171, 41, 244, 63, 225, 253, 67, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 32, 56, 246, 138, 13, 63, 171, 41, 244, 63, 108, 213, 83, 191, 80, 0, 158, 0, 158, 0, 176, 127, 63, 57, 32, 56, 252, 118, 22, 63, 138, 115, 154, 63, 174, 237, 74, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 64, 56, 15, 220, 12, 63, 138, 115, 154, 63, 170, 207, 82, 191, 80, 0, 158, 0, 158, 0, 176, 127, 63, 57, 64, 56, 208, 49, 23, 63, 171, 41, 244, 63, 166, 233, 75, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 32, 56, 221, 57, 14, 63, 230, 239, 38, 64, 47, 219, 84, 191, 80, 0, 158, 0, 158, 0, 176, 127, 63, 57, 0, 56, 208, 49, 23, 63, 171, 41, 244, 63, 166, 233, 75, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 32, 56, 246, 138, 13, 63, 171, 41, 244, 63, 108, 213, 83, 191, 80, 0, 158, 0, 158, 0, 176, 127, 63, 57, 32, 56, 164, 236, 23, 63, 230, 239, 38, 64, 160, 229, 76, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 0, 56, 15, 220, 12, 63, 138, 115, 154, 63, 170, 207, 82, 191, 80, 0, 158, 0, 158, 0, 176, 127, 63, 57, 64, 56, 39, 188, 21, 63, 211, 122, 1, 63, 182, 241, 73, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 95, 56, 40, 45, 12, 63, 211, 122, 1, 63, 232, 201, 81, 191, 80, 0, 158, 0, 158, 0, 176, 127, 64, 57, 95, 56, 252, 118, 22, 63, 138, 115, 154, 63, 174, 237, 74, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 64, 56, 232, 17, 32, 63, 138, 115, 154, 63, 178, 11, 67, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 64, 56, 37, 218, 40, 63, 211, 122, 1, 63, 80, 65, 58, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 95, 56, 38, 75, 31, 63, 211, 122, 1, 63, 131, 25, 66, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 95, 56, 212, 172, 41, 63, 138, 115, 154, 63, 182, 41, 59, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 64, 56, 34, 18, 60, 63, 171, 41, 244, 63, 123, 127, 42, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 32, 56, 184, 11, 67, 63, 138, 115, 154, 63, 224, 17, 32, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 64, 56, 188, 41, 59, 63, 138, 115, 154, 63, 204, 172, 41, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 64, 56, 231, 253, 67, 63, 171, 41, 244, 63, 162, 216, 32, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 32, 56, 92, 38, 52, 63, 171, 41, 244, 63, 84, 38, 52, 191, 98, 0, 176, 0, 176, 0, 158, 127, 255, 56, 32, 56, 188, 41, 59, 63, 138, 115, 154, 63, 204, 172, 41, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 64, 56, 192, 71, 51, 63, 138, 115, 154, 63, 185, 71, 51, 191, 98, 0, 176, 0, 176, 0, 158, 127, 255, 56, 64, 56, 34, 18, 60, 63, 171, 41, 244, 63, 123, 127, 42, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 32, 56, 247, 4, 53, 63, 230, 239, 38, 64, 240, 4, 53, 191, 98, 0, 176, 0, 176, 0, 158, 127, 255, 56, 0, 56, 34, 18, 60, 63, 171, 41, 244, 63, 123, 127, 42, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 32, 56, 92, 38, 52, 63, 171, 41, 244, 63, 84, 38, 52, 191, 98, 0, 176, 0, 176, 0, 158, 127, 255, 56, 32, 56, 134, 250, 60, 63, 230, 239, 38, 64, 42, 82, 43, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 0, 56, 192, 71, 51, 63, 138, 115, 154, 63, 185, 71, 51, 191, 98, 0, 176, 0, 176, 0, 158, 127, 255, 56, 64, 56, 86, 65, 58, 63, 211, 122, 1, 63, 30, 218, 40, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 95, 56, 36, 105, 50, 63, 211, 122, 1, 63, 30, 105, 50, 191, 98, 0, 176, 0, 176, 0, 158, 127, 255, 56, 95, 56, 188, 41, 59, 63, 138, 115, 154, 63, 204, 172, 41, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 64, 56, 184, 11, 67, 63, 138, 115, 154, 63, 224, 17, 32, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 64, 56, 188, 241, 73, 63, 211, 122, 1, 63, 32, 188, 21, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 95, 56, 137, 25, 66, 63, 211, 122, 1, 63, 31, 75, 31, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 95, 56, 180, 237, 74, 63, 138, 115, 154, 63, 244, 118, 22, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 64, 56, 56, 184, 89, 63, 171, 41, 244, 63, 246, 135, 2, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 32, 56, 175, 134, 94, 63, 138, 115, 154, 63, 154, 226, 237, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 64, 56, 48, 171, 88, 63, 138, 115, 154, 63, 170, 230, 1, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 64, 56, 254, 154, 95, 63, 171, 41, 244, 63, 251, 9, 239, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 32, 56, 114, 213, 83, 63, 171, 41, 244, 63, 239, 138, 13, 191, 112, 0, 197, 0, 197, 0, 144, 127, 191, 56, 32, 56, 48, 171, 88, 63, 138, 115, 154, 63, 170, 230, 1, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 64, 56, 176, 207, 82, 63, 138, 115, 154, 63, 8, 220, 12, 191, 112, 0, 197, 0, 197, 0, 144, 127, 191, 56, 64, 56, 56, 184, 89, 63, 171, 41, 244, 63, 246, 135, 2, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 32, 56, 53, 219, 84, 63, 230, 239, 38, 64, 214, 57, 14, 191, 112, 0, 197, 0, 197, 0, 144, 127, 191, 56, 0, 56, 56, 184, 89, 63, 171, 41, 244, 63, 246, 135, 2, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 32, 56, 114, 213, 83, 63, 171, 41, 244, 63, 239, 138, 13, 191, 112, 0, 197, 0, 197, 0, 144, 127, 191, 56, 32, 56, 64, 197, 90, 63, 230, 239, 38, 64, 66, 41, 3, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 0, 56, 176, 207, 82, 63, 138, 115, 154, 63, 8, 220, 12, 191, 112, 0, 197, 0, 197, 0, 144, 127, 191, 56, 64, 56, 39, 158, 87, 63, 211, 122, 1, 63, 95, 69, 1, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 95, 56, 238, 201, 81, 63, 211, 122, 1, 63, 33, 45, 12, 191, 112, 0, 197, 0, 197, 0, 144, 127, 191, 56, 95, 56, 48, 171, 88, 63, 138, 115, 154, 63, 170, 230, 1, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 64, 56, 175, 134, 94, 63, 138, 115, 154, 63, 154, 226, 237, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 64, 56, 154, 70, 99, 63, 211, 122, 1, 63, 182, 235, 214, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 95, 56, 96, 114, 93, 63, 211, 122, 1, 63, 58, 187, 236, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 95, 56, 46, 98, 100, 63, 138, 115, 154, 63, 224, 247, 215, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 64, 56, 102, 0, 111, 63, 171, 41, 244, 63, 146, 24, 171, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 32, 56, 116, 116, 113, 63, 138, 115, 154, 63, 40, 125, 146, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 64, 56, 17, 217, 109, 63, 138, 115, 154, 63, 38, 69, 170, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 64, 56, 67, 160, 114, 63, 171, 41, 244, 63, 12, 51, 147, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 32, 56, 136, 96, 107, 63, 171, 41, 244, 63, 24, 254, 194, 190, 121, 0, 220, 0, 220, 0, 135, 127, 127, 56, 32, 56, 17, 217, 109, 63, 138, 115, 154, 63, 38, 69, 170, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 64, 56, 174, 61, 106, 63, 138, 115, 154, 63, 37, 13, 194, 190, 121, 0, 220, 0, 220, 0, 135, 127, 127, 56, 64, 56, 102, 0, 111, 63, 171, 41, 244, 63, 146, 24, 171, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 32, 56, 98, 131, 108, 63, 230, 239, 38, 64, 12, 239, 195, 190, 121, 0, 220, 0, 220, 0, 135, 127, 127, 56, 0, 56, 102, 0, 111, 63, 171, 41, 244, 63, 146, 24, 171, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 32, 56, 136, 96, 107, 63, 171, 41, 244, 63, 24, 254, 194, 190, 121, 0, 220, 0, 220, 0, 135, 127, 127, 56, 32, 56, 186, 39, 112, 63, 230, 239, 38, 64, 254, 235, 171, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 0, 56, 174, 61, 106, 63, 138, 115, 154, 63, 37, 13, 194, 190, 121, 0, 220, 0, 220, 0, 135, 127, 127, 56, 64, 56, 188, 177, 108, 63, 211, 122, 1, 63, 186, 113, 169, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 95, 56, 212, 26, 105, 63, 211, 122, 1, 63, 50, 28, 193, 190, 121, 0, 220, 0, 220, 0, 135, 127, 127, 56, 95, 56, 17, 217, 109, 63, 138, 115, 154, 63, 38, 69, 170, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 64, 56, 116, 116, 113, 63, 138, 115, 154, 63, 40, 125, 146, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 64, 56, 140, 223, 115, 63, 211, 122, 1, 63, 151, 57, 116, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 95, 56, 164, 72, 112, 63, 211, 122, 1, 63, 67, 199, 145, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 95, 56, 214, 15, 117, 63, 138, 115, 154, 63, 82, 106, 117, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 64, 56, 75, 25, 123, 63, 171, 41, 244, 63, 250, 27, 21, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 32, 56, 205, 26, 123, 63, 138, 115, 154, 63, 58, 218, 197, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 64, 56, 3, 227, 121, 63, 138, 115, 154, 63, 184, 99, 20, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 64, 56, 152, 82, 124, 63, 171, 41, 244, 63, 230, 207, 198, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 32, 56, 254, 223, 121, 63, 171, 41, 244, 63, 0, 208, 70, 190, 126, 0, 244, 0, 244, 0, 130, 127, 63, 56, 32, 56, 3, 227, 121, 63, 138, 115, 154, 63, 184, 99, 20, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 64, 56, 57, 171, 120, 63, 138, 115, 154, 63, 84, 218, 69, 190, 126, 0, 244, 0, 244, 0, 130, 127, 63, 56, 64, 56, 75, 25, 123, 63, 171, 41, 244, 63, 250, 27, 21, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 32, 56, 194, 20, 123, 63, 230, 239, 38, 64, 172, 197, 71, 190, 126, 0, 244, 0, 244, 0, 130, 127, 63, 56, 0, 56, 75, 25, 123, 63, 171, 41, 244, 63, 250, 27, 21, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 32, 56, 254, 223, 121, 63, 171, 41, 244, 63, 0, 208, 70, 190, 126, 0, 244, 0, 244, 0, 130, 127, 63, 56, 32, 56, 146, 79, 124, 63, 230, 239, 38, 64, 58, 212, 21, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 0, 56, 57, 171, 120, 63, 138, 115, 154, 63, 84, 218, 69, 190, 126, 0, 244, 0, 244, 0, 130, 127, 63, 56, 64, 56, 187, 172, 120, 63, 211, 122, 1, 63, 120, 171, 19, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 95, 56, 116, 118, 119, 63, 211, 122, 1, 63, 168, 228, 68, 190, 126, 0, 244, 0, 244, 0, 130, 127, 63, 56, 95, 56, 3, 227, 121, 63, 138, 115, 154, 63, 184, 99, 20, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 64, 56, 205, 26, 123, 63, 138, 115, 154, 63, 58, 218, 197, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 64, 56, 73, 25, 123, 63, 211, 122, 1, 63, 90, 228, 68, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 95, 56, 2, 227, 121, 63, 211, 122, 1, 63, 142, 228, 196, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 95, 56, 151, 82, 124, 63, 138, 115, 154, 63, 6, 218, 69, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 64, 56, 229, 139, 125, 63, 171, 41, 244, 63, 128, 208, 70, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 32, 56, 204, 26, 123, 63, 138, 115, 154, 63, 160, 218, 197, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 64, 56, 150, 82, 124, 63, 138, 115, 154, 63, 212, 218, 69, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 64, 56, 152, 82, 124, 63, 171, 41, 244, 63, 76, 208, 198, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 32, 56, 50, 197, 126, 63, 171, 41, 244, 63, 128, 92, 205, 52, 126, 0, 12, 0, 12, 0, 130, 127, 255, 55, 32, 56, 150, 82, 124, 63, 138, 115, 154, 63, 212, 218, 69, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 64, 56, 97, 138, 125, 63, 138, 115, 154, 63, 128, 92, 207, 52, 126, 0, 12, 0, 12, 0, 130, 127, 255, 55, 64, 56, 229, 139, 125, 63, 171, 41, 244, 63, 128, 208, 70, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 32, 56, 2, 0, 128, 63, 230, 239, 38, 64, 128, 92, 203, 52, 126, 0, 12, 0, 12, 0, 130, 127, 255, 55, 0, 56, 229, 139, 125, 63, 171, 41, 244, 63, 128, 208, 70, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 32, 56, 50, 197, 126, 63, 171, 41, 244, 63, 128, 92, 205, 52, 126, 0, 12, 0, 12, 0, 130, 127, 255, 55, 32, 56, 52, 197, 126, 63, 230, 239, 38, 64, 43, 198, 71, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 0, 56, 97, 138, 125, 63, 138, 115, 154, 63, 128, 92, 207, 52, 126, 0, 12, 0, 12, 0, 130, 127, 255, 55, 64, 56, 72, 25, 123, 63, 211, 122, 1, 63, 41, 229, 68, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 95, 56, 144, 79, 124, 63, 211, 122, 1, 63, 128, 92, 209, 52, 126, 0, 12, 0, 12, 0, 130, 127, 255, 55, 95, 56, 150, 82, 124, 63, 138, 115, 154, 63, 212, 218, 69, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 64, 56, 204, 26, 123, 63, 138, 115, 154, 63, 160, 218, 197, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 64, 56, 186, 172, 120, 63, 211, 122, 1, 63, 170, 171, 19, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 95, 56, 1, 227, 121, 63, 211, 122, 1, 63, 244, 228, 196, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 95, 56, 2, 227, 121, 63, 138, 115, 154, 63, 235, 99, 20, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 64, 56, 32, 64, 118, 63, 171, 41, 244, 63, 62, 155, 118, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 32, 56, 114, 116, 113, 63, 138, 115, 154, 63, 64, 125, 146, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 64, 56, 213, 15, 117, 63, 138, 115, 154, 63, 131, 106, 117, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 64, 56, 66, 160, 114, 63, 171, 41, 244, 63, 37, 51, 147, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 32, 56, 253, 223, 121, 63, 171, 41, 244, 63, 50, 208, 70, 62, 121, 0, 36, 0, 36, 0, 135, 127, 127, 55, 32, 56, 213, 15, 117, 63, 138, 115, 154, 63, 131, 106, 117, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 64, 56, 56, 171, 120, 63, 138, 115, 154, 63, 134, 218, 69, 62, 121, 0, 36, 0, 36, 0, 135, 127, 127, 55, 64, 56, 32, 64, 118, 63, 171, 41, 244, 63, 62, 155, 118, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 32, 56, 194, 20, 123, 63, 230, 239, 38, 64, 222, 197, 71, 62, 121, 0, 36, 0, 36, 0, 135, 127, 127, 55, 0, 56, 32, 64, 118, 63, 171, 41, 244, 63, 62, 155, 118, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 32, 56, 253, 223, 121, 63, 171, 41, 244, 63, 50, 208, 70, 62, 121, 0, 36, 0, 36, 0, 135, 127, 127, 55, 32, 56, 106, 112, 119, 63, 230, 239, 38, 64, 249, 203, 119, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 0, 56, 56, 171, 120, 63, 138, 115, 154, 63, 134, 218, 69, 62, 121, 0, 36, 0, 36, 0, 135, 127, 127, 55, 64, 56, 138, 223, 115, 63, 211, 122, 1, 63, 201, 57, 116, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 95, 56, 115, 118, 119, 63, 211, 122, 1, 63, 218, 228, 68, 62, 121, 0, 36, 0, 36, 0, 135, 127, 127, 55, 95, 56, 213, 15, 117, 63, 138, 115, 154, 63, 131, 106, 117, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 64, 56, 114, 116, 113, 63, 138, 115, 154, 63, 64, 125, 146, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 64, 56, 186, 177, 108, 63, 211, 122, 1, 63, 211, 113, 169, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 95, 56, 162, 72, 112, 63, 211, 122, 1, 63, 92, 199, 145, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 95, 56, 15, 217, 109, 63, 138, 115, 154, 63, 62, 69, 170, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 64, 56, 192, 125, 101, 63, 171, 41, 244, 63, 33, 4, 217, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 32, 56, 172, 134, 94, 63, 138, 115, 154, 63, 176, 226, 237, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 64, 56, 44, 98, 100, 63, 138, 115, 154, 63, 246, 247, 215, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 64, 56, 251, 154, 95, 63, 171, 41, 244, 63, 18, 10, 239, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 32, 56, 134, 96, 107, 63, 171, 41, 244, 63, 48, 254, 194, 62, 112, 0, 59, 0, 59, 0, 144, 127, 255, 54, 32, 56, 44, 98, 100, 63, 138, 115, 154, 63, 246, 247, 215, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 64, 56, 172, 61, 106, 63, 138, 115, 154, 63, 61, 13, 194, 62, 112, 0, 59, 0, 59, 0, 144, 127, 255, 54, 64, 56, 192, 125, 101, 63, 171, 41, 244, 63, 33, 4, 217, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 32, 56, 97, 131, 108, 63, 230, 239, 38, 64, 36, 239, 195, 62, 112, 0, 59, 0, 59, 0, 144, 127, 255, 54, 0, 56, 192, 125, 101, 63, 171, 41, 244, 63, 33, 4, 217, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 32, 56, 134, 96, 107, 63, 171, 41, 244, 63, 48, 254, 194, 62, 112, 0, 59, 0, 59, 0, 144, 127, 255, 54, 32, 56, 86, 153, 102, 63, 230, 239, 38, 64, 76, 16, 218, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 0, 56, 172, 61, 106, 63, 138, 115, 154, 63, 61, 13, 194, 62, 112, 0, 59, 0, 59, 0, 144, 127, 255, 54, 64, 56, 151, 70, 99, 63, 211, 122, 1, 63, 205, 235, 214, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 95, 56, 209, 26, 105, 63, 211, 122, 1, 63, 74, 28, 193, 62, 112, 0, 59, 0, 59, 0, 144, 127, 255, 54, 95, 56, 44, 98, 100, 63, 138, 115, 154, 63, 246, 247, 215, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 64, 56, 172, 134, 94, 63, 138, 115, 154, 63, 176, 226, 237, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 64, 56, 36, 158, 87, 63, 211, 122, 1, 63, 106, 69, 1, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 95, 56, 93, 114, 93, 63, 211, 122, 1, 63, 80, 187, 236, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 95, 56, 44, 171, 88, 63, 138, 115, 154, 63, 181, 230, 1, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 64, 56, 170, 233, 75, 63, 171, 41, 244, 63, 211, 49, 23, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 32, 56, 180, 11, 67, 63, 138, 115, 154, 63, 234, 17, 32, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 64, 56, 176, 237, 74, 63, 138, 115, 154, 63, 254, 118, 22, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 64, 56, 228, 253, 67, 63, 171, 41, 244, 63, 172, 216, 32, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 32, 56, 112, 213, 83, 63, 171, 41, 244, 63, 250, 138, 13, 63, 98, 0, 80, 0, 80, 0, 158, 127, 127, 54, 32, 56, 176, 237, 74, 63, 138, 115, 154, 63, 254, 118, 22, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 64, 56, 173, 207, 82, 63, 138, 115, 154, 63, 18, 220, 12, 63, 98, 0, 80, 0, 80, 0, 158, 127, 127, 54, 64, 56, 170, 233, 75, 63, 171, 41, 244, 63, 211, 49, 23, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 32, 56, 51, 219, 84, 63, 230, 239, 38, 64, 225, 57, 14, 63, 98, 0, 80, 0, 80, 0, 158, 127, 127, 54, 0, 56, 170, 233, 75, 63, 171, 41, 244, 63, 211, 49, 23, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 32, 56, 112, 213, 83, 63, 171, 41, 244, 63, 250, 138, 13, 63, 98, 0, 80, 0, 80, 0, 158, 127, 127, 54, 32, 56, 164, 229, 76, 63, 230, 239, 38, 64, 168, 236, 23, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 0, 56, 173, 207, 82, 63, 138, 115, 154, 63, 18, 220, 12, 63, 98, 0, 80, 0, 80, 0, 158, 127, 127, 54, 64, 56, 184, 241, 73, 63, 211, 122, 1, 63, 42, 188, 21, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 95, 56, 234, 201, 81, 63, 211, 122, 1, 63, 43, 45, 12, 63, 98, 0, 80, 0, 80, 0, 158, 127, 127, 54, 95, 56, 176, 237, 74, 63, 138, 115, 154, 63, 254, 118, 22, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 64, 56, 180, 11, 67, 63, 138, 115, 154, 63, 234, 17, 32, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 64, 56, 82, 65, 58, 63, 211, 122, 1, 63, 39, 218, 40, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 95, 56, 133, 25, 66, 63, 211, 122, 1, 63, 40, 75, 31, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 95, 56, 184, 41, 59, 63, 138, 115, 154, 63, 214, 172, 41, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 64, 56, 127, 127, 42, 63, 171, 41, 244, 63, 36, 18, 60, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 32, 56, 228, 17, 32, 63, 138, 115, 154, 63, 186, 11, 67, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 64, 56, 208, 172, 41, 63, 138, 115, 154, 63, 190, 41, 59, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 64, 56, 166, 216, 32, 63, 171, 41, 244, 63, 234, 253, 67, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 32, 56, 88, 38, 52, 63, 171, 41, 244, 63, 94, 38, 52, 63, 80, 0, 98, 0, 98, 0, 176, 127, 255, 53, 32, 56, 208, 172, 41, 63, 138, 115, 154, 63, 190, 41, 59, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 64, 56, 188, 71, 51, 63, 138, 115, 154, 63, 194, 71, 51, 63, 80, 0, 98, 0, 98, 0, 176, 127, 255, 53, 64, 56, 127, 127, 42, 63, 171, 41, 244, 63, 36, 18, 60, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 32, 56, 244, 4, 53, 63, 230, 239, 38, 64, 251, 4, 53, 63, 80, 0, 98, 0, 98, 0, 176, 127, 255, 53, 0, 56, 127, 127, 42, 63, 171, 41, 244, 63, 36, 18, 60, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 32, 56, 88, 38, 52, 63, 171, 41, 244, 63, 94, 38, 52, 63, 80, 0, 98, 0, 98, 0, 176, 127, 255, 53, 32, 56, 46, 82, 43, 63, 230, 239, 38, 64, 138, 250, 60, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 0, 56, 188, 71, 51, 63, 138, 115, 154, 63, 194, 71, 51, 63, 80, 0, 98, 0, 98, 0, 176, 127, 255, 53, 64, 56, 33, 218, 40, 63, 211, 122, 1, 63, 88, 65, 58, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 95, 56, 32, 105, 50, 63, 211, 122, 1, 63, 38, 105, 50, 63, 80, 0, 98, 0, 98, 0, 176, 127, 255, 53, 95, 56, 208, 172, 41, 63, 138, 115, 154, 63, 190, 41, 59, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 64, 56, 228, 17, 32, 63, 138, 115, 154, 63, 186, 11, 67, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 64, 56, 35, 188, 21, 63, 211, 122, 1, 63, 190, 241, 73, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 95, 56, 34, 75, 31, 63, 211, 122, 1, 63, 139, 25, 66, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 95, 56, 248, 118, 22, 63, 138, 115, 154, 63, 182, 237, 74, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 64, 56, 250, 135, 2, 63, 171, 41, 244, 63, 60, 184, 89, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 32, 56, 162, 226, 237, 62, 138, 115, 154, 63, 178, 134, 94, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 64, 56, 174, 230, 1, 63, 138, 115, 154, 63, 50, 171, 88, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 64, 56, 3, 10, 239, 62, 171, 41, 244, 63, 1, 155, 95, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 32, 56, 243, 138, 13, 63, 171, 41, 244, 63, 118, 213, 83, 63, 59, 0, 112, 0, 112, 0, 197, 127, 127, 53, 32, 56, 174, 230, 1, 63, 138, 115, 154, 63, 50, 171, 88, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 64, 56, 12, 220, 12, 63, 138, 115, 154, 63, 179, 207, 82, 63, 59, 0, 112, 0, 112, 0, 197, 127, 127, 53, 64, 56, 250, 135, 2, 63, 171, 41, 244, 63, 60, 184, 89, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 32, 56, 218, 57, 14, 63, 230, 239, 38, 64, 57, 219, 84, 63, 59, 0, 112, 0, 112, 0, 197, 127, 127, 53, 0, 56, 250, 135, 2, 63, 171, 41, 244, 63, 60, 184, 89, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 32, 56, 243, 138, 13, 63, 171, 41, 244, 63, 118, 213, 83, 63, 59, 0, 112, 0, 112, 0, 197, 127, 127, 53, 32, 56, 70, 41, 3, 63, 230, 239, 38, 64, 68, 197, 90, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 0, 56, 12, 220, 12, 63, 138, 115, 154, 63, 179, 207, 82, 63, 59, 0, 112, 0, 112, 0, 197, 127, 127, 53, 64, 56, 98, 69, 1, 63, 211, 122, 1, 63, 42, 158, 87, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 95, 56, 36, 45, 12, 63, 211, 122, 1, 63, 240, 201, 81, 63, 59, 0, 112, 0, 112, 0, 197, 127, 127, 53, 95, 56, 174, 230, 1, 63, 138, 115, 154, 63, 50, 171, 88, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 64, 56, 162, 226, 237, 62, 138, 115, 154, 63, 178, 134, 94, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 64, 56, 190, 235, 214, 62, 211, 122, 1, 63, 156, 70, 99, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 95, 56, 65, 187, 236, 62, 211, 122, 1, 63, 99, 114, 93, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 95, 56, 232, 247, 215, 62, 138, 115, 154, 63, 49, 98, 100, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 64, 56, 154, 24, 171, 62, 171, 41, 244, 63, 104, 0, 111, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 32, 56, 48, 125, 146, 62, 138, 115, 154, 63, 118, 116, 113, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 64, 56, 46, 69, 170, 62, 138, 115, 154, 63, 19, 217, 109, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 64, 56, 20, 51, 147, 62, 171, 41, 244, 63, 70, 160, 114, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 32, 56, 32, 254, 194, 62, 171, 41, 244, 63, 139, 96, 107, 63, 36, 0, 121, 0, 121, 0, 220, 127, 255, 52, 32, 56, 46, 69, 170, 62, 138, 115, 154, 63, 19, 217, 109, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 64, 56, 45, 13, 194, 62, 138, 115, 154, 63, 176, 61, 106, 63, 36, 0, 121, 0, 121, 0, 220, 127, 255, 52, 64, 56, 154, 24, 171, 62, 171, 41, 244, 63, 104, 0, 111, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 32, 56, 20, 239, 195, 62, 230, 239, 38, 64, 102, 131, 108, 63, 36, 0, 121, 0, 121, 0, 220, 127, 255, 52, 0, 56, 154, 24, 171, 62, 171, 41, 244, 63, 104, 0, 111, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 32, 56, 32, 254, 194, 62, 171, 41, 244, 63, 139, 96, 107, 63, 36, 0, 121, 0, 121, 0, 220, 127, 255, 52, 32, 56, 6, 236, 171, 62, 230, 239, 38, 64, 190, 39, 112, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 0, 56, 45, 13, 194, 62, 138, 115, 154, 63, 176, 61, 106, 63, 36, 0, 121, 0, 121, 0, 220, 127, 255, 52, 64, 56, 194, 113, 169, 62, 211, 122, 1, 63, 190, 177, 108, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 95, 56, 58, 28, 193, 62, 211, 122, 1, 63, 214, 26, 105, 63, 36, 0, 121, 0, 121, 0, 220, 127, 255, 52, 95, 56, 46, 69, 170, 62, 138, 115, 154, 63, 19, 217, 109, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 64, 56, 48, 125, 146, 62, 138, 115, 154, 63, 118, 116, 113, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 64, 56, 168, 57, 116, 62, 211, 122, 1, 63, 142, 223, 115, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 95, 56, 75, 199, 145, 62, 211, 122, 1, 63, 166, 72, 112, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 95, 56, 99, 106, 117, 62, 138, 115, 154, 63, 217, 15, 117, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 64, 56, 12, 28, 21, 62, 171, 41, 244, 63, 78, 25, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 32, 56, 96, 218, 197, 61, 138, 115, 154, 63, 208, 26, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 64, 56, 203, 99, 20, 62, 138, 115, 154, 63, 6, 227, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 64, 56, 12, 208, 198, 61, 171, 41, 244, 63, 155, 82, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 32, 56, 18, 208, 70, 62, 171, 41, 244, 63, 1, 224, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 127, 52, 32, 56, 203, 99, 20, 62, 138, 115, 154, 63, 6, 227, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 64, 56, 102, 218, 69, 62, 138, 115, 154, 63, 60, 171, 120, 63, 12, 0, 126, 0, 126, 0, 244, 127, 127, 52, 64, 56, 12, 28, 21, 62, 171, 41, 244, 63, 78, 25, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 32, 56, 189, 197, 71, 62, 230, 239, 38, 64, 198, 20, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 127, 52, 0, 56, 12, 28, 21, 62, 171, 41, 244, 63, 78, 25, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 32, 56, 18, 208, 70, 62, 171, 41, 244, 63, 1, 224, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 127, 52, 32, 56, 76, 212, 21, 62, 230, 239, 38, 64, 150, 79, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 0, 56, 102, 218, 69, 62, 138, 115, 154, 63, 60, 171, 120, 63, 12, 0, 126, 0, 126, 0, 244, 127, 127, 52, 64, 56, 138, 171, 19, 62, 211, 122, 1, 63, 190, 172, 120, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 95, 56, 186, 228, 68, 62, 211, 122, 1, 63, 119, 118, 119, 63, 12, 0, 126, 0, 126, 0, 244, 127, 127, 52, 95, 56, 203, 99, 20, 62, 138, 115, 154, 63, 6, 227, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 64, 56, 96, 218, 197, 61, 138, 115, 154, 63, 208, 26, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 64, 56, 168, 228, 68, 61, 211, 122, 1, 63, 75, 25, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 95, 56, 180, 228, 196, 61, 211, 122, 1, 63, 4, 227, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 95, 56, 84, 218, 69, 61, 138, 115, 154, 63, 154, 82, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 64, 56, 49, 208, 70, 189, 171, 41, 244, 63, 231, 139, 125, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 32, 56, 119, 218, 197, 189, 138, 115, 154, 63, 206, 26, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 64, 56, 132, 218, 69, 189, 138, 115, 154, 63, 152, 82, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 64, 56, 36, 208, 198, 189, 171, 41, 244, 63, 154, 82, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 32, 56, 217, 124, 207, 179, 171, 41, 244, 63, 52, 197, 126, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 51, 32, 56, 132, 218, 69, 189, 138, 115, 154, 63, 152, 82, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 64, 56, 217, 124, 199, 179, 138, 115, 154, 63, 99, 138, 125, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 51, 64, 56, 49, 208, 70, 189, 171, 41, 244, 63, 231, 139, 125, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 32, 56, 217, 124, 215, 179, 230, 239, 38, 64, 3, 0, 128, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 51, 0, 56, 49, 208, 70, 189, 171, 41, 244, 63, 231, 139, 125, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 32, 56, 217, 124, 207, 179, 171, 41, 244, 63, 52, 197, 126, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 51, 32, 56, 222, 197, 71, 189, 230, 239, 38, 64, 54, 197, 126, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 0, 56, 217, 124, 199, 179, 138, 115, 154, 63, 99, 138, 125, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 51, 64, 56, 214, 228, 68, 189, 211, 122, 1, 63, 74, 25, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 95, 56, 217, 124, 191, 179, 211, 122, 1, 63, 146, 79, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 51, 95, 56, 132, 218, 69, 189, 138, 115, 154, 63, 152, 82, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 64, 56, 119, 218, 197, 189, 138, 115, 154, 63, 206, 26, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 64, 56, 148, 171, 19, 190, 211, 122, 1, 63, 188, 172, 120, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 95, 56, 202, 228, 196, 189, 211, 122, 1, 63, 3, 227, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 95, 56, 214, 99, 20, 190, 138, 115, 154, 63, 4, 227, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 64, 56, 41, 155, 118, 190, 171, 41, 244, 63, 34, 64, 118, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 32, 56, 53, 125, 146, 190, 138, 115, 154, 63, 116, 116, 113, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 64, 56, 110, 106, 117, 190, 138, 115, 154, 63, 215, 15, 117, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 64, 56, 26, 51, 147, 190, 171, 41, 244, 63, 68, 160, 114, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 32, 56, 30, 208, 70, 190, 171, 41, 244, 63, 255, 223, 121, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 50, 32, 56, 110, 106, 117, 190, 138, 115, 154, 63, 215, 15, 117, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 64, 56, 113, 218, 69, 190, 138, 115, 154, 63, 58, 171, 120, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 50, 64, 56, 41, 155, 118, 190, 171, 41, 244, 63, 34, 64, 118, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 32, 56, 202, 197, 71, 190, 230, 239, 38, 64, 196, 20, 123, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 50, 0, 56, 41, 155, 118, 190, 171, 41, 244, 63, 34, 64, 118, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 32, 56, 30, 208, 70, 190, 171, 41, 244, 63, 255, 223, 121, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 50, 32, 56, 229, 203, 119, 190, 230, 239, 38, 64, 108, 112, 119, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 0, 56, 113, 218, 69, 190, 138, 115, 154, 63, 58, 171, 120, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 50, 64, 56, 178, 57, 116, 190, 211, 122, 1, 63, 140, 223, 115, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 95, 56, 196, 228, 68, 190, 211, 122, 1, 63, 117, 118, 119, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 50, 95, 56, 110, 106, 117, 190, 138, 115, 154, 63, 215, 15, 117, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 64, 56, 53, 125, 146, 190, 138, 115, 154, 63, 116, 116, 113, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 64, 56, 199, 113, 169, 190, 211, 122, 1, 63, 188, 177, 108, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 95, 56, 80, 199, 145, 190, 211, 122, 1, 63, 164, 72, 112, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 95, 56, 52, 69, 170, 190, 138, 115, 154, 63, 17, 217, 109, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 64, 56, 23, 4, 217, 190, 171, 41, 244, 63, 194, 125, 101, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 32, 56, 166, 226, 237, 190, 138, 115, 154, 63, 174, 134, 94, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 64, 56, 236, 247, 215, 190, 138, 115, 154, 63, 46, 98, 100, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 64, 56, 8, 10, 239, 190, 171, 41, 244, 63, 253, 154, 95, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 32, 56, 38, 254, 194, 190, 171, 41, 244, 63, 136, 96, 107, 63, 197, 0, 112, 0, 112, 0, 59, 127, 255, 49, 32, 56, 236, 247, 215, 190, 138, 115, 154, 63, 46, 98, 100, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 64, 56, 50, 13, 194, 190, 138, 115, 154, 63, 174, 61, 106, 63, 197, 0, 112, 0, 112, 0, 59, 127, 255, 49, 64, 56, 23, 4, 217, 190, 171, 41, 244, 63, 194, 125, 101, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 32, 56, 26, 239, 195, 190, 230, 239, 38, 64, 99, 131, 108, 63, 197, 0, 112, 0, 112, 0, 59, 127, 255, 49, 0, 56, 23, 4, 217, 190, 171, 41, 244, 63, 194, 125, 101, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 32, 56, 38, 254, 194, 190, 171, 41, 244, 63, 136, 96, 107, 63, 197, 0, 112, 0, 112, 0, 59, 127, 255, 49, 32, 56, 66, 16, 218, 190, 230, 239, 38, 64, 88, 153, 102, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 0, 56, 50, 13, 194, 190, 138, 115, 154, 63, 174, 61, 106, 63, 197, 0, 112, 0, 112, 0, 59, 127, 255, 49, 64, 56, 193, 235, 214, 190, 211, 122, 1, 63, 153, 70, 99, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 95, 56, 62, 28, 193, 190, 211, 122, 1, 63, 211, 26, 105, 63, 197, 0, 112, 0, 112, 0, 59, 127, 255, 49, 95, 56, 236, 247, 215, 190, 138, 115, 154, 63, 46, 98, 100, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 64, 56, 166, 226, 237, 190, 138, 115, 154, 63, 174, 134, 94, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 64, 56, 100, 69, 1, 191, 211, 122, 1, 63, 38, 158, 87, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 95, 56, 68, 187, 236, 190, 211, 122, 1, 63, 95, 114, 93, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 95, 56, 176, 230, 1, 191, 138, 115, 154, 63, 46, 171, 88, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 64, 56, 205, 49, 23, 191, 171, 41, 244, 63, 172, 233, 75, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 32, 56, 228, 17, 32, 191, 138, 115, 154, 63, 182, 11, 67, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 64, 56, 248, 118, 22, 191, 138, 115, 154, 63, 178, 237, 74, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 64, 56, 166, 216, 32, 191, 171, 41, 244, 63, 230, 253, 67, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 32, 56, 244, 138, 13, 191, 171, 41, 244, 63, 114, 213, 83, 63, 176, 0, 98, 0, 98, 0, 80, 127, 0, 49, 32, 56, 248, 118, 22, 191, 138, 115, 154, 63, 178, 237, 74, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 64, 56, 13, 220, 12, 191, 138, 115, 154, 63, 175, 207, 82, 63, 176, 0, 98, 0, 98, 0, 80, 127, 0, 49, 64, 56, 205, 49, 23, 191, 171, 41, 244, 63, 172, 233, 75, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 32, 56, 220, 57, 14, 191, 230, 239, 38, 64, 53, 219, 84, 63, 176, 0, 98, 0, 98, 0, 80, 127, 0, 49, 0, 56, 205, 49, 23, 191, 171, 41, 244, 63, 172, 233, 75, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 32, 56, 244, 138, 13, 191, 171, 41, 244, 63, 114, 213, 83, 63, 176, 0, 98, 0, 98, 0, 80, 127, 0, 49, 32, 56, 162, 236, 23, 191, 230, 239, 38, 64, 166, 229, 76, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 0, 56, 13, 220, 12, 191, 138, 115, 154, 63, 175, 207, 82, 63, 176, 0, 98, 0, 98, 0, 80, 127, 0, 49, 64, 56, 36, 188, 21, 191, 211, 122, 1, 63, 185, 241, 73, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 95, 56, 38, 45, 12, 191, 211, 122, 1, 63, 236, 201, 81, 63, 176, 0, 98, 0, 98, 0, 80, 127, 0, 49, 95, 56, 248, 118, 22, 191, 138, 115, 154, 63, 178, 237, 74, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 64, 56, 228, 17, 32, 191, 138, 115, 154, 63, 182, 11, 67, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 64, 56, 33, 218, 40, 191, 211, 122, 1, 63, 84, 65, 58, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 95, 56, 34, 75, 31, 191, 211, 122, 1, 63, 134, 25, 66, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 95, 56, 208, 172, 41, 191, 138, 115, 154, 63, 186, 41, 59, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 64, 56, 30, 18, 60, 191, 171, 41, 244, 63, 129, 127, 42, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 32, 56, 180, 11, 67, 191, 138, 115, 154, 63, 230, 17, 32, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 64, 56, 184, 41, 59, 191, 138, 115, 154, 63, 210, 172, 41, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 64, 56, 228, 253, 67, 191, 171, 41, 244, 63, 168, 216, 32, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 32, 56, 88, 38, 52, 191, 171, 41, 244, 63, 90, 38, 52, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 47, 32, 56, 184, 41, 59, 191, 138, 115, 154, 63, 210, 172, 41, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 64, 56, 188, 71, 51, 191, 138, 115, 154, 63, 190, 71, 51, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 47, 64, 56, 30, 18, 60, 191, 171, 41, 244, 63, 129, 127, 42, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 32, 56, 245, 4, 53, 191, 230, 239, 38, 64, 246, 4, 53, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 47, 0, 56, 30, 18, 60, 191, 171, 41, 244, 63, 129, 127, 42, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 32, 56, 88, 38, 52, 191, 171, 41, 244, 63, 90, 38, 52, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 47, 32, 56, 132, 250, 60, 191, 230, 239, 38, 64, 48, 82, 43, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 0, 56, 188, 71, 51, 191, 138, 115, 154, 63, 190, 71, 51, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 47, 64, 56, 82, 65, 58, 191, 211, 122, 1, 63, 35, 218, 40, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 95, 56, 32, 105, 50, 191, 211, 122, 1, 63, 34, 105, 50, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 47, 95, 56, 184, 41, 59, 191, 138, 115, 154, 63, 210, 172, 41, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 64, 56, 180, 11, 67, 191, 138, 115, 154, 63, 230, 17, 32, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 64, 56, 182, 241, 73, 191, 211, 122, 1, 63, 37, 188, 21, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 95, 56, 132, 25, 66, 191, 211, 122, 1, 63, 36, 75, 31, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 95, 56, 176, 237, 74, 191, 138, 115, 154, 63, 250, 118, 22, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 64, 56, 52, 184, 89, 191, 171, 41, 244, 63, 252, 135, 2, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 32, 56, 170, 134, 94, 191, 138, 115, 154, 63, 166, 226, 237, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 64, 56, 43, 171, 88, 191, 138, 115, 154, 63, 176, 230, 1, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 64, 56, 249, 154, 95, 191, 171, 41, 244, 63, 7, 10, 239, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 32, 56, 111, 213, 83, 191, 171, 41, 244, 63, 244, 138, 13, 63, 144, 0, 59, 0, 59, 0, 112, 127, 0, 46, 32, 56, 43, 171, 88, 191, 138, 115, 154, 63, 176, 230, 1, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 64, 56, 172, 207, 82, 191, 138, 115, 154, 63, 13, 220, 12, 63, 144, 0, 59, 0, 59, 0, 112, 127, 0, 46, 64, 56, 52, 184, 89, 191, 171, 41, 244, 63, 252, 135, 2, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 32, 56, 50, 219, 84, 191, 230, 239, 38, 64, 220, 57, 14, 63, 144, 0, 59, 0, 59, 0, 112, 127, 0, 46, 0, 56, 52, 184, 89, 191, 171, 41, 244, 63, 252, 135, 2, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 32, 56, 111, 213, 83, 191, 171, 41, 244, 63, 244, 138, 13, 63, 144, 0, 59, 0, 59, 0, 112, 127, 0, 46, 32, 56, 61, 197, 90, 191, 230, 239, 38, 64, 72, 41, 3, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 0, 56, 172, 207, 82, 191, 138, 115, 154, 63, 13, 220, 12, 63, 144, 0, 59, 0, 59, 0, 112, 127, 0, 46, 64, 56, 34, 158, 87, 191, 211, 122, 1, 63, 100, 69, 1, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 95, 56, 232, 201, 81, 191, 211, 122, 1, 63, 38, 45, 12, 63, 144, 0, 59, 0, 59, 0, 112, 127, 0, 46, 95, 56, 43, 171, 88, 191, 138, 115, 154, 63, 176, 230, 1, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 64, 56, 170, 134, 94, 191, 138, 115, 154, 63, 166, 226, 237, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 64, 56, 148, 70, 99, 191, 211, 122, 1, 63, 192, 235, 214, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 95, 56, 91, 114, 93, 191, 211, 122, 1, 63, 68, 187, 236, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 95, 56, 41, 98, 100, 191, 138, 115, 154, 63, 236, 247, 215, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 64, 56, 96, 0, 111, 191, 171, 41, 244, 63, 160, 24, 171, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 32, 56, 110, 116, 113, 191, 138, 115, 154, 63, 52, 125, 146, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 64, 56, 11, 217, 109, 191, 138, 115, 154, 63, 50, 69, 170, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 64, 56, 62, 160, 114, 191, 171, 41, 244, 63, 26, 51, 147, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 32, 56, 131, 96, 107, 191, 171, 41, 244, 63, 37, 254, 194, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 44, 32, 56, 11, 217, 109, 191, 138, 115, 154, 63, 50, 69, 170, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 64, 56, 168, 61, 106, 191, 138, 115, 154, 63, 49, 13, 194, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 44, 64, 56, 96, 0, 111, 191, 171, 41, 244, 63, 160, 24, 171, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 32, 56, 94, 131, 108, 191, 230, 239, 38, 64, 25, 239, 195, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 44, 0, 56, 96, 0, 111, 191, 171, 41, 244, 63, 160, 24, 171, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 32, 56, 131, 96, 107, 191, 171, 41, 244, 63, 37, 254, 194, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 44, 32, 56, 182, 39, 112, 191, 230, 239, 38, 64, 12, 236, 171, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 0, 56, 168, 61, 106, 191, 138, 115, 154, 63, 49, 13, 194, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 44, 64, 56, 182, 177, 108, 191, 211, 122, 1, 63, 198, 113, 169, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 42, 96, 56, 206, 26, 105, 191, 211, 122, 1, 63, 61, 28, 193, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 44, 95, 56, 11, 217, 109, 191, 138, 115, 154, 63, 50, 69, 170, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 43, 64, 56, 110, 116, 113, 191, 138, 115, 154, 63, 52, 125, 146, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 64, 56, 134, 223, 115, 191, 211, 122, 1, 63, 177, 57, 116, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 40, 96, 56, 158, 72, 112, 191, 211, 122, 1, 63, 79, 199, 145, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 41, 96, 56, 208, 15, 117, 191, 138, 115, 154, 63, 108, 106, 117, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 64, 56, 69, 25, 123, 191, 171, 41, 244, 63, 24, 28, 21, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 32, 56, 198, 26, 123, 191, 138, 115, 154, 63, 120, 218, 197, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 64, 56, 252, 226, 121, 191, 138, 115, 154, 63, 214, 99, 20, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 64, 56, 146, 82, 124, 191, 171, 41, 244, 63, 38, 208, 198, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 32, 56, 248, 223, 121, 191, 171, 41, 244, 63, 29, 208, 70, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 40, 32, 56, 252, 226, 121, 191, 138, 115, 154, 63, 214, 99, 20, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 64, 56, 51, 171, 120, 191, 138, 115, 154, 63, 112, 218, 69, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 40, 64, 56, 69, 25, 123, 191, 171, 41, 244, 63, 24, 28, 21, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 32, 56, 189, 20, 123, 191, 230, 239, 38, 64, 202, 197, 71, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 40, 0, 56, 69, 25, 123, 191, 171, 41, 244, 63, 24, 28, 21, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 32, 56, 248, 223, 121, 191, 171, 41, 244, 63, 29, 208, 70, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 40, 32, 56, 141, 79, 124, 191, 230, 239, 38, 64, 90, 212, 21, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 0, 56, 51, 171, 120, 191, 138, 115, 154, 63, 112, 218, 69, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 40, 64, 56, 180, 172, 120, 191, 211, 122, 1, 63, 148, 171, 19, 62, 130, 0, 12, 0, 12, 0, 126, 127, 255, 37, 96, 56, 110, 118, 119, 191, 211, 122, 1, 63, 196, 228, 68, 62, 130, 0, 12, 0, 12, 0, 126, 127, 255, 39, 96, 56, 252, 226, 121, 191, 138, 115, 154, 63, 214, 99, 20, 62, 130, 0, 12, 0, 12, 0, 126, 127, 0, 38, 64, 56, 198, 26, 123, 191, 138, 115, 154, 63, 120, 218, 197, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 64, 56, 66, 25, 123, 191, 211, 122, 1, 63, 216, 228, 68, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 31, 96, 56, 251, 226, 121, 191, 211, 122, 1, 63, 202, 228, 196, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 35, 96, 56, 144, 82, 124, 191, 138, 115, 154, 63, 136, 218, 69, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 64, 56, 222, 139, 125, 191, 171, 41, 244, 63, 241, 207, 70, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 32, 56, 197, 26, 123, 191, 138, 115, 154, 63, 88, 218, 197, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 64, 56, 144, 82, 124, 191, 138, 115, 154, 63, 72, 218, 69, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 64, 56, 144, 82, 124, 191, 171, 41, 244, 63, 3, 208, 198, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 32, 56, 44, 197, 126, 191, 171, 41, 244, 63, 0, 185, 10, 52, 130, 0, 244, 0, 244, 0, 126, 127, 0, 60, 32, 56, 144, 82, 124, 191, 138, 115, 154, 63, 72, 218, 69, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 64, 56, 90, 138, 125, 191, 138, 115, 154, 63, 0, 114, 253, 51, 130, 0, 244, 0, 244, 0, 126, 127, 0, 60, 64, 56, 222, 139, 125, 191, 171, 41, 244, 63, 241, 207, 70, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 32, 56, 253, 255, 127, 191, 230, 239, 38, 64, 0, 185, 22, 52, 130, 0, 244, 0, 244, 0, 126, 127, 0, 60, 0, 56, 222, 139, 125, 191, 171, 41, 244, 63, 241, 207, 70, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 32, 56, 44, 197, 126, 191, 171, 41, 244, 63, 0, 185, 10, 52, 130, 0, 244, 0, 244, 0, 126, 127, 0, 60, 32, 56, 44, 197, 126, 191, 230, 239, 38, 64, 155, 197, 71, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 0, 56, 90, 138, 125, 191, 138, 115, 154, 63, 0, 114, 253, 51, 130, 0, 244, 0, 244, 0, 126, 127, 0, 60, 64, 56, 65, 25, 123, 191, 211, 122, 1, 63, 159, 228, 68, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 96, 56, 136, 79, 124, 191, 211, 122, 1, 63, 0, 114, 229, 51, 130, 0, 244, 0, 244, 0, 126, 127, 0, 60, 96, 56, 144, 82, 124, 191, 138, 115, 154, 63, 72, 218, 69, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 64, 56, 197, 26, 123, 191, 138, 115, 154, 63, 88, 218, 197, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 64, 56, 178, 172, 120, 191, 211, 122, 1, 63, 134, 171, 19, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 96, 56, 250, 226, 121, 191, 211, 122, 1, 63, 174, 228, 196, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 96, 56, 250, 226, 121, 191, 138, 115, 154, 63, 198, 99, 20, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 64, 56, 24, 64, 118, 191, 171, 41, 244, 63, 22, 155, 118, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 32, 56, 106, 116, 113, 191, 138, 115, 154, 63, 44, 125, 146, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 64, 56, 205, 15, 117, 191, 138, 115, 154, 63, 92, 106, 117, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 64, 56, 58, 160, 114, 191, 171, 41, 244, 63, 16, 51, 147, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 32, 56, 245, 223, 121, 191, 171, 41, 244, 63, 12, 208, 70, 190, 135, 0, 220, 0, 220, 0, 121, 127, 192, 59, 32, 56, 205, 15, 117, 191, 138, 115, 154, 63, 92, 106, 117, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 64, 56, 48, 171, 120, 191, 138, 115, 154, 63, 96, 218, 69, 190, 135, 0, 220, 0, 220, 0, 121, 127, 192, 59, 64, 56, 24, 64, 118, 191, 171, 41, 244, 63, 22, 155, 118, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 32, 56, 186, 20, 123, 191, 230, 239, 38, 64, 183, 197, 71, 190, 135, 0, 220, 0, 220, 0, 121, 127, 192, 59, 0, 56, 24, 64, 118, 191, 171, 41, 244, 63, 22, 155, 118, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 32, 56, 245, 223, 121, 191, 171, 41, 244, 63, 12, 208, 70, 190, 135, 0, 220, 0, 220, 0, 121, 127, 192, 59, 32, 56, 98, 112, 119, 191, 230, 239, 38, 64, 208, 203, 119, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 0, 56, 48, 171, 120, 191, 138, 115, 154, 63, 96, 218, 69, 190, 135, 0, 220, 0, 220, 0, 121, 127, 192, 59, 64, 56, 130, 223, 115, 191, 211, 122, 1, 63, 161, 57, 116, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 96, 56, 107, 118, 119, 191, 211, 122, 1, 63, 180, 228, 68, 190, 135, 0, 220, 0, 220, 0, 121, 127, 192, 59, 96, 56, 205, 15, 117, 191, 138, 115, 154, 63, 92, 106, 117, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 64, 56, 106, 116, 113, 191, 138, 115, 154, 63, 44, 125, 146, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 64, 56, 178, 177, 108, 191, 211, 122, 1, 63, 190, 113, 169, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 96, 56, 154, 72, 112, 191, 211, 122, 1, 63, 71, 199, 145, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 96, 56, 7, 217, 109, 191, 138, 115, 154, 63, 42, 69, 170, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 64, 56, 184, 125, 101, 191, 171, 41, 244, 63, 10, 4, 217, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 32, 56, 164, 134, 94, 191, 138, 115, 154, 63, 154, 226, 237, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 64, 56, 36, 98, 100, 191, 138, 115, 154, 63, 224, 247, 215, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 64, 56, 243, 154, 95, 191, 171, 41, 244, 63, 251, 9, 239, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 32, 56, 126, 96, 107, 191, 171, 41, 244, 63, 26, 254, 194, 190, 144, 0, 197, 0, 197, 0, 112, 127, 128, 59, 32, 56, 36, 98, 100, 191, 138, 115, 154, 63, 224, 247, 215, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 64, 56, 164, 61, 106, 191, 138, 115, 154, 63, 39, 13, 194, 190, 144, 0, 197, 0, 197, 0, 112, 127, 128, 59, 64, 56, 184, 125, 101, 191, 171, 41, 244, 63, 10, 4, 217, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 32, 56, 89, 131, 108, 191, 230, 239, 38, 64, 14, 239, 195, 190, 144, 0, 197, 0, 197, 0, 112, 127, 128, 59, 0, 56, 184, 125, 101, 191, 171, 41, 244, 63, 10, 4, 217, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 32, 56, 126, 96, 107, 191, 171, 41, 244, 63, 26, 254, 194, 190, 144, 0, 197, 0, 197, 0, 112, 127, 128, 59, 32, 56, 78, 153, 102, 191, 230, 239, 38, 64, 53, 16, 218, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 0, 56, 164, 61, 106, 191, 138, 115, 154, 63, 39, 13, 194, 190, 144, 0, 197, 0, 197, 0, 112, 127, 128, 59, 64, 56, 143, 70, 99, 191, 211, 122, 1, 63, 182, 235, 214, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 96, 56, 201, 26, 105, 191, 211, 122, 1, 63, 52, 28, 193, 190, 144, 0, 197, 0, 197, 0, 112, 127, 128, 59, 96, 56, 36, 98, 100, 191, 138, 115, 154, 63, 224, 247, 215, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 64, 56, 164, 134, 94, 191, 138, 115, 154, 63, 154, 226, 237, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 64, 56, 28, 158, 87, 191, 211, 122, 1, 63, 94, 69, 1, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 96, 56, 85, 114, 93, 191, 211, 122, 1, 63, 57, 187, 236, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 96, 56, 36, 171, 88, 191, 138, 115, 154, 63, 170, 230, 1, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 64, 56, 162, 233, 75, 191, 171, 41, 244, 63, 198, 49, 23, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 32, 56, 172, 11, 67, 191, 138, 115, 154, 63, 221, 17, 32, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 64, 56, 168, 237, 74, 191, 138, 115, 154, 63, 242, 118, 22, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 64, 56, 220, 253, 67, 191, 171, 41, 244, 63, 159, 216, 32, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 32, 56, 104, 213, 83, 191, 171, 41, 244, 63, 238, 138, 13, 191, 158, 0, 176, 0, 176, 0, 98, 127, 64, 59, 32, 56, 168, 237, 74, 191, 138, 115, 154, 63, 242, 118, 22, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 64, 56, 165, 207, 82, 191, 138, 115, 154, 63, 6, 220, 12, 191, 158, 0, 176, 0, 176, 0, 98, 127, 64, 59, 64, 56, 162, 233, 75, 191, 171, 41, 244, 63, 198, 49, 23, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 32, 56, 43, 219, 84, 191, 230, 239, 38, 64, 213, 57, 14, 191, 158, 0, 176, 0, 176, 0, 98, 127, 64, 59, 0, 56, 162, 233, 75, 191, 171, 41, 244, 63, 198, 49, 23, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 32, 56, 104, 213, 83, 191, 171, 41, 244, 63, 238, 138, 13, 191, 158, 0, 176, 0, 176, 0, 98, 127, 64, 59, 32, 56, 156, 229, 76, 191, 230, 239, 38, 64, 155, 236, 23, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 0, 56, 165, 207, 82, 191, 138, 115, 154, 63, 6, 220, 12, 191, 158, 0, 176, 0, 176, 0, 98, 127, 64, 59, 64, 56, 176, 241, 73, 191, 211, 122, 1, 63, 30, 188, 21, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 96, 56, 226, 201, 81, 191, 211, 122, 1, 63, 31, 45, 12, 191, 158, 0, 176, 0, 176, 0, 98, 127, 64, 59, 96, 56, 168, 237, 74, 191, 138, 115, 154, 63, 242, 118, 22, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 64, 56, 172, 11, 67, 191, 138, 115, 154, 63, 221, 17, 32, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 64, 56, 74, 65, 58, 191, 211, 122, 1, 63, 26, 218, 40, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 96, 56, 125, 25, 66, 191, 211, 122, 1, 63, 28, 75, 31, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 96, 56, 176, 41, 59, 191, 138, 115, 154, 63, 200, 172, 41, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 64, 56, 119, 127, 42, 191, 171, 41, 244, 63, 22, 18, 60, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 32, 56, 220, 17, 32, 191, 138, 115, 154, 63, 172, 11, 67, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 64, 56, 200, 172, 41, 191, 138, 115, 154, 63, 176, 41, 59, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 64, 56, 158, 216, 32, 191, 171, 41, 244, 63, 220, 253, 67, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 32, 56, 80, 38, 52, 191, 171, 41, 244, 63, 80, 38, 52, 191, 176, 0, 158, 0, 158, 0, 80, 127, 0, 59, 32, 56, 200, 172, 41, 191, 138, 115, 154, 63, 176, 41, 59, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 64, 56, 180, 71, 51, 191, 138, 115, 154, 63, 180, 71, 51, 191, 176, 0, 158, 0, 158, 0, 80, 127, 0, 59, 64, 56, 119, 127, 42, 191, 171, 41, 244, 63, 22, 18, 60, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 32, 56, 236, 4, 53, 191, 230, 239, 38, 64, 237, 4, 53, 191, 176, 0, 158, 0, 158, 0, 80, 127, 0, 59, 0, 56, 119, 127, 42, 191, 171, 41, 244, 63, 22, 18, 60, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 32, 56, 80, 38, 52, 191, 171, 41, 244, 63, 80, 38, 52, 191, 176, 0, 158, 0, 158, 0, 80, 127, 0, 59, 32, 56, 38, 82, 43, 191, 230, 239, 38, 64, 124, 250, 60, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 0, 56, 180, 71, 51, 191, 138, 115, 154, 63, 180, 71, 51, 191, 176, 0, 158, 0, 158, 0, 80, 127, 0, 59, 64, 56, 25, 218, 40, 191, 211, 122, 1, 63, 74, 65, 58, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 96, 56, 24, 105, 50, 191, 211, 122, 1, 63, 24, 105, 50, 191, 176, 0, 158, 0, 158, 0, 80, 127, 0, 59, 96, 56, 200, 172, 41, 191, 138, 115, 154, 63, 176, 41, 59, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 64, 56, 220, 17, 32, 191, 138, 115, 154, 63, 172, 11, 67, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 64, 56, 28, 188, 21, 191, 211, 122, 1, 63, 174, 241, 73, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 96, 56, 26, 75, 31, 191, 211, 122, 1, 63, 124, 25, 66, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 96, 56, 240, 118, 22, 191, 138, 115, 154, 63, 168, 237, 74, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 64, 56, 244, 135, 2, 191, 171, 41, 244, 63, 43, 184, 89, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 32, 56, 148, 226, 237, 190, 138, 115, 154, 63, 161, 134, 94, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 64, 56, 167, 230, 1, 191, 138, 115, 154, 63, 34, 171, 88, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 64, 56, 246, 9, 239, 190, 171, 41, 244, 63, 240, 154, 95, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 32, 56, 236, 138, 13, 191, 171, 41, 244, 63, 102, 213, 83, 191, 197, 0, 144, 0, 144, 0, 59, 127, 192, 58, 32, 56, 167, 230, 1, 191, 138, 115, 154, 63, 34, 171, 88, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 64, 56, 4, 220, 12, 191, 138, 115, 154, 63, 163, 207, 82, 191, 197, 0, 144, 0, 144, 0, 59, 127, 192, 58, 64, 56, 244, 135, 2, 191, 171, 41, 244, 63, 43, 184, 89, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 32, 56, 211, 57, 14, 191, 230, 239, 38, 64, 41, 219, 84, 191, 197, 0, 144, 0, 144, 0, 59, 127, 192, 58, 0, 56, 244, 135, 2, 191, 171, 41, 244, 63, 43, 184, 89, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 32, 56, 236, 138, 13, 191, 171, 41, 244, 63, 102, 213, 83, 191, 197, 0, 144, 0, 144, 0, 59, 127, 192, 58, 32, 56, 63, 41, 3, 191, 230, 239, 38, 64, 52, 197, 90, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 0, 56, 4, 220, 12, 191, 138, 115, 154, 63, 163, 207, 82, 191, 197, 0, 144, 0, 144, 0, 59, 127, 192, 58, 64, 56, 92, 69, 1, 191, 211, 122, 1, 63, 25, 158, 87, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 96, 56, 29, 45, 12, 191, 211, 122, 1, 63, 224, 201, 81, 191, 197, 0, 144, 0, 144, 0, 59, 127, 192, 58, 96, 56, 167, 230, 1, 191, 138, 115, 154, 63, 34, 171, 88, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 64, 56, 148, 226, 237, 190, 138, 115, 154, 63, 161, 134, 94, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 64, 56, 177, 235, 214, 190, 211, 122, 1, 63, 139, 70, 99, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 96, 56, 52, 187, 236, 190, 211, 122, 1, 63, 82, 114, 93, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 96, 56, 218, 247, 215, 190, 138, 115, 154, 63, 32, 98, 100, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 64, 56, 143, 24, 171, 190, 171, 41, 244, 63, 87, 0, 111, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 32, 56, 38, 125, 146, 190, 138, 115, 154, 63, 100, 116, 113, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 64, 56, 36, 69, 170, 190, 138, 115, 154, 63, 2, 217, 109, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 64, 56, 10, 51, 147, 190, 171, 41, 244, 63, 52, 160, 114, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 32, 56, 20, 254, 194, 190, 171, 41, 244, 63, 122, 96, 107, 191, 220, 0, 135, 0, 135, 0, 36, 127, 128, 58, 32, 56, 36, 69, 170, 190, 138, 115, 154, 63, 2, 217, 109, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 64, 56, 33, 13, 194, 190, 138, 115, 154, 63, 159, 61, 106, 191, 220, 0, 135, 0, 135, 0, 36, 127, 128, 58, 64, 56, 143, 24, 171, 190, 171, 41, 244, 63, 87, 0, 111, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 32, 56, 8, 239, 195, 190, 230, 239, 38, 64, 84, 131, 108, 191, 220, 0, 135, 0, 135, 0, 36, 127, 128, 58, 0, 56, 143, 24, 171, 190, 171, 41, 244, 63, 87, 0, 111, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 32, 56, 20, 254, 194, 190, 171, 41, 244, 63, 122, 96, 107, 191, 220, 0, 135, 0, 135, 0, 36, 127, 128, 58, 32, 56, 252, 235, 171, 190, 230, 239, 38, 64, 172, 39, 112, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 0, 56, 33, 13, 194, 190, 138, 115, 154, 63, 159, 61, 106, 191, 220, 0, 135, 0, 135, 0, 36, 127, 128, 58, 64, 56, 184, 113, 169, 190, 211, 122, 1, 63, 172, 177, 108, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 96, 56, 46, 28, 193, 190, 211, 122, 1, 63, 196, 26, 105, 191, 220, 0, 135, 0, 135, 0, 36, 127, 128, 58, 96, 56, 36, 69, 170, 190, 138, 115, 154, 63, 2, 217, 109, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 64, 56, 38, 125, 146, 190, 138, 115, 154, 63, 100, 116, 113, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 64, 56, 149, 57, 116, 190, 211, 122, 1, 63, 124, 223, 115, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 96, 56, 65, 199, 145, 190, 211, 122, 1, 63, 148, 72, 112, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 96, 56, 80, 106, 117, 190, 138, 115, 154, 63, 198, 15, 117, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 64, 56, 0, 28, 21, 190, 171, 41, 244, 63, 62, 25, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 32, 56, 84, 218, 197, 189, 138, 115, 154, 63, 196, 26, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 64, 56, 191, 99, 20, 190, 138, 115, 154, 63, 246, 226, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 64, 56, 0, 208, 198, 189, 171, 41, 244, 63, 142, 82, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 32, 56, 0, 208, 70, 190, 171, 41, 244, 63, 238, 223, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 63, 58, 32, 56, 191, 99, 20, 190, 138, 115, 154, 63, 246, 226, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 64, 56, 84, 218, 69, 190, 138, 115, 154, 63, 41, 171, 120, 191, 244, 0, 130, 0, 130, 0, 12, 127, 63, 58, 64, 56, 0, 28, 21, 190, 171, 41, 244, 63, 62, 25, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 32, 56, 171, 197, 71, 190, 230, 239, 38, 64, 178, 20, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 63, 58, 0, 56, 0, 28, 21, 190, 171, 41, 244, 63, 62, 25, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 32, 56, 0, 208, 70, 190, 171, 41, 244, 63, 238, 223, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 63, 58, 32, 56, 64, 212, 21, 190, 230, 239, 38, 64, 134, 79, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 0, 56, 84, 218, 69, 190, 138, 115, 154, 63, 41, 171, 120, 191, 244, 0, 130, 0, 130, 0, 12, 127, 63, 58, 64, 56, 126, 171, 19, 190, 211, 122, 1, 63, 175, 172, 120, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 96, 56, 168, 228, 68, 190, 211, 122, 1, 63, 100, 118, 119, 191, 244, 0, 130, 0, 130, 0, 12, 127, 63, 58, 96, 56, 191, 99, 20, 190, 138, 115, 154, 63, 246, 226, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 64, 56, 84, 218, 197, 189, 138, 115, 154, 63, 196, 26, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 64, 56, 168, 228, 68, 189, 211, 122, 1, 63, 69, 25, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 96, 56, 168, 228, 196, 189, 211, 122, 1, 63, 250, 226, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 96, 56, 84, 218, 69, 189, 138, 115, 154, 63, 146, 82, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 64, 56, 0, 208, 70, 189, 171, 41, 244, 63, 223, 139, 125, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 32, 56, 0, 0, 0, 0, 138, 115, 154, 63, 96, 138, 125, 191, 244, 0, 130, 0, 130, 0, 12, 127, 0, 58, 64, 56, 84, 218, 69, 189, 138, 115, 154, 63, 146, 82, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 64, 56, 0, 0, 0, 0, 171, 41, 244, 63, 48, 197, 126, 191, 244, 0, 130, 0, 130, 0, 12, 127, 0, 58, 32, 56, 0, 208, 198, 189, 171, 41, 244, 63, 142, 82, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 32, 56, 84, 218, 69, 189, 138, 115, 154, 63, 146, 82, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 64, 56, 84, 218, 197, 189, 138, 115, 154, 63, 196, 26, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 64, 56, 0, 208, 70, 189, 171, 41, 244, 63, 223, 139, 125, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 32, 56, 171, 197, 199, 189, 230, 239, 38, 64, 89, 138, 125, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 0, 56, 0, 208, 70, 189, 171, 41, 244, 63, 223, 139, 125, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 32, 56, 0, 208, 198, 189, 171, 41, 244, 63, 142, 82, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 32, 56, 171, 197, 71, 189, 230, 239, 38, 64, 44, 197, 126, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 0, 56, 10, 155, 118, 190, 171, 41, 244, 63, 17, 64, 118, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 32, 56, 84, 218, 69, 190, 138, 115, 154, 63, 41, 171, 120, 191, 220, 0, 135, 0, 135, 0, 36, 127, 63, 58, 64, 56, 80, 106, 117, 190, 138, 115, 154, 63, 198, 15, 117, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 64, 56, 0, 208, 70, 190, 171, 41, 244, 63, 238, 223, 121, 191, 220, 0, 135, 0, 135, 0, 36, 127, 63, 58, 32, 56, 10, 51, 147, 190, 171, 41, 244, 63, 52, 160, 114, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 32, 56, 80, 106, 117, 190, 138, 115, 154, 63, 198, 15, 117, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 64, 56, 38, 125, 146, 190, 138, 115, 154, 63, 100, 116, 113, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 64, 56, 10, 155, 118, 190, 171, 41, 244, 63, 17, 64, 118, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 32, 56, 239, 232, 147, 190, 230, 239, 38, 64, 3, 204, 115, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 0, 56, 10, 155, 118, 190, 171, 41, 244, 63, 17, 64, 118, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 32, 56, 10, 51, 147, 190, 171, 41, 244, 63, 52, 160, 114, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 32, 56, 196, 203, 119, 190, 230, 239, 38, 64, 90, 112, 119, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 0, 56, 5, 4, 217, 190, 171, 41, 244, 63, 181, 125, 101, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 32, 56, 33, 13, 194, 190, 138, 115, 154, 63, 159, 61, 106, 191, 197, 0, 144, 0, 144, 0, 59, 127, 128, 58, 64, 56, 218, 247, 215, 190, 138, 115, 154, 63, 32, 98, 100, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 64, 56, 20, 254, 194, 190, 171, 41, 244, 63, 122, 96, 107, 191, 197, 0, 144, 0, 144, 0, 59, 127, 128, 58, 32, 56, 246, 9, 239, 190, 171, 41, 244, 63, 240, 154, 95, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 32, 56, 218, 247, 215, 190, 138, 115, 154, 63, 32, 98, 100, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 64, 56, 148, 226, 237, 190, 138, 115, 154, 63, 161, 134, 94, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 64, 56, 5, 4, 217, 190, 171, 41, 244, 63, 181, 125, 101, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 32, 56, 87, 49, 240, 190, 230, 239, 38, 64, 62, 175, 96, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 0, 56, 5, 4, 217, 190, 171, 41, 244, 63, 181, 125, 101, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 32, 56, 246, 9, 239, 190, 171, 41, 244, 63, 240, 154, 95, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 32, 56, 48, 16, 218, 190, 230, 239, 38, 64, 73, 153, 102, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 0, 56, 197, 49, 23, 191, 171, 41, 244, 63, 161, 233, 75, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 32, 56, 4, 220, 12, 191, 138, 115, 154, 63, 163, 207, 82, 191, 176, 0, 158, 0, 158, 0, 80, 127, 192, 58, 64, 56, 240, 118, 22, 191, 138, 115, 154, 63, 168, 237, 74, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 64, 56, 236, 138, 13, 191, 171, 41, 244, 63, 102, 213, 83, 191, 176, 0, 158, 0, 158, 0, 80, 127, 192, 58, 32, 56, 158, 216, 32, 191, 171, 41, 244, 63, 220, 253, 67, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 32, 56, 240, 118, 22, 191, 138, 115, 154, 63, 168, 237, 74, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 64, 56, 220, 17, 32, 191, 138, 115, 154, 63, 172, 11, 67, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 64, 56, 197, 49, 23, 191, 171, 41, 244, 63, 161, 233, 75, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 32, 56, 96, 159, 33, 191, 230, 239, 38, 64, 11, 240, 68, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 0, 56, 197, 49, 23, 191, 171, 41, 244, 63, 161, 233, 75, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 32, 56, 158, 216, 32, 191, 171, 41, 244, 63, 220, 253, 67, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 32, 56, 154, 236, 23, 191, 230, 239, 38, 64, 154, 229, 76, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 0, 56, 22, 18, 60, 191, 171, 41, 244, 63, 120, 127, 42, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 32, 56, 180, 71, 51, 191, 138, 115, 154, 63, 180, 71, 51, 191, 158, 0, 176, 0, 176, 0, 98, 127, 0, 59, 64, 56, 176, 41, 59, 191, 138, 115, 154, 63, 200, 172, 41, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 64, 56, 80, 38, 52, 191, 171, 41, 244, 63, 80, 38, 52, 191, 158, 0, 176, 0, 176, 0, 98, 127, 0, 59, 32, 56, 220, 253, 67, 191, 171, 41, 244, 63, 159, 216, 32, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 32, 56, 176, 41, 59, 191, 138, 115, 154, 63, 200, 172, 41, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 64, 56, 172, 11, 67, 191, 138, 115, 154, 63, 221, 17, 32, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 64, 56, 22, 18, 60, 191, 171, 41, 244, 63, 120, 127, 42, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 32, 56, 12, 240, 68, 191, 230, 239, 38, 64, 97, 159, 33, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 0, 56, 22, 18, 60, 191, 171, 41, 244, 63, 120, 127, 42, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 32, 56, 220, 253, 67, 191, 171, 41, 244, 63, 159, 216, 32, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 32, 56, 124, 250, 60, 191, 230, 239, 38, 64, 39, 82, 43, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 0, 56, 46, 184, 89, 191, 171, 41, 244, 63, 246, 135, 2, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 32, 56, 165, 207, 82, 191, 138, 115, 154, 63, 6, 220, 12, 191, 144, 0, 197, 0, 197, 0, 112, 127, 64, 59, 64, 56, 36, 171, 88, 191, 138, 115, 154, 63, 170, 230, 1, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 64, 56, 104, 213, 83, 191, 171, 41, 244, 63, 238, 138, 13, 191, 144, 0, 197, 0, 197, 0, 112, 127, 64, 59, 32, 56, 243, 154, 95, 191, 171, 41, 244, 63, 251, 9, 239, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 32, 56, 36, 171, 88, 191, 138, 115, 154, 63, 170, 230, 1, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 64, 56, 164, 134, 94, 191, 138, 115, 154, 63, 154, 226, 237, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 64, 56, 46, 184, 89, 191, 171, 41, 244, 63, 246, 135, 2, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 32, 56, 66, 175, 96, 191, 230, 239, 38, 64, 92, 49, 240, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 0, 56, 46, 184, 89, 191, 171, 41, 244, 63, 246, 135, 2, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 32, 56, 243, 154, 95, 191, 171, 41, 244, 63, 251, 9, 239, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 32, 56, 54, 197, 90, 191, 230, 239, 38, 64, 66, 41, 3, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 0, 56, 92, 0, 111, 191, 171, 41, 244, 63, 149, 24, 171, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 32, 56, 164, 61, 106, 191, 138, 115, 154, 63, 39, 13, 194, 190, 135, 0, 220, 0, 220, 0, 121, 127, 128, 59, 64, 56, 7, 217, 109, 191, 138, 115, 154, 63, 42, 69, 170, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 64, 56, 126, 96, 107, 191, 171, 41, 244, 63, 26, 254, 194, 190, 135, 0, 220, 0, 220, 0, 121, 127, 128, 59, 32, 56, 58, 160, 114, 191, 171, 41, 244, 63, 16, 51, 147, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 32, 56, 7, 217, 109, 191, 138, 115, 154, 63, 42, 69, 170, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 64, 56, 106, 116, 113, 191, 138, 115, 154, 63, 44, 125, 146, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 64, 56, 92, 0, 111, 191, 171, 41, 244, 63, 149, 24, 171, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 32, 56, 10, 204, 115, 191, 230, 239, 38, 64, 245, 232, 147, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 0, 56, 92, 0, 111, 191, 171, 41, 244, 63, 149, 24, 171, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 32, 56, 58, 160, 114, 191, 171, 41, 244, 63, 16, 51, 147, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 32, 56, 178, 39, 112, 191, 230, 239, 38, 64, 2, 236, 171, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 0, 56, 66, 25, 123, 191, 171, 41, 244, 63, 7, 28, 21, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 32, 56, 48, 171, 120, 191, 138, 115, 154, 63, 96, 218, 69, 190, 130, 0, 244, 0, 244, 0, 126, 127, 192, 59, 64, 56, 250, 226, 121, 191, 138, 115, 154, 63, 198, 99, 20, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 64, 56, 245, 223, 121, 191, 171, 41, 244, 63, 12, 208, 70, 190, 130, 0, 244, 0, 244, 0, 126, 127, 192, 59, 32, 56, 144, 82, 124, 191, 171, 41, 244, 63, 3, 208, 198, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 32, 56, 250, 226, 121, 191, 138, 115, 154, 63, 198, 99, 20, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 64, 56, 197, 26, 123, 191, 138, 115, 154, 63, 88, 218, 197, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 64, 56, 66, 25, 123, 191, 171, 41, 244, 63, 7, 28, 21, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 32, 56, 92, 138, 125, 191, 230, 239, 38, 64, 174, 197, 199, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 0, 56, 66, 25, 123, 191, 171, 41, 244, 63, 7, 28, 21, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 32, 56, 144, 82, 124, 191, 171, 41, 244, 63, 3, 208, 198, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 32, 56, 139, 79, 124, 191, 230, 239, 38, 64, 71, 212, 21, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 0, 56, 223, 139, 125, 191, 171, 41, 244, 63, 55, 208, 70, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 32, 56, 90, 138, 125, 191, 138, 115, 154, 63, 0, 114, 253, 51, 130, 0, 12, 0, 12, 0, 126, 127, 0, 0, 64, 56, 144, 82, 124, 191, 138, 115, 154, 63, 136, 218, 69, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 64, 56, 44, 197, 126, 191, 171, 41, 244, 63, 0, 185, 10, 52, 130, 0, 12, 0, 12, 0, 126, 127, 0, 0, 32, 56, 146, 82, 124, 191, 171, 41, 244, 63, 38, 208, 198, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 32, 56, 144, 82, 124, 191, 138, 115, 154, 63, 136, 218, 69, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 64, 56, 198, 26, 123, 191, 138, 115, 154, 63, 120, 218, 197, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 64, 56, 223, 139, 125, 191, 171, 41, 244, 63, 55, 208, 70, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 32, 56, 93, 138, 125, 191, 230, 239, 38, 64, 212, 197, 199, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 0, 56, 223, 139, 125, 191, 171, 41, 244, 63, 55, 208, 70, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 32, 56, 146, 82, 124, 191, 171, 41, 244, 63, 38, 208, 198, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 36, 32, 56, 45, 197, 126, 191, 230, 239, 38, 64, 231, 197, 71, 61, 130, 0, 12, 0, 12, 0, 126, 127, 0, 32, 0, 56, 27, 64, 118, 191, 171, 41, 244, 63, 40, 155, 118, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 32, 56, 51, 171, 120, 191, 138, 115, 154, 63, 112, 218, 69, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 40, 64, 56, 208, 15, 117, 191, 138, 115, 154, 63, 108, 106, 117, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 64, 56, 248, 223, 121, 191, 171, 41, 244, 63, 29, 208, 70, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 40, 32, 56, 62, 160, 114, 191, 171, 41, 244, 63, 26, 51, 147, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 32, 56, 208, 15, 117, 191, 138, 115, 154, 63, 108, 106, 117, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 64, 56, 110, 116, 113, 191, 138, 115, 154, 63, 52, 125, 146, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 64, 56, 27, 64, 118, 191, 171, 41, 244, 63, 40, 155, 118, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 32, 56, 14, 204, 115, 191, 230, 239, 38, 64, 255, 232, 147, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 0, 56, 27, 64, 118, 191, 171, 41, 244, 63, 40, 155, 118, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 32, 56, 62, 160, 114, 191, 171, 41, 244, 63, 26, 51, 147, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 42, 32, 56, 102, 112, 119, 191, 230, 239, 38, 64, 228, 203, 119, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 41, 0, 56, 190, 125, 101, 191, 171, 41, 244, 63, 22, 4, 217, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 32, 56, 168, 61, 106, 191, 138, 115, 154, 63, 49, 13, 194, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 44, 64, 56, 41, 98, 100, 191, 138, 115, 154, 63, 236, 247, 215, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 64, 56, 131, 96, 107, 191, 171, 41, 244, 63, 37, 254, 194, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 44, 32, 56, 249, 154, 95, 191, 171, 41, 244, 63, 7, 10, 239, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 32, 56, 41, 98, 100, 191, 138, 115, 154, 63, 236, 247, 215, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 64, 56, 170, 134, 94, 191, 138, 115, 154, 63, 166, 226, 237, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 64, 56, 190, 125, 101, 191, 171, 41, 244, 63, 22, 4, 217, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 32, 56, 72, 175, 96, 191, 230, 239, 38, 64, 104, 49, 240, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 0, 56, 190, 125, 101, 191, 171, 41, 244, 63, 22, 4, 217, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 32, 56, 249, 154, 95, 191, 171, 41, 244, 63, 7, 10, 239, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 32, 56, 83, 153, 102, 191, 230, 239, 38, 64, 64, 16, 218, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 0, 56, 170, 233, 75, 191, 171, 41, 244, 63, 206, 49, 23, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 32, 56, 172, 207, 82, 191, 138, 115, 154, 63, 13, 220, 12, 63, 158, 0, 80, 0, 80, 0, 98, 127, 0, 46, 64, 56, 176, 237, 74, 191, 138, 115, 154, 63, 250, 118, 22, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 64, 56, 111, 213, 83, 191, 171, 41, 244, 63, 244, 138, 13, 63, 158, 0, 80, 0, 80, 0, 98, 127, 0, 46, 32, 56, 228, 253, 67, 191, 171, 41, 244, 63, 168, 216, 32, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 32, 56, 176, 237, 74, 191, 138, 115, 154, 63, 250, 118, 22, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 64, 56, 180, 11, 67, 191, 138, 115, 154, 63, 230, 17, 32, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 64, 56, 170, 233, 75, 191, 171, 41, 244, 63, 206, 49, 23, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 32, 56, 20, 240, 68, 191, 230, 239, 38, 64, 105, 159, 33, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 0, 56, 170, 233, 75, 191, 171, 41, 244, 63, 206, 49, 23, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 32, 56, 228, 253, 67, 191, 171, 41, 244, 63, 168, 216, 32, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 32, 56, 163, 229, 76, 191, 230, 239, 38, 64, 162, 236, 23, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 0, 56, 127, 127, 42, 191, 171, 41, 244, 63, 32, 18, 60, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 32, 56, 188, 71, 51, 191, 138, 115, 154, 63, 190, 71, 51, 63, 176, 0, 98, 0, 98, 0, 80, 127, 255, 47, 64, 56, 208, 172, 41, 191, 138, 115, 154, 63, 186, 41, 59, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 64, 56, 88, 38, 52, 191, 171, 41, 244, 63, 90, 38, 52, 63, 176, 0, 98, 0, 98, 0, 80, 127, 255, 47, 32, 56, 166, 216, 32, 191, 171, 41, 244, 63, 230, 253, 67, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 32, 56, 208, 172, 41, 191, 138, 115, 154, 63, 186, 41, 59, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 64, 56, 228, 17, 32, 191, 138, 115, 154, 63, 182, 11, 67, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 64, 56, 127, 127, 42, 191, 171, 41, 244, 63, 32, 18, 60, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 32, 56, 104, 159, 33, 191, 230, 239, 38, 64, 22, 240, 68, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 0, 56, 127, 127, 42, 191, 171, 41, 244, 63, 32, 18, 60, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 32, 56, 166, 216, 32, 191, 171, 41, 244, 63, 230, 253, 67, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 32, 56, 46, 82, 43, 191, 230, 239, 38, 64, 134, 250, 60, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 0, 56, 252, 135, 2, 191, 171, 41, 244, 63, 56, 184, 89, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 32, 56, 13, 220, 12, 191, 138, 115, 154, 63, 175, 207, 82, 63, 197, 0, 112, 0, 112, 0, 59, 127, 0, 49, 64, 56, 176, 230, 1, 191, 138, 115, 154, 63, 46, 171, 88, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 64, 56, 244, 138, 13, 191, 171, 41, 244, 63, 114, 213, 83, 63, 197, 0, 112, 0, 112, 0, 59, 127, 0, 49, 32, 56, 8, 10, 239, 190, 171, 41, 244, 63, 253, 154, 95, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 32, 56, 176, 230, 1, 191, 138, 115, 154, 63, 46, 171, 88, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 64, 56, 166, 226, 237, 190, 138, 115, 154, 63, 174, 134, 94, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 64, 56, 252, 135, 2, 191, 171, 41, 244, 63, 56, 184, 89, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 32, 56, 105, 49, 240, 190, 230, 239, 38, 64, 76, 175, 96, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 0, 56, 252, 135, 2, 191, 171, 41, 244, 63, 56, 184, 89, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 32, 56, 8, 10, 239, 190, 171, 41, 244, 63, 253, 154, 95, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 32, 56, 72, 41, 3, 191, 230, 239, 38, 64, 64, 197, 90, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 0, 56, 160, 24, 171, 190, 171, 41, 244, 63, 102, 0, 111, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 32, 56, 50, 13, 194, 190, 138, 115, 154, 63, 174, 61, 106, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 49, 64, 56, 52, 69, 170, 190, 138, 115, 154, 63, 17, 217, 109, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 64, 56, 38, 254, 194, 190, 171, 41, 244, 63, 136, 96, 107, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 49, 32, 56, 26, 51, 147, 190, 171, 41, 244, 63, 68, 160, 114, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 32, 56, 52, 69, 170, 190, 138, 115, 154, 63, 17, 217, 109, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 64, 56, 53, 125, 146, 190, 138, 115, 154, 63, 116, 116, 113, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 64, 56, 160, 24, 171, 190, 171, 41, 244, 63, 102, 0, 111, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 32, 56, 0, 233, 147, 190, 230, 239, 38, 64, 20, 204, 115, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 0, 56, 160, 24, 171, 190, 171, 41, 244, 63, 102, 0, 111, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 32, 56, 26, 51, 147, 190, 171, 41, 244, 63, 68, 160, 114, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 32, 56, 13, 236, 171, 190, 230, 239, 38, 64, 188, 39, 112, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 0, 56, 24, 28, 21, 190, 171, 41, 244, 63, 76, 25, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 32, 56, 113, 218, 69, 190, 138, 115, 154, 63, 58, 171, 120, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 50, 64, 56, 214, 99, 20, 190, 138, 115, 154, 63, 4, 227, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 64, 56, 30, 208, 70, 190, 171, 41, 244, 63, 255, 223, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 50, 32, 56, 36, 208, 198, 189, 171, 41, 244, 63, 154, 82, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 32, 56, 214, 99, 20, 190, 138, 115, 154, 63, 4, 227, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 64, 56, 119, 218, 197, 189, 138, 115, 154, 63, 206, 26, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 64, 56, 24, 28, 21, 190, 171, 41, 244, 63, 76, 25, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 32, 56, 209, 197, 199, 189, 230, 239, 38, 64, 101, 138, 125, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 0, 56, 24, 28, 21, 190, 171, 41, 244, 63, 76, 25, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 32, 56, 36, 208, 198, 189, 171, 41, 244, 63, 154, 82, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 32, 56, 89, 212, 21, 190, 230, 239, 38, 64, 148, 79, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 0, 56, 255, 207, 70, 61, 171, 41, 244, 63, 232, 139, 125, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 32, 56, 217, 124, 199, 179, 138, 115, 154, 63, 99, 138, 125, 63, 12, 0, 126, 0, 126, 0, 244, 127, 255, 51, 64, 56, 84, 218, 69, 61, 138, 115, 154, 63, 154, 82, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 64, 56, 217, 124, 207, 179, 171, 41, 244, 63, 52, 197, 126, 63, 12, 0, 126, 0, 126, 0, 244, 127, 255, 51, 32, 56, 12, 208, 198, 61, 171, 41, 244, 63, 155, 82, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 32, 56, 84, 218, 69, 61, 138, 115, 154, 63, 154, 82, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 64, 56, 96, 218, 197, 61, 138, 115, 154, 63, 208, 26, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 64, 56, 255, 207, 70, 61, 171, 41, 244, 63, 232, 139, 125, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 32, 56, 183, 197, 199, 61, 230, 239, 38, 64, 102, 138, 125, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 0, 56, 255, 207, 70, 61, 171, 41, 244, 63, 232, 139, 125, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 32, 56, 12, 208, 198, 61, 171, 41, 244, 63, 155, 82, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 32, 56, 169, 197, 71, 61, 230, 239, 38, 64, 54, 197, 126, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 0, 56, 29, 155, 118, 62, 171, 41, 244, 63, 36, 64, 118, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 32, 56, 102, 218, 69, 62, 138, 115, 154, 63, 60, 171, 120, 63, 36, 0, 121, 0, 121, 0, 220, 127, 127, 52, 64, 56, 99, 106, 117, 62, 138, 115, 154, 63, 217, 15, 117, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 64, 56, 18, 208, 70, 62, 171, 41, 244, 63, 1, 224, 121, 63, 36, 0, 121, 0, 121, 0, 220, 127, 127, 52, 32, 56, 20, 51, 147, 62, 171, 41, 244, 63, 70, 160, 114, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 32, 56, 99, 106, 117, 62, 138, 115, 154, 63, 217, 15, 117, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 64, 56, 48, 125, 146, 62, 138, 115, 154, 63, 118, 116, 113, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 64, 56, 29, 155, 118, 62, 171, 41, 244, 63, 36, 64, 118, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 32, 56, 249, 232, 147, 62, 230, 239, 38, 64, 22, 204, 115, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 0, 56, 29, 155, 118, 62, 171, 41, 244, 63, 36, 64, 118, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 32, 56, 20, 51, 147, 62, 171, 41, 244, 63, 70, 160, 114, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 32, 56, 216, 203, 119, 62, 230, 239, 38, 64, 110, 112, 119, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 0, 56, 18, 4, 217, 62, 171, 41, 244, 63, 198, 125, 101, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 32, 56, 45, 13, 194, 62, 138, 115, 154, 63, 176, 61, 106, 63, 59, 0, 112, 0, 112, 0, 197, 127, 255, 52, 64, 56, 232, 247, 215, 62, 138, 115, 154, 63, 49, 98, 100, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 64, 56, 32, 254, 194, 62, 171, 41, 244, 63, 139, 96, 107, 63, 59, 0, 112, 0, 112, 0, 197, 127, 255, 52, 32, 56, 3, 10, 239, 62, 171, 41, 244, 63, 1, 155, 95, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 32, 56, 232, 247, 215, 62, 138, 115, 154, 63, 49, 98, 100, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 64, 56, 162, 226, 237, 62, 138, 115, 154, 63, 178, 134, 94, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 64, 56, 18, 4, 217, 62, 171, 41, 244, 63, 198, 125, 101, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 32, 56, 100, 49, 240, 62, 230, 239, 38, 64, 80, 175, 96, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 0, 56, 18, 4, 217, 62, 171, 41, 244, 63, 198, 125, 101, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 32, 56, 3, 10, 239, 62, 171, 41, 244, 63, 1, 155, 95, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 32, 56, 60, 16, 218, 62, 230, 239, 38, 64, 91, 153, 102, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 0, 56, 204, 49, 23, 63, 171, 41, 244, 63, 176, 233, 75, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 32, 56, 12, 220, 12, 63, 138, 115, 154, 63, 179, 207, 82, 63, 80, 0, 98, 0, 98, 0, 176, 127, 127, 53, 64, 56, 248, 118, 22, 63, 138, 115, 154, 63, 182, 237, 74, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 64, 56, 243, 138, 13, 63, 171, 41, 244, 63, 118, 213, 83, 63, 80, 0, 98, 0, 98, 0, 176, 127, 127, 53, 32, 56, 166, 216, 32, 63, 171, 41, 244, 63, 234, 253, 67, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 32, 56, 248, 118, 22, 63, 138, 115, 154, 63, 182, 237, 74, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 64, 56, 228, 17, 32, 63, 138, 115, 154, 63, 186, 11, 67, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 64, 56, 204, 49, 23, 63, 171, 41, 244, 63, 176, 233, 75, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 32, 56, 103, 159, 33, 63, 230, 239, 38, 64, 26, 240, 68, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 0, 56, 204, 49, 23, 63, 171, 41, 244, 63, 176, 233, 75, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 32, 56, 166, 216, 32, 63, 171, 41, 244, 63, 234, 253, 67, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 32, 56, 160, 236, 23, 63, 230, 239, 38, 64, 170, 229, 76, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 0, 56, 30, 18, 60, 63, 171, 41, 244, 63, 133, 127, 42, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 32, 56, 188, 71, 51, 63, 138, 115, 154, 63, 194, 71, 51, 63, 98, 0, 80, 0, 80, 0, 158, 127, 255, 53, 64, 56, 184, 41, 59, 63, 138, 115, 154, 63, 214, 172, 41, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 64, 56, 88, 38, 52, 63, 171, 41, 244, 63, 94, 38, 52, 63, 98, 0, 80, 0, 80, 0, 158, 127, 255, 53, 32, 56, 228, 253, 67, 63, 171, 41, 244, 63, 172, 216, 32, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 32, 56, 184, 41, 59, 63, 138, 115, 154, 63, 214, 172, 41, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 64, 56, 180, 11, 67, 63, 138, 115, 154, 63, 234, 17, 32, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 64, 56, 30, 18, 60, 63, 171, 41, 244, 63, 133, 127, 42, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 32, 56, 20, 240, 68, 63, 230, 239, 38, 64, 110, 159, 33, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 0, 56, 30, 18, 60, 63, 171, 41, 244, 63, 133, 127, 42, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 32, 56, 228, 253, 67, 63, 171, 41, 244, 63, 172, 216, 32, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 32, 56, 132, 250, 60, 63, 230, 239, 38, 64, 52, 82, 43, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 0, 56, 54, 184, 89, 63, 171, 41, 244, 63, 2, 136, 2, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 32, 56, 173, 207, 82, 63, 138, 115, 154, 63, 18, 220, 12, 63, 112, 0, 59, 0, 59, 0, 144, 127, 127, 54, 64, 56, 44, 171, 88, 63, 138, 115, 154, 63, 181, 230, 1, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 64, 56, 112, 213, 83, 63, 171, 41, 244, 63, 250, 138, 13, 63, 112, 0, 59, 0, 59, 0, 144, 127, 127, 54, 32, 56, 251, 154, 95, 63, 171, 41, 244, 63, 18, 10, 239, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 32, 56, 44, 171, 88, 63, 138, 115, 154, 63, 181, 230, 1, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 64, 56, 172, 134, 94, 63, 138, 115, 154, 63, 176, 226, 237, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 64, 56, 54, 184, 89, 63, 171, 41, 244, 63, 2, 136, 2, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 32, 56, 74, 175, 96, 63, 230, 239, 38, 64, 115, 49, 240, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 0, 56, 54, 184, 89, 63, 171, 41, 244, 63, 2, 136, 2, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 32, 56, 251, 154, 95, 63, 171, 41, 244, 63, 18, 10, 239, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 32, 56, 62, 197, 90, 63, 230, 239, 38, 64, 77, 41, 3, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 0, 56, 100, 0, 111, 63, 171, 41, 244, 63, 170, 24, 171, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 32, 56, 172, 61, 106, 63, 138, 115, 154, 63, 61, 13, 194, 62, 121, 0, 36, 0, 36, 0, 135, 127, 255, 54, 64, 56, 15, 217, 109, 63, 138, 115, 154, 63, 62, 69, 170, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 64, 56, 134, 96, 107, 63, 171, 41, 244, 63, 48, 254, 194, 62, 121, 0, 36, 0, 36, 0, 135, 127, 255, 54, 32, 56, 66, 160, 114, 63, 171, 41, 244, 63, 37, 51, 147, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 32, 56, 15, 217, 109, 63, 138, 115, 154, 63, 62, 69, 170, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 64, 56, 114, 116, 113, 63, 138, 115, 154, 63, 64, 125, 146, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 64, 56, 100, 0, 111, 63, 171, 41, 244, 63, 170, 24, 171, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 32, 56, 18, 204, 115, 63, 230, 239, 38, 64, 10, 233, 147, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 0, 56, 100, 0, 111, 63, 171, 41, 244, 63, 170, 24, 171, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 32, 56, 66, 160, 114, 63, 171, 41, 244, 63, 37, 51, 147, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 32, 56, 186, 39, 112, 63, 230, 239, 38, 64, 23, 236, 171, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 0, 56, 74, 25, 123, 63, 171, 41, 244, 63, 44, 28, 21, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 32, 56, 56, 171, 120, 63, 138, 115, 154, 63, 134, 218, 69, 62, 126, 0, 12, 0, 12, 0, 130, 127, 127, 55, 64, 56, 2, 227, 121, 63, 138, 115, 154, 63, 235, 99, 20, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 64, 56, 253, 223, 121, 63, 171, 41, 244, 63, 50, 208, 70, 62, 126, 0, 12, 0, 12, 0, 130, 127, 127, 55, 32, 56, 152, 82, 124, 63, 171, 41, 244, 63, 76, 208, 198, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 32, 56, 2, 227, 121, 63, 138, 115, 154, 63, 235, 99, 20, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 64, 56, 204, 26, 123, 63, 138, 115, 154, 63, 160, 218, 197, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 64, 56, 74, 25, 123, 63, 171, 41, 244, 63, 44, 28, 21, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 32, 56, 99, 138, 125, 63, 230, 239, 38, 64, 248, 197, 199, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 0, 56, 74, 25, 123, 63, 171, 41, 244, 63, 44, 28, 21, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 32, 56, 152, 82, 124, 63, 171, 41, 244, 63, 76, 208, 198, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 32, 56, 146, 79, 124, 63, 230, 239, 38, 64, 109, 212, 21, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 0, 56, 229, 139, 125, 63, 171, 41, 244, 63, 179, 207, 70, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 32, 56, 97, 138, 125, 63, 138, 115, 154, 63, 128, 92, 207, 52, 126, 0, 244, 0, 244, 0, 130, 127, 255, 55, 64, 56, 151, 82, 124, 63, 138, 115, 154, 63, 6, 218, 69, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 64, 56, 50, 197, 126, 63, 171, 41, 244, 63, 128, 92, 205, 52, 126, 0, 244, 0, 244, 0, 130, 127, 255, 55, 32, 56, 152, 82, 124, 63, 171, 41, 244, 63, 230, 207, 198, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 32, 56, 151, 82, 124, 63, 138, 115, 154, 63, 6, 218, 69, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 64, 56, 205, 26, 123, 63, 138, 115, 154, 63, 58, 218, 197, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 64, 56, 229, 139, 125, 63, 171, 41, 244, 63, 179, 207, 70, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 32, 56, 99, 138, 125, 63, 230, 239, 38, 64, 146, 197, 199, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 0, 56, 229, 139, 125, 63, 171, 41, 244, 63, 179, 207, 70, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 32, 56, 152, 82, 124, 63, 171, 41, 244, 63, 230, 207, 198, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 32, 56, 52, 197, 126, 63, 230, 239, 38, 64, 95, 197, 71, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 0, 56, 32, 64, 118, 63, 171, 41, 244, 63, 12, 155, 118, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 32, 56, 57, 171, 120, 63, 138, 115, 154, 63, 84, 218, 69, 190, 121, 0, 220, 0, 220, 0, 135, 127, 63, 56, 64, 56, 214, 15, 117, 63, 138, 115, 154, 63, 82, 106, 117, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 64, 56, 254, 223, 121, 63, 171, 41, 244, 63, 0, 208, 70, 190, 121, 0, 220, 0, 220, 0, 135, 127, 63, 56, 32, 56, 67, 160, 114, 63, 171, 41, 244, 63, 12, 51, 147, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 32, 56, 214, 15, 117, 63, 138, 115, 154, 63, 82, 106, 117, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 64, 56, 116, 116, 113, 63, 138, 115, 154, 63, 40, 125, 146, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 64, 56, 32, 64, 118, 63, 171, 41, 244, 63, 12, 155, 118, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 32, 56, 18, 204, 115, 63, 230, 239, 38, 64, 241, 232, 147, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 0, 56, 32, 64, 118, 63, 171, 41, 244, 63, 12, 155, 118, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 32, 56, 67, 160, 114, 63, 171, 41, 244, 63, 12, 51, 147, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 32, 56, 106, 112, 119, 63, 230, 239, 38, 64, 199, 203, 119, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 0, 56, 195, 125, 101, 63, 171, 41, 244, 63, 10, 4, 217, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 32, 56, 174, 61, 106, 63, 138, 115, 154, 63, 37, 13, 194, 190, 112, 0, 197, 0, 197, 0, 144, 127, 127, 56, 64, 56, 46, 98, 100, 63, 138, 115, 154, 63, 224, 247, 215, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 64, 56, 136, 96, 107, 63, 171, 41, 244, 63, 24, 254, 194, 190, 112, 0, 197, 0, 197, 0, 144, 127, 127, 56, 32, 56, 254, 154, 95, 63, 171, 41, 244, 63, 251, 9, 239, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 32, 56, 46, 98, 100, 63, 138, 115, 154, 63, 224, 247, 215, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 64, 56, 175, 134, 94, 63, 138, 115, 154, 63, 154, 226, 237, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 64, 56, 195, 125, 101, 63, 171, 41, 244, 63, 10, 4, 217, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 32, 56, 76, 175, 96, 63, 230, 239, 38, 64, 92, 49, 240, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 0, 56, 195, 125, 101, 63, 171, 41, 244, 63, 10, 4, 217, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 32, 56, 254, 154, 95, 63, 171, 41, 244, 63, 251, 9, 239, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 32, 56, 87, 153, 102, 63, 230, 239, 38, 64, 52, 16, 218, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 0, 56, 172, 233, 75, 63, 171, 41, 244, 63, 200, 49, 23, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 32, 56, 176, 207, 82, 63, 138, 115, 154, 63, 8, 220, 12, 191, 98, 0, 176, 0, 176, 0, 158, 127, 191, 56, 64, 56, 180, 237, 74, 63, 138, 115, 154, 63, 244, 118, 22, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 64, 56, 114, 213, 83, 63, 171, 41, 244, 63, 239, 138, 13, 191, 98, 0, 176, 0, 176, 0, 158, 127, 191, 56, 32, 56, 231, 253, 67, 63, 171, 41, 244, 63, 162, 216, 32, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 32, 56, 180, 237, 74, 63, 138, 115, 154, 63, 244, 118, 22, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 64, 56, 184, 11, 67, 63, 138, 115, 154, 63, 224, 17, 32, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 64, 56, 172, 233, 75, 63, 171, 41, 244, 63, 200, 49, 23, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 32, 56, 22, 240, 68, 63, 230, 239, 38, 64, 99, 159, 33, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 0, 56, 172, 233, 75, 63, 171, 41, 244, 63, 200, 49, 23, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 32, 56, 231, 253, 67, 63, 171, 41, 244, 63, 162, 216, 32, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 32, 56, 166, 229, 76, 63, 230, 239, 38, 64, 156, 236, 23, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 0, 56, 130, 127, 42, 63, 171, 41, 244, 63, 26, 18, 60, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 32, 56, 192, 71, 51, 63, 138, 115, 154, 63, 185, 71, 51, 191, 80, 0, 158, 0, 158, 0, 176, 127, 255, 56, 64, 56, 212, 172, 41, 63, 138, 115, 154, 63, 182, 41, 59, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 64, 56, 92, 38, 52, 63, 171, 41, 244, 63, 84, 38, 52, 191, 80, 0, 158, 0, 158, 0, 176, 127, 255, 56, 32, 56, 169, 216, 32, 63, 171, 41, 244, 63, 225, 253, 67, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 32, 56, 212, 172, 41, 63, 138, 115, 154, 63, 182, 41, 59, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 64, 56, 232, 17, 32, 63, 138, 115, 154, 63, 178, 11, 67, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 64, 56, 130, 127, 42, 63, 171, 41, 244, 63, 26, 18, 60, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 32, 56, 106, 159, 33, 63, 230, 239, 38, 64, 16, 240, 68, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 0, 56, 130, 127, 42, 63, 171, 41, 244, 63, 26, 18, 60, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 32, 56, 169, 216, 32, 63, 171, 41, 244, 63, 225, 253, 67, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 32, 56, 48, 82, 43, 63, 230, 239, 38, 64, 128, 250, 60, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 0, 56, 254, 135, 2, 63, 171, 41, 244, 63, 50, 184, 89, 191, 59, 0, 144, 0, 144, 0, 197, 127, 79, 57, 32, 56, 15, 220, 12, 63, 138, 115, 154, 63, 170, 207, 82, 191, 59, 0, 144, 0, 144, 0, 197, 127, 63, 57, 64, 56, 178, 230, 1, 63, 138, 115, 154, 63, 42, 171, 88, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 64, 56, 246, 138, 13, 63, 171, 41, 244, 63, 108, 213, 83, 191, 59, 0, 144, 0, 144, 0, 197, 127, 63, 57, 32, 56, 10, 10, 239, 62, 171, 41, 244, 63, 248, 154, 95, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 32, 56, 178, 230, 1, 63, 138, 115, 154, 63, 42, 171, 88, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 64, 56, 169, 226, 237, 62, 138, 115, 154, 63, 170, 134, 94, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 64, 56, 254, 135, 2, 63, 171, 41, 244, 63, 50, 184, 89, 191, 59, 0, 144, 0, 144, 0, 197, 127, 79, 57, 32, 56, 106, 49, 240, 62, 230, 239, 38, 64, 70, 175, 96, 191, 59, 0, 144, 0, 144, 0, 197, 127, 95, 57, 0, 56, 254, 135, 2, 63, 171, 41, 244, 63, 50, 184, 89, 191, 59, 0, 144, 0, 144, 0, 197, 127, 79, 57, 32, 56, 10, 10, 239, 62, 171, 41, 244, 63, 248, 154, 95, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 32, 56, 73, 41, 3, 63, 230, 239, 38, 64, 58, 197, 90, 191, 59, 0, 144, 0, 144, 0, 197, 127, 79, 57, 0, 56, 160, 24, 171, 62, 171, 41, 244, 63, 98, 0, 111, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 32, 56, 52, 13, 194, 62, 138, 115, 154, 63, 170, 61, 106, 191, 36, 0, 135, 0, 135, 0, 220, 127, 128, 57, 64, 56, 53, 69, 170, 62, 138, 115, 154, 63, 13, 217, 109, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 64, 56, 38, 254, 194, 62, 171, 41, 244, 63, 132, 96, 107, 191, 36, 0, 135, 0, 135, 0, 220, 127, 128, 57, 32, 56, 26, 51, 147, 62, 171, 41, 244, 63, 63, 160, 114, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 32, 56, 53, 69, 170, 62, 138, 115, 154, 63, 13, 217, 109, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 64, 56, 54, 125, 146, 62, 138, 115, 154, 63, 112, 116, 113, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 64, 56, 160, 24, 171, 62, 171, 41, 244, 63, 98, 0, 111, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 32, 56, 254, 232, 147, 62, 230, 239, 38, 64, 14, 204, 115, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 0, 56, 160, 24, 171, 62, 171, 41, 244, 63, 98, 0, 111, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 32, 56, 26, 51, 147, 62, 171, 41, 244, 63, 63, 160, 114, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 32, 56, 12, 236, 171, 62, 230, 239, 38, 64, 182, 39, 112, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 0, 56, 20, 28, 21, 62, 171, 41, 244, 63, 72, 25, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 32, 56, 112, 218, 69, 62, 138, 115, 154, 63, 54, 171, 120, 191, 12, 0, 130, 0, 130, 0, 244, 127, 192, 57, 64, 56, 212, 99, 20, 62, 138, 115, 154, 63, 0, 227, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 64, 56, 27, 208, 70, 62, 171, 41, 244, 63, 250, 223, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 192, 57, 32, 56, 27, 208, 198, 61, 171, 41, 244, 63, 149, 82, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 32, 56, 212, 99, 20, 62, 138, 115, 154, 63, 0, 227, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 64, 56, 112, 218, 197, 61, 138, 115, 154, 63, 203, 26, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 64, 56, 20, 28, 21, 62, 171, 41, 244, 63, 72, 25, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 32, 56, 198, 197, 199, 61, 230, 239, 38, 64, 95, 138, 125, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 0, 56, 20, 28, 21, 62, 171, 41, 244, 63, 72, 25, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 32, 56, 27, 208, 198, 61, 171, 41, 244, 63, 149, 82, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 32, 56, 84, 212, 21, 62, 230, 239, 38, 64, 142, 79, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 0, 56 ), +"array_index_data": PoolByteArray( 0, 0, 2, 0, 1, 0, 3, 0, 0, 0, 1, 0, 4, 0, 6, 0, 5, 0, 4, 0, 5, 0, 7, 0, 8, 0, 10, 0, 9, 0, 8, 0, 9, 0, 11, 0, 12, 0, 14, 0, 13, 0, 12, 0, 13, 0, 15, 0, 12, 0, 15, 0, 16, 0, 12, 0, 16, 0, 17, 0, 12, 0, 17, 0, 18, 0, 19, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 22, 0, 23, 0, 25, 0, 26, 0, 28, 0, 27, 0, 26, 0, 27, 0, 29, 0, 30, 0, 32, 0, 31, 0, 30, 0, 31, 0, 33, 0, 34, 0, 36, 0, 35, 0, 34, 0, 35, 0, 37, 0, 38, 0, 40, 0, 39, 0, 41, 0, 38, 0, 39, 0, 42, 0, 44, 0, 43, 0, 45, 0, 42, 0, 43, 0, 46, 0, 48, 0, 47, 0, 49, 0, 46, 0, 47, 0, 50, 0, 52, 0, 51, 0, 50, 0, 51, 0, 53, 0, 54, 0, 56, 0, 55, 0, 54, 0, 55, 0, 57, 0, 58, 0, 60, 0, 59, 0, 58, 0, 59, 0, 61, 0, 58, 0, 61, 0, 62, 0, 58, 0, 62, 0, 63, 0, 58, 0, 63, 0, 64, 0, 65, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 69, 0, 71, 0, 72, 0, 74, 0, 73, 0, 75, 0, 72, 0, 73, 0, 76, 0, 78, 0, 77, 0, 76, 0, 77, 0, 79, 0, 80, 0, 82, 0, 81, 0, 80, 0, 81, 0, 83, 0, 80, 0, 83, 0, 84, 0, 80, 0, 84, 0, 85, 0, 80, 0, 85, 0, 86, 0, 87, 0, 89, 0, 88, 0, 90, 0, 92, 0, 91, 0, 90, 0, 91, 0, 93, 0, 94, 0, 96, 0, 95, 0, 97, 0, 94, 0, 95, 0, 98, 0, 100, 0, 99, 0, 98, 0, 99, 0, 101, 0, 102, 0, 104, 0, 103, 0, 102, 0, 103, 0, 105, 0, 106, 0, 108, 0, 107, 0, 109, 0, 106, 0, 107, 0, 110, 0, 112, 0, 111, 0, 110, 0, 111, 0, 113, 0, 114, 0, 116, 0, 115, 0, 117, 0, 114, 0, 115, 0, 118, 0, 120, 0, 119, 0, 118, 0, 119, 0, 121, 0, 122, 0, 124, 0, 123, 0, 122, 0, 123, 0, 125, 0, 126, 0, 128, 0, 127, 0, 126, 0, 127, 0, 129, 0, 130, 0, 132, 0, 131, 0, 130, 0, 131, 0, 133, 0, 130, 0, 133, 0, 134, 0, 130, 0, 134, 0, 135, 0, 130, 0, 135, 0, 136, 0, 137, 0, 139, 0, 138, 0, 140, 0, 142, 0, 141, 0, 140, 0, 141, 0, 143, 0, 144, 0, 146, 0, 145, 0, 144, 0, 145, 0, 147, 0, 148, 0, 150, 0, 149, 0, 148, 0, 149, 0, 151, 0, 152, 0, 154, 0, 153, 0, 152, 0, 153, 0, 155, 0, 152, 0, 155, 0, 156, 0, 152, 0, 156, 0, 157, 0, 152, 0, 157, 0, 158, 0, 159, 0, 161, 0, 160, 0, 162, 0, 164, 0, 163, 0, 162, 0, 163, 0, 165, 0, 166, 0, 168, 0, 167, 0, 169, 0, 166, 0, 167, 0, 170, 0, 172, 0, 171, 0, 170, 0, 171, 0, 173, 0, 174, 0, 176, 0, 175, 0, 174, 0, 175, 0, 177, 0, 178, 0, 180, 0, 179, 0, 178, 0, 179, 0, 181, 0, 182, 0, 184, 0, 183, 0, 182, 0, 183, 0, 185, 0, 186, 0, 188, 0, 187, 0, 186, 0, 187, 0, 189, 0, 190, 0, 192, 0, 191, 0, 190, 0, 191, 0, 193, 0, 194, 0, 196, 0, 195, 0, 194, 0, 195, 0, 197, 0, 198, 0, 200, 0, 199, 0, 198, 0, 199, 0, 201, 0, 202, 0, 204, 0, 203, 0, 202, 0, 203, 0, 205, 0, 202, 0, 205, 0, 206, 0, 202, 0, 206, 0, 207, 0, 202, 0, 207, 0, 208, 0, 209, 0, 211, 0, 210, 0, 212, 0, 214, 0, 213, 0, 212, 0, 213, 0, 215, 0, 216, 0, 218, 0, 217, 0, 216, 0, 217, 0, 219, 0, 220, 0, 222, 0, 221, 0, 223, 0, 220, 0, 221, 0, 224, 0, 226, 0, 225, 0, 227, 0, 224, 0, 225, 0, 228, 0, 230, 0, 229, 0, 231, 0, 233, 0, 232, 0, 231, 0, 232, 0, 234, 0, 235, 0, 237, 0, 236, 0, 235, 0, 236, 0, 238, 0, 239, 0, 241, 0, 240, 0, 239, 0, 240, 0, 242, 0, 243, 0, 245, 0, 244, 0, 243, 0, 244, 0, 246, 0, 247, 0, 249, 0, 248, 0, 247, 0, 248, 0, 250, 0, 251, 0, 253, 0, 252, 0, 251, 0, 252, 0, 254, 0, 255, 0, 1, 1, 0, 1, 255, 0, 0, 1, 2, 1, 3, 1, 5, 1, 4, 1, 3, 1, 4, 1, 6, 1, 3, 1, 6, 1, 7, 1, 3, 1, 7, 1, 8, 1, 3, 1, 8, 1, 9, 1, 10, 1, 12, 1, 11, 1, 10, 1, 11, 1, 13, 1, 14, 1, 16, 1, 15, 1, 17, 1, 14, 1, 15, 1, 18, 1, 20, 1, 19, 1, 18, 1, 19, 1, 21, 1, 22, 1, 24, 1, 23, 1, 22, 1, 23, 1, 25, 1, 22, 1, 25, 1, 26, 1, 22, 1, 26, 1, 27, 1, 22, 1, 27, 1, 28, 1, 29, 1, 31, 1, 30, 1, 32, 1, 34, 1, 33, 1, 32, 1, 33, 1, 35, 1, 36, 1, 38, 1, 37, 1, 36, 1, 37, 1, 39, 1, 40, 1, 42, 1, 41, 1, 40, 1, 41, 1, 43, 1, 44, 1, 46, 1, 45, 1, 44, 1, 45, 1, 47, 1, 48, 1, 50, 1, 49, 1, 48, 1, 49, 1, 51, 1, 52, 1, 54, 1, 53, 1, 52, 1, 53, 1, 55, 1, 56, 1, 58, 1, 57, 1, 56, 1, 57, 1, 59, 1, 60, 1, 62, 1, 61, 1, 60, 1, 61, 1, 63, 1, 64, 1, 66, 1, 65, 1, 64, 1, 65, 1, 67, 1, 68, 1, 70, 1, 69, 1, 68, 1, 69, 1, 71, 1, 72, 1, 74, 1, 73, 1, 72, 1, 73, 1, 75, 1, 76, 1, 78, 1, 77, 1, 76, 1, 77, 1, 79, 1, 76, 1, 79, 1, 80, 1, 76, 1, 80, 1, 81, 1, 76, 1, 81, 1, 82, 1, 83, 1, 85, 1, 84, 1, 86, 1, 88, 1, 87, 1, 86, 1, 87, 1, 89, 1, 90, 1, 92, 1, 91, 1, 90, 1, 91, 1, 93, 1, 94, 1, 96, 1, 95, 1, 94, 1, 95, 1, 97, 1, 94, 1, 97, 1, 98, 1, 94, 1, 98, 1, 99, 1, 94, 1, 99, 1, 100, 1, 101, 1, 103, 1, 102, 1, 104, 1, 106, 1, 105, 1, 104, 1, 105, 1, 107, 1, 108, 1, 110, 1, 109, 1, 108, 1, 109, 1, 111, 1, 112, 1, 114, 1, 113, 1, 112, 1, 113, 1, 115, 1, 116, 1, 118, 1, 117, 1, 119, 1, 116, 1, 117, 1, 120, 1, 122, 1, 121, 1, 120, 1, 121, 1, 123, 1, 124, 1, 126, 1, 125, 1, 127, 1, 124, 1, 125, 1, 128, 1, 130, 1, 129, 1, 128, 1, 129, 1, 131, 1, 132, 1, 134, 1, 133, 1, 132, 1, 133, 1, 135, 1, 136, 1, 138, 1, 137, 1, 136, 1, 137, 1, 139, 1, 140, 1, 142, 1, 141, 1, 140, 1, 141, 1, 143, 1, 144, 1, 146, 1, 145, 1, 144, 1, 145, 1, 147, 1, 148, 1, 150, 1, 149, 1, 148, 1, 149, 1, 151, 1, 148, 1, 151, 1, 152, 1, 148, 1, 152, 1, 153, 1, 148, 1, 153, 1, 154, 1, 155, 1, 157, 1, 156, 1, 158, 1, 160, 1, 159, 1, 158, 1, 159, 1, 161, 1, 162, 1, 164, 1, 163, 1, 162, 1, 163, 1, 165, 1, 166, 1, 168, 1, 167, 1, 166, 1, 167, 1, 169, 1, 170, 1, 172, 1, 171, 1, 170, 1, 171, 1, 173, 1, 170, 1, 173, 1, 174, 1, 170, 1, 174, 1, 175, 1, 170, 1, 175, 1, 176, 1, 177, 1, 179, 1, 178, 1, 180, 1, 182, 1, 181, 1, 180, 1, 181, 1, 183, 1, 184, 1, 186, 1, 185, 1, 184, 1, 185, 1, 187, 1, 188, 1, 190, 1, 189, 1, 191, 1, 188, 1, 189, 1, 192, 1, 194, 1, 193, 1, 192, 1, 193, 1, 195, 1, 196, 1, 198, 1, 197, 1, 196, 1, 197, 1, 199, 1, 200, 1, 202, 1, 201, 1, 203, 1, 200, 1, 201, 1, 204, 1, 206, 1, 205, 1, 207, 1, 204, 1, 205, 1, 208, 1, 210, 1, 209, 1, 208, 1, 209, 1, 211, 1, 212, 1, 214, 1, 213, 1, 212, 1, 213, 1, 215, 1, 216, 1, 218, 1, 217, 1, 216, 1, 217, 1, 219, 1, 220, 1, 222, 1, 221, 1, 220, 1, 221, 1, 223, 1, 220, 1, 223, 1, 224, 1, 220, 1, 224, 1, 225, 1, 220, 1, 225, 1, 226, 1, 227, 1, 229, 1, 228, 1, 230, 1, 232, 1, 231, 1, 230, 1, 231, 1, 233, 1, 234, 1, 236, 1, 235, 1, 234, 1, 235, 1, 237, 1, 238, 1, 240, 1, 239, 1, 241, 1, 238, 1, 239, 1, 242, 1, 244, 1, 243, 1, 242, 1, 243, 1, 245, 1, 242, 1, 245, 1, 246, 1, 242, 1, 246, 1, 247, 1, 242, 1, 247, 1, 248, 1, 249, 1, 251, 1, 250, 1, 252, 1, 254, 1, 253, 1, 252, 1, 253, 1, 255, 1, 0, 2, 2, 2, 1, 2, 0, 2, 1, 2, 3, 2, 4, 2, 6, 2, 5, 2, 4, 2, 5, 2, 7, 2, 8, 2, 10, 2, 9, 2, 11, 2, 8, 2, 9, 2, 12, 2, 14, 2, 13, 2, 12, 2, 13, 2, 15, 2, 16, 2, 18, 2, 17, 2, 16, 2, 17, 2, 19, 2, 20, 2, 22, 2, 21, 2, 23, 2, 20, 2, 21, 2, 24, 2, 26, 2, 25, 2, 27, 2, 24, 2, 25, 2, 28, 2, 30, 2, 29, 2, 28, 2, 29, 2, 31, 2, 32, 2, 34, 2, 33, 2, 32, 2, 33, 2, 35, 2, 36, 2, 38, 2, 37, 2, 36, 2, 37, 2, 39, 2, 36, 2, 39, 2, 40, 2, 36, 2, 40, 2, 41, 2, 36, 2, 41, 2, 42, 2, 43, 2, 45, 2, 44, 2, 46, 2, 48, 2, 47, 2, 46, 2, 47, 2, 49, 2, 50, 2, 52, 2, 51, 2, 50, 2, 51, 2, 53, 2, 54, 2, 56, 2, 55, 2, 57, 2, 54, 2, 55, 2, 58, 2, 60, 2, 59, 2, 58, 2, 59, 2, 61, 2, 58, 2, 61, 2, 62, 2, 58, 2, 62, 2, 63, 2, 58, 2, 63, 2, 64, 2, 65, 2, 67, 2, 66, 2, 68, 2, 70, 2, 69, 2, 68, 2, 69, 2, 71, 2, 72, 2, 74, 2, 73, 2, 75, 2, 72, 2, 73, 2, 76, 2, 78, 2, 77, 2, 79, 2, 76, 2, 77, 2, 80, 2, 82, 2, 81, 2, 80, 2, 81, 2, 83, 2, 84, 2, 86, 2, 85, 2, 87, 2, 84, 2, 85, 2, 88, 2, 90, 2, 89, 2, 88, 2, 89, 2, 91, 2, 92, 2, 94, 2, 93, 2, 92, 2, 93, 2, 95, 2, 96, 2, 98, 2, 97, 2, 96, 2, 97, 2, 99, 2, 100, 2, 102, 2, 101, 2, 100, 2, 101, 2, 103, 2, 104, 2, 106, 2, 105, 2, 104, 2, 105, 2, 107, 2, 108, 2, 110, 2, 109, 2, 108, 2, 109, 2, 111, 2, 112, 2, 114, 2, 113, 2, 112, 2, 113, 2, 115, 2, 112, 2, 115, 2, 116, 2, 112, 2, 116, 2, 117, 2, 112, 2, 117, 2, 118, 2, 119, 2, 121, 2, 120, 2, 122, 2, 124, 2, 123, 2, 122, 2, 123, 2, 125, 2, 126, 2, 128, 2, 127, 2, 129, 2, 126, 2, 127, 2, 130, 2, 132, 2, 131, 2, 130, 2, 131, 2, 133, 2, 134, 2, 136, 2, 135, 2, 134, 2, 135, 2, 137, 2, 134, 2, 137, 2, 138, 2, 134, 2, 138, 2, 139, 2, 134, 2, 139, 2, 140, 2, 141, 2, 143, 2, 142, 2, 144, 2, 146, 2, 145, 2, 144, 2, 145, 2, 147, 2, 148, 2, 150, 2, 149, 2, 148, 2, 149, 2, 151, 2, 152, 2, 154, 2, 153, 2, 152, 2, 153, 2, 155, 2, 156, 2, 158, 2, 157, 2, 156, 2, 157, 2, 159, 2, 160, 2, 162, 2, 161, 2, 160, 2, 161, 2, 163, 2, 164, 2, 166, 2, 165, 2, 164, 2, 165, 2, 167, 2, 168, 2, 170, 2, 169, 2, 168, 2, 169, 2, 171, 2, 172, 2, 174, 2, 173, 2, 175, 2, 172, 2, 173, 2, 176, 2, 178, 2, 177, 2, 176, 2, 177, 2, 179, 2, 180, 2, 182, 2, 181, 2, 180, 2, 181, 2, 183, 2, 184, 2, 186, 2, 185, 2, 184, 2, 185, 2, 187, 2, 184, 2, 187, 2, 188, 2, 184, 2, 188, 2, 189, 2, 184, 2, 189, 2, 190, 2, 191, 2, 193, 2, 192, 2, 194, 2, 196, 2, 195, 2, 194, 2, 195, 2, 197, 2, 198, 2, 200, 2, 199, 2, 198, 2, 199, 2, 201, 2, 202, 2, 204, 2, 203, 2, 202, 2, 203, 2, 205, 2, 206, 2, 208, 2, 207, 2, 206, 2, 207, 2, 209, 2, 210, 2, 212, 2, 211, 2, 213, 2, 215, 2, 214, 2, 213, 2, 214, 2, 216, 2, 217, 2, 219, 2, 218, 2, 217, 2, 218, 2, 220, 2, 221, 2, 223, 2, 222, 2, 221, 2, 222, 2, 224, 2, 225, 2, 227, 2, 226, 2, 225, 2, 226, 2, 228, 2, 229, 2, 231, 2, 230, 2, 229, 2, 230, 2, 232, 2, 233, 2, 235, 2, 234, 2, 233, 2, 234, 2, 236, 2, 237, 2, 239, 2, 238, 2, 237, 2, 238, 2, 240, 2, 241, 2, 243, 2, 242, 2, 241, 2, 242, 2, 244, 2, 241, 2, 244, 2, 245, 2, 241, 2, 245, 2, 246, 2, 241, 2, 246, 2, 247, 2, 248, 2, 250, 2, 249, 2, 248, 2, 249, 2, 251, 2, 252, 2, 254, 2, 253, 2, 252, 2, 253, 2, 255, 2, 0, 3, 2, 3, 1, 3, 0, 3, 1, 3, 3, 3, 4, 3, 6, 3, 5, 3, 4, 3, 5, 3, 7, 3, 4, 3, 7, 3, 8, 3, 4, 3, 8, 3, 9, 3, 4, 3, 9, 3, 10, 3, 11, 3, 13, 3, 12, 3, 14, 3, 16, 3, 15, 3, 14, 3, 15, 3, 17, 3, 18, 3, 20, 3, 19, 3, 21, 3, 18, 3, 19, 3, 22, 3, 24, 3, 23, 3, 22, 3, 23, 3, 25, 3, 26, 3, 28, 3, 27, 3, 26, 3, 27, 3, 29, 3, 30, 3, 32, 3, 31, 3, 30, 3, 31, 3, 33, 3, 34, 3, 36, 3, 35, 3, 34, 3, 35, 3, 37, 3, 38, 3, 40, 3, 39, 3, 41, 3, 38, 3, 39, 3, 42, 3, 44, 3, 43, 3, 45, 3, 42, 3, 43, 3, 46, 3, 48, 3, 47, 3, 46, 3, 47, 3, 49, 3, 50, 3, 52, 3, 51, 3, 50, 3, 51, 3, 53, 3, 54, 3, 56, 3, 55, 3, 54, 3, 55, 3, 57, 3, 58, 3, 60, 3, 59, 3, 58, 3, 59, 3, 61, 3, 58, 3, 61, 3, 62, 3, 58, 3, 62, 3, 63, 3, 58, 3, 63, 3, 64, 3, 65, 3, 67, 3, 66, 3, 68, 3, 70, 3, 69, 3, 68, 3, 69, 3, 71, 3, 72, 3, 74, 3, 73, 3, 72, 3, 73, 3, 75, 3, 76, 3, 78, 3, 77, 3, 76, 3, 77, 3, 79, 3, 76, 3, 79, 3, 80, 3, 76, 3, 80, 3, 81, 3, 76, 3, 81, 3, 82, 3, 83, 3, 85, 3, 84, 3, 86, 3, 88, 3, 87, 3, 86, 3, 87, 3, 89, 3, 90, 3, 92, 3, 91, 3, 90, 3, 91, 3, 93, 3, 94, 3, 96, 3, 95, 3, 94, 3, 95, 3, 97, 3, 98, 3, 100, 3, 99, 3, 98, 3, 99, 3, 101, 3, 102, 3, 104, 3, 103, 3, 105, 3, 102, 3, 103, 3, 106, 3, 108, 3, 107, 3, 106, 3, 107, 3, 109, 3, 110, 3, 112, 3, 111, 3, 110, 3, 111, 3, 113, 3, 114, 3, 116, 3, 115, 3, 114, 3, 115, 3, 117, 3, 118, 3, 120, 3, 119, 3, 118, 3, 119, 3, 121, 3, 122, 3, 124, 3, 123, 3, 122, 3, 123, 3, 125, 3, 126, 3, 128, 3, 127, 3, 126, 3, 127, 3, 129, 3, 126, 3, 129, 3, 130, 3, 126, 3, 130, 3, 131, 3, 126, 3, 131, 3, 132, 3, 133, 3, 135, 3, 134, 3, 136, 3, 138, 3, 137, 3, 136, 3, 137, 3, 139, 3, 140, 3, 142, 3, 141, 3, 143, 3, 140, 3, 141, 3, 144, 3, 146, 3, 145, 3, 144, 3, 145, 3, 147, 3, 148, 3, 150, 3, 149, 3, 148, 3, 149, 3, 151, 3, 148, 3, 151, 3, 152, 3, 148, 3, 152, 3, 153, 3, 148, 3, 153, 3, 154, 3, 155, 3, 157, 3, 156, 3, 158, 3, 160, 3, 159, 3, 158, 3, 159, 3, 161, 3, 162, 3, 164, 3, 163, 3, 162, 3, 163, 3, 165, 3, 166, 3, 168, 3, 167, 3, 166, 3, 167, 3, 169, 3, 170, 3, 172, 3, 171, 3, 170, 3, 171, 3, 173, 3, 174, 3, 176, 3, 175, 3, 174, 3, 175, 3, 177, 3, 178, 3, 180, 3, 179, 3, 178, 3, 179, 3, 181, 3, 182, 3, 184, 3, 183, 3, 182, 3, 183, 3, 185, 3, 186, 3, 188, 3, 187, 3, 186, 3, 187, 3, 189, 3, 190, 3, 192, 3, 191, 3, 190, 3, 191, 3, 193, 3, 194, 3, 196, 3, 195, 3, 194, 3, 195, 3, 197, 3, 198, 3, 200, 3, 199, 3, 198, 3, 199, 3, 201, 3, 202, 3, 204, 3, 203, 3, 202, 3, 203, 3, 205, 3, 202, 3, 205, 3, 206, 3, 207, 3, 208, 3, 202, 3, 207, 3, 202, 3, 206, 3, 209, 3, 211, 3, 210, 3, 212, 3, 214, 3, 213, 3, 212, 3, 213, 3, 215, 3, 216, 3, 218, 3, 217, 3, 219, 3, 216, 3, 217, 3, 220, 3, 222, 3, 221, 3, 220, 3, 221, 3, 223, 3, 224, 3, 226, 3, 225, 3, 224, 3, 225, 3, 227, 3, 224, 3, 227, 3, 228, 3, 224, 3, 228, 3, 229, 3, 224, 3, 229, 3, 230, 3, 231, 3, 233, 3, 232, 3, 234, 3, 236, 3, 235, 3, 234, 3, 235, 3, 237, 3, 238, 3, 240, 3, 239, 3, 238, 3, 239, 3, 241, 3, 242, 3, 244, 3, 243, 3, 242, 3, 243, 3, 245, 3, 246, 3, 248, 3, 247, 3, 249, 3, 246, 3, 247, 3, 250, 3, 252, 3, 251, 3, 250, 3, 251, 3, 253, 3, 254, 3, 0, 4, 255, 3, 254, 3, 255, 3, 1, 4, 2, 4, 4, 4, 3, 4, 5, 4, 2, 4, 3, 4, 6, 4, 8, 4, 7, 4, 6, 4, 7, 4, 9, 4, 10, 4, 12, 4, 11, 4, 10, 4, 11, 4, 13, 4, 14, 4, 16, 4, 15, 4, 14, 4, 15, 4, 17, 4, 18, 4, 20, 4, 19, 4, 18, 4, 19, 4, 21, 4, 18, 4, 21, 4, 22, 4, 18, 4, 22, 4, 23, 4, 18, 4, 23, 4, 24, 4, 25, 4, 27, 4, 26, 4, 28, 4, 30, 4, 29, 4, 28, 4, 29, 4, 31, 4, 32, 4, 34, 4, 33, 4, 32, 4, 33, 4, 35, 4, 36, 4, 38, 4, 37, 4, 39, 4, 36, 4, 37, 4, 40, 4, 42, 4, 41, 4, 40, 4, 41, 4, 43, 4, 40, 4, 43, 4, 44, 4, 40, 4, 44, 4, 45, 4, 40, 4, 45, 4, 46, 4, 47, 4, 49, 4, 48, 4, 50, 4, 52, 4, 51, 4, 50, 4, 51, 4, 53, 4, 54, 4, 56, 4, 55, 4, 57, 4, 54, 4, 55, 4, 58, 4, 60, 4, 59, 4, 61, 4, 58, 4, 59, 4, 62, 4, 64, 4, 63, 4, 62, 4, 63, 4, 65, 4, 66, 4, 68, 4, 67, 4, 66, 4, 67, 4, 69, 4, 70, 4, 72, 4, 71, 4, 70, 4, 71, 4, 73, 4, 74, 4, 76, 4, 75, 4, 74, 4, 75, 4, 77, 4, 78, 4, 80, 4, 79, 4, 78, 4, 79, 4, 81, 4, 82, 4, 84, 4, 83, 4, 82, 4, 83, 4, 85, 4, 86, 4, 88, 4, 87, 4, 86, 4, 87, 4, 89, 4, 90, 4, 92, 4, 91, 4, 90, 4, 91, 4, 93, 4, 94, 4, 96, 4, 95, 4, 94, 4, 95, 4, 97, 4, 94, 4, 97, 4, 98, 4, 94, 4, 98, 4, 99, 4, 94, 4, 99, 4, 100, 4, 101, 4, 103, 4, 102, 4, 104, 4, 106, 4, 105, 4, 104, 4, 105, 4, 107, 4, 108, 4, 110, 4, 109, 4, 111, 4, 108, 4, 109, 4, 112, 4, 114, 4, 113, 4, 112, 4, 113, 4, 115, 4, 116, 4, 118, 4, 117, 4, 116, 4, 117, 4, 119, 4, 116, 4, 119, 4, 120, 4, 116, 4, 120, 4, 121, 4, 116, 4, 121, 4, 122, 4, 123, 4, 125, 4, 124, 4, 126, 4, 128, 4, 127, 4, 126, 4, 127, 4, 129, 4, 130, 4, 132, 4, 131, 4, 130, 4, 131, 4, 133, 4, 134, 4, 136, 4, 135, 4, 134, 4, 135, 4, 137, 4, 138, 4, 140, 4, 139, 4, 141, 4, 138, 4, 139, 4, 142, 4, 144, 4, 143, 4, 142, 4, 143, 4, 145, 4, 146, 4, 148, 4, 147, 4, 146, 4, 147, 4, 149, 4, 150, 4, 152, 4, 151, 4, 150, 4, 151, 4, 153, 4, 154, 4, 156, 4, 155, 4, 157, 4, 154, 4, 155, 4, 158, 4, 160, 4, 159, 4, 158, 4, 159, 4, 161, 4, 162, 4, 164, 4, 163, 4, 162, 4, 163, 4, 165, 4, 166, 4, 168, 4, 167, 4, 166, 4, 167, 4, 169, 4, 166, 4, 169, 4, 170, 4, 166, 4, 170, 4, 171, 4, 166, 4, 171, 4, 172, 4, 173, 4, 175, 4, 174, 4, 176, 4, 178, 4, 177, 4, 176, 4, 177, 4, 179, 4, 180, 4, 182, 4, 181, 4, 180, 4, 181, 4, 183, 4, 184, 4, 186, 4, 185, 4, 187, 4, 184, 4, 185, 4, 188, 4, 190, 4, 189, 4, 188, 4, 189, 4, 191, 4, 192, 4, 194, 4, 193, 4, 192, 4, 193, 4, 195, 4, 196, 4, 198, 4, 197, 4, 196, 4, 197, 4, 199, 4, 200, 4, 202, 4, 201, 4, 200, 4, 201, 4, 203, 4, 204, 4, 206, 4, 205, 4, 204, 4, 205, 4, 207, 4, 208, 4, 210, 4, 209, 4, 208, 4, 209, 4, 211, 4, 212, 4, 214, 4, 213, 4, 212, 4, 213, 4, 215, 4, 216, 4, 218, 4, 217, 4, 216, 4, 217, 4, 219, 4, 220, 4, 222, 4, 221, 4, 220, 4, 221, 4, 223, 4, 224, 4, 226, 4, 225, 4, 224, 4, 225, 4, 227, 4, 228, 4, 230, 4, 229, 4, 228, 4, 229, 4, 231, 4, 232, 4, 234, 4, 233, 4, 232, 4, 233, 4, 235, 4, 236, 4, 238, 4, 237, 4, 236, 4, 237, 4, 239, 4, 240, 4, 242, 4, 241, 4, 240, 4, 241, 4, 243, 4, 244, 4, 246, 4, 245, 4, 244, 4, 245, 4, 247, 4, 248, 4, 250, 4, 249, 4, 248, 4, 249, 4, 251, 4, 252, 4, 254, 4, 253, 4, 252, 4, 253, 4, 255, 4, 0, 5, 2, 5, 1, 5, 0, 5, 1, 5, 3, 5, 4, 5, 6, 5, 5, 5, 4, 5, 5, 5, 7, 5, 8, 5, 10, 5, 9, 5, 8, 5, 9, 5, 11, 5, 12, 5, 14, 5, 13, 5, 12, 5, 13, 5, 15, 5, 16, 5, 18, 5, 17, 5, 16, 5, 17, 5, 19, 5, 20, 5, 22, 5, 21, 5, 20, 5, 21, 5, 23, 5, 24, 5, 26, 5, 25, 5, 24, 5, 25, 5, 27, 5, 28, 5, 30, 5, 29, 5, 28, 5, 29, 5, 31, 5, 32, 5, 34, 5, 33, 5, 32, 5, 33, 5, 35, 5, 36, 5, 38, 5, 37, 5, 36, 5, 37, 5, 39, 5, 40, 5, 42, 5, 41, 5, 40, 5, 41, 5, 43, 5, 44, 5, 46, 5, 45, 5, 44, 5, 45, 5, 47, 5, 48, 5, 50, 5, 49, 5, 48, 5, 49, 5, 51, 5, 52, 5, 54, 5, 53, 5, 52, 5, 53, 5, 55, 5, 56, 5, 58, 5, 57, 5, 56, 5, 57, 5, 59, 5, 60, 5, 62, 5, 61, 5, 60, 5, 61, 5, 63, 5, 64, 5, 66, 5, 65, 5, 64, 5, 65, 5, 67, 5, 68, 5, 70, 5, 69, 5, 68, 5, 69, 5, 71, 5, 72, 5, 74, 5, 73, 5, 72, 5, 73, 5, 75, 5, 76, 5, 78, 5, 77, 5, 76, 5, 77, 5, 79, 5, 80, 5, 82, 5, 81, 5, 80, 5, 81, 5, 83, 5, 84, 5, 86, 5, 85, 5, 84, 5, 85, 5, 87, 5, 88, 5, 90, 5, 89, 5, 88, 5, 89, 5, 91, 5, 92, 5, 94, 5, 93, 5, 95, 5, 92, 5, 93, 5, 96, 5, 98, 5, 97, 5, 96, 5, 97, 5, 99, 5, 100, 5, 102, 5, 101, 5, 100, 5, 101, 5, 103, 5, 104, 5, 106, 5, 105, 5, 104, 5, 105, 5, 107, 5, 108, 5, 110, 5, 109, 5, 108, 5, 109, 5, 111, 5, 112, 5, 114, 5, 113, 5, 112, 5, 113, 5, 115, 5, 116, 5, 118, 5, 117, 5, 116, 5, 117, 5, 119, 5, 120, 5, 122, 5, 121, 5, 120, 5, 121, 5, 123, 5, 124, 5, 126, 5, 125, 5, 124, 5, 125, 5, 127, 5, 128, 5, 130, 5, 129, 5, 128, 5, 129, 5, 131, 5, 132, 5, 134, 5, 133, 5, 132, 5, 133, 5, 135, 5, 136, 5, 138, 5, 137, 5, 136, 5, 137, 5, 139, 5, 140, 5, 142, 5, 141, 5, 140, 5, 141, 5, 143, 5, 144, 5, 146, 5, 145, 5, 144, 5, 145, 5, 147, 5, 148, 5, 150, 5, 149, 5, 148, 5, 149, 5, 151, 5, 152, 5, 154, 5, 153, 5, 152, 5, 153, 5, 155, 5, 156, 5, 158, 5, 157, 5, 156, 5, 157, 5, 159, 5, 160, 5, 162, 5, 161, 5, 160, 5, 161, 5, 163, 5, 164, 5, 166, 5, 165, 5, 164, 5, 165, 5, 167, 5, 168, 5, 170, 5, 169, 5, 168, 5, 169, 5, 171, 5, 172, 5, 174, 5, 173, 5, 172, 5, 173, 5, 175, 5, 176, 5, 178, 5, 177, 5, 176, 5, 177, 5, 179, 5, 180, 5, 182, 5, 181, 5, 180, 5, 181, 5, 183, 5, 184, 5, 186, 5, 185, 5, 184, 5, 185, 5, 187, 5, 188, 5, 190, 5, 189, 5, 188, 5, 189, 5, 191, 5, 192, 5, 194, 5, 193, 5, 192, 5, 193, 5, 195, 5, 196, 5, 198, 5, 197, 5, 196, 5, 197, 5, 199, 5, 200, 5, 202, 5, 201, 5, 200, 5, 201, 5, 203, 5, 204, 5, 206, 5, 205, 5, 204, 5, 205, 5, 207, 5, 208, 5, 210, 5, 209, 5, 208, 5, 209, 5, 211, 5, 212, 5, 214, 5, 213, 5, 212, 5, 213, 5, 215, 5, 216, 5, 218, 5, 217, 5, 216, 5, 217, 5, 219, 5, 220, 5, 222, 5, 221, 5, 220, 5, 221, 5, 223, 5, 224, 5, 226, 5, 225, 5, 224, 5, 225, 5, 227, 5, 228, 5, 230, 5, 229, 5, 228, 5, 229, 5, 231, 5, 232, 5, 234, 5, 233, 5, 232, 5, 233, 5, 235, 5, 236, 5, 238, 5, 237, 5, 236, 5, 237, 5, 239, 5, 240, 5, 242, 5, 241, 5, 240, 5, 241, 5, 243, 5, 244, 5, 246, 5, 245, 5, 244, 5, 245, 5, 247, 5, 248, 5, 250, 5, 249, 5, 248, 5, 249, 5, 251, 5, 252, 5, 254, 5, 253, 5, 252, 5, 253, 5, 255, 5, 0, 6, 2, 6, 1, 6, 0, 6, 1, 6, 3, 6, 4, 6, 6, 6, 5, 6, 4, 6, 5, 6, 7, 6, 8, 6, 10, 6, 9, 6, 8, 6, 9, 6, 11, 6, 12, 6, 14, 6, 13, 6, 12, 6, 13, 6, 15, 6, 16, 6, 18, 6, 17, 6, 16, 6, 17, 6, 19, 6, 20, 6, 22, 6, 21, 6, 20, 6, 21, 6, 23, 6, 24, 6, 26, 6, 25, 6, 24, 6, 25, 6, 27, 6, 28, 6, 30, 6, 29, 6, 28, 6, 29, 6, 31, 6, 32, 6, 34, 6, 33, 6, 32, 6, 33, 6, 35, 6, 36, 6, 38, 6, 37, 6, 36, 6, 37, 6, 39, 6, 40, 6, 42, 6, 41, 6, 40, 6, 41, 6, 43, 6, 44, 6, 46, 6, 45, 6, 44, 6, 45, 6, 47, 6, 48, 6, 50, 6, 49, 6, 48, 6, 49, 6, 51, 6, 52, 6, 54, 6, 53, 6, 52, 6, 53, 6, 55, 6, 56, 6, 58, 6, 57, 6, 56, 6, 57, 6, 59, 6, 60, 6, 62, 6, 61, 6, 60, 6, 61, 6, 63, 6, 64, 6, 66, 6, 65, 6, 64, 6, 65, 6, 67, 6, 68, 6, 70, 6, 69, 6, 68, 6, 69, 6, 71, 6, 72, 6, 74, 6, 73, 6, 72, 6, 73, 6, 75, 6, 76, 6, 78, 6, 77, 6, 76, 6, 77, 6, 79, 6, 80, 6, 82, 6, 81, 6, 80, 6, 81, 6, 83, 6, 84, 6, 86, 6, 85, 6, 84, 6, 85, 6, 87, 6, 88, 6, 90, 6, 89, 6, 88, 6, 89, 6, 91, 6, 92, 6, 94, 6, 93, 6, 92, 6, 93, 6, 95, 6, 96, 6, 98, 6, 97, 6, 96, 6, 97, 6, 99, 6, 100, 6, 102, 6, 101, 6, 100, 6, 101, 6, 103, 6, 104, 6, 106, 6, 105, 6, 104, 6, 105, 6, 107, 6, 108, 6, 110, 6, 109, 6, 108, 6, 109, 6, 111, 6, 112, 6, 114, 6, 113, 6, 112, 6, 113, 6, 115, 6, 116, 6, 118, 6, 117, 6, 116, 6, 117, 6, 119, 6, 120, 6, 122, 6, 121, 6, 120, 6, 121, 6, 123, 6, 124, 6, 126, 6, 125, 6, 124, 6, 125, 6, 127, 6, 128, 6, 130, 6, 129, 6, 128, 6, 129, 6, 131, 6, 132, 6, 134, 6, 133, 6, 132, 6, 133, 6, 135, 6, 136, 6, 138, 6, 137, 6, 136, 6, 137, 6, 139, 6, 140, 6, 142, 6, 141, 6, 140, 6, 141, 6, 143, 6, 144, 6, 146, 6, 145, 6, 144, 6, 145, 6, 147, 6, 148, 6, 150, 6, 149, 6, 148, 6, 149, 6, 151, 6, 152, 6, 154, 6, 153, 6, 152, 6, 153, 6, 155, 6, 156, 6, 158, 6, 157, 6, 156, 6, 157, 6, 159, 6, 160, 6, 162, 6, 161, 6, 160, 6, 161, 6, 163, 6, 164, 6, 166, 6, 165, 6, 164, 6, 165, 6, 167, 6, 168, 6, 170, 6, 169, 6, 168, 6, 169, 6, 171, 6, 172, 6, 174, 6, 173, 6, 172, 6, 173, 6, 175, 6, 176, 6, 178, 6, 177, 6, 176, 6, 177, 6, 179, 6, 180, 6, 182, 6, 181, 6, 180, 6, 181, 6, 183, 6, 184, 6, 186, 6, 185, 6, 184, 6, 185, 6, 187, 6, 188, 6, 190, 6, 189, 6, 188, 6, 189, 6, 191, 6, 192, 6, 194, 6, 193, 6, 192, 6, 193, 6, 195, 6, 196, 6, 198, 6, 197, 6, 196, 6, 197, 6, 199, 6, 200, 6, 202, 6, 201, 6, 200, 6, 201, 6, 203, 6, 204, 6, 206, 6, 205, 6, 204, 6, 205, 6, 207, 6, 208, 6, 210, 6, 209, 6, 208, 6, 209, 6, 211, 6, 212, 6, 214, 6, 213, 6, 212, 6, 213, 6, 215, 6, 216, 6, 218, 6, 217, 6, 216, 6, 217, 6, 219, 6, 220, 6, 222, 6, 221, 6, 220, 6, 221, 6, 223, 6, 224, 6, 226, 6, 225, 6, 224, 6, 225, 6, 227, 6, 228, 6, 230, 6, 229, 6, 228, 6, 229, 6, 231, 6, 232, 6, 234, 6, 233, 6, 232, 6, 233, 6, 235, 6, 236, 6, 238, 6, 237, 6, 236, 6, 237, 6, 239, 6, 240, 6, 242, 6, 241, 6, 240, 6, 241, 6, 243, 6, 244, 6, 246, 6, 245, 6, 244, 6, 245, 6, 247, 6, 248, 6, 250, 6, 249, 6, 248, 6, 249, 6, 251, 6, 252, 6, 254, 6, 253, 6, 252, 6, 253, 6, 255, 6, 0, 7, 2, 7, 1, 7, 0, 7, 1, 7, 3, 7, 4, 7, 6, 7, 5, 7, 4, 7, 5, 7, 7, 7, 8, 7, 10, 7, 9, 7, 8, 7, 9, 7, 11, 7, 12, 7, 14, 7, 13, 7, 12, 7, 13, 7, 15, 7, 16, 7, 18, 7, 17, 7, 16, 7, 17, 7, 19, 7, 20, 7, 22, 7, 21, 7, 20, 7, 21, 7, 23, 7, 24, 7, 26, 7, 25, 7, 24, 7, 25, 7, 27, 7, 28, 7, 30, 7, 29, 7, 28, 7, 29, 7, 31, 7, 32, 7, 34, 7, 33, 7, 32, 7, 33, 7, 35, 7, 36, 7, 38, 7, 37, 7, 36, 7, 37, 7, 39, 7, 40, 7, 42, 7, 41, 7, 40, 7, 41, 7, 43, 7, 44, 7, 46, 7, 45, 7, 44, 7, 45, 7, 47, 7, 48, 7, 50, 7, 49, 7, 48, 7, 49, 7, 51, 7, 52, 7, 54, 7, 53, 7, 52, 7, 53, 7, 55, 7, 56, 7, 58, 7, 57, 7, 56, 7, 57, 7, 59, 7, 60, 7, 62, 7, 61, 7, 60, 7, 61, 7, 63, 7, 64, 7, 66, 7, 65, 7, 64, 7, 65, 7, 67, 7, 68, 7, 70, 7, 69, 7, 68, 7, 69, 7, 71, 7, 72, 7, 74, 7, 73, 7, 72, 7, 73, 7, 75, 7, 76, 7, 78, 7, 77, 7, 76, 7, 77, 7, 79, 7, 80, 7, 82, 7, 81, 7, 80, 7, 81, 7, 83, 7, 84, 7, 86, 7, 85, 7, 84, 7, 85, 7, 87, 7, 88, 7, 90, 7, 89, 7, 88, 7, 89, 7, 91, 7, 92, 7, 94, 7, 93, 7, 92, 7, 93, 7, 95, 7, 96, 7, 98, 7, 97, 7, 96, 7, 97, 7, 99, 7, 100, 7, 102, 7, 101, 7, 100, 7, 101, 7, 103, 7, 104, 7, 106, 7, 105, 7, 104, 7, 105, 7, 107, 7, 108, 7, 110, 7, 109, 7, 108, 7, 109, 7, 111, 7, 112, 7, 114, 7, 113, 7, 112, 7, 113, 7, 115, 7, 116, 7, 118, 7, 117, 7, 116, 7, 117, 7, 119, 7, 120, 7, 122, 7, 121, 7, 120, 7, 121, 7, 123, 7, 124, 7, 126, 7, 125, 7, 124, 7, 125, 7, 127, 7, 128, 7, 130, 7, 129, 7, 128, 7, 129, 7, 131, 7, 132, 7, 134, 7, 133, 7, 132, 7, 133, 7, 135, 7, 136, 7, 138, 7, 137, 7, 136, 7, 137, 7, 139, 7, 140, 7, 142, 7, 141, 7, 140, 7, 141, 7, 143, 7, 144, 7, 146, 7, 145, 7, 144, 7, 145, 7, 147, 7, 148, 7, 150, 7, 149, 7, 148, 7, 149, 7, 151, 7, 152, 7, 154, 7, 153, 7, 152, 7, 153, 7, 155, 7, 156, 7, 158, 7, 157, 7, 156, 7, 157, 7, 159, 7, 160, 7, 162, 7, 161, 7, 160, 7, 161, 7, 163, 7, 164, 7, 166, 7, 165, 7, 164, 7, 165, 7, 167, 7, 168, 7, 170, 7, 169, 7, 168, 7, 169, 7, 171, 7, 172, 7, 174, 7, 173, 7, 172, 7, 173, 7, 175, 7, 176, 7, 178, 7, 177, 7, 176, 7, 177, 7, 179, 7, 180, 7, 182, 7, 181, 7, 180, 7, 181, 7, 183, 7, 184, 7, 186, 7, 185, 7, 184, 7, 185, 7, 187, 7, 188, 7, 190, 7, 189, 7, 188, 7, 189, 7, 191, 7, 192, 7, 194, 7, 193, 7, 192, 7, 193, 7, 195, 7, 196, 7, 198, 7, 197, 7, 196, 7, 197, 7, 199, 7, 200, 7, 202, 7, 201, 7, 200, 7, 201, 7, 203, 7, 204, 7, 206, 7, 205, 7, 204, 7, 205, 7, 207, 7, 208, 7, 210, 7, 209, 7, 208, 7, 209, 7, 211, 7, 212, 7, 214, 7, 213, 7, 212, 7, 213, 7, 215, 7, 216, 7, 218, 7, 217, 7, 216, 7, 217, 7, 219, 7, 220, 7, 222, 7, 221, 7, 220, 7, 221, 7, 223, 7, 224, 7, 226, 7, 225, 7, 224, 7, 225, 7, 227, 7, 228, 7, 230, 7, 229, 7, 228, 7, 229, 7, 231, 7, 232, 7, 234, 7, 233, 7, 232, 7, 233, 7, 235, 7, 236, 7, 238, 7, 237, 7, 236, 7, 237, 7, 239, 7, 240, 7, 242, 7, 241, 7, 240, 7, 241, 7, 243, 7, 244, 7, 246, 7, 245, 7, 244, 7, 245, 7, 247, 7, 248, 7, 250, 7, 249, 7, 248, 7, 249, 7, 251, 7, 252, 7, 254, 7, 253, 7, 252, 7, 253, 7, 255, 7, 0, 8, 2, 8, 1, 8, 0, 8, 1, 8, 3, 8, 4, 8, 6, 8, 5, 8, 4, 8, 5, 8, 7, 8, 8, 8, 10, 8, 9, 8, 8, 8, 9, 8, 11, 8, 12, 8, 14, 8, 13, 8, 12, 8, 13, 8, 15, 8, 16, 8, 18, 8, 17, 8, 16, 8, 17, 8, 19, 8, 20, 8, 22, 8, 21, 8, 20, 8, 21, 8, 23, 8, 24, 8, 26, 8, 25, 8, 24, 8, 25, 8, 27, 8, 28, 8, 30, 8, 29, 8, 28, 8, 29, 8, 31, 8, 32, 8, 34, 8, 33, 8, 32, 8, 33, 8, 35, 8, 36, 8, 38, 8, 37, 8, 36, 8, 37, 8, 39, 8, 40, 8, 42, 8, 41, 8, 40, 8, 41, 8, 43, 8, 44, 8, 46, 8, 45, 8, 44, 8, 45, 8, 47, 8, 48, 8, 50, 8, 49, 8, 48, 8, 49, 8, 51, 8, 52, 8, 54, 8, 53, 8, 52, 8, 53, 8, 55, 8, 56, 8, 58, 8, 57, 8, 56, 8, 57, 8, 59, 8, 60, 8, 62, 8, 61, 8, 60, 8, 61, 8, 63, 8, 64, 8, 66, 8, 65, 8, 64, 8, 65, 8, 67, 8, 68, 8, 70, 8, 69, 8, 68, 8, 69, 8, 71, 8, 72, 8, 74, 8, 73, 8, 72, 8, 73, 8, 75, 8, 76, 8, 78, 8, 77, 8, 76, 8, 77, 8, 79, 8, 80, 8, 82, 8, 81, 8, 80, 8, 81, 8, 83, 8, 84, 8, 86, 8, 85, 8, 84, 8, 85, 8, 87, 8, 88, 8, 90, 8, 89, 8, 88, 8, 89, 8, 91, 8, 92, 8, 94, 8, 93, 8, 92, 8, 93, 8, 95, 8, 96, 8, 98, 8, 97, 8, 96, 8, 97, 8, 99, 8, 100, 8, 102, 8, 101, 8, 100, 8, 101, 8, 103, 8, 104, 8, 106, 8, 105, 8, 104, 8, 105, 8, 107, 8, 108, 8, 110, 8, 109, 8, 108, 8, 109, 8, 111, 8, 112, 8, 114, 8, 113, 8, 112, 8, 113, 8, 115, 8, 116, 8, 118, 8, 117, 8, 116, 8, 117, 8, 119, 8, 120, 8, 122, 8, 121, 8, 120, 8, 121, 8, 123, 8, 124, 8, 126, 8, 125, 8, 124, 8, 125, 8, 127, 8, 128, 8, 130, 8, 129, 8, 128, 8, 129, 8, 131, 8, 132, 8, 134, 8, 133, 8, 132, 8, 133, 8, 135, 8, 136, 8, 138, 8, 137, 8, 136, 8, 137, 8, 139, 8, 140, 8, 142, 8, 141, 8, 140, 8, 141, 8, 143, 8, 144, 8, 146, 8, 145, 8, 144, 8, 145, 8, 147, 8, 148, 8, 150, 8, 149, 8, 148, 8, 149, 8, 151, 8, 152, 8, 154, 8, 153, 8, 152, 8, 153, 8, 155, 8, 156, 8, 158, 8, 157, 8, 156, 8, 157, 8, 159, 8, 160, 8, 162, 8, 161, 8, 160, 8, 161, 8, 163, 8, 164, 8, 166, 8, 165, 8, 164, 8, 165, 8, 167, 8, 168, 8, 170, 8, 169, 8, 168, 8, 169, 8, 171, 8, 172, 8, 174, 8, 173, 8, 172, 8, 173, 8, 175, 8, 176, 8, 178, 8, 177, 8, 176, 8, 177, 8, 179, 8, 180, 8, 182, 8, 181, 8, 180, 8, 181, 8, 183, 8, 184, 8, 186, 8, 185, 8, 184, 8, 185, 8, 187, 8, 188, 8, 190, 8, 189, 8, 188, 8, 189, 8, 191, 8, 192, 8, 194, 8, 193, 8, 192, 8, 193, 8, 195, 8, 196, 8, 198, 8, 197, 8, 196, 8, 197, 8, 199, 8, 200, 8, 202, 8, 201, 8, 200, 8, 201, 8, 203, 8, 204, 8, 206, 8, 205, 8, 204, 8, 205, 8, 207, 8, 208, 8, 210, 8, 209, 8, 208, 8, 209, 8, 211, 8, 212, 8, 214, 8, 213, 8, 212, 8, 213, 8, 215, 8, 216, 8, 218, 8, 217, 8, 216, 8, 217, 8, 219, 8, 220, 8, 222, 8, 221, 8, 220, 8, 221, 8, 223, 8, 224, 8, 226, 8, 225, 8, 224, 8, 225, 8, 227, 8, 228, 8, 230, 8, 229, 8, 228, 8, 229, 8, 231, 8, 232, 8, 234, 8, 233, 8, 232, 8, 233, 8, 235, 8, 236, 8, 238, 8, 237, 8, 236, 8, 237, 8, 239, 8, 240, 8, 242, 8, 241, 8, 240, 8, 241, 8, 243, 8, 244, 8, 246, 8, 245, 8, 244, 8, 245, 8, 247, 8, 248, 8, 250, 8, 249, 8, 248, 8, 249, 8, 251, 8, 252, 8, 254, 8, 253, 8, 252, 8, 253, 8, 255, 8, 0, 9, 2, 9, 1, 9, 0, 9, 1, 9, 3, 9, 4, 9, 6, 9, 5, 9, 4, 9, 5, 9, 7, 9, 8, 9, 10, 9, 9, 9, 8, 9, 9, 9, 11, 9, 12, 9, 14, 9, 13, 9, 12, 9, 13, 9, 15, 9, 16, 9, 18, 9, 17, 9, 16, 9, 17, 9, 19, 9, 20, 9, 22, 9, 21, 9, 20, 9, 21, 9, 23, 9, 24, 9, 26, 9, 25, 9, 24, 9, 25, 9, 27, 9, 28, 9, 30, 9, 29, 9, 28, 9, 29, 9, 31, 9, 32, 9, 34, 9, 33, 9, 32, 9, 33, 9, 35, 9, 36, 9, 38, 9, 37, 9, 36, 9, 37, 9, 39, 9, 40, 9, 42, 9, 41, 9, 40, 9, 41, 9, 43, 9, 44, 9, 46, 9, 45, 9, 44, 9, 45, 9, 47, 9, 48, 9, 50, 9, 49, 9, 48, 9, 49, 9, 51, 9, 52, 9, 54, 9, 53, 9, 52, 9, 53, 9, 55, 9, 56, 9, 58, 9, 57, 9, 56, 9, 57, 9, 59, 9, 60, 9, 62, 9, 61, 9, 60, 9, 61, 9, 63, 9, 64, 9, 66, 9, 65, 9, 64, 9, 65, 9, 67, 9, 68, 9, 70, 9, 69, 9, 68, 9, 69, 9, 71, 9, 72, 9, 74, 9, 73, 9, 72, 9, 73, 9, 75, 9, 76, 9, 78, 9, 77, 9, 76, 9, 77, 9, 79, 9, 80, 9, 82, 9, 81, 9, 80, 9, 81, 9, 83, 9, 84, 9, 86, 9, 85, 9, 84, 9, 85, 9, 87, 9, 88, 9, 90, 9, 89, 9, 88, 9, 89, 9, 91, 9, 92, 9, 94, 9, 93, 9, 92, 9, 93, 9, 95, 9, 96, 9, 98, 9, 97, 9, 96, 9, 97, 9, 99, 9, 100, 9, 102, 9, 101, 9, 100, 9, 101, 9, 103, 9, 104, 9, 106, 9, 105, 9, 104, 9, 105, 9, 107, 9, 108, 9, 110, 9, 109, 9, 108, 9, 109, 9, 111, 9, 112, 9, 114, 9, 113, 9, 112, 9, 113, 9, 115, 9, 116, 9, 118, 9, 117, 9, 116, 9, 117, 9, 119, 9, 120, 9, 122, 9, 121, 9, 120, 9, 121, 9, 123, 9, 124, 9, 126, 9, 125, 9, 124, 9, 125, 9, 127, 9, 128, 9, 130, 9, 129, 9, 128, 9, 129, 9, 131, 9, 132, 9, 134, 9, 133, 9, 132, 9, 133, 9, 135, 9, 136, 9, 138, 9, 137, 9, 136, 9, 137, 9, 139, 9, 140, 9, 142, 9, 141, 9, 140, 9, 141, 9, 143, 9, 144, 9, 146, 9, 145, 9, 144, 9, 145, 9, 147, 9, 148, 9, 150, 9, 149, 9, 148, 9, 149, 9, 151, 9, 152, 9, 154, 9, 153, 9, 152, 9, 153, 9, 155, 9, 156, 9, 158, 9, 157, 9, 156, 9, 157, 9, 159, 9, 160, 9, 162, 9, 161, 9, 160, 9, 161, 9, 163, 9, 164, 9, 166, 9, 165, 9, 164, 9, 165, 9, 167, 9, 168, 9, 170, 9, 169, 9, 168, 9, 169, 9, 171, 9, 172, 9, 174, 9, 173, 9, 172, 9, 173, 9, 175, 9, 176, 9, 178, 9, 177, 9, 176, 9, 177, 9, 179, 9, 180, 9, 182, 9, 181, 9, 180, 9, 181, 9, 183, 9, 184, 9, 186, 9, 185, 9, 184, 9, 185, 9, 187, 9, 188, 9, 190, 9, 189, 9, 188, 9, 189, 9, 191, 9, 192, 9, 194, 9, 193, 9, 192, 9, 193, 9, 195, 9, 196, 9, 198, 9, 197, 9, 196, 9, 197, 9, 199, 9, 200, 9, 202, 9, 201, 9, 200, 9, 201, 9, 203, 9, 204, 9, 206, 9, 205, 9, 204, 9, 205, 9, 207, 9, 208, 9, 210, 9, 209, 9, 208, 9, 209, 9, 211, 9, 212, 9, 214, 9, 213, 9, 212, 9, 213, 9, 215, 9, 216, 9, 218, 9, 217, 9, 216, 9, 217, 9, 219, 9, 220, 9, 222, 9, 221, 9, 220, 9, 221, 9, 223, 9, 224, 9, 226, 9, 225, 9, 224, 9, 225, 9, 227, 9, 228, 9, 230, 9, 229, 9, 228, 9, 229, 9, 231, 9, 232, 9, 234, 9, 233, 9, 232, 9, 233, 9, 235, 9, 236, 9, 238, 9, 237, 9, 236, 9, 237, 9, 239, 9, 240, 9, 242, 9, 241, 9, 240, 9, 241, 9, 243, 9, 244, 9, 246, 9, 245, 9, 244, 9, 245, 9, 247, 9, 248, 9, 250, 9, 249, 9, 248, 9, 249, 9, 251, 9, 252, 9, 254, 9, 253, 9, 252, 9, 253, 9, 255, 9, 0, 10, 2, 10, 1, 10, 0, 10, 1, 10, 3, 10, 4, 10, 6, 10, 5, 10, 4, 10, 5, 10, 7, 10, 8, 10, 10, 10, 9, 10, 8, 10, 9, 10, 11, 10, 12, 10, 14, 10, 13, 10, 12, 10, 13, 10, 15, 10, 16, 10, 18, 10, 17, 10, 16, 10, 17, 10, 19, 10, 20, 10, 22, 10, 21, 10, 20, 10, 21, 10, 23, 10, 24, 10, 26, 10, 25, 10, 24, 10, 25, 10, 27, 10, 28, 10, 30, 10, 29, 10, 28, 10, 29, 10, 31, 10, 32, 10, 34, 10, 33, 10, 32, 10, 33, 10, 35, 10, 36, 10, 38, 10, 37, 10, 36, 10, 37, 10, 39, 10, 40, 10, 42, 10, 41, 10, 40, 10, 41, 10, 43, 10, 44, 10, 46, 10, 45, 10, 44, 10, 45, 10, 47, 10, 48, 10, 50, 10, 49, 10, 48, 10, 49, 10, 51, 10, 52, 10, 54, 10, 53, 10, 52, 10, 53, 10, 55, 10, 56, 10, 58, 10, 57, 10, 56, 10, 57, 10, 59, 10, 60, 10, 62, 10, 61, 10, 60, 10, 61, 10, 63, 10 ), +"blend_shape_data": [ ], +"format": 97559, +"index_count": 4032, +"material": ExtResource( 1 ), +"primitive": 4, +"skeleton_aabb": [ ], +"vertex_count": 2624 +} +surfaces/1 = { +"aabb": AABB( -0.985589, -1, -0.985589, 1.97118, 1.50578, 1.97118 ), +"array_data": PoolByteArray( 148, 65, 36, 52, 243, 4, 53, 191, 236, 4, 53, 191, 9, 176, 159, 0, 130, 0, 244, 127, 255, 57, 0, 58, 214, 26, 38, 62, 217, 57, 14, 191, 41, 196, 80, 191, 9, 176, 159, 0, 130, 0, 244, 127, 192, 57, 127, 57, 179, 66, 13, 62, 243, 4, 53, 191, 133, 138, 49, 191, 9, 176, 159, 0, 130, 0, 244, 127, 192, 57, 0, 58, 202, 32, 146, 52, 217, 57, 14, 191, 35, 219, 84, 191, 9, 176, 159, 0, 130, 0, 244, 127, 255, 57, 128, 57, 0, 0, 0, 0, 50, 219, 84, 191, 217, 57, 14, 191, 7, 159, 176, 0, 130, 0, 244, 127, 0, 58, 128, 58, 179, 66, 13, 62, 243, 4, 53, 191, 133, 138, 49, 191, 7, 159, 176, 0, 130, 0, 244, 127, 192, 57, 0, 58, 181, 249, 221, 61, 50, 219, 84, 191, 62, 126, 11, 191, 7, 159, 176, 0, 130, 0, 244, 127, 192, 57, 128, 58, 148, 65, 36, 52, 243, 4, 53, 191, 236, 4, 53, 191, 7, 159, 176, 0, 130, 0, 244, 127, 255, 57, 0, 58, 0, 0, 0, 0, 50, 219, 84, 191, 217, 57, 14, 191, 5, 145, 197, 0, 130, 0, 244, 127, 0, 58, 128, 58, 58, 230, 152, 61, 96, 131, 108, 191, 69, 43, 192, 190, 5, 145, 197, 0, 130, 0, 244, 127, 192, 57, 0, 59, 39, 131, 168, 51, 96, 131, 108, 191, 4, 239, 195, 190, 5, 145, 197, 0, 130, 0, 244, 127, 255, 57, 0, 59, 181, 249, 221, 61, 50, 219, 84, 191, 62, 126, 11, 191, 5, 145, 197, 0, 130, 0, 244, 127, 192, 57, 128, 58, 156, 12, 130, 50, 191, 20, 123, 191, 167, 197, 71, 190, 3, 135, 220, 0, 130, 0, 244, 127, 0, 58, 128, 59, 58, 230, 152, 61, 96, 131, 108, 191, 69, 43, 192, 190, 3, 135, 220, 0, 130, 0, 244, 127, 192, 57, 0, 59, 17, 229, 27, 61, 191, 20, 123, 191, 5, 239, 67, 190, 3, 135, 220, 0, 130, 0, 244, 127, 191, 57, 128, 59, 39, 131, 168, 51, 96, 131, 108, 191, 4, 239, 195, 190, 3, 135, 220, 0, 130, 0, 244, 127, 255, 57, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 1, 130, 244, 0, 130, 0, 244, 127, 223, 57, 0, 60, 156, 12, 130, 50, 191, 20, 123, 191, 167, 197, 71, 190, 1, 130, 244, 0, 130, 0, 244, 127, 0, 58, 128, 59, 17, 229, 27, 61, 191, 20, 123, 191, 5, 239, 67, 190, 1, 130, 244, 0, 130, 0, 244, 127, 191, 57, 128, 59, 0, 0, 0, 0, 186, 197, 71, 190, 191, 20, 123, 191, 11, 220, 136, 0, 130, 0, 244, 127, 0, 58, 127, 56, 215, 144, 56, 62, 16, 239, 195, 190, 248, 247, 103, 191, 11, 220, 136, 0, 130, 0, 244, 127, 192, 57, 255, 56, 39, 131, 136, 51, 16, 239, 195, 190, 86, 131, 108, 191, 11, 220, 136, 0, 130, 0, 244, 127, 0, 58, 0, 57, 26, 239, 195, 61, 186, 197, 71, 190, 55, 171, 120, 191, 11, 220, 136, 0, 130, 0, 244, 127, 224, 57, 127, 56, 26, 239, 67, 62, 186, 197, 71, 190, 175, 65, 118, 191, 11, 220, 136, 0, 130, 0, 244, 127, 192, 57, 127, 56, 84, 243, 18, 62, 186, 197, 71, 190, 115, 118, 119, 191, 11, 220, 136, 0, 127, 0, 0, 127, 208, 57, 127, 56, 26, 239, 67, 61, 186, 197, 71, 190, 251, 223, 121, 191, 11, 220, 136, 0, 127, 0, 0, 127, 240, 57, 127, 56, 39, 131, 136, 51, 16, 239, 195, 190, 86, 131, 108, 191, 10, 197, 145, 0, 130, 0, 244, 127, 0, 58, 0, 57, 214, 26, 38, 62, 217, 57, 14, 191, 41, 196, 80, 191, 10, 197, 145, 0, 130, 0, 244, 127, 192, 57, 127, 57, 202, 32, 146, 52, 217, 57, 14, 191, 35, 219, 84, 191, 10, 197, 145, 0, 130, 0, 244, 127, 255, 57, 128, 57, 215, 144, 56, 62, 16, 239, 195, 190, 248, 247, 103, 191, 10, 197, 145, 0, 130, 0, 244, 127, 192, 57, 255, 56, 215, 144, 56, 62, 16, 239, 195, 190, 248, 247, 103, 191, 32, 197, 149, 0, 135, 0, 220, 127, 192, 57, 255, 56, 197, 233, 162, 62, 217, 57, 14, 191, 75, 167, 68, 191, 32, 197, 149, 0, 135, 0, 220, 127, 128, 57, 127, 57, 214, 26, 38, 62, 217, 57, 14, 191, 41, 196, 80, 191, 32, 197, 149, 0, 135, 0, 220, 127, 192, 57, 127, 57, 247, 4, 181, 62, 16, 239, 195, 190, 121, 130, 90, 191, 32, 197, 149, 0, 135, 0, 220, 127, 128, 57, 255, 56, 214, 26, 38, 62, 217, 57, 14, 191, 41, 196, 80, 191, 28, 176, 162, 0, 135, 0, 220, 127, 192, 57, 127, 57, 216, 139, 138, 62, 243, 4, 53, 191, 115, 61, 39, 191, 28, 176, 162, 0, 135, 0, 220, 127, 127, 57, 0, 58, 179, 66, 13, 62, 243, 4, 53, 191, 133, 138, 49, 191, 28, 176, 162, 0, 135, 0, 220, 127, 192, 57, 0, 58, 197, 233, 162, 62, 217, 57, 14, 191, 75, 167, 68, 191, 28, 176, 162, 0, 135, 0, 220, 127, 128, 57, 127, 57, 181, 249, 221, 61, 50, 219, 84, 191, 62, 126, 11, 191, 23, 159, 179, 0, 135, 0, 220, 127, 192, 57, 128, 58, 216, 139, 138, 62, 243, 4, 53, 191, 115, 61, 39, 191, 23, 159, 179, 0, 135, 0, 220, 127, 127, 57, 0, 58, 208, 181, 89, 62, 50, 219, 84, 191, 79, 102, 3, 191, 23, 159, 179, 0, 135, 0, 220, 127, 127, 57, 128, 58, 179, 66, 13, 62, 243, 4, 53, 191, 133, 138, 49, 191, 23, 159, 179, 0, 135, 0, 220, 127, 192, 57, 0, 58, 181, 249, 221, 61, 50, 219, 84, 191, 62, 126, 11, 191, 17, 145, 199, 0, 135, 0, 220, 127, 192, 57, 128, 58, 30, 246, 21, 62, 96, 131, 108, 191, 238, 4, 181, 190, 17, 145, 199, 0, 135, 0, 220, 127, 127, 57, 0, 59, 58, 230, 152, 61, 96, 131, 108, 191, 69, 43, 192, 190, 17, 145, 199, 0, 135, 0, 220, 127, 192, 57, 0, 59, 208, 181, 89, 62, 50, 219, 84, 191, 79, 102, 3, 191, 17, 145, 199, 0, 135, 0, 220, 127, 127, 57, 128, 58, 58, 230, 152, 61, 96, 131, 108, 191, 69, 43, 192, 190, 10, 135, 221, 0, 135, 0, 220, 127, 192, 57, 0, 59, 57, 230, 152, 61, 191, 20, 123, 191, 194, 144, 56, 190, 10, 135, 221, 0, 135, 0, 220, 127, 127, 57, 128, 59, 17, 229, 27, 61, 191, 20, 123, 191, 5, 239, 67, 190, 10, 135, 221, 0, 135, 0, 220, 127, 191, 57, 128, 59, 30, 246, 21, 62, 96, 131, 108, 191, 238, 4, 181, 190, 10, 135, 221, 0, 135, 0, 220, 127, 127, 57, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 3, 130, 245, 0, 135, 0, 220, 127, 159, 57, 0, 60, 17, 229, 27, 61, 191, 20, 123, 191, 5, 239, 67, 190, 3, 130, 245, 0, 135, 0, 220, 127, 191, 57, 128, 59, 57, 230, 152, 61, 191, 20, 123, 191, 194, 144, 56, 190, 3, 130, 245, 0, 135, 0, 220, 127, 127, 57, 128, 59, 26, 239, 67, 62, 186, 197, 71, 190, 175, 65, 118, 191, 35, 220, 140, 0, 135, 0, 220, 127, 192, 57, 127, 56, 247, 4, 181, 62, 16, 239, 195, 190, 121, 130, 90, 191, 35, 220, 140, 0, 135, 0, 220, 127, 128, 57, 255, 56, 215, 144, 56, 62, 16, 239, 195, 190, 248, 247, 103, 191, 35, 220, 140, 0, 135, 0, 220, 127, 192, 57, 255, 56, 110, 17, 145, 62, 186, 197, 71, 190, 210, 28, 111, 191, 35, 220, 140, 0, 135, 0, 220, 127, 160, 57, 127, 56, 78, 43, 192, 62, 186, 197, 71, 190, 246, 247, 103, 191, 35, 220, 140, 0, 135, 0, 220, 127, 128, 57, 127, 56, 251, 8, 115, 62, 186, 197, 71, 190, 64, 175, 114, 191, 35, 220, 140, 0, 127, 0, 0, 127, 176, 57, 127, 56, 94, 158, 168, 62, 186, 197, 71, 190, 100, 138, 107, 191, 35, 220, 140, 0, 127, 0, 0, 127, 144, 57, 127, 56, 30, 246, 21, 62, 96, 131, 108, 191, 238, 4, 181, 190, 17, 135, 224, 0, 144, 0, 197, 127, 127, 57, 0, 59, 179, 249, 221, 61, 191, 20, 123, 191, 193, 26, 38, 190, 17, 135, 224, 0, 144, 0, 197, 127, 63, 57, 128, 59, 57, 230, 152, 61, 191, 20, 123, 191, 194, 144, 56, 190, 17, 135, 224, 0, 144, 0, 197, 127, 127, 57, 128, 59, 208, 181, 89, 62, 96, 131, 108, 191, 187, 233, 162, 190, 17, 135, 224, 0, 144, 0, 197, 127, 63, 57, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 5, 130, 245, 0, 144, 0, 197, 127, 95, 57, 0, 60, 57, 230, 152, 61, 191, 20, 123, 191, 194, 144, 56, 190, 5, 130, 245, 0, 144, 0, 197, 127, 127, 57, 128, 59, 179, 249, 221, 61, 191, 20, 123, 191, 193, 26, 38, 190, 5, 130, 245, 0, 144, 0, 197, 127, 63, 57, 128, 59, 78, 43, 192, 62, 186, 197, 71, 190, 246, 247, 103, 191, 57, 220, 149, 0, 144, 0, 197, 127, 128, 57, 127, 56, 83, 102, 3, 63, 16, 239, 195, 190, 75, 167, 68, 191, 57, 220, 149, 0, 144, 0, 197, 127, 64, 57, 255, 56, 247, 4, 181, 62, 16, 239, 195, 190, 121, 130, 90, 191, 57, 220, 149, 0, 144, 0, 197, 127, 128, 57, 255, 56, 65, 126, 11, 63, 186, 197, 71, 190, 38, 196, 80, 191, 57, 220, 149, 0, 144, 0, 197, 127, 64, 57, 127, 56, 155, 223, 213, 62, 186, 197, 71, 190, 2, 43, 98, 191, 57, 220, 149, 0, 127, 0, 0, 127, 112, 57, 127, 56, 232, 147, 235, 62, 186, 197, 71, 190, 14, 94, 92, 191, 57, 220, 149, 0, 127, 0, 0, 127, 96, 57, 127, 56, 26, 164, 0, 63, 186, 197, 71, 190, 26, 145, 86, 191, 57, 220, 149, 0, 127, 0, 0, 127, 80, 57, 127, 56, 247, 4, 181, 62, 16, 239, 195, 190, 121, 130, 90, 191, 52, 197, 158, 0, 144, 0, 197, 127, 128, 57, 255, 56, 100, 131, 236, 62, 217, 57, 14, 191, 196, 251, 48, 191, 52, 197, 158, 0, 144, 0, 197, 127, 64, 57, 127, 57, 197, 233, 162, 62, 217, 57, 14, 191, 75, 167, 68, 191, 52, 197, 158, 0, 144, 0, 197, 127, 128, 57, 127, 57, 83, 102, 3, 63, 16, 239, 195, 190, 75, 167, 68, 191, 52, 197, 158, 0, 144, 0, 197, 127, 64, 57, 255, 56, 216, 139, 138, 62, 243, 4, 53, 191, 115, 61, 39, 191, 46, 176, 170, 0, 144, 0, 197, 127, 127, 57, 0, 58, 100, 131, 236, 62, 217, 57, 14, 191, 196, 251, 48, 191, 46, 176, 170, 0, 144, 0, 197, 127, 64, 57, 127, 57, 84, 35, 201, 62, 243, 4, 53, 191, 22, 131, 22, 191, 46, 176, 170, 0, 144, 0, 197, 127, 63, 57, 0, 58, 197, 233, 162, 62, 217, 57, 14, 191, 75, 167, 68, 191, 46, 176, 170, 0, 144, 0, 197, 127, 128, 57, 127, 57, 216, 139, 138, 62, 243, 4, 53, 191, 115, 61, 39, 191, 38, 159, 185, 0, 144, 0, 197, 127, 127, 57, 0, 58, 122, 8, 158, 62, 50, 219, 84, 191, 90, 131, 236, 190, 38, 159, 185, 0, 144, 0, 197, 127, 63, 57, 128, 58, 208, 181, 89, 62, 50, 219, 84, 191, 79, 102, 3, 191, 38, 159, 185, 0, 144, 0, 197, 127, 127, 57, 128, 58, 84, 35, 201, 62, 243, 4, 53, 191, 22, 131, 22, 191, 38, 159, 185, 0, 144, 0, 197, 127, 63, 57, 0, 58, 208, 181, 89, 62, 50, 219, 84, 191, 79, 102, 3, 191, 28, 145, 204, 0, 144, 0, 197, 127, 127, 57, 128, 58, 208, 181, 89, 62, 96, 131, 108, 191, 187, 233, 162, 190, 28, 145, 204, 0, 144, 0, 197, 127, 63, 57, 0, 59, 30, 246, 21, 62, 96, 131, 108, 191, 238, 4, 181, 190, 28, 145, 204, 0, 144, 0, 197, 127, 127, 57, 0, 59, 122, 8, 158, 62, 50, 219, 84, 191, 90, 131, 236, 190, 28, 145, 204, 0, 144, 0, 197, 127, 63, 57, 128, 58, 83, 102, 3, 63, 16, 239, 195, 190, 75, 167, 68, 191, 71, 197, 170, 0, 158, 0, 176, 127, 64, 57, 255, 56, 27, 131, 22, 63, 217, 57, 14, 191, 21, 131, 22, 191, 71, 197, 170, 0, 158, 0, 176, 127, 255, 56, 127, 57, 100, 131, 236, 62, 217, 57, 14, 191, 196, 251, 48, 191, 71, 197, 170, 0, 158, 0, 176, 127, 64, 57, 127, 57, 119, 61, 39, 63, 16, 239, 195, 190, 115, 61, 39, 191, 71, 197, 170, 0, 158, 0, 176, 127, 0, 57, 255, 56, 84, 35, 201, 62, 243, 4, 53, 191, 22, 131, 22, 191, 62, 176, 180, 0, 158, 0, 176, 127, 63, 57, 0, 58, 27, 131, 22, 63, 217, 57, 14, 191, 21, 131, 22, 191, 62, 176, 180, 0, 158, 0, 176, 127, 255, 56, 127, 57, 3, 0, 0, 63, 243, 4, 53, 191, 252, 255, 255, 190, 62, 176, 180, 0, 158, 0, 176, 127, 255, 56, 0, 58, 100, 131, 236, 62, 217, 57, 14, 191, 196, 251, 48, 191, 62, 176, 180, 0, 158, 0, 176, 127, 64, 57, 127, 57, 84, 35, 201, 62, 243, 4, 53, 191, 22, 131, 22, 191, 51, 159, 194, 0, 158, 0, 176, 127, 63, 57, 0, 58, 84, 35, 201, 62, 50, 219, 84, 191, 72, 35, 201, 190, 51, 159, 194, 0, 158, 0, 176, 127, 255, 56, 128, 58, 122, 8, 158, 62, 50, 219, 84, 191, 90, 131, 236, 190, 51, 159, 194, 0, 158, 0, 176, 127, 63, 57, 128, 58, 3, 0, 0, 63, 243, 4, 53, 191, 252, 255, 255, 190, 51, 159, 194, 0, 158, 0, 176, 127, 255, 56, 0, 58, 208, 181, 89, 62, 96, 131, 108, 191, 187, 233, 162, 190, 38, 145, 210, 0, 158, 0, 176, 127, 63, 57, 0, 59, 84, 35, 201, 62, 50, 219, 84, 191, 72, 35, 201, 190, 38, 145, 210, 0, 158, 0, 176, 127, 255, 56, 128, 58, 216, 139, 138, 62, 96, 131, 108, 191, 206, 139, 138, 190, 38, 145, 210, 0, 158, 0, 176, 127, 255, 56, 0, 59, 122, 8, 158, 62, 50, 219, 84, 191, 90, 131, 236, 190, 38, 145, 210, 0, 158, 0, 176, 127, 63, 57, 128, 58, 208, 181, 89, 62, 96, 131, 108, 191, 187, 233, 162, 190, 23, 135, 228, 0, 158, 0, 176, 127, 63, 57, 0, 59, 178, 66, 13, 62, 191, 20, 123, 191, 158, 66, 13, 190, 23, 135, 228, 0, 158, 0, 176, 127, 255, 56, 128, 59, 179, 249, 221, 61, 191, 20, 123, 191, 193, 26, 38, 190, 23, 135, 228, 0, 158, 0, 176, 127, 63, 57, 128, 59, 216, 139, 138, 62, 96, 131, 108, 191, 206, 139, 138, 190, 23, 135, 228, 0, 158, 0, 176, 127, 255, 56, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 7, 130, 247, 0, 158, 0, 176, 127, 31, 57, 0, 60, 179, 249, 221, 61, 191, 20, 123, 191, 193, 26, 38, 190, 7, 130, 247, 0, 158, 0, 176, 127, 63, 57, 128, 59, 178, 66, 13, 62, 191, 20, 123, 191, 158, 66, 13, 190, 7, 130, 247, 0, 158, 0, 176, 127, 255, 56, 128, 59, 65, 126, 11, 63, 186, 197, 71, 190, 38, 196, 80, 191, 77, 220, 163, 0, 158, 0, 176, 127, 64, 57, 127, 56, 119, 61, 39, 63, 16, 239, 195, 190, 115, 61, 39, 191, 77, 220, 163, 0, 158, 0, 176, 127, 0, 57, 255, 56, 83, 102, 3, 63, 16, 239, 195, 190, 75, 167, 68, 191, 77, 220, 163, 0, 158, 0, 176, 127, 64, 57, 255, 56, 136, 138, 49, 63, 186, 197, 71, 190, 130, 138, 49, 191, 77, 220, 163, 0, 158, 0, 176, 127, 255, 56, 127, 56, 82, 1, 21, 63, 186, 197, 71, 190, 189, 245, 72, 191, 77, 220, 163, 0, 127, 0, 0, 127, 48, 57, 127, 56, 100, 132, 30, 63, 186, 197, 71, 190, 84, 39, 65, 191, 77, 220, 163, 0, 127, 0, 0, 127, 31, 57, 127, 56, 118, 7, 40, 63, 186, 197, 71, 190, 235, 88, 57, 191, 77, 220, 163, 0, 127, 0, 0, 127, 15, 57, 127, 56, 178, 66, 13, 62, 191, 20, 123, 191, 158, 66, 13, 190, 28, 135, 233, 0, 176, 0, 158, 127, 255, 56, 128, 59, 198, 233, 162, 62, 96, 131, 108, 191, 188, 181, 89, 190, 28, 135, 233, 0, 176, 0, 158, 127, 191, 56, 0, 59, 213, 26, 38, 62, 191, 20, 123, 191, 137, 249, 221, 189, 28, 135, 233, 0, 176, 0, 158, 127, 191, 56, 128, 59, 216, 139, 138, 62, 96, 131, 108, 191, 206, 139, 138, 190, 28, 135, 233, 0, 176, 0, 158, 127, 255, 56, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 9, 130, 249, 0, 176, 0, 158, 127, 223, 56, 0, 60, 178, 66, 13, 62, 191, 20, 123, 191, 158, 66, 13, 190, 9, 130, 249, 0, 176, 0, 158, 127, 255, 56, 128, 59, 213, 26, 38, 62, 191, 20, 123, 191, 137, 249, 221, 189, 9, 130, 249, 0, 176, 0, 158, 127, 191, 56, 128, 59, 136, 138, 49, 63, 186, 197, 71, 190, 130, 138, 49, 191, 93, 220, 179, 0, 176, 0, 158, 127, 255, 56, 127, 56, 79, 167, 68, 63, 16, 239, 195, 190, 79, 102, 3, 191, 93, 220, 179, 0, 176, 0, 158, 127, 192, 56, 255, 56, 119, 61, 39, 63, 16, 239, 195, 190, 115, 61, 39, 191, 93, 220, 179, 0, 176, 0, 158, 127, 0, 57, 255, 56, 43, 196, 80, 63, 186, 197, 71, 190, 58, 126, 11, 191, 93, 220, 179, 0, 176, 0, 158, 127, 191, 56, 127, 56, 194, 245, 72, 63, 186, 197, 71, 190, 76, 1, 21, 191, 93, 220, 179, 0, 127, 0, 0, 127, 207, 56, 127, 56, 241, 88, 57, 63, 186, 197, 71, 190, 112, 7, 40, 191, 93, 220, 179, 0, 127, 0, 0, 127, 239, 56, 127, 56, 90, 39, 65, 63, 186, 197, 71, 190, 94, 132, 30, 191, 93, 220, 179, 0, 127, 0, 0, 127, 223, 56, 127, 56, 119, 61, 39, 63, 16, 239, 195, 190, 115, 61, 39, 191, 86, 197, 185, 0, 176, 0, 158, 127, 0, 57, 255, 56, 201, 251, 48, 63, 217, 57, 14, 191, 88, 131, 236, 190, 86, 197, 185, 0, 176, 0, 158, 127, 191, 56, 127, 57, 27, 131, 22, 63, 217, 57, 14, 191, 21, 131, 22, 191, 86, 197, 185, 0, 176, 0, 158, 127, 255, 56, 127, 57, 79, 167, 68, 63, 16, 239, 195, 190, 79, 102, 3, 191, 86, 197, 185, 0, 176, 0, 158, 127, 192, 56, 255, 56, 27, 131, 22, 63, 217, 57, 14, 191, 21, 131, 22, 191, 76, 176, 194, 0, 176, 0, 158, 127, 255, 56, 127, 57, 27, 131, 22, 63, 243, 4, 53, 191, 72, 35, 201, 190, 76, 176, 194, 0, 176, 0, 158, 127, 191, 56, 0, 58, 3, 0, 0, 63, 243, 4, 53, 191, 252, 255, 255, 190, 76, 176, 194, 0, 176, 0, 158, 127, 255, 56, 0, 58, 201, 251, 48, 63, 217, 57, 14, 191, 88, 131, 236, 190, 76, 176, 194, 0, 176, 0, 158, 127, 191, 56, 127, 57, 3, 0, 0, 63, 243, 4, 53, 191, 252, 255, 255, 190, 62, 159, 205, 0, 176, 0, 158, 127, 255, 56, 0, 58, 100, 131, 236, 62, 50, 219, 84, 191, 110, 8, 158, 190, 62, 159, 205, 0, 176, 0, 158, 127, 191, 56, 128, 58, 84, 35, 201, 62, 50, 219, 84, 191, 72, 35, 201, 190, 62, 159, 205, 0, 176, 0, 158, 127, 255, 56, 128, 58, 27, 131, 22, 63, 243, 4, 53, 191, 72, 35, 201, 190, 62, 159, 205, 0, 176, 0, 158, 127, 191, 56, 0, 58, 216, 139, 138, 62, 96, 131, 108, 191, 206, 139, 138, 190, 46, 145, 218, 0, 176, 0, 158, 127, 255, 56, 0, 59, 100, 131, 236, 62, 50, 219, 84, 191, 110, 8, 158, 190, 46, 145, 218, 0, 176, 0, 158, 127, 191, 56, 128, 58, 198, 233, 162, 62, 96, 131, 108, 191, 188, 181, 89, 190, 46, 145, 218, 0, 176, 0, 158, 127, 191, 56, 0, 59, 84, 35, 201, 62, 50, 219, 84, 191, 72, 35, 201, 190, 46, 145, 218, 0, 176, 0, 158, 127, 255, 56, 128, 58, 201, 251, 48, 63, 217, 57, 14, 191, 88, 131, 236, 190, 86, 176, 210, 0, 197, 0, 144, 127, 191, 56, 127, 57, 120, 61, 39, 63, 243, 4, 53, 191, 204, 139, 138, 190, 86, 176, 210, 0, 197, 0, 144, 127, 127, 56, 0, 58, 27, 131, 22, 63, 243, 4, 53, 191, 72, 35, 201, 190, 86, 176, 210, 0, 197, 0, 144, 127, 191, 56, 0, 58, 80, 167, 68, 63, 217, 57, 14, 191, 184, 233, 162, 190, 86, 176, 210, 0, 197, 0, 144, 127, 127, 56, 127, 57, 100, 131, 236, 62, 50, 219, 84, 191, 110, 8, 158, 190, 71, 159, 218, 0, 197, 0, 144, 127, 191, 56, 128, 58, 120, 61, 39, 63, 243, 4, 53, 191, 204, 139, 138, 190, 71, 159, 218, 0, 197, 0, 144, 127, 127, 56, 0, 58, 84, 102, 3, 63, 50, 219, 84, 191, 184, 181, 89, 190, 71, 159, 218, 0, 197, 0, 144, 127, 127, 56, 128, 58, 27, 131, 22, 63, 243, 4, 53, 191, 72, 35, 201, 190, 71, 159, 218, 0, 197, 0, 144, 127, 191, 56, 0, 58, 198, 233, 162, 62, 96, 131, 108, 191, 188, 181, 89, 190, 52, 145, 228, 0, 197, 0, 144, 127, 191, 56, 0, 59, 84, 102, 3, 63, 50, 219, 84, 191, 184, 181, 89, 190, 52, 145, 228, 0, 197, 0, 144, 127, 127, 56, 128, 58, 248, 4, 181, 62, 96, 131, 108, 191, 10, 246, 21, 190, 52, 145, 228, 0, 197, 0, 144, 127, 127, 56, 255, 58, 100, 131, 236, 62, 50, 219, 84, 191, 110, 8, 158, 190, 52, 145, 228, 0, 197, 0, 144, 127, 191, 56, 128, 58, 198, 233, 162, 62, 96, 131, 108, 191, 188, 181, 89, 190, 32, 135, 239, 0, 197, 0, 144, 127, 191, 56, 0, 59, 214, 144, 56, 62, 191, 20, 123, 191, 15, 230, 152, 189, 32, 135, 239, 0, 197, 0, 144, 127, 127, 56, 128, 59, 213, 26, 38, 62, 191, 20, 123, 191, 137, 249, 221, 189, 32, 135, 239, 0, 197, 0, 144, 127, 191, 56, 128, 59, 248, 4, 181, 62, 96, 131, 108, 191, 10, 246, 21, 190, 32, 135, 239, 0, 197, 0, 144, 127, 127, 56, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 11, 130, 251, 0, 197, 0, 144, 127, 159, 56, 0, 60, 213, 26, 38, 62, 191, 20, 123, 191, 137, 249, 221, 189, 11, 130, 251, 0, 197, 0, 144, 127, 191, 56, 128, 59, 214, 144, 56, 62, 191, 20, 123, 191, 15, 230, 152, 189, 11, 130, 251, 0, 197, 0, 144, 127, 127, 56, 128, 59, 43, 196, 80, 63, 186, 197, 71, 190, 58, 126, 11, 191, 107, 220, 199, 0, 197, 0, 144, 127, 191, 56, 127, 56, 124, 130, 90, 63, 16, 239, 195, 190, 238, 4, 181, 190, 107, 220, 199, 0, 197, 0, 144, 127, 127, 56, 255, 56, 79, 167, 68, 63, 16, 239, 195, 190, 79, 102, 3, 191, 107, 220, 199, 0, 197, 0, 144, 127, 192, 56, 255, 56, 30, 145, 86, 63, 186, 197, 71, 190, 19, 164, 0, 191, 107, 220, 199, 0, 197, 0, 144, 127, 175, 56, 127, 56, 18, 94, 92, 63, 186, 197, 71, 190, 217, 147, 235, 190, 107, 220, 199, 0, 197, 0, 144, 127, 159, 56, 127, 56, 249, 247, 103, 63, 186, 197, 71, 190, 62, 43, 192, 190, 107, 220, 199, 0, 197, 0, 144, 127, 127, 56, 127, 56, 6, 43, 98, 63, 186, 197, 71, 190, 140, 223, 213, 190, 107, 220, 199, 0, 127, 0, 0, 127, 143, 56, 127, 56, 79, 167, 68, 63, 16, 239, 195, 190, 79, 102, 3, 191, 98, 197, 204, 0, 197, 0, 144, 127, 192, 56, 255, 56, 80, 167, 68, 63, 217, 57, 14, 191, 184, 233, 162, 190, 98, 197, 204, 0, 197, 0, 144, 127, 127, 56, 127, 57, 201, 251, 48, 63, 217, 57, 14, 191, 88, 131, 236, 190, 98, 197, 204, 0, 197, 0, 144, 127, 191, 56, 127, 57, 124, 130, 90, 63, 16, 239, 195, 190, 238, 4, 181, 190, 98, 197, 204, 0, 197, 0, 144, 127, 127, 56, 255, 56, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 11, 130, 253, 0, 220, 0, 135, 127, 95, 56, 0, 60, 214, 144, 56, 62, 191, 20, 123, 191, 15, 230, 152, 189, 11, 130, 253, 0, 220, 0, 135, 127, 127, 56, 128, 59, 24, 239, 67, 62, 191, 20, 123, 191, 188, 228, 27, 189, 11, 130, 253, 0, 220, 0, 135, 127, 63, 56, 128, 59, 124, 130, 90, 63, 16, 239, 195, 190, 238, 4, 181, 190, 116, 220, 221, 0, 220, 0, 135, 127, 127, 56, 255, 56, 176, 65, 118, 63, 186, 197, 71, 190, 252, 238, 67, 190, 116, 220, 221, 0, 220, 0, 135, 127, 63, 56, 127, 56, 250, 247, 103, 63, 16, 239, 195, 190, 198, 144, 56, 190, 116, 220, 221, 0, 220, 0, 135, 127, 63, 56, 255, 56, 249, 247, 103, 63, 186, 197, 71, 190, 62, 43, 192, 190, 116, 220, 221, 0, 220, 0, 135, 127, 127, 56, 127, 56, 102, 138, 107, 63, 186, 197, 71, 190, 78, 158, 168, 190, 116, 220, 221, 0, 220, 0, 135, 127, 111, 56, 127, 56, 212, 28, 111, 63, 186, 197, 71, 190, 94, 17, 145, 190, 116, 220, 221, 0, 127, 0, 0, 127, 95, 56, 127, 56, 66, 175, 114, 63, 186, 197, 71, 190, 220, 8, 115, 190, 116, 220, 221, 0, 127, 0, 0, 127, 79, 56, 127, 56, 80, 167, 68, 63, 217, 57, 14, 191, 184, 233, 162, 190, 107, 197, 224, 0, 220, 0, 135, 127, 127, 56, 127, 57, 250, 247, 103, 63, 16, 239, 195, 190, 198, 144, 56, 190, 107, 197, 224, 0, 220, 0, 135, 127, 63, 56, 255, 56, 44, 196, 80, 63, 217, 57, 14, 191, 189, 26, 38, 190, 107, 197, 224, 0, 220, 0, 135, 127, 63, 56, 127, 57, 124, 130, 90, 63, 16, 239, 195, 190, 238, 4, 181, 190, 107, 197, 224, 0, 220, 0, 135, 127, 127, 56, 255, 56, 80, 167, 68, 63, 217, 57, 14, 191, 184, 233, 162, 190, 94, 176, 228, 0, 220, 0, 135, 127, 127, 56, 127, 57, 137, 138, 49, 63, 243, 4, 53, 191, 157, 66, 13, 190, 94, 176, 228, 0, 220, 0, 135, 127, 63, 56, 255, 57, 120, 61, 39, 63, 243, 4, 53, 191, 204, 139, 138, 190, 94, 176, 228, 0, 220, 0, 135, 127, 127, 56, 0, 58, 44, 196, 80, 63, 217, 57, 14, 191, 189, 26, 38, 190, 94, 176, 228, 0, 220, 0, 135, 127, 63, 56, 127, 57, 84, 102, 3, 63, 50, 219, 84, 191, 184, 181, 89, 190, 77, 159, 233, 0, 220, 0, 135, 127, 127, 56, 128, 58, 137, 138, 49, 63, 243, 4, 53, 191, 157, 66, 13, 190, 77, 159, 233, 0, 220, 0, 135, 127, 63, 56, 255, 57, 66, 126, 11, 63, 50, 219, 84, 191, 132, 249, 221, 189, 77, 159, 233, 0, 220, 0, 135, 127, 63, 56, 127, 58, 120, 61, 39, 63, 243, 4, 53, 191, 204, 139, 138, 190, 77, 159, 233, 0, 220, 0, 135, 127, 127, 56, 0, 58, 84, 102, 3, 63, 50, 219, 84, 191, 184, 181, 89, 190, 57, 145, 239, 0, 220, 0, 135, 127, 127, 56, 128, 58, 79, 43, 192, 62, 96, 131, 108, 191, 16, 230, 152, 189, 57, 145, 239, 0, 220, 0, 135, 127, 63, 56, 255, 58, 248, 4, 181, 62, 96, 131, 108, 191, 10, 246, 21, 190, 57, 145, 239, 0, 220, 0, 135, 127, 127, 56, 255, 58, 66, 126, 11, 63, 50, 219, 84, 191, 132, 249, 221, 189, 57, 145, 239, 0, 220, 0, 135, 127, 63, 56, 127, 58, 214, 144, 56, 62, 191, 20, 123, 191, 15, 230, 152, 189, 35, 135, 246, 0, 220, 0, 135, 127, 127, 56, 128, 59, 79, 43, 192, 62, 96, 131, 108, 191, 16, 230, 152, 189, 35, 135, 246, 0, 220, 0, 135, 127, 63, 56, 255, 58, 24, 239, 67, 62, 191, 20, 123, 191, 188, 228, 27, 189, 35, 135, 246, 0, 220, 0, 135, 127, 63, 56, 128, 59, 248, 4, 181, 62, 96, 131, 108, 191, 10, 246, 21, 190, 35, 135, 246, 0, 220, 0, 135, 127, 127, 56, 255, 58, 66, 126, 11, 63, 50, 219, 84, 191, 132, 249, 221, 189, 80, 159, 249, 0, 244, 0, 130, 127, 63, 56, 127, 58, 246, 4, 53, 63, 243, 4, 53, 191, 128, 92, 171, 52, 80, 159, 249, 0, 244, 0, 130, 127, 255, 55, 255, 57, 220, 57, 14, 63, 50, 219, 84, 191, 128, 92, 183, 52, 80, 159, 249, 0, 244, 0, 130, 127, 255, 55, 127, 58, 137, 138, 49, 63, 243, 4, 53, 191, 157, 66, 13, 190, 80, 159, 249, 0, 244, 0, 130, 127, 63, 56, 255, 57, 66, 126, 11, 63, 50, 219, 84, 191, 132, 249, 221, 189, 59, 145, 251, 0, 244, 0, 130, 127, 63, 56, 127, 58, 25, 239, 195, 62, 96, 131, 108, 191, 128, 92, 163, 52, 59, 145, 251, 0, 244, 0, 130, 127, 255, 55, 255, 58, 79, 43, 192, 62, 96, 131, 108, 191, 16, 230, 152, 189, 59, 145, 251, 0, 244, 0, 130, 127, 63, 56, 255, 58, 220, 57, 14, 63, 50, 219, 84, 191, 128, 92, 183, 52, 59, 145, 251, 0, 244, 0, 130, 127, 255, 55, 127, 58, 79, 43, 192, 62, 96, 131, 108, 191, 16, 230, 152, 189, 36, 135, 253, 0, 244, 0, 130, 127, 63, 56, 255, 58, 197, 197, 71, 62, 191, 20, 123, 191, 128, 92, 165, 52, 36, 135, 253, 0, 244, 0, 130, 127, 255, 55, 128, 59, 24, 239, 67, 62, 191, 20, 123, 191, 188, 228, 27, 189, 36, 135, 253, 0, 244, 0, 130, 127, 63, 56, 128, 59, 25, 239, 195, 62, 96, 131, 108, 191, 128, 92, 163, 52, 36, 135, 253, 0, 244, 0, 130, 127, 255, 55, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 12, 130, 255, 0, 244, 0, 130, 127, 31, 56, 0, 60, 24, 239, 67, 62, 191, 20, 123, 191, 188, 228, 27, 189, 12, 130, 255, 0, 244, 0, 130, 127, 63, 56, 128, 59, 197, 197, 71, 62, 191, 20, 123, 191, 128, 92, 165, 52, 12, 130, 255, 0, 244, 0, 130, 127, 255, 55, 128, 59, 176, 65, 118, 63, 186, 197, 71, 190, 252, 238, 67, 190, 120, 220, 245, 0, 244, 0, 130, 127, 63, 56, 127, 56, 97, 131, 108, 63, 16, 239, 195, 190, 0, 185, 118, 52, 120, 220, 245, 0, 244, 0, 130, 127, 255, 55, 255, 56, 250, 247, 103, 63, 16, 239, 195, 190, 198, 144, 56, 190, 120, 220, 245, 0, 244, 0, 130, 127, 63, 56, 255, 56, 250, 223, 121, 63, 186, 197, 71, 190, 172, 238, 67, 189, 120, 220, 245, 0, 244, 0, 130, 127, 15, 56, 127, 56, 190, 20, 123, 63, 186, 197, 71, 190, 128, 92, 211, 52, 120, 220, 245, 0, 244, 0, 130, 127, 255, 55, 127, 56, 55, 171, 120, 63, 186, 197, 71, 190, 225, 238, 195, 189, 120, 220, 245, 0, 127, 0, 0, 127, 31, 56, 127, 56, 116, 118, 119, 63, 186, 197, 71, 190, 54, 243, 18, 190, 120, 220, 245, 0, 127, 0, 0, 127, 47, 56, 127, 56, 250, 247, 103, 63, 16, 239, 195, 190, 198, 144, 56, 190, 111, 197, 246, 0, 244, 0, 130, 127, 63, 56, 255, 56, 52, 219, 84, 63, 217, 57, 14, 191, 128, 92, 179, 52, 111, 197, 246, 0, 244, 0, 130, 127, 255, 55, 127, 57, 44, 196, 80, 63, 217, 57, 14, 191, 189, 26, 38, 190, 111, 197, 246, 0, 244, 0, 130, 127, 63, 56, 127, 57, 97, 131, 108, 63, 16, 239, 195, 190, 0, 185, 118, 52, 111, 197, 246, 0, 244, 0, 130, 127, 255, 55, 255, 56, 137, 138, 49, 63, 243, 4, 53, 191, 157, 66, 13, 190, 97, 176, 247, 0, 244, 0, 130, 127, 63, 56, 255, 57, 52, 219, 84, 63, 217, 57, 14, 191, 128, 92, 179, 52, 97, 176, 247, 0, 244, 0, 130, 127, 255, 55, 127, 57, 246, 4, 53, 63, 243, 4, 53, 191, 128, 92, 171, 52, 97, 176, 247, 0, 244, 0, 130, 127, 255, 55, 255, 57, 44, 196, 80, 63, 217, 57, 14, 191, 189, 26, 38, 190, 97, 176, 247, 0, 244, 0, 130, 127, 63, 56, 127, 57, 190, 20, 123, 63, 186, 197, 71, 190, 128, 92, 211, 52, 120, 220, 11, 0, 12, 0, 130, 127, 255, 55, 127, 56, 250, 247, 103, 63, 16, 239, 195, 190, 228, 144, 56, 62, 120, 220, 11, 0, 12, 0, 130, 127, 127, 55, 255, 56, 97, 131, 108, 63, 16, 239, 195, 190, 0, 185, 118, 52, 120, 220, 11, 0, 12, 0, 130, 127, 255, 55, 255, 56, 250, 223, 121, 63, 186, 197, 71, 190, 126, 239, 67, 61, 120, 220, 11, 0, 12, 0, 130, 127, 223, 55, 127, 56, 54, 171, 120, 63, 186, 197, 71, 190, 73, 239, 195, 61, 120, 220, 11, 0, 12, 0, 130, 127, 191, 55, 127, 56, 174, 65, 118, 63, 186, 197, 71, 190, 47, 239, 67, 62, 120, 220, 11, 0, 12, 0, 130, 127, 127, 55, 127, 56, 114, 118, 119, 63, 186, 197, 71, 190, 106, 243, 18, 62, 120, 220, 11, 0, 127, 0, 0, 129, 159, 55, 127, 56, 97, 131, 108, 63, 16, 239, 195, 190, 0, 185, 118, 52, 111, 197, 10, 0, 12, 0, 130, 127, 255, 55, 255, 56, 43, 196, 80, 63, 217, 57, 14, 191, 233, 26, 38, 62, 111, 197, 10, 0, 12, 0, 130, 127, 127, 55, 127, 57, 52, 219, 84, 63, 217, 57, 14, 191, 128, 92, 179, 52, 111, 197, 10, 0, 12, 0, 130, 127, 255, 55, 127, 57, 250, 247, 103, 63, 16, 239, 195, 190, 228, 144, 56, 62, 111, 197, 10, 0, 12, 0, 130, 127, 127, 55, 255, 56, 246, 4, 53, 63, 243, 4, 53, 191, 128, 92, 171, 52, 97, 176, 9, 0, 12, 0, 130, 127, 255, 55, 255, 57, 43, 196, 80, 63, 217, 57, 14, 191, 233, 26, 38, 62, 97, 176, 9, 0, 12, 0, 130, 127, 127, 55, 127, 57, 136, 138, 49, 63, 243, 4, 53, 191, 198, 66, 13, 62, 97, 176, 9, 0, 12, 0, 130, 127, 127, 55, 255, 57, 52, 219, 84, 63, 217, 57, 14, 191, 128, 92, 179, 52, 97, 176, 9, 0, 12, 0, 130, 127, 255, 55, 127, 57, 246, 4, 53, 63, 243, 4, 53, 191, 128, 92, 171, 52, 80, 159, 7, 0, 12, 0, 130, 127, 255, 55, 255, 57, 65, 126, 11, 63, 50, 219, 84, 191, 223, 249, 221, 61, 80, 159, 7, 0, 12, 0, 130, 127, 127, 55, 127, 58, 220, 57, 14, 63, 50, 219, 84, 191, 128, 92, 183, 52, 80, 159, 7, 0, 12, 0, 130, 127, 255, 55, 127, 58, 136, 138, 49, 63, 243, 4, 53, 191, 198, 66, 13, 62, 80, 159, 7, 0, 12, 0, 130, 127, 127, 55, 255, 57, 220, 57, 14, 63, 50, 219, 84, 191, 128, 92, 183, 52, 59, 145, 5, 0, 12, 0, 130, 127, 255, 55, 127, 58, 78, 43, 192, 62, 96, 131, 108, 191, 97, 230, 152, 61, 59, 145, 5, 0, 12, 0, 130, 127, 127, 55, 255, 58, 25, 239, 195, 62, 96, 131, 108, 191, 128, 92, 163, 52, 59, 145, 5, 0, 12, 0, 130, 127, 255, 55, 255, 58, 65, 126, 11, 63, 50, 219, 84, 191, 223, 249, 221, 61, 59, 145, 5, 0, 12, 0, 130, 127, 127, 55, 127, 58, 25, 239, 195, 62, 96, 131, 108, 191, 128, 92, 163, 52, 36, 135, 3, 0, 12, 0, 130, 127, 255, 55, 255, 58, 24, 239, 67, 62, 191, 20, 123, 191, 98, 229, 27, 61, 36, 135, 3, 0, 12, 0, 130, 127, 127, 55, 128, 59, 197, 197, 71, 62, 191, 20, 123, 191, 128, 92, 165, 52, 36, 135, 3, 0, 12, 0, 130, 127, 255, 55, 128, 59, 78, 43, 192, 62, 96, 131, 108, 191, 97, 230, 152, 61, 36, 135, 3, 0, 12, 0, 130, 127, 127, 55, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 12, 130, 1, 0, 12, 0, 130, 127, 191, 55, 0, 60, 197, 197, 71, 62, 191, 20, 123, 191, 128, 92, 165, 52, 12, 130, 1, 0, 12, 0, 130, 127, 255, 55, 128, 59, 24, 239, 67, 62, 191, 20, 123, 191, 98, 229, 27, 61, 12, 130, 1, 0, 12, 0, 130, 127, 127, 55, 128, 59, 136, 138, 49, 63, 243, 4, 53, 191, 198, 66, 13, 62, 77, 159, 23, 0, 36, 0, 135, 127, 127, 55, 255, 57, 82, 102, 3, 63, 50, 219, 84, 191, 228, 181, 89, 62, 77, 159, 23, 0, 36, 0, 135, 127, 255, 54, 127, 58, 65, 126, 11, 63, 50, 219, 84, 191, 223, 249, 221, 61, 77, 159, 23, 0, 36, 0, 135, 127, 127, 55, 127, 58, 119, 61, 39, 63, 243, 4, 53, 191, 224, 139, 138, 62, 77, 159, 23, 0, 36, 0, 135, 127, 255, 54, 255, 57, 78, 43, 192, 62, 96, 131, 108, 191, 97, 230, 152, 61, 57, 145, 17, 0, 36, 0, 135, 127, 127, 55, 255, 58, 82, 102, 3, 63, 50, 219, 84, 191, 228, 181, 89, 62, 57, 145, 17, 0, 36, 0, 135, 127, 255, 54, 127, 58, 246, 4, 181, 62, 96, 131, 108, 191, 49, 246, 21, 62, 57, 145, 17, 0, 36, 0, 135, 127, 255, 54, 255, 58, 65, 126, 11, 63, 50, 219, 84, 191, 223, 249, 221, 61, 57, 145, 17, 0, 36, 0, 135, 127, 127, 55, 127, 58, 24, 239, 67, 62, 191, 20, 123, 191, 98, 229, 27, 61, 35, 135, 10, 0, 36, 0, 135, 127, 127, 55, 128, 59, 246, 4, 181, 62, 96, 131, 108, 191, 49, 246, 21, 62, 35, 135, 10, 0, 36, 0, 135, 127, 255, 54, 255, 58, 213, 144, 56, 62, 191, 20, 123, 191, 97, 230, 152, 61, 35, 135, 10, 0, 36, 0, 135, 127, 255, 54, 128, 59, 78, 43, 192, 62, 96, 131, 108, 191, 97, 230, 152, 61, 35, 135, 10, 0, 36, 0, 135, 127, 127, 55, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 11, 130, 3, 0, 36, 0, 135, 127, 63, 55, 0, 60, 24, 239, 67, 62, 191, 20, 123, 191, 98, 229, 27, 61, 11, 130, 3, 0, 36, 0, 135, 127, 127, 55, 128, 59, 213, 144, 56, 62, 191, 20, 123, 191, 97, 230, 152, 61, 11, 130, 3, 0, 36, 0, 135, 127, 255, 54, 128, 59, 174, 65, 118, 63, 186, 197, 71, 190, 47, 239, 67, 62, 116, 220, 35, 0, 36, 0, 135, 127, 127, 55, 127, 56, 124, 130, 90, 63, 16, 239, 195, 190, 252, 4, 181, 62, 116, 220, 35, 0, 36, 0, 135, 127, 255, 54, 255, 56, 250, 247, 103, 63, 16, 239, 195, 190, 228, 144, 56, 62, 116, 220, 35, 0, 36, 0, 135, 127, 127, 55, 255, 56, 246, 247, 103, 63, 186, 197, 71, 190, 86, 43, 192, 62, 116, 220, 35, 0, 36, 0, 135, 127, 255, 54, 127, 56, 64, 175, 114, 63, 186, 197, 71, 190, 14, 9, 115, 62, 116, 220, 35, 0, 127, 0, 0, 129, 95, 55, 127, 56, 210, 28, 111, 63, 186, 197, 71, 190, 119, 17, 145, 62, 116, 220, 35, 0, 127, 0, 0, 129, 63, 55, 127, 56, 100, 138, 107, 63, 186, 197, 71, 190, 102, 158, 168, 62, 116, 220, 35, 0, 127, 0, 0, 129, 31, 55, 127, 56, 43, 196, 80, 63, 217, 57, 14, 191, 233, 26, 38, 62, 107, 197, 32, 0, 36, 0, 135, 127, 127, 55, 127, 57, 124, 130, 90, 63, 16, 239, 195, 190, 252, 4, 181, 62, 107, 197, 32, 0, 36, 0, 135, 127, 255, 54, 255, 56, 77, 167, 68, 63, 217, 57, 14, 191, 206, 233, 162, 62, 107, 197, 32, 0, 36, 0, 135, 127, 255, 54, 127, 57, 250, 247, 103, 63, 16, 239, 195, 190, 228, 144, 56, 62, 107, 197, 32, 0, 36, 0, 135, 127, 127, 55, 255, 56, 43, 196, 80, 63, 217, 57, 14, 191, 233, 26, 38, 62, 94, 176, 28, 0, 36, 0, 135, 127, 127, 55, 127, 57, 119, 61, 39, 63, 243, 4, 53, 191, 224, 139, 138, 62, 94, 176, 28, 0, 36, 0, 135, 127, 255, 54, 255, 57, 136, 138, 49, 63, 243, 4, 53, 191, 198, 66, 13, 62, 94, 176, 28, 0, 36, 0, 135, 127, 127, 55, 255, 57, 77, 167, 68, 63, 217, 57, 14, 191, 206, 233, 162, 62, 94, 176, 28, 0, 36, 0, 135, 127, 255, 54, 127, 57, 246, 247, 103, 63, 186, 197, 71, 190, 86, 43, 192, 62, 107, 220, 57, 0, 59, 0, 144, 127, 255, 54, 127, 56, 78, 167, 68, 63, 16, 239, 195, 190, 86, 102, 3, 63, 107, 220, 57, 0, 59, 0, 144, 127, 127, 54, 255, 56, 124, 130, 90, 63, 16, 239, 195, 190, 252, 4, 181, 62, 107, 220, 57, 0, 59, 0, 144, 127, 255, 54, 255, 56, 2, 43, 98, 63, 186, 197, 71, 190, 162, 223, 213, 62, 107, 220, 57, 0, 59, 0, 144, 127, 223, 54, 127, 56, 14, 94, 92, 63, 186, 197, 71, 190, 239, 147, 235, 62, 107, 220, 57, 0, 59, 0, 144, 127, 191, 54, 127, 56, 26, 145, 86, 63, 186, 197, 71, 190, 30, 164, 0, 63, 107, 220, 57, 0, 59, 0, 144, 127, 159, 54, 127, 56, 39, 196, 80, 63, 186, 197, 71, 190, 68, 126, 11, 63, 107, 220, 57, 0, 59, 0, 144, 127, 127, 54, 127, 56, 124, 130, 90, 63, 16, 239, 195, 190, 252, 4, 181, 62, 98, 197, 52, 0, 59, 0, 144, 127, 255, 54, 255, 56, 198, 251, 48, 63, 217, 57, 14, 191, 108, 131, 236, 62, 98, 197, 52, 0, 59, 0, 144, 127, 127, 54, 127, 57, 77, 167, 68, 63, 217, 57, 14, 191, 206, 233, 162, 62, 98, 197, 52, 0, 59, 0, 144, 127, 255, 54, 127, 57, 78, 167, 68, 63, 16, 239, 195, 190, 86, 102, 3, 63, 98, 197, 52, 0, 59, 0, 144, 127, 127, 54, 255, 56, 77, 167, 68, 63, 217, 57, 14, 191, 206, 233, 162, 62, 86, 176, 46, 0, 59, 0, 144, 127, 255, 54, 127, 57, 26, 131, 22, 63, 243, 4, 53, 191, 90, 35, 201, 62, 86, 176, 46, 0, 59, 0, 144, 127, 127, 54, 255, 57, 119, 61, 39, 63, 243, 4, 53, 191, 224, 139, 138, 62, 86, 176, 46, 0, 59, 0, 144, 127, 255, 54, 255, 57, 198, 251, 48, 63, 217, 57, 14, 191, 108, 131, 236, 62, 86, 176, 46, 0, 59, 0, 144, 127, 127, 54, 127, 57, 119, 61, 39, 63, 243, 4, 53, 191, 224, 139, 138, 62, 71, 159, 38, 0, 59, 0, 144, 127, 255, 54, 255, 57, 96, 131, 236, 62, 50, 219, 84, 191, 130, 8, 158, 62, 71, 159, 38, 0, 59, 0, 144, 127, 127, 54, 127, 58, 82, 102, 3, 63, 50, 219, 84, 191, 228, 181, 89, 62, 71, 159, 38, 0, 59, 0, 144, 127, 255, 54, 127, 58, 26, 131, 22, 63, 243, 4, 53, 191, 90, 35, 201, 62, 71, 159, 38, 0, 59, 0, 144, 127, 127, 54, 255, 57, 82, 102, 3, 63, 50, 219, 84, 191, 228, 181, 89, 62, 52, 145, 28, 0, 59, 0, 144, 127, 255, 54, 127, 58, 195, 233, 162, 62, 96, 131, 108, 191, 226, 181, 89, 62, 52, 145, 28, 0, 59, 0, 144, 127, 127, 54, 255, 58, 246, 4, 181, 62, 96, 131, 108, 191, 49, 246, 21, 62, 52, 145, 28, 0, 59, 0, 144, 127, 255, 54, 255, 58, 96, 131, 236, 62, 50, 219, 84, 191, 130, 8, 158, 62, 52, 145, 28, 0, 59, 0, 144, 127, 127, 54, 127, 58, 246, 4, 181, 62, 96, 131, 108, 191, 49, 246, 21, 62, 32, 135, 17, 0, 59, 0, 144, 127, 255, 54, 255, 58, 211, 26, 38, 62, 191, 20, 123, 191, 219, 249, 221, 61, 32, 135, 17, 0, 59, 0, 144, 127, 127, 54, 128, 59, 213, 144, 56, 62, 191, 20, 123, 191, 97, 230, 152, 61, 32, 135, 17, 0, 59, 0, 144, 127, 255, 54, 128, 59, 195, 233, 162, 62, 96, 131, 108, 191, 226, 181, 89, 62, 32, 135, 17, 0, 59, 0, 144, 127, 127, 54, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 11, 130, 5, 0, 59, 0, 144, 127, 191, 54, 0, 60, 213, 144, 56, 62, 191, 20, 123, 191, 97, 230, 152, 61, 11, 130, 5, 0, 59, 0, 144, 127, 255, 54, 128, 59, 211, 26, 38, 62, 191, 20, 123, 191, 219, 249, 221, 61, 11, 130, 5, 0, 59, 0, 144, 127, 127, 54, 128, 59, 195, 233, 162, 62, 96, 131, 108, 191, 226, 181, 89, 62, 46, 145, 38, 0, 80, 0, 158, 127, 127, 54, 255, 58, 79, 35, 201, 62, 50, 219, 84, 191, 90, 35, 201, 62, 46, 145, 38, 0, 80, 0, 158, 127, 255, 53, 127, 58, 213, 139, 138, 62, 96, 131, 108, 191, 224, 139, 138, 62, 46, 145, 38, 0, 80, 0, 158, 127, 255, 53, 255, 58, 96, 131, 236, 62, 50, 219, 84, 191, 130, 8, 158, 62, 46, 145, 38, 0, 80, 0, 158, 127, 127, 54, 127, 58, 211, 26, 38, 62, 191, 20, 123, 191, 219, 249, 221, 61, 28, 135, 23, 0, 80, 0, 158, 127, 127, 54, 128, 59, 213, 139, 138, 62, 96, 131, 108, 191, 224, 139, 138, 62, 28, 135, 23, 0, 80, 0, 158, 127, 255, 53, 255, 58, 176, 66, 13, 62, 191, 20, 123, 191, 198, 66, 13, 62, 28, 135, 23, 0, 80, 0, 158, 127, 255, 53, 128, 59, 195, 233, 162, 62, 96, 131, 108, 191, 226, 181, 89, 62, 28, 135, 23, 0, 80, 0, 158, 127, 127, 54, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 9, 130, 7, 0, 80, 0, 158, 127, 63, 54, 0, 60, 211, 26, 38, 62, 191, 20, 123, 191, 219, 249, 221, 61, 9, 130, 7, 0, 80, 0, 158, 127, 127, 54, 128, 59, 176, 66, 13, 62, 191, 20, 123, 191, 198, 66, 13, 62, 9, 130, 7, 0, 80, 0, 158, 127, 255, 53, 128, 59, 78, 167, 68, 63, 16, 239, 195, 190, 86, 102, 3, 63, 93, 220, 77, 0, 80, 0, 158, 127, 127, 54, 255, 56, 132, 138, 49, 63, 186, 197, 71, 190, 138, 138, 49, 63, 93, 220, 77, 0, 80, 0, 158, 127, 255, 53, 127, 56, 119, 61, 39, 63, 16, 239, 195, 190, 122, 61, 39, 63, 93, 220, 77, 0, 80, 0, 158, 127, 255, 53, 255, 56, 39, 196, 80, 63, 186, 197, 71, 190, 68, 126, 11, 63, 93, 220, 77, 0, 80, 0, 158, 127, 127, 54, 127, 56, 237, 88, 57, 63, 186, 197, 71, 190, 120, 7, 40, 63, 93, 220, 77, 0, 127, 0, 0, 129, 31, 54, 127, 56, 190, 245, 72, 63, 186, 197, 71, 190, 86, 1, 21, 63, 93, 220, 77, 0, 127, 0, 0, 129, 95, 54, 127, 56, 86, 39, 65, 63, 186, 197, 71, 190, 103, 132, 30, 63, 93, 220, 77, 0, 127, 0, 0, 129, 63, 54, 127, 56, 198, 251, 48, 63, 217, 57, 14, 191, 108, 131, 236, 62, 86, 197, 71, 0, 80, 0, 158, 127, 127, 54, 127, 57, 119, 61, 39, 63, 16, 239, 195, 190, 122, 61, 39, 63, 86, 197, 71, 0, 80, 0, 158, 127, 255, 53, 255, 56, 23, 131, 22, 63, 217, 57, 14, 191, 30, 131, 22, 63, 86, 197, 71, 0, 80, 0, 158, 127, 255, 53, 127, 57, 78, 167, 68, 63, 16, 239, 195, 190, 86, 102, 3, 63, 86, 197, 71, 0, 80, 0, 158, 127, 127, 54, 255, 56, 26, 131, 22, 63, 243, 4, 53, 191, 90, 35, 201, 62, 76, 176, 62, 0, 80, 0, 158, 127, 127, 54, 255, 57, 23, 131, 22, 63, 217, 57, 14, 191, 30, 131, 22, 63, 76, 176, 62, 0, 80, 0, 158, 127, 255, 53, 127, 57, 1, 0, 0, 63, 243, 4, 53, 191, 6, 0, 0, 63, 76, 176, 62, 0, 80, 0, 158, 127, 255, 53, 255, 57, 198, 251, 48, 63, 217, 57, 14, 191, 108, 131, 236, 62, 76, 176, 62, 0, 80, 0, 158, 127, 127, 54, 127, 57, 26, 131, 22, 63, 243, 4, 53, 191, 90, 35, 201, 62, 62, 159, 51, 0, 80, 0, 158, 127, 127, 54, 255, 57, 79, 35, 201, 62, 50, 219, 84, 191, 90, 35, 201, 62, 62, 159, 51, 0, 80, 0, 158, 127, 255, 53, 127, 58, 96, 131, 236, 62, 50, 219, 84, 191, 130, 8, 158, 62, 62, 159, 51, 0, 80, 0, 158, 127, 127, 54, 127, 58, 1, 0, 0, 63, 243, 4, 53, 191, 6, 0, 0, 63, 62, 159, 51, 0, 80, 0, 158, 127, 255, 53, 255, 57, 132, 138, 49, 63, 186, 197, 71, 190, 138, 138, 49, 63, 77, 220, 93, 0, 98, 0, 176, 127, 255, 53, 127, 56, 83, 102, 3, 63, 16, 239, 195, 190, 82, 167, 68, 63, 77, 220, 93, 0, 98, 0, 176, 127, 127, 53, 255, 56, 119, 61, 39, 63, 16, 239, 195, 190, 122, 61, 39, 63, 77, 220, 93, 0, 98, 0, 176, 127, 255, 53, 255, 56, 114, 7, 40, 63, 186, 197, 71, 190, 243, 88, 57, 63, 77, 220, 93, 0, 98, 0, 176, 127, 223, 53, 127, 56, 78, 1, 21, 63, 186, 197, 71, 190, 196, 245, 72, 63, 77, 220, 93, 0, 98, 0, 176, 127, 159, 53, 127, 56, 61, 126, 11, 63, 186, 197, 71, 190, 45, 196, 80, 63, 77, 220, 93, 0, 98, 0, 176, 127, 127, 53, 127, 56, 96, 132, 30, 63, 186, 197, 71, 190, 92, 39, 65, 63, 77, 220, 93, 0, 127, 0, 0, 129, 191, 53, 127, 56, 119, 61, 39, 63, 16, 239, 195, 190, 122, 61, 39, 63, 71, 197, 86, 0, 98, 0, 176, 127, 255, 53, 255, 56, 93, 131, 236, 62, 217, 57, 14, 191, 203, 251, 48, 63, 71, 197, 86, 0, 98, 0, 176, 127, 127, 53, 127, 57, 23, 131, 22, 63, 217, 57, 14, 191, 30, 131, 22, 63, 71, 197, 86, 0, 98, 0, 176, 127, 255, 53, 127, 57, 83, 102, 3, 63, 16, 239, 195, 190, 82, 167, 68, 63, 71, 197, 86, 0, 98, 0, 176, 127, 127, 53, 255, 56, 23, 131, 22, 63, 217, 57, 14, 191, 30, 131, 22, 63, 62, 176, 76, 0, 98, 0, 176, 127, 255, 53, 127, 57, 79, 35, 201, 62, 243, 4, 53, 191, 30, 131, 22, 63, 62, 176, 76, 0, 98, 0, 176, 127, 127, 53, 255, 57, 1, 0, 0, 63, 243, 4, 53, 191, 6, 0, 0, 63, 62, 176, 76, 0, 98, 0, 176, 127, 255, 53, 255, 57, 93, 131, 236, 62, 217, 57, 14, 191, 203, 251, 48, 63, 62, 176, 76, 0, 98, 0, 176, 127, 127, 53, 127, 57, 79, 35, 201, 62, 50, 219, 84, 191, 90, 35, 201, 62, 51, 159, 62, 0, 98, 0, 176, 127, 255, 53, 127, 58, 79, 35, 201, 62, 243, 4, 53, 191, 30, 131, 22, 63, 51, 159, 62, 0, 98, 0, 176, 127, 127, 53, 255, 57, 117, 8, 158, 62, 50, 219, 84, 191, 106, 131, 236, 62, 51, 159, 62, 0, 98, 0, 176, 127, 127, 53, 127, 58, 1, 0, 0, 63, 243, 4, 53, 191, 6, 0, 0, 63, 51, 159, 62, 0, 98, 0, 176, 127, 255, 53, 255, 57, 79, 35, 201, 62, 50, 219, 84, 191, 90, 35, 201, 62, 38, 145, 46, 0, 98, 0, 176, 127, 255, 53, 127, 58, 203, 181, 89, 62, 96, 131, 108, 191, 204, 233, 162, 62, 38, 145, 46, 0, 98, 0, 176, 127, 127, 53, 255, 58, 213, 139, 138, 62, 96, 131, 108, 191, 224, 139, 138, 62, 38, 145, 46, 0, 98, 0, 176, 127, 255, 53, 255, 58, 117, 8, 158, 62, 50, 219, 84, 191, 106, 131, 236, 62, 38, 145, 46, 0, 98, 0, 176, 127, 127, 53, 127, 58, 213, 139, 138, 62, 96, 131, 108, 191, 224, 139, 138, 62, 23, 135, 28, 0, 98, 0, 176, 127, 255, 53, 255, 58, 175, 249, 221, 61, 191, 20, 123, 191, 232, 26, 38, 62, 23, 135, 28, 0, 98, 0, 176, 127, 127, 53, 128, 59, 176, 66, 13, 62, 191, 20, 123, 191, 198, 66, 13, 62, 23, 135, 28, 0, 98, 0, 176, 127, 255, 53, 128, 59, 203, 181, 89, 62, 96, 131, 108, 191, 204, 233, 162, 62, 23, 135, 28, 0, 98, 0, 176, 127, 127, 53, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 7, 130, 9, 0, 98, 0, 176, 127, 191, 53, 0, 60, 176, 66, 13, 62, 191, 20, 123, 191, 198, 66, 13, 62, 7, 130, 9, 0, 98, 0, 176, 127, 255, 53, 128, 59, 175, 249, 221, 61, 191, 20, 123, 191, 232, 26, 38, 62, 7, 130, 9, 0, 98, 0, 176, 127, 127, 53, 128, 59, 117, 8, 158, 62, 50, 219, 84, 191, 106, 131, 236, 62, 28, 145, 52, 0, 112, 0, 197, 127, 127, 53, 127, 58, 26, 246, 21, 62, 96, 131, 108, 191, 254, 4, 181, 62, 28, 145, 52, 0, 112, 0, 197, 127, 255, 52, 255, 58, 203, 181, 89, 62, 96, 131, 108, 191, 204, 233, 162, 62, 28, 145, 52, 0, 112, 0, 197, 127, 127, 53, 255, 58, 200, 181, 89, 62, 50, 219, 84, 191, 86, 102, 3, 63, 28, 145, 52, 0, 112, 0, 197, 127, 255, 52, 127, 58, 175, 249, 221, 61, 191, 20, 123, 191, 232, 26, 38, 62, 17, 135, 32, 0, 112, 0, 197, 127, 127, 53, 128, 59, 26, 246, 21, 62, 96, 131, 108, 191, 254, 4, 181, 62, 17, 135, 32, 0, 112, 0, 197, 127, 255, 52, 255, 58, 55, 230, 152, 61, 191, 20, 123, 191, 233, 144, 56, 62, 17, 135, 32, 0, 112, 0, 197, 127, 255, 52, 128, 59, 203, 181, 89, 62, 96, 131, 108, 191, 204, 233, 162, 62, 17, 135, 32, 0, 112, 0, 197, 127, 127, 53, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 5, 130, 11, 0, 112, 0, 197, 127, 63, 53, 0, 60, 175, 249, 221, 61, 191, 20, 123, 191, 232, 26, 38, 62, 5, 130, 11, 0, 112, 0, 197, 127, 127, 53, 128, 59, 55, 230, 152, 61, 191, 20, 123, 191, 233, 144, 56, 62, 5, 130, 11, 0, 112, 0, 197, 127, 255, 52, 128, 59, 61, 126, 11, 63, 186, 197, 71, 190, 45, 196, 80, 63, 57, 220, 107, 0, 112, 0, 197, 127, 127, 53, 127, 56, 246, 4, 181, 62, 16, 239, 195, 190, 127, 130, 90, 63, 57, 220, 107, 0, 112, 0, 197, 127, 255, 52, 255, 56, 83, 102, 3, 63, 16, 239, 195, 190, 82, 167, 68, 63, 57, 220, 107, 0, 112, 0, 197, 127, 127, 53, 255, 56, 70, 43, 192, 62, 186, 197, 71, 190, 251, 247, 103, 63, 57, 220, 107, 0, 112, 0, 197, 127, 255, 52, 127, 56, 22, 164, 0, 63, 186, 197, 71, 190, 32, 145, 86, 63, 57, 220, 107, 0, 127, 0, 0, 129, 95, 53, 127, 56, 224, 147, 235, 62, 186, 197, 71, 190, 20, 94, 92, 63, 57, 220, 107, 0, 127, 0, 0, 129, 63, 53, 127, 56, 147, 223, 213, 62, 186, 197, 71, 190, 8, 43, 98, 63, 57, 220, 107, 0, 127, 0, 0, 129, 31, 53, 127, 56, 83, 102, 3, 63, 16, 239, 195, 190, 82, 167, 68, 63, 52, 197, 98, 0, 112, 0, 197, 127, 127, 53, 255, 56, 190, 233, 162, 62, 217, 57, 14, 191, 81, 167, 68, 63, 52, 197, 98, 0, 112, 0, 197, 127, 255, 52, 127, 57, 93, 131, 236, 62, 217, 57, 14, 191, 203, 251, 48, 63, 52, 197, 98, 0, 112, 0, 197, 127, 127, 53, 127, 57, 246, 4, 181, 62, 16, 239, 195, 190, 127, 130, 90, 63, 52, 197, 98, 0, 112, 0, 197, 127, 255, 52, 255, 56, 93, 131, 236, 62, 217, 57, 14, 191, 203, 251, 48, 63, 46, 176, 86, 0, 112, 0, 197, 127, 127, 53, 127, 57, 211, 139, 138, 62, 243, 4, 53, 191, 122, 61, 39, 63, 46, 176, 86, 0, 112, 0, 197, 127, 255, 52, 255, 57, 79, 35, 201, 62, 243, 4, 53, 191, 30, 131, 22, 63, 46, 176, 86, 0, 112, 0, 197, 127, 127, 53, 255, 57, 190, 233, 162, 62, 217, 57, 14, 191, 81, 167, 68, 63, 46, 176, 86, 0, 112, 0, 197, 127, 255, 52, 127, 57, 79, 35, 201, 62, 243, 4, 53, 191, 30, 131, 22, 63, 38, 159, 71, 0, 112, 0, 197, 127, 127, 53, 255, 57, 200, 181, 89, 62, 50, 219, 84, 191, 86, 102, 3, 63, 38, 159, 71, 0, 112, 0, 197, 127, 255, 52, 127, 58, 117, 8, 158, 62, 50, 219, 84, 191, 106, 131, 236, 62, 38, 159, 71, 0, 112, 0, 197, 127, 127, 53, 127, 58, 211, 139, 138, 62, 243, 4, 53, 191, 122, 61, 39, 63, 38, 159, 71, 0, 112, 0, 197, 127, 255, 52, 255, 57, 190, 233, 162, 62, 217, 57, 14, 191, 81, 167, 68, 63, 32, 197, 107, 0, 121, 0, 220, 127, 255, 52, 127, 57, 215, 144, 56, 62, 16, 239, 195, 190, 253, 247, 103, 63, 32, 197, 107, 0, 121, 0, 220, 127, 127, 52, 255, 56, 202, 26, 38, 62, 217, 57, 14, 191, 44, 196, 80, 63, 32, 197, 107, 0, 121, 0, 220, 127, 127, 52, 127, 57, 246, 4, 181, 62, 16, 239, 195, 190, 127, 130, 90, 63, 32, 197, 107, 0, 121, 0, 220, 127, 255, 52, 255, 56, 190, 233, 162, 62, 217, 57, 14, 191, 81, 167, 68, 63, 28, 176, 94, 0, 121, 0, 220, 127, 255, 52, 127, 57, 173, 66, 13, 62, 243, 4, 53, 191, 139, 138, 49, 63, 28, 176, 94, 0, 121, 0, 220, 127, 127, 52, 255, 57, 211, 139, 138, 62, 243, 4, 53, 191, 122, 61, 39, 63, 28, 176, 94, 0, 121, 0, 220, 127, 255, 52, 255, 57, 202, 26, 38, 62, 217, 57, 14, 191, 44, 196, 80, 63, 28, 176, 94, 0, 121, 0, 220, 127, 127, 52, 127, 57, 200, 181, 89, 62, 50, 219, 84, 191, 86, 102, 3, 63, 23, 159, 77, 0, 121, 0, 220, 127, 255, 52, 127, 58, 173, 66, 13, 62, 243, 4, 53, 191, 139, 138, 49, 63, 23, 159, 77, 0, 121, 0, 220, 127, 127, 52, 255, 57, 171, 249, 221, 61, 50, 219, 84, 191, 68, 126, 11, 63, 23, 159, 77, 0, 121, 0, 220, 127, 127, 52, 127, 58, 211, 139, 138, 62, 243, 4, 53, 191, 122, 61, 39, 63, 23, 159, 77, 0, 121, 0, 220, 127, 255, 52, 255, 57, 200, 181, 89, 62, 50, 219, 84, 191, 86, 102, 3, 63, 17, 145, 57, 0, 121, 0, 220, 127, 255, 52, 127, 58, 54, 230, 152, 61, 96, 131, 108, 191, 85, 43, 192, 62, 17, 145, 57, 0, 121, 0, 220, 127, 127, 52, 255, 58, 26, 246, 21, 62, 96, 131, 108, 191, 254, 4, 181, 62, 17, 145, 57, 0, 121, 0, 220, 127, 255, 52, 255, 58, 171, 249, 221, 61, 50, 219, 84, 191, 68, 126, 11, 63, 17, 145, 57, 0, 121, 0, 220, 127, 127, 52, 127, 58, 55, 230, 152, 61, 191, 20, 123, 191, 233, 144, 56, 62, 10, 135, 35, 0, 121, 0, 220, 127, 255, 52, 128, 59, 54, 230, 152, 61, 96, 131, 108, 191, 85, 43, 192, 62, 10, 135, 35, 0, 121, 0, 220, 127, 127, 52, 255, 58, 14, 229, 27, 61, 191, 20, 123, 191, 43, 239, 67, 62, 10, 135, 35, 0, 121, 0, 220, 127, 127, 52, 128, 59, 26, 246, 21, 62, 96, 131, 108, 191, 254, 4, 181, 62, 10, 135, 35, 0, 121, 0, 220, 127, 255, 52, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 3, 130, 11, 0, 121, 0, 220, 127, 191, 52, 0, 60, 55, 230, 152, 61, 191, 20, 123, 191, 233, 144, 56, 62, 3, 130, 11, 0, 121, 0, 220, 127, 255, 52, 128, 59, 14, 229, 27, 61, 191, 20, 123, 191, 43, 239, 67, 62, 3, 130, 11, 0, 121, 0, 220, 127, 127, 52, 128, 59, 70, 43, 192, 62, 186, 197, 71, 190, 251, 247, 103, 63, 35, 220, 116, 0, 121, 0, 220, 127, 255, 52, 127, 56, 215, 144, 56, 62, 16, 239, 195, 190, 253, 247, 103, 63, 35, 220, 116, 0, 121, 0, 220, 127, 127, 52, 255, 56, 246, 4, 181, 62, 16, 239, 195, 190, 127, 130, 90, 63, 35, 220, 116, 0, 121, 0, 220, 127, 255, 52, 255, 56, 14, 239, 67, 62, 186, 197, 71, 190, 178, 65, 118, 63, 35, 220, 116, 0, 121, 0, 220, 127, 127, 52, 127, 56, 86, 158, 168, 62, 186, 197, 71, 190, 104, 138, 107, 63, 35, 220, 116, 0, 127, 0, 0, 129, 223, 52, 127, 56, 102, 17, 145, 62, 186, 197, 71, 190, 214, 28, 111, 63, 35, 220, 116, 0, 127, 0, 0, 129, 191, 52, 127, 56, 237, 8, 115, 62, 186, 197, 71, 190, 68, 175, 114, 63, 35, 220, 116, 0, 127, 0, 0, 129, 159, 52, 127, 56, 54, 230, 152, 61, 96, 131, 108, 191, 85, 43, 192, 62, 3, 135, 36, 0, 126, 0, 244, 127, 127, 52, 255, 58, 112, 50, 136, 49, 191, 20, 123, 191, 215, 197, 71, 62, 3, 135, 36, 0, 126, 0, 244, 127, 255, 51, 128, 59, 14, 229, 27, 61, 191, 20, 123, 191, 43, 239, 67, 62, 3, 135, 36, 0, 126, 0, 244, 127, 127, 52, 128, 59, 112, 50, 136, 49, 96, 131, 108, 191, 31, 239, 195, 62, 3, 135, 36, 0, 126, 0, 244, 127, 255, 51, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 1, 130, 12, 0, 126, 0, 244, 127, 63, 52, 0, 60, 14, 229, 27, 61, 191, 20, 123, 191, 43, 239, 67, 62, 1, 130, 12, 0, 126, 0, 244, 127, 127, 52, 128, 59, 112, 50, 136, 49, 191, 20, 123, 191, 215, 197, 71, 62, 1, 130, 12, 0, 126, 0, 244, 127, 255, 51, 128, 59, 14, 239, 67, 62, 186, 197, 71, 190, 178, 65, 118, 63, 11, 220, 120, 0, 126, 0, 244, 127, 127, 52, 127, 56, 39, 131, 136, 51, 16, 239, 195, 190, 100, 131, 108, 63, 11, 220, 120, 0, 126, 0, 244, 127, 255, 51, 255, 56, 215, 144, 56, 62, 16, 239, 195, 190, 253, 247, 103, 63, 11, 220, 120, 0, 126, 0, 244, 127, 127, 52, 255, 56, 9, 239, 195, 61, 186, 197, 71, 190, 57, 171, 120, 63, 11, 220, 120, 0, 126, 0, 244, 127, 63, 52, 127, 56, 217, 124, 183, 179, 186, 197, 71, 190, 192, 20, 123, 63, 11, 220, 120, 0, 126, 0, 244, 127, 255, 51, 127, 56, 73, 243, 18, 62, 186, 197, 71, 190, 118, 118, 119, 63, 11, 220, 120, 0, 127, 0, 0, 129, 95, 52, 127, 56, 253, 238, 67, 61, 186, 197, 71, 190, 252, 223, 121, 63, 11, 220, 120, 0, 127, 0, 0, 129, 31, 52, 127, 56, 202, 26, 38, 62, 217, 57, 14, 191, 44, 196, 80, 63, 10, 197, 111, 0, 126, 0, 244, 127, 127, 52, 127, 57, 39, 131, 136, 51, 16, 239, 195, 190, 100, 131, 108, 63, 10, 197, 111, 0, 126, 0, 244, 127, 255, 51, 255, 56, 217, 124, 183, 179, 217, 57, 14, 191, 51, 219, 84, 63, 10, 197, 111, 0, 126, 0, 244, 127, 255, 51, 127, 57, 215, 144, 56, 62, 16, 239, 195, 190, 253, 247, 103, 63, 10, 197, 111, 0, 126, 0, 244, 127, 127, 52, 255, 56, 202, 26, 38, 62, 217, 57, 14, 191, 44, 196, 80, 63, 9, 176, 97, 0, 126, 0, 244, 127, 127, 52, 127, 57, 100, 243, 221, 178, 243, 4, 53, 191, 248, 4, 53, 63, 9, 176, 97, 0, 126, 0, 244, 127, 255, 51, 255, 57, 173, 66, 13, 62, 243, 4, 53, 191, 139, 138, 49, 63, 9, 176, 97, 0, 126, 0, 244, 127, 127, 52, 255, 57, 217, 124, 183, 179, 217, 57, 14, 191, 51, 219, 84, 63, 9, 176, 97, 0, 126, 0, 244, 127, 255, 51, 127, 57, 173, 66, 13, 62, 243, 4, 53, 191, 139, 138, 49, 63, 7, 159, 80, 0, 126, 0, 244, 127, 127, 52, 255, 57, 200, 230, 59, 178, 50, 219, 84, 191, 222, 57, 14, 63, 7, 159, 80, 0, 126, 0, 244, 127, 255, 51, 127, 58, 171, 249, 221, 61, 50, 219, 84, 191, 68, 126, 11, 63, 7, 159, 80, 0, 126, 0, 244, 127, 127, 52, 127, 58, 100, 243, 221, 178, 243, 4, 53, 191, 248, 4, 53, 63, 7, 159, 80, 0, 126, 0, 244, 127, 255, 51, 255, 57, 54, 230, 152, 61, 96, 131, 108, 191, 85, 43, 192, 62, 5, 145, 59, 0, 126, 0, 244, 127, 127, 52, 255, 58, 200, 230, 59, 178, 50, 219, 84, 191, 222, 57, 14, 63, 5, 145, 59, 0, 126, 0, 244, 127, 255, 51, 127, 58, 112, 50, 136, 49, 96, 131, 108, 191, 31, 239, 195, 62, 5, 145, 59, 0, 126, 0, 244, 127, 255, 51, 255, 58, 171, 249, 221, 61, 50, 219, 84, 191, 68, 126, 11, 63, 5, 145, 59, 0, 126, 0, 244, 127, 127, 52, 127, 58, 100, 243, 221, 178, 243, 4, 53, 191, 248, 4, 53, 63, 247, 176, 97, 0, 126, 0, 12, 127, 255, 51, 255, 57, 213, 26, 38, 190, 217, 57, 14, 191, 42, 196, 80, 63, 247, 176, 97, 0, 126, 0, 12, 127, 255, 50, 127, 57, 177, 66, 13, 190, 243, 4, 53, 191, 138, 138, 49, 63, 247, 176, 97, 0, 126, 0, 12, 127, 255, 50, 255, 57, 217, 124, 183, 179, 217, 57, 14, 191, 51, 219, 84, 63, 247, 176, 97, 0, 126, 0, 12, 127, 255, 51, 127, 57, 100, 243, 221, 178, 243, 4, 53, 191, 248, 4, 53, 63, 249, 159, 80, 0, 126, 0, 12, 127, 255, 51, 255, 57, 172, 249, 221, 189, 50, 219, 84, 191, 67, 126, 11, 63, 249, 159, 80, 0, 126, 0, 12, 127, 0, 51, 127, 58, 200, 230, 59, 178, 50, 219, 84, 191, 222, 57, 14, 63, 249, 159, 80, 0, 126, 0, 12, 127, 255, 51, 127, 58, 177, 66, 13, 190, 243, 4, 53, 191, 138, 138, 49, 63, 249, 159, 80, 0, 126, 0, 12, 127, 255, 50, 255, 57, 112, 50, 136, 49, 96, 131, 108, 191, 31, 239, 195, 62, 251, 145, 59, 0, 126, 0, 12, 127, 255, 51, 255, 58, 172, 249, 221, 189, 50, 219, 84, 191, 67, 126, 11, 63, 251, 145, 59, 0, 126, 0, 12, 127, 0, 51, 127, 58, 51, 230, 152, 189, 96, 131, 108, 191, 83, 43, 192, 62, 251, 145, 59, 0, 126, 0, 12, 127, 0, 51, 255, 58, 200, 230, 59, 178, 50, 219, 84, 191, 222, 57, 14, 63, 251, 145, 59, 0, 126, 0, 12, 127, 255, 51, 127, 58, 112, 50, 136, 49, 191, 20, 123, 191, 215, 197, 71, 62, 253, 135, 36, 0, 126, 0, 12, 127, 255, 51, 128, 59, 51, 230, 152, 189, 96, 131, 108, 191, 83, 43, 192, 62, 253, 135, 36, 0, 126, 0, 12, 127, 0, 51, 255, 58, 11, 229, 27, 189, 191, 20, 123, 191, 42, 239, 67, 62, 253, 135, 36, 0, 126, 0, 12, 127, 0, 51, 128, 59, 112, 50, 136, 49, 96, 131, 108, 191, 31, 239, 195, 62, 253, 135, 36, 0, 126, 0, 12, 127, 255, 51, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 255, 130, 12, 0, 126, 0, 12, 127, 128, 51, 0, 60, 112, 50, 136, 49, 191, 20, 123, 191, 215, 197, 71, 62, 255, 130, 12, 0, 126, 0, 12, 127, 255, 51, 128, 59, 11, 229, 27, 189, 191, 20, 123, 191, 42, 239, 67, 62, 255, 130, 12, 0, 126, 0, 12, 127, 0, 51, 128, 59, 39, 131, 136, 51, 16, 239, 195, 190, 100, 131, 108, 63, 245, 220, 120, 0, 126, 0, 12, 127, 255, 51, 255, 56, 24, 239, 67, 190, 186, 197, 71, 190, 176, 65, 118, 63, 245, 220, 120, 0, 126, 0, 12, 127, 255, 50, 127, 56, 207, 144, 56, 190, 16, 239, 195, 190, 253, 247, 103, 63, 245, 220, 120, 0, 126, 0, 12, 127, 0, 51, 255, 56, 217, 124, 183, 179, 186, 197, 71, 190, 192, 20, 123, 63, 245, 220, 120, 0, 126, 0, 12, 127, 255, 51, 127, 56, 41, 239, 67, 189, 186, 197, 71, 190, 252, 223, 121, 63, 245, 220, 120, 0, 127, 0, 0, 129, 191, 51, 127, 56, 30, 239, 195, 189, 186, 197, 71, 190, 56, 171, 120, 63, 245, 220, 120, 0, 127, 0, 0, 129, 127, 51, 127, 56, 84, 243, 18, 190, 186, 197, 71, 190, 116, 118, 119, 63, 245, 220, 120, 0, 127, 0, 0, 129, 63, 51, 127, 56, 39, 131, 136, 51, 16, 239, 195, 190, 100, 131, 108, 63, 246, 197, 111, 0, 126, 0, 12, 127, 255, 51, 255, 56, 213, 26, 38, 190, 217, 57, 14, 191, 42, 196, 80, 63, 246, 197, 111, 0, 126, 0, 12, 127, 255, 50, 127, 57, 217, 124, 183, 179, 217, 57, 14, 191, 51, 219, 84, 63, 246, 197, 111, 0, 126, 0, 12, 127, 255, 51, 127, 57, 207, 144, 56, 190, 16, 239, 195, 190, 253, 247, 103, 63, 246, 197, 111, 0, 126, 0, 12, 127, 0, 51, 255, 56, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 253, 130, 11, 0, 121, 0, 36, 127, 128, 50, 0, 60, 11, 229, 27, 189, 191, 20, 123, 191, 42, 239, 67, 62, 253, 130, 11, 0, 121, 0, 36, 127, 0, 51, 128, 59, 51, 230, 152, 189, 191, 20, 123, 191, 230, 144, 56, 62, 253, 130, 11, 0, 121, 0, 36, 127, 0, 50, 128, 59, 24, 239, 67, 190, 186, 197, 71, 190, 176, 65, 118, 63, 221, 220, 116, 0, 121, 0, 36, 127, 255, 50, 127, 56, 241, 4, 181, 190, 16, 239, 195, 190, 127, 130, 90, 63, 221, 220, 116, 0, 121, 0, 36, 127, 0, 50, 255, 56, 207, 144, 56, 190, 16, 239, 195, 190, 253, 247, 103, 63, 221, 220, 116, 0, 121, 0, 36, 127, 0, 51, 255, 56, 107, 17, 145, 190, 186, 197, 71, 190, 212, 28, 111, 63, 221, 220, 116, 0, 121, 0, 36, 127, 127, 50, 127, 56, 74, 43, 192, 190, 186, 197, 71, 190, 248, 247, 103, 63, 221, 220, 116, 0, 121, 0, 36, 127, 255, 49, 127, 56, 247, 8, 115, 190, 186, 197, 71, 190, 66, 175, 114, 63, 221, 220, 116, 0, 127, 0, 0, 129, 191, 50, 127, 56, 90, 158, 168, 190, 186, 197, 71, 190, 102, 138, 107, 63, 221, 220, 116, 0, 127, 0, 0, 129, 63, 50, 127, 56, 213, 26, 38, 190, 217, 57, 14, 191, 42, 196, 80, 63, 224, 197, 107, 0, 121, 0, 36, 127, 255, 50, 127, 57, 241, 4, 181, 190, 16, 239, 195, 190, 127, 130, 90, 63, 224, 197, 107, 0, 121, 0, 36, 127, 0, 50, 255, 56, 193, 233, 162, 190, 217, 57, 14, 191, 76, 167, 68, 63, 224, 197, 107, 0, 121, 0, 36, 127, 255, 49, 127, 57, 207, 144, 56, 190, 16, 239, 195, 190, 253, 247, 103, 63, 224, 197, 107, 0, 121, 0, 36, 127, 0, 51, 255, 56, 213, 26, 38, 190, 217, 57, 14, 191, 42, 196, 80, 63, 228, 176, 94, 0, 121, 0, 36, 127, 255, 50, 127, 57, 212, 139, 138, 190, 243, 4, 53, 191, 121, 61, 39, 63, 228, 176, 94, 0, 121, 0, 36, 127, 0, 50, 255, 57, 177, 66, 13, 190, 243, 4, 53, 191, 138, 138, 49, 63, 228, 176, 94, 0, 121, 0, 36, 127, 255, 50, 255, 57, 193, 233, 162, 190, 217, 57, 14, 191, 76, 167, 68, 63, 228, 176, 94, 0, 121, 0, 36, 127, 255, 49, 127, 57, 177, 66, 13, 190, 243, 4, 53, 191, 138, 138, 49, 63, 233, 159, 77, 0, 121, 0, 36, 127, 255, 50, 255, 57, 200, 181, 89, 190, 50, 219, 84, 191, 85, 102, 3, 63, 233, 159, 77, 0, 121, 0, 36, 127, 0, 50, 127, 58, 172, 249, 221, 189, 50, 219, 84, 191, 67, 126, 11, 63, 233, 159, 77, 0, 121, 0, 36, 127, 0, 51, 127, 58, 212, 139, 138, 190, 243, 4, 53, 191, 121, 61, 39, 63, 233, 159, 77, 0, 121, 0, 36, 127, 0, 50, 255, 57, 51, 230, 152, 189, 96, 131, 108, 191, 83, 43, 192, 62, 239, 145, 57, 0, 121, 0, 36, 127, 0, 51, 255, 58, 200, 181, 89, 190, 50, 219, 84, 191, 85, 102, 3, 63, 239, 145, 57, 0, 121, 0, 36, 127, 0, 50, 127, 58, 24, 246, 21, 190, 96, 131, 108, 191, 251, 4, 181, 62, 239, 145, 57, 0, 121, 0, 36, 127, 0, 50, 255, 58, 172, 249, 221, 189, 50, 219, 84, 191, 67, 126, 11, 63, 239, 145, 57, 0, 121, 0, 36, 127, 0, 51, 127, 58, 51, 230, 152, 189, 96, 131, 108, 191, 83, 43, 192, 62, 246, 135, 35, 0, 121, 0, 36, 127, 0, 51, 255, 58, 51, 230, 152, 189, 191, 20, 123, 191, 230, 144, 56, 62, 246, 135, 35, 0, 121, 0, 36, 127, 0, 50, 128, 59, 11, 229, 27, 189, 191, 20, 123, 191, 42, 239, 67, 62, 246, 135, 35, 0, 121, 0, 36, 127, 0, 51, 128, 59, 24, 246, 21, 190, 96, 131, 108, 191, 251, 4, 181, 62, 246, 135, 35, 0, 121, 0, 36, 127, 0, 50, 255, 58, 193, 233, 162, 190, 217, 57, 14, 191, 76, 167, 68, 63, 210, 176, 86, 0, 112, 0, 59, 127, 255, 49, 127, 57, 78, 35, 201, 190, 243, 4, 53, 191, 28, 131, 22, 63, 210, 176, 86, 0, 112, 0, 59, 127, 0, 49, 255, 57, 212, 139, 138, 190, 243, 4, 53, 191, 121, 61, 39, 63, 210, 176, 86, 0, 112, 0, 59, 127, 0, 50, 255, 57, 92, 131, 236, 190, 217, 57, 14, 191, 197, 251, 48, 63, 210, 176, 86, 0, 112, 0, 59, 127, 0, 49, 127, 57, 200, 181, 89, 190, 50, 219, 84, 191, 85, 102, 3, 63, 218, 159, 71, 0, 112, 0, 59, 127, 0, 50, 127, 58, 78, 35, 201, 190, 243, 4, 53, 191, 28, 131, 22, 63, 218, 159, 71, 0, 112, 0, 59, 127, 0, 49, 255, 57, 116, 8, 158, 190, 50, 219, 84, 191, 102, 131, 236, 62, 218, 159, 71, 0, 112, 0, 59, 127, 0, 49, 127, 58, 212, 139, 138, 190, 243, 4, 53, 191, 121, 61, 39, 63, 218, 159, 71, 0, 112, 0, 59, 127, 0, 50, 255, 57, 200, 181, 89, 190, 50, 219, 84, 191, 85, 102, 3, 63, 228, 145, 52, 0, 112, 0, 59, 127, 0, 50, 127, 58, 198, 181, 89, 190, 96, 131, 108, 191, 200, 233, 162, 62, 228, 145, 52, 0, 112, 0, 59, 127, 0, 49, 255, 58, 24, 246, 21, 190, 96, 131, 108, 191, 251, 4, 181, 62, 228, 145, 52, 0, 112, 0, 59, 127, 0, 50, 255, 58, 116, 8, 158, 190, 50, 219, 84, 191, 102, 131, 236, 62, 228, 145, 52, 0, 112, 0, 59, 127, 0, 49, 127, 58, 24, 246, 21, 190, 96, 131, 108, 191, 251, 4, 181, 62, 239, 135, 32, 0, 112, 0, 59, 127, 0, 50, 255, 58, 169, 249, 221, 189, 191, 20, 123, 191, 228, 26, 38, 62, 239, 135, 32, 0, 112, 0, 59, 127, 0, 49, 128, 59, 51, 230, 152, 189, 191, 20, 123, 191, 230, 144, 56, 62, 239, 135, 32, 0, 112, 0, 59, 127, 0, 50, 128, 59, 198, 181, 89, 190, 96, 131, 108, 191, 200, 233, 162, 62, 239, 135, 32, 0, 112, 0, 59, 127, 0, 49, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 251, 130, 11, 0, 112, 0, 59, 127, 128, 49, 0, 60, 51, 230, 152, 189, 191, 20, 123, 191, 230, 144, 56, 62, 251, 130, 11, 0, 112, 0, 59, 127, 0, 50, 128, 59, 169, 249, 221, 189, 191, 20, 123, 191, 228, 26, 38, 62, 251, 130, 11, 0, 112, 0, 59, 127, 0, 49, 128, 59, 74, 43, 192, 190, 186, 197, 71, 190, 248, 247, 103, 63, 199, 220, 107, 0, 112, 0, 59, 127, 255, 49, 127, 56, 80, 102, 3, 191, 16, 239, 195, 190, 81, 167, 68, 63, 199, 220, 107, 0, 112, 0, 59, 127, 0, 49, 255, 56, 241, 4, 181, 190, 16, 239, 195, 190, 127, 130, 90, 63, 199, 220, 107, 0, 112, 0, 59, 127, 0, 50, 255, 56, 24, 164, 0, 191, 186, 197, 71, 190, 28, 145, 86, 63, 199, 220, 107, 0, 112, 0, 59, 127, 64, 49, 127, 56, 62, 126, 11, 191, 186, 197, 71, 190, 41, 196, 80, 63, 199, 220, 107, 0, 112, 0, 59, 127, 0, 49, 127, 56, 150, 223, 213, 190, 186, 197, 71, 190, 4, 43, 98, 63, 199, 220, 107, 0, 127, 0, 0, 129, 191, 49, 127, 56, 227, 147, 235, 190, 186, 197, 71, 190, 16, 94, 92, 63, 199, 220, 107, 0, 127, 0, 0, 129, 127, 49, 127, 56, 241, 4, 181, 190, 16, 239, 195, 190, 127, 130, 90, 63, 204, 197, 98, 0, 112, 0, 59, 127, 0, 50, 255, 56, 92, 131, 236, 190, 217, 57, 14, 191, 197, 251, 48, 63, 204, 197, 98, 0, 112, 0, 59, 127, 0, 49, 127, 57, 193, 233, 162, 190, 217, 57, 14, 191, 76, 167, 68, 63, 204, 197, 98, 0, 112, 0, 59, 127, 255, 49, 127, 57, 80, 102, 3, 191, 16, 239, 195, 190, 81, 167, 68, 63, 204, 197, 98, 0, 112, 0, 59, 127, 0, 49, 255, 56, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 249, 130, 9, 0, 98, 0, 80, 127, 128, 48, 0, 60, 169, 249, 221, 189, 191, 20, 123, 191, 228, 26, 38, 62, 249, 130, 9, 0, 98, 0, 80, 127, 0, 49, 128, 59, 172, 66, 13, 190, 191, 20, 123, 191, 194, 66, 13, 62, 249, 130, 9, 0, 98, 0, 80, 127, 0, 48, 128, 59, 62, 126, 11, 191, 186, 197, 71, 190, 41, 196, 80, 63, 179, 220, 93, 0, 98, 0, 80, 127, 0, 49, 127, 56, 115, 61, 39, 191, 16, 239, 195, 190, 121, 61, 39, 63, 179, 220, 93, 0, 98, 0, 80, 127, 0, 48, 255, 56, 80, 102, 3, 191, 16, 239, 195, 190, 81, 167, 68, 63, 179, 220, 93, 0, 98, 0, 80, 127, 0, 49, 255, 56, 79, 1, 21, 191, 186, 197, 71, 190, 192, 245, 72, 63, 179, 220, 93, 0, 98, 0, 80, 127, 192, 48, 127, 56, 96, 132, 30, 191, 186, 197, 71, 190, 87, 39, 65, 63, 179, 220, 93, 0, 98, 0, 80, 127, 127, 48, 127, 56, 114, 7, 40, 191, 186, 197, 71, 190, 238, 88, 57, 63, 179, 220, 93, 0, 98, 0, 80, 127, 63, 48, 127, 56, 131, 138, 49, 191, 186, 197, 71, 190, 133, 138, 49, 63, 179, 220, 93, 0, 98, 0, 80, 127, 255, 47, 127, 56, 80, 102, 3, 191, 16, 239, 195, 190, 81, 167, 68, 63, 185, 197, 86, 0, 98, 0, 80, 127, 0, 49, 255, 56, 21, 131, 22, 191, 217, 57, 14, 191, 23, 131, 22, 63, 185, 197, 86, 0, 98, 0, 80, 127, 255, 47, 127, 57, 92, 131, 236, 190, 217, 57, 14, 191, 197, 251, 48, 63, 185, 197, 86, 0, 98, 0, 80, 127, 0, 49, 127, 57, 115, 61, 39, 191, 16, 239, 195, 190, 121, 61, 39, 63, 185, 197, 86, 0, 98, 0, 80, 127, 0, 48, 255, 56, 92, 131, 236, 190, 217, 57, 14, 191, 197, 251, 48, 63, 194, 176, 76, 0, 98, 0, 80, 127, 0, 49, 127, 57, 0, 0, 0, 191, 243, 4, 53, 191, 4, 0, 0, 63, 194, 176, 76, 0, 98, 0, 80, 127, 0, 48, 255, 57, 78, 35, 201, 190, 243, 4, 53, 191, 28, 131, 22, 63, 194, 176, 76, 0, 98, 0, 80, 127, 0, 49, 255, 57, 21, 131, 22, 191, 217, 57, 14, 191, 23, 131, 22, 63, 194, 176, 76, 0, 98, 0, 80, 127, 255, 47, 127, 57, 116, 8, 158, 190, 50, 219, 84, 191, 102, 131, 236, 62, 205, 159, 62, 0, 98, 0, 80, 127, 0, 49, 127, 58, 0, 0, 0, 191, 243, 4, 53, 191, 4, 0, 0, 63, 205, 159, 62, 0, 98, 0, 80, 127, 0, 48, 255, 57, 76, 35, 201, 190, 50, 219, 84, 191, 85, 35, 201, 62, 205, 159, 62, 0, 98, 0, 80, 127, 0, 48, 128, 58, 78, 35, 201, 190, 243, 4, 53, 191, 28, 131, 22, 63, 205, 159, 62, 0, 98, 0, 80, 127, 0, 49, 255, 57, 198, 181, 89, 190, 96, 131, 108, 191, 200, 233, 162, 62, 218, 145, 46, 0, 98, 0, 80, 127, 0, 49, 255, 58, 76, 35, 201, 190, 50, 219, 84, 191, 85, 35, 201, 62, 218, 145, 46, 0, 98, 0, 80, 127, 0, 48, 128, 58, 210, 139, 138, 190, 96, 131, 108, 191, 219, 139, 138, 62, 218, 145, 46, 0, 98, 0, 80, 127, 0, 48, 255, 58, 116, 8, 158, 190, 50, 219, 84, 191, 102, 131, 236, 62, 218, 145, 46, 0, 98, 0, 80, 127, 0, 49, 127, 58, 198, 181, 89, 190, 96, 131, 108, 191, 200, 233, 162, 62, 233, 135, 28, 0, 98, 0, 80, 127, 0, 49, 255, 58, 172, 66, 13, 190, 191, 20, 123, 191, 194, 66, 13, 62, 233, 135, 28, 0, 98, 0, 80, 127, 0, 48, 128, 59, 169, 249, 221, 189, 191, 20, 123, 191, 228, 26, 38, 62, 233, 135, 28, 0, 98, 0, 80, 127, 0, 49, 128, 59, 210, 139, 138, 190, 96, 131, 108, 191, 219, 139, 138, 62, 233, 135, 28, 0, 98, 0, 80, 127, 0, 48, 255, 58, 0, 0, 0, 191, 243, 4, 53, 191, 4, 0, 0, 63, 194, 159, 51, 0, 80, 0, 98, 127, 0, 48, 255, 57, 92, 131, 236, 190, 50, 219, 84, 191, 124, 8, 158, 62, 194, 159, 51, 0, 80, 0, 98, 127, 0, 46, 128, 58, 76, 35, 201, 190, 50, 219, 84, 191, 85, 35, 201, 62, 194, 159, 51, 0, 80, 0, 98, 127, 0, 48, 128, 58, 23, 131, 22, 191, 243, 4, 53, 191, 86, 35, 201, 62, 194, 159, 51, 0, 80, 0, 98, 127, 0, 46, 0, 58, 210, 139, 138, 190, 96, 131, 108, 191, 219, 139, 138, 62, 210, 145, 38, 0, 80, 0, 98, 127, 0, 48, 255, 58, 92, 131, 236, 190, 50, 219, 84, 191, 124, 8, 158, 62, 210, 145, 38, 0, 80, 0, 98, 127, 0, 46, 128, 58, 190, 233, 162, 190, 96, 131, 108, 191, 214, 181, 89, 62, 210, 145, 38, 0, 80, 0, 98, 127, 0, 46, 255, 58, 76, 35, 201, 190, 50, 219, 84, 191, 85, 35, 201, 62, 210, 145, 38, 0, 80, 0, 98, 127, 0, 48, 128, 58, 172, 66, 13, 190, 191, 20, 123, 191, 194, 66, 13, 62, 228, 135, 23, 0, 80, 0, 98, 127, 0, 48, 128, 59, 190, 233, 162, 190, 96, 131, 108, 191, 214, 181, 89, 62, 228, 135, 23, 0, 80, 0, 98, 127, 0, 46, 255, 58, 206, 26, 38, 190, 191, 20, 123, 191, 211, 249, 221, 61, 228, 135, 23, 0, 80, 0, 98, 127, 0, 46, 128, 59, 210, 139, 138, 190, 96, 131, 108, 191, 219, 139, 138, 62, 228, 135, 23, 0, 80, 0, 98, 127, 0, 48, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 247, 130, 7, 0, 80, 0, 98, 127, 0, 47, 0, 60, 172, 66, 13, 190, 191, 20, 123, 191, 194, 66, 13, 62, 247, 130, 7, 0, 80, 0, 98, 127, 0, 48, 128, 59, 206, 26, 38, 190, 191, 20, 123, 191, 211, 249, 221, 61, 247, 130, 7, 0, 80, 0, 98, 127, 0, 46, 128, 59, 131, 138, 49, 191, 186, 197, 71, 190, 133, 138, 49, 63, 163, 220, 77, 0, 80, 0, 98, 127, 255, 47, 127, 56, 75, 167, 68, 191, 16, 239, 195, 190, 86, 102, 3, 63, 163, 220, 77, 0, 80, 0, 98, 127, 0, 46, 255, 56, 115, 61, 39, 191, 16, 239, 195, 190, 121, 61, 39, 63, 163, 220, 77, 0, 80, 0, 98, 127, 0, 48, 255, 56, 188, 245, 72, 191, 186, 197, 71, 190, 80, 1, 21, 63, 163, 220, 77, 0, 80, 0, 98, 127, 127, 46, 127, 56, 37, 196, 80, 191, 186, 197, 71, 190, 62, 126, 11, 63, 163, 220, 77, 0, 80, 0, 98, 127, 0, 46, 127, 56, 84, 39, 65, 191, 186, 197, 71, 190, 98, 132, 30, 63, 163, 220, 77, 0, 127, 0, 0, 129, 255, 46, 127, 56, 236, 88, 57, 191, 186, 197, 71, 190, 116, 7, 40, 63, 163, 220, 77, 0, 127, 0, 0, 129, 127, 47, 127, 56, 21, 131, 22, 191, 217, 57, 14, 191, 23, 131, 22, 63, 170, 197, 71, 0, 80, 0, 98, 127, 255, 47, 127, 57, 75, 167, 68, 191, 16, 239, 195, 190, 86, 102, 3, 63, 170, 197, 71, 0, 80, 0, 98, 127, 0, 46, 255, 56, 194, 251, 48, 191, 217, 57, 14, 191, 95, 131, 236, 62, 170, 197, 71, 0, 80, 0, 98, 127, 0, 46, 128, 57, 115, 61, 39, 191, 16, 239, 195, 190, 121, 61, 39, 63, 170, 197, 71, 0, 80, 0, 98, 127, 0, 48, 255, 56, 0, 0, 0, 191, 243, 4, 53, 191, 4, 0, 0, 63, 180, 176, 62, 0, 80, 0, 98, 127, 0, 48, 255, 57, 194, 251, 48, 191, 217, 57, 14, 191, 95, 131, 236, 62, 180, 176, 62, 0, 80, 0, 98, 127, 0, 46, 128, 57, 23, 131, 22, 191, 243, 4, 53, 191, 86, 35, 201, 62, 180, 176, 62, 0, 80, 0, 98, 127, 0, 46, 0, 58, 21, 131, 22, 191, 217, 57, 14, 191, 23, 131, 22, 63, 180, 176, 62, 0, 80, 0, 98, 127, 255, 47, 127, 57, 37, 196, 80, 191, 186, 197, 71, 190, 62, 126, 11, 63, 149, 220, 57, 0, 59, 0, 112, 127, 0, 46, 127, 56, 121, 130, 90, 191, 16, 239, 195, 190, 254, 4, 181, 62, 149, 220, 57, 0, 59, 0, 112, 127, 0, 44, 255, 56, 75, 167, 68, 191, 16, 239, 195, 190, 86, 102, 3, 63, 149, 220, 57, 0, 59, 0, 112, 127, 0, 46, 255, 56, 243, 247, 103, 191, 186, 197, 71, 190, 73, 43, 192, 62, 149, 220, 57, 0, 59, 0, 112, 127, 0, 44, 127, 56, 24, 145, 86, 191, 186, 197, 71, 190, 24, 164, 0, 63, 149, 220, 57, 0, 127, 0, 0, 129, 128, 45, 127, 56, 12, 94, 92, 191, 186, 197, 71, 190, 226, 147, 235, 62, 149, 220, 57, 0, 127, 0, 0, 129, 0, 45, 127, 56, 0, 43, 98, 191, 186, 197, 71, 190, 150, 223, 213, 62, 149, 220, 57, 0, 127, 0, 0, 129, 128, 44, 127, 56, 194, 251, 48, 191, 217, 57, 14, 191, 95, 131, 236, 62, 158, 197, 52, 0, 59, 0, 112, 127, 0, 46, 128, 57, 121, 130, 90, 191, 16, 239, 195, 190, 254, 4, 181, 62, 158, 197, 52, 0, 59, 0, 112, 127, 0, 44, 255, 56, 71, 167, 68, 191, 217, 57, 14, 191, 194, 233, 162, 62, 158, 197, 52, 0, 59, 0, 112, 127, 0, 44, 128, 57, 75, 167, 68, 191, 16, 239, 195, 190, 86, 102, 3, 63, 158, 197, 52, 0, 59, 0, 112, 127, 0, 46, 255, 56, 194, 251, 48, 191, 217, 57, 14, 191, 95, 131, 236, 62, 170, 176, 46, 0, 59, 0, 112, 127, 0, 46, 128, 57, 116, 61, 39, 191, 243, 4, 53, 191, 219, 139, 138, 62, 170, 176, 46, 0, 59, 0, 112, 127, 0, 44, 0, 58, 23, 131, 22, 191, 243, 4, 53, 191, 86, 35, 201, 62, 170, 176, 46, 0, 59, 0, 112, 127, 0, 46, 0, 58, 71, 167, 68, 191, 217, 57, 14, 191, 194, 233, 162, 62, 170, 176, 46, 0, 59, 0, 112, 127, 0, 44, 128, 57, 92, 131, 236, 190, 50, 219, 84, 191, 124, 8, 158, 62, 185, 159, 38, 0, 59, 0, 112, 127, 0, 46, 128, 58, 116, 61, 39, 191, 243, 4, 53, 191, 219, 139, 138, 62, 185, 159, 38, 0, 59, 0, 112, 127, 0, 44, 0, 58, 79, 102, 3, 191, 50, 219, 84, 191, 216, 181, 89, 62, 185, 159, 38, 0, 59, 0, 112, 127, 0, 44, 128, 58, 23, 131, 22, 191, 243, 4, 53, 191, 86, 35, 201, 62, 185, 159, 38, 0, 59, 0, 112, 127, 0, 46, 0, 58, 92, 131, 236, 190, 50, 219, 84, 191, 124, 8, 158, 62, 204, 145, 28, 0, 59, 0, 112, 127, 0, 46, 128, 58, 239, 4, 181, 190, 96, 131, 108, 191, 39, 246, 21, 62, 204, 145, 28, 0, 59, 0, 112, 127, 0, 44, 0, 59, 190, 233, 162, 190, 96, 131, 108, 191, 214, 181, 89, 62, 204, 145, 28, 0, 59, 0, 112, 127, 0, 46, 255, 58, 79, 102, 3, 191, 50, 219, 84, 191, 216, 181, 89, 62, 204, 145, 28, 0, 59, 0, 112, 127, 0, 44, 128, 58, 206, 26, 38, 190, 191, 20, 123, 191, 211, 249, 221, 61, 224, 135, 17, 0, 59, 0, 112, 127, 0, 46, 128, 59, 239, 4, 181, 190, 96, 131, 108, 191, 39, 246, 21, 62, 224, 135, 17, 0, 59, 0, 112, 127, 0, 44, 0, 59, 206, 144, 56, 190, 191, 20, 123, 191, 91, 230, 152, 61, 224, 135, 17, 0, 59, 0, 112, 127, 0, 44, 128, 59, 190, 233, 162, 190, 96, 131, 108, 191, 214, 181, 89, 62, 224, 135, 17, 0, 59, 0, 112, 127, 0, 46, 255, 58, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 245, 130, 5, 0, 59, 0, 112, 127, 0, 45, 0, 60, 206, 26, 38, 190, 191, 20, 123, 191, 211, 249, 221, 61, 245, 130, 5, 0, 59, 0, 112, 127, 0, 46, 128, 59, 206, 144, 56, 190, 191, 20, 123, 191, 91, 230, 152, 61, 245, 130, 5, 0, 59, 0, 112, 127, 0, 44, 128, 59, 116, 61, 39, 191, 243, 4, 53, 191, 219, 139, 138, 62, 179, 159, 23, 0, 36, 0, 121, 127, 0, 44, 0, 58, 61, 126, 11, 191, 50, 219, 84, 191, 206, 249, 221, 61, 179, 159, 23, 0, 36, 0, 121, 127, 0, 40, 128, 58, 79, 102, 3, 191, 50, 219, 84, 191, 216, 181, 89, 62, 179, 159, 23, 0, 36, 0, 121, 127, 0, 44, 128, 58, 133, 138, 49, 191, 243, 4, 53, 191, 188, 66, 13, 62, 179, 159, 23, 0, 36, 0, 121, 127, 0, 40, 0, 58, 239, 4, 181, 190, 96, 131, 108, 191, 39, 246, 21, 62, 199, 145, 17, 0, 36, 0, 121, 127, 0, 44, 0, 59, 61, 126, 11, 191, 50, 219, 84, 191, 206, 249, 221, 61, 199, 145, 17, 0, 36, 0, 121, 127, 0, 40, 128, 58, 69, 43, 192, 190, 96, 131, 108, 191, 83, 230, 152, 61, 199, 145, 17, 0, 36, 0, 121, 127, 0, 40, 0, 59, 79, 102, 3, 191, 50, 219, 84, 191, 216, 181, 89, 62, 199, 145, 17, 0, 36, 0, 121, 127, 0, 44, 128, 58, 239, 4, 181, 190, 96, 131, 108, 191, 39, 246, 21, 62, 221, 135, 10, 0, 36, 0, 121, 127, 0, 44, 0, 59, 16, 239, 67, 190, 191, 20, 123, 191, 93, 229, 27, 61, 221, 135, 10, 0, 36, 0, 121, 127, 0, 40, 128, 59, 206, 144, 56, 190, 191, 20, 123, 191, 91, 230, 152, 61, 221, 135, 10, 0, 36, 0, 121, 127, 0, 44, 128, 59, 69, 43, 192, 190, 96, 131, 108, 191, 83, 230, 152, 61, 221, 135, 10, 0, 36, 0, 121, 127, 0, 40, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 245, 130, 3, 0, 36, 0, 121, 127, 0, 42, 0, 60, 206, 144, 56, 190, 191, 20, 123, 191, 91, 230, 152, 61, 245, 130, 3, 0, 36, 0, 121, 127, 0, 44, 128, 59, 16, 239, 67, 190, 191, 20, 123, 191, 93, 229, 27, 61, 245, 130, 3, 0, 36, 0, 121, 127, 0, 40, 128, 59, 243, 247, 103, 191, 186, 197, 71, 190, 73, 43, 192, 62, 140, 220, 35, 0, 36, 0, 121, 127, 0, 44, 127, 56, 247, 247, 103, 191, 16, 239, 195, 190, 232, 144, 56, 62, 140, 220, 35, 0, 36, 0, 121, 127, 0, 40, 255, 56, 121, 130, 90, 191, 16, 239, 195, 190, 254, 4, 181, 62, 140, 220, 35, 0, 36, 0, 121, 127, 0, 44, 255, 56, 169, 65, 118, 191, 186, 197, 71, 190, 23, 239, 67, 62, 140, 220, 35, 0, 36, 0, 121, 129, 255, 39, 128, 56, 96, 138, 107, 191, 186, 197, 71, 190, 90, 158, 168, 62, 140, 220, 35, 0, 36, 0, 121, 129, 255, 42, 127, 56, 206, 28, 111, 191, 186, 197, 71, 190, 106, 17, 145, 62, 140, 220, 35, 0, 36, 0, 121, 129, 255, 41, 128, 56, 60, 175, 114, 191, 186, 197, 71, 190, 246, 8, 115, 62, 140, 220, 35, 0, 127, 0, 0, 129, 255, 40, 128, 56, 71, 167, 68, 191, 217, 57, 14, 191, 194, 233, 162, 62, 149, 197, 32, 0, 36, 0, 121, 127, 0, 44, 128, 57, 247, 247, 103, 191, 16, 239, 195, 190, 232, 144, 56, 62, 149, 197, 32, 0, 36, 0, 121, 127, 0, 40, 255, 56, 35, 196, 80, 191, 217, 57, 14, 191, 214, 26, 38, 62, 149, 197, 32, 0, 36, 0, 121, 127, 0, 40, 128, 57, 121, 130, 90, 191, 16, 239, 195, 190, 254, 4, 181, 62, 149, 197, 32, 0, 36, 0, 121, 127, 0, 44, 255, 56, 71, 167, 68, 191, 217, 57, 14, 191, 194, 233, 162, 62, 162, 176, 28, 0, 36, 0, 121, 127, 0, 44, 128, 57, 133, 138, 49, 191, 243, 4, 53, 191, 188, 66, 13, 62, 162, 176, 28, 0, 36, 0, 121, 127, 0, 40, 0, 58, 116, 61, 39, 191, 243, 4, 53, 191, 219, 139, 138, 62, 162, 176, 28, 0, 36, 0, 121, 127, 0, 44, 0, 58, 35, 196, 80, 191, 217, 57, 14, 191, 214, 26, 38, 62, 162, 176, 28, 0, 36, 0, 121, 127, 0, 40, 128, 57, 169, 65, 118, 191, 186, 197, 71, 190, 23, 239, 67, 62, 136, 220, 11, 0, 12, 0, 126, 127, 255, 39, 128, 56, 93, 131, 108, 191, 16, 239, 195, 190, 128, 92, 171, 52, 136, 220, 11, 0, 12, 0, 126, 127, 0, 0, 255, 56, 247, 247, 103, 191, 16, 239, 195, 190, 232, 144, 56, 62, 136, 220, 11, 0, 12, 0, 126, 127, 0, 40, 255, 56, 183, 20, 123, 191, 186, 197, 71, 190, 0, 114, 205, 51, 136, 220, 11, 0, 12, 0, 126, 127, 0, 0, 128, 56, 108, 118, 119, 191, 186, 197, 71, 190, 83, 243, 18, 62, 136, 220, 11, 0, 127, 0, 0, 129, 255, 37, 128, 56, 48, 171, 120, 191, 186, 197, 71, 190, 29, 239, 195, 61, 136, 220, 11, 0, 127, 0, 0, 129, 255, 35, 128, 56, 244, 223, 121, 191, 186, 197, 71, 190, 42, 239, 67, 61, 136, 220, 11, 0, 127, 0, 0, 129, 255, 31, 128, 56, 35, 196, 80, 191, 217, 57, 14, 191, 214, 26, 38, 62, 145, 197, 10, 0, 12, 0, 126, 127, 0, 40, 128, 57, 93, 131, 108, 191, 16, 239, 195, 190, 128, 92, 171, 52, 145, 197, 10, 0, 12, 0, 126, 127, 0, 0, 255, 56, 43, 219, 84, 191, 217, 57, 14, 191, 0, 185, 22, 52, 145, 197, 10, 0, 12, 0, 126, 127, 0, 0, 128, 57, 247, 247, 103, 191, 16, 239, 195, 190, 232, 144, 56, 62, 145, 197, 10, 0, 12, 0, 126, 127, 0, 40, 255, 56, 35, 196, 80, 191, 217, 57, 14, 191, 214, 26, 38, 62, 159, 176, 9, 0, 12, 0, 126, 127, 0, 40, 128, 57, 242, 4, 53, 191, 243, 4, 53, 191, 0, 185, 70, 52, 159, 176, 9, 0, 12, 0, 126, 127, 0, 0, 0, 58, 133, 138, 49, 191, 243, 4, 53, 191, 188, 66, 13, 62, 159, 176, 9, 0, 12, 0, 126, 127, 0, 40, 0, 58, 43, 219, 84, 191, 217, 57, 14, 191, 0, 185, 22, 52, 159, 176, 9, 0, 12, 0, 126, 127, 0, 0, 128, 57, 133, 138, 49, 191, 243, 4, 53, 191, 188, 66, 13, 62, 176, 159, 7, 0, 12, 0, 126, 127, 0, 40, 0, 58, 215, 57, 14, 191, 50, 219, 84, 191, 128, 92, 139, 52, 176, 159, 7, 0, 12, 0, 126, 127, 0, 0, 128, 58, 61, 126, 11, 191, 50, 219, 84, 191, 206, 249, 221, 61, 176, 159, 7, 0, 12, 0, 126, 127, 0, 40, 128, 58, 242, 4, 53, 191, 243, 4, 53, 191, 0, 185, 70, 52, 176, 159, 7, 0, 12, 0, 126, 127, 0, 0, 0, 58, 61, 126, 11, 191, 50, 219, 84, 191, 206, 249, 221, 61, 197, 145, 5, 0, 12, 0, 126, 127, 0, 40, 128, 58, 15, 239, 195, 190, 96, 131, 108, 191, 128, 92, 135, 52, 197, 145, 5, 0, 12, 0, 126, 127, 0, 0, 0, 59, 69, 43, 192, 190, 96, 131, 108, 191, 83, 230, 152, 61, 197, 145, 5, 0, 12, 0, 126, 127, 0, 40, 0, 59, 215, 57, 14, 191, 50, 219, 84, 191, 128, 92, 139, 52, 197, 145, 5, 0, 12, 0, 126, 127, 0, 0, 128, 58, 16, 239, 67, 190, 191, 20, 123, 191, 93, 229, 27, 61, 220, 135, 3, 0, 12, 0, 126, 127, 0, 40, 128, 59, 15, 239, 195, 190, 96, 131, 108, 191, 128, 92, 135, 52, 220, 135, 3, 0, 12, 0, 126, 127, 0, 0, 0, 59, 189, 197, 71, 190, 191, 20, 123, 191, 128, 92, 169, 52, 220, 135, 3, 0, 12, 0, 126, 127, 0, 0, 128, 59, 69, 43, 192, 190, 96, 131, 108, 191, 83, 230, 152, 61, 220, 135, 3, 0, 12, 0, 126, 127, 0, 40, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 244, 130, 1, 0, 12, 0, 126, 127, 0, 36, 0, 60, 16, 239, 67, 190, 191, 20, 123, 191, 93, 229, 27, 61, 244, 130, 1, 0, 12, 0, 126, 127, 0, 40, 128, 59, 189, 197, 71, 190, 191, 20, 123, 191, 128, 92, 169, 52, 244, 130, 1, 0, 12, 0, 126, 127, 0, 0, 128, 59, 215, 57, 14, 191, 50, 219, 84, 191, 128, 92, 139, 52, 197, 145, 251, 0, 244, 0, 126, 127, 0, 60, 128, 58, 68, 43, 192, 190, 96, 131, 108, 191, 14, 230, 152, 189, 197, 145, 251, 0, 244, 0, 126, 127, 192, 59, 0, 59, 15, 239, 195, 190, 96, 131, 108, 191, 128, 92, 135, 52, 197, 145, 251, 0, 244, 0, 126, 127, 0, 60, 0, 59, 60, 126, 11, 191, 50, 219, 84, 191, 134, 249, 221, 189, 197, 145, 251, 0, 244, 0, 126, 127, 192, 59, 128, 58, 15, 239, 195, 190, 96, 131, 108, 191, 128, 92, 135, 52, 220, 135, 253, 0, 244, 0, 126, 127, 0, 60, 0, 59, 16, 239, 67, 190, 191, 20, 123, 191, 179, 228, 27, 189, 220, 135, 253, 0, 244, 0, 126, 127, 192, 59, 128, 59, 189, 197, 71, 190, 191, 20, 123, 191, 128, 92, 169, 52, 220, 135, 253, 0, 244, 0, 126, 127, 0, 60, 128, 59, 68, 43, 192, 190, 96, 131, 108, 191, 14, 230, 152, 189, 220, 135, 253, 0, 244, 0, 126, 127, 192, 59, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 244, 130, 255, 0, 244, 0, 126, 127, 224, 59, 0, 60, 189, 197, 71, 190, 191, 20, 123, 191, 128, 92, 169, 52, 244, 130, 255, 0, 244, 0, 126, 127, 0, 60, 128, 59, 16, 239, 67, 190, 191, 20, 123, 191, 179, 228, 27, 189, 244, 130, 255, 0, 244, 0, 126, 127, 192, 59, 128, 59, 183, 20, 123, 191, 186, 197, 71, 190, 0, 114, 205, 51, 136, 220, 245, 0, 244, 0, 126, 127, 0, 60, 128, 56, 246, 247, 103, 191, 16, 239, 195, 190, 189, 144, 56, 190, 136, 220, 245, 0, 244, 0, 126, 127, 192, 59, 0, 57, 93, 131, 108, 191, 16, 239, 195, 190, 128, 92, 171, 52, 136, 220, 245, 0, 244, 0, 126, 127, 0, 60, 255, 56, 166, 65, 118, 191, 186, 197, 71, 190, 9, 239, 67, 190, 136, 220, 245, 0, 244, 0, 126, 127, 192, 59, 128, 56, 242, 223, 121, 191, 186, 197, 71, 190, 246, 238, 67, 189, 136, 220, 245, 0, 127, 0, 0, 127, 240, 59, 128, 56, 46, 171, 120, 191, 186, 197, 71, 190, 3, 239, 195, 189, 136, 220, 245, 0, 127, 0, 0, 127, 224, 59, 128, 56, 106, 118, 119, 191, 186, 197, 71, 190, 69, 243, 18, 190, 136, 220, 245, 0, 127, 0, 0, 127, 208, 59, 128, 56, 43, 219, 84, 191, 217, 57, 14, 191, 0, 185, 22, 52, 145, 197, 246, 0, 244, 0, 126, 127, 0, 60, 128, 57, 246, 247, 103, 191, 16, 239, 195, 190, 189, 144, 56, 190, 145, 197, 246, 0, 244, 0, 126, 127, 192, 59, 0, 57, 33, 196, 80, 191, 217, 57, 14, 191, 195, 26, 38, 190, 145, 197, 246, 0, 244, 0, 126, 127, 192, 59, 128, 57, 93, 131, 108, 191, 16, 239, 195, 190, 128, 92, 171, 52, 145, 197, 246, 0, 244, 0, 126, 127, 0, 60, 255, 56, 43, 219, 84, 191, 217, 57, 14, 191, 0, 185, 22, 52, 159, 176, 247, 0, 244, 0, 126, 127, 0, 60, 128, 57, 132, 138, 49, 191, 243, 4, 53, 191, 162, 66, 13, 190, 159, 176, 247, 0, 244, 0, 126, 127, 192, 59, 0, 58, 242, 4, 53, 191, 243, 4, 53, 191, 0, 185, 70, 52, 159, 176, 247, 0, 244, 0, 126, 127, 0, 60, 0, 58, 33, 196, 80, 191, 217, 57, 14, 191, 195, 26, 38, 190, 159, 176, 247, 0, 244, 0, 126, 127, 192, 59, 128, 57, 242, 4, 53, 191, 243, 4, 53, 191, 0, 185, 70, 52, 176, 159, 249, 0, 244, 0, 126, 127, 0, 60, 0, 58, 60, 126, 11, 191, 50, 219, 84, 191, 134, 249, 221, 189, 176, 159, 249, 0, 244, 0, 126, 127, 192, 59, 128, 58, 215, 57, 14, 191, 50, 219, 84, 191, 128, 92, 139, 52, 176, 159, 249, 0, 244, 0, 126, 127, 0, 60, 128, 58, 132, 138, 49, 191, 243, 4, 53, 191, 162, 66, 13, 190, 176, 159, 249, 0, 244, 0, 126, 127, 192, 59, 0, 58, 33, 196, 80, 191, 217, 57, 14, 191, 195, 26, 38, 190, 149, 197, 224, 0, 220, 0, 121, 127, 192, 59, 128, 57, 120, 130, 90, 191, 16, 239, 195, 190, 232, 4, 181, 190, 149, 197, 224, 0, 220, 0, 121, 127, 128, 59, 0, 57, 68, 167, 68, 191, 217, 57, 14, 191, 183, 233, 162, 190, 149, 197, 224, 0, 220, 0, 121, 127, 128, 59, 128, 57, 246, 247, 103, 191, 16, 239, 195, 190, 189, 144, 56, 190, 149, 197, 224, 0, 220, 0, 121, 127, 192, 59, 0, 57, 33, 196, 80, 191, 217, 57, 14, 191, 195, 26, 38, 190, 162, 176, 228, 0, 220, 0, 121, 127, 192, 59, 128, 57, 114, 61, 39, 191, 243, 4, 53, 191, 205, 139, 138, 190, 162, 176, 228, 0, 220, 0, 121, 127, 128, 59, 0, 58, 132, 138, 49, 191, 243, 4, 53, 191, 162, 66, 13, 190, 162, 176, 228, 0, 220, 0, 121, 127, 192, 59, 0, 58, 68, 167, 68, 191, 217, 57, 14, 191, 183, 233, 162, 190, 162, 176, 228, 0, 220, 0, 121, 127, 128, 59, 128, 57, 60, 126, 11, 191, 50, 219, 84, 191, 134, 249, 221, 189, 179, 159, 233, 0, 220, 0, 121, 127, 192, 59, 128, 58, 114, 61, 39, 191, 243, 4, 53, 191, 205, 139, 138, 190, 179, 159, 233, 0, 220, 0, 121, 127, 128, 59, 0, 58, 77, 102, 3, 191, 50, 219, 84, 191, 180, 181, 89, 190, 179, 159, 233, 0, 220, 0, 121, 127, 128, 59, 128, 58, 132, 138, 49, 191, 243, 4, 53, 191, 162, 66, 13, 190, 179, 159, 233, 0, 220, 0, 121, 127, 192, 59, 0, 58, 60, 126, 11, 191, 50, 219, 84, 191, 134, 249, 221, 189, 199, 145, 239, 0, 220, 0, 121, 127, 192, 59, 128, 58, 237, 4, 181, 190, 96, 131, 108, 191, 4, 246, 21, 190, 199, 145, 239, 0, 220, 0, 121, 127, 128, 59, 0, 59, 68, 43, 192, 190, 96, 131, 108, 191, 14, 230, 152, 189, 199, 145, 239, 0, 220, 0, 121, 127, 192, 59, 0, 59, 77, 102, 3, 191, 50, 219, 84, 191, 180, 181, 89, 190, 199, 145, 239, 0, 220, 0, 121, 127, 128, 59, 128, 58, 16, 239, 67, 190, 191, 20, 123, 191, 179, 228, 27, 189, 221, 135, 246, 0, 220, 0, 121, 127, 192, 59, 128, 59, 237, 4, 181, 190, 96, 131, 108, 191, 4, 246, 21, 190, 221, 135, 246, 0, 220, 0, 121, 127, 128, 59, 0, 59, 206, 144, 56, 190, 191, 20, 123, 191, 6, 230, 152, 189, 221, 135, 246, 0, 220, 0, 121, 127, 128, 59, 128, 59, 68, 43, 192, 190, 96, 131, 108, 191, 14, 230, 152, 189, 221, 135, 246, 0, 220, 0, 121, 127, 192, 59, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 245, 130, 253, 0, 220, 0, 121, 127, 160, 59, 0, 60, 16, 239, 67, 190, 191, 20, 123, 191, 179, 228, 27, 189, 245, 130, 253, 0, 220, 0, 121, 127, 192, 59, 128, 59, 206, 144, 56, 190, 191, 20, 123, 191, 6, 230, 152, 189, 245, 130, 253, 0, 220, 0, 121, 127, 128, 59, 128, 59, 166, 65, 118, 191, 186, 197, 71, 190, 9, 239, 67, 190, 140, 220, 221, 0, 220, 0, 121, 127, 192, 59, 128, 56, 120, 130, 90, 191, 16, 239, 195, 190, 232, 4, 181, 190, 140, 220, 221, 0, 220, 0, 121, 127, 128, 59, 0, 57, 246, 247, 103, 191, 16, 239, 195, 190, 189, 144, 56, 190, 140, 220, 221, 0, 220, 0, 121, 127, 192, 59, 0, 57, 56, 175, 114, 191, 186, 197, 71, 190, 230, 8, 115, 190, 140, 220, 221, 0, 220, 0, 121, 127, 176, 59, 128, 56, 238, 247, 103, 191, 186, 197, 71, 190, 64, 43, 192, 190, 140, 220, 221, 0, 220, 0, 121, 127, 128, 59, 128, 56, 202, 28, 111, 191, 186, 197, 71, 190, 98, 17, 145, 190, 140, 220, 221, 0, 127, 0, 0, 127, 160, 59, 128, 56, 92, 138, 107, 191, 186, 197, 71, 190, 81, 158, 168, 190, 140, 220, 221, 0, 127, 0, 0, 127, 144, 59, 128, 56, 237, 4, 181, 190, 96, 131, 108, 191, 4, 246, 21, 190, 224, 135, 239, 0, 197, 0, 112, 127, 128, 59, 0, 59, 205, 26, 38, 190, 191, 20, 123, 191, 123, 249, 221, 189, 224, 135, 239, 0, 197, 0, 112, 127, 64, 59, 128, 59, 206, 144, 56, 190, 191, 20, 123, 191, 6, 230, 152, 189, 224, 135, 239, 0, 197, 0, 112, 127, 128, 59, 128, 59, 186, 233, 162, 190, 96, 131, 108, 191, 177, 181, 89, 190, 224, 135, 239, 0, 197, 0, 112, 127, 64, 59, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 245, 130, 251, 0, 197, 0, 112, 127, 96, 59, 0, 60, 206, 144, 56, 190, 191, 20, 123, 191, 6, 230, 152, 189, 245, 130, 251, 0, 197, 0, 112, 127, 128, 59, 128, 59, 205, 26, 38, 190, 191, 20, 123, 191, 123, 249, 221, 189, 245, 130, 251, 0, 197, 0, 112, 127, 64, 59, 128, 59, 238, 247, 103, 191, 186, 197, 71, 190, 64, 43, 192, 190, 149, 220, 199, 0, 197, 0, 112, 127, 128, 59, 128, 56, 74, 167, 68, 191, 16, 239, 195, 190, 75, 102, 3, 191, 149, 220, 199, 0, 197, 0, 112, 127, 64, 59, 0, 57, 120, 130, 90, 191, 16, 239, 195, 190, 232, 4, 181, 190, 149, 220, 199, 0, 197, 0, 112, 127, 128, 59, 0, 57, 250, 42, 98, 191, 186, 197, 71, 190, 140, 223, 213, 190, 149, 220, 199, 0, 197, 0, 112, 127, 112, 59, 128, 56, 18, 145, 86, 191, 186, 197, 71, 190, 18, 164, 0, 191, 149, 220, 199, 0, 197, 0, 112, 127, 80, 59, 128, 56, 31, 196, 80, 191, 186, 197, 71, 190, 56, 126, 11, 191, 149, 220, 199, 0, 197, 0, 112, 127, 64, 59, 128, 56, 6, 94, 92, 191, 186, 197, 71, 190, 216, 147, 235, 190, 149, 220, 199, 0, 127, 0, 0, 127, 96, 59, 128, 56, 120, 130, 90, 191, 16, 239, 195, 190, 232, 4, 181, 190, 158, 197, 204, 0, 197, 0, 112, 127, 128, 59, 0, 57, 189, 251, 48, 191, 217, 57, 14, 191, 82, 131, 236, 190, 158, 197, 204, 0, 197, 0, 112, 127, 64, 59, 128, 57, 68, 167, 68, 191, 217, 57, 14, 191, 183, 233, 162, 190, 158, 197, 204, 0, 197, 0, 112, 127, 128, 59, 128, 57, 74, 167, 68, 191, 16, 239, 195, 190, 75, 102, 3, 191, 158, 197, 204, 0, 197, 0, 112, 127, 64, 59, 0, 57, 68, 167, 68, 191, 217, 57, 14, 191, 183, 233, 162, 190, 170, 176, 210, 0, 197, 0, 112, 127, 128, 59, 128, 57, 21, 131, 22, 191, 243, 4, 53, 191, 70, 35, 201, 190, 170, 176, 210, 0, 197, 0, 112, 127, 64, 59, 0, 58, 114, 61, 39, 191, 243, 4, 53, 191, 205, 139, 138, 190, 170, 176, 210, 0, 197, 0, 112, 127, 128, 59, 0, 58, 189, 251, 48, 191, 217, 57, 14, 191, 82, 131, 236, 190, 170, 176, 210, 0, 197, 0, 112, 127, 64, 59, 128, 57, 114, 61, 39, 191, 243, 4, 53, 191, 205, 139, 138, 190, 185, 159, 218, 0, 197, 0, 112, 127, 128, 59, 0, 58, 86, 131, 236, 190, 50, 219, 84, 191, 105, 8, 158, 190, 185, 159, 218, 0, 197, 0, 112, 127, 64, 59, 128, 58, 77, 102, 3, 191, 50, 219, 84, 191, 180, 181, 89, 190, 185, 159, 218, 0, 197, 0, 112, 127, 128, 59, 128, 58, 21, 131, 22, 191, 243, 4, 53, 191, 70, 35, 201, 190, 185, 159, 218, 0, 197, 0, 112, 127, 64, 59, 0, 58, 237, 4, 181, 190, 96, 131, 108, 191, 4, 246, 21, 190, 204, 145, 228, 0, 197, 0, 112, 127, 128, 59, 0, 59, 86, 131, 236, 190, 50, 219, 84, 191, 105, 8, 158, 190, 204, 145, 228, 0, 197, 0, 112, 127, 64, 59, 128, 58, 186, 233, 162, 190, 96, 131, 108, 191, 177, 181, 89, 190, 204, 145, 228, 0, 197, 0, 112, 127, 64, 59, 0, 59, 77, 102, 3, 191, 50, 219, 84, 191, 180, 181, 89, 190, 204, 145, 228, 0, 197, 0, 112, 127, 128, 59, 128, 58, 74, 167, 68, 191, 16, 239, 195, 190, 75, 102, 3, 191, 170, 197, 185, 0, 176, 0, 98, 127, 64, 59, 0, 57, 15, 131, 22, 191, 217, 57, 14, 191, 16, 131, 22, 191, 170, 197, 185, 0, 176, 0, 98, 127, 0, 59, 128, 57, 189, 251, 48, 191, 217, 57, 14, 191, 82, 131, 236, 190, 170, 197, 185, 0, 176, 0, 98, 127, 64, 59, 128, 57, 115, 61, 39, 191, 16, 239, 195, 190, 110, 61, 39, 191, 170, 197, 185, 0, 176, 0, 98, 127, 0, 59, 0, 57, 189, 251, 48, 191, 217, 57, 14, 191, 82, 131, 236, 190, 180, 176, 194, 0, 176, 0, 98, 127, 64, 59, 128, 57, 251, 255, 255, 190, 243, 4, 53, 191, 247, 255, 255, 190, 180, 176, 194, 0, 176, 0, 98, 127, 0, 59, 0, 58, 21, 131, 22, 191, 243, 4, 53, 191, 70, 35, 201, 190, 180, 176, 194, 0, 176, 0, 98, 127, 64, 59, 0, 58, 15, 131, 22, 191, 217, 57, 14, 191, 16, 131, 22, 191, 180, 176, 194, 0, 176, 0, 98, 127, 0, 59, 128, 57, 86, 131, 236, 190, 50, 219, 84, 191, 105, 8, 158, 190, 194, 159, 205, 0, 176, 0, 98, 127, 64, 59, 128, 58, 251, 255, 255, 190, 243, 4, 53, 191, 247, 255, 255, 190, 194, 159, 205, 0, 176, 0, 98, 127, 0, 59, 0, 58, 70, 35, 201, 190, 50, 219, 84, 191, 64, 35, 201, 190, 194, 159, 205, 0, 176, 0, 98, 127, 0, 59, 128, 58, 21, 131, 22, 191, 243, 4, 53, 191, 70, 35, 201, 190, 194, 159, 205, 0, 176, 0, 98, 127, 64, 59, 0, 58, 86, 131, 236, 190, 50, 219, 84, 191, 105, 8, 158, 190, 210, 145, 218, 0, 176, 0, 98, 127, 64, 59, 128, 58, 206, 139, 138, 190, 96, 131, 108, 191, 198, 139, 138, 190, 210, 145, 218, 0, 176, 0, 98, 127, 0, 59, 0, 59, 186, 233, 162, 190, 96, 131, 108, 191, 177, 181, 89, 190, 210, 145, 218, 0, 176, 0, 98, 127, 64, 59, 0, 59, 70, 35, 201, 190, 50, 219, 84, 191, 64, 35, 201, 190, 210, 145, 218, 0, 176, 0, 98, 127, 0, 59, 128, 58, 205, 26, 38, 190, 191, 20, 123, 191, 123, 249, 221, 189, 228, 135, 233, 0, 176, 0, 98, 127, 64, 59, 128, 59, 206, 139, 138, 190, 96, 131, 108, 191, 198, 139, 138, 190, 228, 135, 233, 0, 176, 0, 98, 127, 0, 59, 0, 59, 171, 66, 13, 190, 191, 20, 123, 191, 150, 66, 13, 190, 228, 135, 233, 0, 176, 0, 98, 127, 0, 59, 128, 59, 186, 233, 162, 190, 96, 131, 108, 191, 177, 181, 89, 190, 228, 135, 233, 0, 176, 0, 98, 127, 64, 59, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 247, 130, 249, 0, 176, 0, 98, 127, 32, 59, 0, 60, 205, 26, 38, 190, 191, 20, 123, 191, 123, 249, 221, 189, 247, 130, 249, 0, 176, 0, 98, 127, 64, 59, 128, 59, 171, 66, 13, 190, 191, 20, 123, 191, 150, 66, 13, 190, 247, 130, 249, 0, 176, 0, 98, 127, 0, 59, 128, 59, 31, 196, 80, 191, 186, 197, 71, 190, 56, 126, 11, 191, 163, 220, 179, 0, 176, 0, 98, 127, 64, 59, 128, 56, 115, 61, 39, 191, 16, 239, 195, 190, 110, 61, 39, 191, 163, 220, 179, 0, 176, 0, 98, 127, 0, 59, 0, 57, 74, 167, 68, 191, 16, 239, 195, 190, 75, 102, 3, 191, 163, 220, 179, 0, 176, 0, 98, 127, 64, 59, 0, 57, 182, 245, 72, 191, 186, 197, 71, 190, 73, 1, 21, 191, 163, 220, 179, 0, 176, 0, 98, 127, 48, 59, 128, 56, 124, 138, 49, 191, 186, 197, 71, 190, 124, 138, 49, 191, 163, 220, 179, 0, 176, 0, 98, 127, 0, 59, 128, 56, 78, 39, 65, 191, 186, 197, 71, 190, 90, 132, 30, 191, 163, 220, 179, 0, 127, 0, 0, 127, 32, 59, 128, 56, 229, 88, 57, 191, 186, 197, 71, 190, 107, 7, 40, 191, 163, 220, 179, 0, 127, 0, 0, 127, 16, 59, 128, 56, 206, 139, 138, 190, 96, 131, 108, 191, 198, 139, 138, 190, 233, 135, 228, 0, 158, 0, 80, 127, 0, 59, 0, 59, 166, 249, 221, 189, 191, 20, 123, 191, 184, 26, 38, 190, 233, 135, 228, 0, 158, 0, 80, 127, 192, 58, 128, 59, 171, 66, 13, 190, 191, 20, 123, 191, 150, 66, 13, 190, 233, 135, 228, 0, 158, 0, 80, 127, 0, 59, 128, 59, 191, 181, 89, 190, 96, 131, 108, 191, 178, 233, 162, 190, 233, 135, 228, 0, 158, 0, 80, 127, 192, 58, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 249, 130, 247, 0, 158, 0, 80, 127, 224, 58, 0, 60, 171, 66, 13, 190, 191, 20, 123, 191, 150, 66, 13, 190, 249, 130, 247, 0, 158, 0, 80, 127, 0, 59, 128, 59, 166, 249, 221, 189, 191, 20, 123, 191, 184, 26, 38, 190, 249, 130, 247, 0, 158, 0, 80, 127, 192, 58, 128, 59, 124, 138, 49, 191, 186, 197, 71, 190, 124, 138, 49, 191, 179, 220, 163, 0, 158, 0, 80, 127, 0, 59, 128, 56, 79, 102, 3, 191, 16, 239, 195, 190, 69, 167, 68, 191, 179, 220, 163, 0, 158, 0, 80, 127, 192, 58, 0, 57, 115, 61, 39, 191, 16, 239, 195, 190, 110, 61, 39, 191, 179, 220, 163, 0, 158, 0, 80, 127, 0, 59, 0, 57, 54, 126, 11, 191, 186, 197, 71, 190, 29, 196, 80, 191, 179, 220, 163, 0, 158, 0, 80, 127, 192, 58, 128, 56, 106, 7, 40, 191, 186, 197, 71, 190, 228, 88, 57, 191, 179, 220, 163, 0, 127, 0, 0, 127, 240, 58, 128, 56, 89, 132, 30, 191, 186, 197, 71, 190, 76, 39, 65, 191, 179, 220, 163, 0, 127, 0, 0, 127, 224, 58, 128, 56, 72, 1, 21, 191, 186, 197, 71, 190, 180, 245, 72, 191, 179, 220, 163, 0, 127, 0, 0, 127, 208, 58, 128, 56, 115, 61, 39, 191, 16, 239, 195, 190, 110, 61, 39, 191, 185, 197, 170, 0, 158, 0, 80, 127, 0, 59, 0, 57, 79, 131, 236, 190, 217, 57, 14, 191, 188, 251, 48, 191, 185, 197, 170, 0, 158, 0, 80, 127, 192, 58, 128, 57, 15, 131, 22, 191, 217, 57, 14, 191, 16, 131, 22, 191, 185, 197, 170, 0, 158, 0, 80, 127, 0, 59, 128, 57, 79, 102, 3, 191, 16, 239, 195, 190, 69, 167, 68, 191, 185, 197, 170, 0, 158, 0, 80, 127, 192, 58, 0, 57, 251, 255, 255, 190, 243, 4, 53, 191, 247, 255, 255, 190, 194, 176, 180, 0, 158, 0, 80, 127, 0, 59, 0, 58, 79, 131, 236, 190, 217, 57, 14, 191, 188, 251, 48, 191, 194, 176, 180, 0, 158, 0, 80, 127, 192, 58, 128, 57, 72, 35, 201, 190, 243, 4, 53, 191, 18, 131, 22, 191, 194, 176, 180, 0, 158, 0, 80, 127, 192, 58, 0, 58, 15, 131, 22, 191, 217, 57, 14, 191, 16, 131, 22, 191, 194, 176, 180, 0, 158, 0, 80, 127, 0, 59, 128, 57, 251, 255, 255, 190, 243, 4, 53, 191, 247, 255, 255, 190, 205, 159, 194, 0, 158, 0, 80, 127, 0, 59, 0, 58, 110, 8, 158, 190, 50, 219, 84, 191, 79, 131, 236, 190, 205, 159, 194, 0, 158, 0, 80, 127, 192, 58, 128, 58, 70, 35, 201, 190, 50, 219, 84, 191, 64, 35, 201, 190, 205, 159, 194, 0, 158, 0, 80, 127, 0, 59, 128, 58, 72, 35, 201, 190, 243, 4, 53, 191, 18, 131, 22, 191, 205, 159, 194, 0, 158, 0, 80, 127, 192, 58, 0, 58, 70, 35, 201, 190, 50, 219, 84, 191, 64, 35, 201, 190, 218, 145, 210, 0, 158, 0, 80, 127, 0, 59, 128, 58, 191, 181, 89, 190, 96, 131, 108, 191, 178, 233, 162, 190, 218, 145, 210, 0, 158, 0, 80, 127, 192, 58, 0, 59, 206, 139, 138, 190, 96, 131, 108, 191, 198, 139, 138, 190, 218, 145, 210, 0, 158, 0, 80, 127, 0, 59, 0, 59, 110, 8, 158, 190, 50, 219, 84, 191, 79, 131, 236, 190, 218, 145, 210, 0, 158, 0, 80, 127, 192, 58, 128, 58, 79, 131, 236, 190, 217, 57, 14, 191, 188, 251, 48, 191, 210, 176, 170, 0, 144, 0, 59, 127, 192, 58, 128, 57, 206, 139, 138, 190, 243, 4, 53, 191, 111, 61, 39, 191, 210, 176, 170, 0, 144, 0, 59, 127, 128, 58, 0, 58, 72, 35, 201, 190, 243, 4, 53, 191, 18, 131, 22, 191, 210, 176, 170, 0, 144, 0, 59, 127, 192, 58, 0, 58, 178, 233, 162, 190, 217, 57, 14, 191, 65, 167, 68, 191, 210, 176, 170, 0, 144, 0, 59, 127, 128, 58, 128, 57, 110, 8, 158, 190, 50, 219, 84, 191, 79, 131, 236, 190, 218, 159, 185, 0, 144, 0, 59, 127, 192, 58, 128, 58, 206, 139, 138, 190, 243, 4, 53, 191, 111, 61, 39, 191, 218, 159, 185, 0, 144, 0, 59, 127, 128, 58, 0, 58, 188, 181, 89, 190, 50, 219, 84, 191, 72, 102, 3, 191, 218, 159, 185, 0, 144, 0, 59, 127, 128, 58, 128, 58, 72, 35, 201, 190, 243, 4, 53, 191, 18, 131, 22, 191, 218, 159, 185, 0, 144, 0, 59, 127, 192, 58, 0, 58, 110, 8, 158, 190, 50, 219, 84, 191, 79, 131, 236, 190, 228, 145, 204, 0, 144, 0, 59, 127, 192, 58, 128, 58, 17, 246, 21, 190, 96, 131, 108, 191, 228, 4, 181, 190, 228, 145, 204, 0, 144, 0, 59, 127, 128, 58, 0, 59, 191, 181, 89, 190, 96, 131, 108, 191, 178, 233, 162, 190, 228, 145, 204, 0, 144, 0, 59, 127, 192, 58, 0, 59, 188, 181, 89, 190, 50, 219, 84, 191, 72, 102, 3, 191, 228, 145, 204, 0, 144, 0, 59, 127, 128, 58, 128, 58, 166, 249, 221, 189, 191, 20, 123, 191, 184, 26, 38, 190, 239, 135, 224, 0, 144, 0, 59, 127, 192, 58, 128, 59, 17, 246, 21, 190, 96, 131, 108, 191, 228, 4, 181, 190, 239, 135, 224, 0, 144, 0, 59, 127, 128, 58, 0, 59, 47, 230, 152, 189, 191, 20, 123, 191, 185, 144, 56, 190, 239, 135, 224, 0, 144, 0, 59, 127, 128, 58, 128, 59, 191, 181, 89, 190, 96, 131, 108, 191, 178, 233, 162, 190, 239, 135, 224, 0, 144, 0, 59, 127, 192, 58, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 251, 130, 245, 0, 144, 0, 59, 127, 160, 58, 0, 60, 166, 249, 221, 189, 191, 20, 123, 191, 184, 26, 38, 190, 251, 130, 245, 0, 144, 0, 59, 127, 192, 58, 128, 59, 47, 230, 152, 189, 191, 20, 123, 191, 185, 144, 56, 190, 251, 130, 245, 0, 144, 0, 59, 127, 128, 58, 128, 59, 54, 126, 11, 191, 186, 197, 71, 190, 29, 196, 80, 191, 199, 220, 149, 0, 144, 0, 59, 127, 192, 58, 128, 56, 240, 4, 181, 190, 16, 239, 195, 190, 114, 130, 90, 191, 199, 220, 149, 0, 144, 0, 59, 127, 128, 58, 0, 57, 79, 102, 3, 191, 16, 239, 195, 190, 69, 167, 68, 191, 199, 220, 149, 0, 144, 0, 59, 127, 192, 58, 0, 57, 134, 223, 213, 190, 186, 197, 71, 190, 247, 42, 98, 191, 199, 220, 149, 0, 144, 0, 59, 127, 144, 58, 128, 56, 58, 43, 192, 190, 186, 197, 71, 190, 234, 247, 103, 191, 199, 220, 149, 0, 144, 0, 59, 127, 128, 58, 128, 56, 211, 147, 235, 190, 186, 197, 71, 190, 4, 94, 92, 191, 199, 220, 149, 0, 127, 0, 0, 127, 160, 58, 128, 56, 16, 164, 0, 191, 186, 197, 71, 190, 16, 145, 86, 191, 199, 220, 149, 0, 127, 0, 0, 127, 176, 58, 128, 56, 79, 102, 3, 191, 16, 239, 195, 190, 69, 167, 68, 191, 204, 197, 158, 0, 144, 0, 59, 127, 192, 58, 0, 57, 178, 233, 162, 190, 217, 57, 14, 191, 65, 167, 68, 191, 204, 197, 158, 0, 144, 0, 59, 127, 128, 58, 128, 57, 79, 131, 236, 190, 217, 57, 14, 191, 188, 251, 48, 191, 204, 197, 158, 0, 144, 0, 59, 127, 192, 58, 128, 57, 240, 4, 181, 190, 16, 239, 195, 190, 114, 130, 90, 191, 204, 197, 158, 0, 144, 0, 59, 127, 128, 58, 0, 57, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 253, 130, 245, 0, 135, 0, 36, 127, 96, 58, 0, 60, 47, 230, 152, 189, 191, 20, 123, 191, 185, 144, 56, 190, 253, 130, 245, 0, 135, 0, 36, 127, 128, 58, 128, 59, 4, 229, 27, 189, 191, 20, 123, 191, 251, 238, 67, 190, 253, 130, 245, 0, 135, 0, 36, 127, 64, 58, 128, 59, 58, 43, 192, 190, 186, 197, 71, 190, 234, 247, 103, 191, 221, 220, 140, 0, 135, 0, 36, 127, 128, 58, 128, 56, 205, 144, 56, 190, 16, 239, 195, 190, 240, 247, 103, 191, 221, 220, 140, 0, 135, 0, 36, 127, 64, 58, 0, 57, 240, 4, 181, 190, 16, 239, 195, 190, 114, 130, 90, 191, 221, 220, 140, 0, 135, 0, 36, 127, 128, 58, 0, 57, 218, 8, 115, 190, 186, 197, 71, 190, 50, 175, 114, 191, 221, 220, 140, 0, 135, 0, 36, 127, 79, 58, 128, 56, 252, 238, 67, 190, 186, 197, 71, 190, 160, 65, 118, 191, 221, 220, 140, 0, 135, 0, 36, 127, 63, 58, 128, 56, 92, 17, 145, 190, 186, 197, 71, 190, 197, 28, 111, 191, 221, 220, 140, 0, 127, 0, 0, 127, 95, 58, 128, 56, 75, 158, 168, 190, 186, 197, 71, 190, 88, 138, 107, 191, 221, 220, 140, 0, 127, 0, 0, 127, 112, 58, 128, 56, 178, 233, 162, 190, 217, 57, 14, 191, 65, 167, 68, 191, 224, 197, 149, 0, 135, 0, 36, 127, 128, 58, 128, 57, 205, 144, 56, 190, 16, 239, 195, 190, 240, 247, 103, 191, 224, 197, 149, 0, 135, 0, 36, 127, 64, 58, 0, 57, 185, 26, 38, 190, 217, 57, 14, 191, 28, 196, 80, 191, 224, 197, 149, 0, 135, 0, 36, 127, 63, 58, 128, 57, 240, 4, 181, 190, 16, 239, 195, 190, 114, 130, 90, 191, 224, 197, 149, 0, 135, 0, 36, 127, 128, 58, 0, 57, 178, 233, 162, 190, 217, 57, 14, 191, 65, 167, 68, 191, 228, 176, 162, 0, 135, 0, 36, 127, 128, 58, 128, 57, 164, 66, 13, 190, 243, 4, 53, 191, 127, 138, 49, 191, 228, 176, 162, 0, 135, 0, 36, 127, 64, 58, 0, 58, 206, 139, 138, 190, 243, 4, 53, 191, 111, 61, 39, 191, 228, 176, 162, 0, 135, 0, 36, 127, 128, 58, 0, 58, 185, 26, 38, 190, 217, 57, 14, 191, 28, 196, 80, 191, 228, 176, 162, 0, 135, 0, 36, 127, 63, 58, 128, 57, 206, 139, 138, 190, 243, 4, 53, 191, 111, 61, 39, 191, 233, 159, 179, 0, 135, 0, 36, 127, 128, 58, 0, 58, 150, 249, 221, 189, 50, 219, 84, 191, 53, 126, 11, 191, 233, 159, 179, 0, 135, 0, 36, 127, 64, 58, 128, 58, 188, 181, 89, 190, 50, 219, 84, 191, 72, 102, 3, 191, 233, 159, 179, 0, 135, 0, 36, 127, 128, 58, 128, 58, 164, 66, 13, 190, 243, 4, 53, 191, 127, 138, 49, 191, 233, 159, 179, 0, 135, 0, 36, 127, 64, 58, 0, 58, 17, 246, 21, 190, 96, 131, 108, 191, 228, 4, 181, 190, 239, 145, 199, 0, 135, 0, 36, 127, 128, 58, 0, 59, 150, 249, 221, 189, 50, 219, 84, 191, 53, 126, 11, 191, 239, 145, 199, 0, 135, 0, 36, 127, 64, 58, 128, 58, 38, 230, 152, 189, 96, 131, 108, 191, 58, 43, 192, 190, 239, 145, 199, 0, 135, 0, 36, 127, 64, 58, 0, 59, 188, 181, 89, 190, 50, 219, 84, 191, 72, 102, 3, 191, 239, 145, 199, 0, 135, 0, 36, 127, 128, 58, 128, 58, 47, 230, 152, 189, 191, 20, 123, 191, 185, 144, 56, 190, 246, 135, 221, 0, 135, 0, 36, 127, 128, 58, 128, 59, 38, 230, 152, 189, 96, 131, 108, 191, 58, 43, 192, 190, 246, 135, 221, 0, 135, 0, 36, 127, 64, 58, 0, 59, 4, 229, 27, 189, 191, 20, 123, 191, 251, 238, 67, 190, 246, 135, 221, 0, 135, 0, 36, 127, 64, 58, 128, 59, 17, 246, 21, 190, 96, 131, 108, 191, 228, 4, 181, 190, 246, 135, 221, 0, 135, 0, 36, 127, 128, 58, 0, 59, 185, 26, 38, 190, 217, 57, 14, 191, 28, 196, 80, 191, 247, 176, 159, 0, 130, 0, 12, 127, 63, 58, 128, 57, 148, 65, 36, 52, 243, 4, 53, 191, 236, 4, 53, 191, 247, 176, 159, 0, 130, 0, 12, 127, 255, 57, 0, 58, 164, 66, 13, 190, 243, 4, 53, 191, 127, 138, 49, 191, 247, 176, 159, 0, 130, 0, 12, 127, 64, 58, 0, 58, 202, 32, 146, 52, 217, 57, 14, 191, 35, 219, 84, 191, 247, 176, 159, 0, 130, 0, 12, 127, 255, 57, 128, 57, 164, 66, 13, 190, 243, 4, 53, 191, 127, 138, 49, 191, 249, 159, 176, 0, 130, 0, 12, 127, 64, 58, 0, 58, 0, 0, 0, 0, 50, 219, 84, 191, 217, 57, 14, 191, 249, 159, 176, 0, 130, 0, 12, 127, 0, 58, 128, 58, 150, 249, 221, 189, 50, 219, 84, 191, 53, 126, 11, 191, 249, 159, 176, 0, 130, 0, 12, 127, 64, 58, 128, 58, 148, 65, 36, 52, 243, 4, 53, 191, 236, 4, 53, 191, 249, 159, 176, 0, 130, 0, 12, 127, 255, 57, 0, 58, 38, 230, 152, 189, 96, 131, 108, 191, 58, 43, 192, 190, 251, 145, 197, 0, 130, 0, 12, 127, 64, 58, 0, 59, 0, 0, 0, 0, 50, 219, 84, 191, 217, 57, 14, 191, 251, 145, 197, 0, 130, 0, 12, 127, 0, 58, 128, 58, 39, 131, 168, 51, 96, 131, 108, 191, 4, 239, 195, 190, 251, 145, 197, 0, 130, 0, 12, 127, 255, 57, 0, 59, 150, 249, 221, 189, 50, 219, 84, 191, 53, 126, 11, 191, 251, 145, 197, 0, 130, 0, 12, 127, 64, 58, 128, 58, 38, 230, 152, 189, 96, 131, 108, 191, 58, 43, 192, 190, 253, 135, 220, 0, 130, 0, 12, 127, 64, 58, 0, 59, 156, 12, 130, 50, 191, 20, 123, 191, 167, 197, 71, 190, 253, 135, 220, 0, 130, 0, 12, 127, 0, 58, 128, 59, 4, 229, 27, 189, 191, 20, 123, 191, 251, 238, 67, 190, 253, 135, 220, 0, 130, 0, 12, 127, 64, 58, 128, 59, 39, 131, 168, 51, 96, 131, 108, 191, 4, 239, 195, 190, 253, 135, 220, 0, 130, 0, 12, 127, 255, 57, 0, 59, 0, 0, 0, 0, 0, 0, 128, 191, 76, 239, 174, 52, 255, 130, 244, 0, 130, 0, 12, 127, 32, 58, 0, 60, 4, 229, 27, 189, 191, 20, 123, 191, 251, 238, 67, 190, 255, 130, 244, 0, 130, 0, 12, 127, 64, 58, 128, 59, 156, 12, 130, 50, 191, 20, 123, 191, 167, 197, 71, 190, 255, 130, 244, 0, 130, 0, 12, 127, 0, 58, 128, 59, 205, 144, 56, 190, 16, 239, 195, 190, 240, 247, 103, 191, 245, 220, 136, 0, 130, 0, 12, 127, 64, 58, 0, 57, 0, 0, 0, 0, 186, 197, 71, 190, 191, 20, 123, 191, 245, 220, 136, 0, 130, 0, 12, 127, 0, 58, 127, 56, 39, 131, 136, 51, 16, 239, 195, 190, 86, 131, 108, 191, 245, 220, 136, 0, 130, 0, 12, 127, 0, 58, 0, 57, 252, 238, 67, 190, 186, 197, 71, 190, 160, 65, 118, 191, 245, 220, 136, 0, 130, 0, 12, 127, 63, 58, 128, 56, 61, 243, 18, 190, 186, 197, 71, 190, 104, 118, 119, 191, 245, 220, 136, 0, 130, 0, 12, 127, 47, 58, 128, 56, 252, 238, 195, 189, 186, 197, 71, 190, 48, 171, 120, 191, 245, 220, 136, 0, 127, 0, 0, 127, 31, 58, 128, 56, 252, 238, 67, 189, 186, 197, 71, 190, 248, 223, 121, 191, 245, 220, 136, 0, 130, 0, 12, 127, 16, 58, 127, 56, 205, 144, 56, 190, 16, 239, 195, 190, 240, 247, 103, 191, 246, 197, 145, 0, 130, 0, 12, 127, 64, 58, 0, 57, 202, 32, 146, 52, 217, 57, 14, 191, 35, 219, 84, 191, 246, 197, 145, 0, 130, 0, 12, 127, 255, 57, 128, 57, 185, 26, 38, 190, 217, 57, 14, 191, 28, 196, 80, 191, 246, 197, 145, 0, 130, 0, 12, 127, 63, 58, 128, 57, 39, 131, 136, 51, 16, 239, 195, 190, 86, 131, 108, 191, 246, 197, 145, 0, 130, 0, 12, 127, 0, 58, 0, 57, 197, 228, 68, 61, 211, 122, 1, 63, 72, 25, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 95, 56, 26, 239, 195, 61, 186, 197, 71, 190, 55, 171, 120, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 127, 56, 26, 239, 67, 61, 186, 197, 71, 190, 251, 223, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 127, 56, 197, 228, 196, 61, 211, 122, 1, 63, 1, 227, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 95, 56, 0, 0, 0, 0, 211, 122, 1, 63, 144, 79, 124, 191, 12, 0, 130, 0, 130, 0, 244, 127, 0, 58, 95, 56, 26, 239, 67, 61, 186, 197, 71, 190, 251, 223, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 127, 56, 0, 0, 0, 0, 186, 197, 71, 190, 191, 20, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 0, 58, 127, 56, 197, 228, 68, 61, 211, 122, 1, 63, 72, 25, 123, 191, 12, 0, 130, 0, 130, 0, 244, 127, 240, 57, 95, 56, 148, 171, 19, 62, 211, 122, 1, 63, 186, 172, 120, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 95, 56, 26, 239, 67, 62, 186, 197, 71, 190, 175, 65, 118, 191, 12, 0, 130, 0, 130, 0, 244, 127, 192, 57, 127, 56, 84, 243, 18, 62, 186, 197, 71, 190, 115, 118, 119, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 127, 56, 197, 228, 68, 62, 211, 122, 1, 63, 114, 118, 119, 191, 12, 0, 130, 0, 130, 0, 244, 127, 192, 57, 95, 56, 197, 228, 196, 61, 211, 122, 1, 63, 1, 227, 121, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 95, 56, 84, 243, 18, 62, 186, 197, 71, 190, 115, 118, 119, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 127, 56, 26, 239, 195, 61, 186, 197, 71, 190, 55, 171, 120, 191, 12, 0, 130, 0, 130, 0, 244, 127, 224, 57, 127, 56, 148, 171, 19, 62, 211, 122, 1, 63, 186, 172, 120, 191, 12, 0, 130, 0, 130, 0, 244, 127, 208, 57, 95, 56, 180, 57, 116, 62, 211, 122, 1, 63, 138, 223, 115, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 95, 56, 110, 17, 145, 62, 186, 197, 71, 190, 210, 28, 111, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 127, 56, 251, 8, 115, 62, 186, 197, 71, 190, 64, 175, 114, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 127, 56, 82, 199, 145, 62, 211, 122, 1, 63, 161, 72, 112, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 95, 56, 197, 228, 68, 62, 211, 122, 1, 63, 114, 118, 119, 191, 36, 0, 135, 0, 135, 0, 220, 127, 192, 57, 95, 56, 251, 8, 115, 62, 186, 197, 71, 190, 64, 175, 114, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 127, 56, 26, 239, 67, 62, 186, 197, 71, 190, 175, 65, 118, 191, 36, 0, 135, 0, 135, 0, 220, 127, 192, 57, 127, 56, 180, 57, 116, 62, 211, 122, 1, 63, 138, 223, 115, 191, 36, 0, 135, 0, 135, 0, 220, 127, 176, 57, 95, 56, 202, 113, 169, 62, 211, 122, 1, 63, 184, 177, 108, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 95, 56, 78, 43, 192, 62, 186, 197, 71, 190, 246, 247, 103, 191, 36, 0, 135, 0, 135, 0, 220, 127, 128, 57, 127, 56, 94, 158, 168, 62, 186, 197, 71, 190, 100, 138, 107, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 127, 56, 65, 28, 193, 62, 211, 122, 1, 63, 208, 26, 105, 191, 36, 0, 135, 0, 135, 0, 220, 127, 128, 57, 95, 56, 82, 199, 145, 62, 211, 122, 1, 63, 161, 72, 112, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 95, 56, 94, 158, 168, 62, 186, 197, 71, 190, 100, 138, 107, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 127, 56, 110, 17, 145, 62, 186, 197, 71, 190, 210, 28, 111, 191, 36, 0, 135, 0, 135, 0, 220, 127, 160, 57, 127, 56, 202, 113, 169, 62, 211, 122, 1, 63, 184, 177, 108, 191, 36, 0, 135, 0, 135, 0, 220, 127, 144, 57, 95, 56, 196, 235, 214, 62, 211, 122, 1, 63, 150, 70, 99, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 95, 56, 232, 147, 235, 62, 186, 197, 71, 190, 14, 94, 92, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 127, 56, 155, 223, 213, 62, 186, 197, 71, 190, 2, 43, 98, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 127, 56, 72, 187, 236, 62, 211, 122, 1, 63, 92, 114, 93, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 95, 56, 65, 28, 193, 62, 211, 122, 1, 63, 208, 26, 105, 191, 59, 0, 144, 0, 144, 0, 197, 127, 128, 57, 95, 56, 155, 223, 213, 62, 186, 197, 71, 190, 2, 43, 98, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 127, 56, 78, 43, 192, 62, 186, 197, 71, 190, 246, 247, 103, 191, 59, 0, 144, 0, 144, 0, 197, 127, 128, 57, 127, 56, 196, 235, 214, 62, 211, 122, 1, 63, 150, 70, 99, 191, 59, 0, 144, 0, 144, 0, 197, 127, 112, 57, 95, 56, 102, 69, 1, 63, 211, 122, 1, 63, 34, 158, 87, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 95, 56, 65, 126, 11, 63, 186, 197, 71, 190, 38, 196, 80, 191, 59, 0, 144, 0, 144, 0, 197, 127, 64, 57, 127, 56, 26, 164, 0, 63, 186, 197, 71, 190, 26, 145, 86, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 127, 56, 40, 45, 12, 63, 211, 122, 1, 63, 232, 201, 81, 191, 59, 0, 144, 0, 144, 0, 197, 127, 64, 57, 95, 56, 72, 187, 236, 62, 211, 122, 1, 63, 92, 114, 93, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 95, 56, 26, 164, 0, 63, 186, 197, 71, 190, 26, 145, 86, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 127, 56, 232, 147, 235, 62, 186, 197, 71, 190, 14, 94, 92, 191, 59, 0, 144, 0, 144, 0, 197, 127, 96, 57, 127, 56, 102, 69, 1, 63, 211, 122, 1, 63, 34, 158, 87, 191, 59, 0, 144, 0, 144, 0, 197, 127, 80, 57, 95, 56, 39, 188, 21, 63, 211, 122, 1, 63, 182, 241, 73, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 95, 56, 100, 132, 30, 63, 186, 197, 71, 190, 84, 39, 65, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 127, 56, 82, 1, 21, 63, 186, 197, 71, 190, 189, 245, 72, 191, 80, 0, 158, 0, 158, 0, 176, 127, 48, 57, 127, 56, 38, 75, 31, 63, 211, 122, 1, 63, 131, 25, 66, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 95, 56, 40, 45, 12, 63, 211, 122, 1, 63, 232, 201, 81, 191, 80, 0, 158, 0, 158, 0, 176, 127, 64, 57, 95, 56, 82, 1, 21, 63, 186, 197, 71, 190, 189, 245, 72, 191, 80, 0, 158, 0, 158, 0, 176, 127, 48, 57, 127, 56, 65, 126, 11, 63, 186, 197, 71, 190, 38, 196, 80, 191, 80, 0, 158, 0, 158, 0, 176, 127, 64, 57, 127, 56, 39, 188, 21, 63, 211, 122, 1, 63, 182, 241, 73, 191, 80, 0, 158, 0, 158, 0, 176, 127, 47, 57, 95, 56, 37, 218, 40, 63, 211, 122, 1, 63, 80, 65, 58, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 95, 56, 136, 138, 49, 63, 186, 197, 71, 190, 130, 138, 49, 191, 80, 0, 158, 0, 158, 0, 176, 127, 255, 56, 127, 56, 118, 7, 40, 63, 186, 197, 71, 190, 235, 88, 57, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 127, 56, 36, 105, 50, 63, 211, 122, 1, 63, 30, 105, 50, 191, 80, 0, 158, 0, 158, 0, 176, 127, 255, 56, 95, 56, 38, 75, 31, 63, 211, 122, 1, 63, 131, 25, 66, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 95, 56, 118, 7, 40, 63, 186, 197, 71, 190, 235, 88, 57, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 127, 56, 100, 132, 30, 63, 186, 197, 71, 190, 84, 39, 65, 191, 80, 0, 158, 0, 158, 0, 176, 127, 31, 57, 127, 56, 37, 218, 40, 63, 211, 122, 1, 63, 80, 65, 58, 191, 80, 0, 158, 0, 158, 0, 176, 127, 15, 57, 95, 56, 86, 65, 58, 63, 211, 122, 1, 63, 30, 218, 40, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 95, 56, 90, 39, 65, 63, 186, 197, 71, 190, 94, 132, 30, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 127, 56, 241, 88, 57, 63, 186, 197, 71, 190, 112, 7, 40, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 127, 56, 137, 25, 66, 63, 211, 122, 1, 63, 31, 75, 31, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 95, 56, 36, 105, 50, 63, 211, 122, 1, 63, 30, 105, 50, 191, 98, 0, 176, 0, 176, 0, 158, 127, 255, 56, 95, 56, 241, 88, 57, 63, 186, 197, 71, 190, 112, 7, 40, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 127, 56, 136, 138, 49, 63, 186, 197, 71, 190, 130, 138, 49, 191, 98, 0, 176, 0, 176, 0, 158, 127, 255, 56, 127, 56, 86, 65, 58, 63, 211, 122, 1, 63, 30, 218, 40, 191, 98, 0, 176, 0, 176, 0, 158, 127, 239, 56, 95, 56, 188, 241, 73, 63, 211, 122, 1, 63, 32, 188, 21, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 95, 56, 43, 196, 80, 63, 186, 197, 71, 190, 58, 126, 11, 191, 98, 0, 176, 0, 176, 0, 158, 127, 191, 56, 127, 56, 194, 245, 72, 63, 186, 197, 71, 190, 76, 1, 21, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 127, 56, 238, 201, 81, 63, 211, 122, 1, 63, 33, 45, 12, 191, 98, 0, 176, 0, 176, 0, 158, 127, 191, 56, 95, 56, 137, 25, 66, 63, 211, 122, 1, 63, 31, 75, 31, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 95, 56, 194, 245, 72, 63, 186, 197, 71, 190, 76, 1, 21, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 127, 56, 90, 39, 65, 63, 186, 197, 71, 190, 94, 132, 30, 191, 98, 0, 176, 0, 176, 0, 158, 127, 223, 56, 127, 56, 188, 241, 73, 63, 211, 122, 1, 63, 32, 188, 21, 191, 98, 0, 176, 0, 176, 0, 158, 127, 207, 56, 95, 56, 39, 158, 87, 63, 211, 122, 1, 63, 95, 69, 1, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 95, 56, 18, 94, 92, 63, 186, 197, 71, 190, 217, 147, 235, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 127, 56, 30, 145, 86, 63, 186, 197, 71, 190, 19, 164, 0, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 127, 56, 96, 114, 93, 63, 211, 122, 1, 63, 58, 187, 236, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 95, 56, 238, 201, 81, 63, 211, 122, 1, 63, 33, 45, 12, 191, 112, 0, 197, 0, 197, 0, 144, 127, 191, 56, 95, 56, 30, 145, 86, 63, 186, 197, 71, 190, 19, 164, 0, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 127, 56, 43, 196, 80, 63, 186, 197, 71, 190, 58, 126, 11, 191, 112, 0, 197, 0, 197, 0, 144, 127, 191, 56, 127, 56, 39, 158, 87, 63, 211, 122, 1, 63, 95, 69, 1, 191, 112, 0, 197, 0, 197, 0, 144, 127, 175, 56, 95, 56, 154, 70, 99, 63, 211, 122, 1, 63, 182, 235, 214, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 95, 56, 249, 247, 103, 63, 186, 197, 71, 190, 62, 43, 192, 190, 112, 0, 197, 0, 197, 0, 144, 127, 127, 56, 127, 56, 6, 43, 98, 63, 186, 197, 71, 190, 140, 223, 213, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 127, 56, 212, 26, 105, 63, 211, 122, 1, 63, 50, 28, 193, 190, 112, 0, 197, 0, 197, 0, 144, 127, 127, 56, 95, 56, 96, 114, 93, 63, 211, 122, 1, 63, 58, 187, 236, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 95, 56, 6, 43, 98, 63, 186, 197, 71, 190, 140, 223, 213, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 127, 56, 18, 94, 92, 63, 186, 197, 71, 190, 217, 147, 235, 190, 112, 0, 197, 0, 197, 0, 144, 127, 159, 56, 127, 56, 154, 70, 99, 63, 211, 122, 1, 63, 182, 235, 214, 190, 112, 0, 197, 0, 197, 0, 144, 127, 143, 56, 95, 56, 188, 177, 108, 63, 211, 122, 1, 63, 186, 113, 169, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 95, 56, 212, 28, 111, 63, 186, 197, 71, 190, 94, 17, 145, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 127, 56, 102, 138, 107, 63, 186, 197, 71, 190, 78, 158, 168, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 127, 56, 164, 72, 112, 63, 211, 122, 1, 63, 67, 199, 145, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 95, 56, 212, 26, 105, 63, 211, 122, 1, 63, 50, 28, 193, 190, 121, 0, 220, 0, 220, 0, 135, 127, 127, 56, 95, 56, 102, 138, 107, 63, 186, 197, 71, 190, 78, 158, 168, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 127, 56, 249, 247, 103, 63, 186, 197, 71, 190, 62, 43, 192, 190, 121, 0, 220, 0, 220, 0, 135, 127, 127, 56, 127, 56, 188, 177, 108, 63, 211, 122, 1, 63, 186, 113, 169, 190, 121, 0, 220, 0, 220, 0, 135, 127, 111, 56, 95, 56, 140, 223, 115, 63, 211, 122, 1, 63, 151, 57, 116, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 95, 56, 176, 65, 118, 63, 186, 197, 71, 190, 252, 238, 67, 190, 121, 0, 220, 0, 220, 0, 135, 127, 63, 56, 127, 56, 66, 175, 114, 63, 186, 197, 71, 190, 220, 8, 115, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 127, 56, 116, 118, 119, 63, 211, 122, 1, 63, 168, 228, 68, 190, 121, 0, 220, 0, 220, 0, 135, 127, 63, 56, 95, 56, 164, 72, 112, 63, 211, 122, 1, 63, 67, 199, 145, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 95, 56, 66, 175, 114, 63, 186, 197, 71, 190, 220, 8, 115, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 127, 56, 212, 28, 111, 63, 186, 197, 71, 190, 94, 17, 145, 190, 121, 0, 220, 0, 220, 0, 135, 127, 95, 56, 127, 56, 140, 223, 115, 63, 211, 122, 1, 63, 151, 57, 116, 190, 121, 0, 220, 0, 220, 0, 135, 127, 79, 56, 95, 56, 187, 172, 120, 63, 211, 122, 1, 63, 120, 171, 19, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 95, 56, 55, 171, 120, 63, 186, 197, 71, 190, 225, 238, 195, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 127, 56, 116, 118, 119, 63, 186, 197, 71, 190, 54, 243, 18, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 127, 56, 2, 227, 121, 63, 211, 122, 1, 63, 142, 228, 196, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 95, 56, 116, 118, 119, 63, 211, 122, 1, 63, 168, 228, 68, 190, 126, 0, 244, 0, 244, 0, 130, 127, 63, 56, 95, 56, 116, 118, 119, 63, 186, 197, 71, 190, 54, 243, 18, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 127, 56, 176, 65, 118, 63, 186, 197, 71, 190, 252, 238, 67, 190, 126, 0, 244, 0, 244, 0, 130, 127, 63, 56, 127, 56, 187, 172, 120, 63, 211, 122, 1, 63, 120, 171, 19, 190, 126, 0, 244, 0, 244, 0, 130, 127, 47, 56, 95, 56, 73, 25, 123, 63, 211, 122, 1, 63, 90, 228, 68, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 95, 56, 190, 20, 123, 63, 186, 197, 71, 190, 128, 92, 211, 52, 126, 0, 244, 0, 244, 0, 130, 127, 255, 55, 127, 56, 250, 223, 121, 63, 186, 197, 71, 190, 172, 238, 67, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 127, 56, 144, 79, 124, 63, 211, 122, 1, 63, 128, 92, 209, 52, 126, 0, 244, 0, 244, 0, 130, 127, 255, 55, 95, 56, 2, 227, 121, 63, 211, 122, 1, 63, 142, 228, 196, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 95, 56, 250, 223, 121, 63, 186, 197, 71, 190, 172, 238, 67, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 127, 56, 55, 171, 120, 63, 186, 197, 71, 190, 225, 238, 195, 189, 126, 0, 244, 0, 244, 0, 130, 127, 31, 56, 127, 56, 73, 25, 123, 63, 211, 122, 1, 63, 90, 228, 68, 189, 126, 0, 244, 0, 244, 0, 130, 127, 15, 56, 95, 56, 72, 25, 123, 63, 211, 122, 1, 63, 41, 229, 68, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 95, 56, 54, 171, 120, 63, 186, 197, 71, 190, 73, 239, 195, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 127, 56, 250, 223, 121, 63, 186, 197, 71, 190, 126, 239, 67, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 127, 56, 1, 227, 121, 63, 211, 122, 1, 63, 244, 228, 196, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 95, 56, 144, 79, 124, 63, 211, 122, 1, 63, 128, 92, 209, 52, 126, 0, 12, 0, 12, 0, 130, 127, 255, 55, 95, 56, 250, 223, 121, 63, 186, 197, 71, 190, 126, 239, 67, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 127, 56, 190, 20, 123, 63, 186, 197, 71, 190, 128, 92, 211, 52, 126, 0, 12, 0, 12, 0, 130, 127, 255, 55, 127, 56, 72, 25, 123, 63, 211, 122, 1, 63, 41, 229, 68, 61, 126, 0, 12, 0, 12, 0, 130, 127, 223, 55, 95, 56, 186, 172, 120, 63, 211, 122, 1, 63, 170, 171, 19, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 95, 56, 174, 65, 118, 63, 186, 197, 71, 190, 47, 239, 67, 62, 126, 0, 12, 0, 12, 0, 130, 127, 127, 55, 127, 56, 114, 118, 119, 63, 186, 197, 71, 190, 106, 243, 18, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 127, 56, 115, 118, 119, 63, 211, 122, 1, 63, 218, 228, 68, 62, 126, 0, 12, 0, 12, 0, 130, 127, 127, 55, 95, 56, 1, 227, 121, 63, 211, 122, 1, 63, 244, 228, 196, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 95, 56, 114, 118, 119, 63, 186, 197, 71, 190, 106, 243, 18, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 127, 56, 54, 171, 120, 63, 186, 197, 71, 190, 73, 239, 195, 61, 126, 0, 12, 0, 12, 0, 130, 127, 191, 55, 127, 56, 186, 172, 120, 63, 211, 122, 1, 63, 170, 171, 19, 62, 126, 0, 12, 0, 12, 0, 130, 127, 159, 55, 95, 56, 138, 223, 115, 63, 211, 122, 1, 63, 201, 57, 116, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 95, 56, 210, 28, 111, 63, 186, 197, 71, 190, 119, 17, 145, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 127, 56, 64, 175, 114, 63, 186, 197, 71, 190, 14, 9, 115, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 127, 56, 162, 72, 112, 63, 211, 122, 1, 63, 92, 199, 145, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 95, 56, 115, 118, 119, 63, 211, 122, 1, 63, 218, 228, 68, 62, 121, 0, 36, 0, 36, 0, 135, 127, 127, 55, 95, 56, 64, 175, 114, 63, 186, 197, 71, 190, 14, 9, 115, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 127, 56, 174, 65, 118, 63, 186, 197, 71, 190, 47, 239, 67, 62, 121, 0, 36, 0, 36, 0, 135, 127, 127, 55, 127, 56, 138, 223, 115, 63, 211, 122, 1, 63, 201, 57, 116, 62, 121, 0, 36, 0, 36, 0, 135, 127, 95, 55, 95, 56, 186, 177, 108, 63, 211, 122, 1, 63, 211, 113, 169, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 95, 56, 246, 247, 103, 63, 186, 197, 71, 190, 86, 43, 192, 62, 121, 0, 36, 0, 36, 0, 135, 127, 255, 54, 127, 56, 100, 138, 107, 63, 186, 197, 71, 190, 102, 158, 168, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 127, 56, 209, 26, 105, 63, 211, 122, 1, 63, 74, 28, 193, 62, 121, 0, 36, 0, 36, 0, 135, 127, 255, 54, 95, 56, 162, 72, 112, 63, 211, 122, 1, 63, 92, 199, 145, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 95, 56, 100, 138, 107, 63, 186, 197, 71, 190, 102, 158, 168, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 127, 56, 210, 28, 111, 63, 186, 197, 71, 190, 119, 17, 145, 62, 121, 0, 36, 0, 36, 0, 135, 127, 63, 55, 127, 56, 186, 177, 108, 63, 211, 122, 1, 63, 211, 113, 169, 62, 121, 0, 36, 0, 36, 0, 135, 127, 31, 55, 95, 56, 151, 70, 99, 63, 211, 122, 1, 63, 205, 235, 214, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 95, 56, 14, 94, 92, 63, 186, 197, 71, 190, 239, 147, 235, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 127, 56, 2, 43, 98, 63, 186, 197, 71, 190, 162, 223, 213, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 127, 56, 93, 114, 93, 63, 211, 122, 1, 63, 80, 187, 236, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 95, 56, 209, 26, 105, 63, 211, 122, 1, 63, 74, 28, 193, 62, 112, 0, 59, 0, 59, 0, 144, 127, 255, 54, 95, 56, 2, 43, 98, 63, 186, 197, 71, 190, 162, 223, 213, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 127, 56, 246, 247, 103, 63, 186, 197, 71, 190, 86, 43, 192, 62, 112, 0, 59, 0, 59, 0, 144, 127, 255, 54, 127, 56, 151, 70, 99, 63, 211, 122, 1, 63, 205, 235, 214, 62, 112, 0, 59, 0, 59, 0, 144, 127, 223, 54, 95, 56, 36, 158, 87, 63, 211, 122, 1, 63, 106, 69, 1, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 95, 56, 39, 196, 80, 63, 186, 197, 71, 190, 68, 126, 11, 63, 112, 0, 59, 0, 59, 0, 144, 127, 127, 54, 127, 56, 26, 145, 86, 63, 186, 197, 71, 190, 30, 164, 0, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 127, 56, 234, 201, 81, 63, 211, 122, 1, 63, 43, 45, 12, 63, 112, 0, 59, 0, 59, 0, 144, 127, 127, 54, 95, 56, 93, 114, 93, 63, 211, 122, 1, 63, 80, 187, 236, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 95, 56, 26, 145, 86, 63, 186, 197, 71, 190, 30, 164, 0, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 127, 56, 14, 94, 92, 63, 186, 197, 71, 190, 239, 147, 235, 62, 112, 0, 59, 0, 59, 0, 144, 127, 191, 54, 127, 56, 36, 158, 87, 63, 211, 122, 1, 63, 106, 69, 1, 63, 112, 0, 59, 0, 59, 0, 144, 127, 159, 54, 95, 56, 184, 241, 73, 63, 211, 122, 1, 63, 42, 188, 21, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 95, 56, 86, 39, 65, 63, 186, 197, 71, 190, 103, 132, 30, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 127, 56, 190, 245, 72, 63, 186, 197, 71, 190, 86, 1, 21, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 127, 56, 133, 25, 66, 63, 211, 122, 1, 63, 40, 75, 31, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 95, 56, 234, 201, 81, 63, 211, 122, 1, 63, 43, 45, 12, 63, 98, 0, 80, 0, 80, 0, 158, 127, 127, 54, 95, 56, 190, 245, 72, 63, 186, 197, 71, 190, 86, 1, 21, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 127, 56, 39, 196, 80, 63, 186, 197, 71, 190, 68, 126, 11, 63, 98, 0, 80, 0, 80, 0, 158, 127, 127, 54, 127, 56, 184, 241, 73, 63, 211, 122, 1, 63, 42, 188, 21, 63, 98, 0, 80, 0, 80, 0, 158, 127, 95, 54, 95, 56, 82, 65, 58, 63, 211, 122, 1, 63, 39, 218, 40, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 95, 56, 132, 138, 49, 63, 186, 197, 71, 190, 138, 138, 49, 63, 98, 0, 80, 0, 80, 0, 158, 127, 255, 53, 127, 56, 237, 88, 57, 63, 186, 197, 71, 190, 120, 7, 40, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 127, 56, 32, 105, 50, 63, 211, 122, 1, 63, 38, 105, 50, 63, 98, 0, 80, 0, 80, 0, 158, 127, 255, 53, 95, 56, 133, 25, 66, 63, 211, 122, 1, 63, 40, 75, 31, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 95, 56, 237, 88, 57, 63, 186, 197, 71, 190, 120, 7, 40, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 127, 56, 86, 39, 65, 63, 186, 197, 71, 190, 103, 132, 30, 63, 98, 0, 80, 0, 80, 0, 158, 127, 63, 54, 127, 56, 82, 65, 58, 63, 211, 122, 1, 63, 39, 218, 40, 63, 98, 0, 80, 0, 80, 0, 158, 127, 31, 54, 95, 56, 33, 218, 40, 63, 211, 122, 1, 63, 88, 65, 58, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 95, 56, 96, 132, 30, 63, 186, 197, 71, 190, 92, 39, 65, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 127, 56, 114, 7, 40, 63, 186, 197, 71, 190, 243, 88, 57, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 127, 56, 34, 75, 31, 63, 211, 122, 1, 63, 139, 25, 66, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 95, 56, 32, 105, 50, 63, 211, 122, 1, 63, 38, 105, 50, 63, 80, 0, 98, 0, 98, 0, 176, 127, 255, 53, 95, 56, 114, 7, 40, 63, 186, 197, 71, 190, 243, 88, 57, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 127, 56, 132, 138, 49, 63, 186, 197, 71, 190, 138, 138, 49, 63, 80, 0, 98, 0, 98, 0, 176, 127, 255, 53, 127, 56, 33, 218, 40, 63, 211, 122, 1, 63, 88, 65, 58, 63, 80, 0, 98, 0, 98, 0, 176, 127, 223, 53, 95, 56, 35, 188, 21, 63, 211, 122, 1, 63, 190, 241, 73, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 95, 56, 61, 126, 11, 63, 186, 197, 71, 190, 45, 196, 80, 63, 80, 0, 98, 0, 98, 0, 176, 127, 127, 53, 127, 56, 78, 1, 21, 63, 186, 197, 71, 190, 196, 245, 72, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 127, 56, 36, 45, 12, 63, 211, 122, 1, 63, 240, 201, 81, 63, 80, 0, 98, 0, 98, 0, 176, 127, 127, 53, 95, 56, 34, 75, 31, 63, 211, 122, 1, 63, 139, 25, 66, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 95, 56, 78, 1, 21, 63, 186, 197, 71, 190, 196, 245, 72, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 127, 56, 96, 132, 30, 63, 186, 197, 71, 190, 92, 39, 65, 63, 80, 0, 98, 0, 98, 0, 176, 127, 191, 53, 127, 56, 35, 188, 21, 63, 211, 122, 1, 63, 190, 241, 73, 63, 80, 0, 98, 0, 98, 0, 176, 127, 159, 53, 95, 56, 98, 69, 1, 63, 211, 122, 1, 63, 42, 158, 87, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 95, 56, 224, 147, 235, 62, 186, 197, 71, 190, 20, 94, 92, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 127, 56, 22, 164, 0, 63, 186, 197, 71, 190, 32, 145, 86, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 127, 56, 65, 187, 236, 62, 211, 122, 1, 63, 99, 114, 93, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 95, 56, 36, 45, 12, 63, 211, 122, 1, 63, 240, 201, 81, 63, 59, 0, 112, 0, 112, 0, 197, 127, 127, 53, 95, 56, 22, 164, 0, 63, 186, 197, 71, 190, 32, 145, 86, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 127, 56, 61, 126, 11, 63, 186, 197, 71, 190, 45, 196, 80, 63, 59, 0, 112, 0, 112, 0, 197, 127, 127, 53, 127, 56, 98, 69, 1, 63, 211, 122, 1, 63, 42, 158, 87, 63, 59, 0, 112, 0, 112, 0, 197, 127, 95, 53, 95, 56, 190, 235, 214, 62, 211, 122, 1, 63, 156, 70, 99, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 95, 56, 70, 43, 192, 62, 186, 197, 71, 190, 251, 247, 103, 63, 59, 0, 112, 0, 112, 0, 197, 127, 255, 52, 127, 56, 147, 223, 213, 62, 186, 197, 71, 190, 8, 43, 98, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 127, 56, 58, 28, 193, 62, 211, 122, 1, 63, 214, 26, 105, 63, 59, 0, 112, 0, 112, 0, 197, 127, 255, 52, 95, 56, 65, 187, 236, 62, 211, 122, 1, 63, 99, 114, 93, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 95, 56, 147, 223, 213, 62, 186, 197, 71, 190, 8, 43, 98, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 127, 56, 224, 147, 235, 62, 186, 197, 71, 190, 20, 94, 92, 63, 59, 0, 112, 0, 112, 0, 197, 127, 63, 53, 127, 56, 190, 235, 214, 62, 211, 122, 1, 63, 156, 70, 99, 63, 59, 0, 112, 0, 112, 0, 197, 127, 31, 53, 95, 56, 194, 113, 169, 62, 211, 122, 1, 63, 190, 177, 108, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 95, 56, 102, 17, 145, 62, 186, 197, 71, 190, 214, 28, 111, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 127, 56, 86, 158, 168, 62, 186, 197, 71, 190, 104, 138, 107, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 127, 56, 75, 199, 145, 62, 211, 122, 1, 63, 166, 72, 112, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 95, 56, 58, 28, 193, 62, 211, 122, 1, 63, 214, 26, 105, 63, 36, 0, 121, 0, 121, 0, 220, 127, 255, 52, 95, 56, 86, 158, 168, 62, 186, 197, 71, 190, 104, 138, 107, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 127, 56, 70, 43, 192, 62, 186, 197, 71, 190, 251, 247, 103, 63, 36, 0, 121, 0, 121, 0, 220, 127, 255, 52, 127, 56, 194, 113, 169, 62, 211, 122, 1, 63, 190, 177, 108, 63, 36, 0, 121, 0, 121, 0, 220, 127, 223, 52, 95, 56, 168, 57, 116, 62, 211, 122, 1, 63, 142, 223, 115, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 95, 56, 14, 239, 67, 62, 186, 197, 71, 190, 178, 65, 118, 63, 36, 0, 121, 0, 121, 0, 220, 127, 127, 52, 127, 56, 237, 8, 115, 62, 186, 197, 71, 190, 68, 175, 114, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 127, 56, 186, 228, 68, 62, 211, 122, 1, 63, 119, 118, 119, 63, 36, 0, 121, 0, 121, 0, 220, 127, 127, 52, 95, 56, 75, 199, 145, 62, 211, 122, 1, 63, 166, 72, 112, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 95, 56, 237, 8, 115, 62, 186, 197, 71, 190, 68, 175, 114, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 127, 56, 102, 17, 145, 62, 186, 197, 71, 190, 214, 28, 111, 63, 36, 0, 121, 0, 121, 0, 220, 127, 191, 52, 127, 56, 168, 57, 116, 62, 211, 122, 1, 63, 142, 223, 115, 63, 36, 0, 121, 0, 121, 0, 220, 127, 159, 52, 95, 56, 138, 171, 19, 62, 211, 122, 1, 63, 190, 172, 120, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 95, 56, 9, 239, 195, 61, 186, 197, 71, 190, 57, 171, 120, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 127, 56, 73, 243, 18, 62, 186, 197, 71, 190, 118, 118, 119, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 127, 56, 180, 228, 196, 61, 211, 122, 1, 63, 4, 227, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 95, 56, 186, 228, 68, 62, 211, 122, 1, 63, 119, 118, 119, 63, 12, 0, 126, 0, 126, 0, 244, 127, 127, 52, 95, 56, 73, 243, 18, 62, 186, 197, 71, 190, 118, 118, 119, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 127, 56, 14, 239, 67, 62, 186, 197, 71, 190, 178, 65, 118, 63, 12, 0, 126, 0, 126, 0, 244, 127, 127, 52, 127, 56, 138, 171, 19, 62, 211, 122, 1, 63, 190, 172, 120, 63, 12, 0, 126, 0, 126, 0, 244, 127, 95, 52, 95, 56, 168, 228, 68, 61, 211, 122, 1, 63, 75, 25, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 95, 56, 217, 124, 183, 179, 186, 197, 71, 190, 192, 20, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 255, 51, 127, 56, 253, 238, 67, 61, 186, 197, 71, 190, 252, 223, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 127, 56, 217, 124, 191, 179, 211, 122, 1, 63, 146, 79, 124, 63, 12, 0, 126, 0, 126, 0, 244, 127, 255, 51, 95, 56, 180, 228, 196, 61, 211, 122, 1, 63, 4, 227, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 95, 56, 253, 238, 67, 61, 186, 197, 71, 190, 252, 223, 121, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 127, 56, 9, 239, 195, 61, 186, 197, 71, 190, 57, 171, 120, 63, 12, 0, 126, 0, 126, 0, 244, 127, 63, 52, 127, 56, 168, 228, 68, 61, 211, 122, 1, 63, 75, 25, 123, 63, 12, 0, 126, 0, 126, 0, 244, 127, 31, 52, 95, 56, 214, 228, 68, 189, 211, 122, 1, 63, 74, 25, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 95, 56, 30, 239, 195, 189, 186, 197, 71, 190, 56, 171, 120, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 127, 56, 41, 239, 67, 189, 186, 197, 71, 190, 252, 223, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 127, 56, 202, 228, 196, 189, 211, 122, 1, 63, 3, 227, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 95, 56, 217, 124, 191, 179, 211, 122, 1, 63, 146, 79, 124, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 51, 95, 56, 41, 239, 67, 189, 186, 197, 71, 190, 252, 223, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 127, 56, 217, 124, 183, 179, 186, 197, 71, 190, 192, 20, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 51, 127, 56, 214, 228, 68, 189, 211, 122, 1, 63, 74, 25, 123, 63, 244, 0, 126, 0, 126, 0, 12, 127, 191, 51, 95, 56, 148, 171, 19, 190, 211, 122, 1, 63, 188, 172, 120, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 95, 56, 24, 239, 67, 190, 186, 197, 71, 190, 176, 65, 118, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 50, 127, 56, 84, 243, 18, 190, 186, 197, 71, 190, 116, 118, 119, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 127, 56, 196, 228, 68, 190, 211, 122, 1, 63, 117, 118, 119, 63, 244, 0, 126, 0, 126, 0, 12, 127, 255, 50, 95, 56, 202, 228, 196, 189, 211, 122, 1, 63, 3, 227, 121, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 95, 56, 84, 243, 18, 190, 186, 197, 71, 190, 116, 118, 119, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 127, 56, 30, 239, 195, 189, 186, 197, 71, 190, 56, 171, 120, 63, 244, 0, 126, 0, 126, 0, 12, 127, 127, 51, 127, 56, 148, 171, 19, 190, 211, 122, 1, 63, 188, 172, 120, 63, 244, 0, 126, 0, 126, 0, 12, 127, 63, 51, 95, 56, 178, 57, 116, 190, 211, 122, 1, 63, 140, 223, 115, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 95, 56, 107, 17, 145, 190, 186, 197, 71, 190, 212, 28, 111, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 127, 56, 247, 8, 115, 190, 186, 197, 71, 190, 66, 175, 114, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 127, 56, 80, 199, 145, 190, 211, 122, 1, 63, 164, 72, 112, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 95, 56, 196, 228, 68, 190, 211, 122, 1, 63, 117, 118, 119, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 50, 95, 56, 247, 8, 115, 190, 186, 197, 71, 190, 66, 175, 114, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 127, 56, 24, 239, 67, 190, 186, 197, 71, 190, 176, 65, 118, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 50, 127, 56, 178, 57, 116, 190, 211, 122, 1, 63, 140, 223, 115, 63, 220, 0, 121, 0, 121, 0, 36, 127, 191, 50, 95, 56, 199, 113, 169, 190, 211, 122, 1, 63, 188, 177, 108, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 95, 56, 74, 43, 192, 190, 186, 197, 71, 190, 248, 247, 103, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 49, 127, 56, 90, 158, 168, 190, 186, 197, 71, 190, 102, 138, 107, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 127, 56, 62, 28, 193, 190, 211, 122, 1, 63, 211, 26, 105, 63, 220, 0, 121, 0, 121, 0, 36, 127, 255, 49, 95, 56, 80, 199, 145, 190, 211, 122, 1, 63, 164, 72, 112, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 95, 56, 90, 158, 168, 190, 186, 197, 71, 190, 102, 138, 107, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 127, 56, 107, 17, 145, 190, 186, 197, 71, 190, 212, 28, 111, 63, 220, 0, 121, 0, 121, 0, 36, 127, 127, 50, 127, 56, 199, 113, 169, 190, 211, 122, 1, 63, 188, 177, 108, 63, 220, 0, 121, 0, 121, 0, 36, 127, 63, 50, 95, 56, 193, 235, 214, 190, 211, 122, 1, 63, 153, 70, 99, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 95, 56, 227, 147, 235, 190, 186, 197, 71, 190, 16, 94, 92, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 127, 56, 150, 223, 213, 190, 186, 197, 71, 190, 4, 43, 98, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 127, 56, 68, 187, 236, 190, 211, 122, 1, 63, 95, 114, 93, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 95, 56, 62, 28, 193, 190, 211, 122, 1, 63, 211, 26, 105, 63, 197, 0, 112, 0, 112, 0, 59, 127, 255, 49, 95, 56, 150, 223, 213, 190, 186, 197, 71, 190, 4, 43, 98, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 127, 56, 74, 43, 192, 190, 186, 197, 71, 190, 248, 247, 103, 63, 197, 0, 112, 0, 112, 0, 59, 127, 255, 49, 127, 56, 193, 235, 214, 190, 211, 122, 1, 63, 153, 70, 99, 63, 197, 0, 112, 0, 112, 0, 59, 127, 191, 49, 95, 56, 100, 69, 1, 191, 211, 122, 1, 63, 38, 158, 87, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 95, 56, 62, 126, 11, 191, 186, 197, 71, 190, 41, 196, 80, 63, 197, 0, 112, 0, 112, 0, 59, 127, 0, 49, 127, 56, 24, 164, 0, 191, 186, 197, 71, 190, 28, 145, 86, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 127, 56, 38, 45, 12, 191, 211, 122, 1, 63, 236, 201, 81, 63, 197, 0, 112, 0, 112, 0, 59, 127, 0, 49, 95, 56, 68, 187, 236, 190, 211, 122, 1, 63, 95, 114, 93, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 95, 56, 24, 164, 0, 191, 186, 197, 71, 190, 28, 145, 86, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 127, 56, 227, 147, 235, 190, 186, 197, 71, 190, 16, 94, 92, 63, 197, 0, 112, 0, 112, 0, 59, 127, 127, 49, 127, 56, 100, 69, 1, 191, 211, 122, 1, 63, 38, 158, 87, 63, 197, 0, 112, 0, 112, 0, 59, 127, 64, 49, 95, 56, 36, 188, 21, 191, 211, 122, 1, 63, 185, 241, 73, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 95, 56, 96, 132, 30, 191, 186, 197, 71, 190, 87, 39, 65, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 127, 56, 79, 1, 21, 191, 186, 197, 71, 190, 192, 245, 72, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 127, 56, 34, 75, 31, 191, 211, 122, 1, 63, 134, 25, 66, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 95, 56, 38, 45, 12, 191, 211, 122, 1, 63, 236, 201, 81, 63, 176, 0, 98, 0, 98, 0, 80, 127, 0, 49, 95, 56, 79, 1, 21, 191, 186, 197, 71, 190, 192, 245, 72, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 127, 56, 62, 126, 11, 191, 186, 197, 71, 190, 41, 196, 80, 63, 176, 0, 98, 0, 98, 0, 80, 127, 0, 49, 127, 56, 36, 188, 21, 191, 211, 122, 1, 63, 185, 241, 73, 63, 176, 0, 98, 0, 98, 0, 80, 127, 192, 48, 95, 56, 33, 218, 40, 191, 211, 122, 1, 63, 84, 65, 58, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 95, 56, 131, 138, 49, 191, 186, 197, 71, 190, 133, 138, 49, 63, 176, 0, 98, 0, 98, 0, 80, 127, 255, 47, 127, 56, 114, 7, 40, 191, 186, 197, 71, 190, 238, 88, 57, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 127, 56, 32, 105, 50, 191, 211, 122, 1, 63, 34, 105, 50, 63, 176, 0, 98, 0, 98, 0, 80, 127, 255, 47, 95, 56, 34, 75, 31, 191, 211, 122, 1, 63, 134, 25, 66, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 95, 56, 114, 7, 40, 191, 186, 197, 71, 190, 238, 88, 57, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 127, 56, 96, 132, 30, 191, 186, 197, 71, 190, 87, 39, 65, 63, 176, 0, 98, 0, 98, 0, 80, 127, 127, 48, 127, 56, 33, 218, 40, 191, 211, 122, 1, 63, 84, 65, 58, 63, 176, 0, 98, 0, 98, 0, 80, 127, 63, 48, 95, 56, 82, 65, 58, 191, 211, 122, 1, 63, 35, 218, 40, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 95, 56, 84, 39, 65, 191, 186, 197, 71, 190, 98, 132, 30, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 127, 56, 236, 88, 57, 191, 186, 197, 71, 190, 116, 7, 40, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 127, 56, 132, 25, 66, 191, 211, 122, 1, 63, 36, 75, 31, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 95, 56, 32, 105, 50, 191, 211, 122, 1, 63, 34, 105, 50, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 47, 95, 56, 236, 88, 57, 191, 186, 197, 71, 190, 116, 7, 40, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 127, 56, 131, 138, 49, 191, 186, 197, 71, 190, 133, 138, 49, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 47, 127, 56, 82, 65, 58, 191, 211, 122, 1, 63, 35, 218, 40, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 47, 95, 56, 182, 241, 73, 191, 211, 122, 1, 63, 37, 188, 21, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 95, 56, 37, 196, 80, 191, 186, 197, 71, 190, 62, 126, 11, 63, 158, 0, 80, 0, 80, 0, 98, 127, 0, 46, 127, 56, 188, 245, 72, 191, 186, 197, 71, 190, 80, 1, 21, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 127, 56, 232, 201, 81, 191, 211, 122, 1, 63, 38, 45, 12, 63, 158, 0, 80, 0, 80, 0, 98, 127, 0, 46, 95, 56, 132, 25, 66, 191, 211, 122, 1, 63, 36, 75, 31, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 95, 56, 188, 245, 72, 191, 186, 197, 71, 190, 80, 1, 21, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 127, 56, 84, 39, 65, 191, 186, 197, 71, 190, 98, 132, 30, 63, 158, 0, 80, 0, 80, 0, 98, 127, 255, 46, 127, 56, 182, 241, 73, 191, 211, 122, 1, 63, 37, 188, 21, 63, 158, 0, 80, 0, 80, 0, 98, 127, 127, 46, 95, 56, 34, 158, 87, 191, 211, 122, 1, 63, 100, 69, 1, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 95, 56, 12, 94, 92, 191, 186, 197, 71, 190, 226, 147, 235, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 127, 56, 24, 145, 86, 191, 186, 197, 71, 190, 24, 164, 0, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 127, 56, 91, 114, 93, 191, 211, 122, 1, 63, 68, 187, 236, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 95, 56, 232, 201, 81, 191, 211, 122, 1, 63, 38, 45, 12, 63, 144, 0, 59, 0, 59, 0, 112, 127, 0, 46, 95, 56, 24, 145, 86, 191, 186, 197, 71, 190, 24, 164, 0, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 127, 56, 37, 196, 80, 191, 186, 197, 71, 190, 62, 126, 11, 63, 144, 0, 59, 0, 59, 0, 112, 127, 0, 46, 127, 56, 34, 158, 87, 191, 211, 122, 1, 63, 100, 69, 1, 63, 144, 0, 59, 0, 59, 0, 112, 127, 128, 45, 95, 56, 148, 70, 99, 191, 211, 122, 1, 63, 192, 235, 214, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 95, 56, 243, 247, 103, 191, 186, 197, 71, 190, 73, 43, 192, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 44, 127, 56, 0, 43, 98, 191, 186, 197, 71, 190, 150, 223, 213, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 127, 56, 206, 26, 105, 191, 211, 122, 1, 63, 61, 28, 193, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 44, 95, 56, 91, 114, 93, 191, 211, 122, 1, 63, 68, 187, 236, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 95, 56, 0, 43, 98, 191, 186, 197, 71, 190, 150, 223, 213, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 127, 56, 12, 94, 92, 191, 186, 197, 71, 190, 226, 147, 235, 62, 144, 0, 59, 0, 59, 0, 112, 127, 0, 45, 127, 56, 148, 70, 99, 191, 211, 122, 1, 63, 192, 235, 214, 62, 144, 0, 59, 0, 59, 0, 112, 127, 128, 44, 95, 56, 182, 177, 108, 191, 211, 122, 1, 63, 198, 113, 169, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 42, 96, 56, 206, 28, 111, 191, 186, 197, 71, 190, 106, 17, 145, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 41, 128, 56, 96, 138, 107, 191, 186, 197, 71, 190, 90, 158, 168, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 42, 127, 56, 158, 72, 112, 191, 211, 122, 1, 63, 79, 199, 145, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 41, 96, 56, 206, 26, 105, 191, 211, 122, 1, 63, 61, 28, 193, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 44, 95, 56, 96, 138, 107, 191, 186, 197, 71, 190, 90, 158, 168, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 42, 127, 56, 243, 247, 103, 191, 186, 197, 71, 190, 73, 43, 192, 62, 135, 0, 36, 0, 36, 0, 121, 127, 0, 44, 127, 56, 182, 177, 108, 191, 211, 122, 1, 63, 198, 113, 169, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 42, 96, 56, 134, 223, 115, 191, 211, 122, 1, 63, 177, 57, 116, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 40, 96, 56, 169, 65, 118, 191, 186, 197, 71, 190, 23, 239, 67, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 39, 128, 56, 60, 175, 114, 191, 186, 197, 71, 190, 246, 8, 115, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 40, 128, 56, 110, 118, 119, 191, 211, 122, 1, 63, 196, 228, 68, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 39, 96, 56, 158, 72, 112, 191, 211, 122, 1, 63, 79, 199, 145, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 41, 96, 56, 60, 175, 114, 191, 186, 197, 71, 190, 246, 8, 115, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 40, 128, 56, 206, 28, 111, 191, 186, 197, 71, 190, 106, 17, 145, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 41, 128, 56, 134, 223, 115, 191, 211, 122, 1, 63, 177, 57, 116, 62, 135, 0, 36, 0, 36, 0, 121, 127, 255, 40, 96, 56, 180, 172, 120, 191, 211, 122, 1, 63, 148, 171, 19, 62, 130, 0, 12, 0, 12, 0, 126, 127, 255, 37, 96, 56, 48, 171, 120, 191, 186, 197, 71, 190, 29, 239, 195, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 35, 128, 56, 108, 118, 119, 191, 186, 197, 71, 190, 83, 243, 18, 62, 130, 0, 12, 0, 12, 0, 126, 127, 255, 37, 128, 56, 251, 226, 121, 191, 211, 122, 1, 63, 202, 228, 196, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 35, 96, 56, 110, 118, 119, 191, 211, 122, 1, 63, 196, 228, 68, 62, 130, 0, 12, 0, 12, 0, 126, 127, 255, 39, 96, 56, 108, 118, 119, 191, 186, 197, 71, 190, 83, 243, 18, 62, 130, 0, 12, 0, 12, 0, 126, 127, 255, 37, 128, 56, 169, 65, 118, 191, 186, 197, 71, 190, 23, 239, 67, 62, 130, 0, 12, 0, 12, 0, 126, 127, 255, 39, 128, 56, 180, 172, 120, 191, 211, 122, 1, 63, 148, 171, 19, 62, 130, 0, 12, 0, 12, 0, 126, 127, 255, 37, 96, 56, 66, 25, 123, 191, 211, 122, 1, 63, 216, 228, 68, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 31, 96, 56, 183, 20, 123, 191, 186, 197, 71, 190, 0, 114, 205, 51, 130, 0, 12, 0, 12, 0, 126, 127, 0, 0, 128, 56, 244, 223, 121, 191, 186, 197, 71, 190, 42, 239, 67, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 31, 128, 56, 136, 79, 124, 191, 211, 122, 1, 63, 0, 114, 229, 51, 130, 0, 12, 0, 12, 0, 126, 127, 0, 0, 96, 56, 251, 226, 121, 191, 211, 122, 1, 63, 202, 228, 196, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 35, 96, 56, 244, 223, 121, 191, 186, 197, 71, 190, 42, 239, 67, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 31, 128, 56, 48, 171, 120, 191, 186, 197, 71, 190, 29, 239, 195, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 35, 128, 56, 66, 25, 123, 191, 211, 122, 1, 63, 216, 228, 68, 61, 130, 0, 12, 0, 12, 0, 126, 127, 255, 31, 96, 56, 65, 25, 123, 191, 211, 122, 1, 63, 159, 228, 68, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 96, 56, 46, 171, 120, 191, 186, 197, 71, 190, 3, 239, 195, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 128, 56, 242, 223, 121, 191, 186, 197, 71, 190, 246, 238, 67, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 128, 56, 250, 226, 121, 191, 211, 122, 1, 63, 174, 228, 196, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 96, 56, 136, 79, 124, 191, 211, 122, 1, 63, 0, 114, 229, 51, 130, 0, 244, 0, 244, 0, 126, 127, 0, 60, 96, 56, 242, 223, 121, 191, 186, 197, 71, 190, 246, 238, 67, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 128, 56, 183, 20, 123, 191, 186, 197, 71, 190, 0, 114, 205, 51, 130, 0, 244, 0, 244, 0, 126, 127, 0, 60, 128, 56, 65, 25, 123, 191, 211, 122, 1, 63, 159, 228, 68, 189, 130, 0, 244, 0, 244, 0, 126, 127, 240, 59, 96, 56, 178, 172, 120, 191, 211, 122, 1, 63, 134, 171, 19, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 96, 56, 166, 65, 118, 191, 186, 197, 71, 190, 9, 239, 67, 190, 130, 0, 244, 0, 244, 0, 126, 127, 192, 59, 128, 56, 106, 118, 119, 191, 186, 197, 71, 190, 69, 243, 18, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 128, 56, 107, 118, 119, 191, 211, 122, 1, 63, 180, 228, 68, 190, 130, 0, 244, 0, 244, 0, 126, 127, 192, 59, 96, 56, 250, 226, 121, 191, 211, 122, 1, 63, 174, 228, 196, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 96, 56, 106, 118, 119, 191, 186, 197, 71, 190, 69, 243, 18, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 128, 56, 46, 171, 120, 191, 186, 197, 71, 190, 3, 239, 195, 189, 130, 0, 244, 0, 244, 0, 126, 127, 224, 59, 128, 56, 178, 172, 120, 191, 211, 122, 1, 63, 134, 171, 19, 190, 130, 0, 244, 0, 244, 0, 126, 127, 208, 59, 96, 56, 56, 175, 114, 191, 186, 197, 71, 190, 230, 8, 115, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 128, 56, 154, 72, 112, 191, 211, 122, 1, 63, 71, 199, 145, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 96, 56, 202, 28, 111, 191, 186, 197, 71, 190, 98, 17, 145, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 128, 56, 130, 223, 115, 191, 211, 122, 1, 63, 161, 57, 116, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 96, 56, 107, 118, 119, 191, 211, 122, 1, 63, 180, 228, 68, 190, 135, 0, 220, 0, 220, 0, 121, 127, 192, 59, 96, 56, 56, 175, 114, 191, 186, 197, 71, 190, 230, 8, 115, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 128, 56, 166, 65, 118, 191, 186, 197, 71, 190, 9, 239, 67, 190, 135, 0, 220, 0, 220, 0, 121, 127, 192, 59, 128, 56, 130, 223, 115, 191, 211, 122, 1, 63, 161, 57, 116, 190, 135, 0, 220, 0, 220, 0, 121, 127, 176, 59, 96, 56, 178, 177, 108, 191, 211, 122, 1, 63, 190, 113, 169, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 96, 56, 238, 247, 103, 191, 186, 197, 71, 190, 64, 43, 192, 190, 135, 0, 220, 0, 220, 0, 121, 127, 128, 59, 128, 56, 92, 138, 107, 191, 186, 197, 71, 190, 81, 158, 168, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 128, 56, 201, 26, 105, 191, 211, 122, 1, 63, 52, 28, 193, 190, 135, 0, 220, 0, 220, 0, 121, 127, 128, 59, 96, 56, 154, 72, 112, 191, 211, 122, 1, 63, 71, 199, 145, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 96, 56, 92, 138, 107, 191, 186, 197, 71, 190, 81, 158, 168, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 128, 56, 202, 28, 111, 191, 186, 197, 71, 190, 98, 17, 145, 190, 135, 0, 220, 0, 220, 0, 121, 127, 160, 59, 128, 56, 178, 177, 108, 191, 211, 122, 1, 63, 190, 113, 169, 190, 135, 0, 220, 0, 220, 0, 121, 127, 144, 59, 96, 56, 143, 70, 99, 191, 211, 122, 1, 63, 182, 235, 214, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 96, 56, 6, 94, 92, 191, 186, 197, 71, 190, 216, 147, 235, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 128, 56, 250, 42, 98, 191, 186, 197, 71, 190, 140, 223, 213, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 128, 56, 85, 114, 93, 191, 211, 122, 1, 63, 57, 187, 236, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 96, 56, 201, 26, 105, 191, 211, 122, 1, 63, 52, 28, 193, 190, 144, 0, 197, 0, 197, 0, 112, 127, 128, 59, 96, 56, 250, 42, 98, 191, 186, 197, 71, 190, 140, 223, 213, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 128, 56, 238, 247, 103, 191, 186, 197, 71, 190, 64, 43, 192, 190, 144, 0, 197, 0, 197, 0, 112, 127, 128, 59, 128, 56, 143, 70, 99, 191, 211, 122, 1, 63, 182, 235, 214, 190, 144, 0, 197, 0, 197, 0, 112, 127, 112, 59, 96, 56, 28, 158, 87, 191, 211, 122, 1, 63, 94, 69, 1, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 96, 56, 31, 196, 80, 191, 186, 197, 71, 190, 56, 126, 11, 191, 144, 0, 197, 0, 197, 0, 112, 127, 64, 59, 128, 56, 18, 145, 86, 191, 186, 197, 71, 190, 18, 164, 0, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 128, 56, 226, 201, 81, 191, 211, 122, 1, 63, 31, 45, 12, 191, 144, 0, 197, 0, 197, 0, 112, 127, 64, 59, 96, 56, 85, 114, 93, 191, 211, 122, 1, 63, 57, 187, 236, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 96, 56, 18, 145, 86, 191, 186, 197, 71, 190, 18, 164, 0, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 128, 56, 6, 94, 92, 191, 186, 197, 71, 190, 216, 147, 235, 190, 144, 0, 197, 0, 197, 0, 112, 127, 96, 59, 128, 56, 28, 158, 87, 191, 211, 122, 1, 63, 94, 69, 1, 191, 144, 0, 197, 0, 197, 0, 112, 127, 80, 59, 96, 56, 176, 241, 73, 191, 211, 122, 1, 63, 30, 188, 21, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 96, 56, 78, 39, 65, 191, 186, 197, 71, 190, 90, 132, 30, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 128, 56, 182, 245, 72, 191, 186, 197, 71, 190, 73, 1, 21, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 128, 56, 125, 25, 66, 191, 211, 122, 1, 63, 28, 75, 31, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 96, 56, 226, 201, 81, 191, 211, 122, 1, 63, 31, 45, 12, 191, 158, 0, 176, 0, 176, 0, 98, 127, 64, 59, 96, 56, 182, 245, 72, 191, 186, 197, 71, 190, 73, 1, 21, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 128, 56, 31, 196, 80, 191, 186, 197, 71, 190, 56, 126, 11, 191, 158, 0, 176, 0, 176, 0, 98, 127, 64, 59, 128, 56, 176, 241, 73, 191, 211, 122, 1, 63, 30, 188, 21, 191, 158, 0, 176, 0, 176, 0, 98, 127, 48, 59, 96, 56, 74, 65, 58, 191, 211, 122, 1, 63, 26, 218, 40, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 96, 56, 124, 138, 49, 191, 186, 197, 71, 190, 124, 138, 49, 191, 158, 0, 176, 0, 176, 0, 98, 127, 0, 59, 128, 56, 229, 88, 57, 191, 186, 197, 71, 190, 107, 7, 40, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 128, 56, 24, 105, 50, 191, 211, 122, 1, 63, 24, 105, 50, 191, 158, 0, 176, 0, 176, 0, 98, 127, 0, 59, 96, 56, 125, 25, 66, 191, 211, 122, 1, 63, 28, 75, 31, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 96, 56, 229, 88, 57, 191, 186, 197, 71, 190, 107, 7, 40, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 128, 56, 78, 39, 65, 191, 186, 197, 71, 190, 90, 132, 30, 191, 158, 0, 176, 0, 176, 0, 98, 127, 32, 59, 128, 56, 74, 65, 58, 191, 211, 122, 1, 63, 26, 218, 40, 191, 158, 0, 176, 0, 176, 0, 98, 127, 16, 59, 96, 56, 25, 218, 40, 191, 211, 122, 1, 63, 74, 65, 58, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 96, 56, 89, 132, 30, 191, 186, 197, 71, 190, 76, 39, 65, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 128, 56, 106, 7, 40, 191, 186, 197, 71, 190, 228, 88, 57, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 128, 56, 26, 75, 31, 191, 211, 122, 1, 63, 124, 25, 66, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 96, 56, 24, 105, 50, 191, 211, 122, 1, 63, 24, 105, 50, 191, 176, 0, 158, 0, 158, 0, 80, 127, 0, 59, 96, 56, 106, 7, 40, 191, 186, 197, 71, 190, 228, 88, 57, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 128, 56, 124, 138, 49, 191, 186, 197, 71, 190, 124, 138, 49, 191, 176, 0, 158, 0, 158, 0, 80, 127, 0, 59, 128, 56, 25, 218, 40, 191, 211, 122, 1, 63, 74, 65, 58, 191, 176, 0, 158, 0, 158, 0, 80, 127, 240, 58, 96, 56, 28, 188, 21, 191, 211, 122, 1, 63, 174, 241, 73, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 96, 56, 54, 126, 11, 191, 186, 197, 71, 190, 29, 196, 80, 191, 176, 0, 158, 0, 158, 0, 80, 127, 192, 58, 128, 56, 72, 1, 21, 191, 186, 197, 71, 190, 180, 245, 72, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 128, 56, 29, 45, 12, 191, 211, 122, 1, 63, 224, 201, 81, 191, 176, 0, 158, 0, 158, 0, 80, 127, 192, 58, 96, 56, 26, 75, 31, 191, 211, 122, 1, 63, 124, 25, 66, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 96, 56, 72, 1, 21, 191, 186, 197, 71, 190, 180, 245, 72, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 128, 56, 89, 132, 30, 191, 186, 197, 71, 190, 76, 39, 65, 191, 176, 0, 158, 0, 158, 0, 80, 127, 224, 58, 128, 56, 28, 188, 21, 191, 211, 122, 1, 63, 174, 241, 73, 191, 176, 0, 158, 0, 158, 0, 80, 127, 208, 58, 96, 56, 92, 69, 1, 191, 211, 122, 1, 63, 25, 158, 87, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 96, 56, 211, 147, 235, 190, 186, 197, 71, 190, 4, 94, 92, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 128, 56, 16, 164, 0, 191, 186, 197, 71, 190, 16, 145, 86, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 128, 56, 52, 187, 236, 190, 211, 122, 1, 63, 82, 114, 93, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 96, 56, 29, 45, 12, 191, 211, 122, 1, 63, 224, 201, 81, 191, 197, 0, 144, 0, 144, 0, 59, 127, 192, 58, 96, 56, 16, 164, 0, 191, 186, 197, 71, 190, 16, 145, 86, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 128, 56, 54, 126, 11, 191, 186, 197, 71, 190, 29, 196, 80, 191, 197, 0, 144, 0, 144, 0, 59, 127, 192, 58, 128, 56, 92, 69, 1, 191, 211, 122, 1, 63, 25, 158, 87, 191, 197, 0, 144, 0, 144, 0, 59, 127, 176, 58, 96, 56, 177, 235, 214, 190, 211, 122, 1, 63, 139, 70, 99, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 96, 56, 58, 43, 192, 190, 186, 197, 71, 190, 234, 247, 103, 191, 197, 0, 144, 0, 144, 0, 59, 127, 128, 58, 128, 56, 134, 223, 213, 190, 186, 197, 71, 190, 247, 42, 98, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 128, 56, 46, 28, 193, 190, 211, 122, 1, 63, 196, 26, 105, 191, 197, 0, 144, 0, 144, 0, 59, 127, 128, 58, 96, 56, 52, 187, 236, 190, 211, 122, 1, 63, 82, 114, 93, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 96, 56, 134, 223, 213, 190, 186, 197, 71, 190, 247, 42, 98, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 128, 56, 211, 147, 235, 190, 186, 197, 71, 190, 4, 94, 92, 191, 197, 0, 144, 0, 144, 0, 59, 127, 160, 58, 128, 56, 177, 235, 214, 190, 211, 122, 1, 63, 139, 70, 99, 191, 197, 0, 144, 0, 144, 0, 59, 127, 144, 58, 96, 56, 184, 113, 169, 190, 211, 122, 1, 63, 172, 177, 108, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 96, 56, 92, 17, 145, 190, 186, 197, 71, 190, 197, 28, 111, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 128, 56, 75, 158, 168, 190, 186, 197, 71, 190, 88, 138, 107, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 128, 56, 65, 199, 145, 190, 211, 122, 1, 63, 148, 72, 112, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 96, 56, 46, 28, 193, 190, 211, 122, 1, 63, 196, 26, 105, 191, 220, 0, 135, 0, 135, 0, 36, 127, 128, 58, 96, 56, 75, 158, 168, 190, 186, 197, 71, 190, 88, 138, 107, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 128, 56, 58, 43, 192, 190, 186, 197, 71, 190, 234, 247, 103, 191, 220, 0, 135, 0, 135, 0, 36, 127, 128, 58, 128, 56, 184, 113, 169, 190, 211, 122, 1, 63, 172, 177, 108, 191, 220, 0, 135, 0, 135, 0, 36, 127, 112, 58, 96, 56, 149, 57, 116, 190, 211, 122, 1, 63, 124, 223, 115, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 96, 56, 252, 238, 67, 190, 186, 197, 71, 190, 160, 65, 118, 191, 220, 0, 135, 0, 135, 0, 36, 127, 63, 58, 128, 56, 218, 8, 115, 190, 186, 197, 71, 190, 50, 175, 114, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 128, 56, 168, 228, 68, 190, 211, 122, 1, 63, 100, 118, 119, 191, 220, 0, 135, 0, 135, 0, 36, 127, 63, 58, 96, 56, 65, 199, 145, 190, 211, 122, 1, 63, 148, 72, 112, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 96, 56, 218, 8, 115, 190, 186, 197, 71, 190, 50, 175, 114, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 128, 56, 92, 17, 145, 190, 186, 197, 71, 190, 197, 28, 111, 191, 220, 0, 135, 0, 135, 0, 36, 127, 95, 58, 128, 56, 149, 57, 116, 190, 211, 122, 1, 63, 124, 223, 115, 191, 220, 0, 135, 0, 135, 0, 36, 127, 79, 58, 96, 56, 126, 171, 19, 190, 211, 122, 1, 63, 175, 172, 120, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 96, 56, 252, 238, 195, 189, 186, 197, 71, 190, 48, 171, 120, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 128, 56, 61, 243, 18, 190, 186, 197, 71, 190, 104, 118, 119, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 128, 56, 168, 228, 196, 189, 211, 122, 1, 63, 250, 226, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 96, 56, 168, 228, 68, 190, 211, 122, 1, 63, 100, 118, 119, 191, 244, 0, 130, 0, 130, 0, 12, 127, 63, 58, 96, 56, 61, 243, 18, 190, 186, 197, 71, 190, 104, 118, 119, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 128, 56, 252, 238, 67, 190, 186, 197, 71, 190, 160, 65, 118, 191, 244, 0, 130, 0, 130, 0, 12, 127, 63, 58, 128, 56, 126, 171, 19, 190, 211, 122, 1, 63, 175, 172, 120, 191, 244, 0, 130, 0, 130, 0, 12, 127, 47, 58, 96, 56, 168, 228, 68, 189, 211, 122, 1, 63, 69, 25, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 96, 56, 0, 0, 0, 0, 186, 197, 71, 190, 191, 20, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 0, 58, 127, 56, 252, 238, 67, 189, 186, 197, 71, 190, 248, 223, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 127, 56, 0, 0, 0, 0, 211, 122, 1, 63, 144, 79, 124, 191, 244, 0, 130, 0, 130, 0, 12, 127, 0, 58, 95, 56, 168, 228, 196, 189, 211, 122, 1, 63, 250, 226, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 96, 56, 252, 238, 67, 189, 186, 197, 71, 190, 248, 223, 121, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 127, 56, 252, 238, 195, 189, 186, 197, 71, 190, 48, 171, 120, 191, 244, 0, 130, 0, 130, 0, 12, 127, 31, 58, 128, 56, 168, 228, 68, 189, 211, 122, 1, 63, 69, 25, 123, 191, 244, 0, 130, 0, 130, 0, 12, 127, 16, 58, 96, 56 ), +"array_index_data": PoolByteArray( 0, 0, 2, 0, 1, 0, 3, 0, 0, 0, 1, 0, 4, 0, 6, 0, 5, 0, 7, 0, 4, 0, 5, 0, 8, 0, 10, 0, 9, 0, 8, 0, 9, 0, 11, 0, 12, 0, 14, 0, 13, 0, 15, 0, 12, 0, 13, 0, 16, 0, 18, 0, 17, 0, 19, 0, 21, 0, 20, 0, 19, 0, 20, 0, 22, 0, 22, 0, 20, 0, 23, 0, 22, 0, 23, 0, 24, 0, 19, 0, 22, 0, 25, 0, 26, 0, 28, 0, 27, 0, 26, 0, 27, 0, 29, 0, 30, 0, 32, 0, 31, 0, 30, 0, 31, 0, 33, 0, 34, 0, 36, 0, 35, 0, 34, 0, 35, 0, 37, 0, 38, 0, 40, 0, 39, 0, 41, 0, 38, 0, 39, 0, 42, 0, 44, 0, 43, 0, 42, 0, 43, 0, 45, 0, 46, 0, 48, 0, 47, 0, 46, 0, 47, 0, 49, 0, 50, 0, 52, 0, 51, 0, 53, 0, 55, 0, 54, 0, 53, 0, 54, 0, 56, 0, 56, 0, 54, 0, 57, 0, 53, 0, 56, 0, 58, 0, 59, 0, 56, 0, 57, 0, 60, 0, 62, 0, 61, 0, 60, 0, 61, 0, 63, 0, 64, 0, 66, 0, 65, 0, 67, 0, 69, 0, 68, 0, 67, 0, 68, 0, 70, 0, 71, 0, 67, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 72, 0, 70, 0, 74, 0, 76, 0, 75, 0, 74, 0, 75, 0, 77, 0, 78, 0, 80, 0, 79, 0, 81, 0, 78, 0, 79, 0, 82, 0, 84, 0, 83, 0, 82, 0, 83, 0, 85, 0, 86, 0, 88, 0, 87, 0, 86, 0, 87, 0, 89, 0, 90, 0, 92, 0, 91, 0, 90, 0, 91, 0, 93, 0, 94, 0, 96, 0, 95, 0, 97, 0, 94, 0, 95, 0, 98, 0, 100, 0, 99, 0, 98, 0, 99, 0, 101, 0, 102, 0, 104, 0, 103, 0, 105, 0, 102, 0, 103, 0, 106, 0, 108, 0, 107, 0, 106, 0, 107, 0, 109, 0, 110, 0, 112, 0, 111, 0, 113, 0, 115, 0, 114, 0, 113, 0, 114, 0, 116, 0, 117, 0, 113, 0, 116, 0, 118, 0, 117, 0, 116, 0, 119, 0, 118, 0, 116, 0, 120, 0, 122, 0, 121, 0, 123, 0, 120, 0, 121, 0, 124, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 127, 0, 128, 0, 130, 0, 127, 0, 130, 0, 131, 0, 132, 0, 127, 0, 131, 0, 133, 0, 132, 0, 131, 0, 134, 0, 136, 0, 135, 0, 134, 0, 135, 0, 137, 0, 138, 0, 140, 0, 139, 0, 138, 0, 139, 0, 141, 0, 142, 0, 144, 0, 143, 0, 142, 0, 143, 0, 145, 0, 146, 0, 148, 0, 147, 0, 149, 0, 146, 0, 147, 0, 150, 0, 152, 0, 151, 0, 150, 0, 151, 0, 153, 0, 154, 0, 156, 0, 155, 0, 157, 0, 154, 0, 155, 0, 158, 0, 160, 0, 159, 0, 161, 0, 158, 0, 159, 0, 162, 0, 164, 0, 163, 0, 162, 0, 163, 0, 165, 0, 166, 0, 168, 0, 167, 0, 169, 0, 171, 0, 170, 0, 169, 0, 170, 0, 172, 0, 172, 0, 170, 0, 173, 0, 173, 0, 170, 0, 174, 0, 175, 0, 173, 0, 174, 0, 176, 0, 178, 0, 177, 0, 176, 0, 177, 0, 179, 0, 180, 0, 182, 0, 181, 0, 183, 0, 185, 0, 184, 0, 186, 0, 183, 0, 187, 0, 187, 0, 183, 0, 184, 0, 188, 0, 187, 0, 184, 0, 189, 0, 188, 0, 184, 0, 190, 0, 192, 0, 191, 0, 193, 0, 190, 0, 191, 0, 194, 0, 196, 0, 195, 0, 194, 0, 195, 0, 197, 0, 198, 0, 200, 0, 199, 0, 201, 0, 198, 0, 199, 0, 202, 0, 204, 0, 203, 0, 202, 0, 203, 0, 205, 0, 206, 0, 208, 0, 207, 0, 209, 0, 206, 0, 207, 0, 210, 0, 212, 0, 211, 0, 213, 0, 210, 0, 211, 0, 214, 0, 216, 0, 215, 0, 214, 0, 215, 0, 217, 0, 218, 0, 220, 0, 219, 0, 218, 0, 219, 0, 221, 0, 222, 0, 224, 0, 223, 0, 225, 0, 227, 0, 226, 0, 225, 0, 226, 0, 228, 0, 228, 0, 226, 0, 229, 0, 225, 0, 228, 0, 230, 0, 225, 0, 230, 0, 231, 0, 232, 0, 234, 0, 233, 0, 232, 0, 233, 0, 235, 0, 236, 0, 238, 0, 237, 0, 239, 0, 236, 0, 237, 0, 240, 0, 242, 0, 241, 0, 240, 0, 241, 0, 243, 0, 243, 0, 241, 0, 244, 0, 244, 0, 241, 0, 245, 0, 246, 0, 244, 0, 245, 0, 247, 0, 249, 0, 248, 0, 247, 0, 248, 0, 250, 0, 251, 0, 253, 0, 252, 0, 254, 0, 251, 0, 252, 0, 255, 0, 1, 1, 0, 1, 255, 0, 0, 1, 2, 1, 3, 1, 5, 1, 4, 1, 3, 1, 4, 1, 6, 1, 7, 1, 9, 1, 8, 1, 7, 1, 8, 1, 10, 1, 11, 1, 13, 1, 12, 1, 14, 1, 16, 1, 15, 1, 14, 1, 15, 1, 17, 1, 18, 1, 20, 1, 19, 1, 21, 1, 18, 1, 19, 1, 22, 1, 24, 1, 23, 1, 25, 1, 22, 1, 23, 1, 26, 1, 28, 1, 27, 1, 29, 1, 31, 1, 30, 1, 29, 1, 30, 1, 32, 1, 33, 1, 29, 1, 32, 1, 34, 1, 33, 1, 32, 1, 35, 1, 34, 1, 32, 1, 36, 1, 38, 1, 37, 1, 39, 1, 36, 1, 37, 1, 40, 1, 42, 1, 41, 1, 40, 1, 41, 1, 43, 1, 44, 1, 46, 1, 45, 1, 44, 1, 45, 1, 47, 1, 47, 1, 45, 1, 48, 1, 48, 1, 45, 1, 49, 1, 49, 1, 45, 1, 50, 1, 51, 1, 53, 1, 52, 1, 51, 1, 52, 1, 54, 1, 55, 1, 57, 1, 56, 1, 55, 1, 56, 1, 58, 1, 59, 1, 61, 1, 60, 1, 59, 1, 60, 1, 62, 1, 63, 1, 65, 1, 64, 1, 63, 1, 64, 1, 66, 1, 67, 1, 69, 1, 68, 1, 67, 1, 68, 1, 70, 1, 71, 1, 73, 1, 72, 1, 74, 1, 76, 1, 75, 1, 77, 1, 74, 1, 75, 1, 78, 1, 80, 1, 79, 1, 81, 1, 78, 1, 79, 1, 82, 1, 84, 1, 83, 1, 85, 1, 87, 1, 86, 1, 88, 1, 85, 1, 86, 1, 88, 1, 86, 1, 89, 1, 90, 1, 88, 1, 89, 1, 91, 1, 90, 1, 89, 1, 92, 1, 94, 1, 93, 1, 95, 1, 92, 1, 93, 1, 96, 1, 98, 1, 97, 1, 99, 1, 96, 1, 97, 1, 100, 1, 102, 1, 101, 1, 100, 1, 101, 1, 103, 1, 104, 1, 106, 1, 105, 1, 104, 1, 105, 1, 107, 1, 107, 1, 105, 1, 108, 1, 108, 1, 105, 1, 109, 1, 110, 1, 107, 1, 108, 1, 111, 1, 113, 1, 112, 1, 111, 1, 112, 1, 114, 1, 115, 1, 117, 1, 116, 1, 115, 1, 116, 1, 118, 1, 119, 1, 121, 1, 120, 1, 122, 1, 119, 1, 120, 1, 123, 1, 125, 1, 124, 1, 123, 1, 124, 1, 126, 1, 127, 1, 129, 1, 128, 1, 127, 1, 128, 1, 130, 1, 131, 1, 133, 1, 132, 1, 134, 1, 136, 1, 135, 1, 134, 1, 135, 1, 137, 1, 138, 1, 140, 1, 139, 1, 141, 1, 138, 1, 139, 1, 142, 1, 144, 1, 143, 1, 145, 1, 147, 1, 146, 1, 145, 1, 146, 1, 148, 1, 149, 1, 145, 1, 148, 1, 150, 1, 149, 1, 148, 1, 151, 1, 150, 1, 148, 1, 152, 1, 154, 1, 153, 1, 152, 1, 153, 1, 155, 1, 156, 1, 158, 1, 157, 1, 156, 1, 157, 1, 159, 1, 160, 1, 162, 1, 161, 1, 160, 1, 161, 1, 163, 1, 164, 1, 166, 1, 165, 1, 167, 1, 164, 1, 165, 1, 168, 1, 170, 1, 169, 1, 168, 1, 169, 1, 171, 1, 172, 1, 174, 1, 173, 1, 175, 1, 172, 1, 173, 1, 176, 1, 178, 1, 177, 1, 176, 1, 177, 1, 179, 1, 180, 1, 182, 1, 181, 1, 183, 1, 180, 1, 181, 1, 184, 1, 186, 1, 185, 1, 187, 1, 189, 1, 188, 1, 187, 1, 188, 1, 190, 1, 191, 1, 187, 1, 190, 1, 192, 1, 191, 1, 190, 1, 193, 1, 192, 1, 190, 1, 194, 1, 196, 1, 195, 1, 194, 1, 195, 1, 197, 1, 198, 1, 200, 1, 199, 1, 201, 1, 203, 1, 202, 1, 201, 1, 202, 1, 204, 1, 204, 1, 202, 1, 205, 1, 201, 1, 204, 1, 206, 1, 207, 1, 204, 1, 205, 1, 208, 1, 210, 1, 209, 1, 211, 1, 208, 1, 209, 1, 212, 1, 214, 1, 213, 1, 212, 1, 213, 1, 215, 1, 216, 1, 218, 1, 217, 1, 216, 1, 217, 1, 219, 1, 220, 1, 222, 1, 221, 1, 223, 1, 220, 1, 221, 1, 224, 1, 226, 1, 225, 1, 227, 1, 224, 1, 225, 1, 228, 1, 230, 1, 229, 1, 228, 1, 229, 1, 231, 1, 232, 1, 234, 1, 233, 1, 235, 1, 232, 1, 233, 1, 236, 1, 238, 1, 237, 1, 239, 1, 236, 1, 237, 1, 240, 1, 242, 1, 241, 1, 243, 1, 245, 1, 244, 1, 246, 1, 243, 1, 244, 1, 247, 1, 246, 1, 244, 1, 248, 1, 247, 1, 244, 1, 249, 1, 248, 1, 244, 1, 250, 1, 252, 1, 251, 1, 250, 1, 251, 1, 253, 1, 254, 1, 0, 2, 255, 1, 1, 2, 3, 2, 2, 2, 1, 2, 2, 2, 4, 2, 4, 2, 2, 2, 5, 2, 1, 2, 4, 2, 6, 2, 7, 2, 4, 2, 5, 2, 8, 2, 10, 2, 9, 2, 11, 2, 8, 2, 9, 2, 12, 2, 14, 2, 13, 2, 12, 2, 13, 2, 15, 2, 16, 2, 18, 2, 17, 2, 16, 2, 17, 2, 19, 2, 20, 2, 22, 2, 21, 2, 23, 2, 20, 2, 21, 2, 24, 2, 26, 2, 25, 2, 24, 2, 25, 2, 27, 2, 28, 2, 30, 2, 29, 2, 28, 2, 29, 2, 31, 2, 32, 2, 34, 2, 33, 2, 35, 2, 32, 2, 33, 2, 36, 2, 38, 2, 37, 2, 36, 2, 37, 2, 39, 2, 40, 2, 42, 2, 41, 2, 40, 2, 41, 2, 43, 2, 44, 2, 46, 2, 45, 2, 47, 2, 49, 2, 48, 2, 47, 2, 48, 2, 50, 2, 50, 2, 48, 2, 51, 2, 52, 2, 47, 2, 53, 2, 53, 2, 47, 2, 50, 2, 54, 2, 56, 2, 55, 2, 54, 2, 55, 2, 57, 2, 58, 2, 60, 2, 59, 2, 61, 2, 63, 2, 62, 2, 61, 2, 62, 2, 64, 2, 64, 2, 62, 2, 65, 2, 65, 2, 62, 2, 66, 2, 66, 2, 62, 2, 67, 2, 68, 2, 70, 2, 69, 2, 68, 2, 69, 2, 71, 2, 72, 2, 74, 2, 73, 2, 72, 2, 73, 2, 75, 2, 76, 2, 78, 2, 77, 2, 79, 2, 76, 2, 77, 2, 80, 2, 82, 2, 81, 2, 83, 2, 80, 2, 81, 2, 84, 2, 86, 2, 85, 2, 84, 2, 85, 2, 87, 2, 88, 2, 90, 2, 89, 2, 88, 2, 89, 2, 91, 2, 92, 2, 94, 2, 93, 2, 95, 2, 92, 2, 93, 2, 96, 2, 98, 2, 97, 2, 99, 2, 96, 2, 97, 2, 100, 2, 102, 2, 101, 2, 103, 2, 105, 2, 104, 2, 103, 2, 104, 2, 106, 2, 106, 2, 104, 2, 107, 2, 103, 2, 106, 2, 108, 2, 109, 2, 103, 2, 108, 2, 110, 2, 112, 2, 111, 2, 113, 2, 110, 2, 111, 2, 114, 2, 116, 2, 115, 2, 117, 2, 114, 2, 115, 2, 118, 2, 120, 2, 119, 2, 118, 2, 119, 2, 121, 2, 122, 2, 118, 2, 121, 2, 123, 2, 122, 2, 121, 2, 124, 2, 123, 2, 121, 2, 125, 2, 127, 2, 126, 2, 128, 2, 125, 2, 126, 2, 129, 2, 131, 2, 130, 2, 129, 2, 130, 2, 132, 2, 133, 2, 135, 2, 134, 2, 136, 2, 133, 2, 134, 2, 137, 2, 139, 2, 138, 2, 137, 2, 138, 2, 140, 2, 141, 2, 143, 2, 142, 2, 144, 2, 141, 2, 142, 2, 145, 2, 147, 2, 146, 2, 148, 2, 150, 2, 149, 2, 148, 2, 149, 2, 151, 2, 152, 2, 154, 2, 153, 2, 155, 2, 152, 2, 153, 2, 156, 2, 158, 2, 157, 2, 156, 2, 157, 2, 159, 2, 160, 2, 162, 2, 161, 2, 163, 2, 165, 2, 164, 2, 163, 2, 164, 2, 166, 2, 167, 2, 163, 2, 166, 2, 168, 2, 167, 2, 166, 2, 169, 2, 168, 2, 166, 2, 170, 2, 172, 2, 171, 2, 173, 2, 170, 2, 171, 2, 174, 2, 176, 2, 175, 2, 174, 2, 175, 2, 177, 2, 178, 2, 180, 2, 179, 2, 178, 2, 179, 2, 181, 2, 182, 2, 178, 2, 181, 2, 183, 2, 182, 2, 181, 2, 184, 2, 183, 2, 181, 2, 185, 2, 187, 2, 186, 2, 188, 2, 185, 2, 186, 2, 189, 2, 191, 2, 190, 2, 189, 2, 190, 2, 192, 2, 193, 2, 195, 2, 194, 2, 193, 2, 194, 2, 196, 2, 197, 2, 199, 2, 198, 2, 197, 2, 198, 2, 200, 2, 201, 2, 203, 2, 202, 2, 204, 2, 201, 2, 202, 2, 205, 2, 207, 2, 206, 2, 208, 2, 210, 2, 209, 2, 208, 2, 209, 2, 211, 2, 212, 2, 214, 2, 213, 2, 212, 2, 213, 2, 215, 2, 216, 2, 218, 2, 217, 2, 219, 2, 221, 2, 220, 2, 219, 2, 220, 2, 222, 2, 223, 2, 219, 2, 222, 2, 224, 2, 223, 2, 222, 2, 225, 2, 224, 2, 222, 2, 226, 2, 228, 2, 227, 2, 229, 2, 226, 2, 227, 2, 230, 2, 232, 2, 231, 2, 230, 2, 231, 2, 233, 2, 234, 2, 236, 2, 235, 2, 234, 2, 235, 2, 237, 2, 238, 2, 240, 2, 239, 2, 241, 2, 238, 2, 239, 2, 242, 2, 244, 2, 243, 2, 242, 2, 243, 2, 245, 2, 246, 2, 248, 2, 247, 2, 249, 2, 246, 2, 247, 2, 250, 2, 252, 2, 251, 2, 250, 2, 251, 2, 253, 2, 254, 2, 0, 3, 255, 2, 1, 3, 254, 2, 255, 2, 2, 3, 4, 3, 3, 3, 5, 3, 7, 3, 6, 3, 5, 3, 6, 3, 8, 3, 8, 3, 6, 3, 9, 3, 10, 3, 8, 3, 9, 3, 11, 3, 10, 3, 9, 3, 12, 3, 14, 3, 13, 3, 12, 3, 13, 3, 15, 3, 16, 3, 18, 3, 17, 3, 19, 3, 21, 3, 20, 3, 19, 3, 20, 3, 22, 3, 22, 3, 20, 3, 23, 3, 23, 3, 20, 3, 24, 3, 25, 3, 22, 3, 23, 3, 26, 3, 28, 3, 27, 3, 26, 3, 27, 3, 29, 3, 30, 3, 32, 3, 31, 3, 30, 3, 31, 3, 33, 3, 34, 3, 36, 3, 35, 3, 34, 3, 35, 3, 37, 3, 38, 3, 40, 3, 39, 3, 41, 3, 38, 3, 39, 3, 42, 3, 44, 3, 43, 3, 42, 3, 43, 3, 45, 3, 46, 3, 48, 3, 47, 3, 46, 3, 47, 3, 49, 3, 50, 3, 52, 3, 51, 3, 53, 3, 50, 3, 51, 3, 54, 3, 56, 3, 55, 3, 54, 3, 55, 3, 57, 3, 58, 3, 60, 3, 59, 3, 61, 3, 58, 3, 59, 3, 62, 3, 64, 3, 63, 3, 65, 3, 67, 3, 66, 3, 65, 3, 66, 3, 68, 3, 68, 3, 66, 3, 69, 3, 70, 3, 68, 3, 71, 3, 71, 3, 68, 3, 69, 3, 72, 3, 74, 3, 73, 3, 72, 3, 73, 3, 75, 3, 76, 3, 78, 3, 77, 3, 79, 3, 81, 3, 80, 3, 79, 3, 80, 3, 82, 3, 83, 3, 79, 3, 82, 3, 84, 3, 83, 3, 82, 3, 85, 3, 84, 3, 82, 3, 86, 3, 88, 3, 87, 3, 86, 3, 87, 3, 89, 3, 90, 3, 92, 3, 91, 3, 93, 3, 90, 3, 91, 3, 94, 3, 96, 3, 95, 3, 94, 3, 95, 3, 97, 3, 98, 3, 100, 3, 99, 3, 98, 3, 99, 3, 101, 3, 102, 3, 104, 3, 103, 3, 102, 3, 103, 3, 105, 3, 106, 3, 108, 3, 107, 3, 109, 3, 106, 3, 107, 3, 110, 3, 112, 3, 111, 3, 110, 3, 111, 3, 113, 3, 114, 3, 116, 3, 115, 3, 117, 3, 114, 3, 115, 3, 118, 3, 120, 3, 119, 3, 121, 3, 123, 3, 122, 3, 121, 3, 122, 3, 124, 3, 124, 3, 122, 3, 125, 3, 121, 3, 124, 3, 126, 3, 127, 3, 121, 3, 126, 3, 128, 3, 130, 3, 129, 3, 128, 3, 129, 3, 131, 3, 132, 3, 134, 3, 133, 3, 135, 3, 137, 3, 136, 3, 135, 3, 136, 3, 138, 3, 138, 3, 136, 3, 139, 3, 135, 3, 138, 3, 140, 3, 141, 3, 135, 3, 140, 3, 142, 3, 144, 3, 143, 3, 145, 3, 142, 3, 143, 3, 146, 3, 148, 3, 147, 3, 146, 3, 147, 3, 149, 3, 150, 3, 152, 3, 151, 3, 150, 3, 151, 3, 153, 3, 154, 3, 156, 3, 155, 3, 157, 3, 154, 3, 155, 3, 158, 3, 160, 3, 159, 3, 161, 3, 158, 3, 159, 3, 162, 3, 164, 3, 163, 3, 162, 3, 163, 3, 165, 3, 166, 3, 168, 3, 167, 3, 166, 3, 167, 3, 169, 3, 170, 3, 172, 3, 171, 3, 173, 3, 170, 3, 171, 3, 174, 3, 176, 3, 175, 3, 174, 3, 175, 3, 177, 3, 178, 3, 180, 3, 179, 3, 181, 3, 183, 3, 182, 3, 184, 3, 181, 3, 185, 3, 185, 3, 181, 3, 182, 3, 186, 3, 185, 3, 187, 3, 187, 3, 185, 3, 182, 3, 188, 3, 190, 3, 189, 3, 188, 3, 189, 3, 191, 3, 192, 3, 194, 3, 193, 3, 192, 3, 193, 3, 195, 3, 196, 3, 198, 3, 197, 3, 196, 3, 197, 3, 199, 3, 200, 3, 202, 3, 201, 3, 200, 3, 201, 3, 203, 3, 204, 3, 206, 3, 205, 3, 204, 3, 205, 3, 207, 3, 208, 3, 210, 3, 209, 3, 208, 3, 209, 3, 211, 3, 212, 3, 214, 3, 213, 3, 212, 3, 213, 3, 215, 3, 216, 3, 218, 3, 217, 3, 216, 3, 217, 3, 219, 3, 220, 3, 222, 3, 221, 3, 220, 3, 221, 3, 223, 3, 224, 3, 226, 3, 225, 3, 224, 3, 225, 3, 227, 3, 228, 3, 230, 3, 229, 3, 228, 3, 229, 3, 231, 3, 232, 3, 234, 3, 233, 3, 232, 3, 233, 3, 235, 3, 236, 3, 238, 3, 237, 3, 236, 3, 237, 3, 239, 3, 240, 3, 242, 3, 241, 3, 240, 3, 241, 3, 243, 3, 244, 3, 246, 3, 245, 3, 244, 3, 245, 3, 247, 3, 248, 3, 250, 3, 249, 3, 248, 3, 249, 3, 251, 3, 252, 3, 254, 3, 253, 3, 252, 3, 253, 3, 255, 3, 0, 4, 2, 4, 1, 4, 0, 4, 1, 4, 3, 4, 4, 4, 6, 4, 5, 4, 4, 4, 5, 4, 7, 4, 8, 4, 10, 4, 9, 4, 8, 4, 9, 4, 11, 4, 12, 4, 14, 4, 13, 4, 12, 4, 13, 4, 15, 4, 16, 4, 18, 4, 17, 4, 16, 4, 17, 4, 19, 4, 20, 4, 22, 4, 21, 4, 20, 4, 21, 4, 23, 4, 24, 4, 26, 4, 25, 4, 24, 4, 25, 4, 27, 4, 28, 4, 30, 4, 29, 4, 28, 4, 29, 4, 31, 4, 32, 4, 34, 4, 33, 4, 32, 4, 33, 4, 35, 4, 36, 4, 38, 4, 37, 4, 36, 4, 37, 4, 39, 4, 40, 4, 42, 4, 41, 4, 40, 4, 41, 4, 43, 4, 44, 4, 46, 4, 45, 4, 44, 4, 45, 4, 47, 4, 48, 4, 50, 4, 49, 4, 48, 4, 49, 4, 51, 4, 52, 4, 54, 4, 53, 4, 52, 4, 53, 4, 55, 4, 56, 4, 58, 4, 57, 4, 56, 4, 57, 4, 59, 4, 60, 4, 62, 4, 61, 4, 60, 4, 61, 4, 63, 4, 64, 4, 66, 4, 65, 4, 64, 4, 65, 4, 67, 4, 68, 4, 70, 4, 69, 4, 68, 4, 69, 4, 71, 4, 72, 4, 74, 4, 73, 4, 72, 4, 73, 4, 75, 4, 76, 4, 78, 4, 77, 4, 76, 4, 77, 4, 79, 4, 80, 4, 82, 4, 81, 4, 80, 4, 81, 4, 83, 4, 84, 4, 86, 4, 85, 4, 84, 4, 85, 4, 87, 4, 88, 4, 90, 4, 89, 4, 88, 4, 89, 4, 91, 4, 92, 4, 94, 4, 93, 4, 92, 4, 93, 4, 95, 4, 96, 4, 98, 4, 97, 4, 96, 4, 97, 4, 99, 4, 100, 4, 102, 4, 101, 4, 100, 4, 101, 4, 103, 4, 104, 4, 106, 4, 105, 4, 104, 4, 105, 4, 107, 4, 108, 4, 110, 4, 109, 4, 108, 4, 109, 4, 111, 4, 112, 4, 114, 4, 113, 4, 112, 4, 113, 4, 115, 4, 116, 4, 118, 4, 117, 4, 116, 4, 117, 4, 119, 4, 120, 4, 122, 4, 121, 4, 120, 4, 121, 4, 123, 4, 124, 4, 126, 4, 125, 4, 124, 4, 125, 4, 127, 4, 128, 4, 130, 4, 129, 4, 128, 4, 129, 4, 131, 4, 132, 4, 134, 4, 133, 4, 132, 4, 133, 4, 135, 4, 136, 4, 138, 4, 137, 4, 136, 4, 137, 4, 139, 4, 140, 4, 142, 4, 141, 4, 140, 4, 141, 4, 143, 4, 144, 4, 146, 4, 145, 4, 144, 4, 145, 4, 147, 4, 148, 4, 150, 4, 149, 4, 148, 4, 149, 4, 151, 4, 152, 4, 154, 4, 153, 4, 152, 4, 153, 4, 155, 4, 156, 4, 158, 4, 157, 4, 156, 4, 157, 4, 159, 4, 160, 4, 162, 4, 161, 4, 160, 4, 161, 4, 163, 4, 164, 4, 166, 4, 165, 4, 164, 4, 165, 4, 167, 4, 168, 4, 170, 4, 169, 4, 168, 4, 169, 4, 171, 4, 172, 4, 174, 4, 173, 4, 172, 4, 173, 4, 175, 4, 176, 4, 178, 4, 177, 4, 176, 4, 177, 4, 179, 4, 180, 4, 182, 4, 181, 4, 180, 4, 181, 4, 183, 4, 184, 4, 186, 4, 185, 4, 184, 4, 185, 4, 187, 4, 188, 4, 190, 4, 189, 4, 188, 4, 189, 4, 191, 4, 192, 4, 194, 4, 193, 4, 192, 4, 193, 4, 195, 4, 196, 4, 198, 4, 197, 4, 196, 4, 197, 4, 199, 4, 200, 4, 202, 4, 201, 4, 200, 4, 201, 4, 203, 4, 204, 4, 206, 4, 205, 4, 204, 4, 205, 4, 207, 4, 208, 4, 210, 4, 209, 4, 208, 4, 209, 4, 211, 4, 212, 4, 214, 4, 213, 4, 212, 4, 213, 4, 215, 4, 216, 4, 218, 4, 217, 4, 216, 4, 217, 4, 219, 4, 220, 4, 222, 4, 221, 4, 220, 4, 221, 4, 223, 4, 224, 4, 226, 4, 225, 4, 224, 4, 225, 4, 227, 4, 228, 4, 230, 4, 229, 4, 228, 4, 229, 4, 231, 4, 232, 4, 234, 4, 233, 4, 232, 4, 233, 4, 235, 4, 236, 4, 238, 4, 237, 4, 236, 4, 237, 4, 239, 4, 240, 4, 242, 4, 241, 4, 240, 4, 241, 4, 243, 4, 244, 4, 246, 4, 245, 4, 244, 4, 245, 4, 247, 4, 248, 4, 250, 4, 249, 4, 248, 4, 249, 4, 251, 4, 252, 4, 254, 4, 253, 4, 252, 4, 253, 4, 255, 4, 0, 5, 2, 5, 1, 5, 0, 5, 1, 5, 3, 5, 4, 5, 6, 5, 5, 5, 4, 5, 5, 5, 7, 5, 8, 5, 10, 5, 9, 5, 8, 5, 9, 5, 11, 5, 12, 5, 14, 5, 13, 5, 12, 5, 13, 5, 15, 5, 16, 5, 18, 5, 17, 5, 16, 5, 17, 5, 19, 5, 20, 5, 22, 5, 21, 5, 20, 5, 21, 5, 23, 5, 24, 5, 26, 5, 25, 5, 24, 5, 25, 5, 27, 5, 28, 5, 30, 5, 29, 5, 28, 5, 29, 5, 31, 5, 32, 5, 34, 5, 33, 5, 32, 5, 33, 5, 35, 5, 36, 5, 38, 5, 37, 5, 36, 5, 37, 5, 39, 5, 40, 5, 42, 5, 41, 5, 40, 5, 41, 5, 43, 5, 44, 5, 46, 5, 45, 5, 44, 5, 45, 5, 47, 5, 48, 5, 50, 5, 49, 5, 48, 5, 49, 5, 51, 5, 52, 5, 54, 5, 53, 5, 52, 5, 53, 5, 55, 5, 56, 5, 58, 5, 57, 5, 56, 5, 57, 5, 59, 5, 60, 5, 62, 5, 61, 5, 60, 5, 61, 5, 63, 5, 64, 5, 66, 5, 65, 5, 64, 5, 65, 5, 67, 5, 68, 5, 70, 5, 69, 5, 68, 5, 69, 5, 71, 5, 72, 5, 74, 5, 73, 5, 72, 5, 73, 5, 75, 5, 76, 5, 78, 5, 77, 5, 76, 5, 77, 5, 79, 5, 80, 5, 82, 5, 81, 5, 83, 5, 80, 5, 81, 5, 84, 5, 86, 5, 85, 5, 84, 5, 85, 5, 87, 5, 88, 5, 90, 5, 89, 5, 88, 5, 89, 5, 91, 5, 92, 5, 94, 5, 93, 5, 92, 5, 93, 5, 95, 5, 96, 5, 98, 5, 97, 5, 96, 5, 97, 5, 99, 5, 100, 5, 102, 5, 101, 5, 100, 5, 101, 5, 103, 5, 104, 5, 106, 5, 105, 5, 104, 5, 105, 5, 107, 5, 108, 5, 110, 5, 109, 5, 108, 5, 109, 5, 111, 5, 112, 5, 114, 5, 113, 5, 112, 5, 113, 5, 115, 5, 116, 5, 118, 5, 117, 5, 116, 5, 117, 5, 119, 5, 120, 5, 122, 5, 121, 5, 120, 5, 121, 5, 123, 5, 124, 5, 126, 5, 125, 5, 124, 5, 125, 5, 127, 5, 128, 5, 130, 5, 129, 5, 128, 5, 129, 5, 131, 5, 132, 5, 134, 5, 133, 5, 132, 5, 133, 5, 135, 5, 136, 5, 138, 5, 137, 5, 136, 5, 137, 5, 139, 5, 140, 5, 142, 5, 141, 5, 140, 5, 141, 5, 143, 5, 144, 5, 146, 5, 145, 5, 144, 5, 145, 5, 147, 5, 148, 5, 150, 5, 149, 5, 148, 5, 149, 5, 151, 5, 152, 5, 154, 5, 153, 5, 152, 5, 153, 5, 155, 5, 156, 5, 158, 5, 157, 5, 156, 5, 157, 5, 159, 5, 160, 5, 162, 5, 161, 5, 160, 5, 161, 5, 163, 5, 164, 5, 166, 5, 165, 5, 164, 5, 165, 5, 167, 5, 168, 5, 170, 5, 169, 5, 168, 5, 169, 5, 171, 5, 172, 5, 174, 5, 173, 5, 172, 5, 173, 5, 175, 5, 176, 5, 178, 5, 177, 5, 176, 5, 177, 5, 179, 5, 180, 5, 182, 5, 181, 5, 180, 5, 181, 5, 183, 5, 184, 5, 186, 5, 185, 5, 184, 5, 185, 5, 187, 5, 188, 5, 190, 5, 189, 5, 188, 5, 189, 5, 191, 5 ), +"blend_shape_data": [ ], +"format": 97559, +"index_count": 2304, +"material": ExtResource( 2 ), +"primitive": 4, +"skeleton_aabb": [ ], +"vertex_count": 1472 +} + +[node name="Pills" type="Spatial"] + +[node name="TrueForm" type="MeshInstance" parent="."] +layers = 2 +mesh = SubResource( 1 ) +material/0 = null +material/1 = null + +[node name="TrueFormImport" parent="." instance=ExtResource( 3 )] +visible = false From 790734e2c1a735a03ea5fba626c4415cd0b016cd Mon Sep 17 00:00:00 2001 From: karl Date: Thu, 21 Nov 2019 13:26:35 +0100 Subject: [PATCH 10/14] Add door open, door close sound effect files --- Resources/Audio/DoorClose.wav | Bin 0 -> 64752 bytes Resources/Audio/DoorClose.wav.import | 21 +++++++++++++++++++++ Resources/Audio/DoorOpen.wav | Bin 0 -> 64752 bytes Resources/Audio/DoorOpen.wav.import | 21 +++++++++++++++++++++ 4 files changed, 42 insertions(+) create mode 100644 Resources/Audio/DoorClose.wav create mode 100644 Resources/Audio/DoorClose.wav.import create mode 100644 Resources/Audio/DoorOpen.wav create mode 100644 Resources/Audio/DoorOpen.wav.import diff --git a/Resources/Audio/DoorClose.wav b/Resources/Audio/DoorClose.wav new file mode 100644 index 0000000000000000000000000000000000000000..c61d9a6e45045e03e61e7385fd811f8359418f80 GIT binary patch literal 64752 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 literal 0 HcmV?d00001 diff --git a/Resources/Audio/DoorOpen.wav.import b/Resources/Audio/DoorOpen.wav.import new file mode 100644 index 0000000..9e97684 --- /dev/null +++ b/Resources/Audio/DoorOpen.wav.import @@ -0,0 +1,21 @@ +[remap] + +importer="wav" +type="AudioStreamSample" +path="res://.import/DoorOpen.wav-053df945fc1e6b8ed535511515244f05.sample" + +[deps] + +source_file="res://Resources/Audio/DoorOpen.wav" +dest_files=[ "res://.import/DoorOpen.wav-053df945fc1e6b8ed535511515244f05.sample" ] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=true +edit/normalize=true +edit/loop=false +compress/mode=0 From 32ebab464be1ea5d5c6d4ea6faa2c505cae0cb49 Mon Sep 17 00:00:00 2001 From: karl Date: Thu, 21 Nov 2019 13:26:51 +0100 Subject: [PATCH 11/14] Add logger trace when footstep sound should play Sound is not working currently on my machine... need to test --- Characters/Player/Footsteps.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/Characters/Player/Footsteps.gd b/Characters/Player/Footsteps.gd index 2f1b23f..b2f01ff 100644 --- a/Characters/Player/Footsteps.gd +++ b/Characters/Player/Footsteps.gd @@ -7,4 +7,5 @@ onready var steps = [ func play_footstep(): + Logger.trace("Footstep") steps[0].play() \ No newline at end of file From da7780fe818bb9755a017651398ea2da64dff0d6 Mon Sep 17 00:00:00 2001 From: SyntaX Date: Thu, 21 Nov 2019 13:31:52 +0100 Subject: [PATCH 12/14] animation for pill taking --- Characters/Player/PillTaker.gd | 11 +++++++++ Characters/Player/Player.tscn | 45 ++++++++++++++++++++++++++++------ 2 files changed, 49 insertions(+), 7 deletions(-) diff --git a/Characters/Player/PillTaker.gd b/Characters/Player/PillTaker.gd index b5221cf..e33efe9 100644 --- a/Characters/Player/PillTaker.gd +++ b/Characters/Player/PillTaker.gd @@ -1,5 +1,7 @@ extends Spatial +var _animation: AnimationPlayer + # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta): @@ -7,3 +9,12 @@ func _process(delta): if Input.is_action_just_pressed("take_pill"): Pills.take_pill() Logger.info("Player took a pill; new level: %s" % [Pills.get_round_level()]) + _animation.play("PillTaking") + + #_animation.playback_speed = _vel.length() / MOVE_SPEED + #Logger.warn("speed: " + String(_animation.playback_speed)) + + +func _ready(): + _animation = get_parent().get_node("AnimationPlayer") as AnimationPlayer + assert(null != _animation) \ No newline at end of file diff --git a/Characters/Player/Player.tscn b/Characters/Player/Player.tscn index 4b1b6c6..4fbf5d9 100644 --- a/Characters/Player/Player.tscn +++ b/Characters/Player/Player.tscn @@ -25,13 +25,42 @@ shader_param/masked_view = SubResource( 1 ) [sub_resource type="Animation" id=5] resource_name = "PillTaking" -tracks/0/type = "transform" -tracks/0/path = NodePath("PillTaker/Pill") +tracks/0/type = "value" +tracks/0/path = NodePath("PillTaker/Pill:visible") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/imported = false tracks/0/enabled = true -tracks/0/keys = PoolRealArray( ) +tracks/0/keys = { +"times": PoolRealArray( 0, 1 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 1, +"values": [ true, false ] +} +tracks/1/type = "value" +tracks/1/path = NodePath("PillTaker/Pill:rotation_degrees") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0, 1 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 0, +"values": [ Vector3( 0, 0, 0 ), Vector3( 90, 0, 0 ) ] +} +tracks/2/type = "value" +tracks/2/path = NodePath("PillTaker/Pill:translation") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = { +"times": PoolRealArray( 0, 1 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 0, +"values": [ Vector3( 0, 0, -1 ), Vector3( 0, 1, 0 ) ] +} [sub_resource type="Animation" id=6] length = 0.8 @@ -87,7 +116,7 @@ camera_nodepath = NodePath("Body/PillCameras") [node name="Body" type="Spatial" parent="."] [node name="PillCameras" type="Spatial" parent="Body"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0625, 1.85, 0 ) +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 7.45058e-009, 1.8, 0 ) script = ExtResource( 2 ) [node name="LookingAt" type="RayCast" parent="Body/PillCameras"] @@ -103,7 +132,7 @@ size = Vector2( 1024, 600 ) render_target_update_mode = 3 [node name="TrueCamera" type="Camera" parent="Body/PillCameras/TrueView"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0625, 1.85, 0 ) +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 7.45058e-009, 1.8, 0 ) cull_mask = 2 current = true @@ -112,7 +141,7 @@ size = Vector2( 1024, 600 ) render_target_update_mode = 3 [node name="MaskedCamera" type="Camera" parent="Body/PillCameras/MaskedView"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0625, 1.85, 0 ) +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 7.45058e-009, 1.8, 0 ) cull_mask = 1 current = true @@ -133,6 +162,7 @@ transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0 ) shape = SubResource( 4 ) [node name="AnimationPlayer" type="AnimationPlayer" parent="."] +autoplay = "Walk" anims/PillTaking = SubResource( 5 ) anims/Walk = SubResource( 6 ) @@ -151,7 +181,8 @@ pitch_scale = 1.5 script = ExtResource( 7 ) [node name="Pill" type="Spatial" parent="PillTaker"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1 ) +transform = Transform( 1, 0, 0, 0, -4.37114e-008, -1, 0, 1, -4.37114e-008, 0, 1, 0 ) +visible = false [node name="MeshInstance" type="MeshInstance" parent="PillTaker/Pill"] transform = Transform( 0.1, 0, 0, 0, -4.37114e-009, -0.1, 0, 0.1, -4.37114e-009, 0, 0, 0 ) From a5f3e610a7e1bb558d5885e160abc29839f8fa61 Mon Sep 17 00:00:00 2001 From: SyntaX Date: Thu, 21 Nov 2019 13:50:49 +0100 Subject: [PATCH 13/14] animation for taking pills --- Characters/Player/PillTaker.gd | 5 +- Characters/Player/Player.tscn | 92 ++++++++++++++++----------------- Models/pill/blue.material | Bin 0 -> 1554 bytes Models/pill/other.material | Bin 0 -> 1580 bytes project.godot | 2 +- 5 files changed, 47 insertions(+), 52 deletions(-) create mode 100644 Models/pill/blue.material create mode 100644 Models/pill/other.material diff --git a/Characters/Player/PillTaker.gd b/Characters/Player/PillTaker.gd index e33efe9..63ef50a 100644 --- a/Characters/Player/PillTaker.gd +++ b/Characters/Player/PillTaker.gd @@ -10,11 +10,8 @@ func _process(delta): Pills.take_pill() Logger.info("Player took a pill; new level: %s" % [Pills.get_round_level()]) _animation.play("PillTaking") - - #_animation.playback_speed = _vel.length() / MOVE_SPEED - #Logger.warn("speed: " + String(_animation.playback_speed)) func _ready(): - _animation = get_parent().get_node("AnimationPlayer") as AnimationPlayer + _animation = get_parent().get_node("PillAnimationPlayer") as AnimationPlayer assert(null != _animation) \ No newline at end of file diff --git a/Characters/Player/Player.tscn b/Characters/Player/Player.tscn index 760dba1..9d44e89 100644 --- a/Characters/Player/Player.tscn +++ b/Characters/Player/Player.tscn @@ -23,7 +23,40 @@ shader_param/masked_view = SubResource( 1 ) [sub_resource type="CylinderShape" id=4] -[sub_resource type="Animation" id=5] +[sub_resource type="Animation" id=6] +length = 0.8 +loop = true +tracks/0/type = "value" +tracks/0/path = NodePath("Body/PillCameras:translation") +tracks/0/interp = 2 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0, 0.2, 0.4, 0.6 ), +"transitions": PoolRealArray( 1, 1, 1, 1 ), +"update": 0, +"values": [ Vector3( 0, 1.8, 0 ), Vector3( -0.1, 1.9, 0 ), Vector3( 0, 1.8, 0 ), Vector3( 0.1, 1.9, 0 ) ] +} +tracks/1/type = "method" +tracks/1/path = NodePath("Footsteps") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0.3, 0.7 ), +"transitions": PoolRealArray( 1, 1 ), +"values": [ { +"args": [ ], +"method": "play_footstep" +}, { +"args": [ ], +"method": "play_footstep" +} ] +} + +[sub_resource type="Animation" id=9] resource_name = "PillTaking" tracks/0/type = "value" tracks/0/path = NodePath("PillTaker/Pill:visible") @@ -59,40 +92,7 @@ tracks/2/keys = { "times": PoolRealArray( 0, 1 ), "transitions": PoolRealArray( 1, 1 ), "update": 0, -"values": [ Vector3( 0, 0, -1 ), Vector3( 0, 1, 0 ) ] -} - -[sub_resource type="Animation" id=6] -length = 0.8 -loop = true -tracks/0/type = "value" -tracks/0/path = NodePath("Body/PillCameras:translation") -tracks/0/interp = 2 -tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true -tracks/0/keys = { -"times": PoolRealArray( 0, 0.2, 0.4, 0.6 ), -"transitions": PoolRealArray( 1, 1, 1, 1 ), -"update": 0, -"values": [ Vector3( 0, 1.8, 0 ), Vector3( -0.1, 1.9, 0 ), Vector3( 0, 1.8, 0 ), Vector3( 0.1, 1.9, 0 ) ] -} -tracks/1/type = "method" -tracks/1/path = NodePath("Footsteps") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/keys = { -"times": PoolRealArray( 0.3, 0.7 ), -"transitions": PoolRealArray( 1, 1 ), -"values": [ { -"args": [ ], -"method": "play_footstep" -}, { -"args": [ ], -"method": "play_footstep" -} ] +"values": [ Vector3( 0, 0, -1 ), Vector3( 0, 0.7, 0 ) ] } [sub_resource type="AudioStreamRandomPitch" id=7] @@ -104,12 +104,12 @@ random_pitch = 1.3 [node name="Player" type="KinematicBody" groups=[ "Player", ]] -collision_layer = 7 -collision_mask = 7 +collision_layer = 5 +collision_mask = 5 script = ExtResource( 1 ) body_nodepath = NodePath("Body") lookingAt_nodepath = NodePath("Body/PillCameras/LookingAt") -animation_nodepath = NodePath("AnimationPlayer") +animation_nodepath = NodePath("WalkAnimationPlayer") ui_interact_nodepath = NodePath("HUD/PressInteract") camera_nodepath = NodePath("Body/PillCameras") @@ -130,26 +130,20 @@ current = true [node name="TrueView" type="Viewport" parent="Body/PillCameras"] size = Vector2( 1024, 600 ) render_target_update_mode = 3 -shadow_atlas_size = 4 [node name="TrueCamera" type="Camera" parent="Body/PillCameras/TrueView"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 7.45058e-009, 1.8, 0 ) cull_mask = 2 current = true -fov = 80.0 -far = 2000.0 [node name="MaskedView" type="Viewport" parent="Body/PillCameras"] size = Vector2( 1024, 600 ) render_target_update_mode = 3 -shadow_atlas_size = 4 [node name="MaskedCamera" type="Camera" parent="Body/PillCameras/MaskedView"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 7.45058e-009, 1.8, 0 ) cull_mask = 1 current = true -fov = 80.0 -far = 2000.0 [node name="ScreenTexture" type="ColorRect" parent="Body/PillCameras"] material = SubResource( 3 ) @@ -167,11 +161,14 @@ remote_path = NodePath("../MaskedView/MaskedCamera") transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0 ) shape = SubResource( 4 ) -[node name="AnimationPlayer" type="AnimationPlayer" parent="."] +[node name="WalkAnimationPlayer" type="AnimationPlayer" parent="."] autoplay = "Walk" -anims/PillTaking = SubResource( 5 ) anims/Walk = SubResource( 6 ) +[node name="PillAnimationPlayer" type="AnimationPlayer" parent="."] +playback_speed = 2.0 +anims/PillTaking = SubResource( 9 ) + [node name="Footsteps" type="Spatial" parent="."] script = ExtResource( 4 ) @@ -184,10 +181,11 @@ pitch_scale = 1.5 [node name="HUD" parent="." instance=ExtResource( 6 )] [node name="PillTaker" type="Spatial" parent="."] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0 ) script = ExtResource( 7 ) [node name="Pill" type="Spatial" parent="PillTaker"] -transform = Transform( 1, 0, 0, 0, -4.37114e-008, -1, 0, 1, -4.37114e-008, 0, 1, 0 ) +transform = Transform( 1, 0, 0, 0, -4.37114e-008, -1, 0, 1, -4.37114e-008, 0, 0.7, 0 ) visible = false [node name="MeshInstance" type="MeshInstance" parent="PillTaker/Pill"] diff --git a/Models/pill/blue.material b/Models/pill/blue.material new file mode 100644 index 0000000000000000000000000000000000000000..e866e0ccc9a19f5b8371d37399db5c0c4088746d GIT binary patch literal 1554 zcmbtV$&TAF3{^K2-S>S#zo0>LY!5y3JeQdd5NL~zh02mZ$&*Y^{lWfIN!d}h-fBQl z_((lb+;V<#{zJ{*4c@QulKnBSiwN0*JA;hGJ0t)1edFV=c@d^CQj6M!7M#vOrxrb` zhxA>RIPQ)`TtEOV+aIVV%^Dz}N(hLk&Y?`JK}n_6X3Ykx;jR zm?JY84d9Y`$2ZKcZi5S?jG6o#aY?K(L%1cT+kjHih0=zu1L zWMfvao8C;QL}fS zkBV{`lyh?NF{s-fyhm56ox-^4JuD zUdm;J9YLFqoi`k4>neo|h4J#soLcclq|kKD3%ycRLcXZy6rPS~5=lpN*7jFc~U;qFB literal 0 HcmV?d00001 diff --git a/Models/pill/other.material b/Models/pill/other.material new file mode 100644 index 0000000000000000000000000000000000000000..eae6ebf335fd79bba573056ace09a35b6b9ae3ae GIT binary patch literal 1580 zcmbtVxsnqx5EXZE-!}yC0l3%@3LFq`vikw5_Nd3BLL*JJG;1#r->?BGd=bAvLc$-= ztr^P~8B?W_`*rK7)t8Tsk3OmKyTJQ7Ub5feb=*O+;0_@n@y^Kqeee1B6JCTd^i-jC zp#rB<(6K^~>ei;tLyOr9LT`|CM>dd6r|KG8d0ZylL5%7iOSOY})QP~y4%j@Y+Xd}? zY`~yVj|y~xlyIq?oj1w)xq47EK4^noYIMSw)Wd@J5p@@=PdeH!xIwiDi5cS|se(09k#=$d*3`Z2&sEw^_In@S( z`M`+B4y)b)4GPJ|s9-m}8BmGJh_bC4z{hKFh`AwH?6ElOQ7^1XP0sYlvXhI|jn=tY z02*(VsO@P!BX(SE;85LI>*o{}>gig};c;C9Y-(c+q;9fu%wCRQuCR4F6GvTLWt$cg zIA^Qu?Ml$AAm#cfD3?J#Cl~L6x@y3Cbh+9o^z+8!SnWlUI?4pkm|zbr3=(~8`588N zjb7@aD3HX1Y+Gc>W#tg43XlqVpHc8OhD4z|E%0@LLlLEuhpetHl)jJsjLWl@ z_$MAI#abFIckiy3av5PwP^Dex4F}q~LLoz;KY2T*R=g1@)OEy^=Zc8yJ{51a5a~7Q za*PM6gDt9qZK{Jkstsg=N@h++VQE_)T)O5tG&-#0W!%gOJWqkF$c=S{;aKrFN&I6N z#; Date: Thu, 21 Nov 2019 14:17:28 +0100 Subject: [PATCH 14/14] final pill taking --- Characters/Player/Player.tscn | 22 ++++++++-------------- Things/pills/Pills.tscn | 2 +- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/Characters/Player/Player.tscn b/Characters/Player/Player.tscn index 9d44e89..72d2b04 100644 --- a/Characters/Player/Player.tscn +++ b/Characters/Player/Player.tscn @@ -7,6 +7,7 @@ [ext_resource path="res://Resources/Audio/Step.wav" type="AudioStream" id=5] [ext_resource path="res://Characters/Player/UI/UI.tscn" type="PackedScene" id=6] [ext_resource path="res://Characters/Player/PillTaker.gd" type="Script" id=7] +[ext_resource path="res://Things/pills/Pills.tscn" type="PackedScene" id=8] [sub_resource type="ViewportTexture" id=1] viewport_path = NodePath("Body/PillCameras/MaskedView") @@ -59,7 +60,7 @@ tracks/1/keys = { [sub_resource type="Animation" id=9] resource_name = "PillTaking" tracks/0/type = "value" -tracks/0/path = NodePath("PillTaker/Pill:visible") +tracks/0/path = NodePath("PillTaker/Pills:visible") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/imported = false @@ -71,7 +72,7 @@ tracks/0/keys = { "values": [ true, false ] } tracks/1/type = "value" -tracks/1/path = NodePath("PillTaker/Pill:rotation_degrees") +tracks/1/path = NodePath("PillTaker/Pills:translation") tracks/1/interp = 1 tracks/1/loop_wrap = true tracks/1/imported = false @@ -80,10 +81,10 @@ tracks/1/keys = { "times": PoolRealArray( 0, 1 ), "transitions": PoolRealArray( 1, 1 ), "update": 0, -"values": [ Vector3( 0, 0, 0 ), Vector3( 90, 0, 0 ) ] +"values": [ Vector3( 0, 0, -1 ), Vector3( 0, 0.7, 0 ) ] } tracks/2/type = "value" -tracks/2/path = NodePath("PillTaker/Pill:translation") +tracks/2/path = NodePath("PillTaker/Pills:rotation_degrees") tracks/2/interp = 1 tracks/2/loop_wrap = true tracks/2/imported = false @@ -92,15 +93,13 @@ tracks/2/keys = { "times": PoolRealArray( 0, 1 ), "transitions": PoolRealArray( 1, 1 ), "update": 0, -"values": [ Vector3( 0, 0, -1 ), Vector3( 0, 0.7, 0 ) ] +"values": [ Vector3( 180, 0, 0 ), Vector3( -90, 0, 0 ) ] } [sub_resource type="AudioStreamRandomPitch" id=7] audio_stream = ExtResource( 5 ) random_pitch = 1.3 -[sub_resource type="CapsuleMesh" id=8] - [node name="Player" type="KinematicBody" groups=[ "Player", ]] @@ -184,13 +183,8 @@ pitch_scale = 1.5 transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0 ) script = ExtResource( 7 ) -[node name="Pill" type="Spatial" parent="PillTaker"] -transform = Transform( 1, 0, 0, 0, -4.37114e-008, -1, 0, 1, -4.37114e-008, 0, 0.7, 0 ) +[node name="Pills" parent="PillTaker" instance=ExtResource( 8 )] +transform = Transform( 0.1, 0, 0, 0, -4.37114e-009, 0.1, 0, -0.1, -4.37114e-009, 0, 0.7, 0 ) visible = false -[node name="MeshInstance" type="MeshInstance" parent="PillTaker/Pill"] -transform = Transform( 0.1, 0, 0, 0, -4.37114e-009, -0.1, 0, 0.1, -4.37114e-009, 0, 0, 0 ) -mesh = SubResource( 8 ) -material/0 = null - [editable path="HUD"] diff --git a/Things/pills/Pills.tscn b/Things/pills/Pills.tscn index 8703791..62382ee 100644 --- a/Things/pills/Pills.tscn +++ b/Things/pills/Pills.tscn @@ -34,7 +34,7 @@ surfaces/1 = { [node name="Pills" type="Spatial"] [node name="TrueForm" type="MeshInstance" parent="."] -layers = 2 +layers = 3 mesh = SubResource( 1 ) material/0 = null material/1 = null