diff --git a/WikiJam/Enemies/Dino.gd b/WikiJam/Enemies/Dino.gd index d31b0cc..0ca9db7 100644 --- a/WikiJam/Enemies/Dino.gd +++ b/WikiJam/Enemies/Dino.gd @@ -3,8 +3,13 @@ extends KinematicBody export(NodePath) var player_path export(float) var speed +onready var growl_sound = get_node("GrowlSound") +onready var confuse_sound = get_node("ConfuseSound") +onready var see_sound = get_node("SeeSound") + var _current_nav_path: PoolVector3Array var _player +var _had_path_in_previous_frame = false onready var _navigation = get_parent() @@ -13,6 +18,14 @@ func _ready(): _player = get_node(player_path) +func _physics_process(delta: float) -> void: + # Play growling sound at random interval + var distance_to_player = (_player.transform.origin - transform.origin).length() + + if randi() % 1000 == 1 and not _is_any_sound_playing(): + growl_sound.play() + + func _process(delta): var to = _navigation.get_closest_point(_player.transform.origin) _current_nav_path = _navigation.get_simple_path(transform.origin, to) @@ -20,14 +33,27 @@ func _process(delta): var dir: Vector3 if _current_nav_path.size() > 0: + if not _had_path_in_previous_frame and not _is_any_sound_playing(): + see_sound.play() + var index = 0 if (_current_nav_path[0] - transform.origin).length() < 0.1: index = 1 dir = (_current_nav_path[index] - transform.origin).normalized() + + _had_path_in_previous_frame = true else: + if _had_path_in_previous_frame and not _is_any_sound_playing(): + confuse_sound.play() + dir = (_player.transform.origin - transform.origin).normalized() + _had_path_in_previous_frame = false if (dir.x != 0.0 and dir.z != 0.0): look_at(transform.origin + Vector3(dir.x, 0.0, dir.z), Vector3.UP) move_and_slide(dir * speed) + + +func _is_any_sound_playing(): + return growl_sound.playing or confuse_sound.playing or see_sound.playing diff --git a/WikiJam/Enemies/Dino.tscn b/WikiJam/Enemies/Dino.tscn index 312bbe4..5db6647 100644 --- a/WikiJam/Enemies/Dino.tscn +++ b/WikiJam/Enemies/Dino.tscn @@ -1,6 +1,9 @@ -[gd_scene load_steps=7 format=2] +[gd_scene load_steps=10 format=2] [ext_resource path="res://Enemies/Dino.gd" type="Script" id=1] +[ext_resource path="res://Sounds/dino-roar-01.wav" type="AudioStream" id=2] +[ext_resource path="res://Sounds/dino-roar-02.wav" type="AudioStream" id=3] +[ext_resource path="res://Sounds/dino-roar-03.wav" type="AudioStream" id=4] [sub_resource type="CapsuleShape" id=1] radius = 5.0 @@ -54,3 +57,21 @@ shape = SubResource( 4 ) [node name="CollisionShape" type="CollisionShape" parent="Area"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 5, -4 ) shape = SubResource( 5 ) + +[node name="GrowlSound" type="AudioStreamPlayer3D" parent="."] +transform = Transform( 1, 0, 0, 0, 0.906308, 0.422618, 0, -0.422618, 0.906308, 0, 12.6212, -8.63737 ) +stream = ExtResource( 2 ) +unit_size = 30.0 +emission_angle_enabled = true + +[node name="ConfuseSound" type="AudioStreamPlayer3D" parent="."] +transform = Transform( 1, 0, 0, 0, 0.906308, 0.422618, 0, -0.422618, 0.906308, 0, 12.6212, -8.63737 ) +stream = ExtResource( 3 ) +unit_size = 30.0 +emission_angle_enabled = true + +[node name="SeeSound" type="AudioStreamPlayer3D" parent="."] +transform = Transform( 1, 0, 0, 0, 0.906308, 0.422618, 0, -0.422618, 0.906308, 0, 12.6212, -8.63737 ) +stream = ExtResource( 4 ) +unit_size = 30.0 +emission_angle_enabled = true diff --git a/WikiJam/Level/Fortaleza.tscn b/WikiJam/Level/Fortaleza.tscn index 77d2b58..7b5f63b 100644 --- a/WikiJam/Level/Fortaleza.tscn +++ b/WikiJam/Level/Fortaleza.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=15 format=2] +[gd_scene load_steps=16 format=2] [ext_resource path="res://Level/Objects/Tree.tscn" type="PackedScene" id=1] [ext_resource path="res://Level/Objects/Ground.tscn" type="PackedScene" id=2] @@ -7,14 +7,15 @@ [ext_resource path="res://Level/Objects/RectTower.tscn" type="PackedScene" id=5] [ext_resource path="res://Level/Objects/BigTower.tscn" type="PackedScene" id=6] [ext_resource path="res://Level/Objects/SmallHouse.tscn" type="PackedScene" id=7] -[ext_resource path="res://Enemies/Dino.tscn" type="PackedScene" id=8] -[ext_resource path="res://Player/Player.tscn" type="PackedScene" id=9] -[ext_resource path="res://Level/Objects/Crystal.tscn" type="PackedScene" id=10] -[ext_resource path="res://Level/Objects/Background.tscn" type="PackedScene" id=11] +[ext_resource path="res://Level/Objects/WallGate.tscn" type="PackedScene" id=8] +[ext_resource path="res://Enemies/Dino.tscn" type="PackedScene" id=9] +[ext_resource path="res://Player/Player.tscn" type="PackedScene" id=10] +[ext_resource path="res://Level/Objects/Crystal.tscn" type="PackedScene" id=11] +[ext_resource path="res://Level/Objects/Background.tscn" type="PackedScene" id=12] [sub_resource type="NavigationMesh" id=1] -vertices = PoolVector3Array( -50.6561, 0.193912, -58.1059, -52.6561, 0.193912, -60.1059, -56.6561, 0.193912, -61.1059, -59.6561, 0.193912, -50.1059, -54.6561, 0.193912, -49.1059, -50.6561, 0.193912, -51.1059, -50.6561, 0.193912, -58.1059, -56.6561, 0.193912, -61.1059, -61.6561, 0.193912, -57.1059, 142.344, 0.193912, -56.1059, 140.344, 0.193912, -58.1059, 136.344, 0.193912, -59.1059, 134.344, 0.193912, -46.1059, 137.344, 0.193912, -46.1059, 142.344, 0.193912, -50.1059, 142.344, 0.193912, -56.1059, 136.344, 0.193912, -59.1059, 131.344, 0.193912, -55.1059, -3.6561, 0.193912, -21.1059, -0.656097, 0.193912, -17.1059, 3.3439, 0.193912, -21.1059, -38.6561, 0.193912, -49.1059, -42.6561, 0.193912, -48.1059, -41.6561, 0.193912, -42.1059, 16.3439, 0.193912, -21.1059, 19.3439, 0.193912, -19.1059, 25.3439, 0.193912, -24.1059, 22.3439, 0.193912, -28.1059, 22.3439, 0.193912, -42.1059, 11.3439, 0.193912, -58.1059, 3.3439, 0.193912, -58.1059, -27.6561, 0.193912, -10.1059, -20.6561, 0.193912, -10.1059, -20.6561, 0.193912, -17.1059, -33.6561, 0.193912, -20.1059, -28.6561, 0.193912, -58.1059, -36.6561, 0.193912, -58.1059, -36.6561, 0.193912, -52.1059, -36.6561, 0.193912, -52.1059, -38.6561, 0.193912, -49.1059, -41.6561, 0.193912, -42.1059, -38.6561, 0.193912, -30.1059, -41.6561, 0.193912, -42.1059, -44.6561, 0.193912, -37.1059, -38.6561, 0.193912, -30.1059, 22.3439, 0.193912, -42.1059, 3.3439, 0.193912, -58.1059, -4.6561, 0.193912, -58.1059, 28.3439, 0.193912, -48.1059, 28.3439, 0.193912, -58.1059, 19.3439, 0.193912, -58.1059, 22.3439, 0.193912, -28.1059, 23.3439, 0.193912, -35.1059, 22.3439, 0.193912, -42.1059, -3.6561, 0.193912, -21.1059, 3.3439, 0.193912, -21.1059, 9.3439, 0.193912, -21.1059, 16.3439, 0.193912, -21.1059, 22.3439, 0.193912, -28.1059, 22.3439, 0.193912, -42.1059, 28.3439, 0.193912, -48.1059, 19.3439, 0.193912, -58.1059, 11.3439, 0.193912, -58.1059, -33.6561, 0.193912, -20.1059, -20.6561, 0.193912, -17.1059, -16.6561, 0.193912, -21.1059, -38.6561, 0.193912, -30.1059, -20.6561, 0.193912, -58.1059, -28.6561, 0.193912, -58.1059, -36.6561, 0.193912, -52.1059, -4.6561, 0.193912, -58.1059, -12.6561, 0.193912, -58.1059, -36.6561, 0.193912, -52.1059, 3.3439, 0.193912, -21.1059, 9.3439, 0.193912, -21.1059, 22.3439, 0.193912, -28.1059, -38.6561, 0.193912, -30.1059, -16.6561, 0.193912, -21.1059, -10.6561, 0.193912, -21.1059, -38.6561, 0.193912, -30.1059, -10.6561, 0.193912, -21.1059, -3.6561, 0.193912, -21.1059, 22.3439, 0.193912, -42.1059, -4.6561, 0.193912, -58.1059, -36.6561, 0.193912, -52.1059, -12.6561, 0.193912, -58.1059, -20.6561, 0.193912, -58.1059, -36.6561, 0.193912, -52.1059, 63.3439, 0.193912, -58.1059, 60.3439, 0.193912, -54.1059, 65.3439, 0.193912, -51.1059, 72.3439, 0.193912, -58.1059, 87.3439, 0.193912, -36.1059, 90.3439, 0.193912, -32.1059, 95.3439, 0.193912, -36.1059, 106.344, 0.193912, -52.1059, 99.3439, 0.193912, -58.1059, 90.3439, 0.193912, -58.1059, 114.344, 0.193912, -36.1059, 120.344, 0.193912, -35.1059, 123.344, 0.193912, -38.1059, 118.344, 0.193912, -44.1059, 101.344, 0.193912, -36.1059, 113.344, 0.193912, -46.1059, 106.344, 0.193912, -52.1059, 95.3439, 0.193912, -36.1059, 101.344, 0.193912, -36.1059, 108.344, 0.193912, -36.1059, 113.344, 0.193912, -46.1059, 114.344, 0.193912, -36.1059, 118.344, 0.193912, -44.1059, 113.344, 0.193912, -46.1059, 108.344, 0.193912, -36.1059, 66.3439, 0.193912, -46.1059, 74.3439, 0.193912, -36.1059, 80.3439, 0.193912, -36.1059, 66.3439, 0.193912, -46.1059, 61.3439, 0.193912, -40.1059, 63.3439, 0.193912, -35.1059, 74.3439, 0.193912, -36.1059, 81.3439, 0.193912, -58.1059, 66.3439, 0.193912, -46.1059, 80.3439, 0.193912, -36.1059, 87.3439, 0.193912, -36.1059, 90.3439, 0.193912, -58.1059, 72.3439, 0.193912, -58.1059, 65.3439, 0.193912, -51.1059, 66.3439, 0.193912, -46.1059, 81.3439, 0.193912, -58.1059, 59.3439, 0.193912, 4.89405, 61.3439, 0.193912, 1.89405, 59.3439, 0.193912, -0.105949, 59.3439, 0.193912, -13.1059, 61.3439, 0.193912, -16.1059, 59.3439, 0.193912, -18.1059, 53.3439, 0.193912, -21.1059, 52.3439, 0.193912, -11.1059, 59.3439, 0.193912, -31.1059, 63.3439, 0.193912, -35.1059, 61.3439, 0.193912, -40.1059, 53.3439, 0.193912, -33.1059, 47.3439, 0.193912, 18.8941, 59.3439, 0.193912, 17.8941, 59.3439, 0.193912, 10.8941, 59.3439, 0.193912, -25.1059, 59.3439, 0.193912, -31.1059, 53.3439, 0.193912, -33.1059, 53.3439, 0.193912, -21.1059, 45.3439, 0.193912, -2.10595, 40.3439, 0.193912, -1.10595, 44.3439, 0.193912, 12.8941, 47.3439, 0.193912, 18.8941, 59.3439, 0.193912, 10.8941, 59.3439, 0.193912, 4.89405, 59.3439, 0.193912, -18.1059, 59.3439, 0.193912, -25.1059, 53.3439, 0.193912, -21.1059, 59.3439, 0.193912, -0.105949, 52.3439, 0.193912, -11.1059, 45.3439, 0.193912, -2.10595, 59.3439, 0.193912, 4.89405, 40.3439, 0.193912, -1.10595, 40.3439, 0.193912, 11.8941, 44.3439, 0.193912, 12.8941, 59.3439, 0.193912, -7.10595, 59.3439, 0.193912, -13.1059, 52.3439, 0.193912, -11.1059, 59.3439, 0.193912, -0.105949, 59.3439, 0.193912, -7.10595, 52.3439, 0.193912, -11.1059, 126.344, 0.193912, -36.1059, 123.344, 0.193912, -38.1059, 120.344, 0.193912, -35.1059, 122.344, 0.193912, -32.1059, 123.344, 0.193912, -22.1059, 123.344, 0.193912, -16.1059, 135.344, 0.193912, -7.10595, 151.344, 0.193912, -13.1059, 151.344, 0.193912, -25.1059, 135.344, 0.193912, -34.1059, 151.344, 0.193912, -25.1059, 148.344, 0.193912, -30.1059, 145.344, 0.193912, -31.1059, 135.344, 0.193912, -34.1059, 123.344, 0.193912, -9.10595, 121.344, 0.193912, -7.10595, 123.344, 0.193912, -0.105949, 131.344, 0.193912, -0.105949, 132.344, 0.193912, -5.10595, 135.344, 0.193912, -34.1059, 133.344, 0.193912, -38.1059, 126.344, 0.193912, -36.1059, 122.344, 0.193912, -32.1059, 121.344, 0.193912, -24.1059, 123.344, 0.193912, -22.1059, 144.344, 0.193912, -0.105949, 151.344, 0.193912, -0.105949, 151.344, 0.193912, -7.10595, 142.344, 0.193912, -6.10595, 145.344, 0.193912, -31.1059, 144.344, 0.193912, -34.1059, 135.344, 0.193912, -34.1059, 123.344, 0.193912, -9.10595, 132.344, 0.193912, -5.10595, 135.344, 0.193912, -7.10595, 123.344, 0.193912, -16.1059, 142.344, 0.193912, -6.10595, 151.344, 0.193912, -7.10595, 151.344, 0.193912, -13.1059, 135.344, 0.193912, -7.10595, 28.3439, 0.193912, -16.1059, 28.3439, 0.193912, -22.1059, 25.3439, 0.193912, -24.1059, 19.3439, 0.193912, -19.1059, 21.3439, 0.193912, -16.1059, 23.3439, 0.193912, 36.8941, 28.3439, 0.193912, 36.8941, 28.3439, 0.193912, 29.8941, 23.3439, 0.193912, 36.8941, 28.3439, 0.193912, 29.8941, 28.3439, 0.193912, 22.8941, 17.3439, 0.193912, 20.8941, 10.3439, 0.193912, 20.8941, 11.3439, 0.193912, 41.8941, 36.3439, 0.193912, 12.8941, 40.3439, 0.193912, -1.10595, 35.3439, 0.193912, -2.10595, 21.3439, 0.193912, -0.105949, 21.3439, 0.193912, 7.89405, 32.3439, 0.193912, 17.8941, 29.3439, 0.193912, -10.1059, 28.3439, 0.193912, -16.1059, 21.3439, 0.193912, -16.1059, 21.3439, 0.193912, -8.10595, 21.3439, 0.193912, 16.8941, 28.3439, 0.193912, 22.8941, 32.3439, 0.193912, 17.8941, 21.3439, 0.193912, 7.89405, 29.3439, 0.193912, -10.1059, 21.3439, 0.193912, -8.10595, 21.3439, 0.193912, -0.105949, 35.3439, 0.193912, -2.10595, 11.3439, 0.193912, 41.8941, 16.3439, 0.193912, 41.8941, 23.3439, 0.193912, 36.8941, 28.3439, 0.193912, 22.8941, 21.3439, 0.193912, 16.8941, 17.3439, 0.193912, 20.8941, 36.3439, 0.193912, 12.8941, 40.3439, 0.193912, 11.8941, 40.3439, 0.193912, -1.10595, -1.6561, 0.193912, 7.89405, -0.656097, 0.193912, 10.8941, 1.3439, 0.193912, 7.89405, 1.3439, 0.193912, -8.10595, -0.656097, 0.193912, -11.1059, -1.6561, 0.193912, -8.10595, -7.6561, 0.193912, 6.89405, -1.6561, 0.193912, 7.89405, 1.3439, 0.193912, 7.89405, 7.3439, 0.193912, -7.10595, 1.3439, 0.193912, -8.10595, -1.6561, 0.193912, -8.10595, 1.3439, 0.193912, 7.89405, 7.3439, 0.193912, 6.89405, 7.3439, 0.193912, -0.105949, -1.6561, 0.193912, -8.10595, -7.6561, 0.193912, -7.10595, -7.6561, 0.193912, -0.105949, -1.6561, 0.193912, -8.10595, -7.6561, 0.193912, -0.105949, -7.6561, 0.193912, 6.89405, 1.3439, 0.193912, 7.89405, 7.3439, 0.193912, -0.105949, 7.3439, 0.193912, -7.10595, -20.6561, 0.193912, -10.1059, -27.6561, 0.193912, -10.1059, -28.6561, 0.193912, -6.10595, -20.6561, 0.193912, -4.10595, -15.6561, 0.193912, 20.8941, -20.6561, 0.193912, 16.8941, -32.6561, 0.193912, 14.8941, -41.6561, 0.193912, 25.8941, -29.6561, 0.193912, 36.8941, -23.6561, 0.193912, 36.8941, -50.6561, 0.193912, 35.8941, -45.6561, 0.193912, 39.8941, -41.6561, 0.193912, 36.8941, -46.6561, 0.193912, 30.8941, -20.6561, 0.193912, 16.8941, -20.6561, 0.193912, 9.89405, -30.6561, 0.193912, 10.8941, -32.6561, 0.193912, 14.8941, -28.6561, 0.193912, -6.10595, -31.6561, 0.193912, -4.10595, -30.6561, 0.193912, 2.89405, -20.6561, 0.193912, 2.89405, -20.6561, 0.193912, -4.10595, -41.6561, 0.193912, 25.8941, -46.6561, 0.193912, 30.8941, -41.6561, 0.193912, 36.8941, -29.6561, 0.193912, 36.8941, -32.6561, 0.193912, 14.8941, -37.6561, 0.193912, 19.8941, -41.6561, 0.193912, 25.8941, -23.6561, 0.193912, 36.8941, -16.6561, 0.193912, 36.8941, -15.6561, 0.193912, 20.8941, -20.6561, 0.193912, 9.89405, -20.6561, 0.193912, 2.89405, -30.6561, 0.193912, 2.89405, -30.6561, 0.193912, 10.8941, -40.6561, 0.193912, -5.10595, -42.6561, 0.193912, -9.10595, -44.6561, 0.193912, -9.10595, -47.6561, 0.193912, -0.105949, -43.6561, 0.193912, -2.10595, -51.6561, 0.193912, 6.89405, -51.6561, 0.193912, 10.8941, -48.6561, 0.193912, 11.8941, -43.6561, 0.193912, 5.89405, -43.6561, 0.193912, -2.10595, -47.6561, 0.193912, -0.105949, 123.344, 0.193912, 8.89405, 121.344, 0.193912, 10.8941, 123.344, 0.193912, 13.8941, 135.344, 0.193912, 6.89405, 132.344, 0.193912, 4.89405, 123.344, 0.193912, 26.8941, 121.344, 0.193912, 28.8941, 123.344, 0.193912, 32.8941, 131.344, 0.193912, 30.8941, 123.344, 0.193912, 19.8941, 132.344, 0.193912, 25.8941, 137.344, 0.193912, 22.8941, 135.344, 0.193912, 6.89405, 123.344, 0.193912, 13.8941, 123.344, 0.193912, 26.8941, 131.344, 0.193912, 30.8941, 132.344, 0.193912, 25.8941, 123.344, 0.193912, 19.8941, 151.344, 0.193912, 6.89405, 151.344, 0.193912, -0.105949, 144.344, 0.193912, -0.105949, 142.344, 0.193912, 5.89405, 142.344, 0.193912, 23.8941, 151.344, 0.193912, 21.8941, 151.344, 0.193912, 14.8941, 142.344, 0.193912, 5.89405, 135.344, 0.193912, 6.89405, 137.344, 0.193912, 22.8941, 132.344, 0.193912, 4.89405, 131.344, 0.193912, -0.105949, 123.344, 0.193912, -0.105949, 123.344, 0.193912, 8.89405, 151.344, 0.193912, 14.8941, 151.344, 0.193912, 6.89405, 142.344, 0.193912, 5.89405, 144.344, 0.193912, 29.8941, 151.344, 0.193912, 29.8941, 151.344, 0.193912, 21.8941, 142.344, 0.193912, 23.8941, -1.6561, 0.193912, 42.8941, -0.656097, 0.193912, 45.8941, 4.3439, 0.193912, 41.8941, 3.3439, 0.193912, 20.8941, -0.656097, 0.193912, 16.8941, -3.6561, 0.193912, 20.8941, -10.6561, 0.193912, 41.8941, -1.6561, 0.193912, 42.8941, 4.3439, 0.193912, 41.8941, 3.3439, 0.193912, 20.8941, -3.6561, 0.193912, 20.8941, -16.6561, 0.193912, 36.8941, -3.6561, 0.193912, 20.8941, -15.6561, 0.193912, 20.8941, -16.6561, 0.193912, 36.8941, 4.3439, 0.193912, 41.8941, 11.3439, 0.193912, 41.8941, 10.3439, 0.193912, 20.8941, 3.3439, 0.193912, 20.8941, 50.3439, 0.193912, 49.8941, 47.3439, 0.193912, 53.8941, 50.3439, 0.193912, 54.8941, 59.3439, 0.193912, 22.8941, 61.3439, 0.193912, 19.8941, 59.3439, 0.193912, 17.8941, 47.3439, 0.193912, 18.8941, 94.3439, 0.193912, 52.8941, 95.3439, 0.193912, 49.8941, 92.3439, 0.193912, 45.8941, 87.3439, 0.193912, 49.8941, 84.3439, 0.193912, 52.8941, 42.3439, 0.193912, 33.8941, 42.3439, 0.193912, 41.8941, 46.3439, 0.193912, 41.8941, 104.344, 0.193912, 52.8941, 104.344, 0.193912, 49.8941, 95.3439, 0.193912, 49.8941, 94.3439, 0.193912, 52.8941, 46.3439, 0.193912, 41.8941, 50.3439, 0.193912, 45.8941, 59.3439, 0.193912, 35.8941, 59.3439, 0.193912, 28.8941, 46.3439, 0.193912, 23.8941, 42.3439, 0.193912, 33.8941, 60.3439, 0.193912, 45.8941, 61.3439, 0.193912, 37.8941, 59.3439, 0.193912, 35.8941, 50.3439, 0.193912, 45.8941, 50.3439, 0.193912, 49.8941, 59.3439, 0.193912, 22.8941, 47.3439, 0.193912, 18.8941, 46.3439, 0.193912, 23.8941, 59.3439, 0.193912, 28.8941, 84.3439, 0.193912, 52.8941, 87.3439, 0.193912, 49.8941, 80.3439, 0.193912, 49.8941, 74.3439, 0.193912, 52.8941, 84.3439, 0.193912, 52.8941, 80.3439, 0.193912, 49.8941, 74.3439, 0.193912, 49.8941, 50.3439, 0.193912, 54.8941, 51.3439, 0.193912, 60.8941, 60.3439, 0.193912, 56.8941, 64.3439, 0.193912, 52.8941, 60.3439, 0.193912, 45.8941, 50.3439, 0.193912, 49.8941, 74.3439, 0.193912, 52.8941, 74.3439, 0.193912, 49.8941, 67.3439, 0.193912, 49.8941, 64.3439, 0.193912, 52.8941, 46.3439, 0.193912, 23.8941, 42.3439, 0.193912, 26.8941, 42.3439, 0.193912, 33.8941, 64.3439, 0.193912, 52.8941, 67.3439, 0.193912, 49.8941, 62.3439, 0.193912, 48.8941, 64.3439, 0.193912, 52.8941, 62.3439, 0.193912, 48.8941, 60.3439, 0.193912, 45.8941, 51.3439, 0.193912, 60.8941, 60.3439, 0.193912, 60.8941, 60.3439, 0.193912, 56.8941, 146.344, 0.193912, 120.894, 143.344, 0.193912, 124.894, 151.344, 0.193912, 123.894, 104.344, 0.193912, 49.8941, 104.344, 0.193912, 52.8941, 109.344, 0.193912, 53.8941, 112.344, 0.193912, 49.8941, 120.344, 0.193912, 48.8941, 112.344, 0.193912, 57.8941, 129.344, 0.193912, 73.8941, 141.344, 0.193912, 73.8941, 151.344, 0.193912, 52.8941, 133.344, 0.193912, 35.8941, 146.344, 0.193912, 100.894, 143.344, 0.193912, 104.894, 146.344, 0.193912, 107.894, 151.344, 0.193912, 111.894, 151.344, 0.193912, 99.8941, 111.344, 0.193912, 72.8941, 115.344, 0.193912, 75.8941, 118.344, 0.193912, 73.8941, 112.344, 0.193912, 65.8941, 112.344, 0.193912, 49.8941, 109.344, 0.193912, 53.8941, 112.344, 0.193912, 57.8941, 120.344, 0.193912, 48.8941, 151.344, 0.193912, 29.8941, 144.344, 0.193912, 29.8941, 143.344, 0.193912, 34.8941, 112.344, 0.193912, 57.8941, 112.344, 0.193912, 65.8941, 118.344, 0.193912, 73.8941, 129.344, 0.193912, 73.8941, 151.344, 0.193912, 40.8941, 151.344, 0.193912, 29.8941, 143.344, 0.193912, 34.8941, 140.344, 0.193912, 36.8941, 146.344, 0.193912, 120.894, 151.344, 0.193912, 123.894, 151.344, 0.193912, 111.894, 146.344, 0.193912, 113.894, 133.344, 0.193912, 35.8941, 123.344, 0.193912, 44.8941, 120.344, 0.193912, 48.8941, 146.344, 0.193912, 107.894, 146.344, 0.193912, 113.894, 151.344, 0.193912, 111.894, 141.344, 0.193912, 73.8941, 144.344, 0.193912, 75.8941, 151.344, 0.193912, 76.8941, 151.344, 0.193912, 64.8941, 141.344, 0.193912, 73.8941, 151.344, 0.193912, 64.8941, 151.344, 0.193912, 52.8941, 146.344, 0.193912, 92.8941, 146.344, 0.193912, 100.894, 151.344, 0.193912, 99.8941, 151.344, 0.193912, 87.8941, 151.344, 0.193912, 40.8941, 140.344, 0.193912, 36.8941, 133.344, 0.193912, 35.8941, 151.344, 0.193912, 52.8941, 145.344, 0.193912, 86.8941, 146.344, 0.193912, 92.8941, 151.344, 0.193912, 87.8941, 151.344, 0.193912, 76.8941, 144.344, 0.193912, 75.8941, 133.344, 0.193912, 35.8941, 131.344, 0.193912, 30.8941, 123.344, 0.193912, 32.8941, 123.344, 0.193912, 44.8941, -51.6561, 0.193912, 98.8941, -44.6561, 0.193912, 95.8941, -48.6561, 0.193912, 92.8941, -58.6561, 0.193912, 93.8941, -58.6561, 0.193912, 101.894, -51.6561, 0.193912, 98.8941, -58.6561, 0.193912, 93.8941, -51.6561, 0.193912, 98.8941, -48.6561, 0.193912, 92.8941, -52.6561, 0.193912, 83.8941, -58.6561, 0.193912, 86.8941, -58.6561, 0.193912, 42.8941, -58.6561, 0.193912, 49.8941, -52.6561, 0.193912, 47.8941, -45.6561, 0.193912, 39.8941, -50.6561, 0.193912, 35.8941, -58.6561, 0.193912, 63.8941, -52.6561, 0.193912, 65.8941, -52.6561, 0.193912, 56.8941, -58.6561, 0.193912, 56.8941, -58.6561, 0.193912, 78.8941, -58.6561, 0.193912, 86.8941, -52.6561, 0.193912, 83.8941, -52.6561, 0.193912, 74.8941, -52.6561, 0.193912, 56.8941, -52.6561, 0.193912, 47.8941, -58.6561, 0.193912, 49.8941, -58.6561, 0.193912, 56.8941, -58.6561, 0.193912, 71.8941, -58.6561, 0.193912, 78.8941, -52.6561, 0.193912, 74.8941, -58.6561, 0.193912, 71.8941, -52.6561, 0.193912, 74.8941, -52.6561, 0.193912, 65.8941, -58.6561, 0.193912, 63.8941, -16.6561, 0.193912, 65.8941, -19.6561, 0.193912, 63.8941, -21.6561, 0.193912, 65.8941, -19.6561, 0.193912, 69.8941, -24.6561, 0.193912, 70.8941, -23.6561, 0.193912, 73.8941, -19.6561, 0.193912, 69.8941, -26.6561, 0.193912, 65.8941, -26.6561, 0.193912, 70.8941, -24.6561, 0.193912, 70.8941, -19.6561, 0.193912, 69.8941, -21.6561, 0.193912, 65.8941, 4.3439, 0.193912, 55.8941, -3.6561, 0.193912, 55.8941, -6.6561, 0.193912, 61.8941, -2.6561, 0.193912, 69.8941, 5.3439, 0.193912, 69.8941, 14.3439, 0.193912, 62.8941, 5.3439, 0.193912, 69.8941, 14.3439, 0.193912, 69.8941, 14.3439, 0.193912, 62.8941, 4.3439, 0.193912, 55.8941, 1.3439, 0.193912, 51.8941, -3.6561, 0.193912, 55.8941, -16.6561, 0.193912, 65.8941, -19.6561, 0.193912, 69.8941, -11.6561, 0.193912, 69.8941, -8.6561, 0.193912, 64.8941, 14.3439, 0.193912, 62.8941, 14.3439, 0.193912, 55.8941, 4.3439, 0.193912, 55.8941, -3.6561, 0.193912, 55.8941, -6.6561, 0.193912, 55.8941, -6.6561, 0.193912, 61.8941, -8.6561, 0.193912, 64.8941, -11.6561, 0.193912, 69.8941, -2.6561, 0.193912, 69.8941, -6.6561, 0.193912, 61.8941, 49.3439, 0.193912, 65.8941, 42.3439, 0.193912, 66.8941, 42.3439, 0.193912, 72.8941, 60.3439, 0.193912, 60.8941, 51.3439, 0.193912, 60.8941, 49.3439, 0.193912, 65.8941, 60.3439, 0.193912, 72.8941, 42.3439, 0.193912, 79.8941, 39.3439, 0.193912, 82.8941, 54.3439, 0.193912, 91.8941, 54.3439, 0.193912, 91.8941, 60.3439, 0.193912, 85.8941, 60.3439, 0.193912, 78.8941, 49.3439, 0.193912, 65.8941, 42.3439, 0.193912, 72.8941, 42.3439, 0.193912, 79.8941, 54.3439, 0.193912, 91.8941, 60.3439, 0.193912, 78.8941, 60.3439, 0.193912, 72.8941, 79.3439, 0.193912, 75.8941, 82.3439, 0.193912, 74.8941, 78.3439, 0.193912, 70.8941, 78.3439, 0.193912, 70.8941, 78.3439, 0.193912, 66.8941, 74.3439, 0.193912, 66.8941, 73.3439, 0.193912, 70.8941, 73.3439, 0.193912, 70.8941, 74.3439, 0.193912, 79.8941, 79.3439, 0.193912, 75.8941, 78.3439, 0.193912, 70.8941, 74.3439, 0.193912, 79.8941, 74.3439, 0.193912, 88.8941, 78.3439, 0.193912, 85.8941, 79.3439, 0.193912, 75.8941, 113.344, 0.193912, 78.8941, 115.344, 0.193912, 75.8941, 111.344, 0.193912, 72.8941, 107.344, 0.193912, 76.8941, 113.344, 0.193912, 84.8941, 107.344, 0.193912, 76.8941, 102.344, 0.193912, 76.8941, 92.3439, 0.193912, 83.8941, 92.3439, 0.193912, 90.8941, 113.344, 0.193912, 91.8941, 113.344, 0.193912, 98.8941, 115.344, 0.193912, 93.8941, 113.344, 0.193912, 91.8941, 93.3439, 0.193912, 70.8941, 88.3439, 0.193912, 73.8941, 92.3439, 0.193912, 77.8941, 113.344, 0.193912, 84.8941, 113.344, 0.193912, 78.8941, 107.344, 0.193912, 76.8941, 102.344, 0.193912, 76.8941, 93.3439, 0.193912, 70.8941, 92.3439, 0.193912, 77.8941, 92.3439, 0.193912, 83.8941, 78.3439, 0.193912, 104.894, 74.3439, 0.193912, 109.894, 85.3439, 0.193912, 113.894, 86.3439, 0.193912, 111.894, 97.3439, 0.193912, 117.894, 114.344, 0.193912, 115.894, 113.344, 0.193912, 108.894, 96.3439, 0.193912, 111.894, 83.3439, 0.193912, 100.894, 78.3439, 0.193912, 104.894, 86.3439, 0.193912, 111.894, 93.3439, 0.193912, 109.894, 83.3439, 0.193912, 100.894, 93.3439, 0.193912, 109.894, 96.3439, 0.193912, 111.894, 113.344, 0.193912, 98.8941, 113.344, 0.193912, 91.8941, 92.3439, 0.193912, 90.8941, 92.3439, 0.193912, 90.8941, 87.3439, 0.193912, 95.8941, 83.3439, 0.193912, 100.894, 96.3439, 0.193912, 111.894, 113.344, 0.193912, 108.894, 113.344, 0.193912, 98.8941, -19.6561, 0.193912, 83.8941, -22.6561, 0.193912, 79.8941, -24.6561, 0.193912, 81.8941, -19.6561, 0.193912, 83.8941, -24.6561, 0.193912, 81.8941, -23.6561, 0.193912, 88.8941, -15.6561, 0.193912, 88.8941, 54.3439, 0.193912, 97.8941, 54.3439, 0.193912, 91.8941, 39.3439, 0.193912, 82.8941, 32.3439, 0.193912, 83.8941, -12.6561, 0.193912, 83.8941, -19.6561, 0.193912, 83.8941, -15.6561, 0.193912, 88.8941, -12.6561, 0.193912, 83.8941, -15.6561, 0.193912, 88.8941, -6.6561, 0.193912, 88.8941, -4.6561, 0.193912, 83.8941, 33.3439, 0.193912, 115.894, 54.3439, 0.193912, 108.894, 54.3439, 0.193912, 97.8941, 32.3439, 0.193912, 83.8941, 25.3439, 0.193912, 83.8941, 26.3439, 0.193912, 115.894, -10.6561, 0.193912, 102.894, -17.6561, 0.193912, 102.894, -15.6561, 0.193912, 108.894, 11.3439, 0.193912, 115.894, 14.3439, 0.193912, 119.894, 19.3439, 0.193912, 115.894, -4.6561, 0.193912, 83.8941, -6.6561, 0.193912, 88.8941, -2.6561, 0.193912, 92.8941, 2.3439, 0.193912, 83.8941, 33.3439, 0.193912, 115.894, 40.3439, 0.193912, 115.894, 54.3439, 0.193912, 108.894, 54.3439, 0.193912, 108.894, 61.3439, 0.193912, 102.894, 54.3439, 0.193912, 97.8941, -4.6561, 0.193912, 101.894, -10.6561, 0.193912, 102.894, -15.6561, 0.193912, 108.894, -13.6561, 0.193912, 115.894, -1.6561, 0.193912, 115.894, -2.6561, 0.193912, 98.8941, 11.3439, 0.193912, 115.894, 19.3439, 0.193912, 115.894, 25.3439, 0.193912, 83.8941, 17.3439, 0.193912, 83.8941, -2.6561, 0.193912, 98.8941, 19.3439, 0.193912, 115.894, 26.3439, 0.193912, 115.894, 40.3439, 0.193912, 115.894, 48.3439, 0.193912, 115.894, 54.3439, 0.193912, 108.894, 10.3439, 0.193912, 83.8941, 2.3439, 0.193912, 83.8941, -2.6561, 0.193912, 92.8941, -4.6561, 0.193912, 101.894, -1.6561, 0.193912, 115.894, 4.3439, 0.193912, 115.894, -2.6561, 0.193912, 98.8941, -4.6561, 0.193912, 101.894, 4.3439, 0.193912, 115.894, 11.3439, 0.193912, 115.894, 10.3439, 0.193912, 83.8941, -2.6561, 0.193912, 92.8941, -2.6561, 0.193912, 98.8941, 17.3439, 0.193912, 83.8941, -48.6561, 0.193912, 152.894, -37.6561, 0.193912, 152.894, -39.6561, 0.193912, 149.894, -39.6561, 0.193912, 118.894, -39.6561, 0.193912, 108.894, -46.6561, 0.193912, 111.894, -52.6561, 0.193912, 114.894, -58.6561, 0.193912, 112.894, -58.6561, 0.193912, 122.894, -39.6561, 0.193912, 118.894, -46.6561, 0.193912, 111.894, -52.6561, 0.193912, 114.894, -39.6561, 0.193912, 128.894, -58.6561, 0.193912, 142.894, -58.6561, 0.193912, 152.894, -48.6561, 0.193912, 152.894, -48.6561, 0.193912, 152.894, -39.6561, 0.193912, 149.894, -39.6561, 0.193912, 138.894, -52.6561, 0.193912, 114.894, -58.6561, 0.193912, 122.894, -58.6561, 0.193912, 132.894, -58.6561, 0.193912, 132.894, -58.6561, 0.193912, 142.894, -48.6561, 0.193912, 152.894, -39.6561, 0.193912, 138.894, -39.6561, 0.193912, 128.894, -52.6561, 0.193912, 114.894, 110.344, 0.193912, 129.894, 114.344, 0.193912, 132.894, 115.344, 0.193912, 129.894, 115.344, 0.193912, 129.894, 121.344, 0.193912, 125.894, 115.344, 0.193912, 123.894, 110.344, 0.193912, 129.894, 57.3439, 0.193912, 132.894, 57.3439, 0.193912, 139.894, 67.3439, 0.193912, 150.894, 57.3439, 0.193912, 146.894, 57.3439, 0.193912, 153.894, 62.3439, 0.193912, 153.894, 88.3439, 0.193912, 134.894, 96.3439, 0.193912, 134.894, 97.3439, 0.193912, 130.894, 57.3439, 0.193912, 146.894, 62.3439, 0.193912, 153.894, 67.3439, 0.193912, 150.894, 57.3439, 0.193912, 139.894, 74.3439, 0.193912, 109.894, 69.3439, 0.193912, 113.894, 65.3439, 0.193912, 117.894, 84.3439, 0.193912, 119.894, 85.3439, 0.193912, 113.894, 67.3439, 0.193912, 150.894, 73.3439, 0.193912, 148.894, 78.3439, 0.193912, 145.894, 88.3439, 0.193912, 123.894, 88.3439, 0.193912, 134.894, 97.3439, 0.193912, 130.894, 100.344, 0.193912, 128.894, 95.3439, 0.193912, 122.894, 88.3439, 0.193912, 134.894, 88.3439, 0.193912, 123.894, 84.3439, 0.193912, 119.894, 100.344, 0.193912, 128.894, 110.344, 0.193912, 129.894, 115.344, 0.193912, 123.894, 114.344, 0.193912, 115.894, 97.3439, 0.193912, 117.894, 95.3439, 0.193912, 122.894, 57.3439, 0.193912, 132.894, 67.3439, 0.193912, 150.894, 78.3439, 0.193912, 145.894, 88.3439, 0.193912, 134.894, 84.3439, 0.193912, 119.894, 65.3439, 0.193912, 117.894, 78.3439, 0.193912, 145.894, 84.3439, 0.193912, 143.894, 88.3439, 0.193912, 134.894, 65.3439, 0.193912, 117.894, 57.3439, 0.193912, 125.894, 57.3439, 0.193912, 132.894, -1.6561, 0.193912, 139.894, -4.6561, 0.193912, 137.894, -6.6561, 0.193912, 139.894, -4.6561, 0.193912, 143.894, -9.6561, 0.193912, 144.894, -8.6561, 0.193912, 147.894, -4.6561, 0.193912, 143.894, -11.6561, 0.193912, 139.894, -11.6561, 0.193912, 144.894, -9.6561, 0.193912, 144.894, -4.6561, 0.193912, 143.894, -6.6561, 0.193912, 139.894, 19.3439, 0.193912, 129.894, 11.3439, 0.193912, 129.894, 8.3439, 0.193912, 135.894, 12.3439, 0.193912, 143.894, 20.3439, 0.193912, 143.894, 29.3439, 0.193912, 136.894, 20.3439, 0.193912, 143.894, 29.3439, 0.193912, 143.894, 29.3439, 0.193912, 136.894, 4.3439, 0.193912, 139.894, 3.3439, 0.193912, 143.894, 12.3439, 0.193912, 143.894, 8.3439, 0.193912, 135.894, -1.6561, 0.193912, 139.894, -4.6561, 0.193912, 143.894, 3.3439, 0.193912, 143.894, 4.3439, 0.193912, 139.894, 29.3439, 0.193912, 136.894, 29.3439, 0.193912, 129.894, 19.3439, 0.193912, 129.894, 11.3439, 0.193912, 129.894, 8.3439, 0.193912, 129.894, 8.3439, 0.193912, 135.894, 19.3439, 0.193912, 129.894, 16.3439, 0.193912, 125.894, 11.3439, 0.193912, 129.894, 137.344, 0.193912, 145.894, 137.344, 0.193912, 140.894, 133.344, 0.193912, 143.894, 137.344, 0.193912, 145.894, 133.344, 0.193912, 143.894, 137.344, 0.193912, 147.894, 142.344, 0.193912, 150.894, 151.344, 0.193912, 153.894, 151.344, 0.193912, 145.894, 148.344, 0.193912, 149.894, 144.344, 0.193912, 153.894, 151.344, 0.193912, 153.894, 148.344, 0.193912, 149.894, 142.344, 0.193912, 150.894, 137.344, 0.193912, 153.894, 144.344, 0.193912, 153.894, 142.344, 0.193912, 150.894, 137.344, 0.193912, 147.894, 108.344, 0.193912, 151.894, 108.344, 0.193912, 145.894, 106.344, 0.193912, 143.894, 99.3439, 0.193912, 153.894, 104.344, 0.193912, 154.894, 108.344, 0.193912, 151.894, 106.344, 0.193912, 143.894, 100.344, 0.193912, 141.894, 97.3439, 0.193912, 146.894 ) -polygons = [ PoolIntArray( 2, 0, 1 ), PoolIntArray( 8, 3, 7 ), PoolIntArray( 3, 4, 7 ), PoolIntArray( 4, 5, 7 ), PoolIntArray( 5, 6, 7 ), PoolIntArray( 11, 9, 10 ), PoolIntArray( 17, 12, 16 ), PoolIntArray( 12, 13, 16 ), PoolIntArray( 13, 14, 16 ), PoolIntArray( 14, 15, 16 ), PoolIntArray( 20, 18, 19 ), PoolIntArray( 23, 21, 22 ), PoolIntArray( 27, 24, 26 ), PoolIntArray( 24, 25, 26 ), PoolIntArray( 30, 28, 29 ), PoolIntArray( 34, 31, 33 ), PoolIntArray( 31, 32, 33 ), PoolIntArray( 37, 35, 36 ), PoolIntArray( 41, 38, 40 ), PoolIntArray( 38, 39, 40 ), PoolIntArray( 44, 42, 43 ), PoolIntArray( 47, 45, 46 ), PoolIntArray( 50, 48, 49 ), PoolIntArray( 55, 51, 54 ), PoolIntArray( 51, 52, 54 ), PoolIntArray( 52, 53, 54 ), PoolIntArray( 58, 56, 57 ), PoolIntArray( 62, 59, 61 ), PoolIntArray( 59, 60, 61 ), PoolIntArray( 66, 63, 65 ), PoolIntArray( 63, 64, 65 ), PoolIntArray( 69, 67, 68 ), PoolIntArray( 72, 70, 71 ), PoolIntArray( 75, 73, 74 ), PoolIntArray( 78, 76, 77 ), PoolIntArray( 84, 79, 83 ), PoolIntArray( 79, 80, 83 ), PoolIntArray( 80, 81, 83 ), PoolIntArray( 81, 82, 83 ), PoolIntArray( 87, 85, 86 ), PoolIntArray( 91, 88, 90 ), PoolIntArray( 88, 89, 90 ), PoolIntArray( 97, 92, 96 ), PoolIntArray( 92, 93, 96 ), PoolIntArray( 93, 94, 96 ), PoolIntArray( 94, 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( 124, 120, 123 ), PoolIntArray( 120, 122, 123 ), PoolIntArray( 120, 121, 122 ), PoolIntArray( 128, 125, 127 ), PoolIntArray( 125, 126, 127 ), PoolIntArray( 131, 129, 130 ), PoolIntArray( 136, 132, 135 ), PoolIntArray( 132, 134, 135 ), PoolIntArray( 132, 133, 134 ), PoolIntArray( 140, 137, 139 ), PoolIntArray( 137, 138, 139 ), PoolIntArray( 143, 141, 142 ), PoolIntArray( 147, 144, 146 ), PoolIntArray( 144, 145, 146 ), PoolIntArray( 153, 148, 152 ), PoolIntArray( 148, 149, 152 ), PoolIntArray( 149, 150, 152 ), PoolIntArray( 150, 151, 152 ), PoolIntArray( 156, 154, 155 ), PoolIntArray( 160, 157, 159 ), PoolIntArray( 157, 158, 159 ), PoolIntArray( 163, 161, 162 ), PoolIntArray( 166, 164, 165 ), PoolIntArray( 169, 167, 168 ), PoolIntArray( 173, 170, 172 ), PoolIntArray( 170, 171, 172 ), PoolIntArray( 179, 174, 178 ), PoolIntArray( 174, 175, 178 ), PoolIntArray( 175, 176, 178 ), PoolIntArray( 176, 177, 178 ), PoolIntArray( 183, 180, 182 ), PoolIntArray( 180, 181, 182 ), PoolIntArray( 188, 184, 187 ), PoolIntArray( 184, 185, 187 ), PoolIntArray( 185, 186, 187 ), PoolIntArray( 194, 189, 193 ), PoolIntArray( 189, 192, 193 ), PoolIntArray( 189, 191, 192 ), PoolIntArray( 189, 190, 191 ), PoolIntArray( 198, 195, 197 ), PoolIntArray( 195, 196, 197 ), PoolIntArray( 201, 199, 200 ), PoolIntArray( 205, 202, 204 ), PoolIntArray( 202, 203, 204 ), PoolIntArray( 209, 206, 208 ), PoolIntArray( 206, 207, 208 ), PoolIntArray( 214, 210, 213 ), PoolIntArray( 210, 211, 213 ), PoolIntArray( 211, 212, 213 ), PoolIntArray( 217, 215, 216 ), PoolIntArray( 223, 218, 222 ), PoolIntArray( 218, 221, 222 ), PoolIntArray( 218, 219, 221 ), PoolIntArray( 219, 220, 221 ), PoolIntArray( 229, 224, 228 ), PoolIntArray( 224, 227, 228 ), PoolIntArray( 224, 226, 227 ), PoolIntArray( 224, 225, 226 ), PoolIntArray( 233, 230, 232 ), PoolIntArray( 230, 231, 232 ), PoolIntArray( 237, 234, 236 ), PoolIntArray( 234, 235, 236 ), PoolIntArray( 241, 238, 240 ), PoolIntArray( 238, 239, 240 ), PoolIntArray( 244, 242, 243 ), PoolIntArray( 247, 245, 246 ), PoolIntArray( 250, 248, 249 ), PoolIntArray( 253, 251, 252 ), PoolIntArray( 256, 254, 255 ), PoolIntArray( 259, 257, 258 ), PoolIntArray( 262, 260, 261 ), PoolIntArray( 265, 263, 264 ), PoolIntArray( 268, 266, 267 ), PoolIntArray( 274, 269, 273 ), PoolIntArray( 269, 270, 273 ), PoolIntArray( 270, 272, 273 ), PoolIntArray( 270, 271, 272 ), PoolIntArray( 278, 275, 277 ), PoolIntArray( 275, 276, 277 ), PoolIntArray( 284, 279, 283 ), PoolIntArray( 279, 280, 283 ), PoolIntArray( 280, 281, 283 ), PoolIntArray( 281, 282, 283 ), PoolIntArray( 288, 285, 287 ), PoolIntArray( 285, 286, 287 ), PoolIntArray( 292, 289, 291 ), PoolIntArray( 289, 290, 291 ), PoolIntArray( 297, 293, 296 ), PoolIntArray( 293, 294, 296 ), PoolIntArray( 294, 295, 296 ), PoolIntArray( 301, 298, 300 ), PoolIntArray( 298, 299, 300 ), PoolIntArray( 304, 302, 303 ), PoolIntArray( 307, 305, 306 ), PoolIntArray( 311, 308, 310 ), PoolIntArray( 308, 309, 310 ), PoolIntArray( 316, 312, 315 ), PoolIntArray( 312, 313, 315 ), PoolIntArray( 313, 314, 315 ), PoolIntArray( 322, 317, 321 ), PoolIntArray( 317, 320, 321 ), PoolIntArray( 317, 318, 320 ), PoolIntArray( 318, 319, 320 ), PoolIntArray( 327, 323, 326 ), PoolIntArray( 323, 324, 326 ), PoolIntArray( 324, 325, 326 ), PoolIntArray( 331, 328, 330 ), PoolIntArray( 328, 329, 330 ), PoolIntArray( 336, 332, 335 ), PoolIntArray( 332, 333, 335 ), PoolIntArray( 333, 334, 335 ), PoolIntArray( 340, 337, 339 ), PoolIntArray( 337, 338, 339 ), PoolIntArray( 344, 341, 343 ), PoolIntArray( 341, 342, 343 ), PoolIntArray( 350, 345, 349 ), PoolIntArray( 345, 348, 349 ), PoolIntArray( 345, 347, 348 ), PoolIntArray( 345, 346, 347 ), PoolIntArray( 354, 351, 353 ), PoolIntArray( 351, 352, 353 ), PoolIntArray( 357, 355, 356 ), PoolIntArray( 361, 358, 360 ), PoolIntArray( 358, 359, 360 ), PoolIntArray( 364, 362, 363 ), PoolIntArray( 367, 365, 366 ), PoolIntArray( 373, 368, 372 ), PoolIntArray( 368, 369, 372 ), PoolIntArray( 369, 370, 372 ), PoolIntArray( 370, 371, 372 ), PoolIntArray( 376, 374, 375 ), PoolIntArray( 380, 377, 379 ), PoolIntArray( 377, 378, 379 ), PoolIntArray( 383, 381, 382 ), PoolIntArray( 387, 384, 386 ), PoolIntArray( 384, 385, 386 ), PoolIntArray( 392, 388, 391 ), PoolIntArray( 388, 389, 391 ), PoolIntArray( 389, 390, 391 ), PoolIntArray( 395, 393, 394 ), PoolIntArray( 399, 396, 398 ), PoolIntArray( 396, 397, 398 ), PoolIntArray( 405, 400, 404 ), PoolIntArray( 400, 401, 404 ), PoolIntArray( 401, 402, 404 ), PoolIntArray( 402, 403, 404 ), PoolIntArray( 410, 406, 409 ), PoolIntArray( 406, 407, 409 ), PoolIntArray( 407, 408, 409 ), PoolIntArray( 414, 411, 413 ), PoolIntArray( 411, 412, 413 ), PoolIntArray( 417, 415, 416 ), PoolIntArray( 421, 418, 420 ), PoolIntArray( 418, 419, 420 ), PoolIntArray( 427, 422, 426 ), PoolIntArray( 422, 425, 426 ), PoolIntArray( 422, 424, 425 ), PoolIntArray( 422, 423, 424 ), PoolIntArray( 431, 428, 430 ), PoolIntArray( 428, 429, 430 ), PoolIntArray( 434, 432, 433 ), PoolIntArray( 437, 435, 436 ), PoolIntArray( 440, 438, 439 ), PoolIntArray( 443, 441, 442 ), PoolIntArray( 446, 444, 445 ), PoolIntArray( 450, 447, 449 ), PoolIntArray( 447, 448, 449 ), PoolIntArray( 456, 451, 455 ), PoolIntArray( 451, 452, 455 ), PoolIntArray( 452, 453, 455 ), PoolIntArray( 453, 454, 455 ), PoolIntArray( 461, 457, 460 ), PoolIntArray( 457, 459, 460 ), PoolIntArray( 457, 458, 459 ), PoolIntArray( 465, 462, 464 ), PoolIntArray( 462, 463, 464 ), PoolIntArray( 469, 466, 468 ), PoolIntArray( 466, 467, 468 ), PoolIntArray( 472, 470, 471 ), PoolIntArray( 476, 473, 475 ), PoolIntArray( 473, 474, 475 ), PoolIntArray( 480, 477, 479 ), PoolIntArray( 477, 478, 479 ), PoolIntArray( 484, 481, 483 ), PoolIntArray( 481, 482, 483 ), PoolIntArray( 487, 485, 486 ), PoolIntArray( 490, 488, 489 ), PoolIntArray( 494, 491, 493 ), PoolIntArray( 491, 492, 493 ), PoolIntArray( 497, 495, 496 ), PoolIntArray( 501, 498, 500 ), PoolIntArray( 498, 499, 500 ), PoolIntArray( 505, 502, 504 ), PoolIntArray( 502, 503, 504 ), PoolIntArray( 510, 506, 509 ), PoolIntArray( 506, 508, 509 ), PoolIntArray( 506, 507, 508 ), PoolIntArray( 514, 511, 513 ), PoolIntArray( 511, 512, 513 ), PoolIntArray( 517, 515, 516 ), PoolIntArray( 520, 518, 519 ), PoolIntArray( 525, 521, 524 ), PoolIntArray( 521, 523, 524 ), PoolIntArray( 521, 522, 523 ), PoolIntArray( 530, 526, 529 ), PoolIntArray( 526, 528, 529 ), PoolIntArray( 526, 527, 528 ), PoolIntArray( 534, 531, 533 ), PoolIntArray( 531, 532, 533 ), PoolIntArray( 538, 535, 537 ), PoolIntArray( 535, 536, 537 ), PoolIntArray( 542, 539, 541 ), PoolIntArray( 539, 540, 541 ), PoolIntArray( 545, 543, 544 ), PoolIntArray( 549, 546, 548 ), PoolIntArray( 546, 547, 548 ), PoolIntArray( 553, 550, 552 ), PoolIntArray( 550, 551, 552 ), PoolIntArray( 556, 554, 555 ), PoolIntArray( 561, 557, 560 ), PoolIntArray( 557, 559, 560 ), PoolIntArray( 557, 558, 559 ), PoolIntArray( 567, 562, 566 ), PoolIntArray( 562, 565, 566 ), PoolIntArray( 562, 564, 565 ), PoolIntArray( 562, 563, 564 ), PoolIntArray( 570, 568, 569 ), PoolIntArray( 573, 571, 572 ), PoolIntArray( 577, 574, 576 ), PoolIntArray( 574, 575, 576 ), PoolIntArray( 580, 578, 579 ), PoolIntArray( 583, 581, 582 ), PoolIntArray( 587, 584, 586 ), PoolIntArray( 584, 585, 586 ), PoolIntArray( 590, 588, 589 ), PoolIntArray( 594, 591, 593 ), PoolIntArray( 591, 592, 593 ), PoolIntArray( 597, 595, 596 ), PoolIntArray( 600, 598, 599 ), PoolIntArray( 606, 601, 605 ), PoolIntArray( 601, 602, 605 ), PoolIntArray( 602, 603, 605 ), PoolIntArray( 603, 604, 605 ), PoolIntArray( 609, 607, 608 ), PoolIntArray( 613, 610, 612 ), PoolIntArray( 610, 611, 612 ), PoolIntArray( 617, 614, 616 ), PoolIntArray( 614, 615, 616 ), PoolIntArray( 621, 618, 620 ), PoolIntArray( 618, 619, 620 ), PoolIntArray( 625, 622, 624 ), PoolIntArray( 622, 623, 624 ), PoolIntArray( 631, 626, 630 ), PoolIntArray( 626, 629, 630 ), PoolIntArray( 626, 628, 629 ), PoolIntArray( 626, 627, 628 ), PoolIntArray( 634, 632, 633 ), PoolIntArray( 637, 635, 636 ), PoolIntArray( 640, 638, 639 ), PoolIntArray( 644, 641, 643 ), PoolIntArray( 641, 642, 643 ), PoolIntArray( 648, 645, 647 ), PoolIntArray( 645, 646, 647 ), PoolIntArray( 652, 649, 651 ), PoolIntArray( 649, 650, 651 ), PoolIntArray( 656, 653, 655 ), PoolIntArray( 653, 654, 655 ), PoolIntArray( 662, 657, 661 ), PoolIntArray( 657, 660, 661 ), PoolIntArray( 657, 658, 660 ), PoolIntArray( 658, 659, 660 ), PoolIntArray( 665, 663, 664 ), PoolIntArray( 668, 666, 667 ), PoolIntArray( 671, 669, 670 ), PoolIntArray( 675, 672, 674 ), PoolIntArray( 672, 673, 674 ), PoolIntArray( 679, 676, 678 ), PoolIntArray( 676, 677, 678 ), PoolIntArray( 682, 680, 681 ), PoolIntArray( 686, 683, 685 ), PoolIntArray( 683, 684, 685 ), PoolIntArray( 692, 687, 691 ), PoolIntArray( 687, 690, 691 ), PoolIntArray( 687, 689, 690 ), PoolIntArray( 687, 688, 689 ), PoolIntArray( 695, 693, 694 ), PoolIntArray( 698, 696, 697 ), PoolIntArray( 702, 699, 701 ), PoolIntArray( 699, 700, 701 ), PoolIntArray( 705, 703, 704 ), PoolIntArray( 708, 706, 707 ), PoolIntArray( 713, 709, 712 ), PoolIntArray( 709, 710, 712 ), PoolIntArray( 710, 711, 712 ), PoolIntArray( 716, 714, 715 ), PoolIntArray( 721, 717, 720 ), PoolIntArray( 717, 718, 720 ), PoolIntArray( 718, 719, 720 ), PoolIntArray( 724, 722, 723 ), PoolIntArray( 727, 725, 726 ), PoolIntArray( 730, 728, 729 ), PoolIntArray( 734, 731, 733 ), PoolIntArray( 731, 732, 733 ), PoolIntArray( 738, 735, 737 ), PoolIntArray( 735, 736, 737 ), PoolIntArray( 741, 739, 740 ), PoolIntArray( 744, 742, 743 ), PoolIntArray( 747, 745, 746 ), PoolIntArray( 751, 748, 750 ), PoolIntArray( 748, 749, 750 ), PoolIntArray( 754, 752, 753 ), PoolIntArray( 757, 755, 756 ), PoolIntArray( 760, 758, 759 ), PoolIntArray( 766, 761, 765 ), PoolIntArray( 761, 764, 765 ), PoolIntArray( 761, 762, 764 ), PoolIntArray( 762, 763, 764 ), PoolIntArray( 769, 767, 768 ), PoolIntArray( 773, 770, 772 ), PoolIntArray( 770, 771, 772 ), PoolIntArray( 776, 774, 775 ), PoolIntArray( 779, 777, 778 ), PoolIntArray( 782, 780, 781 ), PoolIntArray( 786, 783, 785 ), PoolIntArray( 783, 784, 785 ), PoolIntArray( 791, 787, 790 ), PoolIntArray( 787, 788, 790 ), PoolIntArray( 788, 789, 790 ), PoolIntArray( 794, 792, 793 ), PoolIntArray( 799, 795, 798 ), PoolIntArray( 795, 797, 798 ), PoolIntArray( 795, 796, 797 ), PoolIntArray( 802, 800, 801 ), PoolIntArray( 808, 803, 807 ), PoolIntArray( 803, 804, 807 ), PoolIntArray( 804, 805, 807 ), PoolIntArray( 805, 806, 807 ), PoolIntArray( 814, 809, 813 ), PoolIntArray( 809, 812, 813 ), PoolIntArray( 809, 811, 812 ), PoolIntArray( 809, 810, 811 ), PoolIntArray( 817, 815, 816 ), PoolIntArray( 820, 818, 819 ), PoolIntArray( 824, 821, 823 ), PoolIntArray( 821, 822, 823 ), PoolIntArray( 827, 825, 826 ), PoolIntArray( 832, 828, 831 ), PoolIntArray( 828, 830, 831 ), PoolIntArray( 828, 829, 830 ), PoolIntArray( 838, 833, 837 ), PoolIntArray( 833, 836, 837 ), PoolIntArray( 833, 835, 836 ), PoolIntArray( 833, 834, 835 ), PoolIntArray( 841, 839, 840 ), PoolIntArray( 845, 842, 844 ), PoolIntArray( 842, 843, 844 ), PoolIntArray( 849, 846, 848 ), PoolIntArray( 846, 847, 848 ), PoolIntArray( 852, 850, 851 ), PoolIntArray( 855, 853, 854 ), PoolIntArray( 858, 856, 857 ), PoolIntArray( 861, 859, 860 ), PoolIntArray( 865, 862, 864 ), PoolIntArray( 862, 863, 864 ), PoolIntArray( 868, 866, 867 ), PoolIntArray( 872, 869, 871 ), PoolIntArray( 869, 870, 871 ), PoolIntArray( 876, 873, 875 ), PoolIntArray( 873, 874, 875 ), PoolIntArray( 879, 877, 878 ), PoolIntArray( 885, 880, 884 ), PoolIntArray( 880, 883, 884 ), PoolIntArray( 880, 881, 883 ), PoolIntArray( 881, 882, 883 ) ] +vertices = PoolVector3Array( -52.7864, 0.193912, -60.1059, -56.7864, 0.193912, -61.1059, -61.7864, 0.193912, -57.1059, -59.7864, 0.193912, -50.1059, -54.7864, 0.193912, -49.1059, -49.7864, 0.193912, -52.1059, 142.214, 0.193912, -56.1059, 140.214, 0.193912, -58.1059, 136.214, 0.193912, -59.1059, 136.214, 0.193912, -59.1059, 131.214, 0.193912, -55.1059, 131.214, 0.193912, -51.1059, 135.214, 0.193912, -46.1059, 142.214, 0.193912, -50.1059, 142.214, 0.193912, -56.1059, -3.78641, 0.193912, -21.1059, -0.786407, 0.193912, -17.1059, 3.21359, 0.193912, -21.1059, -38.7864, 0.193912, -49.1059, -42.7864, 0.193912, -48.1059, -41.7864, 0.193912, -42.1059, 16.2136, 0.193912, -21.1059, 19.2136, 0.193912, -19.1059, 25.2136, 0.193912, -24.1059, 22.2136, 0.193912, -28.1059, -33.7864, 0.193912, -22.1059, -10.7864, 0.193912, -21.1059, -3.78641, 0.193912, -21.1059, -28.7864, 0.193912, -58.1059, -36.7864, 0.193912, -58.1059, -36.7864, 0.193912, -52.1059, -36.7864, 0.193912, -52.1059, -38.7864, 0.193912, -49.1059, -41.7864, 0.193912, -42.1059, -38.7864, 0.193912, -30.1059, -33.7864, 0.193912, -22.1059, -30.7864, 0.193912, -14.1059, -20.7864, 0.193912, -14.1059, -19.7864, 0.193912, -19.1059, -41.7864, 0.193912, -42.1059, -44.7864, 0.193912, -37.1059, -38.7864, 0.193912, -30.1059, 28.2136, 0.193912, -48.1059, 28.2136, 0.193912, -58.1059, 19.2136, 0.193912, -58.1059, 22.2136, 0.193912, -28.1059, 23.2136, 0.193912, -35.1059, 22.2136, 0.193912, -42.1059, -33.7864, 0.193912, -22.1059, -30.7864, 0.193912, -14.1059, -19.7864, 0.193912, -19.1059, -16.7864, 0.193912, -21.1059, 9.21359, 0.193912, -21.1059, 16.2136, 0.193912, -21.1059, 22.2136, 0.193912, -28.1059, 22.2136, 0.193912, -42.1059, 28.2136, 0.193912, -48.1059, 19.2136, 0.193912, -58.1059, 11.2136, 0.193912, -58.1059, 22.2136, 0.193912, -42.1059, 3.21359, 0.193912, -58.1059, -4.78641, 0.193912, -58.1059, -20.7864, 0.193912, -58.1059, -28.7864, 0.193912, -58.1059, -36.7864, 0.193912, -52.1059, -4.78641, 0.193912, -58.1059, -12.7864, 0.193912, -58.1059, -36.7864, 0.193912, -52.1059, 3.21359, 0.193912, -21.1059, 9.21359, 0.193912, -21.1059, 22.2136, 0.193912, -28.1059, -3.78641, 0.193912, -21.1059, 22.2136, 0.193912, -28.1059, 22.2136, 0.193912, -42.1059, -4.78641, 0.193912, -58.1059, -36.7864, 0.193912, -52.1059, -33.7864, 0.193912, -22.1059, -33.7864, 0.193912, -22.1059, -16.7864, 0.193912, -21.1059, -10.7864, 0.193912, -21.1059, -12.7864, 0.193912, -58.1059, -20.7864, 0.193912, -58.1059, -36.7864, 0.193912, -52.1059, 22.2136, 0.193912, -42.1059, 11.2136, 0.193912, -58.1059, 3.21359, 0.193912, -58.1059, -3.78641, 0.193912, -21.1059, 3.21359, 0.193912, -21.1059, 22.2136, 0.193912, -28.1059, 63.2136, 0.193912, -58.1059, 62.2136, 0.193912, -55.1059, 66.2136, 0.193912, -52.1059, 72.2136, 0.193912, -58.1059, 87.2136, 0.193912, -36.1059, 90.2136, 0.193912, -32.1059, 95.2136, 0.193912, -36.1059, 106.214, 0.193912, -52.1059, 99.2136, 0.193912, -58.1059, 90.2136, 0.193912, -58.1059, 101.214, 0.193912, -36.1059, 108.214, 0.193912, -36.1059, 113.214, 0.193912, -46.1059, 114.214, 0.193912, -36.1059, 120.214, 0.193912, -35.1059, 123.214, 0.193912, -38.1059, 118.214, 0.193912, -44.1059, 101.214, 0.193912, -36.1059, 113.214, 0.193912, -46.1059, 106.214, 0.193912, -52.1059, 95.2136, 0.193912, -36.1059, 114.214, 0.193912, -36.1059, 118.214, 0.193912, -44.1059, 113.214, 0.193912, -46.1059, 108.214, 0.193912, -36.1059, 66.2136, 0.193912, -46.1059, 74.2136, 0.193912, -36.1059, 80.2136, 0.193912, -36.1059, 66.2136, 0.193912, -46.1059, 61.2136, 0.193912, -40.1059, 63.2136, 0.193912, -35.1059, 74.2136, 0.193912, -36.1059, 81.2136, 0.193912, -58.1059, 66.2136, 0.193912, -46.1059, 80.2136, 0.193912, -36.1059, 87.2136, 0.193912, -36.1059, 90.2136, 0.193912, -58.1059, 72.2136, 0.193912, -58.1059, 66.2136, 0.193912, -52.1059, 66.2136, 0.193912, -46.1059, 81.2136, 0.193912, -58.1059, 59.2136, 0.193912, -31.1059, 63.2136, 0.193912, -35.1059, 61.2136, 0.193912, -40.1059, 53.2136, 0.193912, -33.1059, 40.2136, 0.193912, -1.10595, 40.2136, 0.193912, 11.8941, 44.2136, 0.193912, 12.8941, 45.2136, 0.193912, -2.10595, 60.2136, 0.193912, -25.1059, 59.2136, 0.193912, -31.1059, 53.2136, 0.193912, -33.1059, 53.2136, 0.193912, -21.1059, 44.2136, 0.193912, 12.8941, 48.2136, 0.193912, 19.8941, 59.2136, 0.193912, 9.89405, 61.2136, 0.193912, -0.105949, 52.2136, 0.193912, -11.1059, 45.2136, 0.193912, -2.10595, 61.2136, 0.193912, -18.1059, 60.2136, 0.193912, -25.1059, 53.2136, 0.193912, -21.1059, 52.2136, 0.193912, -11.1059, 59.2136, 0.193912, -13.1059, 60.2136, 0.193912, -7.10595, 59.2136, 0.193912, -13.1059, 52.2136, 0.193912, -11.1059, 61.2136, 0.193912, -0.105949, 48.2136, 0.193912, 19.8941, 61.2136, 0.193912, 19.8941, 59.2136, 0.193912, 9.89405, 126.214, 0.193912, -36.1059, 123.214, 0.193912, -38.1059, 120.214, 0.193912, -35.1059, 122.214, 0.193912, -32.1059, 123.214, 0.193912, -22.1059, 123.214, 0.193912, -16.1059, 135.214, 0.193912, -7.10595, 151.214, 0.193912, -13.1059, 151.214, 0.193912, -25.1059, 135.214, 0.193912, -34.1059, 123.214, 0.193912, -9.10595, 121.214, 0.193912, -7.10595, 123.214, 0.193912, -0.105949, 131.214, 0.193912, -0.105949, 132.214, 0.193912, -5.10595, 135.214, 0.193912, -34.1059, 133.214, 0.193912, -38.1059, 126.214, 0.193912, -36.1059, 122.214, 0.193912, -32.1059, 121.214, 0.193912, -24.1059, 123.214, 0.193912, -22.1059, 144.214, 0.193912, -0.105949, 151.214, 0.193912, -0.105949, 151.214, 0.193912, -7.10595, 142.214, 0.193912, -6.10595, 123.214, 0.193912, -9.10595, 132.214, 0.193912, -5.10595, 135.214, 0.193912, -7.10595, 123.214, 0.193912, -16.1059, 151.214, 0.193912, -25.1059, 148.214, 0.193912, -30.1059, 144.214, 0.193912, -34.1059, 135.214, 0.193912, -34.1059, 142.214, 0.193912, -6.10595, 151.214, 0.193912, -7.10595, 151.214, 0.193912, -13.1059, 135.214, 0.193912, -7.10595, 28.2136, 0.193912, -16.1059, 28.2136, 0.193912, -22.1059, 25.2136, 0.193912, -24.1059, 19.2136, 0.193912, -19.1059, 21.2136, 0.193912, -16.1059, 23.2136, 0.193912, 36.8941, 28.2136, 0.193912, 36.8941, 28.2136, 0.193912, 29.8941, 23.2136, 0.193912, 36.8941, 28.2136, 0.193912, 29.8941, 28.2136, 0.193912, 22.8941, 17.2136, 0.193912, 20.8941, 10.2136, 0.193912, 20.8941, 11.2136, 0.193912, 41.8941, 36.2136, 0.193912, 12.8941, 40.2136, 0.193912, -1.10595, 35.2136, 0.193912, -2.10595, 21.2136, 0.193912, -0.105949, 21.2136, 0.193912, 7.89405, 32.2136, 0.193912, 17.8941, 29.2136, 0.193912, -10.1059, 28.2136, 0.193912, -16.1059, 21.2136, 0.193912, -16.1059, 21.2136, 0.193912, -8.10595, 21.2136, 0.193912, 16.8941, 28.2136, 0.193912, 22.8941, 32.2136, 0.193912, 17.8941, 21.2136, 0.193912, 7.89405, 29.2136, 0.193912, -10.1059, 21.2136, 0.193912, -8.10595, 21.2136, 0.193912, -0.105949, 35.2136, 0.193912, -2.10595, 11.2136, 0.193912, 41.8941, 16.2136, 0.193912, 41.8941, 23.2136, 0.193912, 36.8941, 28.2136, 0.193912, 22.8941, 21.2136, 0.193912, 16.8941, 17.2136, 0.193912, 20.8941, 36.2136, 0.193912, 12.8941, 40.2136, 0.193912, 11.8941, 40.2136, 0.193912, -1.10595, -29.7864, 0.193912, -7.10595, -31.7864, 0.193912, -4.10595, -29.7864, 0.193912, -2.10595, -20.7864, 0.193912, 0.894051, -20.7864, 0.193912, -7.10595, -49.7864, 0.193912, 34.8941, -45.7864, 0.193912, 39.8941, -41.7864, 0.193912, 36.8941, -42.7864, 0.193912, 28.8941, -20.7864, 0.193912, 16.8941, -20.7864, 0.193912, 8.89405, -29.7864, 0.193912, 10.8941, -34.7864, 0.193912, 17.8941, -20.7864, 0.193912, -14.1059, -30.7864, 0.193912, -14.1059, -29.7864, 0.193912, -7.10595, -20.7864, 0.193912, -7.10595, -23.7864, 0.193912, 36.8941, -16.7864, 0.193912, 36.8941, -15.7864, 0.193912, 20.8941, -40.7864, 0.193912, 23.8941, -42.7864, 0.193912, 28.8941, -41.7864, 0.193912, 36.8941, -29.7864, 0.193912, 36.8941, -15.7864, 0.193912, 20.8941, -20.7864, 0.193912, 16.8941, -34.7864, 0.193912, 17.8941, -40.7864, 0.193912, 23.8941, -29.7864, 0.193912, 36.8941, -23.7864, 0.193912, 36.8941, -20.7864, 0.193912, 0.894051, -29.7864, 0.193912, -2.10595, -29.7864, 0.193912, 3.89405, -20.7864, 0.193912, 8.89405, -20.7864, 0.193912, 0.894051, -29.7864, 0.193912, 3.89405, -29.7864, 0.193912, 10.8941, -1.78641, 0.193912, 7.89405, -0.786407, 0.193912, 10.8941, 1.21359, 0.193912, 7.89405, 1.21359, 0.193912, -8.10595, -0.786407, 0.193912, -11.1059, -1.78641, 0.193912, -8.10595, -6.78641, 0.193912, 6.89405, -1.78641, 0.193912, 7.89405, 1.21359, 0.193912, 7.89405, 1.21359, 0.193912, -8.10595, -1.78641, 0.193912, -8.10595, -6.78641, 0.193912, -7.10595, -6.78641, 0.193912, -0.105949, 1.21359, 0.193912, 7.89405, 7.21359, 0.193912, 6.89405, 7.21359, 0.193912, -0.105949, 1.21359, 0.193912, -8.10595, -6.78641, 0.193912, -0.105949, -6.78641, 0.193912, 6.89405, 7.21359, 0.193912, -0.105949, 7.21359, 0.193912, -7.10595, 1.21359, 0.193912, -8.10595, -42.7864, 0.193912, -2.10595, -44.7864, 0.193912, -8.10595, -47.7864, 0.193912, -0.105949, -51.7864, 0.193912, 6.89405, -51.7864, 0.193912, 10.8941, -48.7864, 0.193912, 11.8941, -43.7864, 0.193912, 5.89405, -42.7864, 0.193912, -2.10595, -47.7864, 0.193912, -0.105949, 123.214, 0.193912, 8.89405, 121.214, 0.193912, 10.8941, 123.214, 0.193912, 13.8941, 135.214, 0.193912, 6.89405, 132.214, 0.193912, 4.89405, 123.214, 0.193912, 26.8941, 121.214, 0.193912, 28.8941, 123.214, 0.193912, 32.8941, 131.214, 0.193912, 30.8941, 123.214, 0.193912, 13.8941, 123.214, 0.193912, 19.8941, 133.214, 0.193912, 24.8941, 145.214, 0.193912, 31.8941, 151.214, 0.193912, 31.8941, 151.214, 0.193912, 23.8941, 143.214, 0.193912, 24.8941, 140.214, 0.193912, 22.8941, 143.214, 0.193912, 24.8941, 151.214, 0.193912, 23.8941, 151.214, 0.193912, 15.8941, 123.214, 0.193912, 26.8941, 131.214, 0.193912, 30.8941, 133.214, 0.193912, 24.8941, 123.214, 0.193912, 19.8941, 132.214, 0.193912, 4.89405, 131.214, 0.193912, -0.105949, 123.214, 0.193912, -0.105949, 123.214, 0.193912, 8.89405, 151.214, 0.193912, 15.8941, 151.214, 0.193912, 7.89405, 142.214, 0.193912, 5.89405, 151.214, 0.193912, 7.89405, 151.214, 0.193912, -0.105949, 144.214, 0.193912, -0.105949, 142.214, 0.193912, 5.89405, 140.214, 0.193912, 22.8941, 151.214, 0.193912, 15.8941, 142.214, 0.193912, 5.89405, 135.214, 0.193912, 6.89405, 123.214, 0.193912, 13.8941, 133.214, 0.193912, 24.8941, -1.78641, 0.193912, 42.8941, -0.786407, 0.193912, 45.8941, 4.21359, 0.193912, 41.8941, 3.21359, 0.193912, 20.8941, -0.786407, 0.193912, 16.8941, -3.78641, 0.193912, 20.8941, -9.78641, 0.193912, 41.8941, -1.78641, 0.193912, 42.8941, 4.21359, 0.193912, 41.8941, 3.21359, 0.193912, 20.8941, -3.78641, 0.193912, 20.8941, -16.7864, 0.193912, 36.8941, -3.78641, 0.193912, 20.8941, -15.7864, 0.193912, 20.8941, -16.7864, 0.193912, 36.8941, 4.21359, 0.193912, 41.8941, 11.2136, 0.193912, 41.8941, 10.2136, 0.193912, 20.8941, 3.21359, 0.193912, 20.8941, 50.2136, 0.193912, 49.8941, 47.2136, 0.193912, 53.8941, 50.2136, 0.193912, 54.8941, 94.2136, 0.193912, 52.8941, 95.2136, 0.193912, 49.8941, 92.2136, 0.193912, 45.8941, 87.2136, 0.193912, 49.8941, 84.2136, 0.193912, 52.8941, 42.2136, 0.193912, 33.8941, 42.2136, 0.193912, 41.8941, 46.2136, 0.193912, 41.8941, 104.214, 0.193912, 52.8941, 104.214, 0.193912, 49.8941, 95.2136, 0.193912, 49.8941, 94.2136, 0.193912, 52.8941, 59.2136, 0.193912, 27.8941, 61.2136, 0.193912, 19.8941, 48.2136, 0.193912, 19.8941, 48.2136, 0.193912, 19.8941, 42.2136, 0.193912, 26.8941, 42.2136, 0.193912, 33.8941, 50.2136, 0.193912, 45.8941, 61.2136, 0.193912, 35.8941, 59.2136, 0.193912, 27.8941, 60.2136, 0.193912, 45.8941, 61.2136, 0.193912, 35.8941, 50.2136, 0.193912, 45.8941, 50.2136, 0.193912, 49.8941, 84.2136, 0.193912, 52.8941, 87.2136, 0.193912, 49.8941, 80.2136, 0.193912, 49.8941, 74.2136, 0.193912, 52.8941, 84.2136, 0.193912, 52.8941, 80.2136, 0.193912, 49.8941, 74.2136, 0.193912, 49.8941, 50.2136, 0.193912, 54.8941, 51.2136, 0.193912, 60.8941, 60.2136, 0.193912, 56.8941, 64.2136, 0.193912, 52.8941, 60.2136, 0.193912, 45.8941, 50.2136, 0.193912, 49.8941, 74.2136, 0.193912, 52.8941, 74.2136, 0.193912, 49.8941, 67.2136, 0.193912, 49.8941, 64.2136, 0.193912, 52.8941, 42.2136, 0.193912, 33.8941, 46.2136, 0.193912, 41.8941, 50.2136, 0.193912, 45.8941, 64.2136, 0.193912, 52.8941, 67.2136, 0.193912, 49.8941, 62.2136, 0.193912, 48.8941, 64.2136, 0.193912, 52.8941, 62.2136, 0.193912, 48.8941, 60.2136, 0.193912, 45.8941, 51.2136, 0.193912, 60.8941, 60.2136, 0.193912, 60.8941, 60.2136, 0.193912, 56.8941, 146.214, 0.193912, 120.894, 144.214, 0.193912, 123.894, 151.214, 0.193912, 123.894, 104.214, 0.193912, 49.8941, 104.214, 0.193912, 52.8941, 109.214, 0.193912, 53.8941, 112.214, 0.193912, 49.8941, 141.214, 0.193912, 73.8941, 144.214, 0.193912, 75.8941, 151.214, 0.193912, 77.8941, 151.214, 0.193912, 65.8941, 146.214, 0.193912, 100.894, 143.214, 0.193912, 103.894, 146.214, 0.193912, 107.894, 151.214, 0.193912, 111.894, 151.214, 0.193912, 100.894, 111.214, 0.193912, 72.8941, 115.214, 0.193912, 75.8941, 118.214, 0.193912, 73.8941, 112.214, 0.193912, 65.8941, 112.214, 0.193912, 49.8941, 109.214, 0.193912, 53.8941, 112.214, 0.193912, 57.8941, 120.214, 0.193912, 48.8941, 132.214, 0.193912, 34.8941, 131.214, 0.193912, 30.8941, 123.214, 0.193912, 32.8941, 141.214, 0.193912, 73.8941, 151.214, 0.193912, 65.8941, 151.214, 0.193912, 54.8941, 146.214, 0.193912, 120.894, 151.214, 0.193912, 123.894, 151.214, 0.193912, 111.894, 146.214, 0.193912, 113.894, 112.214, 0.193912, 57.8941, 112.214, 0.193912, 65.8941, 118.214, 0.193912, 73.8941, 129.214, 0.193912, 73.8941, 146.214, 0.193912, 107.894, 146.214, 0.193912, 113.894, 151.214, 0.193912, 111.894, 151.214, 0.193912, 31.8941, 145.214, 0.193912, 31.8941, 141.214, 0.193912, 36.8941, 151.214, 0.193912, 42.8941, 120.214, 0.193912, 48.8941, 112.214, 0.193912, 57.8941, 129.214, 0.193912, 73.8941, 141.214, 0.193912, 73.8941, 151.214, 0.193912, 54.8941, 135.214, 0.193912, 36.8941, 146.214, 0.193912, 93.8941, 146.214, 0.193912, 100.894, 151.214, 0.193912, 100.894, 151.214, 0.193912, 88.8941, 135.214, 0.193912, 36.8941, 123.214, 0.193912, 44.8941, 120.214, 0.193912, 48.8941, 146.214, 0.193912, 87.8941, 146.214, 0.193912, 93.8941, 151.214, 0.193912, 88.8941, 144.214, 0.193912, 85.8941, 146.214, 0.193912, 87.8941, 151.214, 0.193912, 88.8941, 151.214, 0.193912, 77.8941, 144.214, 0.193912, 75.8941, 135.214, 0.193912, 36.8941, 132.214, 0.193912, 34.8941, 123.214, 0.193912, 32.8941, 123.214, 0.193912, 44.8941, 151.214, 0.193912, 42.8941, 141.214, 0.193912, 36.8941, 135.214, 0.193912, 36.8941, 151.214, 0.193912, 54.8941, -52.7864, 0.193912, 97.8941, -45.7864, 0.193912, 94.8941, -48.7864, 0.193912, 92.8941, -58.7864, 0.193912, 92.8941, -58.7864, 0.193912, 100.894, -52.7864, 0.193912, 97.8941, -52.7864, 0.193912, 47.8941, -45.7864, 0.193912, 39.8941, -49.7864, 0.193912, 34.8941, -54.7864, 0.193912, 38.8941, -58.7864, 0.193912, 42.8941, -58.7864, 0.193912, 49.8941, -52.7864, 0.193912, 74.8941, -58.7864, 0.193912, 71.8941, -58.7864, 0.193912, 78.8941, -58.7864, 0.193912, 92.8941, -52.7864, 0.193912, 97.8941, -48.7864, 0.193912, 92.8941, -52.7864, 0.193912, 83.8941, -58.7864, 0.193912, 85.8941, -52.7864, 0.193912, 65.8941, -58.7864, 0.193912, 63.8941, -58.7864, 0.193912, 71.8941, -52.7864, 0.193912, 74.8941, -52.7864, 0.193912, 56.8941, -52.7864, 0.193912, 47.8941, -58.7864, 0.193912, 49.8941, -58.7864, 0.193912, 56.8941, -58.7864, 0.193912, 78.8941, -58.7864, 0.193912, 85.8941, -52.7864, 0.193912, 83.8941, -52.7864, 0.193912, 74.8941, -52.7864, 0.193912, 56.8941, -58.7864, 0.193912, 56.8941, -58.7864, 0.193912, 63.8941, -52.7864, 0.193912, 65.8941, -16.7864, 0.193912, 65.8941, -19.7864, 0.193912, 63.8941, -21.7864, 0.193912, 65.8941, -19.7864, 0.193912, 69.8941, -24.7864, 0.193912, 70.8941, -23.7864, 0.193912, 73.8941, -19.7864, 0.193912, 69.8941, -26.7864, 0.193912, 65.8941, -26.7864, 0.193912, 70.8941, -24.7864, 0.193912, 70.8941, -19.7864, 0.193912, 69.8941, -21.7864, 0.193912, 65.8941, 4.21359, 0.193912, 55.8941, -3.78641, 0.193912, 55.8941, -6.78641, 0.193912, 61.8941, -2.78641, 0.193912, 69.8941, 5.21359, 0.193912, 69.8941, 14.2136, 0.193912, 62.8941, 5.21359, 0.193912, 69.8941, 14.2136, 0.193912, 69.8941, 14.2136, 0.193912, 62.8941, 4.21359, 0.193912, 55.8941, 1.21359, 0.193912, 51.8941, -3.78641, 0.193912, 55.8941, -16.7864, 0.193912, 65.8941, -19.7864, 0.193912, 69.8941, -11.7864, 0.193912, 69.8941, -8.78641, 0.193912, 64.8941, 14.2136, 0.193912, 62.8941, 14.2136, 0.193912, 55.8941, 4.21359, 0.193912, 55.8941, -3.78641, 0.193912, 55.8941, -6.78641, 0.193912, 55.8941, -6.78641, 0.193912, 61.8941, -8.78641, 0.193912, 64.8941, -11.7864, 0.193912, 69.8941, -2.78641, 0.193912, 69.8941, -6.78641, 0.193912, 61.8941, -19.7864, 0.193912, 83.8941, -23.7864, 0.193912, 79.8941, -23.7864, 0.193912, 88.8941, -15.7864, 0.193912, 88.8941, -2.78641, 0.193912, 98.8941, -4.78641, 0.193912, 101.894, 4.21359, 0.193912, 115.894, 11.2136, 0.193912, 115.894, -12.7864, 0.193912, 83.8941, -19.7864, 0.193912, 83.8941, -15.7864, 0.193912, 88.8941, -10.7864, 0.193912, 102.894, -17.7864, 0.193912, 102.894, -15.7864, 0.193912, 107.894, -12.7864, 0.193912, 83.8941, -15.7864, 0.193912, 88.8941, -6.78641, 0.193912, 88.8941, -5.78641, 0.193912, 83.8941, 26.2136, 0.193912, 115.894, 33.2136, 0.193912, 115.894, 53.2136, 0.193912, 109.894, 55.2136, 0.193912, 95.8941, 30.2136, 0.193912, 83.8941, 23.2136, 0.193912, 83.8941, 11.2136, 0.193912, 115.894, 14.2136, 0.193912, 119.894, 19.2136, 0.193912, 115.894, 1.21359, 0.193912, 83.8941, -5.78641, 0.193912, 83.8941, -6.78641, 0.193912, 88.8941, 1.21359, 0.193912, 83.8941, -6.78641, 0.193912, 88.8941, -2.78641, 0.193912, 92.8941, 9.21359, 0.193912, 83.8941, 49.2136, 0.193912, 65.8941, 42.2136, 0.193912, 66.8941, 42.2136, 0.193912, 72.8941, -15.7864, 0.193912, 107.894, -14.7864, 0.193912, 114.894, -9.78641, 0.193912, 115.894, -2.78641, 0.193912, 115.894, -4.78641, 0.193912, 101.894, -10.7864, 0.193912, 102.894, 60.2136, 0.193912, 66.8941, 60.2136, 0.193912, 60.8941, 51.2136, 0.193912, 60.8941, 60.2136, 0.193912, 66.8941, 51.2136, 0.193912, 60.8941, 49.2136, 0.193912, 65.8941, 60.2136, 0.193912, 73.8941, 9.21359, 0.193912, 83.8941, -2.78641, 0.193912, 92.8941, -2.78641, 0.193912, 98.8941, 16.2136, 0.193912, 83.8941, -2.78641, 0.193912, 98.8941, 11.2136, 0.193912, 115.894, 19.2136, 0.193912, 115.894, 53.2136, 0.193912, 109.894, 59.2136, 0.193912, 104.894, 55.2136, 0.193912, 95.8941, 40.2136, 0.193912, 115.894, 48.2136, 0.193912, 115.894, 53.2136, 0.193912, 109.894, 23.2136, 0.193912, 83.8941, 16.2136, 0.193912, 83.8941, -2.78641, 0.193912, 98.8941, 19.2136, 0.193912, 115.894, 26.2136, 0.193912, 115.894, 33.2136, 0.193912, 115.894, 40.2136, 0.193912, 115.894, 53.2136, 0.193912, 109.894, 55.2136, 0.193912, 95.8941, 38.2136, 0.193912, 83.8941, 30.2136, 0.193912, 83.8941, 49.2136, 0.193912, 65.8941, 42.2136, 0.193912, 72.8941, 42.2136, 0.193912, 79.8941, 60.2136, 0.193912, 80.8941, 60.2136, 0.193912, 73.8941, 55.2136, 0.193912, 95.8941, 60.2136, 0.193912, 87.8941, 60.2136, 0.193912, 80.8941, 42.2136, 0.193912, 79.8941, 38.2136, 0.193912, 83.8941, -4.78641, 0.193912, 101.894, -2.78641, 0.193912, 115.894, 4.21359, 0.193912, 115.894, 74.2136, 0.193912, 77.8941, 74.2136, 0.193912, 88.8941, 78.2136, 0.193912, 85.8941, 78.2136, 0.193912, 75.8941, 74.2136, 0.193912, 66.8941, 74.2136, 0.193912, 77.8941, 78.2136, 0.193912, 75.8941, 78.2136, 0.193912, 66.8941, 113.214, 0.193912, 78.8941, 115.214, 0.193912, 75.8941, 111.214, 0.193912, 72.8941, 107.214, 0.193912, 76.8941, 113.214, 0.193912, 98.8941, 115.214, 0.193912, 91.8941, 114.214, 0.193912, 84.8941, 114.214, 0.193912, 84.8941, 113.214, 0.193912, 78.8941, 107.214, 0.193912, 76.8941, 102.214, 0.193912, 76.8941, 102.214, 0.193912, 76.8941, 92.2136, 0.193912, 70.8941, 92.2136, 0.193912, 80.8941, 78.2136, 0.193912, 104.894, 74.2136, 0.193912, 109.894, 85.2136, 0.193912, 113.894, 86.2136, 0.193912, 111.894, 102.214, 0.193912, 76.8941, 92.2136, 0.193912, 80.8941, 92.2136, 0.193912, 90.8941, 96.2136, 0.193912, 111.894, 113.214, 0.193912, 98.8941, 114.214, 0.193912, 84.8941, 83.2136, 0.193912, 100.894, 78.2136, 0.193912, 104.894, 86.2136, 0.193912, 111.894, 93.2136, 0.193912, 109.894, 114.214, 0.193912, 117.894, 115.214, 0.193912, 111.894, 114.214, 0.193912, 104.894, 113.214, 0.193912, 98.8941, 96.2136, 0.193912, 111.894, 98.2136, 0.193912, 117.894, 92.2136, 0.193912, 90.8941, 87.2136, 0.193912, 95.8941, 83.2136, 0.193912, 100.894, 93.2136, 0.193912, 109.894, 96.2136, 0.193912, 111.894, -25.7864, 0.193912, 145.894, -25.7864, 0.193912, 139.894, -29.7864, 0.193912, 143.894, -52.7864, 0.193912, 113.894, -56.7864, 0.193912, 112.894, -58.7864, 0.193912, 116.894, -58.7864, 0.193912, 125.894, -39.7864, 0.193912, 115.894, -39.7864, 0.193912, 107.894, -46.7864, 0.193912, 110.894, -25.7864, 0.193912, 152.894, -25.7864, 0.193912, 145.894, -29.7864, 0.193912, 143.894, -35.7864, 0.193912, 143.894, -34.7864, 0.193912, 152.894, -50.7864, 0.193912, 152.894, -42.7864, 0.193912, 152.894, -39.7864, 0.193912, 139.894, -39.7864, 0.193912, 131.894, -58.7864, 0.193912, 134.894, -58.7864, 0.193912, 143.894, -39.7864, 0.193912, 123.894, -52.7864, 0.193912, 113.894, -58.7864, 0.193912, 125.894, -58.7864, 0.193912, 134.894, -39.7864, 0.193912, 131.894, -42.7864, 0.193912, 152.894, -34.7864, 0.193912, 152.894, -35.7864, 0.193912, 143.894, -39.7864, 0.193912, 139.894, -58.7864, 0.193912, 143.894, -58.7864, 0.193912, 152.894, -50.7864, 0.193912, 152.894, -39.7864, 0.193912, 115.894, -46.7864, 0.193912, 110.894, -52.7864, 0.193912, 113.894, -39.7864, 0.193912, 123.894, 117.214, 0.193912, 127.894, 122.214, 0.193912, 125.894, 115.214, 0.193912, 123.894, 94.2136, 0.193912, 133.894, 97.2136, 0.193912, 135.894, 98.2136, 0.193912, 130.894, 110.214, 0.193912, 129.894, 114.214, 0.193912, 132.894, 117.214, 0.193912, 127.894, 115.214, 0.193912, 123.894, 65.2136, 0.193912, 117.894, 57.2136, 0.193912, 125.894, 57.2136, 0.193912, 132.894, 89.2136, 0.193912, 134.894, 94.2136, 0.193912, 133.894, 98.2136, 0.193912, 130.894, 57.2136, 0.193912, 146.894, 57.2136, 0.193912, 153.894, 65.2136, 0.193912, 152.894, 74.2136, 0.193912, 109.894, 69.2136, 0.193912, 113.894, 65.2136, 0.193912, 117.894, 84.2136, 0.193912, 119.894, 85.2136, 0.193912, 113.894, 101.214, 0.193912, 128.894, 110.214, 0.193912, 129.894, 115.214, 0.193912, 123.894, 114.214, 0.193912, 117.894, 98.2136, 0.193912, 117.894, 96.2136, 0.193912, 122.894, 89.2136, 0.193912, 134.894, 98.2136, 0.193912, 130.894, 101.214, 0.193912, 128.894, 96.2136, 0.193912, 122.894, 88.2136, 0.193912, 123.894, 74.2136, 0.193912, 148.894, 83.2136, 0.193912, 144.894, 89.2136, 0.193912, 134.894, 57.2136, 0.193912, 139.894, 57.2136, 0.193912, 146.894, 65.2136, 0.193912, 152.894, 74.2136, 0.193912, 148.894, 89.2136, 0.193912, 134.894, 88.2136, 0.193912, 123.894, 84.2136, 0.193912, 119.894, 57.2136, 0.193912, 132.894, 57.2136, 0.193912, 139.894, 74.2136, 0.193912, 148.894, 89.2136, 0.193912, 134.894, 84.2136, 0.193912, 119.894, 65.2136, 0.193912, 117.894, -1.78641, 0.193912, 139.894, -4.78641, 0.193912, 137.894, -6.78641, 0.193912, 139.894, -4.78641, 0.193912, 143.894, -9.78641, 0.193912, 144.894, -8.78641, 0.193912, 147.894, -4.78641, 0.193912, 143.894, -11.7864, 0.193912, 139.894, -11.7864, 0.193912, 144.894, -9.78641, 0.193912, 144.894, -4.78641, 0.193912, 143.894, -6.78641, 0.193912, 139.894, 19.2136, 0.193912, 129.894, 11.2136, 0.193912, 129.894, 8.21359, 0.193912, 135.894, 12.2136, 0.193912, 143.894, 20.2136, 0.193912, 143.894, 29.2136, 0.193912, 136.894, 20.2136, 0.193912, 143.894, 29.2136, 0.193912, 143.894, 29.2136, 0.193912, 136.894, 4.21359, 0.193912, 139.894, 3.21359, 0.193912, 143.894, 12.2136, 0.193912, 143.894, 8.21359, 0.193912, 135.894, -1.78641, 0.193912, 139.894, -4.78641, 0.193912, 143.894, 3.21359, 0.193912, 143.894, 4.21359, 0.193912, 139.894, 29.2136, 0.193912, 136.894, 29.2136, 0.193912, 129.894, 19.2136, 0.193912, 129.894, 11.2136, 0.193912, 129.894, 8.21359, 0.193912, 129.894, 8.21359, 0.193912, 135.894, 19.2136, 0.193912, 129.894, 16.2136, 0.193912, 125.894, 11.2136, 0.193912, 129.894, 99.2136, 0.193912, 153.894, 105.214, 0.193912, 154.894, 108.214, 0.193912, 151.894, 108.214, 0.193912, 145.894, 101.214, 0.193912, 141.894, 97.2136, 0.193912, 147.894, 151.214, 0.193912, 153.894, 151.214, 0.193912, 145.894, 148.214, 0.193912, 149.894, 144.214, 0.193912, 153.894, 151.214, 0.193912, 153.894, 148.214, 0.193912, 149.894, 142.214, 0.193912, 150.894, 137.214, 0.193912, 153.894, 144.214, 0.193912, 153.894, 142.214, 0.193912, 150.894, 137.214, 0.193912, 145.894 ) +polygons = [ PoolIntArray( 5, 0, 4 ), PoolIntArray( 0, 1, 4 ), PoolIntArray( 1, 3, 4 ), PoolIntArray( 1, 2, 3 ), PoolIntArray( 8, 6, 7 ), PoolIntArray( 14, 9, 13 ), PoolIntArray( 9, 10, 13 ), PoolIntArray( 10, 11, 13 ), PoolIntArray( 11, 12, 13 ), PoolIntArray( 17, 15, 16 ), PoolIntArray( 20, 18, 19 ), PoolIntArray( 24, 21, 23 ), PoolIntArray( 21, 22, 23 ), PoolIntArray( 27, 25, 26 ), PoolIntArray( 30, 28, 29 ), PoolIntArray( 35, 31, 34 ), PoolIntArray( 31, 32, 34 ), PoolIntArray( 32, 33, 34 ), PoolIntArray( 38, 36, 37 ), PoolIntArray( 41, 39, 40 ), PoolIntArray( 44, 42, 43 ), PoolIntArray( 47, 45, 46 ), PoolIntArray( 51, 48, 50 ), PoolIntArray( 48, 49, 50 ), PoolIntArray( 54, 52, 53 ), PoolIntArray( 58, 55, 57 ), PoolIntArray( 55, 56, 57 ), PoolIntArray( 61, 59, 60 ), PoolIntArray( 64, 62, 63 ), PoolIntArray( 67, 65, 66 ), PoolIntArray( 70, 68, 69 ), PoolIntArray( 76, 71, 75 ), PoolIntArray( 71, 74, 75 ), PoolIntArray( 71, 73, 74 ), PoolIntArray( 71, 72, 73 ), PoolIntArray( 79, 77, 78 ), PoolIntArray( 82, 80, 81 ), PoolIntArray( 85, 83, 84 ), PoolIntArray( 88, 86, 87 ), PoolIntArray( 92, 89, 91 ), PoolIntArray( 89, 90, 91 ), PoolIntArray( 98, 93, 97 ), PoolIntArray( 93, 94, 97 ), PoolIntArray( 94, 95, 97 ), PoolIntArray( 95, 96, 97 ), PoolIntArray( 101, 99, 100 ), PoolIntArray( 105, 102, 104 ), PoolIntArray( 102, 103, 104 ), PoolIntArray( 109, 106, 108 ), PoolIntArray( 106, 107, 108 ), PoolIntArray( 113, 110, 112 ), PoolIntArray( 110, 111, 112 ), PoolIntArray( 116, 114, 115 ), PoolIntArray( 120, 117, 119 ), PoolIntArray( 117, 118, 119 ), PoolIntArray( 125, 121, 124 ), PoolIntArray( 121, 123, 124 ), PoolIntArray( 121, 122, 123 ), 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( 141, 138, 140 ), PoolIntArray( 138, 139, 140 ), PoolIntArray( 147, 142, 146 ), PoolIntArray( 142, 145, 146 ), PoolIntArray( 142, 144, 145 ), PoolIntArray( 142, 143, 144 ), PoolIntArray( 152, 148, 151 ), PoolIntArray( 148, 150, 151 ), PoolIntArray( 148, 149, 150 ), PoolIntArray( 156, 153, 155 ), PoolIntArray( 153, 154, 155 ), PoolIntArray( 159, 157, 158 ), PoolIntArray( 163, 160, 162 ), PoolIntArray( 160, 161, 162 ), PoolIntArray( 169, 164, 168 ), PoolIntArray( 164, 165, 168 ), PoolIntArray( 165, 166, 168 ), PoolIntArray( 166, 167, 168 ), PoolIntArray( 174, 170, 173 ), PoolIntArray( 170, 171, 173 ), PoolIntArray( 171, 172, 173 ), PoolIntArray( 180, 175, 179 ), PoolIntArray( 175, 178, 179 ), PoolIntArray( 175, 177, 178 ), PoolIntArray( 175, 176, 177 ), PoolIntArray( 184, 181, 183 ), PoolIntArray( 181, 182, 183 ), PoolIntArray( 188, 185, 187 ), PoolIntArray( 185, 186, 187 ), PoolIntArray( 192, 189, 191 ), PoolIntArray( 189, 190, 191 ), PoolIntArray( 196, 193, 195 ), PoolIntArray( 193, 194, 195 ), PoolIntArray( 201, 197, 200 ), PoolIntArray( 197, 198, 200 ), PoolIntArray( 198, 199, 200 ), PoolIntArray( 204, 202, 203 ), PoolIntArray( 210, 205, 209 ), PoolIntArray( 205, 208, 209 ), PoolIntArray( 205, 206, 208 ), PoolIntArray( 206, 207, 208 ), PoolIntArray( 216, 211, 215 ), PoolIntArray( 211, 214, 215 ), PoolIntArray( 211, 213, 214 ), PoolIntArray( 211, 212, 213 ), PoolIntArray( 220, 217, 219 ), PoolIntArray( 217, 218, 219 ), PoolIntArray( 224, 221, 223 ), PoolIntArray( 221, 222, 223 ), PoolIntArray( 228, 225, 227 ), PoolIntArray( 225, 226, 227 ), PoolIntArray( 231, 229, 230 ), PoolIntArray( 234, 232, 233 ), PoolIntArray( 237, 235, 236 ), PoolIntArray( 242, 238, 241 ), PoolIntArray( 238, 240, 241 ), PoolIntArray( 238, 239, 240 ), PoolIntArray( 246, 243, 245 ), PoolIntArray( 243, 244, 245 ), PoolIntArray( 250, 247, 249 ), PoolIntArray( 247, 248, 249 ), PoolIntArray( 254, 251, 253 ), PoolIntArray( 251, 252, 253 ), PoolIntArray( 257, 255, 256 ), PoolIntArray( 261, 258, 260 ), PoolIntArray( 258, 259, 260 ), PoolIntArray( 267, 262, 266 ), PoolIntArray( 262, 263, 266 ), PoolIntArray( 263, 264, 266 ), PoolIntArray( 264, 265, 266 ), PoolIntArray( 270, 268, 269 ), PoolIntArray( 274, 271, 273 ), PoolIntArray( 271, 272, 273 ), PoolIntArray( 277, 275, 276 ), PoolIntArray( 280, 278, 279 ), PoolIntArray( 283, 281, 282 ), PoolIntArray( 287, 284, 286 ), PoolIntArray( 284, 285, 286 ), PoolIntArray( 293, 288, 292 ), PoolIntArray( 288, 289, 292 ), PoolIntArray( 289, 290, 292 ), PoolIntArray( 290, 291, 292 ), PoolIntArray( 296, 294, 295 ), PoolIntArray( 299, 297, 298 ), PoolIntArray( 305, 300, 304 ), PoolIntArray( 300, 303, 304 ), PoolIntArray( 300, 301, 303 ), PoolIntArray( 301, 302, 303 ), PoolIntArray( 310, 306, 309 ), PoolIntArray( 306, 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( 325, 322, 324 ), PoolIntArray( 322, 323, 324 ), PoolIntArray( 329, 326, 328 ), PoolIntArray( 326, 327, 328 ), PoolIntArray( 333, 330, 332 ), PoolIntArray( 330, 331, 332 ), PoolIntArray( 336, 334, 335 ), PoolIntArray( 340, 337, 339 ), PoolIntArray( 337, 338, 339 ), PoolIntArray( 346, 341, 345 ), PoolIntArray( 341, 344, 345 ), PoolIntArray( 341, 343, 344 ), PoolIntArray( 341, 342, 343 ), PoolIntArray( 349, 347, 348 ), PoolIntArray( 352, 350, 351 ), PoolIntArray( 358, 353, 357 ), PoolIntArray( 353, 354, 357 ), PoolIntArray( 354, 355, 357 ), PoolIntArray( 355, 356, 357 ), PoolIntArray( 361, 359, 360 ), PoolIntArray( 365, 362, 364 ), PoolIntArray( 362, 363, 364 ), PoolIntArray( 368, 366, 367 ), PoolIntArray( 373, 369, 372 ), PoolIntArray( 369, 370, 372 ), PoolIntArray( 370, 371, 372 ), PoolIntArray( 376, 374, 375 ), PoolIntArray( 380, 377, 379 ), PoolIntArray( 377, 378, 379 ), PoolIntArray( 383, 381, 382 ), PoolIntArray( 389, 384, 388 ), PoolIntArray( 384, 385, 388 ), PoolIntArray( 385, 386, 388 ), PoolIntArray( 386, 387, 388 ), PoolIntArray( 393, 390, 392 ), PoolIntArray( 390, 391, 392 ), PoolIntArray( 396, 394, 395 ), PoolIntArray( 400, 397, 399 ), PoolIntArray( 397, 398, 399 ), PoolIntArray( 406, 401, 405 ), PoolIntArray( 401, 404, 405 ), PoolIntArray( 401, 403, 404 ), PoolIntArray( 401, 402, 403 ), PoolIntArray( 410, 407, 409 ), PoolIntArray( 407, 408, 409 ), PoolIntArray( 413, 411, 412 ), PoolIntArray( 416, 414, 415 ), PoolIntArray( 419, 417, 418 ), PoolIntArray( 422, 420, 421 ), PoolIntArray( 425, 423, 424 ), PoolIntArray( 429, 426, 428 ), PoolIntArray( 426, 427, 428 ), PoolIntArray( 433, 430, 432 ), PoolIntArray( 430, 431, 432 ), PoolIntArray( 438, 434, 437 ), PoolIntArray( 434, 436, 437 ), PoolIntArray( 434, 435, 436 ), PoolIntArray( 442, 439, 441 ), PoolIntArray( 439, 440, 441 ), PoolIntArray( 446, 443, 445 ), PoolIntArray( 443, 444, 445 ), PoolIntArray( 449, 447, 448 ), PoolIntArray( 452, 450, 451 ), PoolIntArray( 456, 453, 455 ), PoolIntArray( 453, 454, 455 ), PoolIntArray( 460, 457, 459 ), PoolIntArray( 457, 458, 459 ), PoolIntArray( 463, 461, 462 ), PoolIntArray( 467, 464, 466 ), PoolIntArray( 464, 465, 466 ), PoolIntArray( 473, 468, 472 ), PoolIntArray( 468, 469, 472 ), PoolIntArray( 469, 470, 472 ), PoolIntArray( 470, 471, 472 ), PoolIntArray( 477, 474, 476 ), PoolIntArray( 474, 475, 476 ), PoolIntArray( 480, 478, 479 ), PoolIntArray( 483, 481, 482 ), PoolIntArray( 488, 484, 487 ), PoolIntArray( 484, 485, 487 ), PoolIntArray( 485, 486, 487 ), PoolIntArray( 492, 489, 491 ), PoolIntArray( 489, 490, 491 ), PoolIntArray( 496, 493, 495 ), PoolIntArray( 493, 494, 495 ), PoolIntArray( 499, 497, 498 ), PoolIntArray( 502, 500, 501 ), PoolIntArray( 508, 503, 507 ), PoolIntArray( 503, 506, 507 ), PoolIntArray( 503, 504, 506 ), PoolIntArray( 504, 505, 506 ), PoolIntArray( 511, 509, 510 ), PoolIntArray( 516, 512, 515 ), PoolIntArray( 512, 514, 515 ), PoolIntArray( 512, 513, 514 ), PoolIntArray( 520, 517, 519 ), PoolIntArray( 517, 518, 519 ), PoolIntArray( 524, 521, 523 ), PoolIntArray( 521, 522, 523 ), PoolIntArray( 528, 525, 527 ), PoolIntArray( 525, 526, 527 ), PoolIntArray( 532, 529, 531 ), PoolIntArray( 529, 530, 531 ), PoolIntArray( 536, 533, 535 ), PoolIntArray( 533, 534, 535 ), PoolIntArray( 539, 537, 538 ), PoolIntArray( 544, 540, 543 ), PoolIntArray( 540, 542, 543 ), PoolIntArray( 540, 541, 542 ), PoolIntArray( 550, 545, 549 ), PoolIntArray( 545, 548, 549 ), PoolIntArray( 545, 547, 548 ), PoolIntArray( 545, 546, 547 ), PoolIntArray( 553, 551, 552 ), PoolIntArray( 556, 554, 555 ), PoolIntArray( 560, 557, 559 ), PoolIntArray( 557, 558, 559 ), PoolIntArray( 563, 561, 562 ), PoolIntArray( 566, 564, 565 ), PoolIntArray( 570, 567, 569 ), PoolIntArray( 567, 568, 569 ), PoolIntArray( 574, 571, 573 ), PoolIntArray( 571, 572, 573 ), PoolIntArray( 578, 575, 577 ), PoolIntArray( 575, 576, 577 ), PoolIntArray( 581, 579, 580 ), PoolIntArray( 584, 582, 583 ), PoolIntArray( 588, 585, 587 ), PoolIntArray( 585, 586, 587 ), PoolIntArray( 594, 589, 593 ), PoolIntArray( 589, 590, 593 ), PoolIntArray( 590, 591, 593 ), PoolIntArray( 591, 592, 593 ), PoolIntArray( 597, 595, 596 ), PoolIntArray( 600, 598, 599 ), PoolIntArray( 604, 601, 603 ), PoolIntArray( 601, 602, 603 ), PoolIntArray( 607, 605, 606 ), PoolIntArray( 613, 608, 612 ), PoolIntArray( 608, 609, 612 ), PoolIntArray( 609, 610, 612 ), PoolIntArray( 610, 611, 612 ), PoolIntArray( 616, 614, 615 ), PoolIntArray( 620, 617, 619 ), PoolIntArray( 617, 618, 619 ), PoolIntArray( 624, 621, 623 ), PoolIntArray( 621, 622, 623 ), PoolIntArray( 627, 625, 626 ), PoolIntArray( 630, 628, 629 ), PoolIntArray( 633, 631, 632 ), PoolIntArray( 638, 634, 637 ), PoolIntArray( 634, 635, 637 ), PoolIntArray( 635, 636, 637 ), PoolIntArray( 641, 639, 640 ), PoolIntArray( 644, 642, 643 ), PoolIntArray( 649, 645, 648 ), PoolIntArray( 645, 646, 648 ), PoolIntArray( 646, 647, 648 ), PoolIntArray( 654, 650, 653 ), PoolIntArray( 650, 651, 653 ), PoolIntArray( 651, 652, 653 ), PoolIntArray( 657, 655, 656 ), PoolIntArray( 661, 658, 660 ), PoolIntArray( 658, 659, 660 ), PoolIntArray( 665, 662, 664 ), PoolIntArray( 662, 663, 664 ), PoolIntArray( 669, 666, 668 ), PoolIntArray( 666, 667, 668 ), PoolIntArray( 672, 670, 671 ), PoolIntArray( 676, 673, 675 ), PoolIntArray( 673, 674, 675 ), PoolIntArray( 679, 677, 678 ), PoolIntArray( 683, 680, 682 ), PoolIntArray( 680, 681, 682 ), PoolIntArray( 689, 684, 688 ), PoolIntArray( 684, 685, 688 ), PoolIntArray( 685, 686, 688 ), PoolIntArray( 686, 687, 688 ), PoolIntArray( 693, 690, 692 ), PoolIntArray( 690, 691, 692 ), PoolIntArray( 699, 694, 698 ), PoolIntArray( 694, 695, 698 ), PoolIntArray( 695, 696, 698 ), PoolIntArray( 696, 697, 698 ), PoolIntArray( 704, 700, 703 ), PoolIntArray( 700, 701, 703 ), PoolIntArray( 701, 702, 703 ), PoolIntArray( 707, 705, 706 ), PoolIntArray( 711, 708, 710 ), PoolIntArray( 708, 709, 710 ), PoolIntArray( 714, 712, 713 ), PoolIntArray( 719, 715, 718 ), PoolIntArray( 715, 717, 718 ), PoolIntArray( 715, 716, 717 ), PoolIntArray( 725, 720, 724 ), PoolIntArray( 720, 721, 724 ), PoolIntArray( 721, 722, 724 ), PoolIntArray( 722, 723, 724 ), PoolIntArray( 730, 726, 729 ), PoolIntArray( 726, 728, 729 ), PoolIntArray( 726, 727, 728 ), PoolIntArray( 734, 731, 733 ), PoolIntArray( 731, 732, 733 ), PoolIntArray( 737, 735, 736 ), PoolIntArray( 741, 738, 740 ), PoolIntArray( 738, 739, 740 ), PoolIntArray( 744, 742, 743 ), PoolIntArray( 747, 745, 746 ), PoolIntArray( 751, 748, 750 ), PoolIntArray( 748, 749, 750 ), PoolIntArray( 754, 752, 753 ), PoolIntArray( 757, 755, 756 ), PoolIntArray( 760, 758, 759 ), PoolIntArray( 765, 761, 764 ), PoolIntArray( 761, 762, 764 ), PoolIntArray( 762, 763, 764 ), PoolIntArray( 771, 766, 770 ), PoolIntArray( 766, 767, 770 ), PoolIntArray( 767, 768, 770 ), PoolIntArray( 768, 769, 770 ), PoolIntArray( 776, 772, 775 ), PoolIntArray( 772, 773, 775 ), PoolIntArray( 773, 774, 775 ), PoolIntArray( 779, 777, 778 ), PoolIntArray( 783, 780, 782 ), PoolIntArray( 780, 781, 782 ), PoolIntArray( 786, 784, 785 ), PoolIntArray( 792, 787, 791 ), PoolIntArray( 787, 788, 791 ), PoolIntArray( 788, 790, 791 ), PoolIntArray( 788, 789, 790 ), PoolIntArray( 796, 793, 795 ), PoolIntArray( 793, 794, 795 ), PoolIntArray( 799, 797, 798 ), PoolIntArray( 804, 800, 803 ), PoolIntArray( 800, 802, 803 ), PoolIntArray( 800, 801, 802 ), PoolIntArray( 810, 805, 809 ), PoolIntArray( 805, 808, 809 ), PoolIntArray( 805, 807, 808 ), PoolIntArray( 805, 806, 807 ), PoolIntArray( 813, 811, 812 ), PoolIntArray( 817, 814, 816 ), PoolIntArray( 814, 815, 816 ), PoolIntArray( 821, 818, 820 ), PoolIntArray( 818, 819, 820 ), PoolIntArray( 824, 822, 823 ), PoolIntArray( 827, 825, 826 ), PoolIntArray( 830, 828, 829 ), PoolIntArray( 836, 831, 835 ), PoolIntArray( 831, 832, 835 ), PoolIntArray( 832, 833, 835 ), PoolIntArray( 833, 834, 835 ), PoolIntArray( 839, 837, 838 ), PoolIntArray( 843, 840, 842 ), PoolIntArray( 840, 841, 842 ), PoolIntArray( 847, 844, 846 ), PoolIntArray( 844, 845, 846 ) ] cell/size = 1.0 cell/height = 0.1 agent/height = 5.0 @@ -187,10 +188,10 @@ transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 154.153 transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 158.153, 0, 156.637 ) [node name="Wall106" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 130.153, 0, 134.637 ) +transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 130.248, 0, 135.065 ) [node name="Wall108" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 130.153, 0, 154.637 ) +transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 130, 0, 155 ) [node name="Wall107" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( -1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 130.153, 0, 124.637 ) @@ -256,7 +257,7 @@ transform = Transform( -0.819152, 0, -0.573577, 0, 1, 0, 0.573577, 0, -0.819152, transform = Transform( -0.819152, 0, -0.573577, 0, 1, 0, 0.573577, 0, -0.819152, 149.153, 0, -39.363 ) [node name="Wall109" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 152.153, 0, 130.637 ) +transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 156, 0, 130.637 ) [node name="Wall110" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 136.153, 0, 130.637 ) @@ -292,13 +293,13 @@ transform = Transform( 0.939693, 0, 0.34202, 0, 1, 0, -0.34202, 0, 0.939693, -44 transform = Transform( 0.939693, 0, 0.34202, 0, 1, 0, -0.34202, 0, 0.939693, -17.2944, 0, 156.6 ) [node name="Wall34" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( 0.34202, 0, -0.939693, 0, 1, 0, 0.939693, 0, 0.34202, -32.2944, 0, 97.5998 ) +transform = Transform( 0.326368, 0, -0.945243, 0, 1, 0, 0.945243, 0, 0.326368, -32.7259, 0, 97.2179 ) [node name="Wall166" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( 0.422618, 0, -0.906308, 0, 1, 0, 0.906308, 0, 0.422618, -41.2944, 0, 101.6 ) +transform = Transform( 0.401199, 0, -0.915991, 0, 1, 0, 0.915991, 0, 0.401199, -41.918, 0, 100.755 ) [node name="Wall167" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( 0.422618, 0, -0.906308, 0, 1, 0, 0.906308, 0, 0.422618, -50.2944, 0, 105.6 ) +transform = Transform( 0.422618, 0, -0.906308, 0, 1, 0, 0.906308, 0, 0.422618, -50.6681, 0, 104.753 ) [node name="Wall113" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( -2.38419e-07, 0, -1, 0, 1, 0, 1, 0, -2.38419e-07, -23.2944, 0, 95.5998 ) @@ -306,9 +307,6 @@ transform = Transform( -2.38419e-07, 0, -1, 0, 1, 0, 1, 0, -2.38419e-07, -23.294 [node name="Wall165" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( -2.38419e-07, 0, -1, 0, 1, 0, 1, 0, -2.38419e-07, -13.2944, 0, 95.5998 ) -[node name="Wall141" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( 0.34202, 0, -0.939693, 0, 1, 0, 0.939693, 0, 0.34202, -28.8614, 0, 106.928 ) - [node name="Wall35" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( 0.939693, 0, 0.34202, 0, 1, 0, -0.34202, 0, 0.939693, -23.2944, 0, 109.6 ) @@ -358,7 +356,7 @@ transform = Transform( 0.906308, 0, -0.422618, 0, 1, 0, 0.422618, 0, 0.906308, - transform = Transform( 0.906308, 0, -0.422618, 0, 1, 0, 0.422618, 0, 0.906308, -50.1376, 0, -12.8826 ) [node name="Wall23" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( 0.906308, 0, -0.422618, 0, 1, 0, 0.422618, 0, 0.906308, -56.1376, 0, -19.8826 ) +transform = Transform( 0.851896, 0, -0.523711, 0, 1, 0, 0.523711, 0, 0.851896, -56.6948, 0, -20.4503 ) [node name="Wall26" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( -0.819152, 0, -0.573576, 0, 1, 0, 0.573576, 0, -0.819152, -47.1376, 0, -28.8826 ) @@ -367,7 +365,7 @@ transform = Transform( -0.819152, 0, -0.573576, 0, 1, 0, 0.573576, 0, -0.819152, transform = Transform( -0.819152, 0, -0.573576, 0, 1, 0, 0.573576, 0, -0.819152, -42.1376, 0, -20.8826 ) [node name="Wall28" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( -0.819152, 0, -0.573576, 0, 1, 0, 0.573576, 0, -0.819152, -37.1376, 0, -12.8826 ) +transform = Transform( -0.965926, 0, -0.258819, 0, 1, 0, 0.258819, 0, -0.965926, -38.1316, 0, -12.8826 ) [node name="Wall25" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( 0.906308, 0, -0.422618, 0, 1, 0, 0.422618, 0, 0.906308, -52.1376, 0, -28.8826 ) @@ -390,9 +388,6 @@ transform = Transform( 1, 0, 1.06581e-14, 0, 1, 0, -1.06581e-14, 0, 1, -32.9054, [node name="Wall145" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( 1, 0, 1.06581e-14, 0, 1, 0, -1.06581e-14, 0, 1, -32.9054, 0.00019455, 133.284 ) -[node name="Wall146" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( 1, 0, 1.06581e-14, 0, 1, 0, -1.06581e-14, 0, 1, -32.9054, 0.00019455, 143.284 ) - [node name="Wall147" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( -4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -20.9054, 0.00019455, 160.284 ) @@ -423,6 +418,9 @@ transform = Transform( 1, 0, 1.06581e-14, 0, 1, 0, -1.06581e-14, 0, 1, -65.9054, [node name="Wall156" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( 1, 0, 1.06581e-14, 0, 1, 0, -1.06581e-14, 0, 1, -65.9054, 0.00019455, 114.284 ) +[node name="Wall169" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] +transform = Transform( 0.642788, 0, -0.766044, 0, 1, 0, 0.766044, 0, 0.642788, -67.0626, 0.00019455, 114.996 ) + [node name="Wall161" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( 1, 0, 1.06581e-14, 0, 1, 0, -1.06581e-14, 0, 1, -65.9054, 0.00019455, 94.2835 ) @@ -478,13 +476,7 @@ transform = Transform( -1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 66.8739 transform = Transform( -1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 66.8739, 0, 84.157 ) [node name="Wall54" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( -0.707107, 0, 0.707107, 0, 1, 0, -0.707107, 0, -0.707107, 63.8739, 0, 92.157 ) - -[node name="Wall55" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( -0.707107, 0, 0.707107, 0, 1, 0, -0.707107, 0, -0.707107, 63.8739, 0, 92.157 ) - -[node name="Wall56" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( -0.707107, 0, 0.707107, 0, 1, 0, -0.707107, 0, -0.707107, 63.8739, 0, 92.157 ) +transform = Transform( -0.906308, 0, 0.422618, 0, 1, 0, -0.422618, 0, -0.906308, 64.8739, 0, 93.1447 ) [node name="Wall39" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( -4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 81, 0, 60 ) @@ -514,7 +506,7 @@ transform = Transform( -0.5, 0, -0.866025, 0, 1, 0, 0.866025, 0, -0.5, 94, 0, 63 transform = Transform( -1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 85.1578, 0, 64.4073 ) [node name="Wall50" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] -transform = Transform( -1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 85.1578, 0, 84.4073 ) +transform = Transform( -1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 85.1578, 0, 84.268 ) [node name="Wall45" parent="Navigation/NavigationMeshInstance/Walls" instance=ExtResource( 3 )] transform = Transform( -0.707107, 0, 0.707107, 0, 1, 0, -0.707107, 0, -0.707107, 54.1578, 0, 119.407 ) @@ -620,7 +612,25 @@ transform = Transform( -4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 81, 0, [node name="BigTower3" parent="Navigation/NavigationMeshInstance" instance=ExtResource( 6 )] transform = Transform( 0.866025, 0, 0.5, 0, 1, 0, -0.5, 0, 0.866025, 137, 0, -53 ) -[node name="Dino" parent="Navigation" instance=ExtResource( 8 )] +[node name="WallGate" parent="Navigation/NavigationMeshInstance" instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 29.0145, 0, -35 ) + +[node name="WallGate4" parent="Navigation/NavigationMeshInstance" instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 85.223, 0, 74.4 ) + +[node name="WallGate5" parent="Navigation/NavigationMeshInstance" instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 145 ) + +[node name="WallGate6" parent="Navigation/NavigationMeshInstance" instance=ExtResource( 8 )] +transform = Transform( -4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 146, 0, 130.647 ) + +[node name="WallGate2" parent="Navigation/NavigationMeshInstance" instance=ExtResource( 8 )] +transform = Transform( 0.642788, 0, 0.766044, 0, 1, 0, -0.766044, 0, 0.642788, 56, 0, -52 ) + +[node name="WallGate3" parent="Navigation/NavigationMeshInstance" instance=ExtResource( 8 )] +transform = Transform( 0.707107, 0, 0.707107, 0, 1, 0, -0.707107, 0, 0.707107, 65.7779, 0, 100 ) + +[node name="Dino" parent="Navigation" instance=ExtResource( 9 )] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 24, 0, -8 ) player_path = NodePath("../../Player") @@ -632,52 +642,76 @@ transform = Transform( 0.970593, 0.0833647, 0.225829, -0.239289, 0.43643, 0.8673 light_energy = 0.4 shadow_enabled = true -[node name="Player" parent="." instance=ExtResource( 9 )] +[node name="Player" parent="." instance=ExtResource( 10 )] -[node name="Crystal" parent="." instance=ExtResource( 10 )] +[node name="Crystal" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 2, 23 ) -[node name="Crystal2" parent="." instance=ExtResource( 10 )] +[node name="Crystal2" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, -62, 2, -1 ) -[node name="Crystal3" parent="." instance=ExtResource( 10 )] +[node name="Crystal3" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, -56, 2, -55 ) -[node name="Crystal4" parent="." instance=ExtResource( 10 )] +[node name="Crystal4" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 40, 2, -18 ) -[node name="Crystal5" parent="." instance=ExtResource( 10 )] +[node name="Crystal5" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 137, 2, -53 ) -[node name="Crystal6" parent="." instance=ExtResource( 10 )] +[node name="Crystal6" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 112, 2, -16 ) -[node name="Crystal7" parent="." instance=ExtResource( 10 )] +[node name="Crystal7" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 102, 2, 12 ) -[node name="Crystal8" parent="." instance=ExtResource( 10 )] +[node name="Crystal8" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 80, 2, 2 ) -[node name="Crystal9" parent="." instance=ExtResource( 10 )] +[node name="Crystal9" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 134, 2, 94 ) -[node name="Crystal10" parent="." instance=ExtResource( 10 )] +[node name="Crystal10" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 151, 2, 153 ) -[node name="Crystal11" parent="." instance=ExtResource( 10 )] +[node name="Crystal11" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 103, 2, 149 ) -[node name="Crystal12" parent="." instance=ExtResource( 10 )] +[node name="Crystal12" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 43, 2, 130 ) -[node name="Crystal13" parent="." instance=ExtResource( 10 )] +[node name="Crystal13" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, -27, 2, 114 ) -[node name="Crystal14" parent="." instance=ExtResource( 10 )] +[node name="Crystal14" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, -40, 2, 51 ) -[node name="Crystal15" parent="." instance=ExtResource( 10 )] +[node name="Crystal15" parent="." instance=ExtResource( 11 )] transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, -28, 2, 54 ) -[node name="Background" parent="." instance=ExtResource( 11 )] +[node name="Background" parent="." instance=ExtResource( 12 )] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 53, 27.1691, 45 ) + +[node name="WallGate" parent="." instance=ExtResource( 8 )] +transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -63.2752, 0, -16.6269 ) + +[node name="WallGate" parent="WallGate" instance=ExtResource( 8 )] +transform = Transform( 0.375497, 0, -0.926824, 0, 1, 0, 0.926824, 0, 0.375497, -110.418, 0, 22.558 ) + +[node name="WallGate4" parent="WallGate" instance=ExtResource( 8 )] +transform = Transform( 0.846119, 0, 0.532995, 0, 1, 0, -0.532995, 0, 0.846119, -125.992, 0, 4.04618 ) + +[node name="WallGate3" parent="WallGate" instance=ExtResource( 8 )] +transform = Transform( 0.375497, 0, -0.926824, 0, 1, 0, 0.926824, 0, 0.375497, -119.418, 0, 28.558 ) + +[node name="WallGate6" parent="WallGate" instance=ExtResource( 8 )] +transform = Transform( 0.974299, 0, 0.225259, 0, 1, 0, -0.225259, 0, 0.974299, -123.661, 0, 34.3361 ) + +[node name="WallGate5" parent="WallGate" instance=ExtResource( 8 )] +transform = Transform( 0.375497, 0, -0.926824, 0, 1, 0, 0.926824, 0, 0.375497, -117.418, 0, 36.5581 ) + +[node name="WallGate2" parent="WallGate" instance=ExtResource( 8 )] +transform = Transform( 0.375497, 0, -0.926824, 0, 1, 0, 0.926824, 0, 0.375497, -108.337, 0, 34.3248 ) + +[node name="WallGate2" parent="." instance=ExtResource( 8 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -36.8888, 0, -5.66314 ) diff --git a/WikiJam/Level/Objects/WallGate.tscn b/WikiJam/Level/Objects/WallGate.tscn new file mode 100644 index 0000000..242951f --- /dev/null +++ b/WikiJam/Level/Objects/WallGate.tscn @@ -0,0 +1,41 @@ +[gd_scene load_steps=6 format=2] + +[ext_resource path="res://Models/Material_001.material" type="Material" id=1] +[ext_resource path="res://Models/Inside.material" type="Material" id=2] +[ext_resource path="res://Materials/WallStone.tres" type="Material" id=3] +[ext_resource path="res://Materials/WallInside.tres" type="Material" id=4] + +[sub_resource type="ArrayMesh" id=1] +resource_name = "Cube.001" +surfaces/0 = { +"aabb": AABB( -1.47422, -1, -1, 2.94843, 2.00001, 1.22246 ), +"array_data": PoolByteArray( 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 96, 31, 59, 191, 0, 127, 0, 0, 127, 0, 0, 127, 192, 56, 0, 52, 0, 0, 0, 60, 40, 203, 177, 63, 0, 0, 128, 63, 96, 31, 59, 191, 0, 127, 0, 0, 127, 0, 0, 127, 192, 56, 0, 52, 0, 0, 0, 60, 40, 203, 177, 63, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 93, 239, 177, 63, 25, 203, 43, 63, 254, 160, 68, 190, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 93, 239, 177, 63, 0, 0, 128, 63, 176, 73, 170, 189, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 176, 73, 170, 189, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 0, 52, 0, 0, 0, 60, 93, 239, 177, 63, 25, 203, 43, 63, 254, 160, 68, 190, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 176, 73, 170, 189, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 254, 160, 68, 190, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 14, 72, 185, 63, 113, 252, 156, 190, 1, 147, 69, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 14, 72, 185, 63, 82, 68, 245, 61, 61, 8, 57, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 82, 68, 245, 61, 61, 8, 57, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 0, 54, 0, 0, 0, 60, 14, 72, 185, 63, 113, 252, 156, 190, 1, 147, 69, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 82, 68, 245, 61, 61, 8, 57, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 113, 252, 156, 190, 1, 147, 69, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 112, 67, 154, 63, 80, 198, 112, 191, 0, 0, 128, 191, 0, 130, 255, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 112, 67, 154, 63, 93, 156, 113, 191, 138, 121, 56, 191, 0, 130, 255, 0, 127, 0, 0, 127, 192, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 93, 156, 113, 191, 138, 121, 56, 191, 0, 130, 255, 0, 127, 0, 0, 127, 192, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 80, 198, 112, 191, 0, 0, 128, 191, 0, 130, 255, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 63, 217, 210, 190, 140, 247, 188, 190, 0, 126, 242, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 72, 137, 200, 190, 124, 215, 65, 190, 0, 126, 242, 0, 127, 0, 0, 127, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 72, 137, 200, 190, 124, 215, 65, 190, 0, 126, 242, 0, 127, 0, 0, 127, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 63, 217, 210, 190, 140, 247, 188, 190, 0, 126, 242, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 72, 137, 200, 190, 124, 215, 65, 190, 0, 126, 242, 0, 127, 0, 0, 127, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 63, 217, 210, 190, 140, 247, 188, 190, 0, 126, 242, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 0, 0, 128, 191, 0, 127, 0, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 154, 148, 46, 191, 0, 127, 0, 0, 127, 0, 0, 127, 192, 56, 0, 53, 0, 0, 0, 60, 123, 193, 159, 63, 8, 76, 22, 63, 154, 148, 46, 191, 0, 127, 0, 0, 127, 0, 0, 127, 192, 56, 0, 53, 0, 0, 0, 60, 123, 193, 159, 63, 8, 76, 22, 63, 0, 0, 128, 191, 0, 127, 0, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 176, 120, 113, 63, 170, 191, 32, 191, 0, 126, 247, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 254, 124, 118, 63, 212, 34, 185, 190, 0, 126, 247, 0, 127, 0, 0, 127, 64, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 63, 254, 124, 118, 63, 212, 34, 185, 190, 0, 126, 247, 0, 127, 0, 0, 127, 64, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 176, 120, 113, 63, 170, 191, 32, 191, 0, 126, 247, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 63, 254, 124, 118, 63, 212, 34, 185, 190, 0, 126, 247, 0, 127, 0, 0, 127, 64, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 63, 176, 120, 113, 63, 170, 191, 32, 191, 0, 126, 247, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 22, 223, 112, 63, 10, 102, 164, 189, 0, 126, 244, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 18, 62, 119, 63, 88, 19, 45, 62, 0, 126, 244, 0, 127, 0, 0, 127, 128, 54, 128, 52, 0, 0, 0, 60, 70, 42, 164, 63, 18, 62, 119, 63, 88, 19, 45, 62, 0, 126, 244, 0, 127, 0, 0, 127, 128, 54, 128, 52, 0, 0, 0, 60, 70, 42, 164, 63, 22, 223, 112, 63, 10, 102, 164, 189, 0, 126, 244, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 222, 133, 146, 63, 0, 0, 128, 191, 240, 178, 53, 189, 0, 129, 0, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 222, 133, 146, 63, 0, 0, 128, 191, 111, 118, 43, 62, 0, 129, 0, 0, 127, 0, 0, 127, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 111, 118, 43, 62, 0, 129, 0, 0, 127, 0, 0, 127, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 240, 178, 53, 189, 0, 130, 0, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 58, 226, 45, 191, 16, 43, 50, 191, 0, 127, 0, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 58, 226, 45, 191, 99, 132, 232, 190, 0, 127, 0, 0, 127, 0, 0, 127, 64, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 63, 58, 226, 45, 191, 99, 132, 232, 190, 0, 127, 0, 0, 127, 0, 0, 127, 64, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 63, 58, 226, 45, 191, 16, 43, 50, 191, 0, 127, 0, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 40, 203, 177, 63, 0, 0, 128, 63, 96, 31, 59, 191, 127, 0, 0, 0, 0, 2, 130, 127, 192, 56, 0, 52, 0, 0, 0, 60, 40, 203, 177, 63, 25, 203, 43, 63, 169, 106, 47, 191, 127, 0, 0, 0, 0, 2, 130, 127, 192, 56, 128, 52, 0, 0, 0, 60, 40, 203, 177, 63, 51, 119, 45, 63, 125, 163, 119, 191, 127, 0, 0, 0, 0, 2, 130, 127, 0, 57, 128, 52, 0, 0, 0, 60, 40, 203, 177, 63, 0, 0, 128, 63, 0, 0, 128, 191, 127, 0, 0, 0, 0, 0, 129, 127, 0, 57, 0, 52, 0, 0, 0, 60, 40, 203, 177, 63, 0, 0, 128, 63, 96, 31, 59, 191, 127, 0, 0, 0, 0, 0, 129, 127, 192, 56, 0, 52, 0, 0, 0, 60, 40, 203, 177, 63, 51, 119, 45, 63, 125, 163, 119, 191, 127, 0, 0, 0, 0, 0, 129, 127, 0, 57, 128, 52, 0, 0, 0, 60, 40, 203, 177, 63, 51, 119, 45, 63, 125, 163, 119, 191, 0, 130, 254, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 40, 203, 177, 63, 25, 203, 43, 63, 169, 106, 47, 191, 0, 130, 254, 0, 127, 0, 0, 127, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 169, 106, 47, 191, 0, 130, 254, 0, 127, 0, 0, 127, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 51, 119, 45, 63, 125, 163, 119, 191, 0, 130, 254, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 40, 203, 177, 63, 0, 0, 128, 63, 0, 0, 128, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 40, 203, 177, 63, 51, 119, 45, 63, 125, 163, 119, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 51, 119, 45, 63, 125, 163, 119, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 40, 203, 177, 63, 0, 0, 128, 63, 0, 0, 128, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 51, 119, 45, 63, 125, 163, 119, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 96, 31, 59, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 169, 106, 47, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 128, 52, 0, 0, 0, 60, 40, 203, 177, 63, 25, 203, 43, 63, 169, 106, 47, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 96, 31, 59, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 0, 52, 0, 0, 0, 60, 40, 203, 177, 63, 25, 203, 43, 63, 169, 106, 47, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 128, 52, 0, 0, 0, 60, 40, 203, 177, 63, 0, 0, 128, 63, 96, 31, 59, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 0, 52, 0, 0, 0, 60, 123, 193, 159, 63, 8, 76, 22, 63, 0, 0, 128, 191, 127, 0, 0, 0, 0, 0, 129, 127, 0, 57, 0, 53, 0, 0, 0, 60, 123, 193, 159, 63, 8, 76, 22, 63, 154, 148, 46, 191, 127, 0, 0, 0, 0, 0, 129, 127, 192, 56, 0, 53, 0, 0, 0, 60, 123, 193, 159, 63, 85, 95, 73, 62, 55, 157, 56, 191, 127, 0, 0, 0, 0, 0, 129, 127, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 63, 8, 76, 22, 63, 0, 0, 128, 191, 127, 0, 0, 0, 0, 247, 130, 127, 0, 57, 0, 53, 0, 0, 0, 60, 123, 193, 159, 63, 85, 95, 73, 62, 55, 157, 56, 191, 127, 0, 0, 0, 0, 247, 130, 127, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 63, 27, 78, 53, 62, 138, 121, 120, 191, 127, 0, 0, 0, 0, 247, 130, 127, 0, 57, 128, 53, 0, 0, 0, 60, 123, 193, 159, 63, 8, 76, 22, 63, 0, 0, 128, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 123, 193, 159, 63, 27, 78, 53, 62, 138, 121, 120, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 27, 78, 53, 62, 138, 121, 120, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 128, 53, 0, 0, 0, 60, 123, 193, 159, 63, 8, 76, 22, 63, 0, 0, 128, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 27, 78, 53, 62, 138, 121, 120, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 0, 0, 128, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 123, 193, 159, 63, 85, 95, 73, 62, 55, 157, 56, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 63, 8, 76, 22, 63, 154, 148, 46, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 154, 148, 46, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 0, 53, 0, 0, 0, 60, 123, 193, 159, 63, 85, 95, 73, 62, 55, 157, 56, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 154, 148, 46, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 85, 95, 73, 62, 55, 157, 56, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 63, 27, 78, 53, 62, 138, 121, 120, 191, 0, 130, 9, 0, 127, 0, 0, 129, 0, 57, 128, 53, 0, 0, 0, 60, 123, 193, 159, 63, 85, 95, 73, 62, 55, 157, 56, 191, 0, 130, 9, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 85, 95, 73, 62, 55, 157, 56, 191, 0, 130, 9, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 63, 27, 78, 53, 62, 138, 121, 120, 191, 0, 130, 9, 0, 127, 0, 0, 129, 0, 57, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 85, 95, 73, 62, 55, 157, 56, 191, 0, 130, 9, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 27, 78, 53, 62, 138, 121, 120, 191, 0, 130, 9, 0, 127, 0, 0, 129, 0, 57, 128, 53, 0, 0, 0, 60, 14, 72, 185, 63, 154, 158, 151, 61, 178, 251, 122, 191, 127, 0, 0, 0, 0, 234, 131, 127, 0, 57, 0, 54, 0, 0, 0, 60, 14, 72, 185, 63, 82, 68, 245, 61, 61, 8, 57, 191, 127, 0, 0, 0, 0, 234, 131, 127, 192, 56, 0, 54, 0, 0, 0, 60, 14, 72, 185, 63, 113, 252, 156, 190, 1, 147, 69, 191, 127, 0, 0, 0, 0, 234, 131, 127, 192, 56, 128, 54, 0, 0, 0, 60, 14, 72, 185, 63, 154, 158, 151, 61, 178, 251, 122, 191, 127, 0, 0, 0, 0, 243, 130, 127, 0, 57, 0, 54, 0, 0, 0, 60, 14, 72, 185, 63, 113, 252, 156, 190, 1, 147, 69, 191, 127, 0, 0, 0, 0, 243, 130, 127, 192, 56, 128, 54, 0, 0, 0, 60, 14, 72, 185, 63, 40, 177, 168, 190, 204, 167, 124, 191, 127, 0, 0, 0, 0, 243, 130, 127, 0, 57, 128, 54, 0, 0, 0, 60, 14, 72, 185, 63, 40, 177, 168, 190, 204, 167, 124, 191, 0, 130, 13, 0, 127, 0, 0, 129, 0, 57, 128, 54, 0, 0, 0, 60, 14, 72, 185, 63, 113, 252, 156, 190, 1, 147, 69, 191, 0, 130, 13, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 113, 252, 156, 190, 1, 147, 69, 191, 0, 130, 13, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 14, 72, 185, 63, 40, 177, 168, 190, 204, 167, 124, 191, 0, 130, 13, 0, 127, 0, 0, 129, 0, 57, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 113, 252, 156, 190, 1, 147, 69, 191, 0, 130, 13, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 40, 177, 168, 190, 204, 167, 124, 191, 0, 130, 13, 0, 127, 0, 0, 129, 0, 57, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 154, 158, 151, 61, 178, 251, 122, 191, 0, 125, 234, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 82, 68, 245, 61, 61, 8, 57, 191, 0, 125, 234, 0, 127, 0, 0, 127, 192, 56, 0, 54, 0, 0, 0, 60, 14, 72, 185, 63, 82, 68, 245, 61, 61, 8, 57, 191, 0, 125, 234, 0, 127, 0, 0, 127, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 154, 158, 151, 61, 178, 251, 122, 191, 0, 125, 234, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 14, 72, 185, 63, 82, 68, 245, 61, 61, 8, 57, 191, 0, 125, 234, 0, 127, 0, 0, 127, 192, 56, 0, 54, 0, 0, 0, 60, 14, 72, 185, 63, 154, 158, 151, 61, 178, 251, 122, 191, 0, 125, 234, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 40, 177, 168, 190, 204, 167, 124, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 154, 158, 151, 61, 178, 251, 122, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 14, 72, 185, 63, 154, 158, 151, 61, 178, 251, 122, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 40, 177, 168, 190, 204, 167, 124, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 128, 54, 0, 0, 0, 60, 14, 72, 185, 63, 154, 158, 151, 61, 178, 251, 122, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 14, 72, 185, 63, 40, 177, 168, 190, 204, 167, 124, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 128, 54, 0, 0, 0, 60, 112, 67, 154, 63, 173, 166, 201, 190, 0, 0, 64, 191, 127, 0, 0, 0, 0, 1, 130, 127, 192, 56, 0, 55, 0, 0, 0, 60, 112, 67, 154, 63, 93, 156, 113, 191, 138, 121, 56, 191, 127, 0, 0, 0, 0, 1, 130, 127, 192, 56, 128, 55, 0, 0, 0, 60, 112, 67, 154, 63, 80, 198, 112, 191, 0, 0, 128, 191, 127, 0, 0, 0, 0, 1, 130, 127, 0, 57, 128, 55, 0, 0, 0, 60, 112, 67, 154, 63, 152, 179, 216, 190, 151, 79, 121, 191, 127, 0, 0, 0, 0, 240, 131, 127, 0, 57, 0, 55, 0, 0, 0, 60, 112, 67, 154, 63, 173, 166, 201, 190, 0, 0, 64, 191, 127, 0, 0, 0, 0, 240, 131, 127, 192, 56, 0, 55, 0, 0, 0, 60, 112, 67, 154, 63, 80, 198, 112, 191, 0, 0, 128, 191, 127, 0, 0, 0, 0, 240, 131, 127, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 80, 198, 112, 191, 0, 0, 128, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 152, 179, 216, 190, 151, 79, 121, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 112, 67, 154, 63, 152, 179, 216, 190, 151, 79, 121, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 80, 198, 112, 191, 0, 0, 128, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 112, 67, 154, 63, 152, 179, 216, 190, 151, 79, 121, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 112, 67, 154, 63, 80, 198, 112, 191, 0, 0, 128, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 152, 179, 216, 190, 151, 79, 121, 191, 0, 125, 240, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 173, 166, 201, 190, 0, 0, 64, 191, 0, 125, 240, 0, 127, 0, 0, 127, 192, 56, 0, 55, 0, 0, 0, 60, 112, 67, 154, 63, 173, 166, 201, 190, 0, 0, 64, 191, 0, 125, 240, 0, 127, 0, 0, 127, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 152, 179, 216, 190, 151, 79, 121, 191, 0, 125, 240, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 112, 67, 154, 63, 173, 166, 201, 190, 0, 0, 64, 191, 0, 125, 240, 0, 127, 0, 0, 127, 192, 56, 0, 55, 0, 0, 0, 60, 112, 67, 154, 63, 152, 179, 216, 190, 151, 79, 121, 191, 0, 125, 240, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 173, 166, 201, 190, 0, 0, 64, 191, 0, 6, 126, 0, 127, 0, 0, 129, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 93, 156, 113, 191, 138, 121, 56, 191, 0, 6, 126, 0, 127, 0, 0, 129, 192, 56, 128, 55, 0, 0, 0, 60, 112, 67, 154, 63, 93, 156, 113, 191, 138, 121, 56, 191, 0, 6, 126, 0, 127, 0, 0, 129, 192, 56, 128, 55, 0, 0, 0, 60, 112, 67, 154, 63, 173, 166, 201, 190, 0, 0, 64, 191, 0, 6, 126, 0, 127, 0, 0, 129, 192, 56, 0, 55, 0, 0, 0, 60, 88, 97, 152, 63, 176, 120, 113, 63, 170, 191, 32, 191, 127, 0, 0, 0, 0, 247, 130, 127, 128, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 63, 254, 124, 118, 63, 212, 34, 185, 190, 127, 0, 0, 0, 0, 247, 130, 127, 64, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 63, 188, 62, 246, 62, 209, 43, 212, 190, 127, 0, 0, 0, 0, 247, 130, 127, 64, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 63, 176, 120, 113, 63, 170, 191, 32, 191, 127, 0, 0, 0, 0, 246, 130, 127, 128, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 63, 188, 62, 246, 62, 209, 43, 212, 190, 127, 0, 0, 0, 0, 246, 130, 127, 64, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 63, 57, 226, 237, 62, 74, 122, 26, 191, 127, 0, 0, 0, 0, 246, 130, 127, 128, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 63, 57, 226, 237, 62, 74, 122, 26, 191, 0, 130, 10, 0, 127, 0, 0, 129, 128, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 63, 188, 62, 246, 62, 209, 43, 212, 190, 0, 130, 10, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 188, 62, 246, 62, 209, 43, 212, 190, 0, 130, 10, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 57, 226, 237, 62, 74, 122, 26, 191, 0, 130, 10, 0, 127, 0, 0, 129, 128, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 63, 188, 62, 246, 62, 209, 43, 212, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 63, 254, 124, 118, 63, 212, 34, 185, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 254, 124, 118, 63, 212, 34, 185, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 63, 188, 62, 246, 62, 209, 43, 212, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 254, 124, 118, 63, 212, 34, 185, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 188, 62, 246, 62, 209, 43, 212, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 63, 176, 120, 113, 63, 170, 191, 32, 191, 0, 250, 130, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 63, 57, 226, 237, 62, 74, 122, 26, 191, 0, 250, 130, 0, 127, 0, 0, 127, 128, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 57, 226, 237, 62, 74, 122, 26, 191, 0, 250, 130, 0, 127, 0, 0, 127, 128, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 176, 120, 113, 63, 170, 191, 32, 191, 0, 250, 130, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 35, 179, 188, 63, 58, 226, 45, 191, 99, 132, 232, 190, 127, 0, 0, 0, 0, 0, 129, 127, 64, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 63, 0, 0, 128, 191, 215, 72, 196, 190, 127, 0, 0, 0, 0, 0, 130, 127, 64, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 63, 0, 0, 128, 191, 205, 105, 40, 191, 127, 0, 0, 0, 0, 0, 129, 127, 128, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 63, 58, 226, 45, 191, 16, 43, 50, 191, 127, 0, 0, 0, 0, 0, 129, 127, 128, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 63, 0, 0, 128, 191, 205, 105, 40, 191, 0, 129, 0, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 63, 0, 0, 128, 191, 215, 72, 196, 190, 0, 129, 0, 0, 127, 0, 0, 127, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 215, 72, 196, 190, 0, 129, 0, 0, 127, 0, 0, 127, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 205, 105, 40, 191, 0, 129, 0, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 58, 226, 45, 191, 99, 132, 232, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 215, 72, 196, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 63, 0, 0, 128, 191, 215, 72, 196, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 58, 226, 45, 191, 99, 132, 232, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 63, 0, 0, 128, 191, 215, 72, 196, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 63, 58, 226, 45, 191, 99, 132, 232, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 63, 58, 226, 45, 191, 16, 43, 50, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 63, 0, 0, 128, 191, 205, 105, 40, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 205, 105, 40, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 63, 58, 226, 45, 191, 16, 43, 50, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 205, 105, 40, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 58, 226, 45, 191, 16, 43, 50, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 93, 239, 177, 63, 0, 0, 128, 63, 83, 230, 168, 190, 127, 0, 0, 0, 0, 251, 130, 127, 0, 56, 0, 52, 0, 0, 0, 60, 93, 239, 177, 63, 0, 0, 128, 63, 176, 73, 170, 189, 127, 0, 0, 0, 0, 0, 129, 127, 128, 55, 0, 52, 0, 0, 0, 60, 93, 239, 177, 63, 25, 203, 43, 63, 254, 160, 68, 190, 127, 0, 0, 0, 0, 244, 130, 127, 128, 55, 128, 52, 0, 0, 0, 60, 93, 239, 177, 63, 93, 62, 37, 63, 62, 243, 183, 190, 127, 0, 0, 0, 0, 237, 131, 127, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 83, 230, 168, 190, 0, 127, 0, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 176, 73, 170, 189, 0, 127, 0, 0, 127, 0, 0, 127, 128, 55, 0, 52, 0, 0, 0, 60, 93, 239, 177, 63, 0, 0, 128, 63, 176, 73, 170, 189, 0, 127, 0, 0, 127, 0, 0, 127, 128, 55, 0, 52, 0, 0, 0, 60, 93, 239, 177, 63, 0, 0, 128, 63, 83, 230, 168, 190, 0, 127, 0, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 93, 239, 177, 63, 93, 62, 37, 63, 62, 243, 183, 190, 0, 131, 19, 0, 127, 0, 0, 129, 0, 56, 128, 52, 0, 0, 0, 60, 93, 239, 177, 63, 25, 203, 43, 63, 254, 160, 68, 190, 0, 131, 19, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 254, 160, 68, 190, 0, 131, 19, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 93, 239, 177, 63, 93, 62, 37, 63, 62, 243, 183, 190, 0, 131, 19, 0, 127, 0, 0, 129, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 254, 160, 68, 190, 0, 131, 19, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 93, 62, 37, 63, 62, 243, 183, 190, 0, 131, 19, 0, 127, 0, 0, 129, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 93, 62, 37, 63, 62, 243, 183, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 83, 230, 168, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 93, 239, 177, 63, 0, 0, 128, 63, 83, 230, 168, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 93, 62, 37, 63, 62, 243, 183, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 128, 52, 0, 0, 0, 60, 93, 239, 177, 63, 0, 0, 128, 63, 83, 230, 168, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 93, 239, 177, 63, 93, 62, 37, 63, 62, 243, 183, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 128, 52, 0, 0, 0, 60, 186, 20, 159, 63, 72, 137, 200, 190, 124, 215, 65, 190, 127, 0, 0, 0, 0, 17, 131, 127, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 132, 30, 116, 191, 189, 78, 209, 189, 127, 0, 0, 0, 0, 17, 131, 127, 128, 55, 128, 55, 0, 0, 0, 60, 186, 20, 159, 63, 180, 80, 108, 191, 3, 226, 163, 190, 127, 0, 0, 0, 0, 17, 131, 127, 0, 56, 128, 55, 0, 0, 0, 60, 186, 20, 159, 63, 63, 217, 210, 190, 140, 247, 188, 190, 127, 0, 0, 0, 0, 242, 130, 127, 0, 56, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 72, 137, 200, 190, 124, 215, 65, 190, 127, 0, 0, 0, 0, 242, 130, 127, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 180, 80, 108, 191, 3, 226, 163, 190, 127, 0, 0, 0, 0, 242, 130, 127, 0, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 72, 137, 200, 190, 124, 215, 65, 190, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 132, 30, 116, 191, 189, 78, 209, 189, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 128, 55, 0, 0, 0, 60, 186, 20, 159, 63, 132, 30, 116, 191, 189, 78, 209, 189, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 72, 137, 200, 190, 124, 215, 65, 190, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 132, 30, 116, 191, 189, 78, 209, 189, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 128, 55, 0, 0, 0, 60, 186, 20, 159, 63, 72, 137, 200, 190, 124, 215, 65, 190, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 63, 217, 210, 190, 140, 247, 188, 190, 0, 244, 130, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 180, 80, 108, 191, 3, 226, 163, 190, 0, 244, 130, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 180, 80, 108, 191, 3, 226, 163, 190, 0, 244, 130, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 63, 217, 210, 190, 140, 247, 188, 190, 0, 244, 130, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 186, 20, 159, 63, 180, 80, 108, 191, 3, 226, 163, 190, 0, 131, 239, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 186, 20, 159, 63, 132, 30, 116, 191, 189, 78, 209, 189, 0, 131, 239, 0, 127, 0, 0, 127, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 132, 30, 116, 191, 189, 78, 209, 189, 0, 131, 239, 0, 127, 0, 0, 127, 128, 55, 128, 55, 0, 0, 0, 60, 186, 20, 159, 63, 180, 80, 108, 191, 3, 226, 163, 190, 0, 131, 239, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 132, 30, 116, 191, 189, 78, 209, 189, 0, 131, 239, 0, 127, 0, 0, 127, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 180, 80, 108, 191, 3, 226, 163, 190, 0, 131, 239, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 70, 42, 164, 63, 22, 223, 112, 63, 10, 102, 164, 189, 127, 0, 0, 0, 0, 244, 130, 127, 0, 55, 128, 52, 0, 0, 0, 60, 70, 42, 164, 63, 18, 62, 119, 63, 88, 19, 45, 62, 127, 0, 0, 0, 0, 244, 130, 127, 128, 54, 128, 52, 0, 0, 0, 60, 70, 42, 164, 63, 0, 0, 0, 63, 28, 110, 14, 62, 127, 0, 0, 0, 0, 244, 130, 127, 128, 54, 0, 53, 0, 0, 0, 60, 70, 42, 164, 63, 22, 223, 112, 63, 10, 102, 164, 189, 127, 0, 0, 0, 0, 253, 130, 127, 0, 55, 128, 52, 0, 0, 0, 60, 70, 42, 164, 63, 0, 0, 0, 63, 28, 110, 14, 62, 127, 0, 0, 0, 0, 253, 130, 127, 128, 54, 0, 53, 0, 0, 0, 60, 70, 42, 164, 63, 48, 198, 252, 62, 181, 217, 190, 189, 127, 0, 0, 0, 0, 253, 130, 127, 0, 55, 0, 53, 0, 0, 0, 60, 70, 42, 164, 63, 0, 0, 0, 63, 28, 110, 14, 62, 0, 248, 126, 0, 127, 0, 0, 129, 128, 54, 0, 53, 0, 0, 0, 60, 70, 42, 164, 63, 18, 62, 119, 63, 88, 19, 45, 62, 0, 248, 126, 0, 127, 0, 0, 129, 128, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 18, 62, 119, 63, 88, 19, 45, 62, 0, 248, 126, 0, 127, 0, 0, 129, 128, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 28, 110, 14, 62, 0, 248, 126, 0, 127, 0, 0, 129, 128, 54, 0, 53, 0, 0, 0, 60, 70, 42, 164, 63, 48, 198, 252, 62, 181, 217, 190, 189, 0, 130, 3, 0, 127, 0, 0, 129, 0, 55, 0, 53, 0, 0, 0, 60, 70, 42, 164, 63, 0, 0, 0, 63, 28, 110, 14, 62, 0, 130, 3, 0, 127, 0, 0, 129, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 28, 110, 14, 62, 0, 130, 3, 0, 127, 0, 0, 129, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 48, 198, 252, 62, 181, 217, 190, 189, 0, 130, 3, 0, 127, 0, 0, 129, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 48, 198, 252, 62, 181, 217, 190, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 22, 223, 112, 63, 10, 102, 164, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 70, 42, 164, 63, 22, 223, 112, 63, 10, 102, 164, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 48, 198, 252, 62, 181, 217, 190, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 0, 53, 0, 0, 0, 60, 70, 42, 164, 63, 22, 223, 112, 63, 10, 102, 164, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 70, 42, 164, 63, 48, 198, 252, 62, 181, 217, 190, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 0, 53, 0, 0, 0, 60, 222, 133, 146, 63, 193, 57, 42, 191, 57, 168, 216, 189, 127, 0, 0, 0, 0, 8, 130, 127, 0, 55, 128, 55, 0, 0, 0, 60, 222, 133, 146, 63, 74, 74, 50, 191, 178, 93, 56, 62, 127, 0, 0, 0, 0, 13, 130, 127, 128, 54, 128, 55, 0, 0, 0, 60, 222, 133, 146, 63, 0, 0, 128, 191, 111, 118, 43, 62, 127, 0, 0, 0, 0, 6, 130, 127, 128, 54, 0, 56, 0, 0, 0, 60, 222, 133, 146, 63, 0, 0, 128, 191, 240, 178, 53, 189, 127, 0, 0, 0, 0, 0, 130, 127, 0, 55, 0, 56, 0, 0, 0, 60, 222, 133, 146, 63, 193, 57, 42, 191, 57, 168, 216, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 128, 55, 0, 0, 0, 60, 222, 133, 146, 63, 0, 0, 128, 191, 240, 178, 53, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 240, 178, 53, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 222, 133, 146, 63, 193, 57, 42, 191, 57, 168, 216, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 240, 178, 53, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 193, 57, 42, 191, 57, 168, 216, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 193, 57, 42, 191, 57, 168, 216, 189, 0, 126, 13, 0, 127, 0, 0, 129, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 74, 74, 50, 191, 178, 93, 56, 62, 0, 126, 13, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 222, 133, 146, 63, 74, 74, 50, 191, 178, 93, 56, 62, 0, 126, 13, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 193, 57, 42, 191, 57, 168, 216, 189, 0, 126, 13, 0, 127, 0, 0, 129, 0, 55, 128, 55, 0, 0, 0, 60, 222, 133, 146, 63, 74, 74, 50, 191, 178, 93, 56, 62, 0, 126, 13, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 222, 133, 146, 63, 193, 57, 42, 191, 57, 168, 216, 189, 0, 126, 13, 0, 127, 0, 0, 129, 0, 55, 128, 55, 0, 0, 0, 60, 222, 133, 146, 63, 0, 0, 128, 191, 111, 118, 43, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 0, 56, 0, 0, 0, 60, 222, 133, 146, 63, 74, 74, 50, 191, 178, 93, 56, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 74, 74, 50, 191, 178, 93, 56, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 222, 133, 146, 63, 0, 0, 128, 191, 111, 118, 43, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 74, 74, 50, 191, 178, 93, 56, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 111, 118, 43, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 52, 47, 202, 227, 62, 38, 206, 200, 190, 127, 0, 0, 0, 0, 0, 129, 129, 1, 56, 113, 59, 0, 0, 0, 60, 0, 0, 0, 0, 64, 162, 216, 62, 99, 187, 37, 191, 127, 0, 0, 0, 0, 0, 129, 129, 108, 56, 108, 59, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 127, 0, 0, 0, 0, 0, 129, 129, 0, 57, 0, 60, 0, 0, 0, 60, 0, 0, 128, 52, 139, 249, 29, 63, 122, 129, 179, 190, 127, 0, 0, 0, 0, 0, 129, 129, 224, 55, 157, 59, 0, 0, 0, 60, 0, 0, 0, 180, 238, 231, 237, 62, 142, 208, 160, 61, 127, 0, 0, 0, 0, 0, 129, 129, 120, 54, 118, 59, 0, 0, 0, 60, 0, 0, 128, 52, 215, 79, 236, 62, 82, 235, 192, 189, 127, 0, 0, 0, 0, 0, 129, 129, 9, 55, 118, 59, 0, 0, 0, 60, 0, 0, 128, 52, 169, 21, 39, 63, 178, 167, 42, 190, 127, 0, 0, 0, 0, 0, 129, 129, 69, 55, 167, 59, 0, 0, 0, 60, 0, 0, 0, 0, 255, 59, 239, 62, 109, 203, 99, 62, 127, 0, 0, 0, 0, 0, 130, 129, 0, 54, 119, 59, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 127, 0, 0, 0, 0, 0, 129, 129, 0, 54, 0, 60, 0, 0, 0, 60, 0, 0, 0, 0, 226, 170, 31, 191, 64, 90, 247, 187, 127, 0, 0, 0, 0, 0, 129, 129, 192, 54, 96, 58, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 109, 203, 99, 62, 127, 0, 0, 0, 0, 0, 129, 129, 0, 54, 0, 58, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 127, 0, 0, 0, 0, 0, 129, 129, 0, 57, 0, 58, 0, 0, 0, 60, 0, 0, 128, 52, 100, 143, 37, 191, 76, 116, 198, 190, 127, 0, 0, 0, 0, 0, 129, 129, 255, 55, 90, 58, 0, 0, 0, 60, 0, 0, 0, 52, 155, 172, 41, 191, 18, 254, 52, 191, 127, 0, 0, 0, 0, 0, 129, 129, 133, 56, 86, 58, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 127, 0, 0, 0, 0, 0, 129, 129, 0, 57, 0, 60, 0, 0, 0, 60, 0, 0, 0, 52, 108, 240, 143, 190, 170, 222, 58, 191, 127, 0, 0, 0, 0, 0, 129, 129, 142, 56, 184, 58, 0, 0, 0, 60, 0, 0, 128, 52, 148, 168, 25, 191, 242, 55, 255, 189, 127, 0, 0, 0, 0, 0, 129, 129, 34, 55, 102, 58, 0, 0, 0, 60, 0, 0, 128, 52, 183, 209, 201, 190, 131, 183, 207, 190, 127, 0, 0, 0, 0, 0, 129, 129, 7, 56, 155, 58, 0, 0, 0, 60, 0, 0, 0, 0, 156, 211, 182, 190, 243, 154, 46, 190, 127, 0, 0, 0, 0, 0, 129, 129, 73, 55, 164, 58, 0, 0, 0, 60, 0, 0, 0, 0, 4, 28, 178, 190, 46, 95, 52, 190, 127, 0, 0, 0, 0, 0, 129, 129, 77, 55, 166, 58, 0, 0, 0, 60, 0, 0, 0, 52, 248, 78, 134, 61, 195, 44, 50, 191, 127, 0, 0, 0, 0, 0, 129, 129, 128, 56, 16, 59, 0, 0, 0, 60, 0, 0, 0, 52, 253, 8, 216, 62, 228, 60, 41, 191, 127, 0, 0, 0, 0, 0, 129, 129, 114, 56, 108, 59, 0, 0, 0, 60, 0, 0, 0, 0, 64, 162, 216, 62, 99, 187, 37, 191, 127, 0, 0, 0, 0, 0, 129, 129, 108, 56, 108, 59, 0, 0, 0, 60, 40, 203, 177, 191, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 40, 203, 177, 191, 0, 0, 128, 63, 96, 31, 59, 191, 0, 127, 0, 0, 127, 0, 0, 127, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 96, 31, 59, 191, 0, 127, 0, 0, 127, 0, 0, 127, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 254, 160, 68, 190, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 176, 73, 170, 189, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 0, 52, 0, 0, 0, 60, 93, 239, 177, 191, 0, 0, 128, 63, 176, 73, 170, 189, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 254, 160, 68, 190, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 93, 239, 177, 191, 0, 0, 128, 63, 176, 73, 170, 189, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 0, 52, 0, 0, 0, 60, 93, 239, 177, 191, 25, 203, 43, 63, 254, 160, 68, 190, 0, 217, 120, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 113, 252, 156, 190, 1, 147, 69, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 82, 68, 245, 61, 61, 8, 57, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 0, 54, 0, 0, 0, 60, 14, 72, 185, 191, 82, 68, 245, 61, 61, 8, 57, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 113, 252, 156, 190, 1, 147, 69, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 14, 72, 185, 191, 82, 68, 245, 61, 61, 8, 57, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 0, 54, 0, 0, 0, 60, 14, 72, 185, 191, 113, 252, 156, 190, 1, 147, 69, 191, 0, 242, 126, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 80, 198, 112, 191, 0, 0, 128, 191, 0, 130, 255, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 93, 156, 113, 191, 138, 121, 56, 191, 0, 130, 255, 0, 127, 0, 0, 127, 192, 56, 128, 55, 0, 0, 0, 60, 112, 67, 154, 191, 93, 156, 113, 191, 138, 121, 56, 191, 0, 130, 255, 0, 127, 0, 0, 127, 192, 56, 128, 55, 0, 0, 0, 60, 112, 67, 154, 191, 80, 198, 112, 191, 0, 0, 128, 191, 0, 130, 255, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 63, 217, 210, 190, 140, 247, 188, 190, 0, 126, 242, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 186, 20, 159, 191, 72, 137, 200, 190, 124, 215, 65, 190, 0, 126, 242, 0, 127, 0, 0, 127, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 72, 137, 200, 190, 124, 215, 65, 190, 0, 126, 242, 0, 127, 0, 0, 127, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 191, 63, 217, 210, 190, 140, 247, 188, 190, 0, 126, 242, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 72, 137, 200, 190, 124, 215, 65, 190, 0, 126, 242, 0, 127, 0, 0, 127, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 63, 217, 210, 190, 140, 247, 188, 190, 0, 126, 242, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 123, 193, 159, 191, 8, 76, 22, 63, 0, 0, 128, 191, 0, 127, 0, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 123, 193, 159, 191, 8, 76, 22, 63, 154, 148, 46, 191, 0, 127, 0, 0, 127, 0, 0, 127, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 154, 148, 46, 191, 0, 127, 0, 0, 127, 0, 0, 127, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 0, 0, 128, 191, 0, 127, 0, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 88, 97, 152, 191, 176, 120, 113, 63, 170, 191, 32, 191, 0, 126, 247, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 191, 254, 124, 118, 63, 212, 34, 185, 190, 0, 126, 247, 0, 127, 0, 0, 127, 64, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 254, 124, 118, 63, 212, 34, 185, 190, 0, 126, 247, 0, 127, 0, 0, 127, 64, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 191, 176, 120, 113, 63, 170, 191, 32, 191, 0, 126, 247, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 254, 124, 118, 63, 212, 34, 185, 190, 0, 126, 247, 0, 127, 0, 0, 127, 64, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 176, 120, 113, 63, 170, 191, 32, 191, 0, 126, 247, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 70, 42, 164, 191, 22, 223, 112, 63, 10, 102, 164, 189, 0, 126, 244, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 70, 42, 164, 191, 18, 62, 119, 63, 88, 19, 45, 62, 0, 126, 244, 0, 127, 0, 0, 127, 128, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 18, 62, 119, 63, 88, 19, 45, 62, 0, 126, 244, 0, 127, 0, 0, 127, 128, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 22, 223, 112, 63, 10, 102, 164, 189, 0, 126, 244, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 240, 178, 53, 189, 0, 129, 0, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 111, 118, 43, 62, 0, 129, 0, 0, 127, 0, 0, 127, 128, 54, 0, 56, 0, 0, 0, 60, 222, 133, 146, 191, 0, 0, 128, 191, 111, 118, 43, 62, 0, 129, 0, 0, 127, 0, 0, 127, 128, 54, 0, 56, 0, 0, 0, 60, 222, 133, 146, 191, 0, 0, 128, 191, 240, 178, 53, 189, 0, 130, 0, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 35, 179, 188, 191, 58, 226, 45, 191, 16, 43, 50, 191, 0, 127, 0, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 191, 58, 226, 45, 191, 99, 132, 232, 190, 0, 127, 0, 0, 127, 0, 0, 127, 64, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 58, 226, 45, 191, 99, 132, 232, 190, 0, 127, 0, 0, 127, 0, 0, 127, 64, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 58, 226, 45, 191, 16, 43, 50, 191, 0, 127, 0, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 40, 203, 177, 191, 51, 119, 45, 63, 125, 163, 119, 191, 129, 0, 0, 0, 0, 1, 130, 129, 0, 57, 128, 52, 0, 0, 0, 60, 40, 203, 177, 191, 25, 203, 43, 63, 169, 106, 47, 191, 129, 0, 0, 0, 0, 2, 130, 129, 192, 56, 128, 52, 0, 0, 0, 60, 40, 203, 177, 191, 0, 0, 128, 63, 96, 31, 59, 191, 129, 0, 0, 0, 0, 1, 130, 129, 192, 56, 0, 52, 0, 0, 0, 60, 40, 203, 177, 191, 0, 0, 128, 63, 0, 0, 128, 191, 129, 0, 0, 0, 0, 0, 129, 129, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 51, 119, 45, 63, 125, 163, 119, 191, 0, 130, 254, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 169, 106, 47, 191, 0, 130, 254, 0, 127, 0, 0, 127, 192, 56, 128, 52, 0, 0, 0, 60, 40, 203, 177, 191, 25, 203, 43, 63, 169, 106, 47, 191, 0, 130, 254, 0, 127, 0, 0, 127, 192, 56, 128, 52, 0, 0, 0, 60, 40, 203, 177, 191, 51, 119, 45, 63, 125, 163, 119, 191, 0, 130, 254, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 0, 0, 128, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 51, 119, 45, 63, 125, 163, 119, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 40, 203, 177, 191, 51, 119, 45, 63, 125, 163, 119, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 0, 0, 128, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 40, 203, 177, 191, 51, 119, 45, 63, 125, 163, 119, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 40, 203, 177, 191, 0, 0, 128, 63, 0, 0, 128, 191, 0, 244, 130, 0, 127, 0, 0, 127, 0, 57, 0, 52, 0, 0, 0, 60, 40, 203, 177, 191, 0, 0, 128, 63, 96, 31, 59, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 0, 52, 0, 0, 0, 60, 40, 203, 177, 191, 25, 203, 43, 63, 169, 106, 47, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 169, 106, 47, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 128, 52, 0, 0, 0, 60, 40, 203, 177, 191, 0, 0, 128, 63, 96, 31, 59, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 169, 106, 47, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 96, 31, 59, 191, 0, 17, 125, 0, 127, 0, 0, 129, 192, 56, 0, 52, 0, 0, 0, 60, 123, 193, 159, 191, 85, 95, 73, 62, 55, 157, 56, 191, 129, 0, 0, 0, 0, 0, 129, 129, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 191, 8, 76, 22, 63, 154, 148, 46, 191, 129, 0, 0, 0, 0, 0, 129, 129, 192, 56, 0, 53, 0, 0, 0, 60, 123, 193, 159, 191, 8, 76, 22, 63, 0, 0, 128, 191, 129, 0, 0, 0, 0, 0, 129, 129, 0, 57, 0, 53, 0, 0, 0, 60, 123, 193, 159, 191, 27, 78, 53, 62, 138, 121, 120, 191, 129, 0, 0, 0, 0, 247, 130, 129, 0, 57, 128, 53, 0, 0, 0, 60, 123, 193, 159, 191, 85, 95, 73, 62, 55, 157, 56, 191, 129, 0, 0, 0, 0, 247, 130, 129, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 191, 8, 76, 22, 63, 0, 0, 128, 191, 129, 0, 0, 0, 0, 247, 130, 129, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 0, 0, 128, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 27, 78, 53, 62, 138, 121, 120, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 128, 53, 0, 0, 0, 60, 123, 193, 159, 191, 27, 78, 53, 62, 138, 121, 120, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 0, 0, 128, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 123, 193, 159, 191, 27, 78, 53, 62, 138, 121, 120, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 128, 53, 0, 0, 0, 60, 123, 193, 159, 191, 8, 76, 22, 63, 0, 0, 128, 191, 0, 247, 130, 0, 127, 0, 0, 127, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 85, 95, 73, 62, 55, 157, 56, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 154, 148, 46, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 0, 53, 0, 0, 0, 60, 123, 193, 159, 191, 8, 76, 22, 63, 154, 148, 46, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 85, 95, 73, 62, 55, 157, 56, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 191, 8, 76, 22, 63, 154, 148, 46, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 0, 53, 0, 0, 0, 60, 123, 193, 159, 191, 85, 95, 73, 62, 55, 157, 56, 191, 0, 244, 126, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 27, 78, 53, 62, 138, 121, 120, 191, 0, 130, 9, 0, 127, 0, 0, 129, 0, 57, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 85, 95, 73, 62, 55, 157, 56, 191, 0, 130, 9, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 191, 85, 95, 73, 62, 55, 157, 56, 191, 0, 130, 9, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 27, 78, 53, 62, 138, 121, 120, 191, 0, 130, 9, 0, 127, 0, 0, 129, 0, 57, 128, 53, 0, 0, 0, 60, 123, 193, 159, 191, 85, 95, 73, 62, 55, 157, 56, 191, 0, 130, 9, 0, 127, 0, 0, 129, 192, 56, 128, 53, 0, 0, 0, 60, 123, 193, 159, 191, 27, 78, 53, 62, 138, 121, 120, 191, 0, 130, 9, 0, 127, 0, 0, 129, 0, 57, 128, 53, 0, 0, 0, 60, 14, 72, 185, 191, 113, 252, 156, 190, 1, 147, 69, 191, 129, 0, 0, 0, 0, 234, 131, 129, 192, 56, 128, 54, 0, 0, 0, 60, 14, 72, 185, 191, 82, 68, 245, 61, 61, 8, 57, 191, 129, 0, 0, 0, 0, 234, 131, 129, 192, 56, 0, 54, 0, 0, 0, 60, 14, 72, 185, 191, 154, 158, 151, 61, 178, 251, 122, 191, 129, 0, 0, 0, 0, 234, 131, 129, 0, 57, 0, 54, 0, 0, 0, 60, 14, 72, 185, 191, 40, 177, 168, 190, 204, 167, 124, 191, 129, 0, 0, 0, 0, 243, 130, 129, 0, 57, 128, 54, 0, 0, 0, 60, 14, 72, 185, 191, 113, 252, 156, 190, 1, 147, 69, 191, 129, 0, 0, 0, 0, 243, 130, 129, 192, 56, 128, 54, 0, 0, 0, 60, 14, 72, 185, 191, 154, 158, 151, 61, 178, 251, 122, 191, 129, 0, 0, 0, 0, 243, 130, 129, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 40, 177, 168, 190, 204, 167, 124, 191, 0, 130, 13, 0, 127, 0, 0, 129, 0, 57, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 113, 252, 156, 190, 1, 147, 69, 191, 0, 130, 13, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 14, 72, 185, 191, 113, 252, 156, 190, 1, 147, 69, 191, 0, 130, 13, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 40, 177, 168, 190, 204, 167, 124, 191, 0, 130, 13, 0, 127, 0, 0, 129, 0, 57, 128, 54, 0, 0, 0, 60, 14, 72, 185, 191, 113, 252, 156, 190, 1, 147, 69, 191, 0, 130, 13, 0, 127, 0, 0, 129, 192, 56, 128, 54, 0, 0, 0, 60, 14, 72, 185, 191, 40, 177, 168, 190, 204, 167, 124, 191, 0, 130, 13, 0, 127, 0, 0, 129, 0, 57, 128, 54, 0, 0, 0, 60, 14, 72, 185, 191, 154, 158, 151, 61, 178, 251, 122, 191, 0, 125, 234, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 14, 72, 185, 191, 82, 68, 245, 61, 61, 8, 57, 191, 0, 125, 234, 0, 127, 0, 0, 127, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 82, 68, 245, 61, 61, 8, 57, 191, 0, 125, 234, 0, 127, 0, 0, 127, 192, 56, 0, 54, 0, 0, 0, 60, 14, 72, 185, 191, 154, 158, 151, 61, 178, 251, 122, 191, 0, 125, 234, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 82, 68, 245, 61, 61, 8, 57, 191, 0, 125, 234, 0, 127, 0, 0, 127, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 154, 158, 151, 61, 178, 251, 122, 191, 0, 125, 234, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 14, 72, 185, 191, 40, 177, 168, 190, 204, 167, 124, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 128, 54, 0, 0, 0, 60, 14, 72, 185, 191, 154, 158, 151, 61, 178, 251, 122, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 154, 158, 151, 61, 178, 251, 122, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 14, 72, 185, 191, 40, 177, 168, 190, 204, 167, 124, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 154, 158, 151, 61, 178, 251, 122, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 40, 177, 168, 190, 204, 167, 124, 191, 0, 2, 130, 0, 127, 0, 0, 127, 0, 57, 128, 54, 0, 0, 0, 60, 112, 67, 154, 191, 80, 198, 112, 191, 0, 0, 128, 191, 129, 0, 0, 0, 0, 1, 130, 129, 0, 57, 128, 55, 0, 0, 0, 60, 112, 67, 154, 191, 93, 156, 113, 191, 138, 121, 56, 191, 129, 0, 0, 0, 0, 1, 130, 129, 192, 56, 128, 55, 0, 0, 0, 60, 112, 67, 154, 191, 173, 166, 201, 190, 0, 0, 64, 191, 129, 0, 0, 0, 0, 1, 130, 129, 192, 56, 0, 55, 0, 0, 0, 60, 112, 67, 154, 191, 80, 198, 112, 191, 0, 0, 128, 191, 129, 0, 0, 0, 0, 240, 131, 129, 0, 57, 128, 55, 0, 0, 0, 60, 112, 67, 154, 191, 173, 166, 201, 190, 0, 0, 64, 191, 129, 0, 0, 0, 0, 240, 131, 129, 192, 56, 0, 55, 0, 0, 0, 60, 112, 67, 154, 191, 152, 179, 216, 190, 151, 79, 121, 191, 129, 0, 0, 0, 0, 240, 131, 129, 0, 57, 0, 55, 0, 0, 0, 60, 112, 67, 154, 191, 80, 198, 112, 191, 0, 0, 128, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 112, 67, 154, 191, 152, 179, 216, 190, 151, 79, 121, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 152, 179, 216, 190, 151, 79, 121, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 112, 67, 154, 191, 80, 198, 112, 191, 0, 0, 128, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 152, 179, 216, 190, 151, 79, 121, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 80, 198, 112, 191, 0, 0, 128, 191, 0, 6, 130, 0, 127, 0, 0, 127, 0, 57, 128, 55, 0, 0, 0, 60, 112, 67, 154, 191, 152, 179, 216, 190, 151, 79, 121, 191, 0, 125, 240, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 112, 67, 154, 191, 173, 166, 201, 190, 0, 0, 64, 191, 0, 125, 240, 0, 127, 0, 0, 127, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 173, 166, 201, 190, 0, 0, 64, 191, 0, 125, 240, 0, 127, 0, 0, 127, 192, 56, 0, 55, 0, 0, 0, 60, 112, 67, 154, 191, 152, 179, 216, 190, 151, 79, 121, 191, 0, 125, 240, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 173, 166, 201, 190, 0, 0, 64, 191, 0, 125, 240, 0, 127, 0, 0, 127, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 152, 179, 216, 190, 151, 79, 121, 191, 0, 125, 240, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 112, 67, 154, 191, 173, 166, 201, 190, 0, 0, 64, 191, 0, 6, 126, 0, 127, 0, 0, 129, 192, 56, 0, 55, 0, 0, 0, 60, 112, 67, 154, 191, 93, 156, 113, 191, 138, 121, 56, 191, 0, 6, 126, 0, 127, 0, 0, 129, 192, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 93, 156, 113, 191, 138, 121, 56, 191, 0, 6, 126, 0, 127, 0, 0, 129, 192, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 173, 166, 201, 190, 0, 0, 64, 191, 0, 6, 126, 0, 127, 0, 0, 129, 192, 56, 0, 55, 0, 0, 0, 60, 88, 97, 152, 191, 188, 62, 246, 62, 209, 43, 212, 190, 129, 0, 0, 0, 0, 247, 130, 129, 64, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 191, 254, 124, 118, 63, 212, 34, 185, 190, 129, 0, 0, 0, 0, 247, 130, 129, 64, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 191, 176, 120, 113, 63, 170, 191, 32, 191, 129, 0, 0, 0, 0, 247, 130, 129, 128, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 191, 57, 226, 237, 62, 74, 122, 26, 191, 129, 0, 0, 0, 0, 246, 130, 129, 128, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 191, 188, 62, 246, 62, 209, 43, 212, 190, 129, 0, 0, 0, 0, 246, 130, 129, 64, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 191, 176, 120, 113, 63, 170, 191, 32, 191, 129, 0, 0, 0, 0, 246, 130, 129, 128, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 57, 226, 237, 62, 74, 122, 26, 191, 0, 130, 10, 0, 127, 0, 0, 129, 128, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 188, 62, 246, 62, 209, 43, 212, 190, 0, 130, 10, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 191, 188, 62, 246, 62, 209, 43, 212, 190, 0, 130, 10, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 191, 57, 226, 237, 62, 74, 122, 26, 191, 0, 130, 10, 0, 127, 0, 0, 129, 128, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 188, 62, 246, 62, 209, 43, 212, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 254, 124, 118, 63, 212, 34, 185, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 191, 254, 124, 118, 63, 212, 34, 185, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 188, 62, 246, 62, 209, 43, 212, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 191, 254, 124, 118, 63, 212, 34, 185, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 128, 52, 0, 0, 0, 60, 88, 97, 152, 191, 188, 62, 246, 62, 209, 43, 212, 190, 0, 243, 126, 0, 127, 0, 0, 129, 64, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 176, 120, 113, 63, 170, 191, 32, 191, 0, 250, 130, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 57, 226, 237, 62, 74, 122, 26, 191, 0, 250, 130, 0, 127, 0, 0, 127, 128, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 191, 57, 226, 237, 62, 74, 122, 26, 191, 0, 250, 130, 0, 127, 0, 0, 127, 128, 56, 0, 53, 0, 0, 0, 60, 88, 97, 152, 191, 176, 120, 113, 63, 170, 191, 32, 191, 0, 250, 130, 0, 127, 0, 0, 127, 128, 56, 128, 52, 0, 0, 0, 60, 35, 179, 188, 191, 0, 0, 128, 191, 205, 105, 40, 191, 129, 0, 0, 0, 0, 0, 129, 129, 128, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 191, 0, 0, 128, 191, 215, 72, 196, 190, 129, 0, 0, 0, 0, 0, 130, 129, 64, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 191, 58, 226, 45, 191, 99, 132, 232, 190, 129, 0, 0, 0, 0, 0, 129, 129, 64, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 191, 58, 226, 45, 191, 16, 43, 50, 191, 129, 0, 0, 0, 0, 0, 129, 129, 128, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 205, 105, 40, 191, 0, 129, 0, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 215, 72, 196, 190, 0, 129, 0, 0, 127, 0, 0, 127, 64, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 191, 0, 0, 128, 191, 215, 72, 196, 190, 0, 129, 0, 0, 127, 0, 0, 127, 64, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 191, 0, 0, 128, 191, 205, 105, 40, 191, 0, 129, 0, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 191, 58, 226, 45, 191, 99, 132, 232, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 191, 0, 0, 128, 191, 215, 72, 196, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 215, 72, 196, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 191, 58, 226, 45, 191, 99, 132, 232, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 215, 72, 196, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 58, 226, 45, 191, 99, 132, 232, 190, 0, 27, 124, 0, 127, 0, 0, 129, 64, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 58, 226, 45, 191, 16, 43, 50, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 205, 105, 40, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 191, 0, 0, 128, 191, 205, 105, 40, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 58, 226, 45, 191, 16, 43, 50, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 35, 179, 188, 191, 0, 0, 128, 191, 205, 105, 40, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 0, 56, 0, 0, 0, 60, 35, 179, 188, 191, 58, 226, 45, 191, 16, 43, 50, 191, 0, 242, 130, 0, 127, 0, 0, 127, 128, 56, 128, 55, 0, 0, 0, 60, 93, 239, 177, 191, 25, 203, 43, 63, 254, 160, 68, 190, 129, 0, 0, 0, 0, 244, 130, 129, 128, 55, 128, 52, 0, 0, 0, 60, 93, 239, 177, 191, 0, 0, 128, 63, 176, 73, 170, 189, 129, 0, 0, 0, 0, 0, 129, 129, 128, 55, 0, 52, 0, 0, 0, 60, 93, 239, 177, 191, 0, 0, 128, 63, 83, 230, 168, 190, 129, 0, 0, 0, 0, 251, 130, 129, 0, 56, 0, 52, 0, 0, 0, 60, 93, 239, 177, 191, 93, 62, 37, 63, 62, 243, 183, 190, 129, 0, 0, 0, 0, 237, 131, 129, 0, 56, 128, 52, 0, 0, 0, 60, 93, 239, 177, 191, 0, 0, 128, 63, 83, 230, 168, 190, 0, 127, 0, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 93, 239, 177, 191, 0, 0, 128, 63, 176, 73, 170, 189, 0, 127, 0, 0, 127, 0, 0, 127, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 176, 73, 170, 189, 0, 127, 0, 0, 127, 0, 0, 127, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 83, 230, 168, 190, 0, 127, 0, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 93, 62, 37, 63, 62, 243, 183, 190, 0, 131, 19, 0, 127, 0, 0, 129, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 254, 160, 68, 190, 0, 131, 19, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 93, 239, 177, 191, 25, 203, 43, 63, 254, 160, 68, 190, 0, 131, 19, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 93, 62, 37, 63, 62, 243, 183, 190, 0, 131, 19, 0, 127, 0, 0, 129, 0, 56, 128, 52, 0, 0, 0, 60, 93, 239, 177, 191, 25, 203, 43, 63, 254, 160, 68, 190, 0, 131, 19, 0, 127, 0, 0, 129, 128, 55, 128, 52, 0, 0, 0, 60, 93, 239, 177, 191, 93, 62, 37, 63, 62, 243, 183, 190, 0, 131, 19, 0, 127, 0, 0, 129, 0, 56, 128, 52, 0, 0, 0, 60, 93, 239, 177, 191, 93, 62, 37, 63, 62, 243, 183, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 128, 52, 0, 0, 0, 60, 93, 239, 177, 191, 0, 0, 128, 63, 83, 230, 168, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 83, 230, 168, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 93, 239, 177, 191, 93, 62, 37, 63, 62, 243, 183, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 83, 230, 168, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 93, 62, 37, 63, 62, 243, 183, 190, 0, 10, 130, 0, 127, 0, 0, 127, 0, 56, 128, 52, 0, 0, 0, 60, 186, 20, 159, 191, 180, 80, 108, 191, 3, 226, 163, 190, 129, 0, 0, 0, 0, 17, 131, 129, 0, 56, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 132, 30, 116, 191, 189, 78, 209, 189, 129, 0, 0, 0, 0, 17, 131, 129, 128, 55, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 72, 137, 200, 190, 124, 215, 65, 190, 129, 0, 0, 0, 0, 17, 131, 129, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 191, 180, 80, 108, 191, 3, 226, 163, 190, 129, 0, 0, 0, 0, 242, 130, 129, 0, 56, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 72, 137, 200, 190, 124, 215, 65, 190, 129, 0, 0, 0, 0, 242, 130, 129, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 191, 63, 217, 210, 190, 140, 247, 188, 190, 129, 0, 0, 0, 0, 242, 130, 129, 0, 56, 0, 55, 0, 0, 0, 60, 186, 20, 159, 191, 72, 137, 200, 190, 124, 215, 65, 190, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 0, 55, 0, 0, 0, 60, 186, 20, 159, 191, 132, 30, 116, 191, 189, 78, 209, 189, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 132, 30, 116, 191, 189, 78, 209, 189, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 72, 137, 200, 190, 124, 215, 65, 190, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 132, 30, 116, 191, 189, 78, 209, 189, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 72, 137, 200, 190, 124, 215, 65, 190, 0, 19, 125, 0, 127, 0, 0, 129, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 63, 217, 210, 190, 140, 247, 188, 190, 0, 244, 130, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 180, 80, 108, 191, 3, 226, 163, 190, 0, 244, 130, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 180, 80, 108, 191, 3, 226, 163, 190, 0, 244, 130, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 63, 217, 210, 190, 140, 247, 188, 190, 0, 244, 130, 0, 127, 0, 0, 127, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 180, 80, 108, 191, 3, 226, 163, 190, 0, 131, 239, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 132, 30, 116, 191, 189, 78, 209, 189, 0, 131, 239, 0, 127, 0, 0, 127, 128, 55, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 132, 30, 116, 191, 189, 78, 209, 189, 0, 131, 239, 0, 127, 0, 0, 127, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 180, 80, 108, 191, 3, 226, 163, 190, 0, 131, 239, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 132, 30, 116, 191, 189, 78, 209, 189, 0, 131, 239, 0, 127, 0, 0, 127, 128, 55, 128, 55, 0, 0, 0, 60, 186, 20, 159, 191, 180, 80, 108, 191, 3, 226, 163, 190, 0, 131, 239, 0, 127, 0, 0, 127, 0, 56, 128, 55, 0, 0, 0, 60, 70, 42, 164, 191, 0, 0, 0, 63, 28, 110, 14, 62, 129, 0, 0, 0, 0, 244, 130, 129, 128, 54, 0, 53, 0, 0, 0, 60, 70, 42, 164, 191, 18, 62, 119, 63, 88, 19, 45, 62, 129, 0, 0, 0, 0, 244, 130, 129, 128, 54, 128, 52, 0, 0, 0, 60, 70, 42, 164, 191, 22, 223, 112, 63, 10, 102, 164, 189, 129, 0, 0, 0, 0, 244, 130, 129, 0, 55, 128, 52, 0, 0, 0, 60, 70, 42, 164, 191, 48, 198, 252, 62, 181, 217, 190, 189, 129, 0, 0, 0, 0, 253, 130, 129, 0, 55, 0, 53, 0, 0, 0, 60, 70, 42, 164, 191, 0, 0, 0, 63, 28, 110, 14, 62, 129, 0, 0, 0, 0, 253, 130, 129, 128, 54, 0, 53, 0, 0, 0, 60, 70, 42, 164, 191, 22, 223, 112, 63, 10, 102, 164, 189, 129, 0, 0, 0, 0, 253, 130, 129, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 0, 63, 28, 110, 14, 62, 0, 248, 126, 0, 127, 0, 0, 129, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 18, 62, 119, 63, 88, 19, 45, 62, 0, 248, 126, 0, 127, 0, 0, 129, 128, 54, 128, 52, 0, 0, 0, 60, 70, 42, 164, 191, 18, 62, 119, 63, 88, 19, 45, 62, 0, 248, 126, 0, 127, 0, 0, 129, 128, 54, 128, 52, 0, 0, 0, 60, 70, 42, 164, 191, 0, 0, 0, 63, 28, 110, 14, 62, 0, 248, 126, 0, 127, 0, 0, 129, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 48, 198, 252, 62, 181, 217, 190, 189, 0, 130, 3, 0, 127, 0, 0, 129, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 0, 63, 28, 110, 14, 62, 0, 130, 3, 0, 127, 0, 0, 129, 128, 54, 0, 53, 0, 0, 0, 60, 70, 42, 164, 191, 0, 0, 0, 63, 28, 110, 14, 62, 0, 130, 3, 0, 127, 0, 0, 129, 128, 54, 0, 53, 0, 0, 0, 60, 70, 42, 164, 191, 48, 198, 252, 62, 181, 217, 190, 189, 0, 130, 3, 0, 127, 0, 0, 129, 0, 55, 0, 53, 0, 0, 0, 60, 70, 42, 164, 191, 48, 198, 252, 62, 181, 217, 190, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 0, 53, 0, 0, 0, 60, 70, 42, 164, 191, 22, 223, 112, 63, 10, 102, 164, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 22, 223, 112, 63, 10, 102, 164, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 70, 42, 164, 191, 48, 198, 252, 62, 181, 217, 190, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 22, 223, 112, 63, 10, 102, 164, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 48, 198, 252, 62, 181, 217, 190, 189, 0, 3, 130, 0, 127, 0, 0, 127, 0, 55, 0, 53, 0, 0, 0, 60, 222, 133, 146, 191, 0, 0, 128, 191, 111, 118, 43, 62, 129, 0, 0, 0, 0, 13, 130, 129, 128, 54, 0, 56, 0, 0, 0, 60, 222, 133, 146, 191, 74, 74, 50, 191, 178, 93, 56, 62, 129, 0, 0, 0, 0, 13, 130, 129, 128, 54, 128, 55, 0, 0, 0, 60, 222, 133, 146, 191, 193, 57, 42, 191, 57, 168, 216, 189, 129, 0, 0, 0, 0, 13, 130, 129, 0, 55, 128, 55, 0, 0, 0, 60, 222, 133, 146, 191, 0, 0, 128, 191, 240, 178, 53, 189, 129, 0, 0, 0, 0, 0, 130, 129, 0, 55, 0, 56, 0, 0, 0, 60, 222, 133, 146, 191, 0, 0, 128, 191, 111, 118, 43, 62, 129, 0, 0, 0, 0, 0, 129, 129, 128, 54, 0, 56, 0, 0, 0, 60, 222, 133, 146, 191, 193, 57, 42, 191, 57, 168, 216, 189, 129, 0, 0, 0, 0, 0, 129, 129, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 193, 57, 42, 191, 57, 168, 216, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 240, 178, 53, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 222, 133, 146, 191, 0, 0, 128, 191, 240, 178, 53, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 193, 57, 42, 191, 57, 168, 216, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 128, 55, 0, 0, 0, 60, 222, 133, 146, 191, 0, 0, 128, 191, 240, 178, 53, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 0, 56, 0, 0, 0, 60, 222, 133, 146, 191, 193, 57, 42, 191, 57, 168, 216, 189, 0, 234, 132, 0, 127, 0, 0, 127, 0, 55, 128, 55, 0, 0, 0, 60, 222, 133, 146, 191, 193, 57, 42, 191, 57, 168, 216, 189, 0, 126, 13, 0, 127, 0, 0, 129, 0, 55, 128, 55, 0, 0, 0, 60, 222, 133, 146, 191, 74, 74, 50, 191, 178, 93, 56, 62, 0, 126, 13, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 74, 74, 50, 191, 178, 93, 56, 62, 0, 126, 13, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 222, 133, 146, 191, 193, 57, 42, 191, 57, 168, 216, 189, 0, 126, 13, 0, 127, 0, 0, 129, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 74, 74, 50, 191, 178, 93, 56, 62, 0, 126, 13, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 193, 57, 42, 191, 57, 168, 216, 189, 0, 126, 13, 0, 127, 0, 0, 129, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 111, 118, 43, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 74, 74, 50, 191, 178, 93, 56, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 222, 133, 146, 191, 74, 74, 50, 191, 178, 93, 56, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 111, 118, 43, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 0, 56, 0, 0, 0, 60, 222, 133, 146, 191, 74, 74, 50, 191, 178, 93, 56, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 128, 55, 0, 0, 0, 60, 222, 133, 146, 191, 0, 0, 128, 191, 111, 118, 43, 62, 0, 251, 126, 0, 127, 0, 0, 129, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 4, 28, 178, 190, 46, 95, 52, 190, 127, 0, 0, 0, 0, 0, 129, 129, 77, 55, 166, 58, 0, 0, 0, 60, 0, 0, 128, 52, 223, 184, 177, 190, 63, 136, 48, 190, 127, 0, 0, 0, 0, 0, 129, 129, 74, 55, 167, 58, 0, 0, 0, 60, 0, 0, 0, 0, 156, 211, 182, 190, 243, 154, 46, 190, 127, 0, 0, 0, 0, 0, 129, 129, 73, 55, 164, 58, 0, 0, 0, 60, 0, 0, 0, 0, 36, 121, 43, 191, 109, 203, 99, 62, 127, 0, 0, 0, 0, 0, 0, 127, 0, 54, 84, 58, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 109, 203, 99, 62, 127, 0, 0, 0, 0, 0, 129, 129, 0, 54, 0, 58, 0, 0, 0, 60, 0, 0, 0, 0, 226, 170, 31, 191, 64, 90, 247, 187, 127, 0, 0, 0, 0, 0, 0, 127, 192, 54, 96, 58, 0, 0, 0, 60, 0, 0, 128, 52, 213, 40, 36, 191, 174, 197, 163, 61, 127, 0, 0, 0, 0, 28, 133, 127, 119, 54, 91, 58, 0, 0, 0, 60 ), +"array_index_data": PoolByteArray( 0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 7, 0, 9, 0, 8, 0, 10, 0, 12, 0, 11, 0, 13, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 23, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 30, 0, 32, 0, 31, 0, 33, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 51, 0, 53, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 61, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 67, 0, 69, 0, 68, 0, 70, 0, 72, 0, 71, 0, 73, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 79, 0, 81, 0, 80, 0, 82, 0, 84, 0, 83, 0, 85, 0, 87, 0, 86, 0, 88, 0, 90, 0, 89, 0, 91, 0, 93, 0, 92, 0, 94, 0, 96, 0, 95, 0, 97, 0, 99, 0, 98, 0, 100, 0, 102, 0, 101, 0, 103, 0, 105, 0, 104, 0, 106, 0, 108, 0, 107, 0, 109, 0, 111, 0, 110, 0, 112, 0, 114, 0, 113, 0, 115, 0, 117, 0, 116, 0, 118, 0, 120, 0, 119, 0, 121, 0, 123, 0, 122, 0, 124, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 130, 0, 132, 0, 131, 0, 133, 0, 135, 0, 134, 0, 136, 0, 138, 0, 137, 0, 136, 0, 139, 0, 138, 0, 140, 0, 142, 0, 141, 0, 143, 0, 145, 0, 144, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0, 150, 0, 152, 0, 151, 0, 153, 0, 155, 0, 154, 0, 156, 0, 158, 0, 157, 0, 156, 0, 159, 0, 158, 0, 160, 0, 162, 0, 161, 0, 163, 0, 162, 0, 160, 0, 164, 0, 166, 0, 165, 0, 164, 0, 167, 0, 166, 0, 168, 0, 170, 0, 169, 0, 171, 0, 173, 0, 172, 0, 174, 0, 176, 0, 175, 0, 177, 0, 179, 0, 178, 0, 180, 0, 182, 0, 181, 0, 180, 0, 183, 0, 182, 0, 184, 0, 186, 0, 185, 0, 184, 0, 187, 0, 186, 0, 188, 0, 190, 0, 189, 0, 191, 0, 193, 0, 192, 0, 194, 0, 196, 0, 195, 0, 197, 0, 199, 0, 198, 0, 200, 0, 202, 0, 201, 0, 203, 0, 205, 0, 204, 0, 206, 0, 208, 0, 207, 0, 209, 0, 211, 0, 210, 0, 212, 0, 214, 0, 213, 0, 212, 0, 215, 0, 214, 0, 216, 0, 218, 0, 217, 0, 219, 0, 221, 0, 220, 0, 222, 0, 224, 0, 223, 0, 225, 0, 227, 0, 226, 0, 228, 0, 230, 0, 229, 0, 228, 0, 231, 0, 230, 0, 232, 0, 234, 0, 233, 0, 232, 0, 235, 0, 234, 0, 236, 0, 238, 0, 237, 0, 239, 0, 241, 0, 240, 0, 242, 0, 244, 0, 243, 0, 242, 0, 245, 0, 244, 0, 246, 0, 248, 0, 247, 0, 249, 0, 251, 0, 250, 0, 252, 0, 254, 0, 253, 0, 255, 0, 1, 1, 0, 1, 2, 1, 4, 1, 3, 1, 5, 1, 7, 1, 6, 1, 8, 1, 10, 1, 9, 1, 11, 1, 10, 1, 8, 1, 12, 1, 14, 1, 13, 1, 15, 1, 14, 1, 12, 1, 16, 1, 14, 1, 15, 1, 14, 1, 10, 1, 11, 1, 16, 1, 10, 1, 14, 1, 17, 1, 19, 1, 18, 1, 17, 1, 20, 1, 19, 1, 20, 1, 21, 1, 19, 1, 21, 1, 22, 1, 19, 1, 23, 1, 22, 1, 21, 1, 17, 1, 24, 1, 20, 1, 24, 1, 25, 1, 20, 1, 26, 1, 25, 1, 24, 1, 26, 1, 27, 1, 25, 1, 28, 1, 22, 1, 23, 1, 29, 1, 22, 1, 28, 1, 30, 1, 22, 1, 29, 1, 31, 1, 33, 1, 32, 1, 31, 1, 34, 1, 33, 1, 35, 1, 37, 1, 36, 1, 38, 1, 40, 1, 39, 1, 41, 1, 43, 1, 42, 1, 44, 1, 46, 1, 45, 1, 47, 1, 49, 1, 48, 1, 47, 1, 50, 1, 49, 1, 51, 1, 53, 1, 52, 1, 54, 1, 56, 1, 55, 1, 57, 1, 59, 1, 58, 1, 57, 1, 60, 1, 59, 1, 61, 1, 63, 1, 62, 1, 64, 1, 66, 1, 65, 1, 67, 1, 69, 1, 68, 1, 67, 1, 70, 1, 69, 1, 71, 1, 73, 1, 72, 1, 71, 1, 74, 1, 73, 1, 75, 1, 77, 1, 76, 1, 75, 1, 78, 1, 77, 1, 79, 1, 81, 1, 80, 1, 79, 1, 82, 1, 81, 1, 83, 1, 85, 1, 84, 1, 83, 1, 86, 1, 85, 1, 87, 1, 89, 1, 88, 1, 90, 1, 92, 1, 91, 1, 93, 1, 95, 1, 94, 1, 96, 1, 98, 1, 97, 1, 99, 1, 101, 1, 100, 1, 102, 1, 104, 1, 103, 1, 105, 1, 107, 1, 106, 1, 108, 1, 110, 1, 109, 1, 111, 1, 113, 1, 112, 1, 114, 1, 116, 1, 115, 1, 117, 1, 119, 1, 118, 1, 120, 1, 122, 1, 121, 1, 123, 1, 125, 1, 124, 1, 126, 1, 128, 1, 127, 1, 129, 1, 131, 1, 130, 1, 132, 1, 134, 1, 133, 1, 135, 1, 137, 1, 136, 1, 138, 1, 140, 1, 139, 1, 141, 1, 143, 1, 142, 1, 144, 1, 146, 1, 145, 1, 147, 1, 149, 1, 148, 1, 150, 1, 152, 1, 151, 1, 153, 1, 155, 1, 154, 1, 156, 1, 158, 1, 157, 1, 159, 1, 161, 1, 160, 1, 162, 1, 164, 1, 163, 1, 165, 1, 167, 1, 166, 1, 165, 1, 168, 1, 167, 1, 169, 1, 171, 1, 170, 1, 172, 1, 174, 1, 173, 1, 175, 1, 177, 1, 176, 1, 175, 1, 178, 1, 177, 1, 179, 1, 181, 1, 180, 1, 182, 1, 184, 1, 183, 1, 185, 1, 187, 1, 186, 1, 185, 1, 188, 1, 187, 1, 189, 1, 191, 1, 190, 1, 189, 1, 192, 1, 191, 1, 193, 1, 195, 1, 194, 1, 193, 1, 196, 1, 195, 1, 197, 1, 199, 1, 198, 1, 200, 1, 202, 1, 201, 1, 203, 1, 205, 1, 204, 1, 206, 1, 208, 1, 207, 1, 209, 1, 211, 1, 210, 1, 212, 1, 211, 1, 209, 1, 213, 1, 215, 1, 214, 1, 213, 1, 216, 1, 215, 1, 217, 1, 219, 1, 218, 1, 220, 1, 222, 1, 221, 1, 223, 1, 225, 1, 224, 1, 226, 1, 228, 1, 227, 1, 229, 1, 231, 1, 230, 1, 232, 1, 234, 1, 233, 1, 235, 1, 237, 1, 236, 1, 238, 1, 240, 1, 239, 1, 241, 1, 243, 1, 242, 1, 241, 1, 244, 1, 243, 1, 245, 1, 247, 1, 246, 1, 248, 1, 250, 1, 249, 1, 251, 1, 253, 1, 252, 1, 254, 1, 0, 2, 255, 1, 1, 2, 3, 2, 2, 2, 1, 2, 4, 2, 3, 2, 5, 2, 7, 2, 6, 2, 5, 2, 8, 2, 7, 2, 9, 2, 11, 2, 10, 2, 12, 2, 14, 2, 13, 2, 15, 2, 17, 2, 16, 2, 18, 2, 20, 2, 19, 2, 21, 2, 23, 2, 22, 2, 24, 2, 26, 2, 25, 2, 27, 2, 29, 2, 28, 2, 30, 2, 32, 2, 31, 2, 33, 2, 35, 2, 34, 2, 36, 2, 38, 2, 37, 2, 39, 2, 41, 2, 40, 2, 42, 2, 44, 2, 43, 2, 45, 2, 44, 2, 42, 2 ), +"blend_shape_data": [ ], +"format": 97591, +"index_count": 666, +"material": ExtResource( 1 ), +"primitive": 4, +"skeleton_aabb": [ ], +"vertex_count": 558 +} +surfaces/1 = { +"aabb": AABB( -1, -1, -1, 2.00001, 2.00001, 1.22246 ), +"array_data": PoolByteArray( 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 191, 1, 0, 130, 0, 130, 0, 255, 127, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 51, 119, 45, 63, 125, 163, 119, 191, 1, 0, 130, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 0, 0, 128, 191, 1, 0, 130, 0, 130, 241, 255, 127, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 27, 78, 53, 62, 138, 121, 120, 191, 1, 0, 130, 0, 127, 0, 0, 127, 0, 57, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 154, 158, 151, 61, 178, 251, 122, 191, 1, 0, 130, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 40, 177, 168, 190, 204, 167, 124, 191, 1, 0, 130, 0, 127, 0, 0, 127, 0, 57, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 152, 179, 216, 190, 151, 79, 121, 191, 1, 0, 130, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 80, 198, 112, 191, 0, 0, 128, 191, 1, 0, 130, 0, 171, 94, 255, 127, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 1, 0, 130, 0, 130, 246, 255, 127, 0, 59, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 0, 0, 128, 191, 1, 0, 130, 0, 134, 34, 255, 127, 0, 57, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 1, 0, 130, 0, 130, 0, 255, 127, 0, 59, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 0, 0, 129, 129, 0, 57, 0, 0, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 127, 0, 0, 0, 0, 129, 129, 0, 54, 0, 0, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 109, 203, 99, 62, 0, 127, 0, 0, 0, 0, 129, 127, 0, 54, 0, 52, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 0, 0, 129, 127, 0, 57, 0, 0, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 109, 203, 99, 62, 0, 127, 0, 0, 0, 0, 129, 127, 0, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 28, 110, 14, 62, 0, 127, 0, 0, 0, 0, 130, 127, 128, 54, 0, 52, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 0, 0, 129, 127, 0, 57, 0, 0, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 28, 110, 14, 62, 0, 127, 0, 0, 0, 0, 129, 127, 128, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 240, 178, 53, 189, 0, 127, 0, 0, 0, 0, 129, 127, 0, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 240, 178, 53, 189, 0, 127, 0, 0, 0, 0, 129, 127, 0, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 176, 73, 170, 189, 0, 127, 0, 0, 0, 0, 129, 127, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 0, 0, 129, 127, 0, 57, 0, 0, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 176, 73, 170, 189, 0, 127, 0, 0, 0, 0, 129, 127, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 83, 230, 168, 190, 0, 127, 0, 0, 0, 0, 129, 127, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 0, 0, 129, 127, 0, 57, 0, 0, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 83, 230, 168, 190, 0, 127, 0, 0, 0, 0, 129, 127, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 32, 195, 222, 190, 0, 127, 0, 0, 0, 0, 129, 127, 64, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 32, 195, 222, 190, 0, 127, 0, 0, 0, 0, 129, 127, 64, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 170, 191, 32, 191, 0, 127, 0, 0, 0, 0, 129, 127, 128, 56, 0, 52, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 0, 126, 0, 0, 0, 0, 129, 129, 0, 57, 0, 0, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 170, 191, 32, 191, 0, 126, 0, 0, 0, 0, 129, 127, 128, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 96, 31, 59, 191, 0, 126, 0, 0, 0, 0, 129, 127, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 96, 31, 59, 191, 0, 127, 0, 0, 0, 0, 129, 127, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 0, 0, 129, 127, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 48, 0, 52, 0, 0, 0, 60, 0, 0, 0, 0, 255, 59, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 48, 16, 53, 0, 0, 0, 60, 1, 98, 136, 62, 255, 59, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 33, 50, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 48, 0, 52, 0, 0, 0, 60, 1, 98, 136, 62, 255, 59, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 33, 50, 16, 53, 0, 0, 0, 60, 184, 221, 155, 62, 254, 59, 239, 62, 108, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 111, 50, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 48, 0, 52, 0, 0, 0, 60, 184, 221, 155, 62, 254, 59, 239, 62, 108, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 111, 50, 16, 53, 0, 0, 0, 60, 0, 216, 181, 62, 0, 60, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 215, 50, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 48, 0, 52, 0, 0, 0, 60, 0, 216, 181, 62, 0, 60, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 215, 50, 16, 53, 0, 0, 0, 60, 103, 54, 218, 62, 254, 59, 239, 62, 108, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 104, 51, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 48, 0, 52, 0, 0, 0, 60, 103, 54, 218, 62, 254, 59, 239, 62, 108, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 104, 51, 16, 53, 0, 0, 0, 60, 1, 98, 8, 63, 254, 59, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 33, 52, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 48, 0, 52, 0, 0, 0, 60, 1, 98, 8, 63, 254, 59, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 33, 52, 16, 53, 0, 0, 0, 60, 0, 216, 53, 63, 0, 60, 239, 62, 110, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 215, 52, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 126, 0, 127, 0, 0, 127, 0, 48, 0, 52, 0, 0, 0, 60, 0, 216, 53, 63, 0, 60, 239, 62, 110, 203, 99, 62, 0, 0, 126, 0, 127, 0, 0, 127, 215, 52, 16, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 60, 239, 62, 109, 203, 99, 62, 0, 0, 126, 0, 126, 0, 0, 127, 0, 54, 16, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 109, 203, 99, 62, 0, 0, 126, 0, 127, 0, 0, 127, 0, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 64, 63, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 111, 118, 43, 62, 0, 130, 0, 0, 0, 0, 129, 127, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 109, 203, 99, 62, 0, 130, 0, 0, 0, 0, 129, 127, 0, 54, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 109, 203, 99, 62, 0, 130, 0, 0, 0, 0, 130, 127, 0, 54, 0, 58, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 111, 118, 43, 62, 0, 129, 0, 0, 0, 0, 129, 127, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 109, 203, 99, 62, 0, 129, 0, 0, 0, 0, 129, 129, 0, 54, 0, 58, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 0, 129, 0, 0, 0, 0, 129, 129, 0, 57, 0, 58, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 240, 178, 53, 189, 0, 130, 0, 0, 0, 0, 129, 127, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 0, 130, 0, 0, 0, 0, 129, 127, 0, 57, 0, 58, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 176, 73, 170, 189, 0, 129, 0, 0, 0, 0, 129, 127, 128, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 240, 178, 53, 189, 0, 129, 0, 0, 0, 0, 129, 127, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 227, 124, 145, 190, 0, 130, 0, 0, 0, 0, 129, 127, 0, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 176, 73, 170, 189, 0, 130, 0, 0, 0, 0, 129, 127, 128, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 215, 72, 196, 190, 0, 129, 0, 0, 0, 0, 129, 127, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 227, 124, 145, 190, 0, 129, 0, 0, 0, 0, 129, 127, 0, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 205, 105, 40, 191, 0, 129, 0, 0, 0, 0, 129, 127, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 0, 0, 64, 191, 0, 129, 0, 0, 0, 0, 129, 127, 192, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 0, 0, 128, 191, 0, 129, 0, 0, 0, 0, 129, 127, 0, 57, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 28, 110, 14, 62, 127, 0, 0, 0, 0, 248, 130, 127, 128, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 18, 62, 119, 63, 88, 19, 45, 62, 127, 0, 0, 0, 0, 62, 146, 127, 128, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 22, 223, 112, 63, 10, 102, 164, 189, 127, 0, 0, 0, 0, 167, 166, 127, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 240, 178, 53, 189, 127, 0, 0, 0, 0, 0, 129, 127, 0, 55, 0, 52, 0, 0, 0, 60, 255, 255, 127, 63, 154, 144, 238, 62, 120, 130, 25, 62, 127, 0, 0, 0, 0, 234, 132, 127, 136, 54, 106, 53, 0, 0, 0, 60, 0, 0, 128, 63, 4, 162, 237, 62, 230, 109, 72, 61, 127, 0, 0, 0, 0, 234, 132, 127, 185, 54, 57, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 28, 110, 14, 62, 127, 0, 0, 0, 0, 234, 132, 127, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 63, 186, 238, 62, 43, 143, 43, 62, 127, 0, 0, 0, 0, 234, 132, 127, 128, 54, 115, 53, 0, 0, 0, 60, 0, 0, 128, 63, 4, 162, 237, 62, 230, 109, 72, 61, 127, 0, 0, 0, 0, 253, 130, 127, 185, 54, 57, 53, 0, 0, 0, 60, 0, 0, 128, 63, 124, 114, 236, 62, 115, 228, 162, 189, 127, 0, 0, 0, 0, 253, 130, 127, 0, 55, 55, 53, 0, 0, 0, 60, 0, 0, 128, 63, 48, 198, 252, 62, 181, 217, 190, 189, 127, 0, 0, 0, 0, 102, 181, 127, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 28, 110, 14, 62, 127, 0, 0, 0, 0, 253, 130, 127, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 32, 195, 222, 190, 127, 0, 0, 0, 0, 249, 130, 127, 64, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 254, 124, 118, 63, 212, 34, 185, 190, 127, 0, 0, 0, 0, 92, 169, 127, 64, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 176, 120, 113, 63, 170, 191, 32, 191, 127, 0, 0, 0, 0, 194, 146, 127, 128, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 170, 191, 32, 191, 127, 0, 0, 0, 0, 0, 129, 127, 128, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 188, 62, 246, 62, 209, 43, 212, 190, 127, 0, 0, 0, 0, 196, 145, 127, 64, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 194, 184, 227, 62, 55, 154, 201, 190, 127, 0, 0, 0, 0, 178, 156, 127, 64, 56, 50, 53, 0, 0, 0, 60, 0, 0, 128, 63, 48, 203, 221, 62, 2, 132, 7, 191, 127, 0, 0, 0, 0, 247, 130, 127, 102, 56, 77, 53, 0, 0, 0, 60, 0, 0, 128, 63, 62, 142, 218, 62, 74, 122, 26, 191, 127, 0, 0, 0, 0, 59, 144, 127, 128, 56, 77, 53, 0, 0, 0, 60, 0, 0, 128, 63, 57, 226, 237, 62, 74, 122, 26, 191, 127, 0, 0, 0, 0, 75, 154, 127, 128, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 253, 29, 218, 62, 163, 11, 29, 191, 127, 0, 0, 0, 0, 106, 188, 127, 136, 56, 111, 53, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 154, 148, 46, 191, 127, 0, 0, 0, 0, 70, 151, 127, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 166, 182, 141, 62, 211, 224, 44, 191, 127, 0, 0, 0, 0, 146, 193, 127, 167, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 85, 95, 73, 62, 55, 157, 56, 191, 127, 0, 0, 0, 0, 146, 193, 127, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 154, 148, 46, 191, 127, 0, 0, 0, 0, 146, 193, 127, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 252, 8, 216, 62, 228, 60, 41, 191, 127, 0, 0, 0, 0, 146, 193, 127, 167, 56, 80, 53, 0, 0, 0, 60, 0, 0, 128, 63, 253, 29, 218, 62, 163, 11, 29, 191, 127, 0, 0, 0, 0, 146, 193, 127, 136, 56, 111, 53, 0, 0, 0, 60, 0, 0, 128, 63, 85, 95, 73, 62, 55, 157, 56, 191, 126, 0, 0, 0, 0, 152, 184, 127, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 166, 182, 141, 62, 211, 224, 44, 191, 126, 0, 0, 0, 0, 146, 193, 127, 167, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 12, 182, 164, 61, 117, 205, 49, 191, 126, 0, 0, 0, 0, 110, 194, 127, 148, 56, 215, 53, 0, 0, 0, 60, 0, 0, 128, 63, 38, 181, 116, 61, 61, 82, 50, 191, 126, 0, 0, 0, 0, 116, 206, 127, 150, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 82, 68, 245, 61, 61, 8, 57, 191, 126, 0, 0, 0, 0, 116, 206, 127, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 27, 78, 53, 62, 138, 121, 120, 191, 127, 0, 0, 0, 0, 236, 131, 127, 0, 57, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 85, 95, 73, 62, 55, 157, 56, 191, 127, 0, 0, 0, 0, 247, 130, 127, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 63, 82, 68, 245, 61, 61, 8, 57, 191, 127, 0, 0, 0, 0, 244, 130, 127, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 154, 158, 151, 61, 178, 251, 122, 191, 127, 0, 0, 0, 0, 234, 131, 127, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 46, 202, 227, 62, 39, 206, 200, 190, 127, 0, 0, 0, 0, 147, 193, 127, 63, 56, 52, 53, 0, 0, 0, 60, 0, 0, 128, 63, 208, 160, 18, 63, 14, 253, 184, 190, 127, 0, 0, 0, 0, 147, 193, 127, 16, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 83, 230, 168, 190, 127, 0, 0, 0, 0, 74, 153, 127, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 93, 62, 37, 63, 62, 243, 183, 190, 127, 0, 0, 0, 0, 125, 236, 127, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 139, 249, 29, 63, 123, 129, 179, 190, 127, 0, 0, 0, 0, 147, 193, 127, 1, 56, 208, 52, 0, 0, 0, 60, 0, 0, 128, 63, 154, 24, 30, 63, 98, 64, 178, 190, 127, 0, 0, 0, 0, 147, 193, 127, 0, 56, 215, 52, 0, 0, 0, 60, 0, 0, 128, 63, 48, 198, 252, 62, 181, 217, 190, 189, 127, 0, 0, 0, 0, 102, 181, 127, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 123, 114, 236, 62, 115, 228, 162, 189, 127, 0, 0, 0, 0, 130, 243, 127, 0, 55, 55, 53, 0, 0, 0, 60, 0, 0, 128, 63, 12, 85, 236, 62, 56, 103, 188, 189, 127, 0, 0, 0, 0, 225, 134, 127, 15, 55, 15, 53, 0, 0, 0, 60, 0, 0, 128, 63, 214, 79, 236, 62, 85, 235, 192, 189, 127, 0, 0, 0, 0, 108, 191, 127, 21, 55, 17, 53, 0, 0, 0, 60, 0, 0, 128, 63, 27, 82, 13, 63, 50, 150, 3, 190, 127, 0, 0, 0, 0, 108, 191, 127, 60, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 216, 205, 238, 62, 118, 13, 52, 62, 126, 0, 0, 0, 0, 0, 129, 127, 115, 54, 115, 53, 0, 0, 0, 60, 0, 0, 128, 63, 63, 186, 238, 62, 43, 143, 43, 62, 126, 0, 0, 0, 0, 0, 129, 127, 128, 54, 115, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 28, 110, 14, 62, 126, 0, 0, 0, 0, 0, 129, 127, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 109, 203, 99, 62, 126, 0, 0, 0, 0, 6, 130, 127, 0, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 109, 203, 99, 62, 127, 0, 0, 0, 0, 97, 175, 127, 0, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 64, 63, 109, 203, 99, 62, 127, 0, 0, 0, 0, 123, 226, 127, 0, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 18, 62, 119, 63, 88, 19, 45, 62, 126, 0, 0, 0, 0, 65, 147, 127, 128, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 64, 63, 109, 203, 99, 62, 126, 0, 0, 0, 0, 123, 226, 127, 0, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 109, 203, 99, 62, 126, 0, 0, 0, 0, 6, 130, 127, 0, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 28, 110, 14, 62, 126, 0, 0, 0, 0, 0, 129, 127, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 193, 57, 42, 191, 57, 168, 216, 189, 127, 0, 0, 0, 0, 155, 180, 127, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 132, 30, 116, 191, 189, 78, 209, 189, 127, 0, 0, 0, 0, 154, 182, 127, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 72, 137, 200, 190, 124, 215, 65, 190, 127, 0, 0, 0, 0, 117, 209, 127, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 240, 178, 53, 189, 127, 0, 0, 0, 0, 0, 129, 127, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 176, 73, 170, 189, 127, 0, 0, 0, 0, 242, 130, 127, 128, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 132, 30, 116, 191, 189, 78, 209, 189, 127, 0, 0, 0, 0, 154, 182, 127, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 176, 73, 170, 189, 127, 0, 0, 0, 0, 242, 130, 127, 128, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 227, 124, 145, 190, 127, 0, 0, 0, 0, 9, 130, 127, 0, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 180, 80, 108, 191, 3, 226, 163, 190, 127, 0, 0, 0, 0, 68, 149, 127, 0, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 74, 74, 50, 191, 178, 93, 56, 62, 127, 0, 0, 0, 0, 96, 174, 127, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 64, 191, 109, 203, 99, 62, 127, 0, 0, 0, 0, 76, 155, 127, 0, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 109, 203, 99, 62, 127, 0, 0, 0, 0, 9, 130, 127, 0, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 111, 118, 43, 62, 127, 0, 0, 0, 0, 0, 129, 127, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 173, 166, 201, 190, 0, 0, 64, 191, 127, 0, 0, 0, 0, 240, 131, 127, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 172, 84, 14, 191, 37, 163, 54, 191, 127, 0, 0, 0, 0, 123, 229, 127, 148, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 206, 250, 25, 191, 194, 239, 53, 191, 127, 0, 0, 0, 0, 123, 229, 127, 145, 56, 93, 55, 0, 0, 0, 60, 0, 0, 128, 63, 58, 226, 45, 191, 16, 43, 50, 191, 127, 0, 0, 0, 0, 130, 245, 127, 128, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 93, 156, 113, 191, 138, 121, 56, 191, 127, 0, 0, 0, 0, 130, 245, 127, 192, 56, 128, 55, 0, 0, 0, 60, 255, 255, 127, 63, 155, 172, 41, 191, 18, 254, 52, 191, 127, 0, 0, 0, 0, 130, 245, 127, 144, 56, 108, 55, 0, 0, 0, 60, 0, 0, 128, 63, 173, 166, 201, 190, 0, 0, 64, 191, 127, 0, 0, 0, 0, 130, 245, 127, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 189, 146, 41, 191, 251, 251, 50, 191, 127, 0, 0, 0, 0, 130, 245, 127, 131, 56, 120, 55, 0, 0, 0, 60, 0, 0, 128, 63, 206, 250, 25, 191, 194, 239, 53, 191, 127, 0, 0, 0, 0, 130, 245, 127, 145, 56, 93, 55, 0, 0, 0, 60, 0, 0, 128, 63, 58, 226, 45, 191, 16, 43, 50, 191, 127, 0, 0, 0, 0, 14, 130, 127, 128, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 205, 105, 40, 191, 127, 0, 0, 0, 0, 171, 162, 127, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 93, 156, 113, 191, 138, 121, 56, 191, 127, 0, 0, 0, 0, 152, 184, 127, 192, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 0, 0, 64, 191, 127, 0, 0, 0, 0, 0, 129, 127, 192, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 80, 198, 112, 191, 0, 0, 128, 191, 126, 0, 0, 0, 0, 0, 130, 127, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 93, 156, 113, 191, 138, 121, 56, 191, 126, 0, 0, 0, 0, 1, 130, 127, 192, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 0, 0, 64, 191, 126, 0, 0, 0, 0, 1, 130, 127, 192, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 0, 0, 128, 191, 126, 0, 0, 0, 0, 0, 129, 127, 0, 57, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 63, 217, 210, 190, 140, 247, 188, 190, 127, 0, 0, 0, 0, 133, 229, 127, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 180, 80, 108, 191, 3, 226, 163, 190, 127, 0, 0, 0, 0, 133, 229, 127, 0, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 100, 143, 37, 191, 77, 116, 198, 190, 127, 0, 0, 0, 0, 133, 229, 127, 37, 56, 26, 55, 0, 0, 0, 60, 0, 0, 128, 63, 160, 229, 37, 191, 243, 215, 211, 190, 127, 0, 0, 0, 0, 133, 229, 127, 60, 56, 6, 55, 0, 0, 0, 60, 0, 0, 128, 63, 247, 4, 8, 191, 200, 175, 202, 190, 127, 0, 0, 0, 0, 133, 229, 127, 34, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 215, 72, 196, 190, 127, 0, 0, 0, 0, 65, 148, 127, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 58, 226, 45, 191, 99, 132, 232, 190, 127, 0, 0, 0, 0, 65, 148, 127, 64, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 82, 68, 245, 61, 61, 8, 57, 191, 127, 0, 0, 0, 0, 116, 206, 127, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 40, 181, 116, 61, 61, 82, 50, 191, 127, 0, 0, 0, 0, 116, 206, 127, 150, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 10, 246, 176, 60, 28, 71, 51, 191, 127, 0, 0, 0, 0, 116, 206, 127, 156, 56, 71, 54, 0, 0, 0, 60, 0, 0, 128, 63, 34, 14, 31, 190, 0, 183, 55, 191, 127, 0, 0, 0, 0, 137, 214, 127, 153, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 113, 252, 156, 190, 1, 147, 69, 191, 127, 0, 0, 0, 0, 137, 214, 127, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 82, 68, 245, 61, 61, 8, 57, 191, 127, 0, 0, 0, 0, 137, 214, 127, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 63, 10, 246, 176, 60, 28, 71, 51, 191, 127, 0, 0, 0, 0, 137, 214, 127, 156, 56, 71, 54, 0, 0, 0, 60, 0, 0, 128, 63, 181, 255, 148, 190, 181, 183, 58, 191, 127, 0, 0, 0, 0, 137, 214, 127, 172, 56, 216, 54, 0, 0, 0, 60, 0, 0, 128, 63, 173, 166, 201, 190, 0, 0, 64, 191, 127, 0, 0, 0, 0, 137, 214, 127, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 113, 252, 156, 190, 1, 147, 69, 191, 127, 0, 0, 0, 0, 137, 214, 127, 192, 56, 128, 54, 0, 0, 0, 60, 2, 0, 128, 63, 108, 240, 143, 190, 170, 222, 58, 191, 127, 0, 0, 0, 0, 137, 214, 127, 171, 56, 206, 54, 0, 0, 0, 60, 0, 0, 128, 63, 34, 14, 31, 190, 0, 183, 55, 191, 127, 0, 0, 0, 0, 137, 214, 127, 153, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 173, 166, 201, 190, 0, 0, 64, 191, 126, 0, 0, 0, 0, 123, 229, 127, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 181, 255, 148, 190, 181, 183, 58, 191, 126, 0, 0, 0, 0, 123, 229, 127, 172, 56, 216, 54, 0, 0, 0, 60, 0, 0, 128, 63, 172, 84, 14, 191, 37, 163, 54, 191, 126, 0, 0, 0, 0, 123, 229, 127, 148, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 113, 252, 156, 190, 1, 147, 69, 191, 127, 0, 0, 0, 0, 241, 130, 127, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 152, 179, 216, 190, 151, 79, 121, 191, 127, 0, 0, 0, 0, 242, 130, 127, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 40, 177, 168, 190, 204, 167, 124, 191, 127, 0, 0, 0, 0, 243, 130, 127, 0, 57, 128, 54, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 176, 73, 170, 189, 127, 0, 0, 0, 0, 231, 132, 127, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 254, 160, 68, 190, 127, 0, 0, 0, 0, 254, 130, 127, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 22, 223, 112, 63, 10, 102, 164, 189, 127, 0, 0, 0, 0, 139, 208, 127, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 48, 198, 252, 62, 181, 217, 190, 189, 127, 0, 0, 0, 0, 139, 208, 127, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 197, 91, 17, 63, 166, 181, 9, 190, 127, 0, 0, 0, 0, 139, 208, 127, 53, 55, 202, 52, 0, 0, 0, 60, 253, 255, 127, 63, 169, 21, 39, 63, 178, 167, 42, 190, 127, 0, 0, 0, 0, 139, 208, 127, 96, 55, 152, 52, 0, 0, 0, 60, 0, 0, 128, 63, 169, 104, 38, 63, 170, 160, 56, 190, 127, 0, 0, 0, 0, 139, 208, 127, 112, 55, 143, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 254, 160, 68, 190, 127, 0, 0, 0, 0, 139, 208, 127, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 169, 104, 38, 63, 170, 160, 56, 190, 127, 0, 0, 0, 0, 108, 191, 127, 112, 55, 143, 52, 0, 0, 0, 60, 0, 0, 128, 63, 19, 78, 38, 63, 96, 198, 58, 190, 127, 0, 0, 0, 0, 68, 149, 127, 128, 55, 178, 52, 0, 0, 0, 60, 0, 0, 128, 63, 103, 42, 33, 63, 186, 132, 146, 190, 127, 0, 0, 0, 0, 248, 130, 127, 207, 55, 207, 52, 0, 0, 0, 60, 0, 0, 128, 63, 103, 42, 33, 63, 186, 132, 146, 190, 126, 0, 0, 0, 0, 237, 131, 127, 207, 55, 207, 52, 0, 0, 0, 60, 0, 0, 128, 63, 154, 24, 30, 63, 98, 64, 178, 190, 126, 0, 0, 0, 0, 237, 131, 127, 0, 56, 215, 52, 0, 0, 0, 60, 0, 0, 128, 63, 93, 62, 37, 63, 62, 243, 183, 190, 126, 0, 0, 0, 0, 237, 131, 127, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 254, 160, 68, 190, 126, 0, 0, 0, 0, 237, 131, 127, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 63, 96, 31, 59, 191, 127, 0, 0, 0, 0, 156, 179, 127, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 169, 106, 47, 191, 127, 0, 0, 0, 0, 154, 182, 127, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 25, 203, 43, 63, 169, 106, 47, 191, 127, 0, 0, 0, 0, 154, 182, 127, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 154, 148, 46, 191, 127, 0, 0, 0, 0, 70, 151, 127, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 8, 76, 22, 63, 0, 0, 128, 191, 127, 0, 0, 0, 0, 2, 130, 127, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 51, 119, 45, 63, 125, 163, 119, 191, 127, 0, 0, 0, 0, 2, 130, 127, 0, 57, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 0, 0, 128, 191, 255, 0, 130, 0, 123, 227, 255, 129, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 51, 119, 45, 63, 125, 163, 119, 191, 255, 0, 130, 0, 127, 0, 0, 127, 0, 57, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 0, 0, 128, 191, 255, 0, 130, 0, 126, 244, 255, 129, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 154, 158, 151, 61, 178, 251, 122, 191, 255, 0, 130, 0, 127, 0, 0, 127, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 27, 78, 53, 62, 138, 121, 120, 191, 255, 0, 130, 0, 127, 0, 0, 127, 0, 57, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 80, 198, 112, 191, 0, 0, 128, 191, 255, 0, 130, 0, 125, 15, 255, 129, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 152, 179, 216, 190, 151, 79, 121, 191, 255, 0, 130, 0, 127, 0, 0, 127, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 40, 177, 168, 190, 204, 167, 124, 191, 255, 0, 130, 0, 127, 0, 0, 127, 0, 57, 128, 54, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 255, 0, 130, 0, 125, 15, 255, 129, 0, 59, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 0, 0, 128, 191, 255, 0, 130, 0, 126, 0, 255, 129, 0, 57, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 255, 0, 130, 0, 126, 0, 255, 129, 0, 59, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 28, 110, 14, 62, 0, 127, 0, 0, 0, 0, 129, 129, 128, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 109, 203, 99, 62, 0, 127, 0, 0, 0, 0, 129, 129, 0, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 240, 178, 53, 189, 0, 127, 0, 0, 0, 0, 129, 129, 0, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 176, 73, 170, 189, 0, 127, 0, 0, 0, 0, 129, 129, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 83, 230, 168, 190, 0, 127, 0, 0, 0, 0, 129, 129, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 32, 195, 222, 190, 0, 127, 0, 0, 0, 0, 129, 129, 64, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 170, 191, 32, 191, 0, 127, 0, 0, 0, 0, 129, 129, 128, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 96, 31, 59, 191, 0, 126, 0, 0, 0, 0, 129, 129, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 170, 191, 32, 191, 0, 126, 0, 0, 0, 0, 129, 129, 128, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 0, 0, 0, 0, 129, 129, 0, 57, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 96, 31, 59, 191, 0, 127, 0, 0, 0, 0, 129, 129, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 64, 191, 109, 203, 99, 62, 0, 0, 127, 0, 130, 0, 0, 129, 0, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 54, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 48, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 64, 191, 109, 203, 99, 62, 0, 0, 126, 0, 129, 0, 0, 129, 0, 54, 128, 55, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 109, 203, 99, 62, 0, 0, 126, 0, 130, 0, 0, 129, 0, 48, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 34, 121, 43, 191, 109, 203, 99, 62, 0, 0, 126, 0, 129, 0, 0, 129, 0, 48, 86, 55, 0, 0, 0, 60, 56, 69, 116, 191, 34, 121, 43, 191, 109, 203, 99, 62, 0, 0, 126, 0, 129, 0, 0, 129, 209, 53, 86, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 0, 63, 109, 203, 99, 62, 0, 0, 126, 0, 129, 0, 0, 129, 0, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 0, 60, 239, 62, 109, 203, 99, 62, 0, 0, 126, 0, 129, 0, 0, 129, 0, 54, 16, 53, 0, 0, 0, 60, 0, 216, 53, 191, 0, 60, 239, 62, 110, 203, 99, 62, 0, 0, 126, 0, 130, 0, 0, 129, 215, 52, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 126, 0, 130, 0, 0, 129, 0, 48, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 64, 63, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 0, 63, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 54, 0, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 48, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 109, 203, 99, 62, 0, 129, 0, 0, 0, 0, 129, 129, 0, 54, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 0, 130, 0, 0, 0, 0, 129, 129, 0, 57, 0, 58, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 109, 203, 99, 62, 0, 130, 0, 0, 0, 0, 129, 129, 0, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 111, 118, 43, 62, 0, 130, 0, 0, 0, 0, 129, 129, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 0, 130, 0, 0, 0, 0, 129, 129, 0, 57, 0, 58, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 111, 118, 43, 62, 0, 130, 0, 0, 0, 0, 129, 129, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 240, 178, 53, 189, 0, 130, 0, 0, 0, 0, 129, 129, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 240, 178, 53, 189, 0, 129, 0, 0, 0, 0, 129, 129, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 176, 73, 170, 189, 0, 129, 0, 0, 0, 0, 129, 129, 128, 55, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 0, 130, 0, 0, 0, 0, 129, 129, 0, 57, 0, 58, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 176, 73, 170, 189, 0, 130, 0, 0, 0, 0, 129, 129, 128, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 227, 124, 145, 190, 0, 130, 0, 0, 0, 0, 129, 129, 0, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 227, 124, 145, 190, 0, 129, 0, 0, 0, 0, 129, 129, 0, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 215, 72, 196, 190, 0, 129, 0, 0, 0, 0, 129, 129, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 0, 129, 0, 0, 0, 0, 129, 129, 0, 57, 0, 58, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 215, 72, 196, 190, 0, 129, 0, 0, 0, 0, 129, 129, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 205, 105, 40, 191, 0, 129, 0, 0, 0, 0, 130, 129, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 205, 105, 40, 191, 0, 129, 0, 0, 0, 0, 130, 129, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 0, 0, 64, 191, 0, 129, 0, 0, 0, 0, 129, 129, 192, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 0, 0, 128, 191, 0, 129, 0, 0, 0, 0, 129, 129, 0, 57, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 58, 226, 45, 191, 99, 132, 232, 190, 129, 0, 0, 0, 0, 65, 148, 129, 64, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 148, 29, 38, 191, 6, 136, 220, 190, 129, 0, 0, 0, 0, 90, 168, 129, 64, 56, 43, 55, 0, 0, 0, 60, 0, 0, 128, 191, 143, 251, 39, 191, 144, 95, 19, 191, 129, 0, 0, 0, 0, 0, 129, 129, 96, 56, 63, 55, 0, 0, 0, 60, 0, 0, 128, 191, 58, 136, 41, 191, 16, 43, 50, 191, 129, 0, 0, 0, 0, 174, 160, 129, 128, 56, 80, 55, 0, 0, 0, 60, 0, 0, 128, 191, 58, 226, 45, 191, 16, 43, 50, 191, 129, 0, 0, 0, 0, 147, 193, 129, 128, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 193, 57, 42, 191, 57, 168, 216, 189, 130, 0, 0, 0, 0, 13, 130, 129, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 74, 74, 50, 191, 178, 93, 56, 62, 130, 0, 0, 0, 0, 13, 130, 129, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 73, 228, 39, 191, 57, 88, 28, 62, 130, 0, 0, 0, 0, 13, 130, 129, 128, 54, 4, 55, 0, 0, 0, 60, 0, 0, 128, 191, 93, 146, 39, 191, 209, 245, 21, 62, 130, 0, 0, 0, 0, 13, 130, 129, 130, 54, 2, 55, 0, 0, 0, 60, 0, 0, 128, 191, 193, 57, 42, 191, 57, 168, 216, 189, 129, 0, 0, 0, 0, 36, 135, 129, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 93, 146, 39, 191, 209, 245, 21, 62, 129, 0, 0, 0, 0, 36, 135, 129, 130, 54, 2, 55, 0, 0, 0, 60, 0, 0, 128, 191, 93, 33, 26, 191, 154, 100, 236, 189, 129, 0, 0, 0, 0, 36, 135, 129, 0, 55, 40, 55, 0, 0, 0, 60, 0, 0, 128, 191, 22, 223, 112, 63, 10, 102, 164, 189, 129, 0, 0, 0, 0, 139, 208, 129, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 18, 62, 119, 63, 88, 19, 45, 62, 129, 0, 0, 0, 0, 68, 150, 129, 128, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 28, 110, 14, 62, 129, 0, 0, 0, 0, 248, 130, 129, 128, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 240, 178, 53, 189, 129, 0, 0, 0, 0, 0, 129, 129, 0, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 176, 120, 113, 63, 170, 191, 32, 191, 129, 0, 0, 0, 0, 87, 164, 129, 128, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 254, 124, 118, 63, 212, 34, 185, 190, 129, 0, 0, 0, 0, 92, 169, 129, 64, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 32, 195, 222, 190, 129, 0, 0, 0, 0, 249, 130, 129, 64, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 170, 191, 32, 191, 129, 0, 0, 0, 0, 0, 129, 129, 128, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 85, 95, 73, 62, 55, 157, 56, 191, 129, 0, 0, 0, 0, 146, 193, 129, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 168, 182, 141, 62, 211, 224, 44, 191, 129, 0, 0, 0, 0, 146, 193, 129, 167, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 94, 172, 157, 62, 179, 24, 44, 191, 129, 0, 0, 0, 0, 146, 193, 129, 165, 56, 74, 53, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 154, 148, 46, 191, 129, 0, 0, 0, 0, 106, 188, 129, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 85, 95, 73, 62, 55, 157, 56, 191, 129, 0, 0, 0, 0, 106, 188, 129, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 94, 172, 157, 62, 179, 24, 44, 191, 129, 0, 0, 0, 0, 106, 188, 129, 165, 56, 74, 53, 0, 0, 0, 60, 253, 255, 127, 191, 253, 8, 216, 62, 228, 60, 41, 191, 129, 0, 0, 0, 0, 106, 188, 129, 165, 56, 37, 53, 0, 0, 0, 60, 0, 0, 128, 191, 105, 205, 217, 62, 129, 227, 30, 191, 129, 0, 0, 0, 0, 106, 188, 129, 137, 56, 18, 53, 0, 0, 0, 60, 0, 0, 128, 191, 57, 226, 237, 62, 74, 122, 26, 191, 129, 0, 0, 0, 0, 106, 188, 129, 128, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 82, 68, 245, 61, 61, 8, 57, 191, 129, 0, 0, 0, 0, 116, 206, 129, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 26, 181, 116, 61, 60, 82, 50, 191, 129, 0, 0, 0, 0, 116, 206, 129, 150, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 2, 182, 164, 61, 116, 205, 49, 191, 129, 0, 0, 0, 0, 116, 206, 129, 148, 56, 215, 53, 0, 0, 0, 60, 0, 0, 128, 191, 85, 95, 73, 62, 55, 157, 56, 191, 129, 0, 0, 0, 0, 116, 206, 129, 192, 56, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 82, 68, 245, 61, 61, 8, 57, 191, 129, 0, 0, 0, 0, 244, 130, 129, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 27, 78, 53, 62, 138, 121, 120, 191, 129, 0, 0, 0, 0, 236, 131, 129, 0, 57, 128, 53, 0, 0, 0, 60, 0, 0, 128, 191, 154, 158, 151, 61, 178, 251, 122, 191, 129, 0, 0, 0, 0, 234, 131, 129, 0, 57, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 93, 62, 37, 63, 62, 243, 183, 190, 129, 0, 0, 0, 0, 125, 236, 129, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 83, 230, 168, 190, 129, 0, 0, 0, 0, 74, 153, 129, 0, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 188, 62, 246, 62, 209, 43, 212, 190, 129, 0, 0, 0, 0, 4, 130, 129, 64, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 210, 160, 18, 63, 11, 253, 184, 190, 129, 0, 0, 0, 0, 147, 193, 129, 16, 56, 255, 52, 0, 0, 0, 60, 0, 0, 128, 191, 139, 249, 29, 63, 122, 129, 179, 190, 129, 0, 0, 0, 0, 147, 193, 129, 1, 56, 208, 52, 0, 0, 0, 60, 0, 0, 128, 191, 154, 24, 30, 63, 98, 64, 178, 190, 129, 0, 0, 0, 0, 147, 193, 129, 0, 56, 215, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 64, 63, 109, 203, 99, 62, 129, 0, 0, 0, 0, 119, 213, 129, 0, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 109, 203, 99, 62, 129, 0, 0, 0, 0, 97, 175, 129, 0, 54, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 0, 63, 28, 110, 14, 62, 129, 0, 0, 0, 0, 254, 130, 129, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 0, 63, 109, 203, 99, 62, 129, 0, 0, 0, 0, 45, 138, 129, 0, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 64, 63, 109, 203, 99, 62, 129, 0, 0, 0, 0, 119, 213, 129, 0, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 18, 62, 119, 63, 88, 19, 45, 62, 129, 0, 0, 0, 0, 68, 150, 129, 128, 54, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 72, 137, 200, 190, 124, 215, 65, 190, 130, 0, 0, 0, 0, 130, 1, 129, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 132, 30, 116, 191, 189, 78, 209, 189, 130, 0, 0, 0, 0, 130, 1, 129, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 193, 57, 42, 191, 57, 168, 216, 189, 130, 0, 0, 0, 0, 130, 1, 129, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 72, 137, 200, 190, 124, 215, 65, 190, 129, 0, 0, 0, 0, 118, 211, 129, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 193, 57, 42, 191, 57, 168, 216, 189, 129, 0, 0, 0, 0, 118, 211, 129, 0, 55, 128, 55, 0, 0, 0, 60, 232, 255, 127, 191, 148, 168, 25, 191, 240, 55, 255, 189, 129, 0, 0, 0, 0, 118, 211, 129, 27, 55, 91, 55, 0, 0, 0, 60, 0, 0, 128, 191, 93, 33, 26, 191, 154, 100, 236, 189, 129, 0, 0, 0, 0, 118, 211, 129, 0, 55, 40, 55, 0, 0, 0, 60, 0, 0, 128, 191, 205, 138, 5, 191, 31, 204, 14, 190, 129, 0, 0, 0, 0, 118, 211, 129, 35, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 176, 73, 170, 189, 129, 0, 0, 0, 0, 242, 130, 129, 128, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 240, 178, 53, 189, 129, 0, 0, 0, 0, 0, 129, 129, 0, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 193, 57, 42, 191, 57, 168, 216, 189, 129, 0, 0, 0, 0, 201, 142, 129, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 132, 30, 116, 191, 189, 78, 209, 189, 129, 0, 0, 0, 0, 155, 180, 129, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 227, 124, 145, 190, 129, 0, 0, 0, 0, 9, 130, 129, 0, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 176, 73, 170, 189, 129, 0, 0, 0, 0, 242, 130, 129, 128, 55, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 132, 30, 116, 191, 189, 78, 209, 189, 129, 0, 0, 0, 0, 155, 180, 129, 128, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 180, 80, 108, 191, 3, 226, 163, 190, 129, 0, 0, 0, 0, 68, 149, 129, 0, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 74, 74, 50, 191, 178, 93, 56, 62, 129, 0, 0, 0, 0, 75, 154, 129, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 64, 191, 109, 203, 99, 62, 129, 0, 0, 0, 0, 99, 178, 129, 0, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 34, 121, 43, 191, 110, 203, 99, 62, 129, 0, 0, 0, 0, 99, 178, 129, 0, 54, 86, 55, 0, 0, 0, 60, 0, 0, 128, 191, 99, 171, 41, 191, 126, 207, 63, 62, 129, 0, 0, 0, 0, 243, 130, 129, 106, 54, 106, 55, 0, 0, 0, 60, 0, 0, 128, 191, 73, 228, 39, 191, 57, 88, 28, 62, 129, 0, 0, 0, 0, 141, 204, 129, 128, 54, 4, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 111, 118, 43, 62, 130, 0, 0, 0, 0, 0, 129, 129, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 109, 203, 99, 62, 130, 0, 0, 0, 0, 0, 129, 129, 0, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 64, 191, 109, 203, 99, 62, 130, 0, 0, 0, 0, 0, 130, 129, 0, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 111, 118, 43, 62, 129, 0, 0, 0, 0, 99, 178, 129, 128, 54, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 207, 143, 41, 191, 204, 193, 50, 191, 129, 0, 0, 0, 0, 130, 245, 129, 133, 56, 11, 55, 0, 0, 0, 60, 0, 0, 128, 191, 93, 156, 113, 191, 138, 121, 56, 191, 129, 0, 0, 0, 0, 175, 159, 129, 192, 56, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 173, 166, 201, 190, 0, 0, 64, 191, 129, 0, 0, 0, 0, 123, 229, 129, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 93, 156, 113, 191, 138, 121, 56, 191, 129, 0, 0, 0, 0, 123, 229, 129, 192, 56, 128, 55, 0, 0, 0, 60, 253, 255, 127, 191, 155, 172, 41, 191, 17, 254, 52, 191, 129, 0, 0, 0, 0, 123, 229, 129, 147, 56, 23, 55, 0, 0, 0, 60, 0, 0, 128, 191, 207, 143, 41, 191, 204, 193, 50, 191, 129, 0, 0, 0, 0, 123, 229, 129, 133, 56, 11, 55, 0, 0, 0, 60, 0, 0, 128, 191, 175, 84, 14, 191, 36, 163, 54, 191, 129, 0, 0, 0, 0, 123, 229, 129, 148, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 0, 0, 64, 191, 129, 0, 0, 0, 0, 0, 130, 129, 192, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 205, 105, 40, 191, 129, 0, 0, 0, 0, 171, 162, 129, 128, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 80, 198, 112, 191, 0, 0, 128, 191, 129, 0, 0, 0, 0, 1, 130, 129, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 0, 0, 128, 191, 130, 0, 0, 0, 0, 0, 129, 129, 0, 57, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 0, 0, 64, 191, 130, 0, 0, 0, 0, 0, 129, 129, 192, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 80, 198, 112, 191, 0, 0, 128, 191, 130, 0, 0, 0, 0, 0, 129, 129, 0, 57, 128, 55, 0, 0, 0, 60, 0, 0, 128, 191, 160, 229, 37, 191, 243, 215, 211, 190, 129, 0, 0, 0, 0, 111, 195, 129, 60, 56, 6, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 191, 215, 72, 196, 190, 129, 0, 0, 0, 0, 65, 148, 129, 64, 56, 0, 56, 0, 0, 0, 60, 0, 0, 128, 191, 198, 240, 153, 189, 92, 180, 53, 191, 129, 0, 0, 0, 0, 137, 214, 129, 147, 56, 39, 54, 0, 0, 0, 60, 0, 0, 128, 191, 113, 252, 156, 190, 1, 147, 69, 191, 129, 0, 0, 0, 0, 137, 214, 129, 192, 56, 128, 54, 0, 0, 0, 60, 240, 255, 127, 191, 145, 44, 159, 189, 197, 196, 53, 191, 129, 0, 0, 0, 0, 137, 214, 129, 147, 56, 42, 54, 0, 0, 0, 60, 0, 0, 128, 191, 26, 14, 31, 190, 0, 183, 55, 191, 129, 0, 0, 0, 0, 137, 214, 129, 153, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 82, 68, 245, 61, 61, 8, 57, 191, 129, 0, 0, 0, 0, 116, 206, 129, 192, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 113, 252, 156, 190, 1, 147, 69, 191, 129, 0, 0, 0, 0, 116, 206, 129, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 198, 240, 153, 189, 92, 180, 53, 191, 129, 0, 0, 0, 0, 116, 206, 129, 147, 56, 39, 54, 0, 0, 0, 60, 0, 0, 128, 191, 26, 181, 116, 61, 60, 82, 50, 191, 129, 0, 0, 0, 0, 116, 206, 129, 150, 56, 0, 54, 0, 0, 0, 60, 0, 0, 128, 191, 113, 252, 156, 190, 1, 147, 69, 191, 129, 0, 0, 0, 0, 137, 214, 129, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 173, 166, 201, 190, 0, 0, 64, 191, 129, 0, 0, 0, 0, 137, 214, 129, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 178, 255, 148, 190, 181, 183, 58, 191, 129, 0, 0, 0, 0, 137, 214, 129, 172, 56, 216, 54, 0, 0, 0, 60, 0, 0, 128, 191, 27, 14, 31, 190, 255, 182, 55, 191, 129, 0, 0, 0, 0, 137, 214, 129, 153, 56, 128, 54, 0, 0, 0, 60, 248, 255, 127, 191, 108, 240, 143, 190, 170, 222, 58, 191, 129, 0, 0, 0, 0, 137, 214, 129, 171, 56, 206, 54, 0, 0, 0, 60, 0, 0, 128, 191, 152, 179, 216, 190, 151, 79, 121, 191, 129, 0, 0, 0, 0, 242, 130, 129, 0, 57, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 173, 166, 201, 190, 0, 0, 64, 191, 129, 0, 0, 0, 0, 123, 229, 129, 192, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 113, 252, 156, 190, 1, 147, 69, 191, 129, 0, 0, 0, 0, 241, 130, 129, 192, 56, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 40, 177, 168, 190, 204, 167, 124, 191, 129, 0, 0, 0, 0, 243, 130, 129, 0, 57, 128, 54, 0, 0, 0, 60, 0, 0, 128, 191, 72, 137, 200, 190, 124, 215, 65, 190, 129, 0, 0, 0, 0, 118, 211, 129, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 205, 138, 5, 191, 31, 204, 14, 190, 129, 0, 0, 0, 0, 118, 211, 129, 35, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 150, 252, 4, 191, 128, 55, 15, 190, 129, 0, 0, 0, 0, 116, 207, 129, 28, 55, 227, 54, 0, 0, 0, 60, 0, 0, 128, 191, 52, 208, 180, 190, 164, 45, 79, 190, 129, 0, 0, 0, 0, 31, 134, 129, 119, 55, 136, 54, 0, 0, 0, 60, 0, 0, 128, 191, 175, 218, 180, 190, 137, 149, 79, 190, 129, 0, 0, 0, 0, 118, 211, 129, 128, 55, 165, 54, 0, 0, 0, 60, 0, 0, 128, 191, 243, 54, 188, 190, 49, 71, 140, 190, 129, 0, 0, 0, 0, 242, 130, 129, 180, 55, 180, 54, 0, 0, 0, 60, 0, 0, 128, 191, 63, 217, 210, 190, 140, 247, 188, 190, 129, 0, 0, 0, 0, 133, 229, 129, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 72, 137, 200, 190, 124, 215, 65, 190, 129, 0, 0, 0, 0, 242, 130, 129, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 176, 218, 180, 190, 137, 149, 79, 190, 129, 0, 0, 0, 0, 242, 130, 129, 128, 55, 165, 54, 0, 0, 0, 60, 0, 0, 128, 191, 63, 217, 210, 190, 140, 247, 188, 190, 130, 0, 0, 0, 0, 236, 131, 129, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 243, 54, 188, 190, 49, 71, 140, 190, 130, 0, 0, 0, 0, 236, 131, 129, 180, 55, 180, 54, 0, 0, 0, 60, 0, 0, 128, 191, 114, 140, 198, 190, 31, 129, 191, 190, 130, 0, 0, 0, 0, 236, 131, 129, 0, 56, 191, 54, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 176, 73, 170, 189, 129, 0, 0, 0, 0, 0, 129, 129, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 254, 160, 68, 190, 130, 0, 0, 0, 0, 237, 131, 129, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 22, 223, 112, 63, 10, 102, 164, 189, 130, 0, 0, 0, 0, 139, 208, 129, 0, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 176, 73, 170, 189, 130, 0, 0, 0, 0, 139, 208, 129, 128, 55, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 194, 91, 17, 63, 159, 181, 9, 190, 129, 0, 0, 0, 0, 141, 203, 129, 53, 55, 202, 52, 0, 0, 0, 60, 0, 0, 128, 191, 48, 198, 252, 62, 181, 217, 190, 189, 129, 0, 0, 0, 0, 83, 161, 129, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 169, 21, 39, 63, 177, 167, 42, 190, 129, 0, 0, 0, 0, 139, 208, 129, 96, 55, 152, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 254, 160, 68, 190, 129, 0, 0, 0, 0, 174, 160, 129, 128, 55, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 169, 104, 38, 63, 170, 160, 56, 190, 129, 0, 0, 0, 0, 201, 142, 129, 112, 55, 143, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 169, 106, 47, 191, 130, 0, 0, 0, 0, 132, 230, 129, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 176, 120, 113, 63, 170, 191, 32, 191, 130, 0, 0, 0, 0, 132, 230, 129, 128, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 170, 191, 32, 191, 130, 0, 0, 0, 0, 132, 230, 129, 128, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 169, 106, 47, 191, 129, 0, 0, 0, 0, 157, 178, 129, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 128, 63, 96, 31, 59, 191, 129, 0, 0, 0, 0, 0, 130, 129, 192, 56, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 154, 148, 46, 191, 129, 0, 0, 0, 0, 68, 150, 129, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 57, 226, 237, 62, 74, 122, 26, 191, 129, 0, 0, 0, 0, 246, 130, 129, 128, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 0, 0, 128, 191, 129, 0, 0, 0, 0, 2, 130, 129, 0, 57, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 8, 76, 22, 63, 154, 148, 46, 191, 129, 0, 0, 0, 0, 68, 150, 129, 192, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 25, 203, 43, 63, 169, 106, 47, 191, 129, 0, 0, 0, 0, 157, 178, 129, 192, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 51, 119, 45, 63, 125, 163, 119, 191, 129, 0, 0, 0, 0, 2, 130, 129, 0, 57, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 216, 205, 238, 62, 118, 13, 52, 62, 129, 0, 0, 0, 0, 27, 132, 129, 115, 54, 115, 53, 0, 0, 0, 60, 0, 0, 128, 191, 0, 60, 239, 62, 109, 203, 99, 62, 129, 0, 0, 0, 0, 123, 226, 129, 0, 54, 16, 53, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 0, 63, 109, 203, 99, 62, 129, 0, 0, 0, 0, 45, 138, 129, 0, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 160, 229, 37, 191, 243, 215, 211, 190, 129, 0, 0, 0, 0, 133, 229, 129, 60, 56, 6, 55, 0, 0, 0, 60, 0, 0, 128, 191, 180, 80, 108, 191, 3, 226, 163, 190, 129, 0, 0, 0, 0, 133, 229, 129, 0, 56, 128, 55, 0, 0, 0, 60, 247, 255, 127, 191, 100, 143, 37, 191, 75, 116, 198, 190, 129, 0, 0, 0, 0, 133, 229, 129, 37, 56, 26, 55, 0, 0, 0, 60, 0, 0, 128, 191, 63, 217, 210, 190, 140, 247, 188, 190, 129, 0, 0, 0, 0, 133, 229, 129, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 245, 4, 8, 191, 198, 175, 202, 190, 129, 0, 0, 0, 0, 133, 229, 129, 34, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 4, 162, 237, 62, 230, 109, 72, 61, 129, 0, 0, 0, 0, 234, 132, 129, 185, 54, 57, 53, 0, 0, 0, 60, 0, 0, 128, 191, 63, 186, 238, 62, 43, 143, 43, 62, 129, 0, 0, 0, 0, 250, 130, 129, 128, 54, 115, 53, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 0, 63, 28, 110, 14, 62, 129, 0, 0, 0, 0, 254, 130, 129, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 63, 217, 210, 190, 140, 247, 188, 190, 126, 0, 0, 0, 0, 151, 186, 127, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 247, 4, 8, 191, 200, 175, 202, 190, 126, 0, 0, 0, 0, 133, 229, 127, 34, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 66, 250, 253, 190, 255, 250, 203, 190, 126, 0, 0, 0, 0, 133, 229, 127, 31, 56, 190, 54, 0, 0, 0, 60, 0, 0, 128, 63, 70, 111, 199, 190, 131, 229, 195, 190, 126, 0, 0, 0, 0, 133, 229, 127, 5, 56, 139, 54, 0, 0, 0, 60, 0, 0, 128, 63, 115, 140, 198, 190, 32, 129, 191, 190, 126, 0, 0, 0, 0, 169, 164, 127, 0, 56, 191, 54, 0, 0, 0, 60, 0, 0, 128, 63, 35, 121, 43, 191, 110, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 54, 86, 55, 0, 0, 0, 60, 58, 69, 116, 63, 38, 121, 43, 191, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 209, 53, 86, 55, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 64, 191, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 200, 229, 39, 191, 24, 118, 28, 62, 127, 0, 0, 0, 0, 71, 151, 127, 126, 54, 1, 55, 0, 0, 0, 60, 0, 0, 128, 63, 35, 121, 43, 191, 110, 203, 99, 62, 127, 0, 0, 0, 0, 141, 204, 127, 0, 54, 86, 55, 0, 0, 0, 60, 0, 0, 128, 191, 48, 198, 252, 62, 181, 217, 190, 189, 130, 0, 0, 0, 0, 253, 130, 129, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 124, 114, 236, 62, 115, 228, 162, 189, 130, 0, 0, 0, 0, 253, 130, 129, 0, 55, 55, 53, 0, 0, 0, 60, 255, 255, 127, 191, 66, 63, 237, 62, 160, 194, 233, 59, 130, 0, 0, 0, 0, 253, 130, 129, 208, 54, 56, 53, 0, 0, 0, 60, 0, 0, 128, 191, 4, 162, 237, 62, 230, 109, 72, 61, 130, 0, 0, 0, 0, 253, 130, 129, 185, 54, 57, 53, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 0, 63, 28, 110, 14, 62, 130, 0, 0, 0, 0, 253, 130, 129, 128, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 18, 78, 38, 63, 96, 198, 58, 190, 129, 0, 0, 0, 0, 68, 149, 129, 128, 55, 178, 52, 0, 0, 0, 60, 0, 0, 128, 191, 25, 82, 13, 63, 45, 150, 3, 190, 129, 0, 0, 0, 0, 108, 191, 129, 60, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 11, 85, 236, 62, 56, 103, 188, 189, 129, 0, 0, 0, 0, 225, 134, 129, 15, 55, 15, 53, 0, 0, 0, 60, 0, 0, 128, 191, 124, 114, 236, 62, 115, 228, 162, 189, 129, 0, 0, 0, 0, 130, 243, 129, 0, 55, 55, 53, 0, 0, 0, 60, 0, 0, 128, 191, 48, 198, 252, 62, 181, 217, 190, 189, 129, 0, 0, 0, 0, 83, 161, 129, 0, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 105, 205, 217, 62, 129, 227, 30, 191, 130, 0, 0, 0, 0, 146, 193, 129, 137, 56, 18, 53, 0, 0, 0, 60, 0, 0, 128, 191, 62, 142, 218, 62, 74, 122, 26, 191, 130, 0, 0, 0, 0, 146, 193, 129, 128, 56, 77, 53, 0, 0, 0, 60, 0, 0, 128, 191, 57, 226, 237, 62, 74, 122, 26, 191, 130, 0, 0, 0, 0, 146, 193, 129, 128, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 149, 252, 4, 191, 130, 55, 15, 190, 127, 0, 0, 0, 0, 118, 211, 127, 28, 55, 227, 54, 0, 0, 0, 60, 0, 0, 128, 63, 204, 138, 5, 191, 34, 204, 14, 190, 127, 0, 0, 0, 0, 118, 211, 127, 35, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 52, 208, 180, 190, 164, 45, 79, 190, 127, 0, 0, 0, 0, 118, 211, 127, 119, 55, 136, 54, 0, 0, 0, 60, 0, 0, 128, 63, 175, 218, 180, 190, 137, 149, 79, 190, 127, 0, 0, 0, 0, 118, 211, 127, 128, 55, 165, 54, 0, 0, 0, 60, 0, 0, 128, 63, 73, 228, 39, 191, 57, 88, 28, 62, 127, 0, 0, 0, 0, 99, 178, 127, 127, 54, 4, 55, 0, 0, 0, 60, 0, 0, 128, 191, 47, 203, 221, 62, 1, 132, 7, 191, 129, 0, 0, 0, 0, 247, 130, 129, 102, 56, 77, 53, 0, 0, 0, 60, 0, 0, 128, 191, 195, 184, 227, 62, 56, 154, 201, 190, 129, 0, 0, 0, 0, 6, 130, 129, 64, 56, 50, 53, 0, 0, 0, 60, 0, 0, 128, 191, 70, 111, 199, 190, 131, 229, 195, 190, 129, 0, 0, 0, 0, 168, 166, 129, 5, 56, 139, 54, 0, 0, 0, 60, 0, 0, 128, 191, 184, 209, 201, 190, 131, 183, 207, 190, 129, 0, 0, 0, 0, 123, 228, 129, 33, 56, 170, 54, 0, 0, 0, 60, 0, 0, 128, 191, 62, 250, 253, 190, 254, 250, 203, 190, 129, 0, 0, 0, 0, 134, 224, 129, 31, 56, 190, 54, 0, 0, 0, 60, 0, 0, 128, 191, 62, 142, 218, 62, 74, 122, 26, 191, 129, 0, 0, 0, 0, 246, 130, 129, 128, 56, 77, 53, 0, 0, 0, 60, 0, 0, 128, 63, 66, 250, 253, 190, 255, 250, 203, 190, 127, 0, 0, 0, 0, 123, 228, 127, 31, 56, 190, 54, 0, 0, 0, 60, 0, 0, 128, 63, 183, 209, 201, 190, 132, 183, 207, 190, 127, 0, 0, 0, 0, 123, 228, 127, 33, 56, 170, 54, 0, 0, 0, 60, 0, 0, 128, 63, 70, 111, 199, 190, 131, 229, 195, 190, 127, 0, 0, 0, 0, 123, 228, 127, 5, 56, 139, 54, 0, 0, 0, 60, 0, 0, 128, 63, 143, 251, 39, 191, 144, 95, 19, 191, 127, 0, 0, 0, 0, 0, 129, 127, 96, 56, 63, 55, 0, 0, 0, 60, 0, 0, 128, 63, 148, 29, 38, 191, 5, 136, 220, 190, 127, 0, 0, 0, 0, 90, 168, 127, 64, 56, 43, 55, 0, 0, 0, 60, 0, 0, 128, 63, 160, 229, 37, 191, 243, 215, 211, 190, 127, 0, 0, 0, 0, 111, 195, 127, 60, 56, 6, 55, 0, 0, 0, 60, 0, 0, 0, 0, 36, 121, 43, 191, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 48, 86, 55, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 191, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 48, 0, 56, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 128, 191, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 54, 0, 56, 0, 0, 0, 60, 146, 188, 85, 63, 36, 121, 43, 191, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 86, 53, 86, 55, 0, 0, 0, 60, 0, 0, 128, 63, 72, 137, 200, 190, 124, 215, 65, 190, 127, 0, 0, 0, 0, 242, 130, 127, 128, 55, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 63, 217, 210, 190, 140, 247, 188, 190, 127, 0, 0, 0, 0, 242, 130, 127, 0, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 63, 242, 54, 188, 190, 48, 71, 140, 190, 127, 0, 0, 0, 0, 242, 130, 127, 180, 55, 180, 54, 0, 0, 0, 60, 0, 0, 128, 63, 175, 218, 180, 190, 136, 149, 79, 190, 127, 0, 0, 0, 0, 242, 130, 127, 128, 55, 165, 54, 0, 0, 0, 60, 1, 98, 8, 191, 254, 59, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 33, 52, 16, 53, 0, 0, 0, 60, 103, 54, 218, 190, 254, 59, 239, 62, 108, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 104, 51, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 48, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 52, 208, 180, 190, 164, 45, 79, 190, 127, 0, 0, 0, 0, 133, 227, 127, 119, 55, 136, 54, 0, 0, 0, 60, 253, 255, 127, 63, 223, 184, 177, 190, 64, 136, 48, 190, 127, 0, 0, 0, 0, 133, 227, 127, 77, 55, 162, 54, 0, 0, 0, 60, 0, 0, 128, 63, 149, 252, 4, 191, 130, 55, 15, 190, 127, 0, 0, 0, 0, 133, 227, 127, 28, 55, 227, 54, 0, 0, 0, 60, 0, 0, 128, 191, 188, 62, 246, 62, 209, 43, 212, 190, 129, 0, 0, 0, 0, 147, 193, 129, 64, 56, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 195, 184, 227, 62, 56, 154, 201, 190, 129, 0, 0, 0, 0, 147, 193, 129, 64, 56, 50, 53, 0, 0, 0, 60, 252, 255, 127, 191, 47, 202, 227, 62, 38, 206, 200, 190, 129, 0, 0, 0, 0, 147, 193, 129, 63, 56, 52, 53, 0, 0, 0, 60, 0, 0, 128, 191, 210, 160, 18, 63, 11, 253, 184, 190, 129, 0, 0, 0, 0, 147, 193, 129, 16, 56, 255, 52, 0, 0, 0, 60, 184, 221, 155, 190, 254, 59, 239, 62, 108, 203, 99, 62, 0, 0, 126, 0, 129, 0, 0, 129, 111, 50, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 60, 239, 62, 109, 203, 99, 62, 0, 0, 126, 0, 130, 0, 0, 129, 0, 48, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 126, 0, 129, 0, 0, 129, 0, 48, 0, 52, 0, 0, 0, 60, 0, 0, 128, 63, 0, 60, 239, 62, 110, 203, 99, 62, 127, 0, 0, 0, 0, 123, 226, 127, 0, 54, 16, 53, 0, 0, 0, 60, 0, 0, 128, 63, 216, 205, 238, 62, 118, 13, 52, 62, 127, 0, 0, 0, 0, 123, 226, 127, 115, 54, 115, 53, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 0, 63, 109, 203, 99, 62, 127, 0, 0, 0, 0, 123, 226, 127, 0, 54, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 175, 84, 14, 191, 36, 163, 54, 191, 129, 0, 0, 0, 0, 123, 229, 129, 148, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 178, 255, 148, 190, 181, 183, 58, 191, 129, 0, 0, 0, 0, 123, 229, 129, 172, 56, 216, 54, 0, 0, 0, 60, 0, 0, 128, 191, 25, 82, 13, 63, 45, 150, 3, 190, 129, 0, 0, 0, 0, 108, 191, 129, 60, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 191, 215, 79, 236, 62, 81, 235, 192, 189, 129, 0, 0, 0, 0, 108, 191, 129, 21, 55, 17, 53, 0, 0, 0, 60, 0, 0, 128, 191, 223, 184, 177, 190, 62, 136, 48, 190, 129, 0, 0, 0, 0, 133, 227, 129, 77, 55, 162, 54, 0, 0, 0, 60, 0, 216, 181, 190, 0, 60, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 215, 50, 16, 53, 0, 0, 0, 60, 184, 221, 155, 190, 254, 59, 239, 62, 108, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 111, 50, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 48, 0, 52, 0, 0, 0, 60, 56, 69, 116, 191, 34, 121, 43, 191, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 209, 53, 86, 55, 0, 0, 0, 60, 0, 0, 128, 191, 34, 121, 43, 191, 110, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 54, 86, 55, 0, 0, 0, 60, 0, 0, 128, 191, 0, 0, 64, 191, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 94, 33, 26, 191, 154, 100, 236, 189, 127, 0, 0, 0, 0, 96, 173, 127, 0, 55, 40, 55, 0, 0, 0, 60, 0, 0, 128, 63, 148, 168, 25, 191, 244, 55, 255, 189, 127, 0, 0, 0, 0, 118, 211, 127, 27, 55, 91, 55, 0, 0, 0, 60, 0, 0, 128, 63, 94, 33, 26, 191, 154, 100, 236, 189, 127, 0, 0, 0, 0, 96, 173, 127, 0, 55, 40, 55, 0, 0, 0, 60, 0, 0, 128, 63, 93, 146, 39, 191, 209, 245, 21, 62, 127, 0, 0, 0, 0, 36, 135, 127, 130, 54, 2, 55, 0, 0, 0, 60, 0, 0, 128, 63, 193, 57, 42, 191, 57, 168, 216, 189, 127, 0, 0, 0, 0, 155, 180, 127, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 242, 54, 188, 190, 48, 71, 140, 190, 126, 0, 0, 0, 0, 236, 131, 127, 180, 55, 180, 54, 0, 0, 0, 60, 0, 0, 128, 191, 93, 62, 37, 63, 62, 243, 183, 190, 130, 0, 0, 0, 0, 237, 131, 129, 0, 56, 128, 52, 0, 0, 0, 60, 0, 0, 128, 191, 154, 24, 30, 63, 98, 64, 178, 190, 130, 0, 0, 0, 0, 237, 131, 129, 0, 56, 215, 52, 0, 0, 0, 60, 0, 0, 128, 191, 102, 42, 33, 63, 186, 132, 146, 190, 130, 0, 0, 0, 0, 237, 131, 129, 207, 55, 207, 52, 0, 0, 0, 60, 0, 0, 128, 63, 73, 228, 39, 191, 57, 88, 28, 62, 126, 0, 0, 0, 0, 13, 130, 127, 127, 54, 4, 55, 0, 0, 0, 60, 0, 0, 128, 63, 74, 74, 50, 191, 178, 93, 56, 62, 126, 0, 0, 0, 0, 13, 130, 127, 128, 54, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 193, 57, 42, 191, 57, 168, 216, 189, 126, 0, 0, 0, 0, 13, 130, 127, 0, 55, 128, 55, 0, 0, 0, 60, 0, 0, 128, 63, 93, 146, 39, 191, 209, 245, 21, 62, 126, 0, 0, 0, 0, 13, 130, 127, 130, 54, 2, 55, 0, 0, 0, 60, 0, 0, 128, 191, 2, 182, 164, 61, 116, 205, 49, 191, 129, 0, 0, 0, 0, 146, 193, 129, 148, 56, 215, 53, 0, 0, 0, 60, 0, 0, 128, 63, 58, 136, 41, 191, 16, 43, 50, 191, 127, 0, 0, 0, 0, 76, 155, 127, 128, 56, 80, 55, 0, 0, 0, 60, 0, 0, 128, 191, 245, 4, 8, 191, 198, 175, 202, 190, 129, 0, 0, 0, 0, 133, 229, 129, 34, 56, 0, 55, 0, 0, 0, 60, 0, 0, 128, 191, 114, 140, 198, 190, 31, 129, 191, 190, 129, 0, 0, 0, 0, 133, 229, 129, 0, 56, 191, 54, 0, 0, 0, 60, 0, 0, 128, 63, 0, 0, 64, 191, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 0, 54, 128, 55, 0, 0, 0, 60, 58, 69, 116, 63, 38, 121, 43, 191, 109, 203, 99, 62, 0, 0, 127, 0, 127, 0, 0, 127, 209, 53, 86, 55, 0, 0, 0, 60, 0, 0, 128, 63, 27, 82, 13, 63, 50, 150, 3, 190, 127, 0, 0, 0, 0, 108, 191, 127, 60, 55, 0, 53, 0, 0, 0, 60, 0, 0, 128, 63, 197, 91, 17, 63, 166, 181, 9, 190, 127, 0, 0, 0, 0, 108, 191, 127, 53, 55, 202, 52, 0, 0, 0, 60, 0, 0, 128, 63, 189, 146, 41, 191, 251, 251, 50, 191, 127, 0, 0, 0, 0, 123, 229, 127, 131, 56, 120, 55, 0, 0, 0, 60, 0, 216, 53, 191, 0, 60, 239, 62, 110, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 215, 52, 16, 53, 0, 0, 0, 60, 1, 98, 8, 191, 254, 59, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 33, 52, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 48, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 102, 42, 33, 63, 186, 132, 146, 190, 129, 0, 0, 0, 0, 248, 130, 129, 207, 55, 207, 52, 0, 0, 0, 60, 103, 54, 218, 190, 254, 59, 239, 62, 108, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 104, 51, 16, 53, 0, 0, 0, 60, 0, 216, 181, 190, 0, 60, 239, 62, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 215, 50, 16, 53, 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, 128, 63, 109, 203, 99, 62, 0, 0, 127, 0, 129, 0, 0, 129, 0, 48, 0, 52, 0, 0, 0, 60, 0, 0, 128, 191, 215, 79, 236, 62, 81, 235, 192, 189, 0, 130, 2, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 214, 79, 236, 62, 85, 235, 192, 189, 0, 130, 2, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 0, 60, 239, 62, 110, 203, 99, 62, 0, 130, 2, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 0, 60, 239, 62, 109, 203, 99, 62, 0, 130, 2, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 253, 255, 127, 63, 169, 21, 39, 63, 178, 167, 42, 190, 0, 211, 138, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 214, 79, 236, 62, 85, 235, 192, 189, 0, 211, 138, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 215, 79, 236, 62, 81, 235, 192, 189, 0, 211, 138, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 169, 21, 39, 63, 177, 167, 42, 190, 0, 211, 138, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 169, 21, 39, 63, 177, 167, 42, 190, 0, 132, 24, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 139, 249, 29, 63, 122, 129, 179, 190, 0, 132, 24, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 139, 249, 29, 63, 123, 129, 179, 190, 0, 132, 24, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 253, 255, 127, 63, 169, 21, 39, 63, 178, 167, 42, 190, 0, 132, 24, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 252, 255, 127, 191, 47, 202, 227, 62, 38, 206, 200, 190, 0, 227, 123, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 46, 202, 227, 62, 39, 206, 200, 190, 0, 227, 123, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 139, 249, 29, 63, 123, 129, 179, 190, 0, 227, 123, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 139, 249, 29, 63, 122, 129, 179, 190, 0, 227, 123, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 252, 255, 127, 191, 47, 202, 227, 62, 38, 206, 200, 190, 0, 130, 10, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 253, 255, 127, 191, 253, 8, 216, 62, 228, 60, 41, 191, 0, 130, 10, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 252, 8, 216, 62, 228, 60, 41, 191, 0, 130, 10, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 46, 202, 227, 62, 39, 206, 200, 190, 0, 130, 10, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 253, 255, 127, 191, 253, 8, 216, 62, 228, 60, 41, 191, 0, 244, 126, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 248, 255, 127, 191, 108, 240, 143, 190, 170, 222, 58, 191, 0, 244, 126, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 2, 0, 128, 63, 108, 240, 143, 190, 170, 222, 58, 191, 0, 244, 126, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 252, 8, 216, 62, 228, 60, 41, 191, 0, 244, 126, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 248, 255, 127, 191, 108, 240, 143, 190, 170, 222, 58, 191, 0, 7, 126, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 253, 255, 127, 191, 155, 172, 41, 191, 17, 254, 52, 191, 0, 7, 126, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 255, 255, 127, 63, 155, 172, 41, 191, 18, 254, 52, 191, 0, 7, 126, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 2, 0, 128, 63, 108, 240, 143, 190, 170, 222, 58, 191, 0, 7, 126, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 100, 143, 37, 191, 77, 116, 198, 190, 0, 126, 250, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 255, 255, 127, 63, 155, 172, 41, 191, 18, 254, 52, 191, 0, 126, 250, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 253, 255, 127, 191, 155, 172, 41, 191, 17, 254, 52, 191, 0, 126, 250, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 247, 255, 127, 191, 100, 143, 37, 191, 75, 116, 198, 190, 0, 126, 250, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 183, 209, 201, 190, 132, 183, 207, 190, 0, 247, 130, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 100, 143, 37, 191, 77, 116, 198, 190, 0, 247, 130, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 247, 255, 127, 191, 100, 143, 37, 191, 75, 116, 198, 190, 0, 247, 130, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 184, 209, 201, 190, 131, 183, 207, 190, 0, 247, 130, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 183, 209, 201, 190, 132, 183, 207, 190, 0, 124, 231, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 184, 209, 201, 190, 131, 183, 207, 190, 0, 124, 231, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 223, 184, 177, 190, 62, 136, 48, 190, 0, 124, 231, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 253, 255, 127, 63, 223, 184, 177, 190, 64, 136, 48, 190, 0, 124, 231, 0, 127, 0, 0, 127, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 223, 184, 177, 190, 62, 136, 48, 190, 0, 23, 124, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 232, 255, 127, 191, 148, 168, 25, 191, 240, 55, 255, 189, 0, 23, 124, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 148, 168, 25, 191, 244, 55, 255, 189, 0, 23, 124, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 253, 255, 127, 63, 223, 184, 177, 190, 64, 136, 48, 190, 0, 23, 124, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 191, 34, 121, 43, 191, 110, 203, 99, 62, 0, 124, 24, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 35, 121, 43, 191, 110, 203, 99, 62, 0, 124, 24, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 0, 0, 128, 63, 148, 168, 25, 191, 244, 55, 255, 189, 0, 124, 24, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60, 232, 255, 127, 191, 148, 168, 25, 191, 240, 55, 255, 189, 0, 124, 24, 0, 127, 0, 0, 129, 0, 0, 0, 60, 0, 0, 0, 60 ), +"array_index_data": PoolByteArray( 0, 0, 2, 0, 1, 0, 2, 0, 4, 0, 3, 0, 5, 0, 7, 0, 6, 0, 2, 0, 5, 0, 4, 0, 2, 0, 7, 0, 5, 0, 8, 0, 2, 0, 0, 0, 8, 0, 7, 0, 2, 0, 8, 0, 9, 0, 7, 0, 8, 0, 10, 0, 9, 0, 11, 0, 13, 0, 12, 0, 14, 0, 16, 0, 15, 0, 17, 0, 19, 0, 18, 0, 11, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 25, 0, 27, 0, 26, 0, 11, 0, 29, 0, 28, 0, 30, 0, 32, 0, 31, 0, 11, 0, 34, 0, 33, 0, 35, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 41, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 47, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 53, 0, 55, 0, 54, 0, 53, 0, 56, 0, 55, 0, 35, 0, 58, 0, 57, 0, 35, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 63, 0, 65, 0, 64, 0, 66, 0, 67, 0, 60, 0, 68, 0, 65, 0, 69, 0, 70, 0, 67, 0, 71, 0, 72, 0, 65, 0, 73, 0, 74, 0, 65, 0, 72, 0, 75, 0, 65, 0, 74, 0, 76, 0, 65, 0, 75, 0, 77, 0, 79, 0, 78, 0, 80, 0, 79, 0, 77, 0, 81, 0, 83, 0, 82, 0, 84, 0, 83, 0, 81, 0, 85, 0, 87, 0, 86, 0, 88, 0, 87, 0, 85, 0, 89, 0, 91, 0, 90, 0, 92, 0, 91, 0, 89, 0, 93, 0, 95, 0, 94, 0, 95, 0, 97, 0, 96, 0, 93, 0, 97, 0, 95, 0, 96, 0, 99, 0, 98, 0, 97, 0, 99, 0, 96, 0, 100, 0, 102, 0, 101, 0, 103, 0, 102, 0, 100, 0, 104, 0, 102, 0, 103, 0, 105, 0, 107, 0, 106, 0, 107, 0, 109, 0, 108, 0, 105, 0, 109, 0, 107, 0, 110, 0, 112, 0, 111, 0, 110, 0, 113, 0, 112, 0, 114, 0, 93, 0, 94, 0, 115, 0, 93, 0, 114, 0, 89, 0, 90, 0, 116, 0, 90, 0, 117, 0, 116, 0, 115, 0, 117, 0, 93, 0, 118, 0, 117, 0, 115, 0, 119, 0, 117, 0, 118, 0, 90, 0, 93, 0, 117, 0, 120, 0, 122, 0, 121, 0, 122, 0, 124, 0, 123, 0, 120, 0, 124, 0, 122, 0, 125, 0, 127, 0, 126, 0, 128, 0, 127, 0, 125, 0, 77, 0, 78, 0, 129, 0, 78, 0, 130, 0, 129, 0, 131, 0, 133, 0, 132, 0, 131, 0, 134, 0, 133, 0, 135, 0, 137, 0, 136, 0, 135, 0, 139, 0, 138, 0, 135, 0, 136, 0, 139, 0, 140, 0, 142, 0, 141, 0, 143, 0, 142, 0, 140, 0, 144, 0, 146, 0, 145, 0, 144, 0, 147, 0, 146, 0, 148, 0, 150, 0, 149, 0, 151, 0, 153, 0, 152, 0, 153, 0, 154, 0, 152, 0, 155, 0, 153, 0, 151, 0, 156, 0, 154, 0, 153, 0, 157, 0, 159, 0, 158, 0, 159, 0, 160, 0, 158, 0, 161, 0, 163, 0, 162, 0, 161, 0, 164, 0, 163, 0, 165, 0, 167, 0, 166, 0, 167, 0, 168, 0, 166, 0, 165, 0, 169, 0, 167, 0, 143, 0, 170, 0, 142, 0, 171, 0, 170, 0, 143, 0, 172, 0, 174, 0, 173, 0, 175, 0, 177, 0, 176, 0, 178, 0, 177, 0, 175, 0, 179, 0, 181, 0, 180, 0, 179, 0, 182, 0, 181, 0, 182, 0, 183, 0, 181, 0, 184, 0, 186, 0, 185, 0, 187, 0, 188, 0, 148, 0, 189, 0, 188, 0, 187, 0, 190, 0, 79, 0, 80, 0, 190, 0, 191, 0, 79, 0, 192, 0, 194, 0, 193, 0, 192, 0, 195, 0, 194, 0, 195, 0, 197, 0, 196, 0, 192, 0, 197, 0, 195, 0, 191, 0, 199, 0, 198, 0, 191, 0, 200, 0, 199, 0, 201, 0, 203, 0, 202, 0, 204, 0, 203, 0, 201, 0, 205, 0, 91, 0, 92, 0, 205, 0, 206, 0, 91, 0, 91, 0, 99, 0, 97, 0, 206, 0, 99, 0, 91, 0, 207, 0, 209, 0, 208, 0, 210, 0, 209, 0, 207, 0, 211, 0, 213, 0, 212, 0, 214, 0, 211, 0, 215, 0, 216, 0, 218, 0, 217, 0, 218, 0, 211, 0, 214, 0, 216, 0, 211, 0, 218, 0, 219, 0, 216, 0, 220, 0, 219, 0, 211, 0, 216, 0, 219, 0, 213, 0, 211, 0, 219, 0, 221, 0, 213, 0, 222, 0, 12, 0, 223, 0, 222, 0, 11, 0, 12, 0, 224, 0, 11, 0, 222, 0, 225, 0, 11, 0, 224, 0, 226, 0, 11, 0, 225, 0, 227, 0, 11, 0, 226, 0, 228, 0, 11, 0, 227, 0, 229, 0, 30, 0, 230, 0, 231, 0, 11, 0, 232, 0, 233, 0, 235, 0, 234, 0, 236, 0, 238, 0, 237, 0, 239, 0, 238, 0, 236, 0, 240, 0, 242, 0, 241, 0, 240, 0, 243, 0, 242, 0, 244, 0, 246, 0, 245, 0, 247, 0, 246, 0, 244, 0, 65, 0, 248, 0, 64, 0, 249, 0, 251, 0, 250, 0, 252, 0, 254, 0, 253, 0, 65, 0, 0, 1, 255, 0, 1, 1, 3, 1, 2, 1, 65, 0, 5, 1, 4, 1, 6, 1, 8, 1, 7, 1, 65, 0, 10, 1, 9, 1, 65, 0, 11, 1, 10, 1, 12, 1, 14, 1, 13, 1, 15, 1, 12, 1, 16, 1, 15, 1, 14, 1, 12, 1, 17, 1, 19, 1, 18, 1, 20, 1, 19, 1, 17, 1, 21, 1, 23, 1, 22, 1, 24, 1, 26, 1, 25, 1, 24, 1, 27, 1, 26, 1, 28, 1, 30, 1, 29, 1, 28, 1, 31, 1, 30, 1, 32, 1, 34, 1, 33, 1, 35, 1, 37, 1, 36, 1, 35, 1, 38, 1, 37, 1, 35, 1, 39, 1, 38, 1, 35, 1, 40, 1, 39, 1, 41, 1, 43, 1, 42, 1, 41, 1, 44, 1, 43, 1, 45, 1, 46, 1, 32, 1, 47, 1, 46, 1, 45, 1, 48, 1, 29, 1, 49, 1, 29, 1, 30, 1, 49, 1, 48, 1, 51, 1, 50, 1, 48, 1, 52, 1, 51, 1, 48, 1, 53, 1, 52, 1, 50, 1, 29, 1, 48, 1, 25, 1, 55, 1, 54, 1, 25, 1, 26, 1, 55, 1, 56, 1, 58, 1, 57, 1, 56, 1, 59, 1, 58, 1, 60, 1, 62, 1, 61, 1, 63, 1, 65, 1, 64, 1, 65, 1, 66, 1, 64, 1, 63, 1, 67, 1, 65, 1, 68, 1, 70, 1, 69, 1, 71, 1, 70, 1, 68, 1, 72, 1, 74, 1, 73, 1, 72, 1, 75, 1, 74, 1, 76, 1, 78, 1, 77, 1, 79, 1, 78, 1, 76, 1, 76, 1, 80, 1, 79, 1, 81, 1, 83, 1, 82, 1, 84, 1, 76, 1, 77, 1, 85, 1, 16, 1, 86, 1, 85, 1, 15, 1, 16, 1, 87, 1, 89, 1, 88, 1, 89, 1, 90, 1, 88, 1, 87, 1, 91, 1, 89, 1, 92, 1, 86, 1, 93, 1, 86, 1, 16, 1, 93, 1, 92, 1, 94, 1, 86, 1, 95, 1, 97, 1, 96, 1, 12, 1, 98, 1, 75, 1, 13, 1, 98, 1, 12, 1, 99, 1, 75, 1, 72, 1, 99, 1, 12, 1, 75, 1, 100, 1, 102, 1, 101, 1, 102, 1, 103, 1, 101, 1, 104, 1, 106, 1, 105, 1, 104, 1, 107, 1, 106, 1, 108, 1, 110, 1, 109, 1, 111, 1, 112, 1, 108, 1, 112, 1, 110, 1, 108, 1, 113, 1, 115, 1, 114, 1, 113, 1, 116, 1, 115, 1, 117, 1, 119, 1, 118, 1, 117, 1, 120, 1, 119, 1, 121, 1, 120, 1, 117, 1, 122, 1, 124, 1, 123, 1, 122, 1, 125, 1, 124, 1, 126, 1, 128, 1, 127, 1, 24, 1, 129, 1, 27, 1, 130, 1, 132, 1, 131, 1, 133, 1, 24, 1, 134, 1, 135, 1, 24, 1, 133, 1, 136, 1, 135, 1, 137, 1, 136, 1, 24, 1, 135, 1, 138, 1, 140, 1, 139, 1, 141, 1, 142, 1, 31, 1, 143, 1, 28, 1, 144, 1, 143, 1, 141, 1, 28, 1, 145, 1, 147, 1, 146, 1, 145, 1, 148, 1, 147, 1, 149, 1, 151, 1, 150, 1, 152, 1, 154, 1, 153, 1, 154, 1, 155, 1, 153, 1, 156, 1, 155, 1, 154, 1, 157, 1, 159, 1, 158, 1, 160, 1, 162, 1, 161, 1, 160, 1, 163, 1, 162, 1, 164, 1, 163, 1, 160, 1, 165, 1, 167, 1, 166, 1, 168, 1, 145, 0, 169, 1, 170, 1, 172, 1, 171, 1, 170, 1, 173, 1, 172, 1, 170, 1, 174, 1, 173, 1, 175, 1, 136, 1, 137, 1, 133, 1, 134, 1, 176, 1, 177, 1, 179, 1, 178, 1, 180, 1, 182, 1, 181, 1, 183, 1, 137, 0, 184, 1, 185, 1, 137, 0, 183, 1, 185, 1, 186, 1, 137, 0, 168, 1, 144, 0, 145, 0, 168, 1, 187, 1, 144, 0, 188, 1, 50, 1, 189, 1, 190, 1, 192, 1, 191, 1, 144, 1, 188, 1, 193, 1, 144, 1, 50, 1, 188, 1, 194, 1, 196, 1, 195, 1, 197, 1, 171, 0, 198, 1, 199, 1, 171, 0, 143, 0, 199, 1, 198, 1, 171, 0, 200, 1, 202, 1, 201, 1, 200, 1, 203, 1, 202, 1, 204, 1, 206, 1, 205, 1, 207, 1, 206, 1, 204, 1, 208, 1, 210, 1, 209, 1, 211, 1, 213, 1, 212, 1, 214, 1, 216, 1, 215, 1, 214, 1, 217, 1, 216, 1, 218, 1, 220, 1, 219, 1, 221, 1, 223, 1, 222, 1, 224, 1, 114, 1, 225, 1, 226, 1, 177, 1, 227, 1, 226, 1, 179, 1, 177, 1, 119, 1, 120, 1, 228, 1, 229, 1, 231, 1, 230, 1, 232, 1, 234, 1, 233, 1, 235, 1, 236, 1, 135, 0, 236, 1, 137, 0, 135, 0, 184, 1, 137, 0, 236, 1, 237, 1, 239, 1, 238, 1, 164, 1, 160, 1, 240, 1, 241, 1, 243, 1, 242, 1, 241, 1, 130, 1, 243, 1, 244, 1, 246, 1, 245, 1, 244, 1, 247, 1, 246, 1, 248, 1, 32, 1, 33, 1, 197, 1, 157, 0, 171, 0, 197, 1, 249, 1, 157, 0, 192, 1, 123, 1, 250, 1, 190, 1, 123, 1, 192, 1, 190, 1, 251, 1, 123, 1, 203, 1, 252, 1, 202, 1, 203, 1, 253, 1, 252, 1, 254, 1, 87, 0, 255, 1, 0, 2, 157, 0, 249, 1, 159, 1, 149, 1, 158, 1, 159, 1, 151, 1, 149, 1, 1, 2, 3, 2, 2, 2, 4, 2, 136, 1, 175, 1, 5, 2, 7, 2, 6, 2, 8, 2, 10, 2, 9, 2, 11, 2, 10, 2, 8, 2, 12, 2, 14, 2, 13, 2, 12, 2, 15, 2, 14, 2, 16, 2, 18, 2, 17, 2, 16, 2, 19, 2, 18, 2, 20, 2, 22, 2, 21, 2, 23, 2, 22, 2, 20, 2, 24, 2, 26, 2, 25, 2, 24, 2, 27, 2, 26, 2, 28, 2, 30, 2, 29, 2, 28, 2, 31, 2, 30, 2, 32, 2, 34, 2, 33, 2, 32, 2, 35, 2, 34, 2, 36, 2, 38, 2, 37, 2, 36, 2, 39, 2, 38, 2, 40, 2, 42, 2, 41, 2, 40, 2, 43, 2, 42, 2, 44, 2, 46, 2, 45, 2, 47, 2, 46, 2, 44, 2, 48, 2, 50, 2, 49, 2, 48, 2, 51, 2, 50, 2, 52, 2, 54, 2, 53, 2, 55, 2, 54, 2, 52, 2 ), +"blend_shape_data": [ ], +"format": 97591, +"index_count": 993, +"material": ExtResource( 2 ), +"primitive": 4, +"skeleton_aabb": [ ], +"vertex_count": 568 +} + +[node name="WallGate" type="Spatial"] + +[node name="Cube001" type="MeshInstance" parent="."] +transform = Transform( 1, 0, 0, 0, -5.96047e-07, -5, 0, 5, -5.96047e-07, 0, 1.10608, 0 ) +mesh = SubResource( 1 ) +material/0 = ExtResource( 3 ) +material/1 = ExtResource( 4 ) diff --git a/WikiJam/Models/WallGate.glb b/WikiJam/Models/WallGate.glb new file mode 100644 index 0000000..45575fb Binary files /dev/null and b/WikiJam/Models/WallGate.glb differ diff --git a/WikiJam/Models/WallGate.glb.import b/WikiJam/Models/WallGate.glb.import new file mode 100644 index 0000000..2328cad --- /dev/null +++ b/WikiJam/Models/WallGate.glb.import @@ -0,0 +1,1062 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/WallGate.glb-150aaa8443d8b73eb0d27996a9ebca63.scn" + +[deps] + +source_file="res://Models/WallGate.glb" +dest_files=[ "res://.import/WallGate.glb-150aaa8443d8b73eb0d27996a9ebca63.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