diff --git a/ai/tasks/find_path.gd b/ai/tasks/find_path.gd new file mode 100644 index 0000000..ba396d1 --- /dev/null +++ b/ai/tasks/find_path.gd @@ -0,0 +1,29 @@ +@tool +extends BTAction + +@export var path_name: String = "" +@export var navigation_path_var: StringName = &"navigation_path" + +var _path:Path3D = null + +func _generate_name() -> String: + return "FindPath(\"%s\") ➜ %s" % [ + LimboUtility.decorate_var(path_name), LimboUtility.decorate_var(navigation_path_var) + ] + +func _tick(_delta: float) -> Status: + var _blackboard:Blackboard = blackboard + + if not path_name.is_empty(): + _path = agent.get_tree().root.find_child(path_name, true, false) as Path3D + + if not is_instance_valid(_path): + _path = blackboard.get_var("patrol_path") as Path3D + + if not is_instance_valid(_path): + push_error("Could not find path with name %s!" % path_name) + return FAILURE + + blackboard.set_var(navigation_path_var, _path) + + return SUCCESS diff --git a/ai/tasks/find_path_waypoints.gd b/ai/tasks/find_path_waypoints.gd new file mode 100644 index 0000000..8fc35cb --- /dev/null +++ b/ai/tasks/find_path_waypoints.gd @@ -0,0 +1,55 @@ +@tool +extends BTAction + +@export var navigation_path_var: StringName = &"navigation_path" +var path_waypoints:StringName = &"path_waypoint_locations" + +var _agent_npc:NonPlayerCharacter = null + +func _generate_name() -> String: + return "FindPathWayPoints(\"%s\") ➜ %s" % [ + LimboUtility.decorate_var(navigation_path_var), LimboUtility.decorate_var(path_waypoints) + ] + +func _calc_path_length (navigation_path: PackedVector3Array) -> float: + var result: float = 0 + for i in range(1, navigation_path.size()): + result = result + (navigation_path[i] - navigation_path[i - 1]).length() + + return result + +func _tick(_delta: float) -> Status: + var path:Path3D = blackboard.get_var(navigation_path_var) as Path3D + + var shortest_distance:float = INF + var closest_point_index:int = 0 + + _agent_npc = agent as NonPlayerCharacter + + var path_baked_points:PackedVector3Array = path.curve.get_baked_points() + + for i in range(path_baked_points.size()): + var point:Vector3 = path_baked_points[i] + var query_path:PackedVector3Array = _agent_npc.query_navigation_path(point) + if query_path.size() == 0: + continue + + var point_distance = _calc_path_length(query_path) + if point_distance < shortest_distance: + closest_point_index = i + shortest_distance = point_distance + + if shortest_distance == INF: + push_error("Could not find a navigation path to path '%s'!" % path.name) + return FAILURE + + var closest_point_path:PackedVector3Array = PackedVector3Array() + closest_point_path.resize(path_baked_points.size()) + for i in range(path_baked_points.size()): + closest_point_path[i] = path_baked_points[(closest_point_index + i) % path_baked_points.size()] + + #if DebugSystem.debug_npc == _agent_npc: DebugDraw3D.draw_line_path(closest_point_path, Color.ORANGE_RED, 1.0) + + blackboard.set_var(path_waypoints, closest_point_path) + + return SUCCESS diff --git a/ai/trees/follow_path.tres b/ai/trees/follow_path.tres new file mode 100644 index 0000000..11921e7 --- /dev/null +++ b/ai/trees/follow_path.tres @@ -0,0 +1,52 @@ +[gd_resource type="BehaviorTree" load_steps=11 format=3 uid="uid://b6heun7ylvwy4"] + +[ext_resource type="Script" path="res://ai/tasks/find_path.gd" id="1_pfq3b"] +[ext_resource type="Script" path="res://ai/tasks/find_path_waypoints.gd" id="2_x0idg"] +[ext_resource type="Script" path="res://ai/tasks/navigate_to_location.gd" id="3_2kgtd"] + +[sub_resource type="BlackboardPlan" id="BlackboardPlan_wsfim"] +var/patrol_path/name = &"patrol_path" +var/patrol_path/type = 22 +var/patrol_path/value = NodePath("") +var/patrol_path/hint = 0 +var/patrol_path/hint_string = "" +var/path_waypoint_locations/name = &"path_waypoint_locations" +var/path_waypoint_locations/type = 36 +var/path_waypoint_locations/value = PackedVector3Array() +var/path_waypoint_locations/hint = 0 +var/path_waypoint_locations/hint_string = "" +var/target_location/name = &"target_location" +var/target_location/type = 9 +var/target_location/value = Vector3(0, 0, 0) +var/target_location/hint = 0 +var/target_location/hint_string = "" + +[sub_resource type="BTAction" id="BTAction_s1nqu"] +script = ExtResource("1_pfq3b") +path_name = "" +navigation_path_var = &"navigation_path" + +[sub_resource type="BTAction" id="BTAction_mteww"] +script = ExtResource("2_x0idg") +navigation_path_var = &"navigation_path" + +[sub_resource type="BTAction" id="BTAction_lsv7d"] +script = ExtResource("3_2kgtd") +target_var = &"target_location" +distance = 1.0 + +[sub_resource type="BTForEach" id="BTForEach_3401s"] +array_var = &"path_waypoint_locations" +save_var = &"target_location" +children = [SubResource("BTAction_lsv7d")] + +[sub_resource type="BTRepeat" id="BTRepeat_jgq6n"] +forever = true +children = [SubResource("BTForEach_3401s")] + +[sub_resource type="BTSequence" id="BTSequence_trxp5"] +children = [SubResource("BTAction_s1nqu"), SubResource("BTAction_mteww"), SubResource("BTRepeat_jgq6n")] + +[resource] +blackboard_plan = SubResource("BlackboardPlan_wsfim") +root_task = SubResource("BTSequence_trxp5") diff --git a/objects/non_player_character.gd b/objects/non_player_character.gd index 1ae0bb3..28dee34 100644 --- a/objects/non_player_character.gd +++ b/objects/non_player_character.gd @@ -15,13 +15,7 @@ extends CharacterBody3D get: return behaviour -#@export var behaviour_blackboard_plan:BlackboardPlan = null: - #set (value): - #behaviour_blackboard_plan = value - #if is_instance_valid(bt_player): - #bt_player.blackboard_plan = behaviour_blackboard_plan - #get: -# return behaviour_blackboard_plan +@export var behaviour_blackboard_plan:BlackboardPlan = null @onready var geometry: Node3D = null @onready var player_detection: Area3D = %PlayerDetection @@ -55,8 +49,11 @@ func _ready() -> void: default_geometry.visible = false animation_player.set_root("Geometry") - if is_instance_valid(bt_player): + if is_instance_valid(behaviour): bt_player.behavior_tree = behaviour + + if is_instance_valid(behaviour_blackboard_plan): + bt_player.blackboard.set_parent(behaviour_blackboard_plan.create_blackboard(self)) func _physics_process(delta: float) -> void: if navigation_active: @@ -100,17 +97,21 @@ func _on_player_detection_body_exited(body: Node3D) -> void: if body == tracking_node: tracking_node = null -func is_target_navigatable(target_position: Vector3) -> bool: +func query_navigation_path(target_position: Vector3) -> PackedVector3Array: navigation_query_parameters.map = get_world_3d().navigation_map navigation_query_parameters.start_position = global_position navigation_query_parameters.target_position = target_position navigation_query_parameters.navigation_layers = navigation_agent.navigation_layers + navigation_query_parameters.simplify_path = true if NavigationServer3D.map_get_iteration_id(navigation_query_parameters.map) == 0: - return false + return PackedVector3Array() NavigationServer3D.query_path(navigation_query_parameters, navigation_query_result) - var query_path: PackedVector3Array = navigation_query_result.path + return navigation_query_result.path.duplicate() + +func is_target_navigatable(target_position: Vector3) -> bool: + var query_path: PackedVector3Array = query_navigation_path(target_position) if query_path.size() > 0 and (query_path[query_path.size() - 1] - target_position).length() <= navigation_agent.target_desired_distance: return true diff --git a/objects/non_player_character.tscn b/objects/non_player_character.tscn index 5d2ec30..e1ebbb0 100644 --- a/objects/non_player_character.tscn +++ b/objects/non_player_character.tscn @@ -24,13 +24,12 @@ transitions = ["Start", "rogue_animation_library_Idle", SubResource("AnimationNo height = 0.706301 radius = 1.0 -[sub_resource type="BlackboardPlan" id="BlackboardPlan_3jlog"] +[sub_resource type="BlackboardPlan" id="BlackboardPlan_gttte"] [node name="NonPlayerCharacter" type="CharacterBody3D" groups=["non_player_character"]] collision_layer = 64 collision_mask = 33 script = ExtResource("1_c2apr") -behaviour = ExtResource("2_3dryb") [node name="CollisionShape3D" type="CollisionShape3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.4, 0) @@ -65,7 +64,7 @@ shape = SubResource("CylinderShape3D_3da0u") [node name="BTPlayer" type="BTPlayer" parent="."] behavior_tree = ExtResource("2_3dryb") -blackboard_plan = SubResource("BlackboardPlan_3jlog") +blackboard_plan = SubResource("BlackboardPlan_gttte") unique_name_in_owner = true [node name="NavigationAgent" type="NavigationAgent3D" parent="."] @@ -79,4 +78,3 @@ time_horizon_obstacles = 0.3 [connection signal="body_entered" from="PlayerDetection" to="." method="_on_player_detection_body_entered"] [connection signal="body_exited" from="PlayerDetection" to="." method="_on_player_detection_body_exited"] -[connection signal="velocity_computed" from="NavigationAgent" to="." method="_on_navigation_agent_velocity_computed"] diff --git a/root_ui.tscn b/root_ui.tscn index f8f81e1..42ab7e0 100644 --- a/root_ui.tscn +++ b/root_ui.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=40 format=3 uid="uid://c73t0nbuqp68e"] +[gd_scene load_steps=41 format=3 uid="uid://c73t0nbuqp68e"] [ext_resource type="Script" path="res://root_ui.gd" id="1_7fnkg"] [ext_resource type="PackedScene" uid="uid://bo788o53t4rbq" path="res://scenes/startup_scene.tscn" id="2_1untt"] @@ -22,6 +22,7 @@ [ext_resource type="Script" path="res://ui/build_dialog.gd" id="15_x7ovi"] [ext_resource type="Theme" uid="uid://c1m2rpljepv4t" path="res://ui/ui_theme_debug.tres" id="21_nsciq"] [ext_resource type="Script" path="res://ui/debug/build_system.gd" id="22_g4j6a"] +[ext_resource type="Script" path="res://ui/debug/debug_ui.gd" id="22_q3gn4"] [ext_resource type="Script" path="res://ui/debug/behaviour.gd" id="23_mv0pi"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1ume3"] @@ -884,8 +885,10 @@ offset_left = -33.0 offset_bottom = 50.0 grow_horizontal = 0 theme = ExtResource("21_nsciq") +script = ExtResource("22_q3gn4") [node name="ToggleDebugButton" type="Button" parent="DebugUi"] +unique_name_in_owner = true layout_mode = 2 size_flags_horizontal = 8 size_flags_vertical = 0 @@ -1016,22 +1019,22 @@ unique_name_in_owner = true [connection signal="item_selected" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/Recipes/RecipeList" to="GameUI/InventoryDialog" method="_on_recipe_list_item_selected"] [connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/ItemSlot" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/ItemSlot" method="_on_gui_input"] [connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/ItemSlot" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/ItemSlot" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20479" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20479" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20479" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20479" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20480" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20480" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20480" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20480" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20481" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20481" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20481" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20481" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20482" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20482" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20482" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20482" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20483" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20483" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20483" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20483" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20484" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20484" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20484" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20484" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20485" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20485" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20485" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20485" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20486" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20486" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20486" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@20486" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19794" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19794" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19794" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19794" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19795" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19795" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19795" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19795" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19796" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19796" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19796" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19796" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19797" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19797" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19797" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19797" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19798" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19798" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19798" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19798" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19799" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19799" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19799" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19799" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19800" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19800" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19800" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19800" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19801" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19801" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19801" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftIngredients/Panel/CenterContainer/IngredientsContainer/@Panel@19801" method="_on_mouse_entered"] [connection signal="gui_input" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftResult/Panel/CenterContainer/ResultsContainer/ItemSlot" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftResult/Panel/CenterContainer/ResultsContainer/ItemSlot" method="_on_gui_input"] [connection signal="mouse_entered" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftResult/Panel/CenterContainer/ResultsContainer/ItemSlot" to="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftResult/Panel/CenterContainer/ResultsContainer/ItemSlot" method="_on_mouse_entered"] [connection signal="pressed" from="GameUI/InventoryDialog/Panel/PanelContainer/CraftingUI/HBoxContainer/CraftResult/HBoxContainer/CraftButton" to="GameUI/InventoryDialog" method="_on_craft_button_pressed"] @@ -1044,52 +1047,52 @@ unique_name_in_owner = true [connection signal="item_selected" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer" to="GameUI/BuildDialog" method="_on_build_items_container_item_selected"] [connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/ItemSlot" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/ItemSlot" method="_on_gui_input"] [connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/ItemSlot" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/ItemSlot" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20487" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20487" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20487" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20487" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20488" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20488" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20488" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20488" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20489" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20489" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20489" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20489" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20490" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20490" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20490" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20490" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20491" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20491" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20491" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20491" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20492" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20492" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20492" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20492" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20493" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20493" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20493" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20493" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20494" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20494" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20494" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20494" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20495" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20495" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20495" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20495" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20496" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20496" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20496" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20496" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20497" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20497" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20497" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20497" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20498" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20498" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20498" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20498" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20499" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20499" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20499" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20499" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20500" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20500" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20500" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20500" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20501" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20501" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20501" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@20501" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19802" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19802" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19802" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19802" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19803" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19803" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19803" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19803" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19804" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19804" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19804" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19804" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19805" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19805" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19805" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19805" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19806" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19806" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19806" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19806" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19807" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19807" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19807" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19807" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19808" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19808" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19808" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19808" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19809" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19809" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19809" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19809" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19810" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19810" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19810" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19810" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19811" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19811" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19811" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19811" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19812" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19812" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19812" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19812" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19813" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19813" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19813" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19813" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19814" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19814" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19814" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19814" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19815" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19815" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19815" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19815" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19816" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19816" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19816" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemsContainer/@Panel@19816" method="_on_mouse_entered"] [connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/ItemSlot" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/ItemSlot" method="_on_gui_input"] [connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/ItemSlot" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/ItemSlot" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20502" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20502" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20502" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20502" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20503" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20503" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20503" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20503" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20504" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20504" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20504" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20504" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20505" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20505" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20505" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20505" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20506" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20506" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20506" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20506" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20507" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20507" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20507" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20507" method="_on_mouse_entered"] -[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20508" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20508" method="_on_gui_input"] -[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20508" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@20508" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19817" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19817" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19817" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19817" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19818" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19818" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19818" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19818" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19819" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19819" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19819" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19819" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19820" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19820" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19820" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19820" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19821" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19821" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19821" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19821" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19822" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19822" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19822" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19822" method="_on_mouse_entered"] +[connection signal="gui_input" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19823" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19823" method="_on_gui_input"] +[connection signal="mouse_entered" from="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19823" to="GameUI/BuildDialog/Panel/MarginContainer/VBoxContainer/BuildItemResourcesContainer/@Panel@19823" method="_on_mouse_entered"] [connection signal="toggled" from="DebugUi/ToggleDebugButton" to="." method="_on_toggle_debug_button_toggled"] [connection signal="item_selected" from="DebugUi/DebugTabContainer/Behaviour/Panel/VBoxContainer/HBoxContainer/NPCOptionButton" to="DebugUi/DebugTabContainer/Behaviour" method="_on_npc_option_button_item_selected"] [connection signal="pressed" from="DebugUi/DebugTabContainer/Behaviour/Panel/VBoxContainer/HBoxContainer/RefreshNPCOptionButton" to="DebugUi/DebugTabContainer/Behaviour" method="update_npc_option_button"] diff --git a/ui/debug/behaviour.gd b/ui/debug/behaviour.gd index da7ab35..841edfc 100644 --- a/ui/debug/behaviour.gd +++ b/ui/debug/behaviour.gd @@ -37,6 +37,10 @@ func update_npc_option_button() -> void: var node_name:String = node.get_path().get_name(node.get_path().get_name_count() - 1) npc_option_button.add_item(node_name) npc_option_button.set_item_tooltip(npc_option_button.item_count - 1, node.get_path()) + + if DebugSystem.debug_npc != null and node == DebugSystem.debug_npc: + npc_option_button.selected = npc_option_button.item_count - 1 + _on_npc_option_button_item_selected(npc_option_button.selected) func _on_mark_npc_for_debug_toggled(toggled_on: bool) -> void: DebugSystem.debug_npc = null diff --git a/ui/debug/debug_ui.gd b/ui/debug/debug_ui.gd new file mode 100644 index 0000000..493e650 --- /dev/null +++ b/ui/debug/debug_ui.gd @@ -0,0 +1,9 @@ +extends VBoxContainer + +@onready var debug_tab_container: TabContainer = %DebugTabContainer +@onready var toggle_debug_button: Button = %ToggleDebugButton + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + if debug_tab_container.visible: + toggle_debug_button.set_pressed_no_signal(true) diff --git a/ui/ui_theme.tres b/ui/ui_theme.tres index 48f407d..b4ce25c 100644 --- a/ui/ui_theme.tres +++ b/ui/ui_theme.tres @@ -96,7 +96,7 @@ modulate_color = Color(0.821789, 0.821789, 0.821789, 1) [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_supoq"] -[sub_resource type="Image" id="Image_tt5eb"] +[sub_resource type="Image" id="Image_2dvj1"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -106,7 +106,7 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_oxm6x"] -image = SubResource("Image_tt5eb") +image = SubResource("Image_2dvj1") [sub_resource type="StyleBoxTexture" id="StyleBoxTexture_k4n3b"] texture = ExtResource("8_caxsj") diff --git a/ui/ui_theme_debug.tres b/ui/ui_theme_debug.tres index 88f2cd1..746e590 100644 --- a/ui/ui_theme_debug.tres +++ b/ui/ui_theme_debug.tres @@ -50,7 +50,7 @@ corner_radius_bottom_right = 3 corner_radius_bottom_left = 3 corner_detail = 5 -[sub_resource type="Image" id="Image_nx4ug"] +[sub_resource type="Image" id="Image_kqf8p"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 35, 255, 255, 255, 153, 255, 255, 255, 190, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 190, 255, 255, 255, 152, 255, 255, 255, 33, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 153, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 151, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 190, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 237, 237, 237, 195, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 190, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 177, 177, 177, 209, 37, 37, 37, 252, 178, 178, 178, 209, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 176, 176, 176, 209, 32, 32, 32, 254, 26, 26, 26, 255, 84, 84, 84, 235, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 176, 176, 176, 209, 32, 32, 32, 254, 26, 26, 26, 255, 78, 78, 78, 237, 248, 248, 248, 193, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 191, 255, 255, 255, 191, 253, 253, 253, 192, 222, 222, 222, 198, 255, 255, 255, 191, 255, 255, 255, 191, 175, 175, 175, 210, 32, 32, 32, 254, 26, 26, 26, 255, 79, 79, 79, 237, 248, 248, 248, 193, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 191, 253, 253, 253, 192, 90, 90, 90, 234, 45, 45, 45, 249, 212, 212, 212, 200, 174, 174, 174, 210, 32, 32, 32, 254, 26, 26, 26, 255, 79, 79, 79, 237, 248, 248, 248, 193, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 191, 232, 232, 232, 196, 54, 54, 54, 246, 26, 26, 26, 255, 43, 43, 43, 250, 32, 32, 32, 254, 26, 26, 26, 255, 81, 81, 81, 237, 248, 248, 248, 193, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 191, 255, 255, 255, 191, 226, 226, 226, 197, 54, 54, 54, 246, 26, 26, 26, 255, 26, 26, 26, 255, 81, 81, 81, 237, 248, 248, 248, 193, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 226, 226, 226, 197, 54, 54, 54, 246, 81, 81, 81, 236, 248, 248, 248, 193, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 190, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 230, 230, 230, 197, 248, 248, 248, 193, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 189, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 152, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 150, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 33, 255, 255, 255, 151, 255, 255, 255, 190, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 189, 255, 255, 255, 150, 255, 255, 255, 32, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -60,9 +60,9 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_66yr0"] -image = SubResource("Image_nx4ug") +image = SubResource("Image_kqf8p") -[sub_resource type="Image" id="Image_uefms"] +[sub_resource type="Image" id="Image_7wnwx"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 17, 255, 255, 255, 76, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 75, 255, 255, 255, 17, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 76, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 75, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 237, 237, 237, 99, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 185, 185, 185, 117, 94, 94, 94, 170, 185, 185, 185, 117, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 184, 184, 184, 118, 91, 91, 91, 173, 87, 87, 87, 175, 121, 121, 121, 150, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 184, 184, 184, 118, 91, 91, 91, 173, 87, 87, 87, 175, 117, 117, 117, 152, 248, 248, 248, 97, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 255, 255, 255, 94, 253, 253, 253, 95, 224, 224, 224, 104, 255, 255, 255, 94, 255, 255, 255, 94, 184, 184, 184, 118, 91, 91, 91, 173, 87, 87, 87, 175, 119, 119, 119, 152, 248, 248, 248, 97, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 253, 253, 253, 95, 124, 124, 124, 148, 98, 98, 98, 167, 214, 214, 214, 106, 182, 182, 182, 118, 91, 91, 91, 173, 87, 87, 87, 175, 119, 119, 119, 152, 248, 248, 248, 97, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 233, 233, 233, 101, 103, 103, 103, 163, 87, 87, 87, 175, 97, 97, 97, 168, 91, 91, 91, 173, 87, 87, 87, 175, 119, 119, 119, 152, 248, 248, 248, 97, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 255, 255, 255, 94, 228, 228, 228, 102, 103, 103, 103, 163, 87, 87, 87, 175, 87, 87, 87, 175, 119, 119, 119, 152, 248, 248, 248, 97, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 228, 228, 228, 102, 103, 103, 103, 163, 120, 120, 120, 151, 248, 248, 248, 97, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 230, 230, 230, 102, 248, 248, 248, 97, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 93, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 75, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 74, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 17, 255, 255, 255, 75, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 93, 255, 255, 255, 74, 255, 255, 255, 16, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -72,9 +72,9 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_m4ot1"] -image = SubResource("Image_uefms") +image = SubResource("Image_7wnwx") -[sub_resource type="Image" id="Image_apenj"] +[sub_resource type="Image" id="Image_o4mff"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 13, 255, 255, 255, 96, 255, 255, 255, 136, 255, 255, 255, 173, 255, 255, 255, 173, 255, 255, 255, 136, 255, 255, 255, 95, 255, 255, 255, 11, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 56, 255, 255, 255, 171, 254, 254, 254, 193, 242, 242, 242, 204, 228, 228, 228, 217, 228, 228, 228, 217, 242, 242, 242, 204, 255, 255, 255, 192, 255, 255, 255, 168, 255, 255, 255, 51, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 56, 255, 255, 255, 191, 243, 243, 243, 203, 206, 206, 206, 244, 198, 198, 198, 255, 198, 198, 198, 255, 198, 198, 198, 255, 198, 198, 198, 255, 207, 207, 207, 243, 243, 243, 243, 203, 255, 255, 255, 190, 255, 255, 255, 50, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 12, 255, 255, 255, 171, 243, 243, 243, 203, 199, 199, 199, 254, 176, 176, 176, 255, 81, 81, 81, 255, 43, 43, 43, 255, 43, 43, 43, 255, 83, 83, 83, 255, 177, 177, 177, 255, 199, 199, 199, 254, 243, 243, 243, 203, 255, 255, 255, 168, 255, 255, 255, 10, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 254, 254, 254, 193, 206, 206, 206, 244, 176, 176, 176, 255, 37, 37, 37, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 39, 39, 39, 255, 179, 179, 179, 255, 207, 207, 207, 243, 255, 255, 255, 192, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 137, 242, 242, 242, 204, 198, 198, 198, 255, 81, 81, 81, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 86, 86, 86, 255, 198, 198, 198, 255, 242, 242, 242, 204, 255, 255, 255, 154, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 174, 228, 228, 228, 217, 198, 198, 198, 255, 43, 43, 43, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 43, 43, 43, 255, 198, 198, 198, 255, 228, 228, 228, 217, 255, 255, 255, 180, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 173, 228, 228, 228, 217, 198, 198, 198, 255, 43, 43, 43, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 44, 44, 44, 255, 198, 198, 198, 255, 228, 228, 228, 217, 255, 255, 255, 180, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 136, 242, 242, 242, 204, 198, 198, 198, 255, 83, 83, 83, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 88, 88, 88, 255, 198, 198, 198, 255, 242, 242, 242, 204, 255, 255, 255, 152, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 95, 255, 255, 255, 192, 207, 207, 207, 243, 178, 178, 178, 255, 39, 39, 39, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 26, 26, 26, 255, 42, 42, 42, 255, 181, 181, 181, 255, 207, 207, 207, 243, 255, 255, 255, 192, 255, 255, 255, 94, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 11, 255, 255, 255, 169, 243, 243, 243, 203, 199, 199, 199, 254, 179, 179, 179, 255, 86, 86, 86, 255, 43, 43, 43, 255, 44, 44, 44, 255, 88, 88, 88, 255, 181, 181, 181, 255, 200, 200, 200, 253, 244, 244, 244, 202, 255, 255, 255, 165, 255, 255, 255, 9, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 52, 255, 255, 255, 190, 243, 243, 243, 203, 207, 207, 207, 243, 198, 198, 198, 255, 198, 198, 198, 255, 198, 198, 198, 255, 198, 198, 198, 255, 207, 207, 207, 243, 244, 244, 244, 202, 255, 255, 255, 189, 255, 255, 255, 46, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 50, 255, 255, 255, 168, 255, 255, 255, 192, 242, 242, 242, 204, 228, 228, 228, 217, 228, 228, 228, 217, 242, 242, 242, 204, 255, 255, 255, 192, 255, 255, 255, 165, 255, 255, 255, 46, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 10, 255, 255, 255, 96, 255, 255, 255, 154, 255, 255, 255, 180, 255, 255, 255, 180, 255, 255, 255, 152, 255, 255, 255, 94, 255, 255, 255, 9, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -84,9 +84,9 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_1p280"] -image = SubResource("Image_apenj") +image = SubResource("Image_o4mff") -[sub_resource type="Image" id="Image_7mr1h"] +[sub_resource type="Image" id="Image_6vypt"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 9, 255, 255, 255, 49, 255, 255, 255, 77, 255, 255, 255, 90, 255, 255, 255, 90, 255, 255, 255, 77, 255, 255, 255, 49, 255, 255, 255, 9, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 32, 255, 255, 255, 90, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 90, 255, 255, 255, 31, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 32, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 31, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 9, 255, 255, 255, 90, 255, 255, 255, 94, 255, 255, 255, 94, 224, 224, 224, 104, 124, 124, 124, 148, 97, 97, 97, 168, 97, 97, 97, 168, 125, 125, 125, 147, 224, 224, 224, 104, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 89, 255, 255, 255, 8, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 49, 255, 255, 255, 94, 255, 255, 255, 94, 224, 224, 224, 104, 94, 94, 94, 170, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 95, 95, 95, 169, 224, 224, 224, 104, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 48, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 77, 255, 255, 255, 94, 255, 255, 255, 94, 124, 124, 124, 148, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 125, 125, 125, 147, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 77, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 90, 255, 255, 255, 94, 255, 255, 255, 94, 97, 97, 97, 168, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 97, 97, 97, 168, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 90, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 90, 255, 255, 255, 94, 255, 255, 255, 94, 97, 97, 97, 168, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 98, 98, 98, 167, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 89, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 77, 255, 255, 255, 94, 255, 255, 255, 94, 125, 125, 125, 147, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 127, 127, 127, 147, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 76, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 49, 255, 255, 255, 94, 255, 255, 255, 94, 224, 224, 224, 104, 95, 95, 95, 169, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 87, 87, 87, 175, 95, 95, 95, 169, 226, 226, 226, 103, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 48, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 9, 255, 255, 255, 90, 255, 255, 255, 94, 255, 255, 255, 94, 224, 224, 224, 104, 125, 125, 125, 147, 97, 97, 97, 168, 98, 98, 98, 167, 127, 127, 127, 147, 226, 226, 226, 103, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 89, 255, 255, 255, 8, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 31, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 30, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 31, 255, 255, 255, 89, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 94, 255, 255, 255, 89, 255, 255, 255, 30, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 8, 255, 255, 255, 48, 255, 255, 255, 77, 255, 255, 255, 90, 255, 255, 255, 89, 255, 255, 255, 76, 255, 255, 255, 48, 255, 255, 255, 8, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -96,9 +96,9 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_wpgtm"] -image = SubResource("Image_7mr1h") +image = SubResource("Image_6vypt") -[sub_resource type="Image" id="Image_rl873"] +[sub_resource type="Image" id="Image_8u50i"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 42, 42, 42, 12, 26, 26, 26, 67, 26, 26, 26, 105, 27, 27, 27, 122, 27, 27, 27, 122, 26, 26, 26, 105, 27, 27, 27, 66, 46, 46, 46, 11, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 29, 29, 29, 44, 27, 27, 27, 122, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 122, 30, 30, 30, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 29, 29, 29, 44, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 30, 30, 30, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 42, 42, 42, 12, 27, 27, 27, 122, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 121, 46, 46, 46, 11, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 67, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 65, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 105, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 104, 255, 255, 255, 0, 255, 255, 255, 0, 27, 27, 27, 122, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 122, 255, 255, 255, 0, 255, 255, 255, 0, 27, 27, 27, 122, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 121, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 105, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 103, 255, 255, 255, 0, 255, 255, 255, 0, 27, 27, 27, 66, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 65, 255, 255, 255, 0, 255, 255, 255, 0, 46, 46, 46, 11, 27, 27, 27, 122, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 121, 51, 51, 51, 10, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 30, 30, 30, 42, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 31, 31, 31, 41, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 30, 30, 30, 42, 27, 27, 27, 121, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 121, 31, 31, 31, 41, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 46, 46, 46, 11, 27, 27, 27, 65, 27, 27, 27, 104, 27, 27, 27, 122, 27, 27, 27, 121, 27, 27, 27, 103, 27, 27, 27, 65, 51, 51, 51, 10, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -108,9 +108,9 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_6etnc"] -image = SubResource("Image_rl873") +image = SubResource("Image_8u50i") -[sub_resource type="Image" id="Image_sbro7"] +[sub_resource type="Image" id="Image_m884l"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 42, 42, 42, 6, 30, 30, 30, 34, 28, 28, 28, 53, 29, 29, 29, 61, 29, 29, 29, 61, 28, 28, 28, 53, 31, 31, 31, 33, 42, 42, 42, 6, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 34, 34, 34, 22, 29, 29, 29, 61, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 29, 29, 29, 61, 36, 36, 36, 21, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 34, 34, 34, 22, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 36, 36, 36, 21, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 42, 42, 42, 6, 29, 29, 29, 61, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 29, 29, 29, 61, 42, 42, 42, 6, 255, 255, 255, 0, 255, 255, 255, 0, 30, 30, 30, 34, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 31, 31, 31, 33, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 53, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 29, 29, 29, 52, 255, 255, 255, 0, 255, 255, 255, 0, 29, 29, 29, 61, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 29, 29, 29, 61, 255, 255, 255, 0, 255, 255, 255, 0, 29, 29, 29, 61, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 29, 29, 29, 61, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 53, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 29, 29, 29, 52, 255, 255, 255, 0, 255, 255, 255, 0, 31, 31, 31, 33, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 31, 31, 31, 33, 255, 255, 255, 0, 255, 255, 255, 0, 42, 42, 42, 6, 29, 29, 29, 61, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 29, 29, 29, 61, 51, 51, 51, 5, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 36, 36, 36, 21, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 36, 36, 36, 21, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 36, 36, 36, 21, 29, 29, 29, 61, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 29, 29, 29, 61, 36, 36, 36, 21, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 42, 42, 42, 6, 31, 31, 31, 33, 29, 29, 29, 52, 29, 29, 29, 61, 29, 29, 29, 61, 29, 29, 29, 52, 31, 31, 31, 33, 51, 51, 51, 5, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -120,9 +120,9 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_sd4ly"] -image = SubResource("Image_sbro7") +image = SubResource("Image_m884l") -[sub_resource type="Image" id="Image_s85le"] +[sub_resource type="Image" id="Image_xu1g2"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 33, 33, 33, 23, 27, 27, 27, 103, 26, 26, 26, 127, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 127, 27, 27, 27, 102, 34, 34, 34, 22, 255, 255, 255, 0, 255, 255, 255, 0, 27, 27, 27, 103, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 27, 27, 27, 101, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 127, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 127, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 255, 255, 255, 0, 255, 255, 255, 0, 26, 26, 26, 127, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 127, 255, 255, 255, 0, 255, 255, 255, 0, 27, 27, 27, 102, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 28, 28, 28, 100, 255, 255, 255, 0, 255, 255, 255, 0, 34, 34, 34, 22, 27, 27, 27, 101, 26, 26, 26, 127, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 128, 26, 26, 26, 127, 28, 28, 28, 100, 36, 36, 36, 21, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -132,9 +132,9 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_4pfk7"] -image = SubResource("Image_s85le") +image = SubResource("Image_xu1g2") -[sub_resource type="Image" id="Image_28x1q"] +[sub_resource type="Image" id="Image_jxx3o"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 42, 42, 42, 12, 29, 29, 29, 52, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 30, 30, 30, 51, 46, 46, 46, 11, 255, 255, 255, 0, 255, 255, 255, 0, 29, 29, 29, 52, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 30, 30, 30, 51, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 255, 255, 255, 0, 255, 255, 255, 0, 30, 30, 30, 51, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 30, 30, 30, 50, 255, 255, 255, 0, 255, 255, 255, 0, 46, 46, 46, 11, 30, 30, 30, 51, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 28, 28, 28, 64, 30, 30, 30, 50, 46, 46, 46, 11, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -144,7 +144,7 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_bhk8s"] -image = SubResource("Image_28x1q") +image = SubResource("Image_jxx3o") [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_irdot"] content_margin_left = 4.0 @@ -177,7 +177,7 @@ expand_margin_bottom = 2.0 [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_t2ycm"] -[sub_resource type="Image" id="Image_r2py8"] +[sub_resource type="Image" id="Image_qopff"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 96, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 97, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 191, 255, 255, 255, 191, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 97, 255, 255, 255, 96, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -187,9 +187,9 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_xma02"] -image = SubResource("Image_r2py8") +image = SubResource("Image_qopff") -[sub_resource type="Image" id="Image_j8vyy"] +[sub_resource type="Image" id="Image_mbdc3"] data = { "data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 128, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 129, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 129, 255, 255, 255, 128, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0), "format": "RGBA8", @@ -199,7 +199,7 @@ data = { } [sub_resource type="ImageTexture" id="ImageTexture_y4rrw"] -image = SubResource("Image_j8vyy") +image = SubResource("Image_mbdc3") [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_oxh2j"] content_margin_left = 10.0 diff --git a/world/level.tscn b/world/level.tscn index c6ced58..8b00701 100644 --- a/world/level.tscn +++ b/world/level.tscn @@ -1,9 +1,8 @@ -[gd_scene load_steps=41 format=3 uid="uid://dmagdl5pi6jdj"] +[gd_scene load_steps=44 format=3 uid="uid://dmagdl5pi6jdj"] [ext_resource type="MeshLibrary" uid="uid://dcpuitbu16j1a" path="res://assets/mesh_library.tres" id="1_q0eym"] [ext_resource type="PackedScene" uid="uid://da5r82nvypfk4" path="res://objects/pickup_item.tscn" id="2_ccr0r"] [ext_resource type="Resource" uid="uid://mkj3oeaxvltq" path="res://data/items/shovel.tres" id="3_pdr1o"] -[ext_resource type="BehaviorTree" uid="uid://blccr23qjixws" path="res://ai/trees/pug.tres" id="5_2yc6b"] [ext_resource type="Resource" uid="uid://bn5j38jbwlj1f" path="res://data/items/stick.tres" id="5_uqakj"] [ext_resource type="Resource" uid="uid://c1ll2snhgv3m1" path="res://data/items/treelog.tres" id="6_l0uqq"] [ext_resource type="Resource" uid="uid://det51k1t422rq" path="res://data/items/pickaxe.tres" id="7_3sab5"] @@ -30,12 +29,14 @@ [ext_resource type="Resource" uid="uid://mn4emvkkv3v4" path="res://dialogue/mage_missing_seeds.dialogue" id="25_5oc06"] [ext_resource type="PackedScene" uid="uid://bipsmw4v7oegd" path="res://objects/chest.tscn" id="25_fhfiw"] [ext_resource type="PackedScene" uid="uid://c56dnyb36mvit" path="res://assets/3rdparty/Quaternius/LowPoly Animated Animals/gltf/Pug.glb" id="29_mexqd"] -[ext_resource type="BehaviorTree" uid="uid://ci1dpjqvsq0ax" path="res://ai/trees/look_around_or_focus_player.tres" id="30_7tuqh"] [ext_resource type="PackedScene" uid="uid://dy8vjf760prhq" path="res://assets/characters/rogue.tscn" id="31_ybkxd"] +[ext_resource type="BehaviorTree" uid="uid://b6heun7ylvwy4" path="res://ai/trees/follow_path.tres" id="32_o2fv2"] +[ext_resource type="PackedScene" uid="uid://o6d18r0ior12" path="res://assets/scene_props/RockB.tscn" id="33_8eayx"] +[ext_resource type="PackedScene" uid="uid://d20yinu5saape" path="res://assets/scene_props/RockC.tscn" id="34_rbou3"] [sub_resource type="NavigationMesh" id="NavigationMesh_1u13k"] -vertices = PackedVector3Array(17.7089, 0.01999, -7.99106, 18.8089, 0.01999, -7.89106, 18.8089, 0.01999, -8.39106, 15.2089, 0.01999, -14.3911, 16.4089, 0.01999, -14.3911, 16.4089, 0.01999, -14.8911, 16.6089, 0.01999, -15.0911, 15.2089, 0.01999, -16.1911, 19.1089, 0.01999, -8.69106, 17.7089, 0.01999, -9.69106, 8.00894, 0.01999, -31.9911, 11.6089, 0.01999, -16.5911, 14.9089, 0.01999, -16.5911, 22.7089, 0.01999, -8.39106, 22.7089, 0.01999, -7.59106, 48.5089, 0.01999, -7.59106, 17.4089, 0.01999, -10.0911, 22.4089, 0.01999, -8.69106, 18.6089, 0.01999, -13.1911, 18.3089, 0.01999, -12.8911, 18.4089, 0.01999, -15.0911, 17.0089, 0.01999, -12.8911, 17.0089, 0.01999, -10.0911, 18.6089, 0.01999, -14.8911, 8.00894, 0.01999, -15.9911, 11.3089, 0.01999, -15.8911, 48.5089, 0.01999, -31.9911, -18.1911, 1.51999, -16.9911, -17.9911, 1.51999, -16.4911, -17.1911, 1.51999, -16.4911, -13.2911, 1.51999, -18.4911, -13.4911, 1.51999, -18.9911, -14.4911, 1.51999, -18.9911, -14.6911, 1.51999, -18.4911, -14.3911, 1.51999, -18.0911, -19.9911, 1.51999, -18.4911, -19.9911, 1.51999, -16.9911, -11.4911, 1.51999, -17.9911, -11.4911, 1.51999, -18.4911, -14.6911, 1.51999, -17.6911, -16.9911, 1.51999, -15.9911, -14.6911, 1.51999, -15.9911, -7.49106, 2.01999, -17.6911, -7.49106, 2.01999, -17.9911, -7.99106, 2.01999, -17.9911, -8.19106, 2.01999, -17.4911, -5.29106, 2.01999, -16.4911, -4.69106, 2.01999, -16.4911, -3.49106, 2.01999, -16.9911, -6.79106, 2.01999, -16.9911, -6.99106, 2.01999, -17.4911, -8.49106, 2.01999, -16.4911, -7.19106, 2.01999, -16.4911, -8.49106, 2.01999, -17.4911, -3.59106, 2.01999, -15.8911, -3.29106, 2.01999, -16.4911, -4.49106, 2.01999, -15.9911, -6.99106, 2.01999, -15.9911, -5.49106, 2.01999, -15.9911, -3.49106, 1.01999, -17.5911, -3.49106, 1.01999, -17.9911, -4.99106, 1.01999, -17.9911, -5.09106, 1.01999, -17.6911, -12.7911, 2.01999, -16.9911, -12.9911, 2.01999, -17.4911, -13.9911, 2.01999, -17.4911, -8.99106, 2.01999, -16.2911, -10.9911, 2.01999, -17.4911, -11.1911, 2.01999, -16.9911, -13.9911, 2.01999, -15.4911, -12.4911, 2.01999, -15.4911, -12.2911, 2.01999, -16.0911, -8.99106, 2.01999, -15.9911, -3.49106, 2.01999, -14.9911, -2.69106, 2.01999, -14.9911, -1.79106, 2.01999, -15.9911, -1.99106, 2.01999, -16.4911, -0.0910606, 2.01999, -12.8911, 0.208939, 2.01999, -13.9911, -0.0910606, 2.01999, -14.1911, -0.99106, 2.01999, -14.2911, -0.99106, 2.01999, -12.9911, -0.49106, 2.01999, -15.6911, -0.49106, 2.01999, -15.9911, -2.49106, 2.01999, -14.4911, -1.19106, 2.01999, -14.4911, 0.00893974, 2.01999, -15.4911, -19.4911, 0.51999, -16.3911, -19.4911, 0.51999, -15.9911, -18.6911, 0.51999, -15.9911, -18.5911, 0.51999, -16.3911, -18.4911, 0.51999, -15.4911, -17.4911, 0.51999, -15.4911, -17.5911, 0.51999, -15.8911, -18.3911, 0.51999, -15.8911, 9.70894, 0.01999, -10.7911, 10.0089, 0.01999, -11.1911, 9.70894, 0.01999, -11.3911, 9.00894, 0.01999, -10.8911, 8.00894, 0.01999, -12.6911, 7.20894, 0.01999, -12.2911, 7.40894, 0.01999, -12.0911, 10.0089, 0.01999, -12.3911, 10.5089, 0.01999, -12.3911, 9.20894, 0.01999, -13.2911, 9.20894, 0.01999, -12.4911, 8.30894, 0.01999, -12.2911, 7.40894, 0.01999, -11.4911, 9.70894, 0.01999, -12.0911, 9.00894, 0.01999, -12.2911, 7.00894, 0.01999, -11.0911, 8.70894, 0.01999, -10.4911, 11.6089, 0.01999, -13.5911, 11.3089, 0.01999, -13.8911, 9.00894, 0.01999, -13.4911, 8.00894, 0.01999, -15.6911, 7.70894, 0.01999, -15.4911, 8.40894, 0.01999, -13.4911, -7.49106, 1.01999, -15.4911, -7.59106, 1.01999, -15.8911, -8.39106, 1.01999, -15.8911, -8.59106, 1.01999, -15.5911, -4.89106, 1.01999, -15.3911, -5.09106, 1.01999, -15.5911, -5.19106, 1.01999, -15.3911, -4.69106, 1.01999, -15.0911, -6.09106, 1.01999, -15.3911, -5.99106, 1.01999, -14.9911, -2.89106, 1.01999, -13.8911, -3.19106, 1.01999, -13.4911, -2.99106, 1.01999, -12.9911, -1.59106, 1.01999, -12.9911, -1.59106, 1.01999, -13.8911, -3.89106, 1.01999, -14.3911, -4.09106, 1.01999, -14.5911, -4.49106, 1.01999, -14.8911, -4.49106, 1.01999, -13.4911, -4.09106, 1.01999, -15.3911, -3.09106, 1.01999, -14.3911, 9.90894, 0.01999, -10.5911, 10.5089, 0.01999, -11.0911, 9.90894, 0.01999, -9.99106, 9.30894, 0.01999, -9.59106, 9.20894, 0.01999, -9.09106, 10.4089, 0.01999, -9.09106, 13.9089, 0.01999, -13.5911, 13.4089, 0.01999, -13.7911, 12.9089, 0.01999, -13.5911, 10.9089, 0.01999, -11.4911, 13.8089, 0.01999, -9.69106, 14.0089, 0.01999, -9.99106, 13.6089, 0.01999, -14.5911, 14.3089, 0.01999, -14.5911, 14.3089, 0.01999, -15.5911, 12.2089, 0.01999, -15.5911, 12.2089, 0.01999, -14.5911, 12.9089, 0.01999, -14.5911, 13.1089, 0.01999, -14.3911, 13.1089, 0.01999, -13.7911, 13.4089, 0.01999, -14.3911, 10.6089, 0.01999, -8.89106, 10.9089, 0.01999, -12.0911, 10.6089, 0.01999, -8.29106, 13.8089, 0.01999, -8.29106, 8.00894, 0.01999, -13.1911, 6.50894, 0.01999, -12.3911, 4.60894, 0.01999, -11.6911, 6.20894, 0.01999, -11.6911, 6.20894, 0.01999, -12.0911, 4.50894, 0.01999, -15.4911, -16.9911, 0.51999, -13.9911, -16.4911, 0.51999, -13.9911, -16.2911, 0.51999, -14.4911, -15.6911, 0.51999, -14.4911, -15.6911, 0.51999, -15.3911, -17.0911, 0.51999, -15.3911, -11.4911, 1.01999, -14.9911, -11.3911, 1.01999, -15.2911, -11.8911, 1.01999, -15.3911, -12.1911, 1.01999, -14.8911, -11.9911, 1.01999, -14.7911, -14.3911, 1.01999, -14.8911, -14.5911, 1.01999, -15.3911, -14.9911, 1.01999, -15.3911, -14.9911, 1.01999, -14.4911, -11.9911, 1.01999, -14.4911, 1.50894, 1.01999, -14.9911, 1.50894, 1.01999, -14.5911, 2.10894, 1.01999, -14.3911, 4.00894, 1.01999, -14.9911, 3.60894, 1.01999, -12.3911, 3.60894, 1.01999, -11.5911, 4.00894, 1.01999, -11.4911, 3.40894, 1.01999, -12.5911, 2.10894, 1.01999, -12.5911, -10.0911, 0.01999, -14.0911, -10.1911, 0.01999, -14.8911, -10.8911, 0.01999, -14.8911, -11.6911, 0.01999, -13.8911, -12.8911, 0.01999, -13.8911, -12.8911, 0.01999, -12.2911, -11.9911, 0.01999, -11.9911, -9.79106, 0.01999, -13.8911, -9.79106, 0.01999, -12.0911, -9.49106, 0.51999, -14.8911, -9.49106, 0.51999, -14.4911, -8.99106, 0.51999, -14.4911, -8.99106, 0.51999, -14.8911, -6.09106, 0.01999, -13.5911, -5.89106, 0.01999, -13.2911, -5.59106, 0.01999, -13.5911, -5.59106, 0.01999, -14.3911, -6.39106, 0.01999, -14.3911, -9.09106, 0.01999, -12.0911, -8.09106, 0.01999, -12.1911, -8.09106, 0.01999, -13.3911, -8.69106, 0.01999, -13.8911, -8.39106, 0.01999, -14.1911, -7.89106, 0.01999, -13.5911, -8.89106, 0.01999, -11.7911, -6.59106, 0.01999, -14.8911, -8.39106, 0.01999, -14.8911, 15.2089, 0.01999, -13.8911, 16.4089, 0.01999, -13.0911, 14.9089, 0.01999, -13.5911, 0.308939, 2.01999, -11.4911, 0.50894, 2.01999, -10.9911, 1.00894, 2.01999, -10.7911, 1.70894, 2.01999, -11.9911, 1.50894, 2.01999, -12.1911, 2.30894, 2.01999, -10.4911, 2.50894, 2.01999, -9.99106, 3.50894, 2.01999, -9.99106, 3.50894, 2.01999, -10.9911, 3.00894, 2.01999, -11.1911, 1.00894, 2.01999, -10.4911, 3.00894, 2.01999, -11.9911, 0.00893974, 2.01999, -11.4911, 1.50894, 2.01999, -13.9911, -13.9911, 0.51999, -12.4911, -13.4911, 0.51999, -12.4911, -13.4911, 0.51999, -13.8911, -14.0911, 0.51999, -13.8911, -15.8911, 0.01999, -13.3911, -16.0911, 0.01999, -13.5911, -16.1911, 0.01999, -13.3911, -16.4911, 0.01999, -13.3911, -16.4911, 0.01999, -12.9911, -15.9911, 0.01999, -12.7911, -13.1911, 0.01999, -11.8911, -13.9911, 0.01999, -11.2911, -13.4911, 0.01999, -10.2911, -12.1911, 0.01999, -9.59106, -12.1911, 0.01999, -11.6911, -14.3911, 0.01999, -11.8911, -14.1911, 0.01999, -11.4911, -15.1911, 0.01999, -11.9911, -14.9911, 0.01999, -11.4911, -14.6911, 0.01999, -12.3911, -13.9911, 0.01999, -10.4911, -15.9911, 0.01999, -11.9911, -14.6911, 0.01999, -13.3911, -13.4911, 0.01999, -9.49106, -0.0910606, 0.01999, -9.59106, -0.0910606, 0.01999, -9.89106, -0.591061, 0.01999, -10.0911, -1.39106, 0.01999, -7.99106, -0.591061, 0.01999, -10.3911, -1.09106, 0.01999, -10.5911, -5.09106, 0.01999, -13.3911, -5.89106, 0.01999, -12.1911, -4.89106, 0.01999, -12.8911, 0.608938, 0.01999, -8.89106, 0.408939, 0.01999, -9.39106, 1.40894, 0.01999, -7.89106, -1.09106, 0.01999, -11.3911, -1.59106, 0.01999, -11.5911, -3.39106, 0.01999, -12.3911, -4.89106, 0.01999, -9.89106, -3.29106, 0.01999, -7.99106, 1.40894, 0.01999, -8.89106, -3.59106, 0.01999, -12.8911, -3.09106, 0.01999, -7.79106, -3.09106, -0.02001, -7.09106, -1.59106, -0.02001, -7.19106, -1.59106, 0.01999, -7.79106, -3.09106, -0.02001, -7.44106, -1.59106, -0.02001, -7.49106, -6.29106, 0.01999, -11.8911, -6.29106, 0.01999, -10.0911, -5.09106, 0.01999, -10.0911, -4.99106, 0.01999, -8.59106, -4.29106, 0.01999, -7.99106, -1.59106, 0.01999, -12.3911, -7.49106, 1.01999, -12.9911, -7.49106, 1.01999, -12.4911, -6.49106, 1.01999, -12.4911, -6.49106, 1.01999, -12.9911, -0.99106, 1.01999, -11.9911, -0.591061, 1.01999, -11.8911, -0.591061, 1.01999, -12.3911, -0.99106, 1.01999, -12.3911, -7.89106, 0.01999, -11.8911, -8.99106, 0.01999, -10.5911, -8.49106, 0.01999, -9.99106, 8.70894, 0.01999, -9.89106, 8.10894, 0.01999, -9.09106, 6.40894, 0.01999, -11.1911, 4.60894, 0.01999, -11.1911, 4.10894, 0.01999, -10.8911, 7.90894, 0.01999, -8.89106, 5.90894, 0.01999, -6.89106, 7.90894, 0.01999, -7.19106, 4.10894, 0.01999, -6.99106, -10.7911, 1.01999, -10.9911, -9.49106, 1.01999, -10.9911, -9.49106, 1.01999, -11.4911, -11.4911, 1.01999, -11.4911, -11.4911, 1.01999, -8.99106, -10.9911, 1.01999, -8.99106, -10.9911, 1.01999, -10.7911, -10.3911, 0.01999, -8.69106, -10.7911, 0.01999, -8.39106, -10.4911, 0.01999, -7.99106, -9.09106, 0.01999, -8.09106, -8.89106, 0.01999, -7.89106, -8.39106, 0.01999, -8.39106, -8.69106, 0.01999, -8.89106, -9.19106, 0.01999, -10.3911, -8.69106, 0.01999, -9.69106, -10.1911, 0.01999, -9.89106, -10.3911, 0.01999, -9.89106, -9.89106, 0.01999, -10.3911, -10.6911, 0.01999, -7.69106, -11.6911, 0.01999, -5.09106, -11.3911, 0.01999, -5.39106, -11.6911, 0.01999, -5.89106, -12.8911, 0.01999, -5.89106, -12.8911, 0.01999, -5.09106, -15.6911, 0.01999, -5.99106, -16.3911, 0.01999, -5.99106, -16.3911, 0.01999, -5.59106, -14.6911, 0.01999, -5.59106, -11.3911, 0.01999, -7.09106, -10.6911, 0.01999, -7.09106, -11.8911, 0.01999, -8.39106, -14.9911, 0.01999, -6.69106, -15.4911, 0.01999, -6.49106, -14.3911, 0.01999, -6.09106, -13.4911, 0.01999, -7.69106, -13.6911, 0.01999, -7.49106, -13.0911, 0.01999, -6.09106, -14.9911, 0.01999, -7.49106, -12.1911, 0.01999, -8.89106, -11.6911, 0.01999, -6.69106, -7.99106, 1.01999, -9.49106, -7.99106, 1.01999, -8.99106, -5.49106, 1.01999, -8.99106, -5.49106, 1.01999, -9.49106, 2.50894, 1.51999, -9.39106, 2.50894, 1.51999, -8.99106, 3.00894, 1.51999, -8.79106, 3.50894, 1.51999, -9.39106, 3.00894, 1.51999, -7.99106, 3.50894, 1.51999, -7.99106, 16.1089, 0.01999, -8.09106, 16.8089, 0.01999, -8.09106, 16.8089, 0.01999, -9.09106, 14.7089, 0.01999, -9.09106, 14.7089, 0.01999, -8.09106, 15.4089, 0.01999, -8.09106, 15.6089, 0.01999, -7.89106, 15.9089, 0.01999, -7.89106, 16.6089, 0.01999, -4.79106, 15.4089, 0.01999, -7.09106, 14.2089, 0.01999, -7.09106, 10.9089, 0.01999, -4.59106, 11.1089, 0.01999, -4.39106, 13.1089, 0.01999, 0.208939, 16.9089, 0.01999, -2.09106, 16.5089, 0.01999, -2.39106, 12.9089, 0.01999, -0.0910606, 15.9089, 0.01999, -7.29106, 15.6089, 0.01999, -7.29106, 11.1089, 0.01999, -2.69106, 10.9089, 0.01999, -2.49106, 11.7089, 0.01999, -0.0910606, 16.1089, 0.01999, -7.09106, 16.6089, 0.01999, -7.09106, -8.89106, 0.01999, -7.59106, -8.39106, 0.01999, -7.39106, -7.09106, 0.01999, -7.59106, -7.09106, 0.01999, -8.39106, -6.39106, 0.01999, -4.39106, -6.59106, 0.01999, -4.89106, -6.89106, 0.01999, -4.89106, -6.89106, 0.01999, -4.09106, -5.69106, 0.01999, -7.39106, -6.89106, 0.01999, -7.39106, -6.89106, 0.01999, -6.59106, -5.59106, 0.01999, -6.59106, -4.49106, 0.01999, -7.79106, -5.39106, 0.01999, -8.39106, -5.39106, 0.01999, -7.69106, -8.39106, 0.01999, -6.59106, -5.19106, 0.01999, -4.39106, -4.49106, 0.01999, -4.09106, -5.39106, 0.01999, -6.09106, -4.89106, 0.01999, -5.89106, -4.89106, 0.01999, -4.69106, 2.00894, 1.01999, -7.49106, 2.50894, 1.01999, -7.49106, 2.40894, 1.01999, -8.39106, 2.00894, 1.01999, -8.49106, 8.50894, 1.01999, -7.49106, 9.00894, 1.01999, -7.49106, 9.20894, 1.01999, -7.99106, 8.50894, 1.01999, -8.49106, 10.0089, 1.01999, -7.99106, 10.0089, 1.01999, -8.49106, -6.49106, 0.51999, -8.39106, -6.49106, 0.51999, -7.99106, -5.99106, 0.51999, -7.99106, -5.99106, 0.51999, -8.39106, 9.30894, 0.01999, -6.89106, 9.00894, 0.01999, -6.89106, 9.00894, 0.01999, -6.09106, 9.90894, 0.01999, -6.09106, 10.1089, 0.01999, -5.89106, 10.1089, 0.01999, -4.59106, 10.3089, 0.01999, -7.39106, 9.60894, 0.01999, -7.39106, 10.6089, 0.01999, -7.69106, 13.8089, 0.01999, -7.39106, 19.6089, 0.01999, -4.99106, 19.6089, 0.01999, -5.79106, 19.1089, 0.01999, -5.79106, 17.7089, 0.01999, -7.39106, 18.8089, 0.01999, -6.09106, 17.4089, 0.01999, -7.09106, 16.8089, 0.01999, -4.99106, 21.8089, 0.01999, -7.79106, 21.6089, 0.01999, -7.79106, 21.6089, 0.01999, -7.19106, 21.8089, 0.01999, -6.69106, 11.6089, 0.01999, 1.60894, 11.4089, 0.01999, 1.40894, 8.00894, 0.01999, 0.808941, 8.00894, 0.01999, 16.5089, 21.4089, 0.01999, -6.99106, 21.1089, 0.01999, -6.69106, 20.6089, 0.01999, -6.99106, 18.6089, 0.01999, -2.29106, 18.6089, 0.01999, -2.79106, 18.3089, 0.01999, -2.79106, 18.3089, 0.01999, -2.29106, 20.9089, 0.01999, -6.49106, 20.4089, 0.01999, -7.19106, 20.4089, 0.01999, -6.69106, 20.6089, 0.01999, -6.49106, 20.4089, 0.01999, -7.79106, 19.7089, 0.01999, -7.79106, 19.7089, 0.01999, -6.69106, 13.1089, 0.01999, 1.30894, 22.7089, 0.01999, -6.09106, 22.4089, 0.01999, -5.79106, 20.5089, 0.01999, -2.39106, 48.5089, 0.01999, -6.89106, 18.1089, 0.01999, -2.09106, 18.8089, 0.01999, -2.09106, 20.9089, 0.01999, -5.99106, 20.6089, 0.01999, -5.99106, 11.4089, 0.01999, 0.808941, 21.1089, 0.01999, -5.79106, 20.4089, 0.01999, -5.79106, 20.1089, 0.01999, -4.99106, 20.5089, 0.01999, -4.69106, 12.8089, 0.01999, 1.60894, 17.5089, 0.01999, -4.09106, 17.5089, 0.01999, -2.99106, 18.1089, 0.01999, -2.99106, 22.7089, 0.01999, -6.89106, 18.8089, 0.01999, -2.99106, 19.5089, 0.01999, -2.99106, 19.5089, 0.01999, -4.09106, 20.1089, 0.01999, -2.09106, 48.5089, 0.01999, 16.5089, -9.99106, 1.01999, -7.49106, -9.99106, 1.01999, -5.99106, -9.49106, 1.01999, -5.99106, -9.49106, 1.01999, -7.49106, 0.408939, 0.01999, -4.89106, 0.608938, 0.01999, -5.09106, 0.608938, 0.01999, -5.59106, -2.09106, 0.01999, -4.59106, -1.89106, 0.01999, -3.99106, -1.49106, 0.01999, -3.99106, -1.59106, 0.01999, -6.69106, -2.09106, -0.02001, -6.82439, 0.50894, 0.01999, -6.49106, -1.39106, 0.01999, -6.49106, -2.99106, 0.01999, -4.59106, -3.07106, 0.01999, -6.59106, -1.19106, 0.01999, -3.49106, 0.408939, 0.01999, -3.69106, 7.90894, 0.01999, -4.89106, 8.40894, 0.01999, -5.09106, 8.40894, 0.01999, -5.89106, 8.10894, 0.01999, -6.89106, 6.00894, 0.01999, -4.19106, 7.90894, 0.01999, -4.19106, -11.3911, 0.01999, -4.89106, -9.19106, 0.01999, -5.39106, -8.39106, 0.01999, -6.19106, -8.89106, 0.01999, -5.89106, -8.39106, 0.01999, -5.09106, -7.09106, 0.01999, -5.09106, -7.09106, 0.01999, -6.39106, -11.3911, 0.01999, -4.09106, -8.69106, 0.01999, -4.09106, -8.69106, 0.01999, -4.69106, -10.9911, 0.51999, -6.49106, -10.9911, 0.51999, -5.99106, -10.6911, 0.51999, -5.99106, -10.6911, 0.51999, -6.49106, -13.8911, 0.51999, -5.09106, -13.4911, 0.51999, -5.09106, -13.4911, 0.51999, -5.49106, -13.9911, 0.51999, -5.49106, -16.7911, 0.51999, -4.99106, -16.9911, 0.51999, -5.19106, -17.0911, 0.51999, -5.09106, -16.8911, 0.51999, -4.59106, -14.1911, 0.51999, -4.99106, -14.1911, 0.51999, -4.59106, -16.9911, 0.51999, -5.99106, -17.4911, 0.51999, -5.99106, -17.5911, 0.51999, -5.19106, 3.80894, 0.01999, -3.39106, 2.60894, 0.01999, -3.39106, 2.60894, 0.01999, -2.69106, 5.20894, -0.02001, -0.691061, 5.30894, -0.02001, -2.39106, 4.70894, 0.01999, -2.39106, 4.8756, -0.02001, -1.82439, 5.00894, -0.02001, -2.39106, 2.20894, 0.01999, -2.39106, 3.40894, 0.01999, -0.291061, 3.60894, 0.01999, -0.591061, 4.50894, 0.01999, -2.59106, 4.67561, 0.01999, -0.657728, 4.50894, 0.01999, -5.49106, 4.10894, 0.01999, -4.89106, 4.10894, 0.01999, -3.69106, 3.90894, 0.01999, -5.09106, -5.99106, 1.01999, -5.49106, -5.99106, 1.01999, -4.99106, -5.49106, 1.01999, -4.99106, -5.49106, 1.01999, -5.49106, 8.50894, 1.01999, -4.49106, 8.50894, 1.01999, -3.99106, 9.00894, 1.01999, -3.79106, 9.50894, 1.01999, -4.19106, 9.00894, 1.01999, -4.69106, 9.70894, 1.01999, -3.99106, 9.50894, 1.01999, -5.49106, 9.00894, 1.01999, -5.49106, 9.00894, 1.01999, -2.99106, 10.5089, 1.01999, -2.99106, 10.5089, 1.01999, -3.99106, -17.2911, 1.01999, -3.99106, -17.4911, 1.01999, -4.49106, -17.9911, 1.01999, -4.49106, -18.1911, 1.01999, -3.99106, -19.9911, 1.01999, -3.49106, -11.9911, 1.01999, -4.49106, -13.4911, 1.01999, -4.49106, -13.6911, 1.01999, -3.99106, -11.9911, 1.01999, -3.49106, -19.9911, 1.01999, -3.99106, -7.99106, 1.01999, -4.49106, -7.99106, 1.01999, -3.49106, -7.49106, 1.01999, -3.49106, -7.49106, 1.01999, -4.49106, 1.40894, 1.01999, -3.99106, 1.60894, 1.01999, -3.69106, 2.00894, 1.01999, -3.99106, 1.00894, 1.01999, -4.49106, 1.00894, 1.01999, -3.99106, 3.50894, 1.01999, -3.99106, 3.50894, 1.01999, -4.49106, 8.40894, 0.01999, -2.59106, 8.40894, 0.01999, -3.39106, 7.90894, 0.01999, -3.59106, 6.00894, 0.01999, -2.59106, 5.80894, 0.01999, -0.691061, 5.80894, 0.01999, -2.39106, 5.50894, -0.02001, -0.691061, 6.00894, 0.01999, -0.49106, 7.90894, 0.01999, 0.10894, 8.70894, 0.01999, -2.39106, 6.00894, 0.01999, 0.00893784, -2.49106, 1.01999, 1.00894, -2.19106, 1.01999, 0.60894, -2.49106, 1.01999, 0.408939, -2.49106, 1.01999, 0.00893784, -2.19106, 1.01999, -0.391062, -2.49106, 1.01999, -0.591061, -2.49106, 1.01999, -0.99106, -2.19106, 1.01999, -1.19106, -2.19106, 1.01999, -1.89106, -2.49106, 1.01999, -2.09106, -2.49106, 1.01999, 2.30894, -2.99106, 1.01999, 3.00894, -2.49106, 1.01999, -3.99106, -2.99106, 1.01999, -3.99106, 4.50894, 1.01999, 0.00893784, 4.00894, 1.01999, 0.00893784, 4.00894, 1.01999, 2.30894, 4.50894, 1.01999, 3.00894, -2.29106, 1.01999, 2.50894, 3.80894, 1.01999, 2.50894, -1.49106, 0.01999, -2.79106, -1.89106, 0.01999, -2.79106, -1.89106, 0.01999, -2.39106, -1.49106, 0.01999, -2.09106, -1.49106, 0.01999, -0.891062, -1.69106, 0.01999, -0.691061, -0.99106, 0.01999, -0.591061, 1.80894, 0.01999, -2.39106, 1.40894, 0.01999, -2.69106, 1.40894, 0.01999, -3.09106, 1.10894, 0.01999, -3.39106, 0.608938, 0.01999, -3.39106, -8.69106, 0.51999, -3.49106, -11.3911, 0.51999, -3.49106, -11.3911, 0.51999, -3.19106, -8.49106, 0.51999, -2.99106, -11.5911, 0.51999, -3.09106, -6.89106, 0.51999, -3.19106, -7.09106, 0.51999, -3.09106, -4.49106, 0.51999, -2.99106, -4.49106, 0.51999, -3.49106, -6.89106, 0.51999, -3.49106, 11.4089, 0.01999, 0.10894, -0.891062, 0.01999, 0.60894, -1.49106, 0.01999, 0.60894, -1.49106, 0.01999, 1.10894, -1.89106, 0.01999, 1.40894, -1.89106, 0.01999, 1.90894, 3.40894, 0.01999, 1.90894, -0.591061, 0.01999, 0.208939, -0.691061, 0.01999, -0.391062, 12.0089, 0.51999, 0.508938, 12.0089, 0.51999, 1.00894, 12.5089, 0.51999, 1.00894, 12.5089, 0.51999, 0.508938, -7.99106, 0.01999, 16.0089, -7.99106, 0.01999, 24.5089, 0.50894, 0.01999, 24.5089, 0.50894, 0.01999, 16.0089, 2.50894, 0.01999, 16.8089, 2.50894, 0.01999, 16.5089, 2.00894, 0.01999, 16.5089, 2.00894, 0.01999, 17.5089, 2.00894, 0.01999, 19.2089, 2.50894, 0.01999, 19.0089, 2.50894, 0.01999, 18.6089, 2.30894, 0.01999, 18.5089, 1.50894, 0.01999, 18.5089, 2.50894, 0.01999, 20.5089, 2.50894, 0.01999, 20.0089, 2.00894, 0.01999, 19.8089, 1.50894, 0.01999, 20.5089, 2.50894, 0.01999, 18.3089, 2.70894, 0.01999, 18.4089, 4.50894, 0.01999, 18.2089, 5.00894, 0.01999, 18.0089, 5.00894, 0.01999, 17.5089, 3.20894, 0.01999, 17.5089, 2.50894, 0.01999, 17.7089, 4.50894, 0.01999, 18.5089, 3.00894, 0.01999, 17.0089) -polygons = [PackedInt32Array(2, 1, 0), PackedInt32Array(5, 4, 3), PackedInt32Array(5, 3, 6), PackedInt32Array(6, 3, 7), PackedInt32Array(2, 0, 8), PackedInt32Array(8, 0, 9), PackedInt32Array(12, 11, 10), PackedInt32Array(15, 14, 13), PackedInt32Array(9, 16, 8), PackedInt32Array(8, 16, 19), PackedInt32Array(8, 19, 18), PackedInt32Array(8, 18, 17), PackedInt32Array(7, 12, 6), PackedInt32Array(6, 12, 20), PackedInt32Array(20, 12, 10), PackedInt32Array(22, 21, 16), PackedInt32Array(16, 21, 19), PackedInt32Array(23, 20, 10), PackedInt32Array(17, 18, 13), PackedInt32Array(13, 18, 23), PackedInt32Array(25, 24, 11), PackedInt32Array(11, 24, 10), PackedInt32Array(23, 10, 13), PackedInt32Array(13, 10, 15), PackedInt32Array(15, 10, 26), PackedInt32Array(29, 28, 27), PackedInt32Array(33, 32, 34), PackedInt32Array(34, 32, 31), PackedInt32Array(34, 31, 30), PackedInt32Array(27, 36, 35), PackedInt32Array(38, 37, 30), PackedInt32Array(30, 37, 34), PackedInt32Array(34, 39, 33), PackedInt32Array(33, 39, 29), PackedInt32Array(33, 29, 27), PackedInt32Array(33, 27, 35), PackedInt32Array(40, 29, 41), PackedInt32Array(41, 29, 39), PackedInt32Array(43, 42, 44), PackedInt32Array(44, 42, 45), PackedInt32Array(47, 46, 48), PackedInt32Array(48, 46, 49), PackedInt32Array(50, 49, 42), PackedInt32Array(42, 49, 52), PackedInt32Array(42, 52, 45), PackedInt32Array(45, 52, 51), PackedInt32Array(51, 53, 45), PackedInt32Array(55, 54, 48), PackedInt32Array(48, 54, 56), PackedInt32Array(48, 56, 47), PackedInt32Array(52, 49, 57), PackedInt32Array(57, 49, 58), PackedInt32Array(58, 49, 46), PackedInt32Array(61, 60, 62), PackedInt32Array(62, 60, 59), PackedInt32Array(65, 64, 63), PackedInt32Array(51, 66, 53), PackedInt32Array(53, 66, 67), PackedInt32Array(67, 66, 68), PackedInt32Array(71, 70, 63), PackedInt32Array(63, 70, 69), PackedInt32Array(63, 69, 65), PackedInt32Array(63, 68, 71), PackedInt32Array(71, 68, 66), PackedInt32Array(71, 66, 72), PackedInt32Array(73, 54, 74), PackedInt32Array(74, 54, 55), PackedInt32Array(74, 55, 75), PackedInt32Array(75, 55, 76), PackedInt32Array(79, 78, 80), PackedInt32Array(80, 78, 77), PackedInt32Array(80, 77, 81), PackedInt32Array(83, 82, 75), PackedInt32Array(75, 82, 85), PackedInt32Array(75, 85, 74), PackedInt32Array(74, 85, 84), PackedInt32Array(80, 85, 79), PackedInt32Array(79, 85, 86), PackedInt32Array(86, 85, 82), PackedInt32Array(88, 87, 89), PackedInt32Array(89, 87, 90), PackedInt32Array(94, 93, 91), PackedInt32Array(91, 93, 92), PackedInt32Array(90, 94, 89), PackedInt32Array(89, 94, 91), PackedInt32Array(96, 95, 97), PackedInt32Array(97, 95, 98), PackedInt32Array(101, 100, 99), PackedInt32Array(102, 105, 103), PackedInt32Array(103, 105, 104), PackedInt32Array(99, 106, 101), PackedInt32Array(101, 106, 107), PackedInt32Array(105, 108, 109), PackedInt32Array(109, 108, 97), PackedInt32Array(109, 97, 98), PackedInt32Array(102, 108, 105), PackedInt32Array(107, 106, 110), PackedInt32Array(110, 106, 109), PackedInt32Array(110, 109, 98), PackedInt32Array(110, 98, 111), PackedInt32Array(104, 114, 103), PackedInt32Array(103, 114, 113), PackedInt32Array(103, 113, 112), PackedInt32Array(117, 116, 115), PackedInt32Array(115, 24, 117), PackedInt32Array(117, 24, 114), PackedInt32Array(114, 24, 113), PackedInt32Array(113, 24, 25), PackedInt32Array(119, 118, 120), PackedInt32Array(120, 118, 121), PackedInt32Array(123, 122, 124), PackedInt32Array(124, 122, 125), PackedInt32Array(126, 124, 127), PackedInt32Array(127, 124, 125), PackedInt32Array(129, 128, 130), PackedInt32Array(130, 128, 132), PackedInt32Array(130, 132, 131), PackedInt32Array(134, 133, 135), PackedInt32Array(135, 133, 136), PackedInt32Array(125, 122, 135), PackedInt32Array(135, 122, 137), PackedInt32Array(135, 137, 134), PackedInt32Array(128, 129, 138), PackedInt32Array(138, 129, 133), PackedInt32Array(133, 129, 136), PackedInt32Array(139, 95, 96), PackedInt32Array(96, 140, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 141, 143), PackedInt32Array(143, 141, 144), PackedInt32Array(146, 145, 147), PackedInt32Array(147, 145, 148), PackedInt32Array(148, 145, 150), PackedInt32Array(148, 150, 149), PackedInt32Array(153, 152, 151), PackedInt32Array(156, 155, 154), PackedInt32Array(159, 146, 157), PackedInt32Array(157, 146, 158), PackedInt32Array(144, 141, 160), PackedInt32Array(160, 141, 140), PackedInt32Array(160, 140, 148), PackedInt32Array(157, 156, 159), PackedInt32Array(159, 156, 151), PackedInt32Array(151, 156, 154), PackedInt32Array(151, 154, 153), PackedInt32Array(161, 112, 148), PackedInt32Array(148, 112, 147), PackedInt32Array(161, 103, 112), PackedInt32Array(160, 148, 162), PackedInt32Array(162, 148, 149), PackedInt32Array(162, 149, 163), PackedInt32Array(147, 158, 146), PackedInt32Array(99, 100, 164), PackedInt32Array(164, 100, 165), PackedInt32Array(168, 167, 166), PackedInt32Array(164, 165, 117), PackedInt32Array(117, 165, 116), PackedInt32Array(116, 165, 169), PackedInt32Array(169, 165, 166), PackedInt32Array(165, 168, 166), PackedInt32Array(172, 171, 170), PackedInt32Array(174, 173, 172), PackedInt32Array(170, 175, 172), PackedInt32Array(172, 175, 174), PackedInt32Array(177, 176, 178), PackedInt32Array(178, 176, 180), PackedInt32Array(178, 180, 179), PackedInt32Array(182, 181, 183), PackedInt32Array(183, 181, 184), PackedInt32Array(180, 185, 179), PackedInt32Array(179, 185, 181), PackedInt32Array(181, 185, 184), PackedInt32Array(187, 186, 188), PackedInt32Array(188, 186, 189), PackedInt32Array(191, 190, 192), PackedInt32Array(192, 190, 189), PackedInt32Array(193, 188, 190), PackedInt32Array(190, 188, 189), PackedInt32Array(193, 194, 188), PackedInt32Array(196, 195, 197), PackedInt32Array(197, 195, 198), PackedInt32Array(200, 199, 201), PackedInt32Array(201, 199, 198), PackedInt32Array(195, 202, 198), PackedInt32Array(198, 202, 203), PackedInt32Array(198, 203, 201), PackedInt32Array(207, 206, 204), PackedInt32Array(204, 206, 205), PackedInt32Array(209, 208, 210), PackedInt32Array(210, 208, 211), PackedInt32Array(211, 208, 212), PackedInt32Array(213, 203, 214), PackedInt32Array(214, 203, 215), PackedInt32Array(215, 203, 216), PackedInt32Array(216, 203, 202), PackedInt32Array(218, 215, 217), PackedInt32Array(217, 215, 216), PackedInt32Array(214, 219, 213), PackedInt32Array(212, 208, 220), PackedInt32Array(220, 208, 218), PackedInt32Array(220, 218, 217), PackedInt32Array(220, 217, 221), PackedInt32Array(222, 3, 4), PackedInt32Array(222, 4, 224), PackedInt32Array(224, 4, 223), PackedInt32Array(223, 21, 145), PackedInt32Array(145, 21, 22), PackedInt32Array(145, 22, 150), PackedInt32Array(145, 224, 223), PackedInt32Array(226, 225, 227), PackedInt32Array(227, 225, 228), PackedInt32Array(228, 225, 229), PackedInt32Array(234, 233, 230), PackedInt32Array(230, 233, 231), PackedInt32Array(231, 233, 232), PackedInt32Array(235, 227, 230), PackedInt32Array(230, 227, 228), PackedInt32Array(230, 228, 234), PackedInt32Array(234, 228, 236), PackedInt32Array(237, 77, 225), PackedInt32Array(225, 77, 229), PackedInt32Array(229, 77, 78), PackedInt32Array(229, 78, 238), PackedInt32Array(240, 239, 241), PackedInt32Array(241, 239, 242), PackedInt32Array(245, 244, 243), PackedInt32Array(247, 246, 245), PackedInt32Array(245, 243, 247), PackedInt32Array(247, 243, 248), PackedInt32Array(250, 249, 251), PackedInt32Array(251, 249, 253), PackedInt32Array(251, 253, 252), PackedInt32Array(201, 253, 200), PackedInt32Array(200, 253, 249), PackedInt32Array(255, 254, 250), PackedInt32Array(250, 254, 249), PackedInt32Array(255, 257, 254), PackedInt32Array(254, 257, 256), PackedInt32Array(254, 256, 258), PackedInt32Array(251, 259, 250), PackedInt32Array(260, 248, 256), PackedInt32Array(256, 248, 258), PackedInt32Array(258, 248, 243), PackedInt32Array(258, 243, 261), PackedInt32Array(252, 262, 251), PackedInt32Array(264, 263, 265), PackedInt32Array(265, 263, 266), PackedInt32Array(267, 265, 268), PackedInt32Array(268, 265, 266), PackedInt32Array(210, 269, 209), PackedInt32Array(209, 269, 271), PackedInt32Array(209, 271, 270), PackedInt32Array(263, 273, 272), PackedInt32Array(272, 274, 263), PackedInt32Array(263, 274, 266), PackedInt32Array(276, 275, 268), PackedInt32Array(276, 268, 277), PackedInt32Array(277, 268, 278), PackedInt32Array(278, 268, 279), PackedInt32Array(279, 268, 266), PackedInt32Array(272, 280, 274), PackedInt32Array(271, 281, 277), PackedInt32Array(285, 287, 282), PackedInt32Array(282, 287, 286), PackedInt32Array(286, 287, 284), PackedInt32Array(286, 284, 283), PackedInt32Array(290, 289, 288), PackedInt32Array(285, 282, 266), PackedInt32Array(266, 282, 279), PackedInt32Array(270, 271, 288), PackedInt32Array(288, 271, 277), PackedInt32Array(288, 277, 290), PackedInt32Array(290, 277, 278), PackedInt32Array(292, 291, 279), PackedInt32Array(279, 291, 278), PackedInt32Array(277, 293, 276), PackedInt32Array(297, 296, 294), PackedInt32Array(294, 296, 295), PackedInt32Array(301, 300, 298), PackedInt32Array(298, 300, 299), PackedInt32Array(219, 214, 302), PackedInt32Array(303, 219, 304), PackedInt32Array(304, 219, 302), PackedInt32Array(304, 302, 288), PackedInt32Array(304, 288, 289), PackedInt32Array(142, 143, 305), PackedInt32Array(305, 143, 306), PackedInt32Array(167, 307, 308), PackedInt32Array(308, 307, 309), PackedInt32Array(306, 310, 305), PackedInt32Array(305, 310, 111), PackedInt32Array(111, 310, 110), PackedInt32Array(110, 310, 307), PackedInt32Array(308, 166, 167), PackedInt32Array(312, 311, 310), PackedInt32Array(310, 311, 313), PackedInt32Array(310, 313, 307), PackedInt32Array(307, 313, 309), PackedInt32Array(315, 314, 316), PackedInt32Array(316, 314, 317), PackedInt32Array(319, 318, 320), PackedInt32Array(320, 318, 317), PackedInt32Array(317, 314, 320), PackedInt32Array(322, 321, 323), PackedInt32Array(323, 321, 324), PackedInt32Array(325, 324, 326), PackedInt32Array(326, 324, 327), PackedInt32Array(303, 304, 328), PackedInt32Array(328, 304, 329), PackedInt32Array(329, 327, 328), PackedInt32Array(328, 327, 330), PackedInt32Array(330, 327, 321), PackedInt32Array(321, 327, 324), PackedInt32Array(321, 331, 330), PackedInt32Array(330, 332, 328), PackedInt32Array(323, 333, 322), PackedInt32Array(335, 334, 336), PackedInt32Array(336, 334, 338), PackedInt32Array(336, 338, 337), PackedInt32Array(340, 339, 341), PackedInt32Array(341, 339, 342), PackedInt32Array(344, 343, 333), PackedInt32Array(333, 343, 322), PackedInt32Array(322, 343, 345), PackedInt32Array(347, 346, 339), PackedInt32Array(339, 346, 348), PackedInt32Array(339, 348, 342), PackedInt32Array(351, 350, 349), PackedInt32Array(346, 352, 348), PackedInt32Array(348, 352, 350), PackedInt32Array(348, 350, 351), PackedInt32Array(353, 345, 262), PackedInt32Array(262, 345, 349), PackedInt32Array(349, 345, 354), PackedInt32Array(349, 354, 351), PackedInt32Array(337, 351, 336), PackedInt32Array(336, 351, 354), PackedInt32Array(345, 343, 354), PackedInt32Array(262, 252, 353), PackedInt32Array(358, 357, 355), PackedInt32Array(355, 357, 356), PackedInt32Array(360, 359, 361), PackedInt32Array(361, 359, 362), PackedInt32Array(363, 361, 364), PackedInt32Array(364, 361, 362), PackedInt32Array(367, 366, 365), PackedInt32Array(370, 369, 368), PackedInt32Array(371, 370, 372), PackedInt32Array(372, 370, 365), PackedInt32Array(365, 370, 368), PackedInt32Array(365, 368, 367), PackedInt32Array(375, 374, 373), PackedInt32Array(375, 377, 376), PackedInt32Array(381, 380, 378), PackedInt32Array(378, 380, 379), PackedInt32Array(383, 371, 382), PackedInt32Array(382, 371, 372), PackedInt32Array(385, 384, 386), PackedInt32Array(386, 384, 381), PackedInt32Array(382, 387, 383), PackedInt32Array(383, 387, 374), PackedInt32Array(374, 387, 373), PackedInt32Array(384, 377, 381), PackedInt32Array(381, 377, 380), PackedInt32Array(380, 377, 373), PackedInt32Array(373, 377, 375), PackedInt32Array(387, 388, 373), PackedInt32Array(389, 325, 390), PackedInt32Array(390, 325, 326), PackedInt32Array(390, 326, 391), PackedInt32Array(391, 326, 392), PackedInt32Array(394, 393, 395), PackedInt32Array(395, 393, 396), PackedInt32Array(398, 397, 399), PackedInt32Array(399, 397, 400), PackedInt32Array(402, 291, 403), PackedInt32Array(403, 291, 401), PackedInt32Array(401, 291, 292), PackedInt32Array(398, 399, 391), PackedInt32Array(391, 399, 390), PackedInt32Array(390, 399, 404), PackedInt32Array(393, 405, 396), PackedInt32Array(396, 405, 406), PackedInt32Array(407, 400, 408), PackedInt32Array(408, 400, 397), PackedInt32Array(408, 397, 403), PackedInt32Array(408, 403, 401), PackedInt32Array(406, 405, 409), PackedInt32Array(409, 408, 406), PackedInt32Array(406, 408, 401), PackedInt32Array(411, 410, 412), PackedInt32Array(412, 410, 413), PackedInt32Array(415, 414, 416), PackedInt32Array(416, 414, 417), PackedInt32Array(418, 416, 419), PackedInt32Array(419, 416, 417), PackedInt32Array(423, 422, 420), PackedInt32Array(420, 422, 421), PackedInt32Array(425, 424, 426), PackedInt32Array(426, 424, 427), PackedInt32Array(376, 429, 428), PackedInt32Array(431, 430, 424), PackedInt32Array(424, 430, 427), PackedInt32Array(427, 430, 428), PackedInt32Array(430, 432, 428), PackedInt32Array(428, 432, 376), PackedInt32Array(376, 432, 433), PackedInt32Array(376, 433, 375), PackedInt32Array(162, 163, 432), PackedInt32Array(432, 163, 433), PackedInt32Array(436, 435, 434), PackedInt32Array(437, 0, 1), PackedInt32Array(436, 434, 438), PackedInt32Array(438, 434, 439), PackedInt32Array(439, 434, 388), PackedInt32Array(388, 434, 440), PackedInt32Array(437, 1, 439), PackedInt32Array(439, 1, 438), PackedInt32Array(440, 373, 388), PackedInt32Array(442, 441, 443), PackedInt32Array(443, 441, 444), PackedInt32Array(446, 445, 447), PackedInt32Array(447, 445, 448), PackedInt32Array(449, 443, 444), PackedInt32Array(444, 450, 449), PackedInt32Array(449, 450, 451), PackedInt32Array(455, 454, 452), PackedInt32Array(452, 454, 453), PackedInt32Array(451, 450, 456), PackedInt32Array(459, 458, 456), PackedInt32Array(456, 458, 451), PackedInt32Array(451, 458, 457), PackedInt32Array(460, 457, 461), PackedInt32Array(461, 457, 462), PackedInt32Array(463, 378, 379), PackedInt32Array(458, 462, 457), PackedInt32Array(465, 464, 466), PackedInt32Array(466, 464, 467), PackedInt32Array(452, 469, 455), PackedInt32Array(455, 469, 468), PackedInt32Array(471, 459, 470), PackedInt32Array(470, 459, 456), PackedInt32Array(447, 472, 446), PackedInt32Array(470, 473, 471), PackedInt32Array(471, 473, 474), PackedInt32Array(474, 473, 475), PackedInt32Array(475, 473, 476), PackedInt32Array(473, 465, 476), PackedInt32Array(476, 465, 466), PackedInt32Array(434, 435, 475), PackedInt32Array(475, 435, 474), PackedInt32Array(463, 379, 477), PackedInt32Array(477, 379, 468), PackedInt32Array(448, 445, 477), PackedInt32Array(480, 479, 478), PackedInt32Array(464, 481, 467), PackedInt32Array(484, 483, 482), PackedInt32Array(454, 480, 453), PackedInt32Array(453, 480, 482), PackedInt32Array(482, 480, 478), PackedInt32Array(482, 478, 484), PackedInt32Array(477, 468, 469), PackedInt32Array(469, 485, 477), PackedInt32Array(477, 485, 448), PackedInt32Array(485, 466, 448), PackedInt32Array(448, 466, 486), PackedInt32Array(486, 466, 467), PackedInt32Array(14, 15, 481), PackedInt32Array(481, 15, 467), PackedInt32Array(490, 489, 487), PackedInt32Array(487, 489, 488), PackedInt32Array(493, 492, 491), PackedInt32Array(496, 495, 494), PackedInt32Array(497, 498, 284), PackedInt32Array(284, 498, 283), PackedInt32Array(493, 491, 499), PackedInt32Array(499, 491, 500), PackedInt32Array(500, 491, 494), PackedInt32Array(494, 491, 496), PackedInt32Array(497, 500, 498), PackedInt32Array(498, 500, 283), PackedInt32Array(283, 500, 502), PackedInt32Array(502, 500, 494), PackedInt32Array(502, 494, 501), PackedInt32Array(503, 496, 504), PackedInt32Array(504, 496, 491), PackedInt32Array(507, 506, 505), PackedInt32Array(426, 507, 425), PackedInt32Array(425, 507, 508), PackedInt32Array(505, 510, 509), PackedInt32Array(508, 507, 312), PackedInt32Array(312, 507, 505), PackedInt32Array(312, 505, 311), PackedInt32Array(311, 505, 509), PackedInt32Array(334, 335, 511), PackedInt32Array(511, 335, 512), PackedInt32Array(514, 513, 512), PackedInt32Array(512, 513, 515), PackedInt32Array(515, 513, 516), PackedInt32Array(516, 513, 517), PackedInt32Array(513, 404, 517), PackedInt32Array(517, 404, 399), PackedInt32Array(520, 519, 512), PackedInt32Array(512, 519, 511), PackedInt32Array(511, 519, 518), PackedInt32Array(512, 515, 520), PackedInt32Array(524, 523, 521), PackedInt32Array(521, 523, 522), PackedInt32Array(526, 525, 527), PackedInt32Array(527, 525, 528), PackedInt32Array(530, 529, 531), PackedInt32Array(531, 529, 532), PackedInt32Array(528, 525, 533), PackedInt32Array(533, 525, 534), PackedInt32Array(533, 534, 529), PackedInt32Array(529, 534, 532), PackedInt32Array(531, 537, 530), PackedInt32Array(530, 537, 536), PackedInt32Array(530, 536, 535), PackedInt32Array(540, 539, 538), PackedInt32Array(543, 545, 544), PackedInt32Array(544, 545, 542), PackedInt32Array(544, 542, 541), PackedInt32Array(540, 538, 546), PackedInt32Array(546, 538, 549), PackedInt32Array(546, 549, 548), PackedInt32Array(546, 548, 547), PackedInt32Array(543, 544, 549), PackedInt32Array(549, 544, 541), PackedInt32Array(549, 541, 550), PackedInt32Array(549, 550, 548), PackedInt32Array(552, 551, 553), PackedInt32Array(553, 551, 549), PackedInt32Array(549, 538, 553), PackedInt32Array(554, 551, 552), PackedInt32Array(492, 493, 554), PackedInt32Array(554, 493, 551), PackedInt32Array(558, 557, 555), PackedInt32Array(555, 557, 556), PackedInt32Array(560, 559, 561), PackedInt32Array(561, 559, 563), PackedInt32Array(561, 563, 562), PackedInt32Array(561, 562, 564), PackedInt32Array(566, 565, 563), PackedInt32Array(563, 565, 562), PackedInt32Array(561, 564, 567), PackedInt32Array(567, 564, 569), PackedInt32Array(567, 569, 568), PackedInt32Array(572, 571, 573), PackedInt32Array(573, 571, 570), PackedInt32Array(574, 573, 570), PackedInt32Array(576, 575, 577), PackedInt32Array(577, 575, 578), PackedInt32Array(577, 578, 570), PackedInt32Array(570, 578, 574), PackedInt32Array(574, 579, 573), PackedInt32Array(583, 582, 580), PackedInt32Array(580, 582, 581), PackedInt32Array(586, 585, 584), PackedInt32Array(584, 588, 587), PackedInt32Array(586, 584, 587), PackedInt32Array(589, 586, 590), PackedInt32Array(590, 586, 587), PackedInt32Array(592, 591, 593), PackedInt32Array(593, 591, 594), PackedInt32Array(593, 594, 509), PackedInt32Array(541, 542, 597), PackedInt32Array(597, 542, 595), PackedInt32Array(595, 542, 596), PackedInt32Array(595, 594, 598), PackedInt32Array(598, 594, 599), PackedInt32Array(599, 594, 591), PackedInt32Array(599, 591, 600), PackedInt32Array(595, 596, 594), PackedInt32Array(599, 601, 598), PackedInt32Array(509, 510, 593), PackedInt32Array(603, 602, 604), PackedInt32Array(607, 606, 605), PackedInt32Array(610, 609, 611), PackedInt32Array(611, 609, 608), PackedInt32Array(613, 602, 612), PackedInt32Array(615, 614, 611), PackedInt32Array(617, 616, 618), PackedInt32Array(618, 616, 619), PackedInt32Array(613, 612, 620), PackedInt32Array(621, 618, 619), PackedInt32Array(615, 611, 608), PackedInt32Array(615, 608, 607), PackedInt32Array(605, 613, 607), PackedInt32Array(607, 613, 615), PackedInt32Array(620, 621, 613), PackedInt32Array(613, 621, 619), PackedInt32Array(613, 605, 604), PackedInt32Array(613, 604, 602), PackedInt32Array(623, 622, 624), PackedInt32Array(624, 622, 625), PackedInt32Array(628, 627, 626), PackedInt32Array(626, 625, 628), PackedInt32Array(628, 625, 630), PackedInt32Array(628, 630, 629), PackedInt32Array(631, 630, 632), PackedInt32Array(632, 630, 633), PackedInt32Array(503, 504, 633), PackedInt32Array(622, 503, 625), PackedInt32Array(625, 503, 633), PackedInt32Array(625, 633, 630), PackedInt32Array(636, 635, 634), PackedInt32Array(636, 634, 638), PackedInt32Array(638, 634, 637), PackedInt32Array(639, 641, 640), PackedInt32Array(643, 642, 639), PackedInt32Array(639, 642, 641), PackedInt32Array(385, 386, 644), PackedInt32Array(599, 600, 447), PackedInt32Array(447, 600, 385), PackedInt32Array(447, 385, 644), PackedInt32Array(447, 644, 472), PackedInt32Array(647, 646, 645), PackedInt32Array(648, 647, 649), PackedInt32Array(647, 645, 649), PackedInt32Array(649, 645, 650), PackedInt32Array(546, 547, 629), PackedInt32Array(629, 547, 650), PackedInt32Array(629, 650, 651), PackedInt32Array(651, 650, 645), PackedInt32Array(652, 628, 629), PackedInt32Array(651, 652, 629), PackedInt32Array(656, 655, 653), PackedInt32Array(653, 655, 654), PackedInt32Array(660, 659, 657), PackedInt32Array(657, 659, 658), PackedInt32Array(662, 661, 663), PackedInt32Array(663, 661, 664), PackedInt32Array(667, 666, 668), PackedInt32Array(668, 666, 665), PackedInt32Array(668, 665, 669), PackedInt32Array(671, 670, 672), PackedInt32Array(672, 670, 673), PackedInt32Array(675, 667, 674), PackedInt32Array(674, 667, 668), PackedInt32Array(677, 676, 678), PackedInt32Array(678, 676, 679), PackedInt32Array(674, 680, 675), PackedInt32Array(675, 680, 679), PackedInt32Array(675, 679, 676), PackedInt32Array(675, 676, 681), PackedInt32Array(682, 679, 661), PackedInt32Array(661, 679, 680), PackedInt32Array(661, 680, 664), PackedInt32Array(672, 673, 665), PackedInt32Array(665, 673, 669)] +vertices = PackedVector3Array(7.75894, 1.01999, -27.3411, 8.25894, 1.01999, -27.4411, 8.25894, 1.01999, -31.5411, 7.75894, 1.01999, -32.2411, 8.45894, 1.01999, -31.7411, 15.0589, 1.01999, -31.7411, 15.1589, 1.01999, -32.2411, 15.2589, 1.01999, -31.5411, 15.7589, 1.01999, -31.5411, 15.9589, 1.01999, -31.7411, 15.8589, 1.01999, -32.2411, 15.2589, 1.01999, -27.4411, 15.7589, 1.01999, -27.4411, 15.0589, 1.01999, -27.2411, 17.2589, 1.01999, -26.7411, 15.9589, 1.01999, -27.2411, 17.2589, 1.01999, -27.2411, 12.7589, 1.01999, -27.2411, 12.7589, 1.01999, -26.7411, 27.5589, 1.01999, -24.2411, 27.0589, 1.01999, -23.8411, 27.0589, 1.01999, -23.7411, 31.7589, 1.01999, -23.7411, 31.0589, 1.01999, -24.2411, 31.0589, 1.01999, -31.7411, 31.7589, 1.01999, -32.2411, 31.2589, 1.01999, -31.5411, 31.2589, 1.01999, -24.4411, 32.3589, 0.01999, -24.0411, 48.2589, 0.01999, -23.9411, 48.2589, 0.01999, -32.2411, 32.3589, 0.01999, -32.2411, 11.3589, 0.01999, -27.5411, 12.1589, 0.01999, -27.5411, 12.3589, 0.01999, -27.8411, 13.8589, 0.01999, -30.2411, 13.8589, 0.01999, -30.7411, 11.1589, 0.01999, -27.8411, 14.2589, 0.01999, -31.1411, 8.85894, 0.01999, -31.1411, 14.6589, 0.01999, -27.8411, 14.6589, 0.01999, -29.8411, 14.2589, 0.01999, -29.8411, 8.85894, 0.01999, -27.8411, 16.3589, 0.01999, -31.1411, 16.3589, 0.01999, -30.7411, 16.7589, 0.01999, -31.0411, 17.2589, 0.01999, -31.1411, 17.4589, 0.01999, -30.8411, 17.7589, 0.01999, -31.0411, 21.8589, 0.01999, -28.7411, 22.1589, 0.01999, -29.0411, 21.8589, 0.01999, -29.2411, 17.7589, 0.01999, -29.8411, 17.4589, 0.01999, -30.1411, 17.2589, 0.01999, -29.8411, 17.6589, 0.01999, -27.8411, 21.8589, 0.01999, -29.8411, 20.8589, 0.01999, -30.7411, 16.7589, 0.01999, -29.8411, 16.3589, 0.01999, -30.2411, 16.3589, 0.01999, -27.8411, 17.8589, 0.01999, -27.5411, 18.2589, 0.01999, -29.8411, 18.6589, 0.01999, -30.2411, 21.9589, 0.01999, -28.1411, 18.6589, 0.01999, -30.7411, 20.8589, 0.01999, -31.1411, 18.2589, 0.01999, -31.1411, 24.1589, 0.01999, -27.7411, 24.1589, 0.01999, -27.5411, 24.8589, 0.01999, -27.5411, 23.1589, 0.01999, -30.2411, 23.1589, 0.01999, -29.6411, 23.6589, 0.01999, -29.2411, 25.2589, 0.01999, -28.1411, 25.6589, 0.01999, -28.1411, 25.6589, 0.01999, -31.1411, 23.6589, 0.01999, -28.7411, 23.3589, 0.01999, -28.4411, 22.2589, 0.01999, -31.1411, 27.1589, 0.01999, -25.7411, 26.8589, 0.01999, -25.4411, 27.4589, 0.01999, -24.8411, 26.6589, 0.01999, -27.2411, 26.6589, 0.01999, -26.6411, 27.1589, 0.01999, -26.2411, 30.6589, 0.01999, -24.8411, 30.6589, 0.01999, -31.1411, 17.5589, 0.01999, -26.1411, 16.9589, 0.01999, -26.1411, 16.9589, 0.01999, -25.8411, 17.6589, 0.01999, -25.8411, 17.8589, 0.01999, -26.4411, 17.8589, 0.01999, -25.6411, 21.8589, 0.01999, -23.6411, 21.8589, 0.01999, -19.3411, 22.6589, 0.01999, -19.3411, 22.6589, 0.01999, -24.6411, 23.4589, 0.01999, -24.8411, 23.4589, 0.01999, -26.8411, 23.2589, 0.01999, -26.8411, 22.8589, 0.01999, -24.8411, 21.6589, 0.01999, -23.8411, 17.8589, 0.01999, -23.8411, 10.1589, 0.01999, -23.8411, 10.2589, 0.01999, -24.1411, 9.65894, 0.01999, -24.3411, 8.85894, 0.01999, -23.8411, 15.6589, 0.01999, -23.3411, 15.8589, 0.01999, -22.7411, 16.1589, 0.01999, -22.7411, 16.1589, 0.01999, -24.1411, 12.3589, 0.01999, -26.1411, 11.0589, 0.01999, -26.1411, 9.85894, 0.01999, -25.8411, 14.1589, 0.01999, -25.8411, 8.85894, 0.01999, -26.1411, 9.65894, 0.01999, -25.6411, 14.8589, 0.01999, -24.1411, 14.3589, 0.01999, -23.3411, 14.6589, 0.01999, -24.3411, 14.3589, 0.01999, -25.6411, 14.6589, 0.01999, -25.6411, 14.8589, 0.01999, -25.8411, 11.3589, 0.01999, -26.4411, 12.1589, 0.01999, -26.3411, 25.3589, 0.01999, -25.7411, 25.6589, 0.01999, -26.0411, 25.3589, 0.01999, -26.2411, 24.8589, 0.01999, -27.2411, 24.1589, 0.01999, -27.2411, 25.7589, 0.01999, -24.8411, 25.3589, 0.01999, -25.2411, 25.3589, 0.01999, -26.8411, 23.7589, 0.01999, -26.8411, 8.45894, 1.01999, -27.2411, 8.25894, 1.01999, -26.5411, 8.45894, 1.01999, -26.7411, 8.45894, 1.01999, -22.7411, 9.75894, 1.01999, -22.7411, 9.75894, 1.01999, -23.2411, 8.45894, 1.01999, -23.2411, 8.25894, 1.01999, -23.4411, 8.25894, 1.01999, -22.5411, 7.75894, 1.01999, -18.2411, 8.45894, 1.01999, -18.7411, 8.25894, 1.01999, -18.9411, 10.7589, 1.01999, -26.7411, 10.7589, 1.01999, -27.2411, 11.1589, 1.01999, -18.2411, 11.1589, 1.01999, -18.8411, 15.2589, 1.01999, -22.2411, 15.2589, 1.01999, -22.7411, 13.9589, 1.01999, -22.7411, 13.2589, 1.01999, -22.2411, 13.0589, 1.01999, -24.7411, 13.2589, 1.01999, -24.5411, 13.7589, 1.01999, -25.2411, 13.7589, 1.01999, -22.9411, 10.2589, 1.01999, -25.2411, 10.2589, 1.01999, -24.7411, 17.4589, 1.01999, -22.7411, 17.4589, 1.01999, -23.2411, 17.2589, 1.01999, -23.4411, 17.2589, 1.01999, -22.5411, 17.2589, 1.01999, -20.2411, 16.7589, 1.01999, -20.9411, 15.2589, 1.01999, -25.2411, 15.2589, 1.01999, -24.7411, 16.5589, 1.01999, -24.7411, 17.2589, 1.01999, -25.2411, 16.5589, 1.01999, -20.7411, 16.7589, 1.01999, -24.5411, 13.2589, 1.01999, -20.7411, 13.2589, 1.01999, -20.2411, 26.7589, 1.01999, -23.8411, 23.9589, 1.01999, -23.7411, 23.0589, 1.01999, -18.7411, 21.4589, 1.01999, -18.7411, 21.3589, 1.01999, -18.2411, 23.7589, 1.01999, -18.2411, 23.7589, 1.01999, -23.5411, 23.2589, 1.01999, -24.2411, 23.2589, 1.01999, -18.9411, 26.4589, 1.01999, -24.2411, 10.3589, 0.01999, -23.6411, 10.6589, 0.01999, -23.6411, 10.8589, 0.01999, -23.8411, 14.3589, 0.01999, -19.1411, 14.3589, 0.01999, -18.5411, 14.6589, 0.01999, -18.5411, 14.6589, 0.01999, -19.1411, 14.1589, 0.01999, -19.3411, 14.8589, 0.01999, -19.3411, 12.8589, 0.01999, -19.6411, 12.6589, 0.01999, -21.1411, 12.8589, 0.01999, -21.3411, 12.8589, 0.01999, -21.6411, 12.6589, 0.01999, -21.8411, 15.8589, 0.01999, -21.9411, 16.1589, 0.01999, -21.3411, 12.3589, 0.01999, -19.3411, 12.6589, 0.01999, -19.8411, 15.5589, 0.01999, -21.6411, 10.6589, 0.01999, -19.3411, 10.6589, 0.01999, -20.1411, 9.35894, 0.01999, -20.1411, 8.85894, 0.01999, -19.3411, 12.3589, 0.01999, -23.6411, 9.15894, 0.01999, -20.3411, 8.85894, 0.01999, -22.1411, 9.15894, 0.01999, -21.6411, 17.1589, 0.01999, -19.3411, 17.1589, 0.01999, -19.6411, 9.35894, 0.01999, -21.8411, 10.0589, 0.01999, -22.1411, 10.6589, 0.01999, -21.8411, 10.3589, 0.01999, -22.4411, 12.6589, 0.01999, -24.1411, 12.1589, 0.01999, -23.8411, 30.3589, 0.01999, -18.6411, 30.3589, 0.01999, -17.8411, 30.8589, 0.01999, -17.6411, 32.3589, 0.01999, -23.4411, 32.0589, 0.01999, -23.1411, 29.6589, 0.01999, -23.1411, 29.5589, 0.01999, -18.8411, 30.1589, 0.01999, -18.8411, 30.8589, 0.01999, -16.7411, 48.2589, 0.01999, -16.8411, 11.0589, 1.01999, -21.2411, 9.75894, 1.01999, -21.2411, 9.75894, 1.01999, -20.7411, 11.0589, 1.01999, -20.7411, 11.7589, 1.01999, -23.2411, 11.2589, 1.01999, -23.2411, 11.2589, 1.01999, -21.4411, 11.2589, 1.01999, -20.5411, 11.7589, 1.01999, -18.9411, 13.7589, 1.01999, -18.2411, 13.7589, 1.01999, -18.7411, 11.9589, 1.01999, -18.7411, 21.2589, 1.01999, -18.9411, 20.7589, 1.01999, -18.9411, 20.5589, 1.01999, -18.7411, 20.5589, 1.01999, -22.7411, 21.2589, 1.01999, -23.2411, 15.2589, 1.01999, -18.7411, 15.2589, 1.01999, -18.2411, 20.7589, 1.01999, -22.5411, 24.8589, 0.01999, -18.8411, 25.6589, 0.01999, -18.3411, 25.8589, 0.01999, -18.8411, 24.3589, 0.01999, -23.1411, 24.3589, 0.01999, -18.6411, 17.5589, 0.01999, -19.6411, 20.1589, 0.01999, -19.3411, 20.1589, 0.01999, -22.1411, 17.8589, 0.01999, -22.1411, 17.8589, 0.01999, -19.9411, -18.4411, 1.51999, -17.2411, -18.2411, 1.51999, -16.7411, -17.4411, 1.51999, -16.7411, -13.5411, 1.51999, -18.7411, -13.7411, 1.51999, -19.2411, -14.7411, 1.51999, -19.2411, -14.9411, 1.51999, -18.7411, -14.6411, 1.51999, -18.3411, -20.2411, 1.51999, -18.7411, -20.2411, 1.51999, -17.2411, -11.7411, 1.51999, -18.2411, -11.7411, 1.51999, -18.7411, -14.9411, 1.51999, -17.9411, -17.2411, 1.51999, -16.2411, -14.9411, 1.51999, -16.2411, 14.3589, 0.01999, -17.9411, 14.6589, 0.01999, -17.8411, 11.5589, 0.01999, -16.5411, 15.0589, 0.01999, -16.4411, 14.0589, 0.01999, -17.6411, 11.3589, 0.01999, -17.6411, 15.0589, 0.01999, -17.6411, 11.3589, 0.01999, -16.3411, -7.74106, 2.01999, -17.9411, -7.74106, 2.01999, -18.2411, -8.24106, 2.01999, -18.2411, -8.44106, 2.01999, -17.7411, -5.54106, 2.01999, -16.7411, -4.94106, 2.01999, -16.7411, -3.74106, 2.01999, -17.2411, -7.04106, 2.01999, -17.2411, -7.24106, 2.01999, -17.7411, -8.74106, 2.01999, -16.7411, -7.44106, 2.01999, -16.7411, -8.74106, 2.01999, -17.7411, -3.84106, 2.01999, -16.1411, -3.54106, 2.01999, -16.7411, -4.74106, 2.01999, -16.2411, -7.24106, 2.01999, -16.2411, -5.74106, 2.01999, -16.2411, -3.74106, 1.01999, -17.8411, -3.74106, 1.01999, -18.2411, -5.24106, 1.01999, -18.2411, -5.34106, 1.01999, -17.9411, 26.4589, 1.01999, -15.9411, 25.5589, 1.01999, -15.5411, 26.2589, 1.01999, -15.2411, 26.4589, 1.01999, -14.5411, 27.1589, 1.01999, -14.6411, 27.2589, 1.01999, -14.8411, 26.0589, 1.01999, -17.7411, 25.5589, 1.01999, -17.7411, 26.4589, 1.01999, -16.9411, 29.9589, 1.01999, -16.2411, 30.2589, 1.01999, -16.2411, 30.2589, 1.01999, -17.2411, 27.8589, 1.01999, -14.8411, 29.0589, 1.01999, -15.4411, 29.7589, 1.01999, -15.7411, 29.7589, 1.01999, -17.4411, 29.7589, 1.01999, -18.2411, 26.2589, 1.01999, -18.2411, 28.3589, 1.01999, -14.5411, -13.0411, 2.01999, -17.2411, -13.2411, 2.01999, -17.7411, -14.2411, 2.01999, -17.7411, -9.24106, 2.01999, -16.5411, -11.2411, 2.01999, -17.7411, -11.4411, 2.01999, -17.2411, -14.2411, 2.01999, -15.7411, -12.7411, 2.01999, -15.7411, -12.5411, 2.01999, -16.3411, -9.24106, 2.01999, -16.2411, 7.75894, 0.01999, -15.9411, 7.45894, 0.01999, -15.7411, 8.45894, 0.01999, -13.5411, 8.95894, 0.01999, -13.4411, 11.2589, 0.01999, -14.0411, 7.75894, 0.01999, -17.6411, 15.2589, 0.01999, -14.6411, 16.1589, 0.01999, -14.4411, 16.1589, 0.01999, -15.1411, 16.3589, 0.01999, -15.3411, 15.2589, 0.01999, -16.2411, 17.5589, 0.01999, -15.3411, 17.6589, 0.01999, -17.6411, 23.3589, 0.01999, -17.2411, 23.6589, 0.01999, -17.4411, 23.5589, 0.01999, -17.6411, 23.0589, 0.01999, -16.4411, 23.4589, 0.01999, -16.5411, 22.6589, 0.01999, -15.9411, 18.1589, 0.01999, -15.3411, 18.3589, 0.01999, -15.0411, 22.7589, 0.01999, -15.3411, 24.8589, 1.68999, -16.9411, 24.3589, 1.54999, -16.9411, 25.0589, 1.68999, -16.7411, 24.7089, 1.68999, -16.8411, 25.0589, 1.68999, -17.1411, 25.4589, 1.68999, -16.6411, 25.4589, 1.68999, -16.2411, 25.7589, 1.68999, -16.3411, 25.7589, 1.68999, -16.6411, 30.8589, 0.01999, -15.8411, 31.0589, 0.01999, -15.7411, 31.1589, 0.01999, -15.1411, 31.9589, 0.01999, -14.7411, 48.2589, 0.01999, -14.2411, 31.8589, 0.01999, -14.1411, -3.74106, 2.01999, -15.2411, -2.94106, 2.01999, -15.2411, -2.04106, 2.01999, -16.2411, -2.24106, 2.01999, -16.7411, -0.341061, 2.01999, -13.1411, -0.0410614, 2.01999, -14.2411, -0.341061, 2.01999, -14.4411, -1.24106, 2.01999, -14.5411, -1.24106, 2.01999, -13.2411, -0.74106, 2.01999, -15.9411, -0.74106, 2.01999, -16.2411, -2.74106, 2.01999, -14.7411, -1.44106, 2.01999, -14.7411, -0.24106, 2.01999, -15.7411, -19.7411, 0.51999, -16.6411, -19.7411, 0.51999, -16.2411, -18.9411, 0.51999, -16.2411, -18.8411, 0.51999, -16.6411, -18.7411, 0.51999, -15.7411, -17.7411, 0.51999, -15.7411, -17.8411, 0.51999, -16.1411, -18.6411, 0.51999, -16.1411, -7.74106, 1.01999, -15.7411, -7.84106, 1.01999, -16.1411, -8.64106, 1.01999, -16.1411, -8.84106, 1.01999, -15.8411, -5.14106, 1.01999, -15.6411, -5.34106, 1.01999, -15.8411, -5.44106, 1.01999, -15.6411, -4.94106, 1.01999, -15.3411, -6.34106, 1.01999, -15.6411, -6.24106, 1.01999, -15.2411, -3.14106, 1.01999, -14.1411, -3.44106, 1.01999, -13.7411, -3.24106, 1.01999, -13.2411, -1.84106, 1.01999, -13.2411, -1.84106, 1.01999, -14.1411, -4.14106, 1.01999, -14.6411, -4.34106, 1.01999, -14.8411, -4.74106, 1.01999, -15.1411, -4.74106, 1.01999, -13.7411, -4.34106, 1.01999, -15.6411, -3.34106, 1.01999, -14.6411, 24.3589, 1.68999, -15.6411, 24.4589, 1.68999, -15.3411, 24.8589, 1.68999, -15.4411, 24.6589, 1.68999, -15.8411, 7.25894, 0.01999, -12.2411, 8.05894, 0.01999, -12.6411, 8.05894, 0.01999, -13.2411, 6.55894, 0.01999, -12.4411, 4.35894, 0.01999, -11.7411, 6.15894, 0.01999, -12.0411, 6.15894, 0.01999, -11.7411, 4.25894, 0.01999, -15.7411, 23.4589, 0.40999, -15.7411, 23.4589, 0.40999, -15.3411, 23.6589, 0.40999, -15.4411, 23.6589, 0.40999, -15.7411, -17.2411, 0.51999, -14.2411, -16.7411, 0.51999, -14.2411, -16.5411, 0.51999, -14.7411, -15.9411, 0.51999, -14.7411, -15.9411, 0.51999, -15.6411, -17.3411, 0.51999, -15.6411, -11.7411, 1.01999, -15.2411, -11.6411, 1.01999, -15.5411, -12.1411, 1.01999, -15.6411, -12.4411, 1.01999, -15.1411, -12.2411, 1.01999, -15.0411, -14.6411, 1.01999, -15.1411, -14.8411, 1.01999, -15.6411, -15.2411, 1.01999, -15.6411, -15.2411, 1.01999, -14.7411, -12.2411, 1.01999, -14.7411, 12.2589, 0.01999, -15.6411, 12.2589, 0.01999, -14.5411, 12.8589, 0.01999, -14.5411, 13.5589, 0.01999, -14.5411, 14.2589, 0.01999, -14.5411, 14.2589, 0.01999, -15.6411, 13.0589, 0.01999, -14.3411, 13.3589, 0.01999, -14.3411, 11.6589, 0.01999, -13.6411, 10.8589, 0.01999, -12.0411, 10.9589, 0.01999, -11.5411, 12.8589, 0.01999, -13.6411, 14.1589, 0.01999, -10.1411, 14.1589, 0.01999, -13.6411, 13.5589, 0.01999, -13.6411, 13.0589, 0.01999, -13.8411, 13.3589, 0.01999, -13.8411, 23.4589, 0.01999, -14.1411, 23.4589, 0.01999, -14.5411, 23.1589, 0.01999, -14.5411, 23.2589, 0.01999, -14.0411, 18.0589, 0.01999, -13.1411, 17.3589, 0.01999, -10.0411, 17.7589, 0.01999, -9.74106, 18.3589, 0.01999, -13.4411, 22.7589, 0.01999, -14.9411, 23.3589, 0.01999, -13.2411, 23.3089, 0.0399899, -13.6411, 17.7589, 0.01999, -7.94106, 18.7589, 0.01999, -7.94106, 18.7589, 0.01999, -8.44106, 19.0589, 0.01999, -8.74106, 22.3589, 0.01999, -8.74106, 22.7589, 0.01999, -8.34106, 24.0589, 0.01999, -12.5411, 16.9589, 0.01999, -13.1411, 16.8589, 0.01999, -10.0411, 1.25894, 1.01999, -15.2411, 1.25894, 1.01999, -14.8411, 1.85894, 1.01999, -14.6411, 3.75894, 1.01999, -15.2411, 3.35894, 1.01999, -12.6411, 3.35894, 1.01999, -11.8411, 3.75894, 1.01999, -11.7411, 3.15894, 1.01999, -12.8411, 1.85894, 1.01999, -12.8411, -10.3411, 0.01999, -14.3411, -10.4411, 0.01999, -15.1411, -11.1411, 0.01999, -15.1411, -11.9411, 0.01999, -14.1411, -13.1411, 0.01999, -14.1411, -13.1411, 0.01999, -12.5411, -12.2411, 0.01999, -12.2411, -10.0411, 0.01999, -14.1411, -10.0411, 0.01999, -12.3411, -9.74106, 0.51999, -15.1411, -9.74106, 0.51999, -14.7411, -9.24106, 0.51999, -14.7411, -9.24106, 0.51999, -15.1411, -6.34106, 0.01999, -13.8411, -6.14106, 0.01999, -13.5411, -5.84106, 0.01999, -13.8411, -5.84106, 0.01999, -14.6411, -6.64106, 0.01999, -14.6411, -9.34106, 0.01999, -12.3411, -8.34106, 0.01999, -12.4411, -8.44106, 0.01999, -13.4411, -8.94106, 0.01999, -14.1411, -8.14106, 0.01999, -13.8411, -8.64106, 0.01999, -14.4411, -9.14106, 0.01999, -12.0411, -6.84106, 0.01999, -15.1411, -8.64106, 0.01999, -15.1411, 16.7589, 0.51999, -14.7411, 16.7589, 0.51999, -13.7411, 17.7589, 0.51999, -13.7411, 17.7589, 0.51999, -14.7411, 24.8589, 1.68999, -14.0411, 25.1589, 1.54999, -13.3411, 25.2589, 1.68999, -14.0411, 25.0089, 1.68999, -13.6911, 25.2089, 1.68999, -13.6911, 25.7589, 1.68999, -14.4411, 25.6589, 1.68999, -14.7411, 25.3589, 1.68999, -14.7411, 28.8589, 1.68999, -14.0411, 29.1589, 1.54999, -13.3411, 29.2589, 1.68999, -14.0411, 29.0089, 1.68999, -13.6911, 29.2089, 1.68999, -13.6911, 29.7589, 1.68999, -14.4411, 29.6589, 1.68999, -14.7411, 29.3589, 1.68999, -14.7411, 15.2589, 0.01999, -13.9411, 16.1589, 0.01999, -13.3411, 15.0589, 0.01999, -13.7411, 14.1589, 0.01999, -10.0411, 16.3589, 0.01999, -13.1411, 0.058939, 2.01999, -11.7411, 0.25894, 2.01999, -11.2411, 0.75894, 2.01999, -11.0411, 1.45894, 2.01999, -12.2411, 1.25894, 2.01999, -12.4411, 2.05894, 2.01999, -10.7411, 2.25894, 2.01999, -10.2411, 3.25894, 2.01999, -10.2411, 3.25894, 2.01999, -11.2411, 2.75894, 2.01999, -11.4411, 0.75894, 2.01999, -10.7411, 2.75894, 2.01999, -12.2411, -0.24106, 2.01999, -11.7411, 1.25894, 2.01999, -14.2411, 32.0589, 0.01999, -13.8411, 32.0589, 0.01999, -13.0411, 48.2589, 0.01999, -13.0411, -14.2411, 0.51999, -12.7411, -13.7411, 0.51999, -12.7411, -13.7411, 0.51999, -14.1411, -14.3411, 0.51999, -14.1411, 27.7589, 1.68999, -14.0411, 27.3589, 1.68999, -14.1411, 27.2589, 1.68999, -13.9411, 27.7589, 1.68999, -13.7411, 26.8589, 1.68999, -13.8411, 26.1589, 1.68999, -13.7411, 26.3589, 1.68999, -13.4411, 26.6589, 1.68999, -13.4411, 9.75894, 0.01999, -10.7411, 10.0589, 0.01999, -11.1411, 9.65894, 0.01999, -11.4411, 9.05894, 0.01999, -10.9411, 9.25894, 0.01999, -13.2411, 8.35894, 0.01999, -12.2411, 7.45894, 0.01999, -11.5411, 9.25894, 0.01999, -12.5411, 9.65894, 0.01999, -12.0411, 10.0589, 0.01999, -12.4411, 8.95894, 0.01999, -12.2411, 6.95894, 0.01999, -11.1411, 8.65894, 0.01999, -10.4411, 10.4589, 0.01999, -12.4411, -16.1411, 0.01999, -13.6411, -16.3411, 0.01999, -13.8411, -16.4411, 0.01999, -13.6411, -16.7411, 0.01999, -13.6411, -16.7411, 0.01999, -13.2411, -16.2411, 0.01999, -13.0411, -13.4411, 0.01999, -12.1411, -14.2411, 0.01999, -11.5411, -13.7411, 0.01999, -10.5411, -12.4411, 0.01999, -9.84106, -12.4411, 0.01999, -11.9411, -14.6411, 0.01999, -12.1411, -14.4411, 0.01999, -11.7411, -15.4411, 0.01999, -12.2411, -15.2411, 0.01999, -11.7411, -14.9411, 0.01999, -12.6411, -14.2411, 0.01999, -10.7411, -16.2411, 0.01999, -12.2411, -14.9411, 0.01999, -13.6411, -13.7411, 0.01999, -9.74106, -0.341061, 0.01999, -9.84106, -0.341061, 0.01999, -10.1411, -0.841061, 0.01999, -10.3411, -1.44106, 0.01999, -8.24106, -0.841061, 0.01999, -10.6411, -1.34106, 0.01999, -10.8411, -5.34106, 0.01999, -13.6411, -6.14106, 0.01999, -12.4411, -5.14106, 0.01999, -13.1411, 0.358938, 0.01999, -9.14106, 0.158939, 0.01999, -9.64106, -1.84106, 0.01999, -11.8411, -3.64106, 0.01999, -12.6411, -5.14106, 0.01999, -10.1411, -3.34106, 0.01999, -8.24106, -1.34106, 0.01999, -11.6411, -6.54106, 0.01999, -12.1411, -6.54106, 0.01999, -10.3411, -5.34106, 0.01999, -10.3411, 1.15894, 0.01999, -8.14106, 1.15894, 0.01999, -9.14106, -3.14106, 0.01999, -8.04106, -3.14106, -0.02001, -7.44106, -1.64106, -0.02001, -7.54106, -1.64106, 0.01999, -8.04106, -3.14106, -0.02001, -7.74106, -3.84106, 0.01999, -13.1411, -5.24106, 0.01999, -8.84106, -4.54106, 0.01999, -8.24106, -1.84106, 0.01999, -12.6411, 30.3589, 1.68999, -13.4411, 30.6589, 1.68999, -13.4411, 30.6589, 1.68999, -13.7411, 30.1589, 1.68999, -13.7411, 23.9589, 0.40999, -13.7411, 24.1589, 0.40999, -13.4411, 24.1589, 0.40999, -13.7411, -7.74106, 1.01999, -13.2411, -7.74106, 1.01999, -12.7411, -6.74106, 1.01999, -12.7411, -6.74106, 1.01999, -13.2411, 21.7589, 0.01999, -7.74106, 21.5589, 0.01999, -7.74106, 21.5589, 0.01999, -7.14106, 21.7589, 0.01999, -6.74106, 29.8589, 0.01999, -11.7411, 29.4589, 0.01999, -12.4411, 28.0589, 0.01999, -12.1411, 26.9589, 0.01999, -11.7411, 21.3589, 0.01999, -6.94106, 21.0589, 0.01999, -6.74106, 20.6589, 0.01999, -6.94106, 31.4589, 0.01999, -12.1411, 31.1589, 0.01999, -11.8411, 20.8589, 0.01999, -6.54106, 31.9589, 0.01999, -12.6411, 31.4589, 0.01999, -12.4411, 20.4589, 0.01999, -7.14106, 20.3589, 0.01999, -6.74106, 20.5589, 0.01999, -6.54106, 24.7589, 0.01999, -12.3411, 24.5589, 0.01999, -12.6411, 19.6589, 0.01999, -5.74106, 19.5589, 0.01999, -5.04106, 20.1589, 0.01999, -5.04106, 20.3589, 0.01999, -5.74106, 20.4589, 0.01999, -2.34106, 20.1589, 0.01999, -2.04106, 19.6589, 0.01999, 16.2589, 48.2589, 0.01999, 16.2589, 20.4589, 0.01999, -7.74106, 19.7589, 0.01999, -7.74106, 19.7589, 0.01999, -6.74106, 22.7589, 0.01999, -6.14106, 22.3589, 0.01999, -5.74106, 30.3589, 0.01999, -11.6411, 19.5589, 0.01999, -2.04106, 26.0589, 0.01999, -11.6411, 25.6589, 0.01999, -11.9411, 20.8589, 0.01999, -5.94106, 20.5589, 0.01999, -5.94106, 21.0589, 0.01999, -5.74106, 20.4589, 0.01999, -4.64106, 28.5589, 0.01999, -12.4411, 25.4589, 0.01999, -12.4411, 27.3589, 0.01999, -12.1411, -1.24106, 1.01999, -12.2411, -0.841061, 1.01999, -12.1411, -0.841061, 1.01999, -12.6411, -1.24106, 1.01999, -12.6411, 26.2589, 0.40999, -12.6411, 26.2589, 0.40999, -12.4411, 26.5589, 0.40999, -12.4411, 26.5589, 0.40999, -12.6411, 30.2589, 0.40999, -12.6411, 30.2589, 0.40999, -12.4411, 30.5589, 0.40999, -12.4411, 30.5589, 0.40999, -12.6411, -8.14106, 0.01999, -12.1411, -9.24106, 0.01999, -10.8411, -8.74106, 0.01999, -10.2411, -11.0411, 1.01999, -11.2411, -9.74106, 1.01999, -11.2411, -9.74106, 1.01999, -11.7411, -11.7411, 1.01999, -11.7411, -11.7411, 1.01999, -9.24106, -11.2411, 1.01999, -9.24106, -11.2411, 1.01999, -11.0411, 9.25894, 0.01999, -9.34106, 9.25894, 0.01999, -9.64106, 8.95894, 0.01999, -9.64106, 7.85894, 0.01999, -9.34106, 6.45894, 0.01999, -11.1411, 6.15894, 0.01999, -11.4411, 4.35894, 0.01999, -11.4411, 3.85894, 0.01999, -11.1411, 8.65894, 0.01999, -9.94106, 7.65894, 0.01999, -9.14106, 5.65894, 0.01999, -7.14106, 7.65894, 0.01999, -7.44106, 3.85894, 0.01999, -7.24106, 9.55894, 0.01999, -9.64106, 10.1589, 0.01999, -9.34106, 13.7589, 0.01999, -9.74106, 10.3589, 0.01999, -9.14106, 10.3589, 0.01999, -8.54106, 13.7589, 0.01999, -8.54106, 9.95894, 0.01999, -10.0411, 10.5589, 0.01999, -11.1411, -10.6411, 0.01999, -8.94106, -11.0411, 0.01999, -8.64106, -10.7411, 0.01999, -8.24106, -9.34106, 0.01999, -8.34106, -9.14106, 0.01999, -8.14106, -8.64106, 0.01999, -8.64106, -8.94106, 0.01999, -9.14106, -9.44106, 0.01999, -10.6411, -8.94106, 0.01999, -9.94106, -10.4411, 0.01999, -10.1411, -10.6411, 0.01999, -10.1411, -10.1411, 0.01999, -10.6411, -10.9411, 0.01999, -7.94106, -11.9411, 0.01999, -5.34106, -11.6411, 0.01999, -5.64106, -11.9411, 0.01999, -6.14106, -13.1411, 0.01999, -6.14106, -13.1411, 0.01999, -5.34106, -15.9411, 0.01999, -6.24106, -16.6411, 0.01999, -6.24106, -16.6411, 0.01999, -5.84106, -14.9411, 0.01999, -5.84106, -11.6411, 0.01999, -7.34106, -10.9411, 0.01999, -7.34106, -12.1411, 0.01999, -8.64106, -15.2411, 0.01999, -6.94106, -15.7411, 0.01999, -6.74106, -14.6411, 0.01999, -6.34106, -13.7411, 0.01999, -7.94106, -13.9411, 0.01999, -7.74106, -13.3411, 0.01999, -6.34106, -15.2411, 0.01999, -7.74106, -12.4411, 0.01999, -9.14106, -11.9411, 0.01999, -6.94106, -8.24106, 1.01999, -9.74106, -8.24106, 1.01999, -9.24106, -5.74106, 1.01999, -9.24106, -5.74106, 1.01999, -9.74106, 2.25894, 1.51999, -9.64106, 2.25894, 1.51999, -9.24106, 2.75894, 1.51999, -9.04106, 3.25894, 1.51999, -9.64106, 2.75894, 1.51999, -8.24106, 3.25894, 1.51999, -8.24106, 14.7589, 0.01999, -9.14106, 14.7589, 0.01999, -8.04106, 15.3589, 0.01999, -8.04106, 16.0589, 0.01999, -8.04106, 16.7589, 0.01999, -8.04106, 16.7589, 0.01999, -9.14106, 15.5589, 0.01999, -7.84106, 15.8589, 0.01999, -7.84106, 10.8589, 0.01999, -4.64106, 10.8589, 0.01999, -2.94106, 12.6589, 0.01999, -0.341061, 16.5589, 0.01999, -2.34106, 16.6589, 0.01999, -4.84106, 14.1589, 0.01999, -7.14106, 15.3589, 0.01999, -7.14106, 12.8589, 0.01999, -0.0410614, 16.9589, 0.01999, -2.04106, 15.8589, 0.01999, -7.34106, 15.5589, 0.01999, -7.34106, 10.6589, 0.01999, -2.74106, 11.4589, 0.01999, -0.341061, 16.0589, 0.01999, -7.14106, 16.6589, 0.01999, -7.14106, -9.14106, 0.01999, -7.84106, -8.64106, 0.01999, -7.64106, -7.34106, 0.01999, -7.84106, -7.34106, 0.01999, -8.64106, -6.64106, 0.01999, -4.64106, -6.84106, 0.01999, -5.14106, -7.14106, 0.01999, -5.14106, -7.14106, 0.01999, -4.34106, -5.94106, 0.01999, -7.64106, -7.14106, 0.01999, -7.64106, -7.14106, 0.01999, -6.84106, -5.84106, 0.01999, -6.84106, -4.74106, 0.01999, -8.04106, -5.64106, 0.01999, -8.64106, -5.64106, 0.01999, -7.94106, -8.64106, 0.01999, -6.84106, -5.44106, 0.01999, -4.64106, -4.74106, 0.01999, -4.34106, -5.64106, 0.01999, -6.34106, -5.14106, 0.01999, -6.14106, -5.14106, 0.01999, -4.94106, 1.75894, 1.01999, -7.74106, 2.25894, 1.01999, -7.74106, 2.15894, 1.01999, -8.64106, 1.75894, 1.01999, -8.74106, 8.25894, 1.01999, -7.74106, 8.75894, 1.01999, -7.74106, 8.95894, 1.01999, -8.24106, 8.25894, 1.01999, -8.74106, 9.75894, 1.01999, -8.24106, 9.75894, 1.01999, -8.74106, -6.74106, 0.51999, -8.64106, -6.74106, 0.51999, -8.24106, -6.24106, 0.51999, -8.24106, -6.24106, 0.51999, -8.64106, 9.05894, 0.01999, -7.14106, 8.75894, 0.01999, -7.14106, 8.75894, 0.01999, -6.34106, 9.65894, 0.01999, -6.34106, 9.85894, 0.01999, -6.14106, 10.6589, 0.01999, -4.84106, 10.0589, 0.01999, -7.64106, 9.35894, 0.01999, -7.64106, 10.3589, 0.01999, -7.94106, 13.7589, 0.01999, -7.44106, 9.85894, 0.01999, -4.84106, 19.0589, 0.01999, -5.74106, 17.7589, 0.01999, -7.44106, 18.7589, 0.01999, -6.14106, 17.5589, 0.01999, -7.24106, 16.8589, 0.01999, -5.04106, -10.2411, 1.01999, -7.74106, -10.2411, 1.01999, -6.24106, -9.74106, 1.01999, -6.24106, -9.74106, 1.01999, -7.74106, -1.64106, 0.01999, -6.94106, -2.14106, -0.02001, -7.10773, -1.64106, -0.02001, -7.24106, -1.44106, 0.01999, -6.74106, -3.24106, 0.01999, -4.84106, -2.34106, 0.01999, -4.84106, -3.16106, 0.01999, -6.92106, -2.14106, 0.01999, -4.54106, 7.65894, 0.01999, -5.14106, 8.15894, 0.01999, -5.34106, 8.15894, 0.01999, -6.14106, 7.85894, 0.01999, -7.14106, 5.75894, 0.01999, -4.44106, 7.65894, 0.01999, -4.44106, -11.6411, 0.01999, -5.14106, -9.44106, 0.01999, -5.64106, -8.64106, 0.01999, -6.44106, -9.14106, 0.01999, -6.14106, -8.64106, 0.01999, -5.34106, -7.34106, 0.01999, -5.34106, -7.34106, 0.01999, -6.64106, -11.6411, 0.01999, -4.34106, -8.94106, 0.01999, -4.34106, -8.94106, 0.01999, -4.94106, -11.2411, 0.51999, -6.74106, -11.2411, 0.51999, -6.24106, -10.9411, 0.51999, -6.24106, -10.9411, 0.51999, -6.74106, -2.14106, 0.01999, -4.04106, -1.64106, 0.01999, -4.04106, 0.158939, 0.01999, -5.14106, 0.358938, 0.01999, -5.34106, 0.358938, 0.01999, -5.84106, 0.25894, 0.01999, -6.74106, -1.24106, 0.01999, -3.64106, 0.158939, 0.01999, -3.94106, -14.1411, 0.51999, -5.34106, -13.7411, 0.51999, -5.34106, -13.7411, 0.51999, -5.74106, -14.2411, 0.51999, -5.74106, -17.0411, 0.51999, -5.24106, -17.2411, 0.51999, -5.44106, -17.3411, 0.51999, -5.34106, -17.1411, 0.51999, -4.84106, -14.4411, 0.51999, -5.24106, -14.4411, 0.51999, -4.84106, -17.2411, 0.51999, -6.24106, -17.7411, 0.51999, -6.24106, -17.8411, 0.51999, -5.44106, 3.55894, 0.01999, -3.64106, 2.35894, 0.01999, -3.64106, 2.65894, 0.01999, -3.34106, 2.65894, 0.01999, -2.74106, 4.25894, 0.01999, -2.54106, 4.85894, -0.02001, -0.74106, 4.95894, -0.02001, -2.34106, 4.45894, 0.01999, -2.34106, 4.59227, -0.02001, -1.80773, 3.35894, 0.01999, -0.841061, 4.35894, 0.01999, -0.774393, 4.25894, 0.01999, -5.74106, 3.85894, 0.01999, -5.14106, 3.85894, 0.01999, -3.94106, 2.25894, 0.01999, -2.44106, 3.15894, 0.01999, -0.541061, 3.65894, 0.01999, -5.34106, -6.24106, 1.01999, -5.74106, -6.24106, 1.01999, -5.24106, -5.74106, 1.01999, -5.24106, -5.74106, 1.01999, -5.74106, 8.25894, 1.01999, -4.74106, 8.25894, 1.01999, -4.24106, 8.75894, 1.01999, -4.04106, 9.25894, 1.01999, -4.44106, 8.75894, 1.01999, -4.94106, 9.45894, 1.01999, -4.24106, 9.25894, 1.01999, -5.74106, 8.75894, 1.01999, -5.74106, 8.75894, 1.01999, -3.24106, 10.2589, 1.01999, -3.24106, 10.2589, 1.01999, -4.24106, -17.5411, 1.01999, -4.24106, -17.7411, 1.01999, -4.74106, -18.2411, 1.01999, -4.74106, -18.4411, 1.01999, -4.24106, -20.2411, 1.01999, -3.74106, -12.2411, 1.01999, -4.74106, -13.7411, 1.01999, -4.74106, -13.9411, 1.01999, -4.24106, -12.2411, 1.01999, -3.74106, -20.2411, 1.01999, -4.24106, -8.24106, 1.01999, -4.74106, -8.24106, 1.01999, -3.74106, -7.74106, 1.01999, -3.74106, -7.74106, 1.01999, -4.74106, 1.15894, 1.01999, -4.24106, 1.35894, 1.01999, -3.94106, 1.75894, 1.01999, -4.24106, 0.75894, 1.01999, -4.74106, 0.75894, 1.01999, -4.24106, 3.25894, 1.01999, -4.24106, 3.25894, 1.01999, -4.74106, 8.15894, 0.01999, -2.84106, 8.15894, 0.01999, -3.64106, 7.65894, 0.01999, -3.84106, 5.75894, 0.01999, -2.54106, 5.55894, 0.01999, -0.74106, 5.55894, 0.01999, -2.34106, 5.25894, -0.02001, -2.34106, 5.20894, -0.02001, -0.74106, 5.75894, 0.01999, -0.241062, 7.65894, 0.01999, -0.14106, 8.45894, 0.01999, -2.64106, -2.74106, 1.01999, 0.758938, -2.44106, 1.01999, 0.35894, -2.74106, 1.01999, 0.158939, -2.74106, 1.01999, -0.241062, -2.44106, 1.01999, -0.641062, -2.74106, 1.01999, -0.841061, -2.74106, 1.01999, -1.24106, -2.44106, 1.01999, -1.44106, -2.44106, 1.01999, -2.14106, -2.74106, 1.01999, -2.34106, -2.74106, 1.01999, 2.05894, -3.24106, 1.01999, 2.75894, -2.74106, 1.01999, -4.24106, -3.24106, 1.01999, -4.24106, 4.25894, 1.01999, -0.241062, 3.75894, 1.01999, -0.241062, 3.75894, 1.01999, 2.05894, 4.25894, 1.01999, 2.75894, -2.54106, 1.01999, 2.25894, 3.55894, 1.01999, 2.25894, 18.8589, 0.01999, -3.04106, 19.5589, 0.01999, -3.04106, 19.5589, 0.01999, -4.04106, 17.4589, 0.01999, -4.04106, 17.4589, 0.01999, -3.04106, 18.1589, 0.01999, -3.04106, 18.3589, 0.01999, -2.84106, 18.6589, 0.01999, -2.84106, 12.5589, 0.01999, 1.35894, 11.3589, 0.01999, 1.35894, 7.75894, 0.01999, 16.2589, 18.8589, 0.01999, -2.04106, 18.1589, 0.01999, -2.04106, 18.6589, 0.01999, -2.24106, 18.3589, 0.01999, -2.24106, 12.8589, 0.01999, 1.05894, 11.1589, 0.01999, 1.15894, 11.1589, 0.01999, 0.558941, 7.75894, 0.01999, 0.558941, -1.54106, 0.01999, -2.74106, -2.14106, 0.01999, -2.64106, -1.74106, 0.01999, -2.34106, -1.94106, 0.01999, -1.04106, -1.74106, 0.01999, -0.441059, -1.54106, 0.01999, -0.641062, -1.74106, 0.01999, -1.14106, 0.358938, 0.01999, -3.64106, -1.24106, 0.01999, -3.04106, 1.35894, 0.01999, -2.74106, -1.04106, 0.01999, -0.641062, 1.35894, 0.01999, -3.24106, 0.858938, 0.01999, -3.64106, 1.75894, 0.01999, -2.44106, -8.94106, 0.51999, -3.74106, -11.6411, 0.51999, -3.74106, -11.6411, 0.51999, -3.44106, -8.74106, 0.51999, -3.24106, -11.8411, 0.51999, -3.34106, -7.14106, 0.51999, -3.44106, -7.34106, 0.51999, -3.34106, -4.74106, 0.51999, -3.24106, -4.74106, 0.51999, -3.74106, -7.14106, 0.51999, -3.74106, 11.1589, 0.01999, -0.14106, -1.54106, 0.01999, 0.658939, -1.74106, 0.01999, 0.458939, -1.74106, 0.01999, 0.85894, -1.04106, 0.01999, 0.658939, -2.14106, 0.01999, 1.15894, -2.14106, 0.01999, 1.65894, -0.641062, 0.01999, -0.341061, -0.641062, 0.01999, 0.35894, 3.15894, 0.01999, 1.65894, 11.7589, 0.51999, 0.258938, 11.7589, 0.51999, 0.758938, 12.2589, 0.51999, 0.758938, 12.2589, 0.51999, 0.258938, -8.24106, 0.01999, 15.7589, -8.24106, 0.01999, 24.2589, 0.25894, 0.01999, 24.2589, 0.25894, 0.01999, 15.7589, 2.25894, 0.01999, 16.5589, 2.25894, 0.01999, 16.2589, 1.75894, 0.01999, 16.2589, 1.75894, 0.01999, 17.2589, 1.75894, 0.01999, 18.9589, 2.25894, 0.01999, 18.7589, 2.25894, 0.01999, 18.3589, 2.05894, 0.01999, 18.2589, 1.25894, 0.01999, 18.2589, 2.25894, 0.01999, 20.2589, 2.25894, 0.01999, 19.7589, 1.75894, 0.01999, 19.5589, 1.25894, 0.01999, 20.2589, 2.25894, 0.01999, 18.0589, 2.45894, 0.01999, 18.1589, 4.25894, 0.01999, 17.9589, 4.75894, 0.01999, 17.7589, 4.75894, 0.01999, 17.2589, 2.95894, 0.01999, 17.2589, 2.25894, 0.01999, 17.4589, 4.25894, 0.01999, 18.2589, 2.75894, 0.01999, 16.7589) +polygons = [PackedInt32Array(1, 0, 2), PackedInt32Array(2, 0, 3), PackedInt32Array(5, 4, 6), PackedInt32Array(6, 4, 3), PackedInt32Array(4, 2, 3), PackedInt32Array(5, 6, 7), PackedInt32Array(7, 6, 8), PackedInt32Array(8, 6, 9), PackedInt32Array(9, 6, 10), PackedInt32Array(8, 12, 7), PackedInt32Array(7, 12, 11), PackedInt32Array(11, 15, 13), PackedInt32Array(13, 15, 14), PackedInt32Array(12, 15, 11), PackedInt32Array(15, 16, 14), PackedInt32Array(17, 13, 18), PackedInt32Array(18, 13, 14), PackedInt32Array(20, 19, 21), PackedInt32Array(21, 19, 23), PackedInt32Array(21, 23, 22), PackedInt32Array(9, 10, 24), PackedInt32Array(24, 10, 25), PackedInt32Array(25, 26, 24), PackedInt32Array(22, 23, 27), PackedInt32Array(26, 25, 27), PackedInt32Array(27, 25, 22), PackedInt32Array(31, 30, 28), PackedInt32Array(28, 30, 29), PackedInt32Array(32, 37, 33), PackedInt32Array(33, 37, 34), PackedInt32Array(34, 37, 35), PackedInt32Array(35, 37, 36), PackedInt32Array(39, 38, 36), PackedInt32Array(42, 41, 40), PackedInt32Array(42, 40, 35), PackedInt32Array(35, 40, 34), PackedInt32Array(43, 39, 37), PackedInt32Array(37, 39, 36), PackedInt32Array(46, 45, 44), PackedInt32Array(49, 48, 47), PackedInt32Array(50, 52, 51), PackedInt32Array(54, 53, 55), PackedInt32Array(55, 53, 56), PackedInt32Array(58, 57, 52), PackedInt32Array(61, 60, 59), PackedInt32Array(59, 55, 61), PackedInt32Array(61, 55, 56), PackedInt32Array(53, 63, 56), PackedInt32Array(56, 63, 62), PackedInt32Array(64, 58, 63), PackedInt32Array(63, 58, 50), PackedInt32Array(63, 50, 65), PackedInt32Array(63, 65, 62), PackedInt32Array(64, 66, 58), PackedInt32Array(58, 52, 50), PackedInt32Array(58, 66, 67), PackedInt32Array(67, 66, 68), PackedInt32Array(71, 70, 69), PackedInt32Array(73, 72, 74), PackedInt32Array(74, 72, 75), PackedInt32Array(75, 72, 76), PackedInt32Array(76, 72, 77), PackedInt32Array(69, 79, 78), PackedInt32Array(71, 69, 75), PackedInt32Array(75, 69, 78), PackedInt32Array(75, 78, 74), PackedInt32Array(72, 80, 77), PackedInt32Array(83, 82, 81), PackedInt32Array(86, 85, 84), PackedInt32Array(81, 86, 83), PackedInt32Array(83, 86, 87), PackedInt32Array(86, 84, 87), PackedInt32Array(87, 84, 88), PackedInt32Array(88, 84, 77), PackedInt32Array(84, 76, 77), PackedInt32Array(90, 89, 91), PackedInt32Array(91, 89, 92), PackedInt32Array(93, 62, 65), PackedInt32Array(92, 89, 94), PackedInt32Array(94, 89, 93), PackedInt32Array(96, 95, 97), PackedInt32Array(97, 95, 98), PackedInt32Array(100, 99, 101), PackedInt32Array(101, 99, 102), PackedInt32Array(98, 95, 103), PackedInt32Array(98, 101, 102), PackedInt32Array(98, 103, 101), PackedInt32Array(101, 103, 65), PackedInt32Array(65, 103, 94), PackedInt32Array(65, 94, 93), PackedInt32Array(103, 104, 94), PackedInt32Array(106, 105, 107), PackedInt32Array(107, 105, 108), PackedInt32Array(110, 109, 111), PackedInt32Array(111, 109, 112), PackedInt32Array(114, 113, 115), PackedInt32Array(115, 113, 116), PackedInt32Array(118, 107, 117), PackedInt32Array(117, 107, 108), PackedInt32Array(120, 119, 109), PackedInt32Array(109, 119, 112), PackedInt32Array(115, 117, 114), PackedInt32Array(121, 119, 120), PackedInt32Array(123, 121, 122), PackedInt32Array(122, 121, 120), PackedInt32Array(90, 91, 124), PackedInt32Array(122, 116, 123), PackedInt32Array(123, 116, 124), PackedInt32Array(115, 118, 117), PackedInt32Array(32, 33, 125), PackedInt32Array(125, 33, 126), PackedInt32Array(116, 113, 124), PackedInt32Array(124, 113, 90), PackedInt32Array(126, 113, 125), PackedInt32Array(125, 113, 114), PackedInt32Array(129, 128, 127), PackedInt32Array(131, 70, 130), PackedInt32Array(130, 70, 71), PackedInt32Array(133, 132, 99), PackedInt32Array(130, 134, 129), PackedInt32Array(131, 130, 135), PackedInt32Array(135, 130, 129), PackedInt32Array(135, 129, 127), PackedInt32Array(100, 135, 99), PackedInt32Array(99, 135, 127), PackedInt32Array(99, 127, 133), PackedInt32Array(1, 136, 0), PackedInt32Array(0, 136, 138), PackedInt32Array(0, 138, 137), PackedInt32Array(142, 141, 139), PackedInt32Array(139, 141, 140), PackedInt32Array(0, 137, 143), PackedInt32Array(139, 144, 142), PackedInt32Array(142, 144, 143), PackedInt32Array(147, 146, 145), PackedInt32Array(136, 149, 138), PackedInt32Array(138, 149, 148), PackedInt32Array(144, 147, 145), PackedInt32Array(151, 150, 146), PackedInt32Array(146, 150, 145), PackedInt32Array(143, 144, 0), PackedInt32Array(0, 144, 145), PackedInt32Array(153, 152, 154), PackedInt32Array(154, 152, 155), PackedInt32Array(158, 157, 156), PackedInt32Array(159, 154, 155), PackedInt32Array(158, 159, 157), PackedInt32Array(157, 159, 155), PackedInt32Array(161, 160, 156), PackedInt32Array(156, 160, 158), PackedInt32Array(162, 165, 163), PackedInt32Array(163, 165, 164), PackedInt32Array(167, 165, 166), PackedInt32Array(169, 168, 170), PackedInt32Array(170, 168, 171), PackedInt32Array(172, 167, 166), PackedInt32Array(173, 170, 171), PackedInt32Array(164, 173, 171), PackedInt32Array(164, 165, 173), PackedInt32Array(173, 165, 167), PackedInt32Array(174, 172, 175), PackedInt32Array(175, 172, 166), PackedInt32Array(20, 21, 176), PackedInt32Array(176, 21, 177), PackedInt32Array(179, 178, 180), PackedInt32Array(180, 178, 181), PackedInt32Array(182, 183, 177), PackedInt32Array(181, 178, 184), PackedInt32Array(181, 184, 182), PackedInt32Array(182, 184, 183), PackedInt32Array(176, 177, 185), PackedInt32Array(185, 177, 183), PackedInt32Array(105, 106, 186), PackedInt32Array(186, 106, 187), PackedInt32Array(187, 106, 188), PackedInt32Array(192, 191, 189), PackedInt32Array(189, 191, 190), PackedInt32Array(195, 194, 193), PackedInt32Array(189, 193, 192), PackedInt32Array(192, 193, 194), PackedInt32Array(197, 196, 198), PackedInt32Array(198, 196, 199), PackedInt32Array(110, 111, 200), PackedInt32Array(200, 111, 201), PackedInt32Array(203, 195, 202), PackedInt32Array(204, 200, 201), PackedInt32Array(206, 205, 207), PackedInt32Array(207, 205, 208), PackedInt32Array(199, 196, 209), PackedInt32Array(209, 196, 202), PackedInt32Array(210, 207, 208), PackedInt32Array(212, 210, 211), PackedInt32Array(211, 210, 208), PackedInt32Array(213, 194, 214), PackedInt32Array(214, 194, 195), PackedInt32Array(215, 212, 211), PackedInt32Array(211, 216, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(195, 193, 202), PackedInt32Array(218, 217, 216), PackedInt32Array(186, 187, 218), PackedInt32Array(218, 187, 217), PackedInt32Array(196, 203, 202), PackedInt32Array(209, 220, 219), PackedInt32Array(209, 219, 199), PackedInt32Array(220, 188, 219), PackedInt32Array(219, 188, 106), PackedInt32Array(198, 204, 197), PackedInt32Array(197, 204, 201), PackedInt32Array(222, 221, 223), PackedInt32Array(223, 221, 225), PackedInt32Array(223, 225, 224), PackedInt32Array(228, 227, 226), PackedInt32Array(228, 226, 221), PackedInt32Array(221, 226, 225), PackedInt32Array(223, 224, 229), PackedInt32Array(229, 224, 230), PackedInt32Array(230, 224, 29), PackedInt32Array(224, 28, 29), PackedInt32Array(234, 233, 231), PackedInt32Array(231, 233, 232), PackedInt32Array(237, 236, 235), PackedInt32Array(231, 237, 234), PackedInt32Array(234, 237, 238), PackedInt32Array(239, 151, 238), PackedInt32Array(241, 240, 242), PackedInt32Array(242, 240, 150), PackedInt32Array(238, 237, 239), PackedInt32Array(239, 237, 235), PackedInt32Array(239, 242, 151), PackedInt32Array(151, 242, 150), PackedInt32Array(179, 180, 243), PackedInt32Array(243, 180, 244), PackedInt32Array(244, 180, 245), PackedInt32Array(162, 163, 246), PackedInt32Array(246, 163, 247), PackedInt32Array(248, 245, 249), PackedInt32Array(249, 245, 180), PackedInt32Array(250, 246, 247), PackedInt32Array(244, 250, 243), PackedInt32Array(243, 250, 247), PackedInt32Array(252, 251, 253), PackedInt32Array(253, 251, 254), PackedInt32Array(251, 255, 254), PackedInt32Array(227, 253, 226), PackedInt32Array(226, 253, 254), PackedInt32Array(214, 256, 213), PackedInt32Array(213, 256, 257), PackedInt32Array(259, 258, 260), PackedInt32Array(260, 258, 257), PackedInt32Array(257, 256, 260), PackedInt32Array(263, 262, 261), PackedInt32Array(267, 266, 268), PackedInt32Array(268, 266, 265), PackedInt32Array(268, 265, 264), PackedInt32Array(261, 270, 269), PackedInt32Array(272, 271, 264), PackedInt32Array(264, 271, 268), PackedInt32Array(268, 273, 267), PackedInt32Array(267, 273, 263), PackedInt32Array(267, 263, 261), PackedInt32Array(267, 261, 269), PackedInt32Array(274, 263, 275), PackedInt32Array(275, 263, 273), PackedInt32Array(190, 191, 276), PackedInt32Array(276, 191, 277), PackedInt32Array(281, 280, 278), PackedInt32Array(278, 280, 279), PackedInt32Array(276, 277, 280), PackedInt32Array(280, 277, 282), PackedInt32Array(280, 282, 279), PackedInt32Array(281, 278, 283), PackedInt32Array(285, 284, 286), PackedInt32Array(286, 284, 287), PackedInt32Array(289, 288, 290), PackedInt32Array(290, 288, 291), PackedInt32Array(292, 291, 284), PackedInt32Array(284, 291, 294), PackedInt32Array(284, 294, 287), PackedInt32Array(287, 294, 293), PackedInt32Array(293, 295, 287), PackedInt32Array(297, 296, 290), PackedInt32Array(290, 296, 298), PackedInt32Array(290, 298, 289), PackedInt32Array(294, 291, 299), PackedInt32Array(299, 291, 300), PackedInt32Array(300, 291, 288), PackedInt32Array(303, 302, 304), PackedInt32Array(304, 302, 301), PackedInt32Array(307, 306, 305), PackedInt32Array(309, 308, 310), PackedInt32Array(310, 308, 307), PackedInt32Array(310, 307, 305), PackedInt32Array(313, 312, 311), PackedInt32Array(316, 315, 314), PackedInt32Array(310, 305, 317), PackedInt32Array(317, 305, 313), PackedInt32Array(319, 318, 314), PackedInt32Array(314, 318, 316), PackedInt32Array(316, 318, 320), PackedInt32Array(320, 318, 321), PackedInt32Array(321, 318, 317), PackedInt32Array(321, 317, 313), PackedInt32Array(321, 313, 322), PackedInt32Array(313, 311, 322), PackedInt32Array(318, 323, 317), PackedInt32Array(326, 325, 324), PackedInt32Array(293, 327, 295), PackedInt32Array(295, 327, 328), PackedInt32Array(328, 327, 329), PackedInt32Array(332, 331, 324), PackedInt32Array(324, 331, 330), PackedInt32Array(324, 330, 326), PackedInt32Array(324, 329, 332), PackedInt32Array(332, 329, 327), PackedInt32Array(332, 327, 333), PackedInt32Array(335, 334, 336), PackedInt32Array(336, 334, 337), PackedInt32Array(283, 338, 281), PackedInt32Array(281, 338, 337), PackedInt32Array(281, 337, 334), PackedInt32Array(281, 334, 339), PackedInt32Array(342, 341, 340), PackedInt32Array(342, 340, 343), PackedInt32Array(343, 340, 344), PackedInt32Array(279, 282, 344), PackedInt32Array(344, 282, 343), PackedInt32Array(343, 282, 345), PackedInt32Array(345, 282, 346), PackedInt32Array(349, 348, 347), PackedInt32Array(347, 351, 350), PackedInt32Array(347, 350, 352), PackedInt32Array(347, 352, 349), PackedInt32Array(349, 352, 354), PackedInt32Array(349, 354, 353), PackedInt32Array(349, 353, 346), PackedInt32Array(353, 345, 346), PackedInt32Array(352, 355, 354), PackedInt32Array(358, 359, 356), PackedInt32Array(356, 359, 357), PackedInt32Array(358, 356, 360), PackedInt32Array(360, 361, 358), PackedInt32Array(358, 361, 362), PackedInt32Array(364, 363, 361), PackedInt32Array(361, 363, 362), PackedInt32Array(366, 365, 229), PackedInt32Array(368, 367, 366), PackedInt32Array(366, 229, 368), PackedInt32Array(368, 229, 230), PackedInt32Array(368, 230, 369), PackedInt32Array(369, 370, 368), PackedInt32Array(371, 296, 372), PackedInt32Array(372, 296, 297), PackedInt32Array(372, 297, 373), PackedInt32Array(373, 297, 374), PackedInt32Array(377, 376, 378), PackedInt32Array(378, 376, 375), PackedInt32Array(378, 375, 379), PackedInt32Array(381, 380, 373), PackedInt32Array(373, 380, 383), PackedInt32Array(373, 383, 372), PackedInt32Array(372, 383, 382), PackedInt32Array(378, 383, 377), PackedInt32Array(377, 383, 384), PackedInt32Array(384, 383, 380), PackedInt32Array(386, 385, 387), PackedInt32Array(387, 385, 388), PackedInt32Array(392, 391, 389), PackedInt32Array(389, 391, 390), PackedInt32Array(388, 392, 387), PackedInt32Array(387, 392, 389), PackedInt32Array(394, 393, 395), PackedInt32Array(395, 393, 396), PackedInt32Array(398, 397, 399), PackedInt32Array(399, 397, 400), PackedInt32Array(401, 399, 402), PackedInt32Array(402, 399, 400), PackedInt32Array(404, 403, 405), PackedInt32Array(405, 403, 407), PackedInt32Array(405, 407, 406), PackedInt32Array(409, 408, 410), PackedInt32Array(410, 408, 411), PackedInt32Array(400, 397, 410), PackedInt32Array(410, 397, 412), PackedInt32Array(410, 412, 409), PackedInt32Array(403, 404, 413), PackedInt32Array(413, 404, 408), PackedInt32Array(408, 404, 411), PackedInt32Array(414, 417, 415), PackedInt32Array(415, 417, 416), PackedInt32Array(419, 418, 420), PackedInt32Array(420, 418, 421), PackedInt32Array(423, 422, 421), PackedInt32Array(423, 424, 422), PackedInt32Array(420, 421, 336), PackedInt32Array(336, 421, 335), PackedInt32Array(335, 421, 425), PackedInt32Array(425, 421, 422), PackedInt32Array(429, 428, 426), PackedInt32Array(426, 428, 427), PackedInt32Array(432, 431, 430), PackedInt32Array(434, 433, 432), PackedInt32Array(430, 435, 432), PackedInt32Array(432, 435, 434), PackedInt32Array(437, 436, 438), PackedInt32Array(438, 436, 440), PackedInt32Array(438, 440, 439), PackedInt32Array(442, 441, 443), PackedInt32Array(443, 441, 444), PackedInt32Array(440, 445, 439), PackedInt32Array(439, 445, 441), PackedInt32Array(441, 445, 444), PackedInt32Array(448, 447, 446), PackedInt32Array(451, 450, 449), PackedInt32Array(452, 448, 453), PackedInt32Array(453, 448, 449), PackedInt32Array(449, 448, 446), PackedInt32Array(449, 446, 451), PackedInt32Array(455, 454, 456), PackedInt32Array(456, 454, 457), PackedInt32Array(459, 458, 460), PackedInt32Array(460, 458, 456), PackedInt32Array(462, 460, 461), PackedInt32Array(461, 460, 457), PackedInt32Array(457, 460, 456), PackedInt32Array(461, 452, 462), PackedInt32Array(462, 452, 453), PackedInt32Array(463, 466, 464), PackedInt32Array(464, 466, 465), PackedInt32Array(468, 467, 469), PackedInt32Array(469, 467, 470), PackedInt32Array(466, 473, 465), PackedInt32Array(465, 473, 472), PackedInt32Array(465, 472, 471), PackedInt32Array(476, 475, 474), PackedInt32Array(476, 474, 477), PackedInt32Array(477, 474, 469), PackedInt32Array(479, 478, 480), PackedInt32Array(480, 478, 472), PackedInt32Array(477, 469, 478), PackedInt32Array(478, 469, 470), PackedInt32Array(478, 470, 472), PackedInt32Array(472, 470, 471), PackedInt32Array(482, 481, 468), PackedInt32Array(468, 481, 467), PackedInt32Array(355, 471, 354), PackedInt32Array(354, 471, 470), PackedInt32Array(484, 483, 485), PackedInt32Array(485, 483, 486), PackedInt32Array(488, 487, 489), PackedInt32Array(489, 487, 486), PackedInt32Array(490, 485, 487), PackedInt32Array(487, 485, 486), PackedInt32Array(490, 491, 485), PackedInt32Array(493, 492, 494), PackedInt32Array(494, 492, 495), PackedInt32Array(497, 496, 498), PackedInt32Array(498, 496, 495), PackedInt32Array(492, 499, 495), PackedInt32Array(495, 499, 500), PackedInt32Array(495, 500, 498), PackedInt32Array(504, 503, 501), PackedInt32Array(501, 503, 502), PackedInt32Array(506, 505, 507), PackedInt32Array(507, 505, 508), PackedInt32Array(508, 505, 509), PackedInt32Array(510, 500, 511), PackedInt32Array(511, 500, 512), PackedInt32Array(512, 500, 513), PackedInt32Array(513, 500, 499), PackedInt32Array(515, 514, 513), PackedInt32Array(513, 514, 512), PackedInt32Array(511, 516, 510), PackedInt32Array(509, 505, 517), PackedInt32Array(517, 505, 514), PackedInt32Array(517, 514, 515), PackedInt32Array(517, 515, 518), PackedInt32Array(522, 521, 519), PackedInt32Array(519, 521, 520), PackedInt32Array(524, 526, 527), PackedInt32Array(527, 526, 525), PackedInt32Array(525, 526, 523), PackedInt32Array(529, 528, 530), PackedInt32Array(530, 528, 525), PackedInt32Array(530, 525, 523), PackedInt32Array(532, 534, 535), PackedInt32Array(535, 534, 533), PackedInt32Array(533, 534, 531), PackedInt32Array(537, 536, 538), PackedInt32Array(538, 536, 533), PackedInt32Array(538, 533, 531), PackedInt32Array(539, 340, 341), PackedInt32Array(541, 539, 540), PackedInt32Array(540, 539, 341), PackedInt32Array(482, 542, 458), PackedInt32Array(540, 543, 541), PackedInt32Array(541, 543, 459), PackedInt32Array(459, 543, 458), PackedInt32Array(458, 543, 482), PackedInt32Array(543, 481, 482), PackedInt32Array(545, 544, 546), PackedInt32Array(546, 544, 547), PackedInt32Array(547, 544, 548), PackedInt32Array(553, 552, 549), PackedInt32Array(549, 552, 550), PackedInt32Array(550, 552, 551), PackedInt32Array(554, 546, 549), PackedInt32Array(549, 546, 547), PackedInt32Array(549, 547, 553), PackedInt32Array(553, 547, 555), PackedInt32Array(556, 375, 544), PackedInt32Array(544, 375, 548), PackedInt32Array(548, 375, 376), PackedInt32Array(548, 376, 557), PackedInt32Array(558, 370, 369), PackedInt32Array(559, 558, 560), PackedInt32Array(560, 558, 369), PackedInt32Array(562, 561, 563), PackedInt32Array(563, 561, 564), PackedInt32Array(567, 566, 565), PackedInt32Array(565, 568, 567), PackedInt32Array(567, 568, 569), PackedInt32Array(567, 569, 570), PackedInt32Array(571, 570, 572), PackedInt32Array(572, 570, 569), PackedInt32Array(574, 573, 575), PackedInt32Array(575, 573, 576), PackedInt32Array(338, 577, 337), PackedInt32Array(419, 578, 418), PackedInt32Array(418, 578, 579), PackedInt32Array(582, 581, 580), PackedInt32Array(580, 581, 583), PackedInt32Array(583, 581, 575), PackedInt32Array(583, 575, 576), PackedInt32Array(583, 576, 578), PackedInt32Array(578, 576, 585), PackedInt32Array(578, 585, 579), PackedInt32Array(579, 585, 584), PackedInt32Array(582, 580, 586), PackedInt32Array(586, 580, 577), PackedInt32Array(586, 577, 338), PackedInt32Array(586, 338, 454), PackedInt32Array(454, 455, 586), PackedInt32Array(589, 588, 587), PackedInt32Array(591, 590, 589), PackedInt32Array(589, 587, 591), PackedInt32Array(591, 587, 592), PackedInt32Array(594, 593, 595), PackedInt32Array(595, 593, 597), PackedInt32Array(595, 597, 596), PackedInt32Array(498, 597, 497), PackedInt32Array(497, 597, 593), PackedInt32Array(599, 598, 594), PackedInt32Array(594, 598, 593), PackedInt32Array(599, 601, 598), PackedInt32Array(598, 601, 600), PackedInt32Array(598, 600, 602), PackedInt32Array(595, 603, 594), PackedInt32Array(604, 592, 600), PackedInt32Array(600, 592, 602), PackedInt32Array(602, 592, 587), PackedInt32Array(602, 587, 605), PackedInt32Array(596, 606, 595), PackedInt32Array(608, 607, 609), PackedInt32Array(609, 607, 610), PackedInt32Array(611, 609, 612), PackedInt32Array(612, 609, 610), PackedInt32Array(507, 613, 506), PackedInt32Array(506, 613, 615), PackedInt32Array(506, 615, 614), PackedInt32Array(607, 617, 616), PackedInt32Array(618, 612, 619), PackedInt32Array(619, 612, 620), PackedInt32Array(620, 612, 621), PackedInt32Array(621, 612, 610), PackedInt32Array(618, 622, 612), PackedInt32Array(625, 624, 623), PackedInt32Array(616, 627, 626), PackedInt32Array(629, 632, 630), PackedInt32Array(630, 632, 628), PackedInt32Array(630, 628, 631), PackedInt32Array(616, 626, 607), PackedInt32Array(607, 626, 610), PackedInt32Array(615, 633, 619), PackedInt32Array(628, 621, 631), PackedInt32Array(631, 621, 610), PackedInt32Array(614, 615, 623), PackedInt32Array(623, 615, 619), PackedInt32Array(623, 619, 625), PackedInt32Array(625, 619, 620), PackedInt32Array(635, 634, 621), PackedInt32Array(621, 634, 620), PackedInt32Array(619, 636, 618), PackedInt32Array(638, 637, 639), PackedInt32Array(639, 637, 640), PackedInt32Array(643, 642, 641), PackedInt32Array(647, 646, 644), PackedInt32Array(644, 646, 645), PackedInt32Array(649, 648, 650), PackedInt32Array(650, 648, 651), PackedInt32Array(653, 652, 654), PackedInt32Array(654, 652, 655), PackedInt32Array(656, 650, 651), PackedInt32Array(651, 657, 656), PackedInt32Array(656, 657, 658), PackedInt32Array(660, 659, 560), PackedInt32Array(658, 657, 661), PackedInt32Array(663, 662, 659), PackedInt32Array(659, 662, 560), PackedInt32Array(664, 658, 665), PackedInt32Array(665, 658, 666), PackedInt32Array(666, 658, 661), PackedInt32Array(480, 668, 667), PackedInt32Array(670, 669, 671), PackedInt32Array(671, 669, 672), PackedInt32Array(673, 660, 674), PackedInt32Array(674, 660, 560), PackedInt32Array(674, 560, 675), PackedInt32Array(675, 560, 676), PackedInt32Array(665, 679, 664), PackedInt32Array(664, 679, 677), PackedInt32Array(677, 679, 678), PackedInt32Array(681, 680, 673), PackedInt32Array(673, 680, 682), PackedInt32Array(673, 682, 660), PackedInt32Array(675, 683, 674), PackedInt32Array(652, 682, 655), PackedInt32Array(655, 682, 684), PackedInt32Array(684, 682, 479), PackedInt32Array(479, 682, 680), PackedInt32Array(685, 684, 667), PackedInt32Array(667, 684, 480), PackedInt32Array(480, 684, 479), PackedInt32Array(687, 666, 686), PackedInt32Array(686, 666, 661), PackedInt32Array(662, 559, 560), PackedInt32Array(686, 688, 687), PackedInt32Array(687, 688, 672), PackedInt32Array(672, 688, 671), PackedInt32Array(671, 688, 689), PackedInt32Array(654, 690, 653), PackedInt32Array(691, 685, 667), PackedInt32Array(688, 681, 689), PackedInt32Array(689, 681, 673), PackedInt32Array(655, 692, 654), PackedInt32Array(696, 695, 693), PackedInt32Array(693, 695, 694), PackedInt32Array(700, 699, 697), PackedInt32Array(697, 699, 698), PackedInt32Array(704, 703, 701), PackedInt32Array(701, 703, 702), PackedInt32Array(516, 511, 705), PackedInt32Array(706, 516, 707), PackedInt32Array(707, 516, 705), PackedInt32Array(707, 705, 623), PackedInt32Array(707, 623, 624), PackedInt32Array(709, 708, 710), PackedInt32Array(710, 708, 711), PackedInt32Array(713, 712, 714), PackedInt32Array(714, 712, 711), PackedInt32Array(711, 708, 714), PackedInt32Array(716, 715, 717), PackedInt32Array(717, 715, 718), PackedInt32Array(720, 719, 721), PackedInt32Array(721, 719, 722), PackedInt32Array(723, 717, 718), PackedInt32Array(585, 723, 718), PackedInt32Array(718, 724, 585), PackedInt32Array(585, 724, 584), PackedInt32Array(584, 724, 719), PackedInt32Array(721, 422, 720), PackedInt32Array(720, 422, 424), PackedInt32Array(726, 725, 724), PackedInt32Array(724, 725, 727), PackedInt32Array(724, 727, 719), PackedInt32Array(719, 727, 722), PackedInt32Array(716, 728, 715), PackedInt32Array(715, 728, 729), PackedInt32Array(542, 730, 458), PackedInt32Array(458, 730, 456), PackedInt32Array(731, 456, 732), PackedInt32Array(732, 456, 730), PackedInt32Array(732, 730, 733), PackedInt32Array(734, 729, 728), PackedInt32Array(574, 735, 573), PackedInt32Array(573, 735, 734), PackedInt32Array(729, 734, 731), PackedInt32Array(731, 734, 735), PackedInt32Array(731, 735, 456), PackedInt32Array(737, 736, 738), PackedInt32Array(738, 736, 739), PackedInt32Array(740, 739, 741), PackedInt32Array(741, 739, 742), PackedInt32Array(706, 707, 743), PackedInt32Array(743, 707, 744), PackedInt32Array(744, 742, 743), PackedInt32Array(743, 742, 745), PackedInt32Array(745, 742, 736), PackedInt32Array(736, 742, 739), PackedInt32Array(736, 746, 745), PackedInt32Array(745, 747, 743), PackedInt32Array(738, 748, 737), PackedInt32Array(750, 749, 751), PackedInt32Array(751, 749, 753), PackedInt32Array(751, 753, 752), PackedInt32Array(755, 754, 756), PackedInt32Array(756, 754, 757), PackedInt32Array(759, 758, 748), PackedInt32Array(748, 758, 737), PackedInt32Array(737, 758, 760), PackedInt32Array(762, 761, 754), PackedInt32Array(754, 761, 763), PackedInt32Array(754, 763, 757), PackedInt32Array(766, 765, 764), PackedInt32Array(761, 767, 763), PackedInt32Array(763, 767, 765), PackedInt32Array(763, 765, 766), PackedInt32Array(768, 760, 606), PackedInt32Array(606, 760, 764), PackedInt32Array(764, 760, 769), PackedInt32Array(764, 769, 766), PackedInt32Array(752, 766, 751), PackedInt32Array(751, 766, 769), PackedInt32Array(760, 758, 769), PackedInt32Array(606, 596, 768), PackedInt32Array(773, 772, 770), PackedInt32Array(770, 772, 771), PackedInt32Array(775, 774, 776), PackedInt32Array(776, 774, 777), PackedInt32Array(778, 776, 779), PackedInt32Array(779, 776, 777), PackedInt32Array(782, 781, 780), PackedInt32Array(785, 784, 783), PackedInt32Array(786, 782, 787), PackedInt32Array(787, 782, 783), PackedInt32Array(783, 782, 780), PackedInt32Array(783, 780, 785), PackedInt32Array(789, 788, 790), PackedInt32Array(790, 788, 791), PackedInt32Array(791, 788, 792), PackedInt32Array(792, 788, 793), PackedInt32Array(793, 794, 792), PackedInt32Array(790, 791, 795), PackedInt32Array(795, 791, 796), PackedInt32Array(798, 786, 797), PackedInt32Array(797, 786, 787), PackedInt32Array(799, 789, 800), PackedInt32Array(800, 789, 790), PackedInt32Array(797, 801, 798), PackedInt32Array(798, 801, 794), PackedInt32Array(794, 801, 792), PackedInt32Array(801, 802, 792), PackedInt32Array(803, 740, 804), PackedInt32Array(804, 740, 741), PackedInt32Array(804, 741, 805), PackedInt32Array(805, 741, 806), PackedInt32Array(808, 807, 809), PackedInt32Array(809, 807, 810), PackedInt32Array(812, 811, 813), PackedInt32Array(813, 811, 814), PackedInt32Array(816, 634, 817), PackedInt32Array(817, 634, 815), PackedInt32Array(815, 634, 635), PackedInt32Array(812, 813, 805), PackedInt32Array(805, 813, 804), PackedInt32Array(804, 813, 818), PackedInt32Array(807, 819, 810), PackedInt32Array(810, 819, 820), PackedInt32Array(821, 814, 822), PackedInt32Array(822, 814, 811), PackedInt32Array(822, 811, 817), PackedInt32Array(822, 817, 815), PackedInt32Array(820, 819, 823), PackedInt32Array(823, 822, 820), PackedInt32Array(820, 822, 815), PackedInt32Array(825, 824, 826), PackedInt32Array(826, 824, 827), PackedInt32Array(829, 828, 830), PackedInt32Array(830, 828, 831), PackedInt32Array(832, 830, 833), PackedInt32Array(833, 830, 831), PackedInt32Array(837, 836, 834), PackedInt32Array(834, 836, 835), PackedInt32Array(839, 838, 840), PackedInt32Array(840, 838, 841), PackedInt32Array(788, 843, 842), PackedInt32Array(845, 844, 838), PackedInt32Array(838, 844, 841), PackedInt32Array(841, 844, 842), PackedInt32Array(844, 846, 842), PackedInt32Array(842, 846, 788), PackedInt32Array(788, 846, 847), PackedInt32Array(788, 847, 793), PackedInt32Array(732, 733, 846), PackedInt32Array(846, 733, 847), PackedInt32Array(843, 848, 842), PackedInt32Array(849, 669, 670), PackedInt32Array(850, 474, 475), PackedInt32Array(849, 670, 851), PackedInt32Array(851, 670, 852), PackedInt32Array(852, 670, 802), PackedInt32Array(802, 670, 853), PackedInt32Array(850, 475, 852), PackedInt32Array(852, 475, 851), PackedInt32Array(853, 792, 802), PackedInt32Array(857, 856, 854), PackedInt32Array(854, 856, 855), PackedInt32Array(858, 859, 860), PackedInt32Array(860, 859, 630), PackedInt32Array(630, 859, 629), PackedInt32Array(858, 861, 859), PackedInt32Array(859, 861, 629), PackedInt32Array(629, 861, 864), PackedInt32Array(864, 861, 863), PackedInt32Array(864, 863, 862), PackedInt32Array(861, 865, 863), PackedInt32Array(868, 867, 866), PackedInt32Array(840, 868, 839), PackedInt32Array(839, 868, 869), PackedInt32Array(866, 871, 870), PackedInt32Array(869, 868, 726), PackedInt32Array(726, 868, 866), PackedInt32Array(726, 866, 725), PackedInt32Array(725, 866, 870), PackedInt32Array(749, 750, 872), PackedInt32Array(872, 750, 873), PackedInt32Array(875, 874, 873), PackedInt32Array(873, 874, 876), PackedInt32Array(876, 874, 877), PackedInt32Array(877, 874, 878), PackedInt32Array(874, 818, 878), PackedInt32Array(878, 818, 813), PackedInt32Array(881, 880, 873), PackedInt32Array(873, 880, 872), PackedInt32Array(872, 880, 879), PackedInt32Array(873, 876, 881), PackedInt32Array(885, 884, 882), PackedInt32Array(882, 884, 883), PackedInt32Array(887, 886, 865), PackedInt32Array(890, 889, 888), PackedInt32Array(890, 888, 891), PackedInt32Array(891, 888, 861), PackedInt32Array(861, 888, 865), PackedInt32Array(865, 888, 887), PackedInt32Array(892, 887, 893), PackedInt32Array(893, 887, 888), PackedInt32Array(895, 894, 896), PackedInt32Array(896, 894, 897), PackedInt32Array(899, 898, 900), PackedInt32Array(900, 898, 901), PackedInt32Array(897, 894, 902), PackedInt32Array(902, 894, 903), PackedInt32Array(902, 903, 898), PackedInt32Array(898, 903, 901), PackedInt32Array(900, 906, 899), PackedInt32Array(899, 906, 905), PackedInt32Array(899, 905, 904), PackedInt32Array(909, 908, 907), PackedInt32Array(909, 907, 910), PackedInt32Array(910, 907, 911), PackedInt32Array(914, 913, 915), PackedInt32Array(915, 913, 912), PackedInt32Array(914, 915, 911), PackedInt32Array(911, 915, 912), PackedInt32Array(911, 912, 917), PackedInt32Array(911, 917, 916), PackedInt32Array(919, 918, 920), PackedInt32Array(920, 918, 911), PackedInt32Array(910, 911, 921), PackedInt32Array(921, 911, 916), PackedInt32Array(921, 916, 922), PackedInt32Array(923, 918, 919), PackedInt32Array(889, 890, 923), PackedInt32Array(923, 890, 918), PackedInt32Array(911, 907, 920), PackedInt32Array(927, 926, 924), PackedInt32Array(924, 926, 925), PackedInt32Array(929, 928, 930), PackedInt32Array(930, 928, 932), PackedInt32Array(930, 932, 931), PackedInt32Array(930, 931, 933), PackedInt32Array(935, 934, 932), PackedInt32Array(932, 934, 931), PackedInt32Array(930, 933, 936), PackedInt32Array(936, 933, 938), PackedInt32Array(936, 938, 937), PackedInt32Array(941, 940, 942), PackedInt32Array(942, 940, 939), PackedInt32Array(943, 942, 939), PackedInt32Array(945, 944, 946), PackedInt32Array(946, 944, 947), PackedInt32Array(946, 947, 939), PackedInt32Array(939, 947, 943), PackedInt32Array(943, 948, 942), PackedInt32Array(952, 951, 949), PackedInt32Array(949, 951, 950), PackedInt32Array(955, 954, 953), PackedInt32Array(953, 957, 956), PackedInt32Array(955, 953, 956), PackedInt32Array(958, 955, 959), PackedInt32Array(959, 955, 956), PackedInt32Array(961, 960, 962), PackedInt32Array(962, 960, 963), PackedInt32Array(962, 963, 870), PackedInt32Array(965, 964, 966), PackedInt32Array(966, 964, 967), PackedInt32Array(966, 967, 913), PackedInt32Array(913, 967, 912), PackedInt32Array(968, 964, 969), PackedInt32Array(969, 964, 963), PackedInt32Array(969, 963, 960), PackedInt32Array(969, 960, 970), PackedInt32Array(964, 965, 963), PackedInt32Array(870, 871, 962), PackedInt32Array(972, 971, 973), PackedInt32Array(976, 975, 974), PackedInt32Array(979, 978, 980), PackedInt32Array(980, 978, 977), PackedInt32Array(982, 971, 981), PackedInt32Array(984, 983, 980), PackedInt32Array(986, 985, 987), PackedInt32Array(987, 985, 988), PackedInt32Array(982, 981, 989), PackedInt32Array(990, 987, 988), PackedInt32Array(984, 980, 977), PackedInt32Array(984, 977, 976), PackedInt32Array(974, 982, 976), PackedInt32Array(976, 982, 984), PackedInt32Array(989, 990, 982), PackedInt32Array(982, 990, 988), PackedInt32Array(982, 974, 973), PackedInt32Array(982, 973, 971), PackedInt32Array(993, 992, 991), PackedInt32Array(996, 995, 994), PackedInt32Array(997, 996, 998), PackedInt32Array(998, 996, 991), PackedInt32Array(991, 996, 994), PackedInt32Array(991, 994, 993), PackedInt32Array(1001, 1000, 999), PackedInt32Array(999, 1003, 1002), PackedInt32Array(1002, 683, 999), PackedInt32Array(999, 683, 675), PackedInt32Array(999, 675, 1001), PackedInt32Array(1005, 997, 1004), PackedInt32Array(1004, 997, 998), PackedInt32Array(1006, 796, 999), PackedInt32Array(999, 796, 1003), PackedInt32Array(1004, 1002, 1005), PackedInt32Array(1005, 1002, 1003), PackedInt32Array(1006, 795, 796), PackedInt32Array(1009, 1008, 1007), PackedInt32Array(1007, 1000, 1009), PackedInt32Array(1009, 1000, 1001), PackedInt32Array(1012, 1011, 1010), PackedInt32Array(1016, 1015, 1013), PackedInt32Array(1013, 1015, 1014), PackedInt32Array(892, 1017, 1018), PackedInt32Array(1018, 1017, 1019), PackedInt32Array(1012, 1010, 1018), PackedInt32Array(1020, 1015, 1016), PackedInt32Array(1021, 1019, 1022), PackedInt32Array(1022, 1019, 1017), PackedInt32Array(1016, 1012, 1020), PackedInt32Array(1020, 1012, 1018), PackedInt32Array(1020, 1018, 1019), PackedInt32Array(1020, 1019, 1023), PackedInt32Array(892, 893, 1017), PackedInt32Array(1026, 1025, 1024), PackedInt32Array(1026, 1024, 1028), PackedInt32Array(1028, 1024, 1027), PackedInt32Array(1029, 1031, 1030), PackedInt32Array(1033, 1032, 1029), PackedInt32Array(1029, 1032, 1031), PackedInt32Array(799, 800, 1034), PackedInt32Array(969, 970, 1009), PackedInt32Array(1009, 970, 799), PackedInt32Array(1009, 799, 1034), PackedInt32Array(1009, 1034, 1008), PackedInt32Array(1037, 1036, 1035), PackedInt32Array(1037, 1035, 1038), PackedInt32Array(1039, 1037, 1040), PackedInt32Array(1040, 1037, 1038), PackedInt32Array(1041, 1020, 1023), PackedInt32Array(1038, 1042, 1040), PackedInt32Array(1040, 1042, 1043), PackedInt32Array(1043, 1042, 922), PackedInt32Array(921, 922, 1023), PackedInt32Array(1023, 922, 1041), PackedInt32Array(1041, 922, 1042), PackedInt32Array(1047, 1046, 1044), PackedInt32Array(1044, 1046, 1045), PackedInt32Array(1051, 1050, 1048), PackedInt32Array(1048, 1050, 1049), PackedInt32Array(1053, 1052, 1054), PackedInt32Array(1054, 1052, 1055), PackedInt32Array(1058, 1057, 1059), PackedInt32Array(1059, 1057, 1056), PackedInt32Array(1059, 1056, 1060), PackedInt32Array(1062, 1061, 1063), PackedInt32Array(1063, 1061, 1064), PackedInt32Array(1066, 1058, 1065), PackedInt32Array(1065, 1058, 1059), PackedInt32Array(1068, 1067, 1069), PackedInt32Array(1069, 1067, 1070), PackedInt32Array(1065, 1071, 1066), PackedInt32Array(1066, 1071, 1070), PackedInt32Array(1066, 1070, 1067), PackedInt32Array(1066, 1067, 1072), PackedInt32Array(1073, 1070, 1052), PackedInt32Array(1052, 1070, 1071), PackedInt32Array(1052, 1071, 1055), PackedInt32Array(1063, 1064, 1056), PackedInt32Array(1056, 1064, 1060)] geometry_parsed_geometry_type = 1 geometry_collision_mask = 97 cell_size = 0.1 @@ -55,6 +56,13 @@ radius = 0.158352 [sub_resource type="SphereShape3D" id="SphereShape3D_ugkqa"] +[sub_resource type="BlackboardPlan" id="BlackboardPlan_jgxfv"] +var/patrol_path/name = &"patrol_path" +var/patrol_path/type = 22 +var/patrol_path/value = NodePath("../../../../PatrolPath01") +var/patrol_path/hint = 0 +var/patrol_path/hint_string = "" + [sub_resource type="ShaderMaterial" id="ShaderMaterial_u21xo"] render_priority = 0 shader = ExtResource("15_bmq7i") @@ -68,6 +76,14 @@ size = Vector2(200, 200) radius = 0.1 height = 0.2 +[sub_resource type="Curve3D" id="Curve3D_xbm4j"] +bake_interval = 1.0 +_data = { +"points": PackedVector3Array(0, 0, 0, 0, 0, 0, 9.09492, 0.0403147, -24.1788, 0, 0, 0, 0, 0, 0, 9.10629, 0.0725117, -25.9514, 0, 0, 0, 0, 0, 0, 14.5965, 0.0861158, -26.1239, 0, 0, 0, 0, 0, 0, 14.6516, 0.0439434, -23.7947, 0, 0, 0, 0, 0, 0, 15.9588, 0.0434914, -23.6324, 0, 0, 0, 0, 0, 0, 16.0594, 0.00494671, -21.4983, 0, 0, 0, 0, 0, 0, 12.3941, -0.000497818, -21.5732, 0, 0, 0, 0, 0, 0, 12.4989, 0.0434885, -23.996), +"tilts": PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0) +} +point_count = 8 + [node name="NavigationRegion3D" type="NavigationRegion3D"] navigation_mesh = SubResource("NavigationMesh_1u13k") @@ -76,11 +92,13 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.5, 0) rotation_order = 1 mesh_library = ExtResource("1_q0eym") cell_size = Vector3(0.5, 0.5, 0.5) +cell_center_x = false cell_center_y = false +cell_center_z = false data = { -"cells": PackedInt32Array(1, 65534, 655374, 1, 65531, 655374, 4, 65534, 655374, 4, 65531, 655374, 65534, 1, 655374, 1, 1, 655374, 4, 1, 655374, 7, 1, 655374, 7, 65534, 655374, 7, 65531, 655374, 7, 65528, 655374, 4, 65528, 13, 13, 65534, 13, 13, 65531, 13, 13, 65528, 13, 65531, 65528, 1048590, 65531, 65531, 1048590, 65531, 65534, 1048590, 65531, 1, 1048590, 13, 65525, 13, 65531, 4, 1048590, 65534, 4, 1048590, 1, 4, 1048590, 4, 4, 1048590, 7, 4, 1048590, 65541, 65527, 9, 131066, 65529, 1441801, 131066, 4, 1441801, 131068, 5, 655369, 131071, 5, 655369, 65538, 5, 655369, 65541, 5, 655369, 65543, 5, 9, 65544, 4, 1441801, 65544, 1, 1441801, 15, 65521, 13, 15, 65522, 13, 15, 65523, 13, 15, 65524, 13, 15, 65525, 13, 15, 65526, 13, 16, 65527, 13, 16, 65528, 13, 15, 65528, 13, 15, 65529, 13, 15, 65530, 13, 65534, 65528, 13, 65534, 65529, 13, 65534, 65530, 13, 65534, 65531, 13, 65534, 65532, 13, 65534, 65533, 13, 65534, 65534, 13, 65534, 65535, 13, 65535, 65535, 13, 65535, 65534, 13, 65535, 65533, 13, 65535, 65532, 13, 65535, 65531, 13, 65535, 65530, 13, 65535, 65529, 13, 65535, 65528, 13, 65535, 65527, 13, 65534, 65527, 13, 65533, 65527, 13, 65533, 65526, 13, 65532, 65528, 13, 65533, 65528, 13, 0, 65528, 13, 0, 65527, 13, 1, 65527, 13, 1, 65528, 13, 2, 65528, 13, 3, 65528, 13, 5, 65528, 13, 12, 65521, 13, 12, 65522, 13, 12, 65523, 13, 12, 65524, 13, 12, 65525, 13, 12, 65526, 13, 12, 65527, 13, 12, 65528, 13, 12, 65529, 13, 12, 65530, 13, 12, 65531, 13, 12, 65532, 13, 12, 65533, 13, 12, 65534, 13, 12, 65535, 13, 13, 65521, 13, 13, 65522, 13, 13, 65523, 13, 13, 65524, 13, 13, 65526, 13, 13, 65527, 13, 13, 65529, 13, 13, 65530, 13, 13, 65532, 13, 13, 65533, 13, 13, 65535, 13, 14, 65521, 13, 14, 65522, 13, 14, 65523, 13, 14, 65524, 13, 14, 65525, 13, 14, 65526, 13, 14, 65527, 13, 14, 65528, 13, 14, 65529, 13, 14, 65530, 13, 14, 65531, 13, 14, 65532, 13, 14, 65533, 13, 14, 65534, 13, 14, 65535, 13, 15, 65527, 13, 15, 65531, 13, 15, 65532, 13, 15, 65533, 13, 15, 65534, 13, 15, 65535, 13, 16, 65521, 13, 16, 65522, 13, 16, 65523, 13, 16, 65524, 13, 16, 65525, 13, 16, 65526, 13, 16, 65529, 13, 16, 65530, 13, 16, 65531, 13, 16, 65532, 13, 16, 65533, 13, 16, 65534, 13, 16, 65535, 13, 17, 65521, 13, 17, 65522, 13, 17, 65523, 13, 17, 65524, 13, 17, 65525, 13, 17, 65526, 13, 17, 65527, 13, 17, 65528, 13, 17, 65529, 13, 17, 65530, 13, 17, 65531, 13, 17, 65532, 13, 17, 65533, 13, 17, 65534, 13, 17, 65535, 13, 18, 65521, 13, 18, 65522, 13, 18, 65523, 13, 18, 65524, 13, 18, 65525, 13, 18, 65526, 13, 18, 65527, 13, 18, 65528, 13, 18, 65529, 13, 18, 65530, 13, 18, 65531, 13, 18, 65532, 13, 18, 65533, 13, 18, 65534, 13, 18, 65535, 13, 19, 65521, 13, 19, 65522, 13, 19, 65523, 13, 19, 65524, 13, 19, 65525, 13, 19, 65526, 13, 19, 65527, 13, 19, 65528, 13, 19, 65529, 13, 19, 65530, 13, 19, 65531, 13, 19, 65532, 13, 19, 65533, 13, 19, 65534, 13, 19, 65535, 13, 20, 65521, 13, 20, 65522, 13, 20, 65523, 13, 20, 65524, 13, 20, 65525, 13, 20, 65526, 13, 20, 65527, 13, 20, 65528, 13, 20, 65529, 13, 20, 65530, 13, 20, 65531, 13, 20, 65532, 13, 20, 65533, 13, 20, 65534, 13, 20, 65535, 13, 21, 65521, 13, 21, 65522, 13, 21, 65523, 13, 21, 65524, 13, 21, 65525, 13, 21, 65526, 13, 21, 65527, 13, 21, 65528, 13, 21, 65529, 13, 21, 65530, 13, 21, 65531, 13, 21, 65532, 13, 21, 65533, 13, 21, 65534, 13, 21, 65535, 13, 22, 65521, 13, 22, 65522, 13, 22, 65523, 13, 22, 65524, 13, 22, 65525, 13, 22, 65526, 13, 22, 65527, 13, 22, 65528, 13, 22, 65529, 13, 22, 65530, 13, 22, 65531, 13, 22, 65532, 13, 22, 65533, 13, 22, 65534, 13, 22, 65535, 13, 23, 65521, 13, 23, 65522, 13, 23, 65523, 13, 23, 65524, 13, 23, 65525, 13, 23, 65526, 13, 23, 65527, 13, 23, 65528, 13, 23, 65529, 13, 23, 65530, 13, 23, 65531, 13, 23, 65532, 13, 23, 65533, 13, 23, 65534, 13, 23, 65535, 13, 24, 65521, 13, 24, 65522, 13, 24, 65523, 13, 24, 65524, 13, 24, 65525, 13, 24, 65526, 13, 24, 65527, 13, 24, 65528, 13, 24, 65529, 13, 24, 65530, 13, 24, 65531, 13, 24, 65532, 13, 24, 65533, 13, 24, 65535, 13, 25, 65521, 13, 25, 65522, 13, 25, 65523, 13, 25, 65524, 13, 25, 65525, 13, 25, 65526, 13, 25, 65527, 13, 25, 65528, 13, 25, 65529, 13, 25, 65530, 13, 25, 65531, 13, 25, 65532, 13, 25, 65533, 13, 25, 65534, 13, 25, 65535, 13, 26, 65521, 13, 26, 65522, 13, 26, 65523, 13, 26, 65524, 13, 26, 65525, 13, 26, 65526, 13, 26, 65527, 13, 26, 65528, 13, 26, 65529, 13, 26, 65530, 13, 26, 65532, 13, 26, 65533, 13, 26, 65534, 13, 26, 65535, 13, 27, 65521, 13, 27, 65522, 13, 27, 65523, 13, 27, 65524, 13, 27, 65525, 13, 27, 65526, 13, 27, 65527, 13, 27, 65528, 13, 27, 65529, 13, 27, 65530, 13, 27, 65531, 13, 27, 65532, 13, 27, 65533, 13, 27, 65534, 13, 27, 65535, 13, 28, 65521, 13, 28, 65522, 13, 28, 65523, 13, 28, 65524, 13, 28, 65525, 13, 28, 65526, 13, 28, 65527, 13, 28, 65528, 13, 28, 65529, 13, 28, 65531, 13, 28, 65532, 13, 28, 65533, 13, 28, 65534, 13, 28, 65535, 13, 29, 65521, 13, 29, 65522, 13, 29, 65523, 13, 29, 65524, 13, 29, 65525, 13, 29, 65526, 13, 29, 65527, 13, 29, 65529, 13, 29, 65530, 13, 29, 65531, 13, 29, 65532, 13, 29, 65533, 13, 29, 65534, 13, 29, 65535, 13, 30, 65521, 13, 30, 65522, 13, 30, 65523, 13, 30, 65524, 13, 30, 65525, 13, 30, 65526, 13, 30, 65528, 13, 30, 65529, 13, 30, 65530, 13, 30, 65531, 13, 30, 65532, 13, 30, 65533, 13, 30, 65534, 13, 30, 65535, 13, 31, 65521, 13, 31, 65522, 13, 31, 65523, 13, 31, 65524, 13, 31, 65525, 13, 31, 65526, 13, 31, 65527, 13, 31, 65528, 13, 31, 65529, 13, 31, 65530, 13, 31, 65531, 13, 31, 65532, 13, 31, 65533, 13, 31, 65534, 13, 31, 65535, 13, 0, 65517, 13, 65535, 65517, 13, 131067, 65532, 655377, 131066, 65532, 27, 131066, 65533, 27, 131067, 65533, 655377, 131066, 65534, 27, 131067, 65535, 655377, 131066, 0, 27, 131067, 1, 655377, 65539, 65528, 655377, 65553, 65519, 27, 65554, 65519, 27, 65555, 65519, 27, 65553, 65520, 27, 65554, 65525, 27, 65554, 65526, 27, 65554, 65527, 27, 65554, 65528, 27, 65554, 65529, 27, 65555, 65529, 27, 65556, 65529, 27, 65556, 65528, 27, 65555, 65528, 27, 65553, 65527, 27, 131066, 65531, 27, 131066, 65530, 27, 131066, 65535, 27, 11, 65520, 13, 10, 65520, 13, 9, 65520, 13, 9, 65519, 13, 9, 65518, 13, 9, 65517, 13, 10, 65518, 13, 11, 65518, 13, 11, 65519, 13, 12, 65519, 13, 12, 65518, 13, 13, 65518, 13, 14, 65518, 13, 13, 65519, 13, 14, 65519, 13, 8, 65517, 13, 7, 65517, 13, 7, 65516, 13, 6, 65517, 13, 5, 65517, 13, 5, 65516, 13, 4, 65516, 13, 4, 65515, 13, 4, 65514, 13, 4, 65517, 13, 0, 65518, 13, 0, 65516, 13, 0, 65515, 13, 4, 65513, 13, 5, 65513, 13, 6, 65513, 13, 7, 65513, 13, 8, 65513, 13, 8, 65514, 13, 9, 65514, 13, 7, 65514, 13, 6, 65514, 13, 5, 65514, 13, 5, 65515, 13, 6, 65515, 13, 7, 65515, 13, 8, 65515, 13, 9, 65515, 13, 10, 65515, 13, 11, 65515, 13, 11, 65516, 13, 9, 65516, 13, 10, 65516, 13, 11, 65517, 13, 12, 65517, 13, 13, 65517, 13, 13, 65516, 13, 14, 65516, 13, 14, 65517, 13, 15, 65519, 13, 15, 65520, 13, 16, 65519, 13, 16, 65518, 13, 16, 65517, 13, 16, 65516, 13, 16, 65515, 13, 15, 65515, 13, 15, 65514, 13, 14, 65515, 13, 15, 65517, 13, 15, 65516, 13, 14, 65514, 13, 13, 65513, 13, 12, 65513, 13, 12, 65514, 13, 11, 65514, 13, 10, 65513, 13, 9, 65512, 13, 9, 65511, 13, 8, 65511, 13, 7, 65512, 13, 9, 65513, 13, 11, 65513, 13, 13, 65514, 13, 13, 65515, 13, 12, 65515, 13, 12, 65512, 13, 11, 65512, 13, 11, 65511, 13, 10, 65511, 13, 7, 65511, 13, 6, 65511, 13, 5, 65510, 13, 4, 65511, 13, 3, 65511, 13, 3, 65512, 13, 4, 65512, 13, 5, 65512, 13, 6, 65512, 13, 65535, 65518, 13, 65535, 65519, 13, 65534, 65519, 13, 65534, 65518, 13, 65534, 65517, 13, 65531, 65519, 13, 65532, 65519, 13, 65532, 65518, 13, 65533, 65518, 13, 65534, 65516, 13, 65534, 65515, 13, 65535, 65515, 13, 65535, 65514, 13, 65534, 65514, 13, 65532, 65515, 13, 65532, 65516, 13, 65531, 65516, 13, 65531, 65517, 13, 65530, 65517, 13, 65529, 65518, 13, 65528, 65518, 13, 65528, 65519, 13, 65529, 65519, 13, 65530, 65518, 13, 65532, 65517, 13, 65530, 65516, 13, 65531, 65514, 13, 65533, 65513, 13, 65529, 65514, 13, 65528, 65515, 13, 65528, 65516, 13, 65528, 65517, 13, 65527, 65518, 13, 65527, 65517, 13, 65528, 65514, 13, 65527, 65513, 13, 65526, 65513, 13, 65526, 65514, 13, 65525, 65514, 13, 65525, 65515, 13, 65525, 65516, 13, 65525, 65517, 13, 65525, 65518, 13, 65526, 65519, 13, 65526, 65520, 13, 65526, 65521, 13, 65526, 65522, 13, 65526, 65524, 13, 65526, 65525, 13, 65526, 65518, 13, 65526, 65517, 13, 65526, 65516, 13, 65526, 65515, 13, 65525, 65513, 13, 65525, 65519, 13, 65525, 65520, 13, 65525, 65521, 13, 65525, 65522, 13, 65525, 65523, 13, 65524, 65523, 13, 65524, 65524, 13, 65525, 65524, 13, 65525, 65525, 13, 65525, 65526, 13, 65526, 65526, 13, 65524, 65526, 13, 65524, 65525, 13, 65523, 65524, 27, 65523, 65523, 13, 65523, 65522, 13, 65522, 65521, 13, 65522, 65520, 13, 65522, 65519, 13, 65522, 65518, 13, 65523, 65518, 27, 65523, 65517, 13, 65523, 65516, 13, 65523, 65515, 13, 65524, 65515, 13, 65524, 65514, 13, 65524, 65513, 13, 65523, 65514, 13, 65522, 65514, 13, 65522, 65515, 13, 65522, 65516, 13, 65522, 65517, 13, 65523, 65519, 27, 65523, 65520, 13, 65523, 65521, 13, 65522, 65513, 13, 65522, 65512, 13, 65521, 65512, 13, 65523, 65512, 13, 65523, 65511, 13, 65524, 65511, 13, 65525, 65511, 13, 65526, 65511, 13, 65527, 65511, 13, 65529, 65512, 13, 65535, 65512, 13, 1, 65513, 13, 0, 65514, 13, 65528, 65512, 13, 65527, 65512, 13, 65527, 65510, 13, 65528, 65510, 13, 65532, 65511, 13, 65533, 65511, 13, 0, 65512, 13, 1, 65512, 13, 3, 65513, 13, 3, 65514, 13, 65531, 65511, 13, 65530, 65511, 13, 65530, 65512, 13, 65532, 65513, 13, 65533, 65514, 13, 65536, 65514, 27, 65537, 65514, 27, 65538, 65514, 27, 65538, 65515, 27, 65539, 65515, 27, 65537, 65515, 27, 65536, 65513, 27, 131071, 65512, 27, 131071, 65513, 27, 65536, 65512, 27, 65537, 65511, 27, 65537, 65512, 27, 65538, 65512, 27, 65537, 65513, 27, 65538, 65513, 27, 65539, 65513, 27, 65539, 65512, 27, 65539, 65511, 27, 65539, 65510, 27, 65538, 65510, 27, 65537, 65510, 27, 65536, 65510, 27, 131071, 65510, 27, 131070, 65510, 27, 131070, 65511, 27, 131071, 65511, 27, 65536, 65511, 27, 196608, 65512, 27, 196609, 65513, 27, 196610, 65514, 27, 196609, 65512, 27, 196610, 65512, 27, 196610, 65513, 27, 196608, 65511, 27, 196608, 65510, 27, 196608, 65509, 27, 262142, 65509, 27, 262143, 65509, 27, 196609, 65509, 27, 196609, 65510, 27, 196610, 65510, 27, 196610, 65511, 27, 196609, 65511, 27, 196610, 65509, 27, 196610, 65508, 27, 196609, 65508, 27, 196608, 65508, 27, 262143, 65508, 27, 262142, 65507, 27, 262142, 65508, 27, 65540, 65516, 27, 65540, 65517, 27, 65541, 65517, 27, 65539, 65514, 27, 65539, 65527, 27, 65538, 65527, 27, 0, 65519, 13, 4, 65520, 13, 5, 65520, 13, 6, 65520, 13, 7, 65520, 13, 8, 65520, 13, 8, 65519, 13, 7, 65519, 13, 6, 65519, 13, 5, 65519, 13, 4, 65518, 13, 3, 65518, 13, 2, 65518, 13, 2, 65517, 13, 2, 65516, 13, 2, 65515, 13, 3, 65515, 13, 3, 65516, 13, 1, 65517, 13, 1, 65518, 13, 4, 65519, 13, 3, 65519, 13, 2, 65519, 13, 1, 65519, 13, 3, 65520, 13, 65533, 65519, 13, 1, 65525, 13, 2, 65525, 13, 4, 65525, 13, 3, 65525, 13, 5, 65525, 13, 6, 65525, 13, 7, 65525, 13, 7, 65526, 13, 8, 65526, 13, 8, 65525, 13, 0, 65525, 13, 0, 65526, 13, 65535, 65525, 13, 65534, 65525, 13, 65533, 65524, 13, 65533, 65525, 13, 65532, 65525, 13, 65532, 65526, 13, 65531, 65526, 13, 65530, 65526, 13, 65530, 65527, 13, 65531, 65527, 13, 11, 65521, 13, 8, 65521, 13, 7, 65521, 13, 65534, 65523, 13, 65533, 65523, 13, 65532, 65523, 13, 65532, 65524, 13, 65531, 65524, 13, 65535, 65524, 13, 0, 65524, 13, 0, 65523, 13, 65535, 65523, 13, 65531, 65523, 13, 65531, 65525, 13, 65530, 65525, 13, 65530, 65524, 13, 65530, 65523, 13, 65531, 65518, 13, 65530, 65519, 13, 65527, 65519, 13, 65526, 65523, 13, 65527, 65509, 13, 65526, 65509, 13, 65525, 65509, 13, 65524, 65509, 13, 65526, 65510, 13, 65525, 65510, 13, 65524, 65510, 13, 65523, 65510, 13, 65523, 65509, 13, 65522, 65509, 13, 65521, 65509, 13, 65521, 65510, 13, 65520, 65510, 13, 65520, 65511, 13, 65521, 65511, 13, 65519, 65512, 13, 65519, 65513, 13, 65519, 65514, 13, 65519, 65515, 13, 65519, 65516, 13, 65520, 65516, 13, 65520, 65515, 13, 65520, 65514, 13, 65520, 65513, 13, 65520, 65512, 13, 65519, 65517, 13, 65520, 65517, 13, 65520, 65518, 13, 65520, 65519, 13, 65520, 65520, 13, 65520, 65521, 13, 65520, 65522, 13, 65520, 65523, 13, 65521, 65523, 13, 65521, 65524, 13, 65522, 65522, 13, 65521, 65521, 13, 65521, 65520, 13, 65521, 65522, 13, 65522, 65524, 13, 65523, 65526, 13, 65522, 65526, 13, 65521, 65526, 13, 65521, 65525, 13, 65520, 65525, 13, 65520, 65524, 13, 65519, 65525, 13, 65519, 65526, 13, 65520, 65526, 13, 65520, 65527, 13, 65522, 65527, 13, 65523, 65527, 13, 65524, 65527, 13, 65525, 65527, 13, 65526, 65527, 13, 65525, 65528, 13, 65524, 65528, 13, 65523, 65528, 13, 65522, 65528, 13, 65521, 65528, 13, 65520, 65528, 13, 65519, 65528, 13, 65519, 65527, 13, 65521, 65527, 13, 65526, 65528, 13, 65519, 65524, 13, 65519, 65523, 13, 65519, 65522, 13, 65519, 65521, 13, 65519, 65520, 13, 65519, 65519, 13, 65519, 65518, 13, 65519, 65511, 13, 65519, 65510, 13, 65519, 65509, 13, 65520, 65509, 13, 65532, 65510, 13, 65518, 65509, 13, 65517, 65510, 13, 65517, 65511, 13, 65517, 65512, 13, 65517, 65513, 13, 65517, 65514, 13, 65516, 65515, 13, 65516, 65516, 13, 65516, 65517, 13, 65516, 65518, 13, 65516, 65519, 13, 65516, 65520, 13, 65516, 65521, 13, 65516, 65522, 13, 65517, 65523, 13, 65517, 65524, 13, 65518, 65525, 13, 65518, 65526, 13, 65517, 65526, 13, 65517, 65527, 13, 65517, 65515, 13, 65517, 65516, 13, 65517, 65517, 13, 65517, 65518, 13, 65517, 65519, 13, 65517, 65520, 13, 65517, 65521, 13, 65517, 65522, 27, 65518, 65523, 13, 65518, 65524, 13, 65514, 65511, 13, 65514, 65512, 13, 65515, 65513, 13, 65515, 65514, 13, 65515, 65515, 13, 65517, 65525, 13, 65518, 65508, 13, 65518, 65511, 13, 65518, 65514, 13, 65518, 65516, 13, 65518, 65517, 13, 65518, 65519, 13, 65518, 65520, 13, 65518, 65521, 13, 65518, 65522, 13, 65516, 65525, 13, 65516, 65524, 13, 65516, 65523, 13, 65515, 65523, 27, 65515, 65522, 13, 65514, 65520, 13, 65514, 65519, 13, 65514, 65518, 13, 65514, 65517, 13, 65513, 65517, 13, 65513, 65518, 13, 65513, 65519, 13, 65513, 65520, 13, 65513, 65521, 13, 65514, 65507, 13, 65514, 65508, 13, 65514, 65509, 13, 65514, 65510, 13, 65514, 65513, 13, 65516, 65512, 13, 65515, 65507, 13, 65515, 65508, 13, 65515, 65509, 13, 65515, 65510, 13, 65514, 65514, 27, 65514, 65515, 13, 65515, 65519, 13, 65515, 65520, 13, 65515, 65521, 13, 65510, 65507, 13, 65512, 65509, 13, 65512, 65515, 13, 65513, 65514, 13, 65515, 65512, 13, 65515, 65516, 13, 65515, 65517, 13, 65515, 65518, 13, 65513, 65515, 13, 65513, 65516, 13, 65513, 65522, 13, 65513, 65523, 13, 65513, 65524, 13, 65513, 65525, 13, 65513, 65526, 13, 65513, 65527, 13, 65513, 65528, 13, 65514, 65516, 13, 65514, 65521, 13, 65514, 65522, 13, 65514, 65523, 27, 65514, 65524, 13, 65514, 65525, 13, 65514, 65526, 13, 65514, 65527, 13, 65514, 65528, 13, 65515, 65524, 13, 65515, 65525, 13, 65515, 65526, 13, 65515, 65527, 13, 65515, 65528, 13, 65516, 65514, 13, 65516, 65526, 13, 65516, 65527, 13, 65516, 65528, 13, 65517, 65528, 13, 65518, 65515, 13, 65518, 65518, 13, 65518, 65527, 13, 65518, 65528, 13, 65509, 65506, 13, 65509, 65507, 13, 65509, 65508, 13, 65509, 65509, 13, 65509, 65510, 13, 65509, 65511, 13, 65509, 65512, 13, 65509, 65513, 13, 65509, 65514, 13, 65509, 65515, 13, 65509, 65516, 13, 65509, 65517, 13, 65509, 65518, 13, 65509, 65519, 13, 65509, 65520, 13, 65509, 65521, 13, 65509, 65522, 13, 65509, 65523, 13, 65509, 65524, 13, 65509, 65525, 13, 65509, 65526, 13, 65509, 65527, 13, 65509, 65528, 13, 65510, 65506, 13, 65510, 65508, 13, 65510, 65509, 13, 65510, 65510, 13, 65510, 65511, 13, 65510, 65512, 13, 65510, 65513, 13, 65510, 65514, 13, 65510, 65515, 13, 65510, 65516, 13, 65510, 65517, 13, 65510, 65518, 13, 65510, 65519, 13, 65510, 65520, 13, 65510, 65521, 13, 65510, 65522, 13, 65510, 65523, 13, 65510, 65524, 13, 65510, 65525, 13, 65510, 65526, 13, 65510, 65527, 13, 65510, 65528, 13, 65511, 65506, 13, 65511, 65507, 13, 65511, 65508, 13, 65511, 65509, 13, 65511, 65510, 13, 65511, 65511, 13, 65511, 65512, 13, 65511, 65514, 13, 65511, 65515, 13, 65511, 65516, 13, 65511, 65517, 13, 65511, 65518, 13, 65511, 65519, 13, 65511, 65520, 13, 65511, 65521, 13, 65511, 65522, 13, 65511, 65523, 13, 65511, 65524, 13, 65511, 65525, 13, 65511, 65526, 13, 65511, 65527, 13, 65511, 65528, 13, 65512, 65506, 13, 65512, 65507, 13, 65512, 65508, 13, 65512, 65510, 13, 65512, 65511, 13, 65512, 65512, 13, 65512, 65513, 13, 65512, 65514, 13, 65512, 65516, 13, 65512, 65517, 13, 65512, 65518, 13, 65512, 65519, 13, 65512, 65520, 13, 65512, 65521, 13, 65512, 65522, 13, 65512, 65523, 13, 65512, 65524, 13, 65512, 65525, 13, 65512, 65526, 13, 65512, 65527, 13, 65512, 65528, 13, 65513, 65506, 13, 65513, 65507, 13, 65513, 65508, 13, 65513, 65509, 13, 65513, 65510, 13, 65513, 65511, 13, 65513, 65512, 13, 65513, 65513, 13, 65514, 65506, 13, 65515, 65506, 13, 65515, 65511, 13, 65516, 65506, 13, 65516, 65507, 13, 65516, 65508, 13, 65516, 65509, 13, 65516, 65510, 13, 65516, 65511, 13, 65516, 65513, 13, 65517, 65506, 13, 65517, 65507, 13, 65517, 65508, 13, 65517, 65509, 13, 65518, 65506, 13, 65518, 65507, 13, 65518, 65510, 13, 65518, 65512, 13, 65518, 65513, 13, 65519, 65506, 13, 65519, 65507, 13, 65519, 65508, 13, 65520, 65506, 13, 65520, 65507, 13, 65520, 65508, 13, 65521, 65506, 13, 65521, 65507, 13, 65521, 65508, 13, 65521, 65513, 13, 65521, 65514, 13, 65521, 65515, 13, 65521, 65516, 13, 65521, 65517, 13, 65521, 65518, 13, 65521, 65519, 13, 65522, 65506, 13, 65522, 65507, 13, 65522, 65508, 13, 65522, 65510, 13, 65522, 65511, 13, 65522, 65523, 13, 65522, 65525, 13, 65523, 65506, 13, 65523, 65507, 13, 65523, 65508, 13, 65523, 65513, 13, 65523, 65525, 13, 65524, 65506, 13, 65524, 65507, 13, 65524, 65508, 13, 65524, 65512, 13, 65524, 65516, 13, 65524, 65517, 13, 65524, 65518, 13, 65524, 65519, 13, 65524, 65520, 13, 65524, 65521, 13, 65524, 65522, 13, 65525, 65506, 13, 65525, 65507, 13, 65525, 65508, 13, 65525, 65512, 13, 65526, 65506, 13, 65526, 65507, 27, 65526, 65508, 13, 65526, 65512, 13, 131060, 65517, 27, 131059, 65517, 27, 131058, 65517, 27, 131057, 65517, 27, 131056, 65517, 27, 131052, 65513, 27, 131051, 65513, 27, 131050, 65513, 27, 131049, 65513, 27, 131049, 65514, 27, 131049, 65515, 27, 131049, 65516, 27, 131049, 65517, 27, 131052, 65521, 27, 131052, 65522, 27, 131052, 65523, 27, 131056, 65527, 27, 131056, 65528, 27, 65519, 65529, 27, 65520, 65529, 27, 65521, 65529, 27, 131060, 65525, 27, 131047, 65527, 27, 131047, 65528, 27, 131046, 65528, 27, 65512, 65529, 27, 65513, 65529, 27, 65514, 65529, 27, 65515, 65529, 27, 65516, 65529, 27, 65517, 65529, 27, 65518, 65529, 27, 131066, 1, 27, 131066, 2, 27, 131069, 65509, 27, 131068, 65509, 27, 131067, 65509, 27, 131066, 65509, 27, 131066, 65508, 27, 131066, 65507, 27, 131066, 65506, 27, 131065, 65506, 27, 131067, 65506, 27, 131067, 65507, 27, 131068, 65507, 27, 131069, 65507, 27, 131067, 65508, 27, 131068, 65506, 27, 131068, 65505, 27, 131068, 65504, 27, 131069, 65504, 27, 131069, 65505, 27, 131070, 65505, 27, 131067, 65505, 27, 131067, 65504, 27, 131066, 65503, 27, 131065, 65503, 27, 131065, 65504, 27, 131065, 65505, 27, 131064, 65505, 27, 131064, 65506, 27, 131064, 65507, 27, 131064, 65508, 27, 131065, 65508, 27, 131063, 65508, 27, 131063, 65507, 27, 131063, 65506, 27, 131063, 65505, 27, 131063, 65504, 27, 131064, 65504, 27, 131064, 65503, 27, 131064, 65502, 27, 131063, 65503, 27, 262141, 65506, 27, 262140, 65506, 27, 262139, 65506, 27, 262139, 65505, 27, 262138, 65505, 27, 262137, 65505, 27, 262137, 65504, 27, 262137, 65503, 27, 262138, 65503, 27, 262139, 65503, 27, 262139, 65504, 27, 262140, 65504, 27, 262141, 65504, 27, 262142, 65504, 27, 262142, 65505, 27, 262143, 65505, 27, 262143, 65506, 27, 262142, 65506, 27, 262141, 65505, 27, 262140, 65505, 27, 65534, 65513, 13, 131062, 65504, 27, 131061, 65504, 27, 131061, 65505, 27, 131060, 65505, 27, 131060, 65504, 27, 131059, 65504, 27, 131058, 65504, 27, 131057, 65504, 27, 131056, 65504, 27, 131055, 65504, 27, 131054, 65504, 27, 131053, 65503, 27, 131052, 65503, 27, 131051, 65503, 27, 131051, 65504, 27, 131050, 65504, 27, 131052, 65504, 27, 131053, 65504, 27, 131049, 65504, 27, 131048, 65504, 27, 131047, 65504, 27, 131047, 65503, 27, 131046, 65504, 27, 131045, 65504, 27, 131045, 65505, 27, 131044, 65505, 27, 131043, 65505, 27, 131044, 65506, 27, 131045, 65506, 27, 131046, 65505, 27, 131047, 65505, 27, 131048, 65505, 27, 131046, 65506, 27, 131047, 65506, 27, 131042, 65505, 27, 131042, 65506, 27, 131043, 65506, 27, 131044, 65503, 27, 131043, 65503, 27, 131043, 65504, 27, 131044, 65504, 27, 131045, 65503, 27, 131045, 65502, 27, 131046, 65502, 27, 131046, 65503, 27, 131048, 65503, 27, 131049, 65503, 27, 131050, 65503, 27, 131054, 65503, 27, 131054, 65502, 27, 131055, 65502, 27, 131056, 65502, 27, 131057, 65502, 27, 131058, 65502, 27, 131059, 65502, 27, 131060, 65502, 27, 131060, 65503, 27, 131061, 65503, 27, 131062, 65503, 27, 131063, 65501, 27, 131062, 65501, 27, 131061, 65502, 27, 131053, 65502, 27, 131052, 65502, 27, 131051, 65501, 27, 131050, 65501, 27, 131049, 65501, 27, 131048, 65500, 27, 131047, 65500, 27, 131046, 65500, 27, 131046, 65501, 27, 131047, 65501, 27, 131048, 65501, 27, 131052, 65501, 27, 131055, 65503, 27, 131058, 65503, 27, 131059, 65503, 27, 131062, 65502, 27, 131063, 65502, 27, 131064, 65501, 27, 131064, 65500, 27, 131063, 65500, 27, 131062, 65500, 27, 131061, 65501, 27, 131060, 65501, 27, 131059, 65501, 27, 131058, 65501, 27, 131056, 65501, 27, 131055, 65501, 27, 131054, 65501, 27, 131053, 65501, 27, 131053, 65500, 27, 131052, 65500, 27, 131051, 65500, 27, 131050, 65500, 27, 131049, 65500, 27, 131045, 65501, 27, 131044, 65501, 27, 262116, 65502, 27, 262116, 65503, 27, 262116, 65504, 27, 262117, 65504, 27, 262118, 65504, 27, 262118, 65503, 27, 262119, 65502, 27, 262120, 65502, 27, 262120, 65503, 27, 262121, 65503, 27, 262122, 65503, 27, 262123, 65503, 27, 262124, 65503, 27, 262124, 65502, 27, 262125, 65503, 27, 262125, 65502, 27, 262126, 65502, 27, 262127, 65502, 27, 262128, 65502, 27, 262128, 65501, 27, 262129, 65502, 27, 262129, 65501, 27, 262130, 65502, 27, 262130, 65503, 27, 262131, 65503, 27, 262132, 65503, 27, 262132, 65502, 27, 262133, 65502, 27, 262134, 65502, 27, 262135, 65502, 27, 262136, 65502, 27, 262135, 65503, 27, 262136, 65503, 27, 262128, 65500, 27, 262127, 65501, 27, 262126, 65501, 27, 262125, 65501, 27, 262124, 65501, 27, 262123, 65501, 27, 262122, 65501, 27, 262121, 65502, 27, 262118, 65502, 27, 262117, 65501, 27, 262116, 65501, 27, 262117, 65502, 27, 65508, 65507, 27, 65508, 65508, 27, 65508, 65509, 27, 65508, 65510, 27, 131058, 65510, 27, 131057, 65510, 27, 65528, 65507, 13, 65528, 65508, 13, 65528, 65509, 13, 65529, 65510, 13, 65529, 65509, 13, 65529, 65508, 13, 65528, 65511, 13, 65529, 65511, 13, 65528, 65513, 13, 65508, 65524, 13, 65508, 65523, 13, 65507, 65524, 13, 65506, 65524, 13, 65505, 65524, 13, 65504, 65524, 13, 65508, 65525, 27, 65503, 65524, 13, 65507, 65507, 27, 65506, 65507, 27, 65505, 65507, 27, 65504, 65507, 13, 65501, 65504, 27, 65500, 65504, 27, 65499, 65504, 27, 65499, 65503, 27, 65498, 65503, 27, 65497, 65503, 27, 65501, 65526, 27, 65500, 65526, 27, 65499, 65526, 27, 65499, 65527, 27, 65498, 65527, 27, 65497, 65527, 27, 65496, 65527, 27, 65496, 65528, 27, 65495, 65528, 27, 65502, 65507, 27, 65503, 65507, 13, 65502, 65506, 27, 65502, 65505, 27, 65502, 65504, 27, 65499, 65502, 27, 65500, 65502, 27, 65500, 65503, 27, 65505, 65505, 27, 65505, 65506, 27, 65504, 65506, 27, 65503, 65506, 27, 65504, 65505, 27, 65504, 65504, 27, 65504, 65503, 27, 65503, 65504, 27, 65503, 65505, 27, 65502, 65503, 27, 65502, 65502, 27, 65503, 65502, 27, 65504, 65502, 27, 65505, 65502, 27, 65506, 65502, 27, 65506, 65503, 27, 65506, 65504, 27, 65505, 65504, 27, 65503, 65501, 27, 65502, 65501, 27, 65501, 65501, 27, 65500, 65501, 27, 65499, 65501, 27, 65498, 65501, 27, 65497, 65501, 27, 65496, 65501, 27, 131036, 65527, 27, 131035, 65528, 27, 131034, 65528, 27, 131033, 65528, 27, 131032, 65528, 27, 65508, 65511, 13, 65508, 65512, 13, 65508, 65513, 13, 65508, 65514, 13, 65507, 65511, 13, 65507, 65510, 13, 65507, 65509, 13, 65506, 65509, 13, 65506, 65508, 13, 65505, 65508, 13, 65504, 65508, 13, 65503, 65508, 13, 65505, 65509, 13, 65508, 65521, 13, 65508, 65522, 13, 65507, 65522, 13, 65507, 65523, 13, 65506, 65523, 13, 65505, 65523, 13, 65506, 65522, 13, 65507, 65521, 13, 65506, 65521, 13, 65522, 65529, 27, 65523, 65529, 27, 65524, 65529, 27, 65525, 65529, 27, 65526, 65529, 27, 196579, 65501, 27, 196579, 65502, 27, 196578, 65502, 27, 196578, 65503, 27, 196577, 65503, 27, 196576, 65503, 27, 196575, 65503, 27, 196574, 65503, 27, 196574, 65502, 27, 196573, 65501, 27, 196572, 65501, 27, 196571, 65501, 27, 196570, 65501, 27, 196569, 65501, 27, 196568, 65501, 27, 196572, 65502, 27, 196575, 65501, 27, 196576, 65501, 27, 196577, 65501, 27, 196577, 65500, 27, 196576, 65500, 27, 196575, 65502, 27, 196576, 65502, 27, 196573, 65502, 27, 196579, 65500, 27, 196578, 65500, 27, 196575, 65500, 27, 196574, 65500, 27, 196574, 65499, 27, 196573, 65499, 27, 196573, 65500, 27, 196572, 65500, 27, 196571, 65500, 27, 196570, 65500, 27, 196569, 65500, 27, 196568, 65500, 27, 196568, 65499, 27, 196569, 65499, 27, 196577, 65499, 27, 196576, 65499, 27, 196575, 65499, 27, 196572, 65499, 27, 196571, 65499, 27, 196570, 65499, 27, 196578, 65499, 27, 196579, 65499, 27, 196579, 65498, 27, 196580, 65498, 27, 196580, 65499, 27, 196581, 65499, 27, 196582, 65499, 27, 196583, 65499, 27, 196584, 65499, 27, 65502, 65526, 27, 65503, 65526, 27, 65504, 65526, 27, 65505, 65526, 27, 65508, 65526, 27, 65506, 65526, 27, 65508, 65527, 27, 65508, 65528, 27, 65507, 65528, 27, 65506, 65528, 27, 65505, 65528, 27, 65504, 65528, 27, 65503, 65528, 27, 65502, 65528, 27, 65501, 65528, 27, 65501, 65527, 27, 65502, 65527, 27, 65503, 65527, 27, 65504, 65527, 27, 65505, 65527, 27, 65506, 65527, 27, 131037, 65528, 27, 131038, 65528, 27, 131039, 65528, 27, 131040, 65528, 27, 131041, 65528, 27, 131042, 65528, 27, 131043, 65528, 27, 131044, 65528, 27, 131045, 65528, 27, 131045, 65527, 27, 131046, 65527, 27, 65501, 65525, 27, 65501, 65524, 27, 6, 65506, 13, 7, 65506, 13, 8, 65506, 13, 9, 65506, 13, 10, 65506, 13, 15, 65513, 13, 15, 65512, 13, 14, 65511, 13, 6, 65505, 13, 6, 65507, 13, 6, 65508, 13, 6, 65509, 13, 6, 65510, 13, 6, 65516, 13, 6, 65518, 13, 7, 65505, 13, 7, 65507, 13, 7, 65508, 13, 7, 65509, 13, 7, 65510, 13, 7, 65518, 13, 8, 65505, 13, 8, 65507, 13, 8, 65508, 13, 8, 65509, 13, 8, 65510, 13, 8, 65512, 13, 8, 65516, 13, 8, 65518, 13, 9, 65505, 13, 9, 65507, 13, 9, 65508, 13, 9, 65509, 13, 9, 65510, 13, 10, 65505, 13, 10, 65507, 13, 10, 65508, 13, 10, 65509, 13, 10, 65510, 13, 10, 65512, 13, 10, 65514, 13, 10, 65517, 13, 10, 65519, 13, 11, 65505, 13, 11, 65506, 13, 11, 65507, 13, 11, 65509, 13, 11, 65510, 13, 12, 65505, 13, 12, 65506, 13, 12, 65507, 13, 12, 65508, 13, 12, 65509, 13, 12, 65510, 13, 12, 65511, 13, 12, 65516, 13, 13, 65505, 13, 13, 65506, 13, 13, 65507, 13, 13, 65508, 13, 13, 65509, 13, 13, 65511, 13, 13, 65512, 13, 14, 65505, 13, 14, 65506, 13, 14, 65507, 13, 14, 65508, 13, 14, 65509, 13, 14, 65510, 13, 14, 65512, 13, 14, 65513, 13, 15, 65505, 13, 15, 65506, 13, 15, 65507, 13, 15, 65508, 13, 15, 65509, 13, 15, 65510, 13, 15, 65518, 13, 16, 65505, 13, 16, 65506, 13, 16, 65507, 13, 16, 65508, 13, 16, 65509, 13, 16, 65510, 13, 16, 65511, 13, 16, 65512, 13, 16, 65513, 13, 16, 65514, 13, 17, 65505, 13, 17, 65506, 13, 17, 65507, 13, 17, 65508, 13, 17, 65509, 13, 17, 65510, 13, 17, 65511, 13, 17, 65512, 13, 17, 65513, 13, 17, 65514, 13, 17, 65515, 13, 17, 65516, 13, 17, 65517, 13, 17, 65518, 13, 17, 65519, 13, 18, 65505, 13, 18, 65506, 13, 18, 65507, 13, 18, 65508, 13, 18, 65509, 13, 18, 65510, 13, 18, 65511, 13, 18, 65512, 13, 18, 65513, 13, 18, 65514, 13, 18, 65515, 13, 18, 65516, 13, 18, 65517, 13, 18, 65518, 13, 18, 65519, 13, 19, 65505, 13, 19, 65506, 13, 19, 65507, 13, 19, 65508, 13, 19, 65509, 13, 19, 65510, 13, 19, 65511, 13, 19, 65512, 13, 19, 65513, 13, 19, 65514, 13, 19, 65515, 13, 19, 65516, 13, 19, 65517, 13, 19, 65518, 13, 19, 65519, 13, 20, 65505, 13, 20, 65506, 13, 20, 65507, 13, 20, 65508, 13, 20, 65509, 13, 20, 65511, 13, 20, 65516, 13, 20, 65517, 13, 20, 65518, 13, 20, 65519, 13, 21, 65505, 13, 21, 65506, 13, 21, 65507, 13, 21, 65509, 13, 21, 65510, 13, 21, 65511, 13, 21, 65512, 13, 21, 65513, 13, 21, 65514, 13, 21, 65516, 13, 21, 65517, 13, 21, 65518, 13, 21, 65519, 13, 22, 65505, 13, 22, 65506, 13, 22, 65507, 13, 22, 65508, 13, 22, 65509, 13, 22, 65510, 13, 22, 65511, 13, 22, 65512, 13, 22, 65513, 13, 22, 65514, 13, 22, 65516, 13, 22, 65517, 13, 22, 65518, 13, 22, 65519, 13, 23, 65506, 13, 23, 65507, 13, 23, 65508, 13, 23, 65509, 13, 23, 65510, 13, 23, 65511, 13, 23, 65512, 13, 23, 65513, 13, 23, 65514, 13, 23, 65515, 13, 23, 65516, 13, 23, 65517, 13, 23, 65518, 13, 23, 65519, 13, 24, 65505, 13, 24, 65506, 13, 24, 65507, 13, 24, 65508, 13, 24, 65509, 13, 24, 65510, 13, 24, 65511, 13, 24, 65512, 13, 24, 65513, 13, 24, 65514, 13, 24, 65515, 13, 24, 65516, 13, 24, 65517, 13, 24, 65518, 13, 24, 65519, 13, 25, 65505, 13, 25, 65506, 13, 25, 65507, 13, 25, 65508, 13, 25, 65509, 13, 25, 65510, 13, 25, 65511, 13, 25, 65512, 13, 25, 65513, 13, 25, 65514, 13, 25, 65516, 13, 25, 65517, 13, 25, 65518, 13, 25, 65519, 13, 26, 65505, 13, 26, 65506, 13, 26, 65507, 13, 26, 65508, 13, 26, 65509, 13, 26, 65510, 13, 26, 65511, 13, 26, 65512, 13, 26, 65513, 13, 26, 65514, 13, 26, 65515, 13, 26, 65516, 13, 26, 65517, 13, 26, 65518, 13, 26, 65519, 13, 27, 65505, 13, 27, 65506, 13, 27, 65508, 13, 27, 65509, 13, 27, 65510, 13, 27, 65511, 13, 27, 65512, 13, 27, 65513, 13, 27, 65515, 13, 27, 65516, 13, 27, 65517, 13, 27, 65518, 13, 27, 65519, 13, 28, 65505, 13, 28, 65506, 13, 28, 65507, 13, 28, 65508, 13, 28, 65509, 13, 28, 65510, 13, 28, 65511, 13, 28, 65512, 13, 28, 65513, 13, 28, 65514, 13, 28, 65515, 13, 28, 65516, 13, 28, 65517, 13, 28, 65518, 13, 28, 65519, 13, 29, 65506, 13, 29, 65508, 13, 29, 65510, 13, 29, 65512, 13, 29, 65513, 13, 29, 65515, 13, 29, 65516, 13, 29, 65517, 13, 29, 65518, 13, 29, 65519, 13, 30, 65505, 13, 30, 65506, 13, 30, 65507, 13, 30, 65508, 13, 30, 65509, 13, 30, 65512, 13, 30, 65514, 13, 30, 65515, 13, 30, 65516, 13, 30, 65517, 13, 30, 65518, 13, 30, 65519, 13, 31, 65505, 13, 31, 65506, 13, 31, 65507, 13, 31, 65508, 13, 31, 65510, 13, 31, 65511, 13, 31, 65512, 13, 31, 65513, 13, 31, 65514, 13, 31, 65515, 13, 31, 65516, 13, 31, 65517, 13, 31, 65518, 13, 31, 65519, 13, 5, 65505, 13, 5, 65506, 13, 5, 65507, 13, 5, 65508, 13, 5, 65509, 13, 5, 65511, 13, 4, 65507, 13, 4, 65506, 13, 4, 65505, 13, 4, 65508, 13, 4, 65509, 13, 4, 65510, 13, 3, 65505, 13, 3, 65506, 13, 3, 65507, 13, 3, 65508, 13, 3, 65509, 13, 3, 65510, 13, 3, 65517, 13, 5, 65518, 13, 12, 65520, 13, 13, 65520, 13, 14, 65520, 13, 16, 65520, 13, 17, 65520, 13, 18, 65520, 13, 19, 65520, 13, 20, 65520, 13, 21, 65520, 13, 22, 65520, 13, 23, 65520, 13, 24, 65520, 13, 25, 65520, 13, 26, 65520, 13, 27, 65520, 13, 28, 65520, 13, 29, 65520, 13, 30, 65520, 13, 31, 65520, 13, 65541, 65516, 27, 65541, 65515, 27, 65540, 65515, 27, 65540, 65514, 27, 65540, 65513, 27, 65540, 65512, 27, 65541, 65511, 27, 65541, 65510, 27, 65542, 65510, 27, 65542, 65511, 27, 65541, 65512, 27, 65541, 65513, 27, 65541, 65514, 27, 65542, 65515, 27, 65542, 65514, 27, 65542, 65513, 27, 65542, 65512, 27, 65543, 65511, 27, 65543, 65510, 27, 65543, 65509, 27, 65542, 65509, 27, 65541, 65509, 27, 65540, 65509, 27, 65540, 65508, 27, 65539, 65508, 27, 65539, 65507, 27, 65540, 65507, 27, 65541, 65507, 27, 65542, 65507, 27, 65542, 65508, 27, 65543, 65508, 27, 65543, 65512, 27, 65543, 65507, 27, 65543, 65506, 27, 65542, 65506, 27, 65541, 65506, 27, 65540, 65506, 27, 65539, 65506, 27, 196611, 65514, 27, 196612, 65514, 27, 196613, 65515, 27, 196613, 65514, 27, 196613, 65513, 27, 196613, 65512, 27, 196612, 65512, 27, 196612, 65513, 27, 196611, 65512, 27, 196611, 65513, 27, 196614, 65514, 27, 196614, 65515, 27, 65542, 65517, 27, 65542, 65516, 27, 65540, 65518, 27, 65540, 65519, 27, 65540, 65520, 27, 65541, 65519, 27, 65541, 65520, 27, 65542, 65520, 27, 65542, 65519, 27, 65542, 65518, 27, 4, 65521, 27, 5, 65521, 27, 6, 65521, 27, 196614, 65516, 13, 196614, 65517, 13, 196614, 65518, 13, 196614, 65519, 13, 196613, 65516, 13, 196613, 65517, 13, 65538, 65516, 13, 65539, 65516, 13, 131053, 65505, 13, 131053, 65506, 13, 65503, 65509, 13, 65504, 65509, 13, 65506, 65510, 13, 65505, 65510, 13, 65506, 65511, 13, 65505, 65511, 13, 65504, 65511, 13, 65504, 65510, 13, 65506, 65512, 13, 65507, 65512, 13, 65533, 65516, 13, 65533, 65515, 13, 65532, 65514, 13, 65529, 65513, 13, 65527, 65514, 13, 65527, 65515, 13, 65527, 65516, 13, 65529, 65515, 13, 65529, 65516, 13, 2, 65514, 13, 1, 65514, 13, 0, 65513, 13, 65535, 65513, 13, 65534, 65512, 13, 65533, 65512, 13, 65532, 65512, 13, 65531, 65512, 13, 65531, 65513, 13, 65530, 65513, 13, 65530, 65514, 13, 65530, 65515, 13, 11, 65508, 13, 13, 65510, 13, 15, 65511, 13, 27, 65507, 13, 30, 65510, 13, 30, 65511, 13, 31, 65509, 13, 24, 65534, 13, 26, 65531, 13, 28, 65530, 13, 29, 65528, 13, 30, 65527, 13, 30, 65513, 13, 29, 65514, 13, 27, 65514, 13, 25, 65515, 13, 22, 65515, 13, 21, 65515, 13, 20, 65515, 13, 20, 65514, 13, 20, 65513, 13, 20, 65512, 13, 20, 65510, 13, 21, 65508, 13, 23, 65505, 13, 29, 65505, 13, 29, 65507, 13, 29, 65509, 13, 29, 65511, 13, 17, 2, 13, 17, 3, 13, 17, 4, 13, 17, 5, 13, 17, 6, 13, 17, 7, 13, 17, 8, 13, 17, 9, 13, 17, 10, 13, 17, 11, 13, 17, 12, 13, 17, 13, 13, 17, 14, 13, 18, 2, 13, 18, 3, 13, 18, 4, 13, 18, 5, 13, 18, 6, 13, 18, 7, 13, 18, 8, 13, 18, 9, 13, 18, 10, 13, 18, 11, 13, 18, 12, 13, 18, 13, 13, 18, 14, 13, 19, 2, 13, 19, 3, 13, 19, 4, 13, 19, 5, 13, 19, 6, 13, 19, 7, 13, 19, 8, 13, 19, 9, 13, 19, 10, 13, 19, 11, 13, 19, 12, 13, 19, 13, 13, 19, 14, 13, 20, 2, 13, 20, 3, 13, 20, 4, 13, 20, 5, 13, 20, 6, 13, 20, 7, 13, 20, 8, 13, 20, 9, 13, 20, 10, 13, 20, 11, 13, 20, 12, 13, 20, 13, 13, 20, 14, 13, 21, 2, 13, 21, 3, 13, 21, 4, 13, 21, 5, 13, 21, 6, 13, 21, 7, 13, 21, 8, 13, 21, 9, 13, 21, 10, 13, 21, 11, 13, 21, 12, 13, 21, 13, 13, 21, 14, 13, 22, 2, 13, 22, 3, 13, 22, 4, 13, 22, 5, 13, 22, 6, 13, 22, 7, 13, 22, 8, 13, 22, 9, 13, 22, 10, 13, 22, 11, 13, 22, 12, 13, 22, 13, 13, 22, 14, 13, 23, 2, 13, 23, 3, 13, 23, 4, 13, 23, 5, 13, 23, 6, 13, 23, 7, 13, 23, 8, 13, 23, 9, 13, 23, 10, 13, 23, 11, 13, 23, 12, 13, 23, 13, 13, 23, 14, 13, 24, 2, 13, 24, 3, 13, 24, 4, 13, 24, 5, 13, 24, 6, 13, 24, 7, 13, 24, 8, 13, 24, 9, 13, 24, 10, 13, 24, 11, 13, 24, 12, 13, 24, 13, 13, 24, 14, 13, 25, 2, 13, 25, 3, 13, 25, 4, 13, 25, 5, 13, 25, 6, 13, 25, 7, 13, 25, 8, 13, 25, 9, 13, 25, 10, 13, 25, 11, 13, 25, 12, 13, 25, 13, 13, 25, 14, 13, 26, 2, 13, 26, 3, 13, 26, 4, 13, 26, 5, 13, 26, 6, 13, 26, 7, 13, 26, 8, 13, 26, 9, 13, 26, 10, 13, 26, 11, 13, 26, 12, 13, 26, 13, 13, 26, 14, 13, 27, 2, 13, 27, 3, 13, 27, 4, 13, 27, 5, 13, 27, 6, 13, 27, 7, 13, 27, 8, 13, 27, 9, 13, 27, 10, 13, 27, 11, 13, 27, 12, 13, 27, 13, 13, 27, 14, 13, 28, 2, 13, 28, 3, 13, 28, 4, 13, 28, 5, 13, 28, 6, 13, 28, 7, 13, 28, 8, 13, 28, 9, 13, 28, 10, 13, 28, 11, 13, 28, 12, 13, 28, 13, 13, 28, 14, 13, 29, 2, 13, 29, 3, 13, 29, 4, 13, 29, 5, 13, 29, 6, 13, 29, 7, 13, 29, 8, 13, 29, 9, 13, 29, 10, 13, 29, 11, 13, 29, 12, 13, 29, 13, 13, 29, 14, 13, 30, 2, 13, 30, 3, 13, 30, 4, 13, 30, 5, 13, 30, 6, 13, 30, 7, 13, 30, 8, 13, 30, 9, 13, 30, 10, 13, 30, 11, 13, 30, 12, 13, 30, 13, 13, 30, 14, 13, 31, 14, 13, 18, 1, 13, 30, 15, 13, 31, 1, 13, 16, 0, 13, 16, 1, 13, 16, 2, 13, 16, 3, 13, 16, 4, 13, 16, 5, 13, 16, 6, 13, 16, 7, 13, 16, 8, 13, 16, 9, 13, 16, 10, 13, 16, 11, 13, 16, 12, 13, 16, 13, 13, 17, 0, 13, 17, 1, 13, 17, 15, 13, 18, 0, 13, 18, 15, 13, 19, 0, 13, 19, 1, 13, 19, 15, 13, 20, 0, 13, 20, 1, 13, 20, 15, 13, 21, 0, 13, 21, 1, 13, 21, 15, 13, 22, 0, 13, 22, 1, 13, 22, 15, 13, 23, 1, 13, 23, 15, 13, 24, 0, 13, 24, 15, 13, 25, 1, 13, 25, 15, 13, 26, 0, 13, 26, 1, 13, 26, 15, 13, 27, 0, 13, 27, 1, 13, 27, 15, 13, 28, 0, 13, 28, 1, 13, 28, 15, 13, 29, 0, 13, 29, 1, 13, 29, 15, 13, 30, 0, 13, 30, 1, 13, 31, 0, 13, 31, 2, 13, 31, 3, 13, 31, 4, 13, 31, 5, 13, 31, 6, 13, 31, 7, 13, 31, 8, 13, 31, 9, 13, 31, 10, 13, 31, 11, 13, 31, 12, 13, 31, 13, 13, 31, 15, 13, 17, 16, 13, 18, 16, 13, 19, 16, 13, 20, 16, 13, 21, 16, 13, 22, 16, 13, 23, 16, 13, 24, 16, 13, 25, 16, 13, 26, 16, 13, 27, 16, 13, 28, 16, 13, 29, 16, 13, 30, 16, 13, 31, 16, 13, 32, 16, 13, 32, 15, 13, 32, 14, 13, 32, 13, 13, 32, 12, 13, 32, 11, 13, 32, 10, 13, 32, 9, 13, 16, 14, 13, 16, 15, 13, 16, 16, 13, 65520, 32, 13, 65520, 33, 13, 65520, 34, 13, 65520, 35, 13, 65520, 36, 13, 65520, 37, 13, 65520, 38, 13, 65520, 39, 13, 65520, 40, 13, 65520, 41, 13, 65520, 42, 13, 65520, 43, 13, 65520, 44, 13, 65520, 45, 13, 65520, 46, 13, 65520, 47, 13, 65520, 48, 13, 65521, 32, 13, 65521, 33, 13, 65521, 34, 1441833, 65521, 35, 13, 65521, 36, 13, 65521, 37, 13, 65521, 38, 13, 65521, 39, 13, 65521, 40, 13, 65521, 41, 13, 65521, 42, 13, 65521, 43, 13, 65521, 44, 13, 65521, 45, 13, 65521, 46, 1441833, 65521, 47, 13, 65521, 48, 13, 65522, 32, 13, 65522, 33, 41, 65522, 34, 13, 65522, 35, 13, 65522, 36, 13, 65522, 37, 13, 65522, 38, 13, 65522, 39, 13, 65522, 40, 13, 65522, 41, 13, 65522, 42, 13, 65522, 43, 13, 65522, 44, 13, 65522, 45, 13, 65522, 46, 13, 65522, 47, 41, 65522, 48, 13, 65523, 32, 13, 65523, 33, 13, 65523, 34, 13, 65523, 35, 13, 65523, 36, 13, 65523, 37, 13, 65523, 38, 13, 65523, 39, 13, 65523, 40, 13, 65523, 41, 13, 65523, 42, 13, 65523, 43, 13, 65523, 44, 13, 65523, 45, 13, 65523, 46, 13, 65523, 47, 13, 65523, 48, 13, 65524, 32, 13, 65524, 33, 13, 65524, 34, 13, 65524, 35, 13, 65524, 36, 13, 65524, 37, 13, 65524, 38, 13, 65524, 39, 13, 65524, 40, 13, 65524, 41, 13, 65524, 42, 13, 65524, 43, 13, 65524, 44, 13, 65524, 45, 13, 65524, 46, 13, 65524, 47, 13, 65524, 48, 13, 65525, 32, 13, 65525, 33, 13, 65525, 34, 13, 65525, 35, 13, 65525, 36, 13, 65525, 37, 13, 65525, 38, 13, 65525, 39, 13, 65525, 40, 13, 65525, 41, 13, 65525, 42, 13, 65525, 43, 13, 65525, 44, 13, 65525, 45, 13, 65525, 46, 13, 65525, 47, 13, 65525, 48, 13, 65526, 32, 13, 65526, 33, 13, 65526, 34, 13, 65526, 35, 13, 65526, 36, 13, 65526, 37, 13, 65526, 38, 13, 65526, 39, 13, 65526, 40, 13, 65526, 41, 13, 65526, 42, 13, 65526, 43, 13, 65526, 44, 13, 65526, 45, 13, 65526, 46, 13, 65526, 47, 13, 65526, 48, 13, 65527, 32, 13, 65527, 33, 13, 65527, 34, 13, 65527, 35, 13, 65527, 36, 13, 65527, 37, 13, 65527, 38, 13, 65527, 39, 13, 65527, 40, 13, 65527, 41, 13, 65527, 42, 13, 65527, 43, 13, 65527, 44, 13, 65527, 45, 13, 65527, 46, 13, 65527, 47, 13, 65527, 48, 13, 65528, 32, 13, 65528, 33, 13, 65528, 34, 13, 65528, 35, 13, 65528, 36, 13, 65528, 37, 13, 65528, 38, 13, 65528, 39, 13, 65528, 40, 13, 65528, 41, 13, 65528, 42, 13, 65528, 43, 13, 65528, 44, 13, 65528, 45, 13, 65528, 46, 13, 65528, 47, 13, 65528, 48, 13, 65529, 34, 13, 65529, 35, 13, 65529, 36, 13, 65529, 37, 13, 65529, 38, 13, 65529, 39, 13, 65529, 40, 13, 65529, 41, 13, 65529, 42, 13, 65529, 43, 13, 65529, 44, 13, 65529, 45, 13, 65529, 46, 13, 65529, 47, 13, 65529, 48, 13, 65530, 36, 13, 65530, 40, 13, 65530, 41, 13, 65530, 42, 13, 65530, 43, 13, 65530, 44, 13, 65530, 45, 13, 65530, 46, 13, 65530, 47, 13, 65530, 48, 13, 65531, 40, 13, 65531, 41, 13, 65531, 42, 13, 65531, 43, 13, 65531, 44, 13, 65531, 45, 13, 65531, 46, 13, 65531, 47, 13, 65531, 48, 13, 65532, 35, 13, 65532, 36, 13, 65532, 39, 13, 65532, 40, 13, 65532, 41, 13, 65532, 42, 13, 65532, 43, 13, 65532, 44, 13, 65532, 45, 13, 65532, 46, 13, 65532, 47, 13, 65532, 48, 13, 65533, 36, 13, 65533, 37, 13, 65533, 39, 13, 65533, 40, 13, 65533, 41, 13, 65533, 42, 13, 65533, 43, 13, 65533, 44, 13, 65533, 45, 13, 65533, 46, 13, 65533, 47, 13, 65533, 48, 13, 65534, 38, 13, 65534, 39, 13, 65534, 40, 13, 65534, 41, 13, 65534, 42, 13, 65534, 43, 13, 65534, 44, 13, 65534, 45, 13, 65534, 46, 13, 65534, 47, 41, 65534, 48, 13, 65535, 39, 13, 65535, 40, 13, 65535, 41, 13, 65535, 42, 13, 65535, 43, 13, 65535, 44, 13, 65535, 45, 13, 65535, 46, 1441833, 65535, 47, 13, 65535, 48, 13, 0, 34, 13, 0, 37, 13, 0, 38, 13, 0, 39, 13, 0, 40, 13, 0, 41, 13, 0, 42, 13, 0, 43, 13, 0, 44, 13, 0, 45, 13, 0, 46, 13, 0, 47, 13, 0, 48, 13, 32, 65520, 13, 32, 65521, 13, 32, 65522, 13, 32, 65523, 13, 32, 65524, 13, 32, 65525, 13, 32, 65526, 13, 32, 65527, 13, 32, 65528, 13, 32, 65529, 13, 32, 65530, 13, 32, 65531, 13, 32, 65532, 13, 32, 65533, 13, 32, 65534, 13, 32, 65535, 13, 32, 0, 13, 33, 65520, 13, 33, 65521, 13, 33, 65522, 13, 33, 65523, 13, 33, 65524, 13, 33, 65525, 13, 33, 65526, 13, 33, 65527, 13, 33, 65528, 13, 33, 65529, 13, 33, 65530, 13, 33, 65531, 13, 33, 65532, 13, 33, 65533, 13, 33, 65534, 13, 33, 65535, 13, 33, 0, 13, 34, 65520, 13, 34, 65521, 13, 34, 65522, 13, 34, 65523, 13, 34, 65524, 13, 34, 65525, 13, 34, 65526, 13, 34, 65527, 13, 34, 65528, 13, 34, 65529, 13, 34, 65530, 13, 34, 65531, 13, 34, 65532, 13, 34, 65533, 13, 34, 65534, 13, 34, 65535, 13, 34, 0, 13, 35, 65520, 13, 35, 65521, 13, 35, 65522, 13, 35, 65523, 13, 35, 65524, 13, 35, 65525, 13, 35, 65526, 13, 35, 65527, 13, 35, 65528, 13, 35, 65529, 13, 35, 65530, 13, 35, 65531, 13, 35, 65532, 13, 35, 65533, 13, 35, 65534, 13, 35, 65535, 13, 35, 0, 13, 36, 65520, 13, 36, 65521, 13, 36, 65522, 13, 36, 65523, 13, 36, 65524, 13, 36, 65525, 13, 36, 65526, 13, 36, 65527, 13, 36, 65528, 13, 36, 65529, 13, 36, 65530, 13, 36, 65531, 13, 36, 65532, 13, 36, 65533, 13, 36, 65534, 13, 36, 65535, 13, 36, 0, 13, 37, 65520, 13, 37, 65521, 13, 37, 65522, 13, 37, 65523, 13, 37, 65524, 13, 37, 65525, 13, 37, 65526, 13, 37, 65527, 13, 37, 65528, 13, 37, 65529, 13, 37, 65530, 13, 37, 65531, 13, 37, 65532, 13, 37, 65533, 13, 37, 65534, 13, 37, 65535, 13, 37, 0, 13, 38, 65520, 13, 38, 65521, 13, 38, 65522, 13, 38, 65523, 13, 38, 65524, 13, 38, 65525, 13, 38, 65526, 13, 38, 65527, 13, 38, 65528, 13, 38, 65529, 13, 38, 65530, 13, 38, 65531, 13, 38, 65532, 13, 38, 65533, 13, 38, 65534, 13, 38, 65535, 13, 38, 0, 13, 39, 65520, 13, 39, 65521, 13, 39, 65522, 13, 39, 65523, 13, 39, 65524, 13, 39, 65525, 13, 39, 65526, 13, 39, 65527, 13, 39, 65528, 13, 39, 65529, 13, 39, 65530, 13, 39, 65531, 13, 39, 65532, 13, 39, 65533, 13, 39, 65534, 13, 39, 65535, 13, 39, 0, 13, 40, 65520, 13, 40, 65521, 13, 40, 65522, 13, 40, 65523, 13, 40, 65524, 13, 40, 65525, 13, 40, 65526, 13, 40, 65527, 13, 40, 65528, 13, 40, 65529, 13, 40, 65530, 13, 40, 65531, 13, 40, 65532, 13, 40, 65533, 13, 40, 65534, 13, 40, 65535, 13, 40, 0, 13, 41, 65520, 13, 41, 65521, 13, 41, 65522, 13, 41, 65523, 13, 41, 65524, 13, 41, 65525, 13, 41, 65526, 13, 41, 65527, 13, 41, 65528, 13, 41, 65529, 13, 41, 65530, 13, 41, 65531, 13, 41, 65532, 13, 41, 65533, 13, 41, 65534, 13, 41, 65535, 13, 41, 0, 13, 42, 65520, 13, 42, 65521, 13, 42, 65522, 13, 42, 65523, 13, 42, 65524, 13, 42, 65525, 13, 42, 65526, 13, 42, 65527, 13, 42, 65528, 13, 42, 65529, 13, 42, 65530, 13, 42, 65531, 13, 42, 65532, 13, 42, 65533, 13, 42, 65534, 13, 42, 65535, 13, 42, 0, 13, 43, 65520, 13, 43, 65521, 13, 43, 65522, 13, 43, 65523, 13, 43, 65524, 13, 43, 65525, 13, 43, 65526, 13, 43, 65527, 13, 43, 65528, 13, 43, 65529, 13, 43, 65530, 13, 43, 65531, 13, 43, 65532, 13, 43, 65533, 13, 43, 65534, 13, 43, 65535, 13, 43, 0, 13, 44, 65520, 13, 44, 65521, 13, 44, 65522, 13, 44, 65523, 13, 44, 65524, 13, 44, 65525, 13, 44, 65526, 13, 44, 65527, 13, 44, 65528, 13, 44, 65529, 13, 44, 65530, 13, 44, 65531, 13, 44, 65532, 13, 44, 65533, 13, 44, 65534, 13, 44, 65535, 13, 44, 0, 13, 45, 65520, 13, 45, 65521, 13, 45, 65522, 13, 45, 65523, 13, 45, 65524, 13, 45, 65525, 13, 45, 65526, 13, 45, 65527, 13, 45, 65528, 13, 45, 65529, 13, 45, 65530, 13, 45, 65531, 13, 45, 65532, 13, 45, 65533, 13, 45, 65534, 13, 45, 65535, 13, 45, 0, 13, 46, 65520, 13, 46, 65521, 13, 46, 65522, 13, 46, 65523, 13, 46, 65524, 13, 46, 65525, 13, 46, 65526, 13, 46, 65527, 13, 46, 65528, 13, 46, 65529, 13, 46, 65530, 13, 46, 65531, 13, 46, 65532, 13, 46, 65533, 13, 46, 65534, 13, 46, 65535, 13, 46, 0, 13, 47, 65520, 13, 47, 65521, 13, 47, 65522, 13, 47, 65523, 13, 47, 65524, 13, 47, 65525, 13, 47, 65526, 13, 47, 65527, 13, 47, 65528, 13, 47, 65529, 13, 47, 65530, 13, 47, 65531, 13, 47, 65532, 13, 47, 65533, 13, 47, 65534, 13, 47, 65535, 13, 47, 0, 13, 48, 65520, 13, 48, 65521, 13, 48, 65522, 13, 48, 65523, 13, 48, 65524, 13, 48, 65525, 13, 48, 65526, 13, 48, 65527, 13, 48, 65528, 13, 48, 65529, 13, 48, 65530, 13, 48, 65531, 13, 48, 65532, 13, 48, 65533, 13, 48, 65534, 13, 48, 65535, 13, 48, 0, 13, 32, 1, 13, 32, 2, 13, 32, 3, 13, 32, 4, 13, 32, 5, 13, 32, 6, 13, 32, 7, 13, 32, 8, 13, 33, 1, 13, 33, 2, 13, 33, 3, 13, 33, 4, 13, 33, 5, 13, 33, 6, 13, 33, 7, 13, 33, 8, 13, 33, 9, 13, 33, 10, 13, 33, 11, 13, 33, 12, 13, 33, 13, 13, 33, 14, 13, 33, 15, 13, 33, 16, 13, 34, 1, 13, 34, 2, 13, 34, 3, 13, 34, 4, 13, 34, 5, 13, 34, 6, 13, 34, 7, 13, 34, 8, 13, 34, 9, 13, 34, 10, 13, 34, 11, 13, 34, 12, 13, 34, 13, 13, 34, 14, 13, 34, 15, 13, 34, 16, 13, 35, 1, 13, 35, 2, 13, 35, 3, 13, 35, 4, 13, 35, 5, 13, 35, 6, 13, 35, 7, 13, 35, 8, 13, 35, 9, 13, 35, 10, 13, 35, 11, 13, 35, 12, 13, 35, 13, 13, 35, 14, 13, 35, 15, 13, 35, 16, 13, 36, 1, 13, 36, 2, 13, 36, 3, 13, 36, 4, 13, 36, 5, 13, 36, 6, 13, 36, 7, 13, 36, 8, 13, 36, 9, 13, 36, 10, 13, 36, 11, 13, 36, 12, 13, 36, 13, 13, 36, 14, 13, 36, 15, 13, 36, 16, 13, 37, 1, 13, 37, 2, 13, 37, 3, 13, 37, 4, 13, 37, 5, 13, 37, 6, 13, 37, 7, 13, 37, 8, 13, 37, 9, 13, 37, 10, 13, 37, 11, 13, 37, 12, 13, 37, 13, 13, 37, 14, 13, 37, 15, 13, 37, 16, 13, 38, 1, 13, 38, 2, 13, 38, 3, 13, 38, 4, 13, 38, 5, 13, 38, 6, 13, 38, 7, 13, 38, 8, 13, 38, 9, 13, 38, 10, 13, 38, 11, 13, 38, 12, 13, 38, 13, 13, 38, 14, 13, 38, 15, 13, 38, 16, 13, 39, 1, 13, 39, 2, 13, 39, 3, 13, 39, 4, 13, 39, 5, 13, 39, 6, 13, 39, 7, 13, 39, 8, 13, 39, 9, 13, 39, 10, 13, 39, 11, 13, 39, 12, 13, 39, 13, 13, 39, 14, 13, 39, 15, 13, 39, 16, 13, 40, 1, 13, 40, 2, 13, 40, 3, 13, 40, 4, 13, 40, 5, 13, 40, 6, 13, 40, 7, 13, 40, 8, 13, 40, 9, 13, 40, 10, 13, 40, 11, 13, 40, 12, 13, 40, 13, 13, 40, 14, 13, 40, 15, 13, 40, 16, 13, 41, 1, 13, 41, 2, 13, 41, 3, 13, 41, 4, 13, 41, 5, 13, 41, 6, 13, 41, 7, 13, 41, 8, 13, 41, 9, 13, 41, 10, 13, 41, 11, 13, 41, 12, 13, 41, 13, 13, 41, 14, 13, 41, 15, 13, 41, 16, 13, 42, 1, 13, 42, 2, 13, 42, 3, 13, 42, 4, 13, 42, 5, 13, 42, 6, 13, 42, 7, 13, 42, 8, 13, 42, 9, 13, 42, 10, 13, 42, 11, 13, 42, 12, 13, 42, 13, 13, 42, 14, 13, 42, 15, 13, 42, 16, 13, 43, 1, 13, 43, 2, 13, 43, 3, 13, 43, 4, 13, 43, 5, 13, 43, 6, 13, 43, 7, 13, 43, 8, 13, 43, 9, 13, 43, 10, 13, 43, 11, 13, 43, 12, 13, 43, 13, 13, 43, 14, 13, 43, 15, 13, 43, 16, 13, 44, 1, 13, 44, 2, 13, 44, 3, 13, 44, 4, 13, 44, 5, 13, 44, 6, 13, 44, 7, 13, 44, 8, 13, 44, 9, 13, 44, 10, 13, 44, 11, 13, 44, 12, 13, 44, 13, 13, 44, 14, 13, 44, 15, 13, 44, 16, 13, 45, 1, 13, 45, 2, 13, 45, 3, 13, 45, 4, 13, 45, 5, 13, 45, 6, 13, 45, 7, 13, 45, 8, 13, 45, 9, 13, 45, 10, 13, 45, 11, 13, 45, 12, 13, 45, 13, 13, 45, 14, 13, 45, 15, 13, 45, 16, 13, 46, 1, 13, 46, 2, 13, 46, 3, 13, 46, 4, 13, 46, 5, 13, 46, 6, 13, 46, 7, 13, 46, 8, 13, 46, 9, 13, 46, 10, 13, 46, 11, 13, 46, 12, 13, 46, 13, 13, 46, 14, 13, 46, 15, 13, 46, 16, 13, 47, 1, 13, 47, 2, 13, 47, 3, 13, 47, 4, 13, 47, 5, 13, 47, 6, 13, 47, 7, 13, 47, 8, 13, 47, 9, 13, 47, 10, 13, 47, 11, 13, 47, 12, 13, 47, 13, 13, 47, 14, 13, 47, 15, 13, 47, 16, 13, 48, 1, 13, 48, 2, 13, 48, 3, 13, 48, 4, 13, 48, 5, 13, 48, 6, 13, 48, 7, 13, 48, 8, 13, 48, 9, 13, 48, 10, 13, 48, 11, 13, 48, 12, 13, 48, 13, 13, 48, 14, 13, 48, 15, 13, 48, 16, 13, 49, 0, 13, 49, 1, 13, 49, 2, 13, 49, 3, 13, 49, 4, 13, 49, 5, 13, 49, 6, 13, 49, 7, 13, 49, 8, 13, 49, 9, 13, 49, 10, 13, 49, 11, 13, 49, 12, 13, 49, 13, 13, 49, 14, 13, 49, 15, 13, 49, 16, 13, 50, 0, 13, 50, 1, 13, 50, 2, 13, 50, 3, 13, 50, 4, 13, 50, 5, 13, 50, 6, 13, 50, 7, 13, 50, 8, 13, 50, 9, 13, 50, 10, 13, 50, 11, 13, 50, 12, 13, 50, 13, 13, 50, 14, 13, 50, 15, 13, 50, 16, 13, 51, 0, 13, 51, 1, 13, 51, 2, 13, 51, 3, 13, 51, 4, 13, 51, 5, 13, 51, 6, 13, 51, 7, 13, 51, 8, 13, 51, 9, 13, 51, 10, 13, 51, 11, 13, 51, 12, 13, 51, 13, 13, 51, 14, 13, 51, 15, 13, 51, 16, 13, 52, 0, 13, 52, 1, 13, 52, 2, 13, 52, 3, 13, 52, 4, 13, 52, 5, 13, 52, 6, 13, 52, 7, 13, 52, 8, 13, 52, 9, 13, 52, 10, 13, 52, 11, 13, 52, 12, 13, 52, 13, 13, 52, 14, 13, 52, 15, 13, 52, 16, 13, 53, 0, 13, 53, 1, 13, 53, 2, 13, 53, 3, 13, 53, 4, 13, 53, 5, 13, 53, 6, 13, 53, 7, 13, 53, 8, 13, 53, 9, 13, 53, 10, 13, 53, 11, 13, 53, 12, 13, 53, 13, 13, 53, 14, 13, 53, 15, 13, 53, 16, 13, 54, 0, 13, 54, 1, 13, 54, 2, 13, 54, 3, 13, 54, 4, 13, 54, 5, 13, 54, 6, 13, 54, 7, 13, 54, 8, 13, 54, 9, 13, 54, 10, 13, 54, 11, 13, 54, 12, 13, 54, 13, 13, 54, 14, 13, 54, 15, 13, 54, 16, 13, 55, 0, 13, 55, 1, 13, 55, 2, 13, 55, 3, 13, 55, 4, 13, 55, 5, 13, 55, 6, 13, 55, 7, 13, 55, 8, 13, 55, 9, 13, 55, 10, 13, 55, 11, 13, 55, 12, 13, 55, 13, 13, 55, 14, 13, 55, 15, 13, 55, 16, 13, 56, 0, 13, 56, 1, 13, 56, 2, 13, 56, 3, 13, 56, 4, 13, 56, 5, 13, 56, 6, 13, 56, 7, 13, 56, 8, 13, 56, 9, 13, 56, 10, 13, 56, 11, 13, 56, 12, 13, 56, 13, 13, 56, 14, 13, 56, 15, 13, 56, 16, 13, 57, 0, 13, 57, 1, 13, 57, 2, 13, 57, 3, 13, 57, 4, 13, 57, 5, 13, 57, 6, 13, 57, 7, 13, 57, 8, 13, 57, 9, 13, 57, 10, 13, 57, 11, 13, 57, 12, 13, 57, 13, 13, 57, 14, 13, 57, 15, 13, 57, 16, 13, 58, 0, 13, 58, 1, 13, 58, 2, 13, 58, 3, 13, 58, 4, 13, 58, 5, 13, 58, 6, 13, 58, 7, 13, 58, 8, 13, 58, 9, 13, 58, 10, 13, 58, 11, 13, 58, 12, 13, 58, 13, 13, 58, 14, 13, 58, 15, 13, 58, 16, 13, 59, 0, 13, 59, 1, 13, 59, 2, 13, 59, 3, 13, 59, 4, 13, 59, 5, 13, 59, 6, 13, 59, 7, 13, 59, 8, 13, 59, 9, 13, 59, 10, 13, 59, 11, 13, 59, 12, 13, 59, 13, 13, 59, 14, 13, 59, 15, 13, 59, 16, 13, 60, 0, 13, 60, 1, 13, 60, 2, 13, 60, 3, 13, 60, 4, 13, 60, 5, 13, 60, 6, 13, 60, 7, 13, 60, 8, 13, 60, 9, 13, 60, 10, 13, 60, 11, 13, 60, 12, 13, 60, 13, 13, 60, 14, 13, 60, 15, 13, 60, 16, 13, 61, 0, 13, 61, 1, 13, 61, 2, 13, 61, 3, 13, 61, 4, 13, 61, 5, 13, 61, 6, 13, 61, 7, 13, 61, 8, 13, 61, 9, 13, 61, 10, 13, 61, 11, 13, 61, 12, 13, 61, 13, 13, 61, 14, 13, 61, 15, 13, 61, 16, 13, 62, 0, 13, 62, 1, 13, 62, 2, 13, 62, 3, 13, 62, 4, 13, 62, 5, 13, 62, 6, 13, 62, 7, 13, 62, 8, 13, 62, 9, 13, 62, 10, 13, 62, 11, 13, 62, 12, 13, 62, 13, 13, 62, 14, 13, 62, 15, 13, 62, 16, 13, 63, 0, 13, 63, 1, 13, 63, 2, 13, 63, 3, 13, 63, 4, 13, 63, 5, 13, 63, 6, 13, 63, 7, 13, 63, 8, 13, 63, 9, 13, 63, 10, 13, 63, 11, 13, 63, 12, 13, 63, 13, 13, 63, 14, 13, 63, 15, 13, 63, 16, 13, 64, 0, 13, 64, 1, 13, 64, 2, 13, 64, 3, 13, 64, 4, 13, 64, 5, 13, 64, 6, 13, 64, 7, 13, 64, 8, 13, 64, 9, 13, 64, 10, 13, 64, 11, 13, 64, 12, 13, 64, 13, 13, 64, 14, 13, 64, 15, 13, 64, 16, 13, 49, 65520, 13, 49, 65521, 13, 49, 65522, 13, 49, 65523, 13, 49, 65524, 13, 49, 65525, 13, 49, 65526, 13, 49, 65527, 13, 49, 65528, 13, 49, 65529, 13, 49, 65530, 13, 49, 65531, 13, 49, 65532, 13, 49, 65533, 13, 49, 65534, 13, 49, 65535, 13, 50, 65520, 13, 50, 65521, 13, 50, 65522, 13, 50, 65523, 13, 50, 65524, 13, 50, 65525, 13, 50, 65526, 13, 50, 65527, 13, 50, 65528, 13, 50, 65529, 13, 50, 65530, 13, 50, 65531, 13, 50, 65532, 13, 50, 65533, 13, 50, 65534, 13, 50, 65535, 13, 51, 65520, 13, 51, 65521, 13, 51, 65522, 13, 51, 65523, 13, 51, 65524, 13, 51, 65525, 13, 51, 65526, 13, 51, 65527, 13, 51, 65528, 13, 51, 65529, 13, 51, 65530, 13, 51, 65531, 13, 51, 65532, 13, 51, 65533, 13, 51, 65534, 13, 51, 65535, 13, 52, 65520, 13, 52, 65521, 13, 52, 65522, 13, 52, 65523, 13, 52, 65524, 13, 52, 65525, 13, 52, 65526, 13, 52, 65527, 13, 52, 65528, 13, 52, 65529, 13, 52, 65530, 13, 52, 65531, 13, 52, 65532, 13, 52, 65533, 13, 52, 65534, 13, 52, 65535, 13, 53, 65520, 13, 53, 65521, 13, 53, 65522, 13, 53, 65523, 13, 53, 65524, 13, 53, 65525, 13, 53, 65526, 13, 53, 65527, 13, 53, 65528, 13, 53, 65529, 13, 53, 65530, 13, 53, 65531, 13, 53, 65532, 13, 53, 65533, 13, 53, 65534, 13, 53, 65535, 13, 54, 65520, 13, 54, 65521, 13, 54, 65522, 13, 54, 65523, 13, 54, 65524, 13, 54, 65525, 13, 54, 65526, 13, 54, 65527, 13, 54, 65528, 13, 54, 65529, 13, 54, 65530, 13, 54, 65531, 13, 54, 65532, 13, 54, 65533, 13, 54, 65534, 13, 54, 65535, 13, 55, 65520, 13, 55, 65521, 13, 55, 65522, 13, 55, 65523, 13, 55, 65524, 13, 55, 65525, 13, 55, 65526, 13, 55, 65527, 13, 55, 65528, 13, 55, 65529, 13, 55, 65530, 13, 55, 65531, 13, 55, 65532, 13, 55, 65533, 13, 55, 65534, 13, 55, 65535, 13, 56, 65520, 13, 56, 65521, 13, 56, 65522, 13, 56, 65523, 13, 56, 65524, 13, 56, 65525, 13, 56, 65526, 13, 56, 65527, 13, 56, 65528, 13, 56, 65529, 13, 56, 65530, 13, 56, 65531, 13, 56, 65532, 13, 56, 65533, 13, 56, 65534, 13, 56, 65535, 13, 57, 65520, 13, 57, 65521, 13, 57, 65522, 13, 57, 65523, 13, 57, 65524, 13, 57, 65525, 13, 57, 65526, 13, 57, 65527, 13, 57, 65528, 13, 57, 65529, 13, 57, 65530, 13, 57, 65531, 13, 57, 65532, 13, 57, 65533, 13, 57, 65534, 13, 57, 65535, 13, 58, 65520, 13, 58, 65521, 13, 58, 65522, 13, 58, 65523, 13, 58, 65524, 13, 58, 65525, 13, 58, 65526, 13, 58, 65527, 13, 58, 65528, 13, 58, 65529, 13, 58, 65530, 13, 58, 65531, 13, 58, 65532, 13, 58, 65533, 13, 58, 65534, 13, 58, 65535, 13, 59, 65520, 13, 59, 65521, 13, 59, 65522, 13, 59, 65523, 13, 59, 65524, 13, 59, 65525, 13, 59, 65526, 13, 59, 65527, 13, 59, 65528, 13, 59, 65529, 13, 59, 65530, 13, 59, 65531, 13, 59, 65532, 13, 59, 65533, 13, 59, 65534, 13, 59, 65535, 13, 60, 65520, 13, 60, 65521, 13, 60, 65522, 13, 60, 65523, 13, 60, 65524, 13, 60, 65525, 13, 60, 65526, 13, 60, 65527, 13, 60, 65528, 13, 60, 65529, 13, 60, 65530, 13, 60, 65531, 13, 60, 65532, 13, 60, 65533, 13, 60, 65534, 13, 60, 65535, 13, 61, 65520, 13, 61, 65521, 13, 61, 65522, 13, 61, 65523, 13, 61, 65524, 13, 61, 65525, 13, 61, 65526, 13, 61, 65527, 13, 61, 65528, 13, 61, 65529, 13, 61, 65530, 13, 61, 65531, 13, 61, 65532, 13, 61, 65533, 13, 61, 65534, 13, 61, 65535, 13, 62, 65520, 13, 62, 65521, 13, 62, 65522, 13, 62, 65523, 13, 62, 65524, 13, 62, 65525, 13, 62, 65526, 13, 62, 65527, 13, 62, 65528, 13, 62, 65529, 13, 62, 65530, 13, 62, 65531, 13, 62, 65532, 13, 62, 65533, 13, 62, 65534, 13, 62, 65535, 13, 63, 65520, 13, 63, 65521, 13, 63, 65522, 13, 63, 65523, 13, 63, 65524, 13, 63, 65525, 13, 63, 65526, 13, 63, 65527, 13, 63, 65528, 13, 63, 65529, 13, 63, 65530, 13, 63, 65531, 13, 63, 65532, 13, 63, 65533, 13, 63, 65534, 13, 63, 65535, 13, 64, 65520, 13, 64, 65521, 13, 64, 65522, 13, 64, 65523, 13, 64, 65524, 13, 64, 65525, 13, 64, 65526, 13, 64, 65527, 13, 64, 65528, 13, 64, 65529, 13, 64, 65530, 13, 64, 65531, 13, 64, 65532, 13, 64, 65533, 13, 64, 65534, 13, 64, 65535, 13, 32, 65504, 13, 32, 65505, 13, 32, 65506, 13, 32, 65507, 13, 32, 65508, 13, 32, 65509, 13, 32, 65510, 13, 32, 65511, 13, 32, 65512, 13, 32, 65513, 13, 32, 65514, 13, 32, 65515, 13, 32, 65516, 13, 32, 65517, 13, 32, 65518, 13, 32, 65519, 13, 33, 65504, 13, 33, 65505, 13, 33, 65506, 13, 33, 65507, 13, 33, 65508, 13, 33, 65509, 13, 33, 65510, 13, 33, 65511, 13, 33, 65512, 13, 33, 65513, 13, 33, 65514, 13, 33, 65515, 13, 33, 65516, 13, 33, 65517, 13, 33, 65518, 13, 33, 65519, 13, 34, 65504, 13, 34, 65505, 13, 34, 65506, 13, 34, 65507, 13, 34, 65508, 13, 34, 65509, 13, 34, 65510, 13, 34, 65511, 13, 34, 65512, 13, 34, 65513, 13, 34, 65514, 13, 34, 65515, 13, 34, 65516, 13, 34, 65517, 13, 34, 65518, 13, 34, 65519, 13, 35, 65504, 13, 35, 65505, 13, 35, 65506, 13, 35, 65507, 13, 35, 65508, 13, 35, 65509, 13, 35, 65510, 13, 35, 65511, 13, 35, 65512, 13, 35, 65513, 13, 35, 65514, 13, 35, 65515, 13, 35, 65516, 13, 35, 65517, 13, 35, 65518, 13, 35, 65519, 13, 36, 65504, 13, 36, 65505, 13, 36, 65506, 13, 36, 65507, 13, 36, 65508, 13, 36, 65509, 13, 36, 65510, 13, 36, 65511, 13, 36, 65512, 13, 36, 65513, 13, 36, 65514, 13, 36, 65515, 13, 36, 65516, 13, 36, 65517, 13, 36, 65518, 13, 36, 65519, 13, 37, 65504, 13, 37, 65505, 13, 37, 65506, 13, 37, 65507, 13, 37, 65508, 13, 37, 65509, 13, 37, 65510, 13, 37, 65511, 13, 37, 65512, 13, 37, 65513, 13, 37, 65514, 13, 37, 65515, 13, 37, 65516, 13, 37, 65517, 13, 37, 65518, 13, 37, 65519, 13, 38, 65504, 13, 38, 65505, 13, 38, 65506, 13, 38, 65507, 13, 38, 65508, 13, 38, 65509, 13, 38, 65510, 13, 38, 65511, 13, 38, 65512, 13, 38, 65513, 13, 38, 65514, 13, 38, 65515, 13, 38, 65516, 13, 38, 65517, 13, 38, 65518, 13, 38, 65519, 13, 39, 65504, 13, 39, 65505, 13, 39, 65506, 13, 39, 65507, 13, 39, 65508, 13, 39, 65509, 13, 39, 65510, 13, 39, 65511, 13, 39, 65512, 13, 39, 65513, 13, 39, 65514, 13, 39, 65515, 13, 39, 65516, 13, 39, 65517, 13, 39, 65518, 13, 39, 65519, 13, 40, 65504, 13, 40, 65505, 13, 40, 65506, 13, 40, 65507, 13, 40, 65508, 13, 40, 65509, 13, 40, 65510, 13, 40, 65511, 13, 40, 65512, 13, 40, 65513, 13, 40, 65514, 13, 40, 65515, 13, 40, 65516, 13, 40, 65517, 13, 40, 65518, 13, 40, 65519, 13, 41, 65504, 13, 41, 65505, 13, 41, 65506, 13, 41, 65507, 13, 41, 65508, 13, 41, 65509, 13, 41, 65510, 13, 41, 65511, 13, 41, 65512, 13, 41, 65513, 13, 41, 65514, 13, 41, 65515, 13, 41, 65516, 13, 41, 65517, 13, 41, 65518, 13, 41, 65519, 13, 42, 65504, 13, 42, 65505, 13, 42, 65506, 13, 42, 65507, 13, 42, 65508, 13, 42, 65509, 13, 42, 65510, 13, 42, 65511, 13, 42, 65512, 13, 42, 65513, 13, 42, 65514, 13, 42, 65515, 13, 42, 65516, 13, 42, 65517, 13, 42, 65518, 13, 42, 65519, 13, 43, 65504, 13, 43, 65505, 13, 43, 65506, 13, 43, 65507, 13, 43, 65508, 13, 43, 65509, 13, 43, 65510, 13, 43, 65511, 13, 43, 65512, 13, 43, 65513, 13, 43, 65514, 13, 43, 65515, 13, 43, 65516, 13, 43, 65517, 13, 43, 65518, 13, 43, 65519, 13, 44, 65504, 13, 44, 65505, 13, 44, 65506, 13, 44, 65507, 13, 44, 65508, 13, 44, 65509, 13, 44, 65510, 13, 44, 65511, 13, 44, 65512, 13, 44, 65513, 13, 44, 65514, 13, 44, 65515, 13, 44, 65516, 13, 44, 65517, 13, 44, 65518, 13, 44, 65519, 13, 45, 65504, 13, 45, 65505, 13, 45, 65506, 13, 45, 65507, 13, 45, 65508, 13, 45, 65509, 13, 45, 65510, 13, 45, 65511, 13, 45, 65512, 13, 45, 65513, 13, 45, 65514, 13, 45, 65515, 13, 45, 65516, 13, 45, 65517, 13, 45, 65518, 13, 45, 65519, 13, 46, 65504, 13, 46, 65505, 13, 46, 65506, 13, 46, 65507, 13, 46, 65508, 13, 46, 65509, 13, 46, 65510, 13, 46, 65511, 13, 46, 65512, 13, 46, 65513, 13, 46, 65514, 13, 46, 65515, 13, 46, 65516, 13, 46, 65517, 13, 46, 65518, 13, 46, 65519, 13, 47, 65504, 13, 47, 65505, 13, 47, 65506, 13, 47, 65507, 13, 47, 65508, 13, 47, 65509, 13, 47, 65510, 13, 47, 65511, 13, 47, 65512, 13, 47, 65513, 13, 47, 65514, 13, 47, 65515, 13, 47, 65516, 13, 47, 65517, 13, 47, 65518, 13, 47, 65519, 13, 48, 65504, 13, 48, 65505, 13, 48, 65506, 13, 48, 65507, 13, 48, 65508, 13, 48, 65509, 13, 48, 65510, 13, 48, 65511, 13, 48, 65512, 13, 48, 65513, 13, 48, 65514, 13, 48, 65515, 13, 48, 65516, 13, 48, 65517, 13, 48, 65518, 13, 48, 65519, 13, 49, 65504, 13, 49, 65505, 13, 49, 65506, 13, 49, 65507, 13, 49, 65508, 13, 49, 65509, 13, 49, 65510, 13, 49, 65511, 13, 49, 65512, 13, 49, 65513, 13, 49, 65514, 13, 49, 65515, 13, 49, 65516, 13, 49, 65517, 13, 49, 65518, 13, 49, 65519, 13, 50, 65504, 13, 50, 65505, 13, 50, 65506, 13, 50, 65507, 13, 50, 65508, 13, 50, 65509, 13, 50, 65510, 13, 50, 65511, 13, 50, 65512, 13, 50, 65513, 13, 50, 65514, 13, 50, 65515, 13, 50, 65516, 13, 50, 65517, 13, 50, 65518, 13, 50, 65519, 13, 51, 65504, 13, 51, 65505, 13, 51, 65506, 13, 51, 65507, 13, 51, 65508, 13, 51, 65509, 13, 51, 65510, 13, 51, 65511, 13, 51, 65512, 13, 51, 65513, 13, 51, 65514, 13, 51, 65515, 13, 51, 65516, 13, 51, 65517, 13, 51, 65518, 13, 51, 65519, 13, 52, 65504, 13, 52, 65505, 13, 52, 65506, 13, 52, 65507, 13, 52, 65508, 13, 52, 65509, 13, 52, 65510, 13, 52, 65511, 13, 52, 65512, 13, 52, 65513, 13, 52, 65514, 13, 52, 65515, 13, 52, 65516, 13, 52, 65517, 13, 52, 65518, 13, 52, 65519, 13, 53, 65504, 13, 53, 65505, 13, 53, 65506, 13, 53, 65507, 13, 53, 65508, 13, 53, 65509, 13, 53, 65510, 13, 53, 65511, 13, 53, 65512, 13, 53, 65513, 13, 53, 65514, 13, 53, 65515, 13, 53, 65516, 13, 53, 65517, 13, 53, 65518, 13, 53, 65519, 13, 54, 65504, 13, 54, 65505, 13, 54, 65506, 13, 54, 65507, 13, 54, 65508, 13, 54, 65509, 13, 54, 65510, 13, 54, 65511, 13, 54, 65512, 13, 54, 65513, 13, 54, 65514, 13, 54, 65515, 13, 54, 65516, 13, 54, 65517, 13, 54, 65518, 13, 54, 65519, 13, 55, 65504, 13, 55, 65505, 13, 55, 65506, 13, 55, 65507, 13, 55, 65508, 13, 55, 65509, 13, 55, 65510, 13, 55, 65511, 13, 55, 65512, 13, 55, 65513, 13, 55, 65514, 13, 55, 65515, 13, 55, 65516, 13, 55, 65517, 13, 55, 65518, 13, 55, 65519, 13, 56, 65504, 13, 56, 65505, 13, 56, 65506, 13, 56, 65507, 13, 56, 65508, 13, 56, 65509, 13, 56, 65510, 13, 56, 65511, 13, 56, 65512, 13, 56, 65513, 13, 56, 65514, 13, 56, 65515, 13, 56, 65516, 13, 56, 65517, 13, 56, 65518, 13, 56, 65519, 13, 57, 65504, 13, 57, 65505, 13, 57, 65506, 13, 57, 65507, 13, 57, 65508, 13, 57, 65509, 13, 57, 65510, 13, 57, 65511, 13, 57, 65512, 13, 57, 65513, 13, 57, 65514, 13, 57, 65515, 13, 57, 65516, 13, 57, 65517, 13, 57, 65518, 13, 57, 65519, 13, 58, 65504, 13, 58, 65505, 13, 58, 65506, 13, 58, 65507, 13, 58, 65508, 13, 58, 65509, 13, 58, 65510, 13, 58, 65511, 13, 58, 65512, 13, 58, 65513, 13, 58, 65514, 13, 58, 65515, 13, 58, 65516, 13, 58, 65517, 13, 58, 65518, 13, 58, 65519, 13, 59, 65504, 13, 59, 65505, 13, 59, 65506, 13, 59, 65507, 13, 59, 65508, 13, 59, 65509, 13, 59, 65510, 13, 59, 65511, 13, 59, 65512, 13, 59, 65513, 13, 59, 65514, 13, 59, 65515, 13, 59, 65516, 13, 59, 65517, 13, 59, 65518, 13, 59, 65519, 13, 60, 65504, 13, 60, 65505, 13, 60, 65506, 13, 60, 65507, 13, 60, 65508, 13, 60, 65509, 13, 60, 65510, 13, 60, 65511, 13, 60, 65512, 13, 60, 65513, 13, 60, 65514, 13, 60, 65515, 13, 60, 65516, 13, 60, 65517, 13, 60, 65518, 13, 60, 65519, 13, 61, 65504, 13, 61, 65505, 13, 61, 65506, 13, 61, 65507, 13, 61, 65508, 13, 61, 65509, 13, 61, 65510, 13, 61, 65511, 13, 61, 65512, 13, 61, 65513, 13, 61, 65514, 13, 61, 65515, 13, 61, 65516, 13, 61, 65517, 13, 61, 65518, 13, 61, 65519, 13, 62, 65504, 13, 62, 65505, 13, 62, 65506, 13, 62, 65507, 13, 62, 65508, 13, 62, 65509, 13, 62, 65510, 13, 62, 65511, 13, 62, 65512, 13, 62, 65513, 13, 62, 65514, 13, 62, 65515, 13, 62, 65516, 13, 62, 65517, 13, 62, 65518, 13, 62, 65519, 13, 63, 65504, 13, 63, 65505, 13, 63, 65506, 13, 63, 65507, 13, 63, 65508, 13, 63, 65509, 13, 63, 65510, 13, 63, 65511, 13, 63, 65512, 13, 63, 65513, 13, 63, 65514, 13, 63, 65515, 13, 63, 65516, 13, 63, 65517, 13, 63, 65518, 13, 63, 65519, 13, 64, 65504, 13, 64, 65505, 13, 64, 65506, 13, 64, 65507, 13, 64, 65508, 13, 64, 65509, 13, 64, 65510, 13, 64, 65511, 13, 64, 65512, 13, 64, 65513, 13, 64, 65514, 13, 64, 65515, 13, 64, 65516, 13, 64, 65517, 13, 64, 65518, 13, 64, 65519, 13, 65, 65504, 13, 65, 65505, 13, 65, 65506, 13, 65, 65507, 13, 65, 65508, 13, 65, 65509, 13, 65, 65510, 13, 65, 65511, 13, 65, 65512, 13, 65, 65513, 13, 65, 65514, 13, 65, 65515, 13, 65, 65516, 13, 65, 65517, 13, 65, 65518, 13, 65, 65519, 13, 65, 65520, 13, 66, 65504, 13, 66, 65505, 13, 66, 65506, 13, 66, 65507, 13, 66, 65508, 13, 66, 65509, 13, 66, 65510, 13, 66, 65511, 13, 66, 65512, 13, 66, 65513, 13, 66, 65514, 13, 66, 65515, 13, 66, 65516, 13, 66, 65517, 13, 66, 65518, 13, 66, 65519, 13, 66, 65520, 13, 67, 65504, 13, 67, 65505, 13, 67, 65506, 13, 67, 65507, 13, 67, 65508, 13, 67, 65509, 13, 67, 65510, 13, 67, 65511, 13, 67, 65512, 13, 67, 65513, 13, 67, 65514, 13, 67, 65515, 13, 67, 65516, 13, 67, 65517, 13, 67, 65518, 13, 67, 65519, 13, 67, 65520, 13, 68, 65504, 13, 68, 65505, 13, 68, 65506, 13, 68, 65507, 13, 68, 65508, 13, 68, 65509, 13, 68, 65510, 13, 68, 65511, 13, 68, 65512, 13, 68, 65513, 13, 68, 65514, 13, 68, 65515, 13, 68, 65516, 13, 68, 65517, 13, 68, 65518, 13, 68, 65519, 13, 68, 65520, 13, 69, 65504, 13, 69, 65505, 13, 69, 65506, 13, 69, 65507, 13, 69, 65508, 13, 69, 65509, 13, 69, 65510, 13, 69, 65511, 13, 69, 65512, 13, 69, 65513, 13, 69, 65514, 13, 69, 65515, 13, 69, 65516, 13, 69, 65517, 13, 69, 65518, 13, 69, 65519, 13, 69, 65520, 13, 70, 65504, 13, 70, 65505, 13, 70, 65506, 13, 70, 65507, 13, 70, 65508, 13, 70, 65509, 13, 70, 65510, 13, 70, 65511, 13, 70, 65512, 13, 70, 65513, 13, 70, 65514, 13, 70, 65515, 13, 70, 65516, 13, 70, 65517, 13, 70, 65518, 13, 70, 65519, 13, 70, 65520, 13, 71, 65504, 13, 71, 65505, 13, 71, 65506, 13, 71, 65507, 13, 71, 65508, 13, 71, 65509, 13, 71, 65510, 13, 71, 65511, 13, 71, 65512, 13, 71, 65513, 13, 71, 65514, 13, 71, 65515, 13, 71, 65516, 13, 71, 65517, 13, 71, 65518, 13, 71, 65519, 13, 71, 65520, 13, 72, 65504, 13, 72, 65505, 13, 72, 65506, 13, 72, 65507, 13, 72, 65508, 13, 72, 65509, 13, 72, 65510, 13, 72, 65511, 13, 72, 65512, 13, 72, 65513, 13, 72, 65514, 13, 72, 65515, 13, 72, 65516, 13, 72, 65517, 13, 72, 65518, 13, 72, 65519, 13, 72, 65520, 13, 73, 65504, 13, 73, 65505, 13, 73, 65506, 13, 73, 65507, 13, 73, 65508, 13, 73, 65509, 13, 73, 65510, 13, 73, 65511, 13, 73, 65512, 13, 73, 65513, 13, 73, 65514, 13, 73, 65515, 13, 73, 65516, 13, 73, 65517, 13, 73, 65518, 13, 73, 65519, 13, 73, 65520, 13, 74, 65504, 13, 74, 65505, 13, 74, 65506, 13, 74, 65507, 13, 74, 65508, 13, 74, 65509, 13, 74, 65510, 13, 74, 65511, 13, 74, 65512, 13, 74, 65513, 13, 74, 65514, 13, 74, 65515, 13, 74, 65516, 13, 74, 65517, 13, 74, 65518, 13, 74, 65519, 13, 74, 65520, 13, 75, 65504, 13, 75, 65505, 13, 75, 65506, 13, 75, 65507, 13, 75, 65508, 13, 75, 65509, 13, 75, 65510, 13, 75, 65511, 13, 75, 65512, 13, 75, 65513, 13, 75, 65514, 13, 75, 65515, 13, 75, 65516, 13, 75, 65517, 13, 75, 65518, 13, 75, 65519, 13, 75, 65520, 13, 76, 65504, 13, 76, 65505, 13, 76, 65506, 13, 76, 65507, 13, 76, 65508, 13, 76, 65509, 13, 76, 65510, 13, 76, 65511, 13, 76, 65512, 13, 76, 65513, 13, 76, 65514, 13, 76, 65515, 13, 76, 65516, 13, 76, 65517, 13, 76, 65518, 13, 76, 65519, 13, 76, 65520, 13, 77, 65504, 13, 77, 65505, 13, 77, 65506, 13, 77, 65507, 13, 77, 65508, 13, 77, 65509, 13, 77, 65510, 13, 77, 65511, 13, 77, 65512, 13, 77, 65513, 13, 77, 65514, 13, 77, 65515, 13, 77, 65516, 13, 77, 65517, 13, 77, 65518, 13, 77, 65519, 13, 77, 65520, 13, 78, 65504, 13, 78, 65505, 13, 78, 65506, 13, 78, 65507, 13, 78, 65508, 13, 78, 65509, 13, 78, 65510, 13, 78, 65511, 13, 78, 65512, 13, 78, 65513, 13, 78, 65514, 13, 78, 65515, 13, 78, 65516, 13, 78, 65517, 13, 78, 65518, 13, 78, 65519, 13, 78, 65520, 13, 79, 65504, 13, 79, 65505, 13, 79, 65506, 13, 79, 65507, 13, 79, 65508, 13, 79, 65509, 13, 79, 65510, 13, 79, 65511, 13, 79, 65512, 13, 79, 65513, 13, 79, 65514, 13, 79, 65515, 13, 79, 65516, 13, 79, 65517, 13, 79, 65518, 13, 79, 65519, 13, 79, 65520, 13, 80, 65504, 13, 80, 65505, 13, 80, 65506, 13, 80, 65507, 13, 80, 65508, 13, 80, 65509, 13, 80, 65510, 13, 80, 65511, 13, 80, 65512, 13, 80, 65513, 13, 80, 65514, 13, 80, 65515, 13, 80, 65516, 13, 80, 65517, 13, 80, 65518, 13, 80, 65519, 13, 80, 65520, 13, 65, 65521, 13, 65, 65522, 13, 65, 65523, 13, 65, 65524, 13, 65, 65525, 13, 65, 65526, 13, 65, 65527, 13, 65, 65528, 13, 65, 65529, 13, 65, 65530, 13, 65, 65531, 13, 65, 65532, 13, 65, 65533, 13, 65, 65534, 13, 65, 65535, 13, 65, 0, 13, 66, 65521, 13, 66, 65522, 13, 66, 65523, 13, 66, 65524, 13, 66, 65525, 13, 66, 65526, 13, 66, 65527, 13, 66, 65528, 13, 66, 65529, 13, 66, 65530, 13, 66, 65531, 13, 66, 65532, 13, 66, 65533, 13, 66, 65534, 13, 66, 65535, 13, 66, 0, 13, 67, 65521, 13, 67, 65522, 13, 67, 65523, 13, 67, 65524, 13, 67, 65525, 13, 67, 65526, 13, 67, 65527, 13, 67, 65528, 13, 67, 65529, 13, 67, 65530, 13, 67, 65531, 13, 67, 65532, 13, 67, 65533, 13, 67, 65534, 13, 67, 65535, 13, 67, 0, 13, 68, 65521, 13, 68, 65522, 13, 68, 65523, 13, 68, 65524, 13, 68, 65525, 13, 68, 65526, 13, 68, 65527, 13, 68, 65528, 13, 68, 65529, 13, 68, 65530, 13, 68, 65531, 13, 68, 65532, 13, 68, 65533, 13, 68, 65534, 13, 68, 65535, 13, 68, 0, 13, 69, 65521, 13, 69, 65522, 13, 69, 65523, 13, 69, 65524, 13, 69, 65525, 13, 69, 65526, 13, 69, 65527, 13, 69, 65528, 13, 69, 65529, 13, 69, 65530, 13, 69, 65531, 13, 69, 65532, 13, 69, 65533, 13, 69, 65534, 13, 69, 65535, 13, 69, 0, 13, 70, 65521, 13, 70, 65522, 13, 70, 65523, 13, 70, 65524, 13, 70, 65525, 13, 70, 65526, 13, 70, 65527, 13, 70, 65528, 13, 70, 65529, 13, 70, 65530, 13, 70, 65531, 13, 70, 65532, 13, 70, 65533, 13, 70, 65534, 13, 70, 65535, 13, 70, 0, 13, 71, 65521, 13, 71, 65522, 13, 71, 65523, 13, 71, 65524, 13, 71, 65525, 13, 71, 65526, 13, 71, 65527, 13, 71, 65528, 13, 71, 65529, 13, 71, 65530, 13, 71, 65531, 13, 71, 65532, 13, 71, 65533, 13, 71, 65534, 13, 71, 65535, 13, 71, 0, 13, 72, 65521, 13, 72, 65522, 13, 72, 65523, 13, 72, 65524, 13, 72, 65525, 13, 72, 65526, 13, 72, 65527, 13, 72, 65528, 13, 72, 65529, 13, 72, 65530, 13, 72, 65531, 13, 72, 65532, 13, 72, 65533, 13, 72, 65534, 13, 72, 65535, 13, 72, 0, 13, 73, 65521, 13, 73, 65522, 13, 73, 65523, 13, 73, 65524, 13, 73, 65525, 13, 73, 65526, 13, 73, 65527, 13, 73, 65528, 13, 73, 65529, 13, 73, 65530, 13, 73, 65531, 13, 73, 65532, 13, 73, 65533, 13, 73, 65534, 13, 73, 65535, 13, 73, 0, 13, 74, 65521, 13, 74, 65522, 13, 74, 65523, 13, 74, 65524, 13, 74, 65525, 13, 74, 65526, 13, 74, 65527, 13, 74, 65528, 13, 74, 65529, 13, 74, 65530, 13, 74, 65531, 13, 74, 65532, 13, 74, 65533, 13, 74, 65534, 13, 74, 65535, 13, 74, 0, 13, 75, 65521, 13, 75, 65522, 13, 75, 65523, 13, 75, 65524, 13, 75, 65525, 13, 75, 65526, 13, 75, 65527, 13, 75, 65528, 13, 75, 65529, 13, 75, 65530, 13, 75, 65531, 13, 75, 65532, 13, 75, 65533, 13, 75, 65534, 13, 75, 65535, 13, 75, 0, 13, 76, 65521, 13, 76, 65522, 13, 76, 65523, 13, 76, 65524, 13, 76, 65525, 13, 76, 65526, 13, 76, 65527, 13, 76, 65528, 13, 76, 65529, 13, 76, 65530, 13, 76, 65531, 13, 76, 65532, 13, 76, 65533, 13, 76, 65534, 13, 76, 65535, 13, 76, 0, 13, 77, 65521, 13, 77, 65522, 13, 77, 65523, 13, 77, 65524, 13, 77, 65525, 13, 77, 65526, 13, 77, 65527, 13, 77, 65528, 13, 77, 65529, 13, 77, 65530, 13, 77, 65531, 13, 77, 65532, 13, 77, 65533, 13, 77, 65534, 13, 77, 65535, 13, 77, 0, 13, 78, 65521, 13, 78, 65522, 13, 78, 65523, 13, 78, 65524, 13, 78, 65525, 13, 78, 65526, 13, 78, 65527, 13, 78, 65528, 13, 78, 65529, 13, 78, 65530, 13, 78, 65531, 13, 78, 65532, 13, 78, 65533, 13, 78, 65534, 13, 78, 65535, 13, 78, 0, 13, 79, 65521, 13, 79, 65522, 13, 79, 65523, 13, 79, 65524, 13, 79, 65525, 13, 79, 65526, 13, 79, 65527, 13, 79, 65528, 13, 79, 65529, 13, 79, 65530, 13, 79, 65531, 13, 79, 65532, 13, 79, 65533, 13, 79, 65534, 13, 79, 65535, 13, 79, 0, 13, 80, 65521, 13, 80, 65522, 13, 80, 65523, 13, 80, 65524, 13, 80, 65525, 13, 80, 65526, 13, 80, 65527, 13, 80, 65528, 13, 80, 65529, 13, 80, 65530, 13, 80, 65531, 13, 80, 65532, 13, 80, 65533, 13, 80, 65534, 13, 80, 65535, 13, 80, 0, 13, 65, 1, 13, 65, 2, 13, 65, 3, 13, 65, 4, 13, 65, 5, 13, 65, 6, 13, 65, 7, 13, 65, 8, 13, 65, 9, 13, 65, 10, 13, 65, 11, 13, 65, 12, 13, 65, 13, 13, 65, 14, 13, 65, 15, 13, 65, 16, 13, 66, 1, 13, 66, 2, 13, 66, 3, 13, 66, 4, 13, 66, 5, 13, 66, 6, 13, 66, 7, 13, 66, 8, 13, 66, 9, 13, 66, 10, 13, 66, 11, 13, 66, 12, 13, 66, 13, 13, 66, 14, 13, 66, 15, 13, 66, 16, 13, 67, 1, 13, 67, 2, 13, 67, 3, 13, 67, 4, 13, 67, 5, 13, 67, 6, 13, 67, 7, 13, 67, 8, 13, 67, 9, 13, 67, 10, 13, 67, 11, 13, 67, 12, 13, 67, 13, 13, 67, 14, 13, 67, 15, 13, 67, 16, 13, 68, 1, 13, 68, 2, 13, 68, 3, 13, 68, 4, 13, 68, 5, 13, 68, 6, 13, 68, 7, 13, 68, 8, 13, 68, 9, 13, 68, 10, 13, 68, 11, 13, 68, 12, 13, 68, 13, 13, 68, 14, 13, 68, 15, 13, 68, 16, 13, 69, 1, 13, 69, 2, 13, 69, 3, 13, 69, 4, 13, 69, 5, 13, 69, 6, 13, 69, 7, 13, 69, 8, 13, 69, 9, 13, 69, 10, 13, 69, 11, 13, 69, 12, 13, 69, 13, 13, 69, 14, 13, 69, 15, 13, 69, 16, 13, 70, 1, 13, 70, 2, 13, 70, 3, 13, 70, 4, 13, 70, 5, 13, 70, 6, 13, 70, 7, 13, 70, 8, 13, 70, 9, 13, 70, 10, 13, 70, 11, 13, 70, 12, 13, 70, 13, 13, 70, 14, 13, 70, 15, 13, 70, 16, 13, 71, 1, 13, 71, 2, 13, 71, 3, 13, 71, 4, 13, 71, 5, 13, 71, 6, 13, 71, 7, 13, 71, 8, 13, 71, 9, 13, 71, 10, 13, 71, 11, 13, 71, 12, 13, 71, 13, 13, 71, 14, 13, 71, 15, 13, 71, 16, 13, 72, 1, 13, 72, 2, 13, 72, 3, 13, 72, 4, 13, 72, 5, 13, 72, 6, 13, 72, 7, 13, 72, 8, 13, 72, 9, 13, 72, 10, 13, 72, 11, 13, 72, 12, 13, 72, 13, 13, 72, 14, 13, 72, 15, 13, 72, 16, 13, 73, 1, 13, 73, 2, 13, 73, 3, 13, 73, 4, 13, 73, 5, 13, 73, 6, 13, 73, 7, 13, 73, 8, 13, 73, 9, 13, 73, 10, 13, 73, 11, 13, 73, 12, 13, 73, 13, 13, 73, 14, 13, 73, 15, 13, 73, 16, 13, 74, 1, 13, 74, 2, 13, 74, 3, 13, 74, 4, 13, 74, 5, 13, 74, 6, 13, 74, 7, 13, 74, 8, 13, 74, 9, 13, 74, 10, 13, 74, 11, 13, 74, 12, 13, 74, 13, 13, 74, 14, 13, 74, 15, 13, 74, 16, 13, 75, 1, 13, 75, 2, 13, 75, 3, 13, 75, 4, 13, 75, 5, 13, 75, 6, 13, 75, 7, 13, 75, 8, 13, 75, 9, 13, 75, 10, 13, 75, 11, 13, 75, 12, 13, 75, 13, 13, 75, 14, 13, 75, 15, 13, 75, 16, 13, 76, 1, 13, 76, 2, 13, 76, 3, 13, 76, 4, 13, 76, 5, 13, 76, 6, 13, 76, 7, 13, 76, 8, 13, 76, 9, 13, 76, 10, 13, 76, 11, 13, 76, 12, 13, 76, 13, 13, 76, 14, 13, 76, 15, 13, 76, 16, 13, 77, 1, 13, 77, 2, 13, 77, 3, 13, 77, 4, 13, 77, 5, 13, 77, 6, 13, 77, 7, 13, 77, 8, 13, 77, 9, 13, 77, 10, 13, 77, 11, 13, 77, 12, 13, 77, 13, 13, 77, 14, 13, 77, 15, 13, 77, 16, 13, 78, 1, 13, 78, 2, 13, 78, 3, 13, 78, 4, 13, 78, 5, 13, 78, 6, 13, 78, 7, 13, 78, 8, 13, 78, 9, 13, 78, 10, 13, 78, 11, 13, 78, 12, 13, 78, 13, 13, 78, 14, 13, 78, 15, 13, 78, 16, 13, 79, 1, 13, 79, 2, 13, 79, 3, 13, 79, 4, 13, 79, 5, 13, 79, 6, 13, 79, 7, 13, 79, 8, 13, 79, 9, 13, 79, 10, 13, 79, 11, 13, 79, 12, 13, 79, 13, 13, 79, 14, 13, 79, 15, 13, 79, 16, 13, 80, 1, 13, 80, 2, 13, 80, 3, 13, 80, 4, 13, 80, 5, 13, 80, 6, 13, 80, 7, 13, 80, 8, 13, 80, 9, 13, 80, 10, 13, 80, 11, 13, 80, 12, 13, 80, 13, 13, 80, 14, 13, 80, 15, 13, 80, 16, 13, 32, 65488, 13, 32, 65489, 13, 32, 65490, 13, 32, 65491, 13, 32, 65492, 13, 32, 65493, 13, 32, 65494, 13, 32, 65495, 13, 32, 65496, 13, 32, 65497, 13, 32, 65498, 13, 32, 65499, 13, 32, 65500, 13, 32, 65501, 13, 32, 65502, 13, 32, 65503, 13, 33, 65488, 13, 33, 65489, 13, 33, 65490, 13, 33, 65491, 13, 33, 65492, 13, 33, 65493, 13, 33, 65494, 13, 33, 65495, 13, 33, 65496, 13, 33, 65497, 13, 33, 65498, 13, 33, 65499, 13, 33, 65500, 13, 33, 65501, 13, 33, 65502, 13, 33, 65503, 13, 34, 65488, 13, 34, 65489, 13, 34, 65490, 13, 34, 65491, 13, 34, 65492, 13, 34, 65493, 13, 34, 65494, 13, 34, 65495, 13, 34, 65496, 13, 34, 65497, 13, 34, 65498, 13, 34, 65499, 13, 34, 65500, 13, 34, 65501, 13, 34, 65502, 13, 34, 65503, 13, 35, 65488, 13, 35, 65489, 13, 35, 65490, 13, 35, 65491, 13, 35, 65492, 13, 35, 65493, 13, 35, 65494, 13, 35, 65495, 13, 35, 65496, 13, 35, 65497, 13, 35, 65498, 13, 35, 65499, 13, 35, 65500, 13, 35, 65501, 13, 35, 65502, 13, 35, 65503, 13, 36, 65488, 13, 36, 65489, 13, 36, 65490, 13, 36, 65491, 13, 36, 65492, 13, 36, 65493, 13, 36, 65494, 13, 36, 65495, 13, 36, 65496, 13, 36, 65497, 13, 36, 65498, 13, 36, 65499, 13, 36, 65500, 13, 36, 65501, 13, 36, 65502, 13, 36, 65503, 13, 37, 65488, 13, 37, 65489, 13, 37, 65490, 13, 37, 65491, 13, 37, 65492, 13, 37, 65493, 13, 37, 65494, 13, 37, 65495, 13, 37, 65496, 13, 37, 65497, 13, 37, 65498, 13, 37, 65499, 13, 37, 65500, 13, 37, 65501, 13, 37, 65502, 13, 37, 65503, 13, 38, 65488, 13, 38, 65489, 13, 38, 65490, 13, 38, 65491, 13, 38, 65492, 13, 38, 65493, 13, 38, 65494, 13, 38, 65495, 13, 38, 65496, 13, 38, 65497, 13, 38, 65498, 13, 38, 65499, 13, 38, 65500, 13, 38, 65501, 13, 38, 65502, 13, 38, 65503, 13, 39, 65488, 13, 39, 65489, 13, 39, 65490, 13, 39, 65491, 13, 39, 65492, 13, 39, 65493, 13, 39, 65494, 13, 39, 65495, 13, 39, 65496, 13, 39, 65497, 13, 39, 65498, 13, 39, 65499, 13, 39, 65500, 13, 39, 65501, 13, 39, 65502, 13, 39, 65503, 13, 40, 65488, 13, 40, 65489, 13, 40, 65490, 13, 40, 65491, 13, 40, 65492, 13, 40, 65493, 13, 40, 65494, 13, 40, 65495, 13, 40, 65496, 13, 40, 65497, 13, 40, 65498, 13, 40, 65499, 13, 40, 65500, 13, 40, 65501, 13, 40, 65502, 13, 40, 65503, 13, 41, 65488, 13, 41, 65489, 13, 41, 65490, 13, 41, 65491, 13, 41, 65492, 13, 41, 65493, 13, 41, 65494, 13, 41, 65495, 13, 41, 65496, 13, 41, 65497, 13, 41, 65498, 13, 41, 65499, 13, 41, 65500, 13, 41, 65501, 13, 41, 65502, 13, 41, 65503, 13, 42, 65488, 13, 42, 65489, 13, 42, 65490, 13, 42, 65491, 13, 42, 65492, 13, 42, 65493, 13, 42, 65494, 13, 42, 65495, 13, 42, 65496, 13, 42, 65497, 13, 42, 65498, 13, 42, 65499, 13, 42, 65500, 13, 42, 65501, 13, 42, 65502, 13, 42, 65503, 13, 43, 65488, 13, 43, 65489, 13, 43, 65490, 13, 43, 65491, 13, 43, 65492, 13, 43, 65493, 13, 43, 65494, 13, 43, 65495, 13, 43, 65496, 13, 43, 65497, 13, 43, 65498, 13, 43, 65499, 13, 43, 65500, 13, 43, 65501, 13, 43, 65502, 13, 43, 65503, 13, 44, 65488, 13, 44, 65489, 13, 44, 65490, 13, 44, 65491, 13, 44, 65492, 13, 44, 65493, 13, 44, 65494, 13, 44, 65495, 13, 44, 65496, 13, 44, 65497, 13, 44, 65498, 13, 44, 65499, 13, 44, 65500, 13, 44, 65501, 13, 44, 65502, 13, 44, 65503, 13, 45, 65488, 13, 45, 65489, 13, 45, 65490, 13, 45, 65491, 13, 45, 65492, 13, 45, 65493, 13, 45, 65494, 13, 45, 65495, 13, 45, 65496, 13, 45, 65497, 13, 45, 65498, 13, 45, 65499, 13, 45, 65500, 13, 45, 65501, 13, 45, 65502, 13, 45, 65503, 13, 46, 65488, 13, 46, 65489, 13, 46, 65490, 13, 46, 65491, 13, 46, 65492, 13, 46, 65493, 13, 46, 65494, 13, 46, 65495, 13, 46, 65496, 13, 46, 65497, 13, 46, 65498, 13, 46, 65499, 13, 46, 65500, 13, 46, 65501, 13, 46, 65502, 13, 46, 65503, 13, 47, 65488, 13, 47, 65489, 13, 47, 65490, 13, 47, 65491, 13, 47, 65492, 13, 47, 65493, 13, 47, 65494, 13, 47, 65495, 13, 47, 65496, 13, 47, 65497, 13, 47, 65498, 13, 47, 65499, 13, 47, 65500, 13, 47, 65501, 13, 47, 65502, 13, 47, 65503, 13, 48, 65488, 13, 48, 65489, 13, 48, 65490, 13, 48, 65491, 13, 48, 65492, 13, 48, 65493, 13, 48, 65494, 13, 48, 65495, 13, 48, 65496, 13, 48, 65497, 13, 48, 65498, 13, 48, 65499, 13, 48, 65500, 13, 48, 65501, 13, 48, 65502, 13, 48, 65503, 13, 49, 65488, 13, 49, 65489, 13, 49, 65490, 13, 49, 65491, 13, 49, 65492, 13, 49, 65493, 13, 49, 65494, 13, 49, 65495, 13, 49, 65496, 13, 49, 65497, 13, 49, 65498, 13, 49, 65499, 13, 49, 65500, 13, 49, 65501, 13, 49, 65502, 13, 49, 65503, 13, 50, 65488, 13, 50, 65489, 13, 50, 65490, 13, 50, 65491, 13, 50, 65492, 13, 50, 65493, 13, 50, 65494, 13, 50, 65495, 13, 50, 65496, 13, 50, 65497, 13, 50, 65498, 13, 50, 65499, 13, 50, 65500, 13, 50, 65501, 13, 50, 65502, 13, 50, 65503, 13, 51, 65488, 13, 51, 65489, 13, 51, 65490, 13, 51, 65491, 13, 51, 65492, 13, 51, 65493, 13, 51, 65494, 13, 51, 65495, 13, 51, 65496, 13, 51, 65497, 13, 51, 65498, 13, 51, 65499, 13, 51, 65500, 13, 51, 65501, 13, 51, 65502, 13, 51, 65503, 13, 52, 65488, 13, 52, 65489, 13, 52, 65490, 13, 52, 65491, 13, 52, 65492, 13, 52, 65493, 13, 52, 65494, 13, 52, 65495, 13, 52, 65496, 13, 52, 65497, 13, 52, 65498, 13, 52, 65499, 13, 52, 65500, 13, 52, 65501, 13, 52, 65502, 13, 52, 65503, 13, 53, 65488, 13, 53, 65489, 13, 53, 65490, 13, 53, 65491, 13, 53, 65492, 13, 53, 65493, 13, 53, 65494, 13, 53, 65495, 13, 53, 65496, 13, 53, 65497, 13, 53, 65498, 13, 53, 65499, 13, 53, 65500, 13, 53, 65501, 13, 53, 65502, 13, 53, 65503, 13, 54, 65488, 13, 54, 65489, 13, 54, 65490, 13, 54, 65491, 13, 54, 65492, 13, 54, 65493, 13, 54, 65494, 13, 54, 65495, 13, 54, 65496, 13, 54, 65497, 13, 54, 65498, 13, 54, 65499, 13, 54, 65500, 13, 54, 65501, 13, 54, 65502, 13, 54, 65503, 13, 55, 65488, 13, 55, 65489, 13, 55, 65490, 13, 55, 65491, 13, 55, 65492, 13, 55, 65493, 13, 55, 65494, 13, 55, 65495, 13, 55, 65496, 13, 55, 65497, 13, 55, 65498, 13, 55, 65499, 13, 55, 65500, 13, 55, 65501, 13, 55, 65502, 13, 55, 65503, 13, 56, 65488, 13, 56, 65489, 13, 56, 65490, 13, 56, 65491, 13, 56, 65492, 13, 56, 65493, 13, 56, 65494, 13, 56, 65495, 13, 56, 65496, 13, 56, 65497, 13, 56, 65498, 13, 56, 65499, 13, 56, 65500, 13, 56, 65501, 13, 56, 65502, 13, 56, 65503, 13, 57, 65488, 13, 57, 65489, 13, 57, 65490, 13, 57, 65491, 13, 57, 65492, 13, 57, 65493, 13, 57, 65494, 13, 57, 65495, 13, 57, 65496, 13, 57, 65497, 13, 57, 65498, 13, 57, 65499, 13, 57, 65500, 13, 57, 65501, 13, 57, 65502, 13, 57, 65503, 13, 58, 65488, 13, 58, 65489, 13, 58, 65490, 13, 58, 65491, 13, 58, 65492, 13, 58, 65493, 13, 58, 65494, 13, 58, 65495, 13, 58, 65496, 13, 58, 65497, 13, 58, 65498, 13, 58, 65499, 13, 58, 65500, 13, 58, 65501, 13, 58, 65502, 13, 58, 65503, 13, 59, 65488, 13, 59, 65489, 13, 59, 65490, 13, 59, 65491, 13, 59, 65492, 13, 59, 65493, 13, 59, 65494, 13, 59, 65495, 13, 59, 65496, 13, 59, 65497, 13, 59, 65498, 13, 59, 65499, 13, 59, 65500, 13, 59, 65501, 13, 59, 65502, 13, 59, 65503, 13, 60, 65488, 13, 60, 65489, 13, 60, 65490, 13, 60, 65491, 13, 60, 65492, 13, 60, 65493, 13, 60, 65494, 13, 60, 65495, 13, 60, 65496, 13, 60, 65497, 13, 60, 65498, 13, 60, 65499, 13, 60, 65500, 13, 60, 65501, 13, 60, 65502, 13, 60, 65503, 13, 61, 65488, 13, 61, 65489, 13, 61, 65490, 13, 61, 65491, 13, 61, 65492, 13, 61, 65493, 13, 61, 65494, 13, 61, 65495, 13, 61, 65496, 13, 61, 65497, 13, 61, 65498, 13, 61, 65499, 13, 61, 65500, 13, 61, 65501, 13, 61, 65502, 13, 61, 65503, 13, 62, 65488, 13, 62, 65489, 13, 62, 65490, 13, 62, 65491, 13, 62, 65492, 13, 62, 65493, 13, 62, 65494, 13, 62, 65495, 13, 62, 65496, 13, 62, 65497, 13, 62, 65498, 13, 62, 65499, 13, 62, 65500, 13, 62, 65501, 13, 62, 65502, 13, 62, 65503, 13, 63, 65488, 13, 63, 65489, 13, 63, 65490, 13, 63, 65491, 13, 63, 65492, 13, 63, 65493, 13, 63, 65494, 13, 63, 65495, 13, 63, 65496, 13, 63, 65497, 13, 63, 65498, 13, 63, 65499, 13, 63, 65500, 13, 63, 65501, 13, 63, 65502, 13, 63, 65503, 13, 64, 65488, 13, 64, 65489, 13, 64, 65490, 13, 64, 65491, 13, 64, 65492, 13, 64, 65493, 13, 64, 65494, 13, 64, 65495, 13, 64, 65496, 13, 64, 65497, 13, 64, 65498, 13, 64, 65499, 13, 64, 65500, 13, 64, 65501, 13, 64, 65502, 13, 64, 65503, 13, 65, 65488, 13, 65, 65489, 13, 65, 65490, 13, 65, 65491, 13, 65, 65492, 13, 65, 65493, 13, 65, 65494, 13, 65, 65495, 13, 65, 65496, 13, 65, 65497, 13, 65, 65498, 13, 65, 65499, 13, 65, 65500, 13, 65, 65501, 13, 65, 65502, 13, 65, 65503, 13, 66, 65488, 13, 66, 65489, 13, 66, 65490, 13, 66, 65491, 13, 66, 65492, 13, 66, 65493, 13, 66, 65494, 13, 66, 65495, 13, 66, 65496, 13, 66, 65497, 13, 66, 65498, 13, 66, 65499, 13, 66, 65500, 13, 66, 65501, 13, 66, 65502, 13, 66, 65503, 13, 67, 65488, 13, 67, 65489, 13, 67, 65490, 13, 67, 65491, 13, 67, 65492, 13, 67, 65493, 13, 67, 65494, 13, 67, 65495, 13, 67, 65496, 13, 67, 65497, 13, 67, 65498, 13, 67, 65499, 13, 67, 65500, 13, 67, 65501, 13, 67, 65502, 13, 67, 65503, 13, 68, 65488, 13, 68, 65489, 13, 68, 65490, 13, 68, 65491, 13, 68, 65492, 13, 68, 65493, 13, 68, 65494, 13, 68, 65495, 13, 68, 65496, 13, 68, 65497, 13, 68, 65498, 13, 68, 65499, 13, 68, 65500, 13, 68, 65501, 13, 68, 65502, 13, 68, 65503, 13, 69, 65488, 13, 69, 65489, 13, 69, 65490, 13, 69, 65491, 13, 69, 65492, 13, 69, 65493, 13, 69, 65494, 13, 69, 65495, 13, 69, 65496, 13, 69, 65497, 13, 69, 65498, 13, 69, 65499, 13, 69, 65500, 13, 69, 65501, 13, 69, 65502, 13, 69, 65503, 13, 70, 65488, 13, 70, 65489, 13, 70, 65490, 13, 70, 65491, 13, 70, 65492, 13, 70, 65493, 13, 70, 65494, 13, 70, 65495, 13, 70, 65496, 13, 70, 65497, 13, 70, 65498, 13, 70, 65499, 13, 70, 65500, 13, 70, 65501, 13, 70, 65502, 13, 70, 65503, 13, 71, 65488, 13, 71, 65489, 13, 71, 65490, 13, 71, 65491, 13, 71, 65492, 13, 71, 65493, 13, 71, 65494, 13, 71, 65495, 13, 71, 65496, 13, 71, 65497, 13, 71, 65498, 13, 71, 65499, 13, 71, 65500, 13, 71, 65501, 13, 71, 65502, 13, 71, 65503, 13, 72, 65488, 13, 72, 65489, 13, 72, 65490, 13, 72, 65491, 13, 72, 65492, 13, 72, 65493, 13, 72, 65494, 13, 72, 65495, 13, 72, 65496, 13, 72, 65497, 13, 72, 65498, 13, 72, 65499, 13, 72, 65500, 13, 72, 65501, 13, 72, 65502, 13, 72, 65503, 13, 73, 65488, 13, 73, 65489, 13, 73, 65490, 13, 73, 65491, 13, 73, 65492, 13, 73, 65493, 13, 73, 65494, 13, 73, 65495, 13, 73, 65496, 13, 73, 65497, 13, 73, 65498, 13, 73, 65499, 13, 73, 65500, 13, 73, 65501, 13, 73, 65502, 13, 73, 65503, 13, 74, 65488, 13, 74, 65489, 13, 74, 65490, 13, 74, 65491, 13, 74, 65492, 13, 74, 65493, 13, 74, 65494, 13, 74, 65495, 13, 74, 65496, 13, 74, 65497, 13, 74, 65498, 13, 74, 65499, 13, 74, 65500, 13, 74, 65501, 13, 74, 65502, 13, 74, 65503, 13, 75, 65488, 13, 75, 65489, 13, 75, 65490, 13, 75, 65491, 13, 75, 65492, 13, 75, 65493, 13, 75, 65494, 13, 75, 65495, 13, 75, 65496, 13, 75, 65497, 13, 75, 65498, 13, 75, 65499, 13, 75, 65500, 13, 75, 65501, 13, 75, 65502, 13, 75, 65503, 13, 76, 65488, 13, 76, 65489, 13, 76, 65490, 13, 76, 65491, 13, 76, 65492, 13, 76, 65493, 13, 76, 65494, 13, 76, 65495, 13, 76, 65496, 13, 76, 65497, 13, 76, 65498, 13, 76, 65499, 13, 76, 65500, 13, 76, 65501, 13, 76, 65502, 13, 76, 65503, 13, 77, 65488, 13, 77, 65489, 13, 77, 65490, 13, 77, 65491, 13, 77, 65492, 13, 77, 65493, 13, 77, 65494, 13, 77, 65495, 13, 77, 65496, 13, 77, 65497, 13, 77, 65498, 13, 77, 65499, 13, 77, 65500, 13, 77, 65501, 13, 77, 65502, 13, 77, 65503, 13, 78, 65488, 13, 78, 65489, 13, 78, 65490, 13, 78, 65491, 13, 78, 65492, 13, 78, 65493, 13, 78, 65494, 13, 78, 65495, 13, 78, 65496, 13, 78, 65497, 13, 78, 65498, 13, 78, 65499, 13, 78, 65500, 13, 78, 65501, 13, 78, 65502, 13, 78, 65503, 13, 79, 65488, 13, 79, 65489, 13, 79, 65490, 13, 79, 65491, 13, 79, 65492, 13, 79, 65493, 13, 79, 65494, 13, 79, 65495, 13, 79, 65496, 13, 79, 65497, 13, 79, 65498, 13, 79, 65499, 13, 79, 65500, 13, 79, 65501, 13, 79, 65502, 13, 79, 65503, 13, 80, 65488, 13, 80, 65489, 13, 80, 65490, 13, 80, 65491, 13, 80, 65492, 13, 80, 65493, 13, 80, 65494, 13, 80, 65495, 13, 80, 65496, 13, 80, 65497, 13, 80, 65498, 13, 80, 65499, 13, 80, 65500, 13, 80, 65501, 13, 80, 65502, 13, 80, 65503, 13, 17, 65488, 13, 17, 65489, 13, 17, 65490, 13, 17, 65491, 13, 17, 65492, 13, 17, 65493, 13, 17, 65494, 13, 17, 65495, 13, 17, 65496, 13, 17, 65497, 13, 17, 65498, 13, 17, 65499, 13, 17, 65500, 13, 17, 65501, 13, 17, 65502, 13, 17, 65503, 13, 17, 65504, 13, 18, 65488, 13, 18, 65489, 13, 18, 65490, 13, 18, 65491, 13, 18, 65492, 13, 18, 65493, 13, 18, 65494, 13, 18, 65495, 13, 18, 65496, 13, 18, 65497, 13, 18, 65498, 13, 18, 65499, 13, 18, 65500, 13, 18, 65501, 13, 18, 65502, 13, 18, 65503, 13, 18, 65504, 13, 19, 65488, 13, 19, 65489, 13, 19, 65490, 13, 19, 65491, 13, 19, 65492, 13, 19, 65493, 13, 19, 65494, 13, 19, 65495, 13, 19, 65496, 13, 19, 65497, 13, 19, 65498, 13, 19, 65499, 13, 19, 65500, 13, 19, 65501, 13, 19, 65502, 13, 19, 65503, 13, 19, 65504, 13, 20, 65488, 13, 20, 65489, 13, 20, 65490, 13, 20, 65491, 13, 20, 65492, 13, 20, 65493, 13, 20, 65494, 13, 20, 65495, 13, 20, 65496, 13, 20, 65497, 13, 20, 65498, 13, 20, 65499, 13, 20, 65500, 13, 20, 65501, 13, 20, 65502, 13, 20, 65503, 13, 20, 65504, 13, 21, 65488, 13, 21, 65489, 13, 21, 65490, 13, 21, 65491, 13, 21, 65492, 13, 21, 65493, 13, 21, 65494, 13, 21, 65495, 13, 21, 65496, 13, 21, 65497, 13, 21, 65498, 13, 21, 65499, 13, 21, 65500, 13, 21, 65501, 13, 21, 65502, 13, 21, 65503, 13, 21, 65504, 13, 22, 65488, 13, 22, 65489, 13, 22, 65490, 13, 22, 65491, 13, 22, 65492, 13, 22, 65493, 13, 22, 65494, 13, 22, 65495, 13, 22, 65496, 13, 22, 65497, 13, 22, 65498, 13, 22, 65499, 13, 22, 65500, 13, 22, 65501, 13, 22, 65502, 13, 22, 65503, 13, 22, 65504, 13, 23, 65488, 13, 23, 65489, 13, 23, 65490, 13, 23, 65491, 13, 23, 65492, 13, 23, 65493, 13, 23, 65494, 13, 23, 65495, 13, 23, 65496, 13, 23, 65497, 13, 23, 65498, 13, 23, 65499, 13, 23, 65500, 13, 23, 65501, 13, 23, 65502, 13, 23, 65503, 13, 23, 65504, 13, 24, 65488, 13, 24, 65489, 13, 24, 65490, 13, 24, 65491, 13, 24, 65492, 13, 24, 65493, 13, 24, 65494, 13, 24, 65495, 13, 24, 65496, 13, 24, 65497, 13, 24, 65498, 13, 24, 65499, 13, 24, 65500, 13, 24, 65501, 13, 24, 65502, 13, 24, 65503, 13, 24, 65504, 13, 25, 65488, 13, 25, 65489, 13, 25, 65490, 13, 25, 65491, 13, 25, 65492, 13, 25, 65493, 13, 25, 65494, 13, 25, 65495, 13, 25, 65496, 13, 25, 65497, 13, 25, 65498, 13, 25, 65499, 13, 25, 65500, 13, 25, 65501, 13, 25, 65502, 13, 25, 65503, 13, 25, 65504, 13, 26, 65488, 13, 26, 65489, 13, 26, 65490, 13, 26, 65491, 13, 26, 65492, 13, 26, 65493, 13, 26, 65494, 13, 26, 65495, 13, 26, 65496, 13, 26, 65497, 13, 26, 65498, 13, 26, 65499, 13, 26, 65500, 13, 26, 65501, 13, 26, 65502, 13, 26, 65503, 13, 26, 65504, 13, 27, 65488, 13, 27, 65489, 13, 27, 65490, 13, 27, 65491, 13, 27, 65492, 13, 27, 65493, 13, 27, 65494, 13, 27, 65495, 13, 27, 65496, 13, 27, 65497, 13, 27, 65498, 13, 27, 65499, 13, 27, 65500, 13, 27, 65501, 13, 27, 65502, 13, 27, 65503, 13, 27, 65504, 13, 28, 65488, 13, 28, 65489, 13, 28, 65490, 13, 28, 65491, 13, 28, 65492, 13, 28, 65493, 13, 28, 65494, 13, 28, 65495, 13, 28, 65496, 13, 28, 65497, 13, 28, 65498, 13, 28, 65499, 13, 28, 65500, 13, 28, 65501, 13, 28, 65502, 13, 28, 65503, 13, 28, 65504, 13, 29, 65488, 13, 29, 65489, 13, 29, 65490, 13, 29, 65491, 13, 29, 65492, 13, 29, 65493, 13, 29, 65494, 13, 29, 65495, 13, 29, 65496, 13, 29, 65497, 13, 29, 65498, 13, 29, 65499, 13, 29, 65500, 13, 29, 65501, 13, 29, 65502, 13, 29, 65503, 13, 29, 65504, 13, 30, 65488, 13, 30, 65489, 13, 30, 65490, 13, 30, 65491, 13, 30, 65492, 13, 30, 65493, 13, 30, 65494, 13, 30, 65495, 13, 30, 65496, 13, 30, 65497, 13, 30, 65498, 13, 30, 65499, 13, 30, 65500, 13, 30, 65501, 13, 30, 65502, 13, 30, 65503, 13, 30, 65504, 13, 31, 65488, 13, 31, 65489, 13, 31, 65490, 13, 31, 65491, 13, 31, 65492, 13, 31, 65493, 13, 31, 65494, 13, 31, 65495, 13, 31, 65496, 13, 31, 65497, 13, 31, 65498, 13, 31, 65499, 13, 31, 65500, 13, 31, 65501, 13, 31, 65502, 13, 31, 65503, 13, 31, 65504, 13, 48, 17, 13, 48, 18, 13, 48, 19, 13, 48, 20, 13, 48, 21, 13, 48, 22, 13, 48, 23, 13, 48, 24, 13, 48, 25, 13, 48, 26, 13, 48, 27, 13, 48, 28, 13, 48, 29, 13, 48, 30, 13, 48, 31, 13, 48, 32, 13, 49, 17, 13, 49, 18, 13, 49, 19, 13, 49, 20, 13, 49, 21, 13, 49, 22, 13, 49, 23, 13, 49, 24, 13, 49, 25, 13, 49, 26, 13, 49, 27, 13, 49, 28, 13, 49, 29, 13, 49, 30, 13, 49, 31, 13, 49, 32, 13, 50, 17, 13, 50, 18, 13, 50, 19, 13, 50, 20, 13, 50, 21, 13, 50, 22, 13, 50, 23, 13, 50, 24, 13, 50, 25, 13, 50, 26, 13, 50, 27, 13, 50, 28, 13, 50, 29, 13, 50, 30, 13, 50, 31, 13, 50, 32, 13, 51, 17, 13, 51, 18, 13, 51, 19, 13, 51, 20, 13, 51, 21, 13, 51, 22, 13, 51, 23, 13, 51, 24, 13, 51, 25, 13, 51, 26, 13, 51, 27, 13, 51, 28, 13, 51, 29, 13, 51, 30, 13, 51, 31, 13, 51, 32, 13, 52, 17, 13, 52, 18, 13, 52, 19, 13, 52, 20, 13, 52, 21, 13, 52, 22, 13, 52, 23, 13, 52, 24, 13, 52, 25, 13, 52, 26, 13, 52, 27, 13, 52, 28, 13, 52, 29, 13, 52, 30, 13, 52, 31, 13, 52, 32, 13, 53, 17, 13, 53, 18, 13, 53, 19, 13, 53, 20, 13, 53, 21, 13, 53, 22, 13, 53, 23, 13, 53, 24, 13, 53, 25, 13, 53, 26, 13, 53, 27, 13, 53, 28, 13, 53, 29, 13, 53, 30, 13, 53, 31, 13, 53, 32, 13, 54, 17, 13, 54, 18, 13, 54, 19, 13, 54, 20, 13, 54, 21, 13, 54, 22, 13, 54, 23, 13, 54, 24, 13, 54, 25, 13, 54, 26, 13, 54, 27, 13, 54, 28, 13, 54, 29, 13, 54, 30, 13, 54, 31, 13, 54, 32, 13, 55, 17, 13, 55, 18, 13, 55, 19, 13, 55, 20, 13, 55, 21, 13, 55, 22, 13, 55, 23, 13, 55, 24, 13, 55, 25, 13, 55, 26, 13, 55, 27, 13, 55, 28, 13, 55, 29, 13, 55, 30, 13, 55, 31, 13, 55, 32, 13, 56, 17, 13, 56, 18, 13, 56, 19, 13, 56, 20, 13, 56, 21, 13, 56, 22, 13, 56, 23, 13, 56, 24, 13, 56, 25, 13, 56, 26, 13, 56, 27, 13, 56, 28, 13, 56, 29, 13, 56, 30, 13, 56, 31, 13, 56, 32, 13, 57, 17, 13, 57, 18, 13, 57, 19, 13, 57, 20, 13, 57, 21, 13, 57, 22, 13, 57, 23, 13, 57, 24, 13, 57, 25, 13, 57, 26, 13, 57, 27, 13, 57, 28, 13, 57, 29, 13, 57, 30, 13, 57, 31, 13, 57, 32, 13, 58, 17, 13, 58, 18, 13, 58, 19, 13, 58, 20, 13, 58, 21, 13, 58, 22, 13, 58, 23, 13, 58, 24, 13, 58, 25, 13, 58, 26, 13, 58, 27, 13, 58, 28, 13, 58, 29, 13, 58, 30, 13, 58, 31, 13, 58, 32, 13, 59, 17, 13, 59, 18, 13, 59, 19, 13, 59, 20, 13, 59, 21, 13, 59, 22, 13, 59, 23, 13, 59, 24, 13, 59, 25, 13, 59, 26, 13, 59, 27, 13, 59, 28, 13, 59, 29, 13, 59, 30, 13, 59, 31, 13, 59, 32, 13, 60, 17, 13, 60, 18, 13, 60, 19, 13, 60, 20, 13, 60, 21, 13, 60, 22, 13, 60, 23, 13, 60, 24, 13, 60, 25, 13, 60, 26, 13, 60, 27, 13, 60, 28, 13, 60, 29, 13, 60, 30, 13, 60, 31, 13, 60, 32, 13, 61, 17, 13, 61, 18, 13, 61, 19, 13, 61, 20, 13, 61, 21, 13, 61, 22, 13, 61, 23, 13, 61, 24, 13, 61, 25, 13, 61, 26, 13, 61, 27, 13, 61, 28, 13, 61, 29, 13, 61, 30, 13, 61, 31, 13, 61, 32, 13, 62, 17, 13, 62, 18, 13, 62, 19, 13, 62, 20, 13, 62, 21, 13, 62, 22, 13, 62, 23, 13, 62, 24, 13, 62, 25, 13, 62, 26, 13, 62, 27, 13, 62, 28, 13, 62, 29, 13, 62, 30, 13, 62, 31, 13, 62, 32, 13, 63, 17, 13, 63, 18, 13, 63, 19, 13, 63, 20, 13, 63, 21, 13, 63, 22, 13, 63, 23, 13, 63, 24, 13, 63, 25, 13, 63, 26, 13, 63, 27, 13, 63, 28, 13, 63, 29, 13, 63, 30, 13, 63, 31, 13, 63, 32, 13, 64, 17, 13, 64, 18, 13, 64, 19, 13, 64, 20, 13, 64, 21, 13, 64, 22, 13, 64, 23, 13, 64, 24, 13, 64, 25, 13, 64, 26, 13, 64, 27, 13, 64, 28, 13, 64, 29, 13, 64, 30, 13, 64, 31, 13, 64, 32, 13, 32, 17, 13, 32, 18, 13, 32, 19, 13, 32, 20, 13, 32, 21, 13, 32, 22, 13, 32, 23, 13, 32, 24, 13, 32, 25, 13, 32, 26, 13, 32, 27, 13, 32, 28, 13, 32, 29, 13, 32, 30, 13, 32, 31, 13, 32, 32, 13, 33, 17, 13, 33, 18, 13, 33, 19, 13, 33, 20, 13, 33, 21, 13, 33, 22, 13, 33, 23, 13, 33, 24, 13, 33, 25, 13, 33, 26, 13, 33, 27, 13, 33, 28, 13, 33, 29, 13, 33, 30, 13, 33, 31, 13, 33, 32, 13, 34, 17, 13, 34, 18, 13, 34, 19, 13, 34, 20, 13, 34, 21, 13, 34, 22, 13, 34, 23, 13, 34, 24, 13, 34, 25, 13, 34, 26, 13, 34, 27, 13, 34, 28, 13, 34, 29, 13, 34, 30, 13, 34, 31, 13, 34, 32, 13, 35, 17, 13, 35, 18, 13, 35, 19, 13, 35, 20, 13, 35, 21, 13, 35, 22, 13, 35, 23, 13, 35, 24, 13, 35, 25, 13, 35, 26, 13, 35, 27, 13, 35, 28, 13, 35, 29, 13, 35, 30, 13, 35, 31, 13, 35, 32, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 27, 13, 36, 28, 13, 36, 29, 13, 36, 30, 13, 36, 31, 13, 36, 32, 13, 37, 17, 13, 37, 18, 13, 37, 19, 13, 37, 20, 13, 37, 21, 13, 37, 22, 13, 37, 23, 13, 37, 24, 13, 37, 25, 13, 37, 26, 13, 37, 27, 13, 37, 28, 13, 37, 29, 13, 37, 30, 13, 37, 31, 13, 37, 32, 13, 38, 17, 13, 38, 18, 13, 38, 19, 13, 38, 20, 13, 38, 21, 13, 38, 22, 13, 38, 23, 13, 38, 24, 13, 38, 25, 13, 38, 26, 13, 38, 27, 13, 38, 28, 13, 38, 29, 13, 38, 30, 13, 38, 31, 13, 38, 32, 13, 39, 17, 13, 39, 18, 13, 39, 19, 13, 39, 20, 13, 39, 21, 13, 39, 22, 13, 39, 23, 13, 39, 24, 13, 39, 25, 13, 39, 26, 13, 39, 27, 13, 39, 28, 13, 39, 29, 13, 39, 30, 13, 39, 31, 13, 39, 32, 13, 40, 17, 13, 40, 18, 13, 40, 19, 13, 40, 20, 13, 40, 21, 13, 40, 22, 13, 40, 23, 13, 40, 24, 13, 40, 25, 13, 40, 26, 13, 40, 27, 13, 40, 28, 13, 40, 29, 13, 40, 30, 13, 40, 31, 13, 40, 32, 13, 41, 17, 13, 41, 18, 13, 41, 19, 13, 41, 20, 13, 41, 21, 13, 41, 22, 13, 41, 23, 13, 41, 24, 13, 41, 25, 13, 41, 26, 13, 41, 27, 13, 41, 28, 13, 41, 29, 13, 41, 30, 13, 41, 31, 13, 41, 32, 13, 42, 17, 13, 42, 18, 13, 42, 19, 13, 42, 20, 13, 42, 21, 13, 42, 22, 13, 42, 23, 13, 42, 24, 13, 42, 25, 13, 42, 26, 13, 42, 27, 13, 42, 28, 13, 42, 29, 13, 42, 30, 13, 42, 31, 13, 42, 32, 13, 43, 17, 13, 43, 18, 13, 43, 19, 13, 43, 20, 13, 43, 21, 13, 43, 22, 13, 43, 23, 13, 43, 24, 13, 43, 25, 13, 43, 26, 13, 43, 27, 13, 43, 28, 13, 43, 29, 13, 43, 30, 13, 43, 31, 13, 43, 32, 13, 44, 17, 13, 44, 18, 13, 44, 19, 13, 44, 20, 13, 44, 21, 13, 44, 22, 13, 44, 23, 13, 44, 24, 13, 44, 25, 13, 44, 26, 13, 44, 27, 13, 44, 28, 13, 44, 29, 13, 44, 30, 13, 44, 31, 13, 44, 32, 13, 45, 17, 13, 45, 18, 13, 45, 19, 13, 45, 20, 13, 45, 21, 13, 45, 22, 13, 45, 23, 13, 45, 24, 13, 45, 25, 13, 45, 26, 13, 45, 27, 13, 45, 28, 13, 45, 29, 13, 45, 30, 13, 45, 31, 13, 45, 32, 13, 46, 17, 13, 46, 18, 13, 46, 19, 13, 46, 20, 13, 46, 21, 13, 46, 22, 13, 46, 23, 13, 46, 24, 13, 46, 25, 13, 46, 26, 13, 46, 27, 13, 46, 28, 13, 46, 29, 13, 46, 30, 13, 46, 31, 13, 46, 32, 13, 47, 17, 13, 47, 18, 13, 47, 19, 13, 47, 20, 13, 47, 21, 13, 47, 22, 13, 47, 23, 13, 47, 24, 13, 47, 25, 13, 47, 26, 13, 47, 27, 13, 47, 28, 13, 47, 29, 13, 47, 30, 13, 47, 31, 13, 47, 32, 13, 16, 17, 13, 16, 18, 13, 16, 19, 13, 16, 20, 13, 16, 21, 13, 16, 22, 13, 16, 23, 13, 16, 24, 13, 16, 25, 13, 16, 26, 13, 16, 27, 13, 16, 28, 13, 16, 29, 13, 16, 30, 13, 16, 31, 13, 16, 32, 13, 17, 17, 13, 17, 18, 13, 17, 19, 13, 17, 20, 13, 17, 21, 13, 17, 22, 13, 17, 23, 13, 17, 24, 13, 17, 25, 13, 17, 26, 13, 17, 27, 13, 17, 28, 13, 17, 29, 13, 17, 30, 13, 17, 31, 13, 17, 32, 13, 18, 17, 13, 18, 18, 13, 18, 19, 13, 18, 20, 13, 18, 21, 13, 18, 22, 13, 18, 23, 13, 18, 24, 13, 18, 25, 13, 18, 26, 13, 18, 27, 13, 18, 28, 13, 18, 29, 13, 18, 30, 13, 18, 31, 13, 18, 32, 13, 19, 17, 13, 19, 18, 13, 19, 19, 13, 19, 20, 13, 19, 21, 13, 19, 22, 13, 19, 23, 13, 19, 24, 13, 19, 25, 13, 19, 26, 13, 19, 27, 13, 19, 28, 13, 19, 29, 13, 19, 30, 13, 19, 31, 13, 19, 32, 13, 20, 17, 13, 20, 18, 13, 20, 19, 13, 20, 20, 13, 20, 21, 13, 20, 22, 13, 20, 23, 13, 20, 24, 13, 20, 25, 13, 20, 26, 13, 20, 27, 13, 20, 28, 13, 20, 29, 13, 20, 30, 13, 20, 31, 13, 20, 32, 13, 21, 17, 13, 21, 18, 13, 21, 19, 13, 21, 20, 13, 21, 21, 13, 21, 22, 13, 21, 23, 13, 21, 24, 13, 21, 25, 13, 21, 26, 13, 21, 27, 13, 21, 28, 13, 21, 29, 13, 21, 30, 13, 21, 31, 13, 21, 32, 13, 22, 17, 13, 22, 18, 13, 22, 19, 13, 22, 20, 13, 22, 21, 13, 22, 22, 13, 22, 23, 13, 22, 24, 13, 22, 25, 13, 22, 26, 13, 22, 27, 13, 22, 28, 13, 22, 29, 13, 22, 30, 13, 22, 31, 13, 22, 32, 13, 23, 17, 13, 23, 18, 13, 23, 19, 13, 23, 20, 13, 23, 21, 13, 23, 22, 13, 23, 23, 13, 23, 24, 13, 23, 25, 13, 23, 26, 13, 23, 27, 13, 23, 28, 13, 23, 29, 13, 23, 30, 13, 23, 31, 13, 23, 32, 13, 24, 17, 13, 24, 18, 13, 24, 19, 13, 24, 20, 13, 24, 21, 13, 24, 22, 13, 24, 23, 13, 24, 24, 13, 24, 25, 13, 24, 26, 13, 24, 27, 13, 24, 28, 13, 24, 29, 13, 24, 30, 13, 24, 31, 13, 24, 32, 13, 25, 17, 13, 25, 18, 13, 25, 19, 13, 25, 20, 13, 25, 21, 13, 25, 22, 13, 25, 23, 13, 25, 24, 13, 25, 25, 13, 25, 26, 13, 25, 27, 13, 25, 28, 13, 25, 29, 13, 25, 30, 13, 25, 31, 13, 25, 32, 13, 26, 17, 13, 26, 18, 13, 26, 19, 13, 26, 20, 13, 26, 21, 13, 26, 22, 13, 26, 23, 13, 26, 24, 13, 26, 25, 13, 26, 26, 13, 26, 27, 13, 26, 28, 13, 26, 29, 13, 26, 30, 13, 26, 31, 13, 26, 32, 13, 27, 17, 13, 27, 18, 13, 27, 19, 13, 27, 20, 13, 27, 21, 13, 27, 22, 13, 27, 23, 13, 27, 24, 13, 27, 25, 13, 27, 26, 13, 27, 27, 13, 27, 28, 13, 27, 29, 13, 27, 30, 13, 27, 31, 13, 27, 32, 13, 28, 17, 13, 28, 18, 13, 28, 19, 13, 28, 20, 13, 28, 21, 13, 28, 22, 13, 28, 23, 13, 28, 24, 13, 28, 25, 13, 28, 26, 13, 28, 27, 13, 28, 28, 13, 28, 29, 13, 28, 30, 13, 28, 31, 13, 28, 32, 13, 29, 17, 13, 29, 18, 13, 29, 19, 13, 29, 20, 13, 29, 21, 13, 29, 22, 13, 29, 23, 13, 29, 24, 13, 29, 25, 13, 29, 26, 13, 29, 27, 13, 29, 28, 13, 29, 29, 13, 29, 30, 13, 29, 31, 13, 29, 32, 13, 30, 17, 13, 30, 18, 13, 30, 19, 13, 30, 20, 13, 30, 21, 13, 30, 22, 13, 30, 23, 13, 30, 24, 13, 30, 25, 13, 30, 26, 13, 30, 27, 13, 30, 28, 13, 30, 29, 13, 30, 30, 13, 30, 31, 13, 30, 32, 13, 31, 17, 13, 31, 18, 13, 31, 19, 13, 31, 20, 13, 31, 21, 13, 31, 22, 13, 31, 23, 13, 31, 24, 13, 31, 25, 13, 31, 26, 13, 31, 27, 13, 31, 28, 13, 31, 29, 13, 31, 30, 13, 31, 31, 13, 31, 32, 13, 65, 17, 13, 65, 18, 13, 65, 19, 13, 65, 20, 13, 65, 21, 13, 65, 22, 13, 65, 23, 13, 65, 24, 13, 65, 25, 13, 65, 26, 13, 65, 27, 13, 65, 28, 13, 65, 29, 13, 65, 30, 13, 65, 31, 13, 65, 32, 13, 66, 17, 13, 66, 18, 13, 66, 19, 13, 66, 20, 13, 66, 21, 13, 66, 22, 13, 66, 23, 13, 66, 24, 13, 66, 25, 13, 66, 26, 13, 66, 27, 13, 66, 28, 13, 66, 29, 13, 66, 30, 13, 66, 31, 13, 66, 32, 13, 67, 17, 13, 67, 18, 13, 67, 19, 13, 67, 20, 13, 67, 21, 13, 67, 22, 13, 67, 23, 13, 67, 24, 13, 67, 25, 13, 67, 26, 13, 67, 27, 13, 67, 28, 13, 67, 29, 13, 67, 30, 13, 67, 31, 13, 67, 32, 13, 68, 17, 13, 68, 18, 13, 68, 19, 13, 68, 20, 13, 68, 21, 13, 68, 22, 13, 68, 23, 13, 68, 24, 13, 68, 25, 13, 68, 26, 13, 68, 27, 13, 68, 28, 13, 68, 29, 13, 68, 30, 13, 68, 31, 13, 68, 32, 13, 69, 17, 13, 69, 18, 13, 69, 19, 13, 69, 20, 13, 69, 21, 13, 69, 22, 13, 69, 23, 13, 69, 24, 13, 69, 25, 13, 69, 26, 13, 69, 27, 13, 69, 28, 13, 69, 29, 13, 69, 30, 13, 69, 31, 13, 69, 32, 13, 70, 17, 13, 70, 18, 13, 70, 19, 13, 70, 20, 13, 70, 21, 13, 70, 22, 13, 70, 23, 13, 70, 24, 13, 70, 25, 13, 70, 26, 13, 70, 27, 13, 70, 28, 13, 70, 29, 13, 70, 30, 13, 70, 31, 13, 70, 32, 13, 71, 17, 13, 71, 18, 13, 71, 19, 13, 71, 20, 13, 71, 21, 13, 71, 22, 13, 71, 23, 13, 71, 24, 13, 71, 25, 13, 71, 26, 13, 71, 27, 13, 71, 28, 13, 71, 29, 13, 71, 30, 13, 71, 31, 13, 71, 32, 13, 72, 17, 13, 72, 18, 13, 72, 19, 13, 72, 20, 13, 72, 21, 13, 72, 22, 13, 72, 23, 13, 72, 24, 13, 72, 25, 13, 72, 26, 13, 72, 27, 13, 72, 28, 13, 72, 29, 13, 72, 30, 13, 72, 31, 13, 72, 32, 13, 73, 17, 13, 73, 18, 13, 73, 19, 13, 73, 20, 13, 73, 21, 13, 73, 22, 13, 73, 23, 13, 73, 24, 13, 73, 25, 13, 73, 26, 13, 73, 27, 13, 73, 28, 13, 73, 29, 13, 73, 30, 13, 73, 31, 13, 73, 32, 13, 74, 17, 13, 74, 18, 13, 74, 19, 13, 74, 20, 13, 74, 21, 13, 74, 22, 13, 74, 23, 13, 74, 24, 13, 74, 25, 13, 74, 26, 13, 74, 27, 13, 74, 28, 13, 74, 29, 13, 74, 30, 13, 74, 31, 13, 74, 32, 13, 75, 17, 13, 75, 18, 13, 75, 19, 13, 75, 20, 13, 75, 21, 13, 75, 22, 13, 75, 23, 13, 75, 24, 13, 75, 25, 13, 75, 26, 13, 75, 27, 13, 75, 28, 13, 75, 29, 13, 75, 30, 13, 75, 31, 13, 75, 32, 13, 76, 17, 13, 76, 18, 13, 76, 19, 13, 76, 20, 13, 76, 21, 13, 76, 22, 13, 76, 23, 13, 76, 24, 13, 76, 25, 13, 76, 26, 13, 76, 27, 13, 76, 28, 13, 76, 29, 13, 76, 30, 13, 76, 31, 13, 76, 32, 13, 77, 17, 13, 77, 18, 13, 77, 19, 13, 77, 20, 13, 77, 21, 13, 77, 22, 13, 77, 23, 13, 77, 24, 13, 77, 25, 13, 77, 26, 13, 77, 27, 13, 77, 28, 13, 77, 29, 13, 77, 30, 13, 77, 31, 13, 77, 32, 13, 78, 17, 13, 78, 18, 13, 78, 19, 13, 78, 20, 13, 78, 21, 13, 78, 22, 13, 78, 23, 13, 78, 24, 13, 78, 25, 13, 78, 26, 13, 78, 27, 13, 78, 28, 13, 78, 29, 13, 78, 30, 13, 78, 31, 13, 78, 32, 13, 79, 17, 13, 79, 18, 13, 79, 19, 13, 79, 20, 13, 79, 21, 13, 79, 22, 13, 79, 23, 13, 79, 24, 13, 79, 25, 13, 79, 26, 13, 79, 27, 13, 79, 28, 13, 79, 29, 13, 79, 30, 13, 79, 31, 13, 79, 32, 13, 80, 17, 13, 80, 18, 13, 80, 19, 13, 80, 20, 13, 80, 21, 13, 80, 22, 13, 80, 23, 13, 80, 24, 13, 80, 25, 13, 80, 26, 13, 80, 27, 13, 80, 28, 13, 80, 29, 13, 80, 30, 13, 80, 31, 13, 80, 32, 13, 81, 0, 13, 81, 1, 13, 81, 2, 13, 81, 3, 13, 81, 4, 13, 81, 5, 13, 81, 6, 13, 81, 7, 13, 81, 8, 13, 81, 9, 13, 81, 10, 13, 81, 11, 13, 81, 12, 13, 81, 13, 13, 81, 14, 13, 81, 15, 13, 81, 16, 13, 82, 0, 13, 82, 1, 13, 82, 2, 13, 82, 3, 13, 82, 4, 13, 82, 5, 13, 82, 6, 13, 82, 7, 13, 82, 8, 13, 82, 9, 13, 82, 10, 13, 82, 11, 13, 82, 12, 13, 82, 13, 13, 82, 14, 13, 82, 15, 13, 82, 16, 13, 83, 0, 13, 83, 1, 13, 83, 2, 13, 83, 3, 13, 83, 4, 13, 83, 5, 13, 83, 6, 13, 83, 7, 13, 83, 8, 13, 83, 9, 13, 83, 10, 13, 83, 11, 13, 83, 12, 13, 83, 13, 13, 83, 14, 13, 83, 15, 13, 83, 16, 13, 84, 0, 13, 84, 1, 13, 84, 2, 13, 84, 3, 13, 84, 4, 13, 84, 5, 13, 84, 6, 13, 84, 7, 13, 84, 8, 13, 84, 9, 13, 84, 10, 13, 84, 11, 13, 84, 12, 13, 84, 13, 13, 84, 14, 13, 84, 15, 13, 84, 16, 13, 85, 0, 13, 85, 1, 13, 85, 2, 13, 85, 3, 13, 85, 4, 13, 85, 5, 13, 85, 6, 13, 85, 7, 13, 85, 8, 13, 85, 9, 13, 85, 10, 13, 85, 11, 13, 85, 12, 13, 85, 13, 13, 85, 14, 13, 85, 15, 13, 85, 16, 13, 86, 0, 13, 86, 1, 13, 86, 2, 13, 86, 3, 13, 86, 4, 13, 86, 5, 13, 86, 6, 13, 86, 7, 13, 86, 8, 13, 86, 9, 13, 86, 10, 13, 86, 11, 13, 86, 12, 13, 86, 13, 13, 86, 14, 13, 86, 15, 13, 86, 16, 13, 87, 0, 13, 87, 1, 13, 87, 2, 13, 87, 3, 13, 87, 4, 13, 87, 5, 13, 87, 6, 13, 87, 7, 13, 87, 8, 13, 87, 9, 13, 87, 10, 13, 87, 11, 13, 87, 12, 13, 87, 13, 13, 87, 14, 13, 87, 15, 13, 87, 16, 13, 88, 0, 13, 88, 1, 13, 88, 2, 13, 88, 3, 13, 88, 4, 13, 88, 5, 13, 88, 6, 13, 88, 7, 13, 88, 8, 13, 88, 9, 13, 88, 10, 13, 88, 11, 13, 88, 12, 13, 88, 13, 13, 88, 14, 13, 88, 15, 13, 88, 16, 13, 89, 0, 13, 89, 1, 13, 89, 2, 13, 89, 3, 13, 89, 4, 13, 89, 5, 13, 89, 6, 13, 89, 7, 13, 89, 8, 13, 89, 9, 13, 89, 10, 13, 89, 11, 13, 89, 12, 13, 89, 13, 13, 89, 14, 13, 89, 15, 13, 89, 16, 13, 90, 0, 13, 90, 1, 13, 90, 2, 13, 90, 3, 13, 90, 4, 13, 90, 5, 13, 90, 6, 13, 90, 7, 13, 90, 8, 13, 90, 9, 13, 90, 10, 13, 90, 11, 13, 90, 12, 13, 90, 13, 13, 90, 14, 13, 90, 15, 13, 90, 16, 13, 91, 0, 13, 91, 1, 13, 91, 2, 13, 91, 3, 13, 91, 4, 13, 91, 5, 13, 91, 6, 13, 91, 7, 13, 91, 8, 13, 91, 9, 13, 91, 10, 13, 91, 11, 13, 91, 12, 13, 91, 13, 13, 91, 14, 13, 91, 15, 13, 91, 16, 13, 92, 0, 13, 92, 1, 13, 92, 2, 13, 92, 3, 13, 92, 4, 13, 92, 5, 13, 92, 6, 13, 92, 7, 13, 92, 8, 13, 92, 9, 13, 92, 10, 13, 92, 11, 13, 92, 12, 13, 92, 13, 13, 92, 14, 13, 92, 15, 13, 92, 16, 13, 93, 0, 13, 93, 1, 13, 93, 2, 13, 93, 3, 13, 93, 4, 13, 93, 5, 13, 93, 6, 13, 93, 7, 13, 93, 8, 13, 93, 9, 13, 93, 10, 13, 93, 11, 13, 93, 12, 13, 93, 13, 13, 93, 14, 13, 93, 15, 13, 93, 16, 13, 94, 0, 13, 94, 1, 13, 94, 2, 13, 94, 3, 13, 94, 4, 13, 94, 5, 13, 94, 6, 13, 94, 7, 13, 94, 8, 13, 94, 9, 13, 94, 10, 13, 94, 11, 13, 94, 12, 13, 94, 13, 13, 94, 14, 13, 94, 15, 13, 94, 16, 13, 95, 0, 13, 95, 1, 13, 95, 2, 13, 95, 3, 13, 95, 4, 13, 95, 5, 13, 95, 6, 13, 95, 7, 13, 95, 8, 13, 95, 9, 13, 95, 10, 13, 95, 11, 13, 95, 12, 13, 95, 13, 13, 95, 14, 13, 95, 15, 13, 95, 16, 13, 96, 0, 13, 96, 1, 13, 96, 2, 13, 96, 3, 13, 96, 4, 13, 96, 5, 13, 96, 6, 13, 96, 7, 13, 96, 8, 13, 96, 9, 13, 96, 10, 13, 96, 11, 13, 96, 12, 13, 96, 13, 13, 96, 14, 13, 96, 15, 13, 96, 16, 13, 81, 17, 13, 81, 18, 13, 81, 19, 13, 81, 20, 13, 81, 21, 13, 81, 22, 13, 81, 23, 13, 81, 24, 13, 81, 25, 13, 81, 26, 13, 81, 27, 13, 81, 28, 13, 81, 29, 13, 81, 30, 13, 81, 31, 13, 81, 32, 13, 82, 17, 13, 82, 18, 13, 82, 19, 13, 82, 20, 13, 82, 21, 13, 82, 22, 13, 82, 23, 13, 82, 24, 13, 82, 25, 13, 82, 26, 13, 82, 27, 13, 82, 28, 13, 82, 29, 13, 82, 30, 13, 82, 31, 13, 82, 32, 13, 83, 17, 13, 83, 18, 13, 83, 19, 13, 83, 20, 13, 83, 21, 13, 83, 22, 13, 83, 23, 13, 83, 24, 13, 83, 25, 13, 83, 26, 13, 83, 27, 13, 83, 28, 13, 83, 29, 13, 83, 30, 13, 83, 31, 13, 83, 32, 13, 84, 17, 13, 84, 18, 13, 84, 19, 13, 84, 20, 13, 84, 21, 13, 84, 22, 13, 84, 23, 13, 84, 24, 13, 84, 25, 13, 84, 26, 13, 84, 27, 13, 84, 28, 13, 84, 29, 13, 84, 30, 13, 84, 31, 13, 84, 32, 13, 85, 17, 13, 85, 18, 13, 85, 19, 13, 85, 20, 13, 85, 21, 13, 85, 22, 13, 85, 23, 13, 85, 24, 13, 85, 25, 13, 85, 26, 13, 85, 27, 13, 85, 28, 13, 85, 29, 13, 85, 30, 13, 85, 31, 13, 85, 32, 13, 86, 17, 13, 86, 18, 13, 86, 19, 13, 86, 20, 13, 86, 21, 13, 86, 22, 13, 86, 23, 13, 86, 24, 13, 86, 25, 13, 86, 26, 13, 86, 27, 13, 86, 28, 13, 86, 29, 13, 86, 30, 13, 86, 31, 13, 86, 32, 13, 87, 17, 13, 87, 18, 13, 87, 19, 13, 87, 20, 13, 87, 21, 13, 87, 22, 13, 87, 23, 13, 87, 24, 13, 87, 25, 13, 87, 26, 13, 87, 27, 13, 87, 28, 13, 87, 29, 13, 87, 30, 13, 87, 31, 13, 87, 32, 13, 88, 17, 13, 88, 18, 13, 88, 19, 13, 88, 20, 13, 88, 21, 13, 88, 22, 13, 88, 23, 13, 88, 24, 13, 88, 25, 13, 88, 26, 13, 88, 27, 13, 88, 28, 13, 88, 29, 13, 88, 30, 13, 88, 31, 13, 88, 32, 13, 89, 17, 13, 89, 18, 13, 89, 19, 13, 89, 20, 13, 89, 21, 13, 89, 22, 13, 89, 23, 13, 89, 24, 13, 89, 25, 13, 89, 26, 13, 89, 27, 13, 89, 28, 13, 89, 29, 13, 89, 30, 13, 89, 31, 13, 89, 32, 13, 90, 17, 13, 90, 18, 13, 90, 19, 13, 90, 20, 13, 90, 21, 13, 90, 22, 13, 90, 23, 13, 90, 24, 13, 90, 25, 13, 90, 26, 13, 90, 27, 13, 90, 28, 13, 90, 29, 13, 90, 30, 13, 90, 31, 13, 90, 32, 13, 91, 17, 13, 91, 18, 13, 91, 19, 13, 91, 20, 13, 91, 21, 13, 91, 22, 13, 91, 23, 13, 91, 24, 13, 91, 25, 13, 91, 26, 13, 91, 27, 13, 91, 28, 13, 91, 29, 13, 91, 30, 13, 91, 31, 13, 91, 32, 13, 92, 17, 13, 92, 18, 13, 92, 19, 13, 92, 20, 13, 92, 21, 13, 92, 22, 13, 92, 23, 13, 92, 24, 13, 92, 25, 13, 92, 26, 13, 92, 27, 13, 92, 28, 13, 92, 29, 13, 92, 30, 13, 92, 31, 13, 92, 32, 13, 93, 17, 13, 93, 18, 13, 93, 19, 13, 93, 20, 13, 93, 21, 13, 93, 22, 13, 93, 23, 13, 93, 24, 13, 93, 25, 13, 93, 26, 13, 93, 27, 13, 93, 28, 13, 93, 29, 13, 93, 30, 13, 93, 31, 13, 93, 32, 13, 94, 17, 13, 94, 18, 13, 94, 19, 13, 94, 20, 13, 94, 21, 13, 94, 22, 13, 94, 23, 13, 94, 24, 13, 94, 25, 13, 94, 26, 13, 94, 27, 13, 94, 28, 13, 94, 29, 13, 94, 30, 13, 94, 31, 13, 94, 32, 13, 95, 17, 13, 95, 18, 13, 95, 19, 13, 95, 20, 13, 95, 21, 13, 95, 22, 13, 95, 23, 13, 95, 24, 13, 95, 25, 13, 95, 26, 13, 95, 27, 13, 95, 28, 13, 95, 29, 13, 95, 30, 13, 95, 31, 13, 95, 32, 13, 96, 17, 13, 96, 18, 13, 96, 19, 13, 96, 20, 13, 96, 21, 13, 96, 22, 13, 96, 23, 13, 96, 24, 13, 96, 25, 13, 96, 26, 13, 96, 27, 13, 96, 28, 13, 96, 29, 13, 96, 30, 13, 96, 31, 13, 96, 32, 13, 81, 65520, 13, 81, 65521, 13, 81, 65522, 13, 81, 65523, 13, 81, 65524, 13, 81, 65525, 13, 81, 65526, 13, 81, 65527, 13, 81, 65528, 13, 81, 65529, 13, 81, 65530, 13, 81, 65531, 13, 81, 65532, 13, 81, 65533, 13, 81, 65534, 13, 81, 65535, 13, 82, 65520, 13, 82, 65521, 13, 82, 65522, 13, 82, 65523, 13, 82, 65524, 13, 82, 65525, 13, 82, 65526, 13, 82, 65527, 13, 82, 65528, 13, 82, 65529, 13, 82, 65530, 13, 82, 65531, 13, 82, 65532, 13, 82, 65533, 13, 82, 65534, 13, 82, 65535, 13, 83, 65520, 13, 83, 65521, 13, 83, 65522, 13, 83, 65523, 13, 83, 65524, 13, 83, 65525, 13, 83, 65526, 13, 83, 65527, 13, 83, 65528, 13, 83, 65529, 13, 83, 65530, 13, 83, 65531, 13, 83, 65532, 13, 83, 65533, 13, 83, 65534, 13, 83, 65535, 13, 84, 65520, 13, 84, 65521, 13, 84, 65522, 13, 84, 65523, 13, 84, 65524, 13, 84, 65525, 13, 84, 65526, 13, 84, 65527, 13, 84, 65528, 13, 84, 65529, 13, 84, 65530, 13, 84, 65531, 13, 84, 65532, 13, 84, 65533, 13, 84, 65534, 13, 84, 65535, 13, 85, 65520, 13, 85, 65521, 13, 85, 65522, 13, 85, 65523, 13, 85, 65524, 13, 85, 65525, 13, 85, 65526, 13, 85, 65527, 13, 85, 65528, 13, 85, 65529, 13, 85, 65530, 13, 85, 65531, 13, 85, 65532, 13, 85, 65533, 13, 85, 65534, 13, 85, 65535, 13, 86, 65520, 13, 86, 65521, 13, 86, 65522, 13, 86, 65523, 13, 86, 65524, 13, 86, 65525, 13, 86, 65526, 13, 86, 65527, 13, 86, 65528, 13, 86, 65529, 13, 86, 65530, 13, 86, 65531, 13, 86, 65532, 13, 86, 65533, 13, 86, 65534, 13, 86, 65535, 13, 87, 65520, 13, 87, 65521, 13, 87, 65522, 13, 87, 65523, 13, 87, 65524, 13, 87, 65525, 13, 87, 65526, 13, 87, 65527, 13, 87, 65528, 13, 87, 65529, 13, 87, 65530, 13, 87, 65531, 13, 87, 65532, 13, 87, 65533, 13, 87, 65534, 13, 87, 65535, 13, 88, 65520, 13, 88, 65521, 13, 88, 65522, 13, 88, 65523, 13, 88, 65524, 13, 88, 65525, 13, 88, 65526, 13, 88, 65527, 13, 88, 65528, 13, 88, 65529, 13, 88, 65530, 13, 88, 65531, 13, 88, 65532, 13, 88, 65533, 13, 88, 65534, 13, 88, 65535, 13, 89, 65520, 13, 89, 65521, 13, 89, 65522, 13, 89, 65523, 13, 89, 65524, 13, 89, 65525, 13, 89, 65526, 13, 89, 65527, 13, 89, 65528, 13, 89, 65529, 13, 89, 65530, 13, 89, 65531, 13, 89, 65532, 13, 89, 65533, 13, 89, 65534, 13, 89, 65535, 13, 90, 65520, 13, 90, 65521, 13, 90, 65522, 13, 90, 65523, 13, 90, 65524, 13, 90, 65525, 13, 90, 65526, 13, 90, 65527, 13, 90, 65528, 13, 90, 65529, 13, 90, 65530, 13, 90, 65531, 13, 90, 65532, 13, 90, 65533, 13, 90, 65534, 13, 90, 65535, 13, 91, 65520, 13, 91, 65521, 13, 91, 65522, 13, 91, 65523, 13, 91, 65524, 13, 91, 65525, 13, 91, 65526, 13, 91, 65527, 13, 91, 65528, 13, 91, 65529, 13, 91, 65530, 13, 91, 65531, 13, 91, 65532, 13, 91, 65533, 13, 91, 65534, 13, 91, 65535, 13, 92, 65520, 13, 92, 65521, 13, 92, 65522, 13, 92, 65523, 13, 92, 65524, 13, 92, 65525, 13, 92, 65526, 13, 92, 65527, 13, 92, 65528, 13, 92, 65529, 13, 92, 65530, 13, 92, 65531, 13, 92, 65532, 13, 92, 65533, 13, 92, 65534, 13, 92, 65535, 13, 93, 65520, 13, 93, 65521, 13, 93, 65522, 13, 93, 65523, 13, 93, 65524, 13, 93, 65525, 13, 93, 65526, 13, 93, 65527, 13, 93, 65528, 13, 93, 65529, 13, 93, 65530, 13, 93, 65531, 13, 93, 65532, 13, 93, 65533, 13, 93, 65534, 13, 93, 65535, 13, 94, 65520, 13, 94, 65521, 13, 94, 65522, 13, 94, 65523, 13, 94, 65524, 13, 94, 65525, 13, 94, 65526, 13, 94, 65527, 13, 94, 65528, 13, 94, 65529, 13, 94, 65530, 13, 94, 65531, 13, 94, 65532, 13, 94, 65533, 13, 94, 65534, 13, 94, 65535, 13, 95, 65520, 13, 95, 65521, 13, 95, 65522, 13, 95, 65523, 13, 95, 65524, 13, 95, 65525, 13, 95, 65526, 13, 95, 65527, 13, 95, 65528, 13, 95, 65529, 13, 95, 65530, 13, 95, 65531, 13, 95, 65532, 13, 95, 65533, 13, 95, 65534, 13, 95, 65535, 13, 96, 65520, 13, 96, 65521, 13, 96, 65522, 13, 96, 65523, 13, 96, 65524, 13, 96, 65525, 13, 96, 65526, 13, 96, 65527, 13, 96, 65528, 13, 96, 65529, 13, 96, 65530, 13, 96, 65531, 13, 96, 65532, 13, 96, 65533, 13, 96, 65534, 13, 96, 65535, 13, 81, 65504, 13, 81, 65505, 13, 81, 65506, 13, 81, 65507, 13, 81, 65508, 13, 81, 65509, 13, 81, 65510, 13, 81, 65511, 13, 81, 65512, 13, 81, 65513, 13, 81, 65514, 13, 81, 65515, 13, 81, 65516, 13, 81, 65517, 13, 81, 65518, 13, 81, 65519, 13, 82, 65504, 13, 82, 65505, 13, 82, 65506, 13, 82, 65507, 13, 82, 65508, 13, 82, 65509, 13, 82, 65510, 13, 82, 65511, 13, 82, 65512, 13, 82, 65513, 13, 82, 65514, 13, 82, 65515, 13, 82, 65516, 13, 82, 65517, 13, 82, 65518, 13, 82, 65519, 13, 83, 65504, 13, 83, 65505, 13, 83, 65506, 13, 83, 65507, 13, 83, 65508, 13, 83, 65509, 13, 83, 65510, 13, 83, 65511, 13, 83, 65512, 13, 83, 65513, 13, 83, 65514, 13, 83, 65515, 13, 83, 65516, 13, 83, 65517, 13, 83, 65518, 13, 83, 65519, 13, 84, 65504, 13, 84, 65505, 13, 84, 65506, 13, 84, 65507, 13, 84, 65508, 13, 84, 65509, 13, 84, 65510, 13, 84, 65511, 13, 84, 65512, 13, 84, 65513, 13, 84, 65514, 13, 84, 65515, 13, 84, 65516, 13, 84, 65517, 13, 84, 65518, 13, 84, 65519, 13, 85, 65504, 13, 85, 65505, 13, 85, 65506, 13, 85, 65507, 13, 85, 65508, 13, 85, 65509, 13, 85, 65510, 13, 85, 65511, 13, 85, 65512, 13, 85, 65513, 13, 85, 65514, 13, 85, 65515, 13, 85, 65516, 13, 85, 65517, 13, 85, 65518, 13, 85, 65519, 13, 86, 65504, 13, 86, 65505, 13, 86, 65506, 13, 86, 65507, 13, 86, 65508, 13, 86, 65509, 13, 86, 65510, 13, 86, 65511, 13, 86, 65512, 13, 86, 65513, 13, 86, 65514, 13, 86, 65515, 13, 86, 65516, 13, 86, 65517, 13, 86, 65518, 13, 86, 65519, 13, 87, 65504, 13, 87, 65505, 13, 87, 65506, 13, 87, 65507, 13, 87, 65508, 13, 87, 65509, 13, 87, 65510, 13, 87, 65511, 13, 87, 65512, 13, 87, 65513, 13, 87, 65514, 13, 87, 65515, 13, 87, 65516, 13, 87, 65517, 13, 87, 65518, 13, 87, 65519, 13, 88, 65504, 13, 88, 65505, 13, 88, 65506, 13, 88, 65507, 13, 88, 65508, 13, 88, 65509, 13, 88, 65510, 13, 88, 65511, 13, 88, 65512, 13, 88, 65513, 13, 88, 65514, 13, 88, 65515, 13, 88, 65516, 13, 88, 65517, 13, 88, 65518, 13, 88, 65519, 13, 89, 65504, 13, 89, 65505, 13, 89, 65506, 13, 89, 65507, 13, 89, 65508, 13, 89, 65509, 13, 89, 65510, 13, 89, 65511, 13, 89, 65512, 13, 89, 65513, 13, 89, 65514, 13, 89, 65515, 13, 89, 65516, 13, 89, 65517, 13, 89, 65518, 13, 89, 65519, 13, 90, 65504, 13, 90, 65505, 13, 90, 65506, 13, 90, 65507, 13, 90, 65508, 13, 90, 65509, 13, 90, 65510, 13, 90, 65511, 13, 90, 65512, 13, 90, 65513, 13, 90, 65514, 13, 90, 65515, 13, 90, 65516, 13, 90, 65517, 13, 90, 65518, 13, 90, 65519, 13, 91, 65504, 13, 91, 65505, 13, 91, 65506, 13, 91, 65507, 13, 91, 65508, 13, 91, 65509, 13, 91, 65510, 13, 91, 65511, 13, 91, 65512, 13, 91, 65513, 13, 91, 65514, 13, 91, 65515, 13, 91, 65516, 13, 91, 65517, 13, 91, 65518, 13, 91, 65519, 13, 92, 65504, 13, 92, 65505, 13, 92, 65506, 13, 92, 65507, 13, 92, 65508, 13, 92, 65509, 13, 92, 65510, 13, 92, 65511, 13, 92, 65512, 13, 92, 65513, 13, 92, 65514, 13, 92, 65515, 13, 92, 65516, 13, 92, 65517, 13, 92, 65518, 13, 92, 65519, 13, 93, 65504, 13, 93, 65505, 13, 93, 65506, 13, 93, 65507, 13, 93, 65508, 13, 93, 65509, 13, 93, 65510, 13, 93, 65511, 13, 93, 65512, 13, 93, 65513, 13, 93, 65514, 13, 93, 65515, 13, 93, 65516, 13, 93, 65517, 13, 93, 65518, 13, 93, 65519, 13, 94, 65504, 13, 94, 65505, 13, 94, 65506, 13, 94, 65507, 13, 94, 65508, 13, 94, 65509, 13, 94, 65510, 13, 94, 65511, 13, 94, 65512, 13, 94, 65513, 13, 94, 65514, 13, 94, 65515, 13, 94, 65516, 13, 94, 65517, 13, 94, 65518, 13, 94, 65519, 13, 95, 65504, 13, 95, 65505, 13, 95, 65506, 13, 95, 65507, 13, 95, 65508, 13, 95, 65509, 13, 95, 65510, 13, 95, 65511, 13, 95, 65512, 13, 95, 65513, 13, 95, 65514, 13, 95, 65515, 13, 95, 65516, 13, 95, 65517, 13, 95, 65518, 13, 95, 65519, 13, 96, 65504, 13, 96, 65505, 13, 96, 65506, 13, 96, 65507, 13, 96, 65508, 13, 96, 65509, 13, 96, 65510, 13, 96, 65511, 13, 96, 65512, 13, 96, 65513, 13, 96, 65514, 13, 96, 65515, 13, 96, 65516, 13, 96, 65517, 13, 96, 65518, 13, 96, 65519, 13, 81, 65488, 13, 81, 65489, 13, 81, 65490, 13, 81, 65491, 13, 81, 65492, 13, 81, 65493, 13, 81, 65494, 13, 81, 65495, 13, 81, 65496, 13, 81, 65497, 13, 81, 65498, 13, 81, 65499, 13, 81, 65500, 13, 81, 65501, 13, 81, 65502, 13, 81, 65503, 13, 82, 65488, 13, 82, 65489, 13, 82, 65490, 13, 82, 65491, 13, 82, 65492, 13, 82, 65493, 13, 82, 65494, 13, 82, 65495, 13, 82, 65496, 13, 82, 65497, 13, 82, 65498, 13, 82, 65499, 13, 82, 65500, 13, 82, 65501, 13, 82, 65502, 13, 82, 65503, 13, 83, 65488, 13, 83, 65489, 13, 83, 65490, 13, 83, 65491, 13, 83, 65492, 13, 83, 65493, 13, 83, 65494, 13, 83, 65495, 13, 83, 65496, 13, 83, 65497, 13, 83, 65498, 13, 83, 65499, 13, 83, 65500, 13, 83, 65501, 13, 83, 65502, 13, 83, 65503, 13, 84, 65488, 13, 84, 65489, 13, 84, 65490, 13, 84, 65491, 13, 84, 65492, 13, 84, 65493, 13, 84, 65494, 13, 84, 65495, 13, 84, 65496, 13, 84, 65497, 13, 84, 65498, 13, 84, 65499, 13, 84, 65500, 13, 84, 65501, 13, 84, 65502, 13, 84, 65503, 13, 85, 65488, 13, 85, 65489, 13, 85, 65490, 13, 85, 65491, 13, 85, 65492, 13, 85, 65493, 13, 85, 65494, 13, 85, 65495, 13, 85, 65496, 13, 85, 65497, 13, 85, 65498, 13, 85, 65499, 13, 85, 65500, 13, 85, 65501, 13, 85, 65502, 13, 85, 65503, 13, 86, 65488, 13, 86, 65489, 13, 86, 65490, 13, 86, 65491, 13, 86, 65492, 13, 86, 65493, 13, 86, 65494, 13, 86, 65495, 13, 86, 65496, 13, 86, 65497, 13, 86, 65498, 13, 86, 65499, 13, 86, 65500, 13, 86, 65501, 13, 86, 65502, 13, 86, 65503, 13, 87, 65488, 13, 87, 65489, 13, 87, 65490, 13, 87, 65491, 13, 87, 65492, 13, 87, 65493, 13, 87, 65494, 13, 87, 65495, 13, 87, 65496, 13, 87, 65497, 13, 87, 65498, 13, 87, 65499, 13, 87, 65500, 13, 87, 65501, 13, 87, 65502, 13, 87, 65503, 13, 88, 65488, 13, 88, 65489, 13, 88, 65490, 13, 88, 65491, 13, 88, 65492, 13, 88, 65493, 13, 88, 65494, 13, 88, 65495, 13, 88, 65496, 13, 88, 65497, 13, 88, 65498, 13, 88, 65499, 13, 88, 65500, 13, 88, 65501, 13, 88, 65502, 13, 88, 65503, 13, 89, 65488, 13, 89, 65489, 13, 89, 65490, 13, 89, 65491, 13, 89, 65492, 13, 89, 65493, 13, 89, 65494, 13, 89, 65495, 13, 89, 65496, 13, 89, 65497, 13, 89, 65498, 13, 89, 65499, 13, 89, 65500, 13, 89, 65501, 13, 89, 65502, 13, 89, 65503, 13, 90, 65488, 13, 90, 65489, 13, 90, 65490, 13, 90, 65491, 13, 90, 65492, 13, 90, 65493, 13, 90, 65494, 13, 90, 65495, 13, 90, 65496, 13, 90, 65497, 13, 90, 65498, 13, 90, 65499, 13, 90, 65500, 13, 90, 65501, 13, 90, 65502, 13, 90, 65503, 13, 91, 65488, 13, 91, 65489, 13, 91, 65490, 13, 91, 65491, 13, 91, 65492, 13, 91, 65493, 13, 91, 65494, 13, 91, 65495, 13, 91, 65496, 13, 91, 65497, 13, 91, 65498, 13, 91, 65499, 13, 91, 65500, 13, 91, 65501, 13, 91, 65502, 13, 91, 65503, 13, 92, 65488, 13, 92, 65489, 13, 92, 65490, 13, 92, 65491, 13, 92, 65492, 13, 92, 65493, 13, 92, 65494, 13, 92, 65495, 13, 92, 65496, 13, 92, 65497, 13, 92, 65498, 13, 92, 65499, 13, 92, 65500, 13, 92, 65501, 13, 92, 65502, 13, 92, 65503, 13, 93, 65488, 13, 93, 65489, 13, 93, 65490, 13, 93, 65491, 13, 93, 65492, 13, 93, 65493, 13, 93, 65494, 13, 93, 65495, 13, 93, 65496, 13, 93, 65497, 13, 93, 65498, 13, 93, 65499, 13, 93, 65500, 13, 93, 65501, 13, 93, 65502, 13, 93, 65503, 13, 94, 65488, 13, 94, 65489, 13, 94, 65490, 13, 94, 65491, 13, 94, 65492, 13, 94, 65493, 13, 94, 65494, 13, 94, 65495, 13, 94, 65496, 13, 94, 65497, 13, 94, 65498, 13, 94, 65499, 13, 94, 65500, 13, 94, 65501, 13, 94, 65502, 13, 94, 65503, 13, 95, 65488, 13, 95, 65489, 13, 95, 65490, 13, 95, 65491, 13, 95, 65492, 13, 95, 65493, 13, 95, 65494, 13, 95, 65495, 13, 95, 65496, 13, 95, 65497, 13, 95, 65498, 13, 95, 65499, 13, 95, 65500, 13, 95, 65501, 13, 95, 65502, 13, 95, 65503, 13, 96, 65488, 13, 96, 65489, 13, 96, 65490, 13, 96, 65491, 13, 96, 65492, 13, 96, 65493, 13, 96, 65494, 13, 96, 65495, 13, 96, 65496, 13, 96, 65497, 13, 96, 65498, 13, 96, 65499, 13, 96, 65500, 13, 96, 65501, 13, 96, 65502, 13, 96, 65503, 13, 17, 65472, 13, 17, 65473, 13, 17, 65474, 13, 17, 65475, 13, 17, 65476, 13, 17, 65477, 13, 17, 65478, 13, 17, 65479, 13, 17, 65480, 13, 17, 65481, 13, 17, 65482, 13, 17, 65483, 13, 17, 65484, 13, 17, 65485, 13, 17, 65486, 13, 17, 65487, 13, 18, 65472, 13, 18, 65473, 13, 18, 65474, 13, 18, 65475, 13, 18, 65476, 13, 18, 65477, 13, 18, 65478, 13, 18, 65479, 13, 18, 65480, 13, 18, 65481, 13, 18, 65482, 13, 18, 65483, 13, 18, 65484, 13, 18, 65485, 13, 18, 65486, 13, 18, 65487, 13, 19, 65472, 13, 19, 65473, 13, 19, 65474, 13, 19, 65475, 13, 19, 65476, 13, 19, 65477, 13, 19, 65478, 13, 19, 65479, 13, 19, 65480, 13, 19, 65481, 13, 19, 65482, 13, 19, 65483, 13, 19, 65484, 13, 19, 65485, 13, 19, 65486, 13, 19, 65487, 13, 20, 65472, 13, 20, 65473, 13, 20, 65474, 13, 20, 65475, 13, 20, 65476, 13, 20, 65477, 13, 20, 65478, 13, 20, 65479, 13, 20, 65480, 13, 20, 65481, 13, 20, 65482, 13, 20, 65483, 13, 20, 65484, 13, 20, 65485, 13, 20, 65486, 13, 20, 65487, 13, 21, 65472, 13, 21, 65473, 13, 21, 65474, 13, 21, 65475, 13, 21, 65476, 13, 21, 65477, 13, 21, 65478, 13, 21, 65479, 13, 21, 65480, 13, 21, 65481, 13, 21, 65482, 13, 21, 65483, 13, 21, 65484, 13, 21, 65485, 13, 21, 65486, 13, 21, 65487, 13, 22, 65472, 13, 22, 65473, 13, 22, 65474, 13, 22, 65475, 13, 22, 65476, 13, 22, 65477, 13, 22, 65478, 13, 22, 65479, 13, 22, 65480, 13, 22, 65481, 13, 22, 65482, 13, 22, 65483, 13, 22, 65484, 13, 22, 65485, 13, 22, 65486, 13, 22, 65487, 13, 23, 65472, 13, 23, 65473, 13, 23, 65474, 13, 23, 65475, 13, 23, 65476, 13, 23, 65477, 13, 23, 65478, 13, 23, 65479, 13, 23, 65480, 13, 23, 65481, 13, 23, 65482, 13, 23, 65483, 13, 23, 65484, 13, 23, 65485, 13, 23, 65486, 13, 23, 65487, 13, 24, 65472, 13, 24, 65473, 13, 24, 65474, 13, 24, 65475, 13, 24, 65476, 13, 24, 65477, 13, 24, 65478, 13, 24, 65479, 13, 24, 65480, 13, 24, 65481, 13, 24, 65482, 13, 24, 65483, 13, 24, 65484, 13, 24, 65485, 13, 24, 65486, 13, 24, 65487, 13, 25, 65472, 13, 25, 65473, 13, 25, 65474, 13, 25, 65475, 13, 25, 65476, 13, 25, 65477, 13, 25, 65478, 13, 25, 65479, 13, 25, 65480, 13, 25, 65481, 13, 25, 65482, 13, 25, 65483, 13, 25, 65484, 13, 25, 65485, 13, 25, 65486, 13, 25, 65487, 13, 26, 65472, 13, 26, 65473, 13, 26, 65474, 13, 26, 65475, 13, 26, 65476, 13, 26, 65477, 13, 26, 65478, 13, 26, 65479, 13, 26, 65480, 13, 26, 65481, 13, 26, 65482, 13, 26, 65483, 13, 26, 65484, 13, 26, 65485, 13, 26, 65486, 13, 26, 65487, 13, 27, 65472, 13, 27, 65473, 13, 27, 65474, 13, 27, 65475, 13, 27, 65476, 13, 27, 65477, 13, 27, 65478, 13, 27, 65479, 13, 27, 65480, 13, 27, 65481, 13, 27, 65482, 13, 27, 65483, 13, 27, 65484, 13, 27, 65485, 13, 27, 65486, 13, 27, 65487, 13, 28, 65472, 13, 28, 65473, 13, 28, 65474, 13, 28, 65475, 13, 28, 65476, 13, 28, 65477, 13, 28, 65478, 13, 28, 65479, 13, 28, 65480, 13, 28, 65481, 13, 28, 65482, 13, 28, 65483, 13, 28, 65484, 13, 28, 65485, 13, 28, 65486, 13, 28, 65487, 13, 29, 65472, 13, 29, 65473, 13, 29, 65474, 13, 29, 65475, 13, 29, 65476, 13, 29, 65477, 13, 29, 65478, 13, 29, 65479, 13, 29, 65480, 13, 29, 65481, 13, 29, 65482, 13, 29, 65483, 13, 29, 65484, 13, 29, 65485, 13, 29, 65486, 13, 29, 65487, 13, 30, 65472, 13, 30, 65473, 13, 30, 65474, 13, 30, 65475, 13, 30, 65476, 13, 30, 65477, 13, 30, 65478, 13, 30, 65479, 13, 30, 65480, 13, 30, 65481, 13, 30, 65482, 13, 30, 65483, 13, 30, 65484, 13, 30, 65485, 13, 30, 65486, 13, 30, 65487, 13, 31, 65472, 13, 31, 65473, 13, 31, 65474, 13, 31, 65475, 13, 31, 65476, 13, 31, 65477, 13, 31, 65478, 13, 31, 65479, 13, 31, 65480, 13, 31, 65481, 13, 31, 65482, 13, 31, 65483, 13, 31, 65484, 13, 31, 65485, 13, 31, 65486, 13, 31, 65487, 13, 32, 65472, 13, 32, 65473, 13, 32, 65474, 13, 32, 65475, 13, 32, 65476, 13, 32, 65477, 13, 32, 65478, 13, 32, 65479, 13, 32, 65480, 13, 32, 65481, 13, 32, 65482, 13, 32, 65483, 13, 32, 65484, 13, 32, 65485, 13, 32, 65486, 13, 32, 65487, 13, 33, 65472, 13, 33, 65473, 13, 33, 65474, 13, 33, 65475, 13, 33, 65476, 13, 33, 65477, 13, 33, 65478, 13, 33, 65479, 13, 33, 65480, 13, 33, 65481, 13, 33, 65482, 13, 33, 65483, 13, 33, 65484, 13, 33, 65485, 13, 33, 65486, 13, 33, 65487, 13, 16, 65488, 13, 16, 65489, 13, 16, 65490, 13, 16, 65491, 13, 16, 65492, 13, 16, 65493, 13, 16, 65494, 13, 16, 65495, 13, 16, 65496, 13, 16, 65497, 13, 16, 65498, 13, 16, 65499, 13, 16, 65500, 13, 16, 65501, 13, 16, 65502, 13, 16, 65503, 13, 16, 65504, 13, 16, 65472, 13, 16, 65473, 13, 16, 65474, 13, 16, 65475, 13, 16, 65476, 13, 16, 65477, 13, 16, 65478, 13, 16, 65479, 13, 16, 65480, 13, 16, 65481, 13, 16, 65482, 13, 16, 65483, 13, 16, 65484, 13, 16, 65485, 13, 16, 65486, 13, 16, 65487, 13, 34, 65472, 13, 34, 65473, 13, 34, 65474, 13, 34, 65475, 13, 34, 65476, 13, 34, 65477, 13, 34, 65478, 13, 34, 65479, 13, 34, 65480, 13, 34, 65481, 13, 34, 65482, 13, 34, 65483, 13, 34, 65484, 13, 34, 65485, 13, 34, 65486, 13, 34, 65487, 13, 35, 65472, 13, 35, 65473, 13, 35, 65474, 13, 35, 65475, 13, 35, 65476, 13, 35, 65477, 13, 35, 65478, 13, 35, 65479, 13, 35, 65480, 13, 35, 65481, 13, 35, 65482, 13, 35, 65483, 13, 35, 65484, 13, 35, 65485, 13, 35, 65486, 13, 35, 65487, 13, 36, 65472, 13, 36, 65473, 13, 36, 65474, 13, 36, 65475, 13, 36, 65476, 13, 36, 65477, 13, 36, 65478, 13, 36, 65479, 13, 36, 65480, 13, 36, 65481, 13, 36, 65482, 13, 36, 65483, 13, 36, 65484, 13, 36, 65485, 13, 36, 65486, 13, 36, 65487, 13, 37, 65472, 13, 37, 65473, 13, 37, 65474, 13, 37, 65475, 13, 37, 65476, 13, 37, 65477, 13, 37, 65478, 13, 37, 65479, 13, 37, 65480, 13, 37, 65481, 13, 37, 65482, 13, 37, 65483, 13, 37, 65484, 13, 37, 65485, 13, 37, 65486, 13, 37, 65487, 13, 38, 65472, 13, 38, 65473, 13, 38, 65474, 13, 38, 65475, 13, 38, 65476, 13, 38, 65477, 13, 38, 65478, 13, 38, 65479, 13, 38, 65480, 13, 38, 65481, 13, 38, 65482, 13, 38, 65483, 13, 38, 65484, 13, 38, 65485, 13, 38, 65486, 13, 38, 65487, 13, 39, 65472, 13, 39, 65473, 13, 39, 65474, 13, 39, 65475, 13, 39, 65476, 13, 39, 65477, 13, 39, 65478, 13, 39, 65479, 13, 39, 65480, 13, 39, 65481, 13, 39, 65482, 13, 39, 65483, 13, 39, 65484, 13, 39, 65485, 13, 39, 65486, 13, 39, 65487, 13, 40, 65472, 13, 40, 65473, 13, 40, 65474, 13, 40, 65475, 13, 40, 65476, 13, 40, 65477, 13, 40, 65478, 13, 40, 65479, 13, 40, 65480, 13, 40, 65481, 13, 40, 65482, 13, 40, 65483, 13, 40, 65484, 13, 40, 65485, 13, 40, 65486, 13, 40, 65487, 13, 41, 65472, 13, 41, 65473, 13, 41, 65474, 13, 41, 65475, 13, 41, 65476, 13, 41, 65477, 13, 41, 65478, 13, 41, 65479, 13, 41, 65480, 13, 41, 65481, 13, 41, 65482, 13, 41, 65483, 13, 41, 65484, 13, 41, 65485, 13, 41, 65486, 13, 41, 65487, 13, 42, 65472, 13, 42, 65473, 13, 42, 65474, 13, 42, 65475, 13, 42, 65476, 13, 42, 65477, 13, 42, 65478, 13, 42, 65479, 13, 42, 65480, 13, 42, 65481, 13, 42, 65482, 13, 42, 65483, 13, 42, 65484, 13, 42, 65485, 13, 42, 65486, 13, 42, 65487, 13, 43, 65472, 13, 43, 65473, 13, 43, 65474, 13, 43, 65475, 13, 43, 65476, 13, 43, 65477, 13, 43, 65478, 13, 43, 65479, 13, 43, 65480, 13, 43, 65481, 13, 43, 65482, 13, 43, 65483, 13, 43, 65484, 13, 43, 65485, 13, 43, 65486, 13, 43, 65487, 13, 44, 65472, 13, 44, 65473, 13, 44, 65474, 13, 44, 65475, 13, 44, 65476, 13, 44, 65477, 13, 44, 65478, 13, 44, 65479, 13, 44, 65480, 13, 44, 65481, 13, 44, 65482, 13, 44, 65483, 13, 44, 65484, 13, 44, 65485, 13, 44, 65486, 13, 44, 65487, 13, 45, 65472, 13, 45, 65473, 13, 45, 65474, 13, 45, 65475, 13, 45, 65476, 13, 45, 65477, 13, 45, 65478, 13, 45, 65479, 13, 45, 65480, 13, 45, 65481, 13, 45, 65482, 13, 45, 65483, 13, 45, 65484, 13, 45, 65485, 13, 45, 65486, 13, 45, 65487, 13, 46, 65472, 13, 46, 65473, 13, 46, 65474, 13, 46, 65475, 13, 46, 65476, 13, 46, 65477, 13, 46, 65478, 13, 46, 65479, 13, 46, 65480, 13, 46, 65481, 13, 46, 65482, 13, 46, 65483, 13, 46, 65484, 13, 46, 65485, 13, 46, 65486, 13, 46, 65487, 13, 47, 65472, 13, 47, 65473, 13, 47, 65474, 13, 47, 65475, 13, 47, 65476, 13, 47, 65477, 13, 47, 65478, 13, 47, 65479, 13, 47, 65480, 13, 47, 65481, 13, 47, 65482, 13, 47, 65483, 13, 47, 65484, 13, 47, 65485, 13, 47, 65486, 13, 47, 65487, 13, 48, 65472, 13, 48, 65473, 13, 48, 65474, 13, 48, 65475, 13, 48, 65476, 13, 48, 65477, 13, 48, 65478, 13, 48, 65479, 13, 48, 65480, 13, 48, 65481, 13, 48, 65482, 13, 48, 65483, 13, 48, 65484, 13, 48, 65485, 13, 48, 65486, 13, 48, 65487, 13, 49, 65472, 13, 49, 65473, 13, 49, 65474, 13, 49, 65475, 13, 49, 65476, 13, 49, 65477, 13, 49, 65478, 13, 49, 65479, 13, 49, 65480, 13, 49, 65481, 13, 49, 65482, 13, 49, 65483, 13, 49, 65484, 13, 49, 65485, 13, 49, 65486, 13, 49, 65487, 13, 50, 65472, 13, 50, 65473, 13, 50, 65474, 13, 50, 65475, 13, 50, 65476, 13, 50, 65477, 13, 50, 65478, 13, 50, 65479, 13, 50, 65480, 13, 50, 65481, 13, 50, 65482, 13, 50, 65483, 13, 50, 65484, 13, 50, 65485, 13, 50, 65486, 13, 50, 65487, 13, 51, 65472, 13, 51, 65473, 13, 51, 65474, 13, 51, 65475, 13, 51, 65476, 13, 51, 65477, 13, 51, 65478, 13, 51, 65479, 13, 51, 65480, 13, 51, 65481, 13, 51, 65482, 13, 51, 65483, 13, 51, 65484, 13, 51, 65485, 13, 51, 65486, 13, 51, 65487, 13, 52, 65472, 13, 52, 65473, 13, 52, 65474, 13, 52, 65475, 13, 52, 65476, 13, 52, 65477, 13, 52, 65478, 13, 52, 65479, 13, 52, 65480, 13, 52, 65481, 13, 52, 65482, 13, 52, 65483, 13, 52, 65484, 13, 52, 65485, 13, 52, 65486, 13, 52, 65487, 13, 53, 65472, 13, 53, 65473, 13, 53, 65474, 13, 53, 65475, 13, 53, 65476, 13, 53, 65477, 13, 53, 65478, 13, 53, 65479, 13, 53, 65480, 13, 53, 65481, 13, 53, 65482, 13, 53, 65483, 13, 53, 65484, 13, 53, 65485, 13, 53, 65486, 13, 53, 65487, 13, 54, 65472, 13, 54, 65473, 13, 54, 65474, 13, 54, 65475, 13, 54, 65476, 13, 54, 65477, 13, 54, 65478, 13, 54, 65479, 13, 54, 65480, 13, 54, 65481, 13, 54, 65482, 13, 54, 65483, 13, 54, 65484, 13, 54, 65485, 13, 54, 65486, 13, 54, 65487, 13, 55, 65472, 13, 55, 65473, 13, 55, 65474, 13, 55, 65475, 13, 55, 65476, 13, 55, 65477, 13, 55, 65478, 13, 55, 65479, 13, 55, 65480, 13, 55, 65481, 13, 55, 65482, 13, 55, 65483, 13, 55, 65484, 13, 55, 65485, 13, 55, 65486, 13, 55, 65487, 13, 56, 65472, 13, 56, 65473, 13, 56, 65474, 13, 56, 65475, 13, 56, 65476, 13, 56, 65477, 13, 56, 65478, 13, 56, 65479, 13, 56, 65480, 13, 56, 65481, 13, 56, 65482, 13, 56, 65483, 13, 56, 65484, 13, 56, 65485, 13, 56, 65486, 13, 56, 65487, 13, 57, 65472, 13, 57, 65473, 13, 57, 65474, 13, 57, 65475, 13, 57, 65476, 13, 57, 65477, 13, 57, 65478, 13, 57, 65479, 13, 57, 65480, 13, 57, 65481, 13, 57, 65482, 13, 57, 65483, 13, 57, 65484, 13, 57, 65485, 13, 57, 65486, 13, 57, 65487, 13, 58, 65472, 13, 58, 65473, 13, 58, 65474, 13, 58, 65475, 13, 58, 65476, 13, 58, 65477, 13, 58, 65478, 13, 58, 65479, 13, 58, 65480, 13, 58, 65481, 13, 58, 65482, 13, 58, 65483, 13, 58, 65484, 13, 58, 65485, 13, 58, 65486, 13, 58, 65487, 13, 59, 65472, 13, 59, 65473, 13, 59, 65474, 13, 59, 65475, 13, 59, 65476, 13, 59, 65477, 13, 59, 65478, 13, 59, 65479, 13, 59, 65480, 13, 59, 65481, 13, 59, 65482, 13, 59, 65483, 13, 59, 65484, 13, 59, 65485, 13, 59, 65486, 13, 59, 65487, 13, 60, 65472, 13, 60, 65473, 13, 60, 65474, 13, 60, 65475, 13, 60, 65476, 13, 60, 65477, 13, 60, 65478, 13, 60, 65479, 13, 60, 65480, 13, 60, 65481, 13, 60, 65482, 13, 60, 65483, 13, 60, 65484, 13, 60, 65485, 13, 60, 65486, 13, 60, 65487, 13, 61, 65472, 13, 61, 65473, 13, 61, 65474, 13, 61, 65475, 13, 61, 65476, 13, 61, 65477, 13, 61, 65478, 13, 61, 65479, 13, 61, 65480, 13, 61, 65481, 13, 61, 65482, 13, 61, 65483, 13, 61, 65484, 13, 61, 65485, 13, 61, 65486, 13, 61, 65487, 13, 62, 65472, 13, 62, 65473, 13, 62, 65474, 13, 62, 65475, 13, 62, 65476, 13, 62, 65477, 13, 62, 65478, 13, 62, 65479, 13, 62, 65480, 13, 62, 65481, 13, 62, 65482, 13, 62, 65483, 13, 62, 65484, 13, 62, 65485, 13, 62, 65486, 13, 62, 65487, 13, 63, 65472, 13, 63, 65473, 13, 63, 65474, 13, 63, 65475, 13, 63, 65476, 13, 63, 65477, 13, 63, 65478, 13, 63, 65479, 13, 63, 65480, 13, 63, 65481, 13, 63, 65482, 13, 63, 65483, 13, 63, 65484, 13, 63, 65485, 13, 63, 65486, 13, 63, 65487, 13, 64, 65472, 13, 64, 65473, 13, 64, 65474, 13, 64, 65475, 13, 64, 65476, 13, 64, 65477, 13, 64, 65478, 13, 64, 65479, 13, 64, 65480, 13, 64, 65481, 13, 64, 65482, 13, 64, 65483, 13, 64, 65484, 13, 64, 65485, 13, 64, 65486, 13, 64, 65487, 13, 65, 65472, 13, 65, 65473, 13, 65, 65474, 13, 65, 65475, 13, 65, 65476, 13, 65, 65477, 13, 65, 65478, 13, 65, 65479, 13, 65, 65480, 13, 65, 65481, 13, 65, 65482, 13, 65, 65483, 13, 65, 65484, 13, 65, 65485, 13, 65, 65486, 13, 65, 65487, 13, 66, 65472, 13, 66, 65473, 13, 66, 65474, 13, 66, 65475, 13, 66, 65476, 13, 66, 65477, 13, 66, 65478, 13, 66, 65479, 13, 66, 65480, 13, 66, 65481, 13, 66, 65482, 13, 66, 65483, 13, 66, 65484, 13, 66, 65485, 13, 66, 65486, 13, 66, 65487, 13, 67, 65472, 13, 67, 65473, 13, 67, 65474, 13, 67, 65475, 13, 67, 65476, 13, 67, 65477, 13, 67, 65478, 13, 67, 65479, 13, 67, 65480, 13, 67, 65481, 13, 67, 65482, 13, 67, 65483, 13, 67, 65484, 13, 67, 65485, 13, 67, 65486, 13, 67, 65487, 13, 68, 65472, 13, 68, 65473, 13, 68, 65474, 13, 68, 65475, 13, 68, 65476, 13, 68, 65477, 13, 68, 65478, 13, 68, 65479, 13, 68, 65480, 13, 68, 65481, 13, 68, 65482, 13, 68, 65483, 13, 68, 65484, 13, 68, 65485, 13, 68, 65486, 13, 68, 65487, 13, 69, 65472, 13, 69, 65473, 13, 69, 65474, 13, 69, 65475, 13, 69, 65476, 13, 69, 65477, 13, 69, 65478, 13, 69, 65479, 13, 69, 65480, 13, 69, 65481, 13, 69, 65482, 13, 69, 65483, 13, 69, 65484, 13, 69, 65485, 13, 69, 65486, 13, 69, 65487, 13, 70, 65472, 13, 70, 65473, 13, 70, 65474, 13, 70, 65475, 13, 70, 65476, 13, 70, 65477, 13, 70, 65478, 13, 70, 65479, 13, 70, 65480, 13, 70, 65481, 13, 70, 65482, 13, 70, 65483, 13, 70, 65484, 13, 70, 65485, 13, 70, 65486, 13, 70, 65487, 13, 71, 65472, 13, 71, 65473, 13, 71, 65474, 13, 71, 65475, 13, 71, 65476, 13, 71, 65477, 13, 71, 65478, 13, 71, 65479, 13, 71, 65480, 13, 71, 65481, 13, 71, 65482, 13, 71, 65483, 13, 71, 65484, 13, 71, 65485, 13, 71, 65486, 13, 71, 65487, 13, 72, 65472, 13, 72, 65473, 13, 72, 65474, 13, 72, 65475, 13, 72, 65476, 13, 72, 65477, 13, 72, 65478, 13, 72, 65479, 13, 72, 65480, 13, 72, 65481, 13, 72, 65482, 13, 72, 65483, 13, 72, 65484, 13, 72, 65485, 13, 72, 65486, 13, 72, 65487, 13, 73, 65472, 13, 73, 65473, 13, 73, 65474, 13, 73, 65475, 13, 73, 65476, 13, 73, 65477, 13, 73, 65478, 13, 73, 65479, 13, 73, 65480, 13, 73, 65481, 13, 73, 65482, 13, 73, 65483, 13, 73, 65484, 13, 73, 65485, 13, 73, 65486, 13, 73, 65487, 13, 74, 65472, 13, 74, 65473, 13, 74, 65474, 13, 74, 65475, 13, 74, 65476, 13, 74, 65477, 13, 74, 65478, 13, 74, 65479, 13, 74, 65480, 13, 74, 65481, 13, 74, 65482, 13, 74, 65483, 13, 74, 65484, 13, 74, 65485, 13, 74, 65486, 13, 74, 65487, 13, 75, 65472, 13, 75, 65473, 13, 75, 65474, 13, 75, 65475, 13, 75, 65476, 13, 75, 65477, 13, 75, 65478, 13, 75, 65479, 13, 75, 65480, 13, 75, 65481, 13, 75, 65482, 13, 75, 65483, 13, 75, 65484, 13, 75, 65485, 13, 75, 65486, 13, 75, 65487, 13, 76, 65472, 13, 76, 65473, 13, 76, 65474, 13, 76, 65475, 13, 76, 65476, 13, 76, 65477, 13, 76, 65478, 13, 76, 65479, 13, 76, 65480, 13, 76, 65481, 13, 76, 65482, 13, 76, 65483, 13, 76, 65484, 13, 76, 65485, 13, 76, 65486, 13, 76, 65487, 13, 77, 65472, 13, 77, 65473, 13, 77, 65474, 13, 77, 65475, 13, 77, 65476, 13, 77, 65477, 13, 77, 65478, 13, 77, 65479, 13, 77, 65480, 13, 77, 65481, 13, 77, 65482, 13, 77, 65483, 13, 77, 65484, 13, 77, 65485, 13, 77, 65486, 13, 77, 65487, 13, 78, 65472, 13, 78, 65473, 13, 78, 65474, 13, 78, 65475, 13, 78, 65476, 13, 78, 65477, 13, 78, 65478, 13, 78, 65479, 13, 78, 65480, 13, 78, 65481, 13, 78, 65482, 13, 78, 65483, 13, 78, 65484, 13, 78, 65485, 13, 78, 65486, 13, 78, 65487, 13, 79, 65472, 13, 79, 65473, 13, 79, 65474, 13, 79, 65475, 13, 79, 65476, 13, 79, 65477, 13, 79, 65478, 13, 79, 65479, 13, 79, 65480, 13, 79, 65481, 13, 79, 65482, 13, 79, 65483, 13, 79, 65484, 13, 79, 65485, 13, 79, 65486, 13, 79, 65487, 13, 80, 65472, 13, 80, 65473, 13, 80, 65474, 13, 80, 65475, 13, 80, 65476, 13, 80, 65477, 13, 80, 65478, 13, 80, 65479, 13, 80, 65480, 13, 80, 65481, 13, 80, 65482, 13, 80, 65483, 13, 80, 65484, 13, 80, 65485, 13, 80, 65486, 13, 80, 65487, 13, 81, 65472, 13, 81, 65473, 13, 81, 65474, 13, 81, 65475, 13, 81, 65476, 13, 81, 65477, 13, 81, 65478, 13, 81, 65479, 13, 81, 65480, 13, 81, 65481, 13, 81, 65482, 13, 81, 65483, 13, 81, 65484, 13, 81, 65485, 13, 81, 65486, 13, 81, 65487, 13, 82, 65472, 13, 82, 65473, 13, 82, 65474, 13, 82, 65475, 13, 82, 65476, 13, 82, 65477, 13, 82, 65478, 13, 82, 65479, 13, 82, 65480, 13, 82, 65481, 13, 82, 65482, 13, 82, 65483, 13, 82, 65484, 13, 82, 65485, 13, 82, 65486, 13, 82, 65487, 13, 83, 65472, 13, 83, 65473, 13, 83, 65474, 13, 83, 65475, 13, 83, 65476, 13, 83, 65477, 13, 83, 65478, 13, 83, 65479, 13, 83, 65480, 13, 83, 65481, 13, 83, 65482, 13, 83, 65483, 13, 83, 65484, 13, 83, 65485, 13, 83, 65486, 13, 83, 65487, 13, 84, 65472, 13, 84, 65473, 13, 84, 65474, 13, 84, 65475, 13, 84, 65476, 13, 84, 65477, 13, 84, 65478, 13, 84, 65479, 13, 84, 65480, 13, 84, 65481, 13, 84, 65482, 13, 84, 65483, 13, 84, 65484, 13, 84, 65485, 13, 84, 65486, 13, 84, 65487, 13, 85, 65472, 13, 85, 65473, 13, 85, 65474, 13, 85, 65475, 13, 85, 65476, 13, 85, 65477, 13, 85, 65478, 13, 85, 65479, 13, 85, 65480, 13, 85, 65481, 13, 85, 65482, 13, 85, 65483, 13, 85, 65484, 13, 85, 65485, 13, 85, 65486, 13, 85, 65487, 13, 86, 65472, 13, 86, 65473, 13, 86, 65474, 13, 86, 65475, 13, 86, 65476, 13, 86, 65477, 13, 86, 65478, 13, 86, 65479, 13, 86, 65480, 13, 86, 65481, 13, 86, 65482, 13, 86, 65483, 13, 86, 65484, 13, 86, 65485, 13, 86, 65486, 13, 86, 65487, 13, 87, 65472, 13, 87, 65473, 13, 87, 65474, 13, 87, 65475, 13, 87, 65476, 13, 87, 65477, 13, 87, 65478, 13, 87, 65479, 13, 87, 65480, 13, 87, 65481, 13, 87, 65482, 13, 87, 65483, 13, 87, 65484, 13, 87, 65485, 13, 87, 65486, 13, 87, 65487, 13, 88, 65472, 13, 88, 65473, 13, 88, 65474, 13, 88, 65475, 13, 88, 65476, 13, 88, 65477, 13, 88, 65478, 13, 88, 65479, 13, 88, 65480, 13, 88, 65481, 13, 88, 65482, 13, 88, 65483, 13, 88, 65484, 13, 88, 65485, 13, 88, 65486, 13, 88, 65487, 13, 89, 65472, 13, 89, 65473, 13, 89, 65474, 13, 89, 65475, 13, 89, 65476, 13, 89, 65477, 13, 89, 65478, 13, 89, 65479, 13, 89, 65480, 13, 89, 65481, 13, 89, 65482, 13, 89, 65483, 13, 89, 65484, 13, 89, 65485, 13, 89, 65486, 13, 89, 65487, 13, 90, 65472, 13, 90, 65473, 13, 90, 65474, 13, 90, 65475, 13, 90, 65476, 13, 90, 65477, 13, 90, 65478, 13, 90, 65479, 13, 90, 65480, 13, 90, 65481, 13, 90, 65482, 13, 90, 65483, 13, 90, 65484, 13, 90, 65485, 13, 90, 65486, 13, 90, 65487, 13, 91, 65472, 13, 91, 65473, 13, 91, 65474, 13, 91, 65475, 13, 91, 65476, 13, 91, 65477, 13, 91, 65478, 13, 91, 65479, 13, 91, 65480, 13, 91, 65481, 13, 91, 65482, 13, 91, 65483, 13, 91, 65484, 13, 91, 65485, 13, 91, 65486, 13, 91, 65487, 13, 92, 65472, 13, 92, 65473, 13, 92, 65474, 13, 92, 65475, 13, 92, 65476, 13, 92, 65477, 13, 92, 65478, 13, 92, 65479, 13, 92, 65480, 13, 92, 65481, 13, 92, 65482, 13, 92, 65483, 13, 92, 65484, 13, 92, 65485, 13, 92, 65486, 13, 92, 65487, 13, 93, 65472, 13, 93, 65473, 13, 93, 65474, 13, 93, 65475, 13, 93, 65476, 13, 93, 65477, 13, 93, 65478, 13, 93, 65479, 13, 93, 65480, 13, 93, 65481, 13, 93, 65482, 13, 93, 65483, 13, 93, 65484, 13, 93, 65485, 13, 93, 65486, 13, 93, 65487, 13, 94, 65472, 13, 94, 65473, 13, 94, 65474, 13, 94, 65475, 13, 94, 65476, 13, 94, 65477, 13, 94, 65478, 13, 94, 65479, 13, 94, 65480, 13, 94, 65481, 13, 94, 65482, 13, 94, 65483, 13, 94, 65484, 13, 94, 65485, 13, 94, 65486, 13, 94, 65487, 13, 95, 65472, 13, 95, 65473, 13, 95, 65474, 13, 95, 65475, 13, 95, 65476, 13, 95, 65477, 13, 95, 65478, 13, 95, 65479, 13, 95, 65480, 13, 95, 65481, 13, 95, 65482, 13, 95, 65483, 13, 95, 65484, 13, 95, 65485, 13, 95, 65486, 13, 95, 65487, 13, 96, 65472, 13, 96, 65473, 13, 96, 65474, 13, 96, 65475, 13, 96, 65476, 13, 96, 65477, 13, 96, 65478, 13, 96, 65479, 13, 96, 65480, 13, 96, 65481, 13, 96, 65482, 13, 96, 65483, 13, 96, 65484, 13, 96, 65485, 13, 96, 65486, 13, 96, 65487, 13, 9, 65521, 13, 10, 65521, 13, 24, 1, 27, 65531, 38, 13, 65532, 38, 13, 65533, 38, 13, 65531, 36, 13, 65530, 37, 13, 65530, 39, 13, 65531, 39, 13, 65532, 37, 13, 65534, 37, 13, 65535, 37, 13, 65535, 36, 13, 0, 36, 13, 65535, 35, 13, 65535, 34, 13, 0, 33, 13, 65535, 33, 13, 0, 35, 13, 65534, 33, 13, 65533, 33, 13, 65532, 33, 13, 65531, 33, 13, 65530, 33, 13, 65530, 34, 13, 65530, 35, 13, 65531, 35, 13, 65533, 35, 13, 65534, 35, 13, 65534, 34, 13, 65533, 34, 13, 65529, 33, 13, 65529, 32, 13, 65530, 32, 13, 65531, 32, 13, 65532, 32, 13, 0, 32, 13, 65533, 32, 13, 65534, 32, 13, 65535, 32, 13, 9, 35, 13, 8, 35, 13, 7, 35, 13, 8, 36, 13, 5, 34, 13, 4, 33, 13, 5, 35, 13, 6, 35, 13, 7, 36, 13, 6, 36, 13, 4, 34, 13, 3, 37, 13, 4, 37, 13, 3, 39, 13, 3, 40, 13, 3, 38, 13, 4, 40, 13, 65570, 65508, 13, 65571, 65508, 13, 65570, 65507, 13, 65571, 65507, 13) +"cells": PackedInt32Array(1, 65534, 655374, 1, 65531, 655374, 4, 65534, 655374, 4, 65531, 655374, 65534, 1, 655374, 1, 1, 655374, 4, 1, 655374, 7, 1, 655374, 7, 65534, 655374, 7, 65531, 655374, 7, 65528, 655374, 4, 65528, 13, 13, 65534, 13, 13, 65531, 13, 13, 65528, 13, 65531, 65528, 1048590, 65531, 65531, 1048590, 65531, 65534, 1048590, 65531, 1, 1048590, 13, 65525, 13, 65531, 4, 1048590, 65534, 4, 1048590, 1, 4, 1048590, 4, 4, 1048590, 7, 4, 1048590, 65541, 65527, 9, 131066, 65529, 1441801, 131066, 4, 1441801, 131068, 5, 655369, 131071, 5, 655369, 65538, 5, 655369, 65541, 5, 655369, 65543, 5, 9, 65544, 4, 1441801, 65544, 1, 1441801, 15, 65521, 13, 15, 65522, 13, 15, 65523, 13, 15, 65524, 13, 15, 65525, 13, 15, 65526, 13, 16, 65527, 13, 16, 65528, 13, 15, 65528, 13, 15, 65529, 13, 15, 65530, 13, 65534, 65528, 13, 65534, 65529, 13, 65534, 65530, 13, 65534, 65531, 13, 65534, 65532, 13, 65534, 65533, 13, 65534, 65534, 13, 65534, 65535, 13, 65535, 65535, 13, 65535, 65534, 13, 65535, 65533, 13, 65535, 65532, 13, 65535, 65531, 13, 65535, 65530, 13, 65535, 65529, 13, 65535, 65528, 13, 65535, 65527, 13, 65534, 65527, 13, 65533, 65527, 13, 65533, 65526, 13, 65532, 65528, 13, 65533, 65528, 13, 0, 65528, 13, 0, 65527, 13, 1, 65527, 13, 1, 65528, 13, 2, 65528, 13, 3, 65528, 13, 5, 65528, 13, 12, 65521, 13, 12, 65522, 13, 12, 65523, 13, 12, 65524, 13, 12, 65525, 13, 12, 65526, 13, 12, 65527, 13, 12, 65528, 13, 12, 65529, 13, 12, 65530, 13, 12, 65531, 13, 12, 65532, 13, 12, 65533, 13, 12, 65534, 13, 12, 65535, 13, 13, 65521, 13, 13, 65522, 13, 13, 65523, 13, 13, 65524, 13, 13, 65526, 13, 13, 65527, 13, 13, 65529, 13, 13, 65530, 13, 13, 65532, 13, 13, 65533, 13, 13, 65535, 13, 14, 65521, 13, 14, 65522, 13, 14, 65523, 13, 14, 65524, 13, 14, 65525, 13, 14, 65526, 13, 14, 65527, 13, 14, 65528, 13, 14, 65529, 13, 14, 65530, 13, 14, 65531, 13, 14, 65532, 13, 14, 65533, 13, 14, 65534, 13, 14, 65535, 13, 15, 65527, 13, 15, 65531, 13, 15, 65532, 13, 15, 65533, 13, 15, 65534, 13, 15, 65535, 13, 16, 65521, 13, 16, 65522, 13, 16, 65523, 13, 16, 65524, 13, 16, 65525, 13, 16, 65526, 13, 16, 65529, 13, 16, 65530, 13, 16, 65531, 13, 16, 65532, 13, 16, 65533, 13, 16, 65534, 13, 16, 65535, 13, 17, 65521, 13, 17, 65522, 13, 17, 65523, 13, 17, 65524, 13, 17, 65525, 13, 17, 65526, 13, 17, 65527, 13, 17, 65528, 13, 17, 65529, 13, 17, 65530, 13, 17, 65531, 13, 17, 65532, 13, 17, 65533, 13, 17, 65534, 13, 17, 65535, 13, 18, 65521, 13, 18, 65522, 13, 18, 65523, 13, 18, 65524, 13, 18, 65525, 13, 18, 65526, 13, 18, 65527, 13, 18, 65528, 13, 18, 65529, 13, 18, 65530, 13, 18, 65531, 13, 18, 65532, 13, 18, 65533, 13, 18, 65534, 13, 18, 65535, 13, 19, 65521, 13, 19, 65522, 13, 19, 65523, 13, 19, 65524, 13, 19, 65525, 13, 19, 65526, 13, 19, 65527, 13, 19, 65528, 13, 19, 65529, 13, 19, 65530, 13, 19, 65531, 13, 19, 65532, 13, 19, 65533, 13, 19, 65534, 13, 19, 65535, 13, 20, 65521, 13, 20, 65522, 13, 20, 65523, 13, 20, 65524, 13, 20, 65525, 13, 20, 65526, 13, 20, 65527, 13, 20, 65528, 13, 20, 65529, 13, 20, 65530, 13, 20, 65531, 13, 20, 65532, 13, 20, 65533, 13, 20, 65534, 13, 20, 65535, 13, 21, 65521, 13, 21, 65522, 13, 21, 65523, 13, 21, 65524, 13, 21, 65525, 13, 21, 65526, 13, 21, 65527, 13, 21, 65528, 13, 21, 65529, 13, 21, 65530, 13, 21, 65531, 13, 21, 65532, 13, 21, 65533, 13, 21, 65534, 13, 21, 65535, 13, 22, 65521, 13, 22, 65522, 13, 22, 65523, 13, 22, 65524, 13, 22, 65525, 13, 22, 65526, 13, 22, 65527, 13, 22, 65528, 13, 22, 65529, 13, 22, 65530, 13, 22, 65531, 13, 22, 65532, 13, 22, 65533, 13, 22, 65534, 13, 22, 65535, 13, 23, 65521, 13, 23, 65522, 13, 23, 65523, 13, 23, 65524, 13, 23, 65525, 13, 23, 65526, 13, 23, 65527, 13, 23, 65528, 13, 23, 65529, 13, 23, 65530, 13, 23, 65531, 13, 23, 65532, 13, 23, 65533, 13, 23, 65534, 13, 23, 65535, 13, 24, 65521, 13, 24, 65522, 13, 24, 65523, 13, 24, 65524, 13, 24, 65525, 13, 24, 65526, 13, 24, 65527, 13, 24, 65528, 13, 24, 65529, 13, 24, 65530, 13, 24, 65531, 13, 24, 65532, 13, 24, 65533, 13, 24, 65535, 13, 25, 65521, 13, 25, 65522, 13, 25, 65523, 13, 25, 65524, 13, 25, 65525, 13, 25, 65526, 13, 25, 65527, 13, 25, 65528, 13, 25, 65529, 13, 25, 65530, 13, 25, 65531, 13, 25, 65532, 13, 25, 65533, 13, 25, 65534, 13, 25, 65535, 13, 26, 65521, 13, 26, 65522, 13, 26, 65523, 13, 26, 65524, 13, 26, 65525, 13, 26, 65526, 13, 26, 65527, 13, 26, 65528, 13, 26, 65529, 13, 26, 65530, 13, 26, 65532, 13, 26, 65533, 13, 26, 65534, 13, 26, 65535, 13, 27, 65521, 13, 27, 65522, 13, 27, 65523, 13, 27, 65524, 13, 27, 65525, 13, 27, 65526, 13, 27, 65527, 13, 27, 65528, 13, 27, 65529, 13, 27, 65530, 13, 27, 65531, 13, 27, 65532, 13, 27, 65533, 13, 27, 65534, 13, 27, 65535, 13, 28, 65521, 13, 28, 65522, 13, 28, 65523, 13, 28, 65524, 13, 28, 65525, 13, 28, 65526, 13, 28, 65527, 13, 28, 65528, 13, 28, 65529, 13, 28, 65531, 13, 28, 65532, 13, 28, 65533, 13, 28, 65534, 13, 28, 65535, 13, 29, 65521, 13, 29, 65522, 13, 29, 65523, 13, 29, 65524, 13, 29, 65525, 13, 29, 65526, 13, 29, 65527, 13, 29, 65529, 13, 29, 65530, 13, 29, 65531, 13, 29, 65532, 13, 29, 65533, 13, 29, 65534, 13, 29, 65535, 13, 30, 65521, 13, 30, 65522, 13, 30, 65523, 13, 30, 65524, 13, 30, 65525, 13, 30, 65526, 13, 30, 65528, 13, 30, 65529, 13, 30, 65530, 13, 30, 65531, 13, 30, 65532, 13, 30, 65533, 13, 30, 65534, 13, 30, 65535, 13, 31, 65521, 13, 31, 65522, 13, 31, 65523, 13, 31, 65524, 13, 31, 65525, 13, 31, 65526, 13, 31, 65527, 13, 31, 65528, 13, 31, 65529, 13, 31, 65530, 13, 31, 65531, 13, 31, 65532, 13, 31, 65533, 13, 31, 65534, 13, 31, 65535, 13, 0, 65517, 13, 65535, 65517, 13, 131067, 65532, 655377, 131066, 65532, 27, 131066, 65533, 27, 131067, 65533, 655377, 131066, 65534, 27, 131067, 65535, 655377, 131066, 0, 27, 131067, 1, 655377, 65539, 65528, 655377, 65553, 65519, 27, 65554, 65519, 27, 65555, 65519, 27, 65553, 65520, 27, 65554, 65525, 27, 65554, 65526, 27, 65554, 65527, 27, 65554, 65528, 27, 65554, 65529, 27, 65555, 65529, 27, 65556, 65529, 27, 65556, 65528, 27, 65555, 65528, 27, 65553, 65527, 27, 131066, 65531, 27, 131066, 65530, 27, 131066, 65535, 27, 11, 65520, 13, 10, 65520, 13, 9, 65520, 13, 9, 65519, 13, 9, 65518, 13, 9, 65517, 13, 10, 65518, 13, 11, 65518, 13, 11, 65519, 13, 12, 65519, 13, 12, 65518, 13, 13, 65518, 13, 14, 65518, 13, 13, 65519, 13, 14, 65519, 13, 8, 65517, 13, 7, 65517, 13, 7, 65516, 13, 6, 65517, 13, 5, 65517, 13, 5, 65516, 13, 4, 65516, 13, 4, 65515, 13, 4, 65514, 13, 4, 65517, 13, 0, 65518, 13, 0, 65516, 13, 0, 65515, 13, 4, 65513, 13, 5, 65513, 13, 6, 65513, 13, 7, 65513, 13, 8, 65513, 13, 8, 65514, 13, 9, 65514, 13, 7, 65514, 13, 6, 65514, 13, 5, 65514, 13, 5, 65515, 13, 6, 65515, 13, 7, 65515, 13, 8, 65515, 13, 9, 65515, 13, 10, 65515, 13, 11, 65515, 13, 11, 65516, 13, 9, 65516, 13, 10, 65516, 13, 11, 65517, 13, 12, 65517, 13, 13, 65517, 13, 13, 65516, 13, 14, 65516, 13, 14, 65517, 13, 15, 65519, 13, 15, 65520, 13, 16, 65519, 13, 16, 65518, 13, 16, 65517, 13, 16, 65516, 13, 16, 65515, 13, 15, 65515, 13, 15, 65514, 13, 14, 65515, 13, 15, 65517, 13, 15, 65516, 13, 14, 65514, 13, 13, 65513, 13, 12, 65513, 13, 12, 65514, 13, 11, 65514, 13, 10, 65513, 13, 9, 65512, 13, 9, 65511, 13, 8, 65511, 13, 7, 65512, 13, 9, 65513, 13, 11, 65513, 13, 13, 65514, 13, 13, 65515, 13, 12, 65515, 13, 12, 65512, 13, 11, 65512, 13, 11, 65511, 13, 10, 65511, 13, 7, 65511, 13, 6, 65511, 13, 5, 65510, 13, 4, 65511, 13, 3, 65511, 13, 3, 65512, 13, 4, 65512, 13, 5, 65512, 13, 6, 65512, 13, 65535, 65518, 13, 65535, 65519, 13, 65534, 65519, 13, 65534, 65518, 13, 65534, 65517, 13, 65531, 65519, 13, 65532, 65519, 13, 65532, 65518, 13, 65533, 65518, 13, 65534, 65516, 13, 65534, 65515, 13, 65535, 65515, 13, 65535, 65514, 13, 65534, 65514, 13, 65532, 65515, 13, 65532, 65516, 13, 65531, 65516, 13, 65531, 65517, 13, 65530, 65517, 13, 65529, 65518, 13, 65528, 65518, 13, 65528, 65519, 13, 65529, 65519, 13, 65530, 65518, 13, 65532, 65517, 13, 65530, 65516, 13, 65531, 65514, 13, 65533, 65513, 13, 65529, 65514, 13, 65528, 65515, 13, 65528, 65516, 13, 65528, 65517, 13, 65527, 65518, 13, 65527, 65517, 13, 65528, 65514, 13, 65527, 65513, 13, 65526, 65513, 13, 65526, 65514, 13, 65525, 65514, 13, 65525, 65515, 13, 65525, 65516, 13, 65525, 65517, 13, 65525, 65518, 13, 65526, 65519, 13, 65526, 65520, 13, 65526, 65521, 13, 65526, 65522, 13, 65526, 65524, 13, 65526, 65525, 13, 65526, 65518, 13, 65526, 65517, 13, 65526, 65516, 13, 65526, 65515, 13, 65525, 65513, 13, 65525, 65519, 13, 65525, 65520, 13, 65525, 65521, 13, 65525, 65522, 13, 65525, 65523, 13, 65524, 65523, 13, 65524, 65524, 13, 65525, 65524, 13, 65525, 65525, 13, 65525, 65526, 13, 65526, 65526, 13, 65524, 65526, 13, 65524, 65525, 13, 65523, 65524, 27, 65523, 65523, 13, 65523, 65522, 13, 65522, 65521, 13, 65522, 65520, 13, 65522, 65519, 13, 65522, 65518, 13, 65523, 65518, 27, 65523, 65517, 13, 65523, 65516, 13, 65523, 65515, 13, 65524, 65515, 13, 65524, 65514, 13, 65524, 65513, 13, 65523, 65514, 13, 65522, 65514, 13, 65522, 65515, 13, 65522, 65516, 13, 65522, 65517, 13, 65523, 65519, 27, 65523, 65520, 13, 65523, 65521, 13, 65522, 65513, 13, 65522, 65512, 13, 65521, 65512, 13, 65523, 65512, 13, 65523, 65511, 13, 65524, 65511, 13, 65525, 65511, 13, 65526, 65511, 13, 65527, 65511, 13, 65529, 65512, 13, 65535, 65512, 13, 1, 65513, 13, 0, 65514, 13, 65528, 65512, 13, 65527, 65512, 13, 65527, 65510, 13, 65528, 65510, 13, 65532, 65511, 13, 65533, 65511, 13, 0, 65512, 13, 1, 65512, 13, 3, 65513, 13, 3, 65514, 13, 65531, 65511, 13, 65530, 65511, 13, 65530, 65512, 13, 65532, 65513, 13, 65533, 65514, 13, 65536, 65514, 27, 65537, 65514, 27, 65538, 65514, 27, 65538, 65515, 27, 65539, 65515, 27, 65537, 65515, 27, 65536, 65513, 27, 131071, 65512, 27, 131071, 65513, 27, 65536, 65512, 27, 65537, 65511, 27, 65537, 65512, 27, 65538, 65512, 27, 65537, 65513, 27, 65538, 65513, 27, 65539, 65513, 27, 65539, 65512, 27, 65539, 65511, 27, 65539, 65510, 27, 65538, 65510, 27, 65537, 65510, 27, 65536, 65510, 27, 131071, 65510, 27, 131070, 65510, 27, 131070, 65511, 27, 131071, 65511, 27, 65536, 65511, 27, 196608, 65512, 27, 196609, 65513, 27, 196610, 65514, 27, 196609, 65512, 27, 196610, 65512, 27, 196610, 65513, 27, 196608, 65511, 27, 196608, 65510, 27, 196608, 65509, 27, 262142, 65509, 27, 262143, 65509, 27, 196609, 65509, 27, 196609, 65510, 27, 196610, 65510, 27, 196610, 65511, 27, 196609, 65511, 27, 196610, 65509, 27, 196610, 65508, 27, 196609, 65508, 27, 196608, 65508, 27, 262143, 65508, 27, 262142, 65507, 27, 262142, 65508, 27, 65540, 65516, 27, 65540, 65517, 27, 65541, 65517, 27, 65539, 65514, 27, 65539, 65527, 27, 65538, 65527, 27, 0, 65519, 13, 4, 65520, 13, 5, 65520, 13, 6, 65520, 13, 7, 65520, 13, 8, 65520, 13, 8, 65519, 13, 7, 65519, 13, 6, 65519, 13, 5, 65519, 13, 4, 65518, 13, 3, 65518, 13, 2, 65518, 13, 2, 65517, 13, 2, 65516, 13, 2, 65515, 13, 3, 65515, 13, 3, 65516, 13, 1, 65517, 13, 1, 65518, 13, 4, 65519, 13, 3, 65519, 13, 2, 65519, 13, 1, 65519, 13, 3, 65520, 13, 65533, 65519, 13, 1, 65525, 13, 2, 65525, 13, 4, 65525, 13, 3, 65525, 13, 5, 65525, 13, 6, 65525, 13, 7, 65525, 13, 7, 65526, 13, 8, 65526, 13, 8, 65525, 13, 0, 65525, 13, 0, 65526, 13, 65535, 65525, 13, 65534, 65525, 13, 65533, 65524, 13, 65533, 65525, 13, 65532, 65525, 13, 65532, 65526, 13, 65531, 65526, 13, 65530, 65526, 13, 65530, 65527, 13, 65531, 65527, 13, 11, 65521, 13, 8, 65521, 13, 7, 65521, 13, 65534, 65523, 13, 65533, 65523, 13, 65532, 65523, 13, 65532, 65524, 13, 65531, 65524, 13, 65535, 65524, 13, 0, 65524, 13, 0, 65523, 13, 65535, 65523, 13, 65531, 65523, 13, 65531, 65525, 13, 65530, 65525, 13, 65530, 65524, 13, 65530, 65523, 13, 65531, 65518, 13, 65530, 65519, 13, 65527, 65519, 13, 65526, 65523, 13, 65527, 65509, 13, 65526, 65509, 13, 65525, 65509, 13, 65524, 65509, 13, 65526, 65510, 13, 65525, 65510, 13, 65524, 65510, 13, 65523, 65510, 13, 65523, 65509, 13, 65522, 65509, 13, 65521, 65509, 13, 65521, 65510, 13, 65520, 65510, 13, 65520, 65511, 13, 65521, 65511, 13, 65519, 65512, 13, 65519, 65513, 13, 65519, 65514, 13, 65519, 65515, 13, 65519, 65516, 13, 65520, 65516, 13, 65520, 65515, 13, 65520, 65514, 13, 65520, 65513, 13, 65520, 65512, 13, 65519, 65517, 13, 65520, 65517, 13, 65520, 65518, 13, 65520, 65519, 13, 65520, 65520, 13, 65520, 65521, 13, 65520, 65522, 13, 65520, 65523, 13, 65521, 65523, 13, 65521, 65524, 13, 65522, 65522, 13, 65521, 65521, 13, 65521, 65520, 13, 65521, 65522, 13, 65522, 65524, 13, 65523, 65526, 13, 65522, 65526, 13, 65521, 65526, 13, 65521, 65525, 13, 65520, 65525, 13, 65520, 65524, 13, 65519, 65525, 13, 65519, 65526, 13, 65520, 65526, 13, 65520, 65527, 13, 65522, 65527, 13, 65523, 65527, 13, 65524, 65527, 13, 65525, 65527, 13, 65526, 65527, 13, 65525, 65528, 13, 65524, 65528, 13, 65523, 65528, 13, 65522, 65528, 13, 65521, 65528, 13, 65520, 65528, 13, 65519, 65528, 13, 65519, 65527, 13, 65521, 65527, 13, 65526, 65528, 13, 65519, 65524, 13, 65519, 65523, 13, 65519, 65522, 13, 65519, 65521, 13, 65519, 65520, 13, 65519, 65519, 13, 65519, 65518, 13, 65519, 65511, 13, 65519, 65510, 13, 65519, 65509, 13, 65520, 65509, 13, 65532, 65510, 13, 65518, 65509, 13, 65517, 65510, 13, 65517, 65511, 13, 65517, 65512, 13, 65517, 65513, 13, 65517, 65514, 13, 65516, 65515, 13, 65516, 65516, 13, 65516, 65517, 13, 65516, 65518, 13, 65516, 65519, 13, 65516, 65520, 13, 65516, 65521, 13, 65516, 65522, 13, 65517, 65523, 13, 65517, 65524, 13, 65518, 65525, 13, 65518, 65526, 13, 65517, 65526, 13, 65517, 65527, 13, 65517, 65515, 13, 65517, 65516, 13, 65517, 65517, 13, 65517, 65518, 13, 65517, 65519, 13, 65517, 65520, 13, 65517, 65521, 13, 65517, 65522, 27, 65518, 65523, 13, 65518, 65524, 13, 65514, 65511, 13, 65514, 65512, 13, 65515, 65513, 13, 65515, 65514, 13, 65515, 65515, 13, 65517, 65525, 13, 65518, 65508, 13, 65518, 65511, 13, 65518, 65514, 13, 65518, 65516, 13, 65518, 65517, 13, 65518, 65519, 13, 65518, 65520, 13, 65518, 65521, 13, 65518, 65522, 13, 65516, 65525, 13, 65516, 65524, 13, 65516, 65523, 13, 65515, 65523, 27, 65515, 65522, 13, 65514, 65520, 13, 65514, 65519, 13, 65514, 65518, 13, 65514, 65517, 13, 65513, 65517, 13, 65513, 65518, 13, 65513, 65519, 13, 65513, 65520, 13, 65513, 65521, 13, 65514, 65507, 13, 65514, 65508, 13, 65514, 65509, 13, 65514, 65510, 13, 65514, 65513, 13, 65516, 65512, 13, 65515, 65507, 13, 65515, 65508, 13, 65515, 65509, 13, 65515, 65510, 13, 65514, 65514, 27, 65514, 65515, 13, 65515, 65519, 13, 65515, 65520, 13, 65515, 65521, 13, 65510, 65507, 13, 65512, 65509, 13, 65512, 65515, 13, 65513, 65514, 13, 65515, 65512, 13, 65515, 65516, 13, 65515, 65517, 13, 65515, 65518, 13, 65513, 65515, 13, 65513, 65516, 13, 65513, 65522, 13, 65513, 65523, 13, 65513, 65524, 13, 65513, 65525, 13, 65513, 65526, 13, 65513, 65527, 13, 65513, 65528, 13, 65514, 65516, 13, 65514, 65521, 13, 65514, 65522, 13, 65514, 65523, 27, 65514, 65524, 13, 65514, 65525, 13, 65514, 65526, 13, 65514, 65527, 13, 65514, 65528, 13, 65515, 65524, 13, 65515, 65525, 13, 65515, 65526, 13, 65515, 65527, 13, 65515, 65528, 13, 65516, 65514, 13, 65516, 65526, 13, 65516, 65527, 13, 65516, 65528, 13, 65517, 65528, 13, 65518, 65515, 13, 65518, 65518, 13, 65518, 65527, 13, 65518, 65528, 13, 65509, 65506, 13, 65509, 65507, 13, 65509, 65508, 13, 65509, 65509, 13, 65509, 65510, 13, 65509, 65511, 13, 65509, 65512, 13, 65509, 65513, 13, 65509, 65514, 13, 65509, 65515, 13, 65509, 65516, 13, 65509, 65517, 13, 65509, 65518, 13, 65509, 65519, 13, 65509, 65520, 13, 65509, 65521, 13, 65509, 65522, 13, 65509, 65523, 13, 65509, 65524, 13, 65509, 65525, 13, 65509, 65526, 13, 65509, 65527, 13, 65509, 65528, 13, 65510, 65506, 13, 65510, 65508, 13, 65510, 65509, 13, 65510, 65510, 13, 65510, 65511, 13, 65510, 65512, 13, 65510, 65513, 13, 65510, 65514, 13, 65510, 65515, 13, 65510, 65516, 13, 65510, 65517, 13, 65510, 65518, 13, 65510, 65519, 13, 65510, 65520, 13, 65510, 65521, 13, 65510, 65522, 13, 65510, 65523, 13, 65510, 65524, 13, 65510, 65525, 13, 65510, 65526, 13, 65510, 65527, 13, 65510, 65528, 13, 65511, 65506, 13, 65511, 65507, 13, 65511, 65508, 13, 65511, 65509, 13, 65511, 65510, 13, 65511, 65511, 13, 65511, 65512, 13, 65511, 65514, 13, 65511, 65515, 13, 65511, 65516, 13, 65511, 65517, 13, 65511, 65518, 13, 65511, 65519, 13, 65511, 65520, 13, 65511, 65521, 13, 65511, 65522, 13, 65511, 65523, 13, 65511, 65524, 13, 65511, 65525, 13, 65511, 65526, 13, 65511, 65527, 13, 65511, 65528, 13, 65512, 65506, 13, 65512, 65507, 13, 65512, 65508, 13, 65512, 65510, 13, 65512, 65511, 13, 65512, 65512, 13, 65512, 65513, 13, 65512, 65514, 13, 65512, 65516, 13, 65512, 65517, 13, 65512, 65518, 13, 65512, 65519, 13, 65512, 65520, 13, 65512, 65521, 13, 65512, 65522, 13, 65512, 65523, 13, 65512, 65524, 13, 65512, 65525, 13, 65512, 65526, 13, 65512, 65527, 13, 65512, 65528, 13, 65513, 65506, 13, 65513, 65507, 13, 65513, 65508, 13, 65513, 65509, 13, 65513, 65510, 13, 65513, 65511, 13, 65513, 65512, 13, 65513, 65513, 13, 65514, 65506, 13, 65515, 65506, 13, 65515, 65511, 13, 65516, 65506, 13, 65516, 65507, 13, 65516, 65508, 13, 65516, 65509, 13, 65516, 65510, 13, 65516, 65511, 13, 65516, 65513, 13, 65517, 65506, 13, 65517, 65507, 13, 65517, 65508, 13, 65517, 65509, 13, 65518, 65506, 13, 65518, 65507, 13, 65518, 65510, 13, 65518, 65512, 13, 65518, 65513, 13, 65519, 65506, 13, 65519, 65507, 13, 65519, 65508, 13, 65520, 65506, 13, 65520, 65507, 13, 65520, 65508, 13, 65521, 65506, 13, 65521, 65507, 13, 65521, 65508, 13, 65521, 65513, 13, 65521, 65514, 13, 65521, 65515, 13, 65521, 65516, 13, 65521, 65517, 13, 65521, 65518, 13, 65521, 65519, 13, 65522, 65506, 13, 65522, 65507, 13, 65522, 65508, 13, 65522, 65510, 13, 65522, 65511, 13, 65522, 65523, 13, 65522, 65525, 13, 65523, 65506, 13, 65523, 65507, 13, 65523, 65508, 13, 65523, 65513, 13, 65523, 65525, 13, 65524, 65506, 13, 65524, 65507, 13, 65524, 65508, 13, 65524, 65512, 13, 65524, 65516, 13, 65524, 65517, 13, 65524, 65518, 13, 65524, 65519, 13, 65524, 65520, 13, 65524, 65521, 13, 65524, 65522, 13, 65525, 65506, 13, 65525, 65507, 13, 65525, 65508, 13, 65525, 65512, 13, 65526, 65506, 13, 65526, 65507, 27, 65526, 65508, 13, 65526, 65512, 13, 131060, 65517, 27, 131059, 65517, 27, 131058, 65517, 27, 131057, 65517, 27, 131056, 65517, 27, 131052, 65513, 27, 131051, 65513, 27, 131050, 65513, 27, 131049, 65513, 27, 131049, 65514, 27, 131049, 65515, 27, 131049, 65516, 27, 131049, 65517, 27, 131052, 65521, 27, 131052, 65522, 27, 131052, 65523, 27, 131056, 65527, 27, 131056, 65528, 27, 65519, 65529, 27, 65520, 65529, 27, 65521, 65529, 27, 131060, 65525, 27, 131047, 65527, 27, 131047, 65528, 27, 131046, 65528, 27, 65512, 65529, 27, 65513, 65529, 27, 65514, 65529, 27, 65515, 65529, 27, 65516, 65529, 27, 65517, 65529, 27, 65518, 65529, 27, 131066, 1, 27, 131066, 2, 27, 131069, 65509, 27, 131068, 65509, 27, 131067, 65509, 27, 131066, 65509, 27, 131066, 65508, 27, 131066, 65507, 27, 131066, 65506, 27, 131065, 65506, 27, 131067, 65506, 27, 131067, 65507, 27, 131068, 65507, 27, 131069, 65507, 27, 131067, 65508, 27, 131068, 65506, 27, 131068, 65505, 27, 131068, 65504, 27, 131069, 65504, 27, 131069, 65505, 27, 131070, 65505, 27, 131067, 65505, 27, 131067, 65504, 27, 131066, 65503, 27, 131065, 65503, 27, 131065, 65504, 27, 131065, 65505, 27, 131064, 65505, 27, 131064, 65506, 27, 131064, 65507, 27, 131064, 65508, 27, 131065, 65508, 27, 131063, 65508, 27, 131063, 65507, 27, 131063, 65506, 27, 131063, 65505, 27, 131063, 65504, 27, 131064, 65504, 27, 131064, 65503, 27, 131064, 65502, 27, 131063, 65503, 27, 262141, 65506, 27, 262140, 65506, 27, 262139, 65506, 27, 262139, 65505, 27, 262138, 65505, 27, 262137, 65505, 27, 262137, 65504, 27, 262137, 65503, 27, 262138, 65503, 27, 262139, 65503, 27, 262139, 65504, 27, 262140, 65504, 27, 262141, 65504, 27, 262142, 65504, 27, 262142, 65505, 27, 262143, 65505, 27, 262143, 65506, 27, 262142, 65506, 27, 262141, 65505, 27, 262140, 65505, 27, 65534, 65513, 13, 131062, 65504, 27, 131061, 65504, 27, 131061, 65505, 27, 131060, 65505, 27, 131060, 65504, 27, 131059, 65504, 27, 131058, 65504, 27, 131057, 65504, 27, 131056, 65504, 27, 131055, 65504, 27, 131054, 65504, 27, 131053, 65503, 27, 131052, 65503, 27, 131051, 65503, 27, 131051, 65504, 27, 131050, 65504, 27, 131052, 65504, 27, 131053, 65504, 27, 131049, 65504, 27, 131048, 65504, 27, 131047, 65504, 27, 131047, 65503, 27, 131046, 65504, 27, 131045, 65504, 27, 131045, 65505, 27, 131044, 65505, 27, 131043, 65505, 27, 131044, 65506, 27, 131045, 65506, 27, 131046, 65505, 27, 131047, 65505, 27, 131048, 65505, 27, 131046, 65506, 27, 131047, 65506, 27, 131042, 65505, 27, 131042, 65506, 27, 131043, 65506, 27, 131044, 65503, 27, 131043, 65503, 27, 131043, 65504, 27, 131044, 65504, 27, 131045, 65503, 27, 131045, 65502, 27, 131046, 65502, 27, 131046, 65503, 27, 131048, 65503, 27, 131049, 65503, 27, 131050, 65503, 27, 131054, 65503, 27, 131054, 65502, 27, 131055, 65502, 27, 131056, 65502, 27, 131057, 65502, 27, 131058, 65502, 27, 131059, 65502, 27, 131060, 65502, 27, 131060, 65503, 27, 131061, 65503, 27, 131062, 65503, 27, 131063, 65501, 27, 131062, 65501, 27, 131061, 65502, 27, 131053, 65502, 27, 131052, 65502, 27, 131051, 65501, 27, 131050, 65501, 27, 131049, 65501, 27, 131048, 65500, 27, 131047, 65500, 27, 131046, 65500, 27, 131046, 65501, 27, 131047, 65501, 27, 131048, 65501, 27, 131052, 65501, 27, 131055, 65503, 27, 131058, 65503, 27, 131059, 65503, 27, 131062, 65502, 27, 131063, 65502, 27, 131064, 65501, 27, 131064, 65500, 27, 131063, 65500, 27, 131062, 65500, 27, 131061, 65501, 27, 131060, 65501, 27, 131059, 65501, 27, 131058, 65501, 27, 131056, 65501, 27, 131055, 65501, 27, 131054, 65501, 27, 131053, 65501, 27, 131053, 65500, 27, 131052, 65500, 27, 131051, 65500, 27, 131050, 65500, 27, 131049, 65500, 27, 131045, 65501, 27, 131044, 65501, 27, 262116, 65502, 27, 262116, 65503, 27, 262116, 65504, 27, 262117, 65504, 27, 262118, 65504, 27, 262118, 65503, 27, 262119, 65502, 27, 262120, 65502, 27, 262120, 65503, 27, 262121, 65503, 27, 262122, 65503, 27, 262123, 65503, 27, 262124, 65503, 27, 262124, 65502, 27, 262125, 65503, 27, 262125, 65502, 27, 262126, 65502, 27, 262127, 65502, 27, 262128, 65502, 27, 262128, 65501, 27, 262129, 65502, 27, 262129, 65501, 27, 262130, 65502, 27, 262130, 65503, 27, 262131, 65503, 27, 262132, 65503, 27, 262132, 65502, 27, 262133, 65502, 27, 262134, 65502, 27, 262135, 65502, 27, 262136, 65502, 27, 262135, 65503, 27, 262136, 65503, 27, 262128, 65500, 27, 262127, 65501, 27, 262126, 65501, 27, 262125, 65501, 27, 262124, 65501, 27, 262123, 65501, 27, 262122, 65501, 27, 262121, 65502, 27, 262118, 65502, 27, 262117, 65501, 27, 262116, 65501, 27, 262117, 65502, 27, 65508, 65507, 27, 65508, 65508, 27, 65508, 65509, 27, 65508, 65510, 27, 131058, 65510, 27, 131057, 65510, 27, 65528, 65507, 13, 65528, 65508, 13, 65528, 65509, 13, 65529, 65510, 13, 65529, 65509, 13, 65529, 65508, 13, 65528, 65511, 13, 65529, 65511, 13, 65528, 65513, 13, 65508, 65524, 13, 65508, 65523, 13, 65507, 65524, 13, 65506, 65524, 13, 65505, 65524, 13, 65504, 65524, 13, 65508, 65525, 27, 65503, 65524, 13, 65507, 65507, 27, 65506, 65507, 27, 65505, 65507, 27, 65504, 65507, 13, 65501, 65504, 27, 65500, 65504, 27, 65499, 65504, 27, 65499, 65503, 27, 65498, 65503, 27, 65497, 65503, 27, 65501, 65526, 27, 65500, 65526, 27, 65499, 65526, 27, 65499, 65527, 27, 65498, 65527, 27, 65497, 65527, 27, 65496, 65527, 27, 65496, 65528, 27, 65495, 65528, 27, 65502, 65507, 27, 65503, 65507, 13, 65502, 65506, 27, 65502, 65505, 27, 65502, 65504, 27, 65499, 65502, 27, 65500, 65502, 27, 65500, 65503, 27, 65505, 65505, 27, 65505, 65506, 27, 65504, 65506, 27, 65503, 65506, 27, 65504, 65505, 27, 65504, 65504, 27, 65504, 65503, 27, 65503, 65504, 27, 65503, 65505, 27, 65502, 65503, 27, 65502, 65502, 27, 65503, 65502, 27, 65504, 65502, 27, 65505, 65502, 27, 65506, 65502, 27, 65506, 65503, 27, 65506, 65504, 27, 65505, 65504, 27, 65503, 65501, 27, 65502, 65501, 27, 65501, 65501, 27, 65500, 65501, 27, 65499, 65501, 27, 65498, 65501, 27, 65497, 65501, 27, 65496, 65501, 27, 131036, 65527, 27, 131035, 65528, 27, 131034, 65528, 27, 131033, 65528, 27, 131032, 65528, 27, 65508, 65511, 13, 65508, 65512, 13, 65508, 65513, 13, 65508, 65514, 13, 65507, 65511, 13, 65507, 65510, 13, 65507, 65509, 13, 65506, 65509, 13, 65506, 65508, 13, 65505, 65508, 13, 65504, 65508, 13, 65503, 65508, 13, 65505, 65509, 13, 65508, 65521, 13, 65508, 65522, 13, 65507, 65522, 13, 65507, 65523, 13, 65506, 65523, 13, 65505, 65523, 13, 65506, 65522, 13, 65507, 65521, 13, 65506, 65521, 13, 65522, 65529, 27, 65523, 65529, 27, 65524, 65529, 27, 65525, 65529, 27, 65526, 65529, 27, 196579, 65501, 27, 196579, 65502, 27, 196578, 65502, 27, 196578, 65503, 27, 196577, 65503, 27, 196576, 65503, 27, 196575, 65503, 27, 196574, 65503, 27, 196574, 65502, 27, 196573, 65501, 27, 196572, 65501, 27, 196571, 65501, 27, 196570, 65501, 27, 196569, 65501, 27, 196568, 65501, 27, 196572, 65502, 27, 196575, 65501, 27, 196576, 65501, 27, 196577, 65501, 27, 196577, 65500, 27, 196576, 65500, 27, 196575, 65502, 27, 196576, 65502, 27, 196573, 65502, 27, 196579, 65500, 27, 196578, 65500, 27, 196575, 65500, 27, 196574, 65500, 27, 196574, 65499, 27, 196573, 65499, 27, 196573, 65500, 27, 196572, 65500, 27, 196571, 65500, 27, 196570, 65500, 27, 196569, 65500, 27, 196568, 65500, 27, 196568, 65499, 27, 196569, 65499, 27, 196577, 65499, 27, 196576, 65499, 27, 196575, 65499, 27, 196572, 65499, 27, 196571, 65499, 27, 196570, 65499, 27, 196578, 65499, 27, 196579, 65499, 27, 196579, 65498, 27, 196580, 65498, 27, 196580, 65499, 27, 196581, 65499, 27, 196582, 65499, 27, 196583, 65499, 27, 196584, 65499, 27, 65502, 65526, 27, 65503, 65526, 27, 65504, 65526, 27, 65505, 65526, 27, 65508, 65526, 27, 65506, 65526, 27, 65508, 65527, 27, 65508, 65528, 27, 65507, 65528, 27, 65506, 65528, 27, 65505, 65528, 27, 65504, 65528, 27, 65503, 65528, 27, 65502, 65528, 27, 65501, 65528, 27, 65501, 65527, 27, 65502, 65527, 27, 65503, 65527, 27, 65504, 65527, 27, 65505, 65527, 27, 65506, 65527, 27, 131037, 65528, 27, 131038, 65528, 27, 131039, 65528, 27, 131040, 65528, 27, 131041, 65528, 27, 131042, 65528, 27, 131043, 65528, 27, 131044, 65528, 27, 131045, 65528, 27, 131045, 65527, 27, 131046, 65527, 27, 65501, 65525, 27, 65501, 65524, 27, 6, 65506, 13, 7, 65506, 13, 8, 65506, 13, 9, 65506, 13, 10, 65506, 13, 15, 65513, 13, 15, 65512, 13, 14, 65511, 13, 6, 65505, 13, 6, 65507, 13, 6, 65508, 13, 6, 65509, 13, 6, 65510, 13, 6, 65516, 13, 6, 65518, 13, 7, 65505, 13, 7, 65507, 13, 7, 65508, 13, 7, 65509, 13, 7, 65510, 13, 7, 65518, 13, 8, 65505, 13, 8, 65507, 13, 8, 65508, 13, 8, 65509, 13, 8, 65510, 13, 8, 65512, 13, 8, 65516, 13, 8, 65518, 13, 9, 65505, 13, 9, 65507, 13, 9, 65508, 13, 9, 65509, 13, 9, 65510, 13, 10, 65505, 13, 10, 65507, 13, 10, 65508, 13, 10, 65509, 13, 10, 65510, 13, 10, 65512, 13, 10, 65514, 13, 10, 65517, 13, 10, 65519, 13, 11, 65505, 13, 11, 65506, 13, 11, 65507, 13, 11, 65509, 13, 11, 65510, 13, 12, 65505, 13, 12, 65506, 13, 12, 65507, 13, 12, 65508, 13, 12, 65509, 13, 12, 65510, 13, 12, 65511, 13, 12, 65516, 13, 13, 65505, 13, 13, 65506, 13, 13, 65507, 13, 13, 65508, 13, 13, 65509, 13, 13, 65511, 13, 13, 65512, 13, 14, 65505, 13, 14, 65506, 13, 14, 65507, 13, 14, 65508, 13, 14, 65509, 13, 14, 65510, 13, 14, 65512, 13, 14, 65513, 13, 15, 65505, 13, 15, 65506, 13, 15, 65507, 13, 15, 65508, 13, 15, 65509, 13, 15, 65510, 13, 15, 65518, 13, 16, 65505, 13, 16, 65506, 13, 16, 65507, 13, 16, 65508, 13, 16, 65509, 13, 16, 65510, 13, 16, 65511, 13, 16, 65512, 13, 16, 65513, 13, 16, 65514, 13, 17, 65505, 13, 17, 65506, 13, 17, 65507, 13, 17, 65508, 13, 17, 65509, 13, 17, 65510, 13, 17, 65511, 13, 17, 65512, 13, 17, 65513, 13, 17, 65514, 13, 17, 65515, 13, 17, 65516, 13, 17, 65517, 13, 17, 65518, 13, 17, 65519, 13, 18, 65505, 13, 18, 65506, 13, 18, 65507, 13, 18, 65508, 13, 18, 65509, 13, 18, 65510, 13, 18, 65511, 13, 18, 65512, 13, 18, 65513, 13, 18, 65514, 13, 18, 65515, 13, 18, 65516, 13, 18, 65517, 13, 18, 65518, 13, 18, 65519, 13, 19, 65505, 13, 19, 65506, 13, 19, 65507, 13, 19, 65508, 13, 19, 65509, 13, 19, 65510, 13, 19, 65511, 13, 19, 65512, 13, 19, 65513, 13, 19, 65514, 13, 19, 65515, 13, 19, 65516, 13, 19, 65517, 13, 19, 65518, 13, 19, 65519, 13, 20, 65505, 13, 20, 65506, 13, 20, 65507, 13, 20, 65508, 13, 20, 65509, 13, 20, 65511, 13, 20, 65516, 13, 20, 65517, 13, 20, 65518, 13, 20, 65519, 13, 21, 65505, 13, 21, 65506, 13, 21, 65507, 13, 21, 65509, 13, 21, 65510, 13, 21, 65511, 13, 21, 65512, 13, 21, 65513, 13, 21, 65514, 13, 21, 65516, 13, 21, 65517, 13, 21, 65518, 13, 21, 65519, 13, 22, 65505, 13, 22, 65506, 13, 22, 65507, 13, 22, 65508, 13, 22, 65509, 13, 22, 65510, 13, 22, 65511, 13, 22, 65512, 13, 22, 65513, 13, 22, 65514, 13, 22, 65516, 13, 22, 65517, 13, 22, 65518, 13, 22, 65519, 13, 23, 65506, 13, 23, 65507, 13, 23, 65508, 13, 23, 65509, 13, 23, 65510, 13, 23, 65511, 13, 23, 65512, 13, 23, 65513, 13, 23, 65514, 13, 23, 65515, 13, 23, 65516, 13, 23, 65517, 13, 23, 65518, 13, 23, 65519, 13, 24, 65505, 13, 24, 65506, 13, 24, 65507, 13, 24, 65508, 13, 24, 65509, 13, 24, 65510, 13, 24, 65511, 13, 24, 65512, 13, 24, 65513, 13, 24, 65514, 13, 24, 65515, 13, 24, 65516, 13, 24, 65517, 13, 24, 65518, 13, 24, 65519, 13, 25, 65505, 13, 25, 65506, 13, 25, 65507, 13, 25, 65508, 13, 25, 65509, 13, 25, 65510, 13, 25, 65511, 13, 25, 65512, 13, 25, 65513, 13, 25, 65514, 13, 25, 65516, 13, 25, 65517, 13, 25, 65518, 13, 25, 65519, 13, 26, 65505, 13, 26, 65506, 13, 26, 65507, 13, 26, 65508, 13, 26, 65509, 13, 26, 65510, 13, 26, 65511, 13, 26, 65512, 13, 26, 65513, 13, 26, 65514, 13, 26, 65515, 13, 26, 65516, 13, 26, 65517, 13, 26, 65518, 13, 26, 65519, 13, 27, 65505, 13, 27, 65506, 13, 27, 65508, 13, 27, 65509, 13, 27, 65510, 13, 27, 65511, 13, 27, 65512, 13, 27, 65513, 13, 27, 65515, 13, 27, 65516, 13, 27, 65517, 13, 27, 65518, 13, 27, 65519, 13, 28, 65505, 13, 28, 65506, 13, 28, 65507, 13, 28, 65508, 13, 28, 65509, 13, 28, 65510, 13, 28, 65511, 13, 28, 65512, 13, 28, 65513, 13, 28, 65514, 13, 28, 65515, 13, 28, 65516, 13, 28, 65517, 13, 28, 65518, 13, 28, 65519, 13, 29, 65506, 13, 29, 65508, 13, 29, 65510, 13, 29, 65512, 13, 29, 65513, 13, 29, 65515, 13, 29, 65516, 13, 29, 65517, 13, 29, 65518, 13, 29, 65519, 13, 30, 65505, 13, 30, 65506, 13, 30, 65507, 13, 30, 65508, 13, 30, 65509, 13, 30, 65512, 13, 30, 65514, 13, 30, 65515, 13, 30, 65516, 13, 30, 65517, 13, 30, 65518, 13, 30, 65519, 13, 31, 65505, 13, 31, 65506, 13, 31, 65507, 13, 31, 65508, 13, 31, 65510, 13, 31, 65511, 13, 31, 65512, 13, 31, 65513, 13, 31, 65514, 13, 31, 65515, 13, 31, 65516, 13, 31, 65517, 13, 31, 65518, 13, 31, 65519, 13, 5, 65505, 13, 5, 65506, 13, 5, 65507, 13, 5, 65508, 13, 5, 65509, 13, 5, 65511, 13, 4, 65507, 13, 4, 65506, 13, 4, 65505, 13, 4, 65508, 13, 4, 65509, 13, 4, 65510, 13, 3, 65505, 13, 3, 65506, 13, 3, 65507, 13, 3, 65508, 13, 3, 65509, 13, 3, 65510, 13, 3, 65517, 13, 5, 65518, 13, 12, 65520, 13, 13, 65520, 13, 14, 65520, 13, 16, 65520, 13, 17, 65520, 13, 18, 65520, 13, 19, 65520, 13, 20, 65520, 13, 21, 65520, 13, 22, 65520, 13, 23, 65520, 13, 24, 65520, 13, 25, 65520, 13, 26, 65520, 13, 27, 65520, 13, 28, 65520, 13, 29, 65520, 13, 30, 65520, 13, 31, 65520, 13, 65541, 65516, 27, 65541, 65515, 27, 65540, 65515, 27, 65540, 65514, 27, 65540, 65513, 27, 65540, 65512, 27, 65541, 65511, 27, 65541, 65510, 27, 65542, 65510, 27, 65542, 65511, 27, 65541, 65512, 27, 65541, 65513, 27, 65541, 65514, 27, 65542, 65515, 27, 65542, 65514, 27, 65542, 65513, 27, 65542, 65512, 27, 65543, 65511, 27, 65543, 65510, 27, 65543, 65509, 27, 65542, 65509, 27, 65541, 65509, 27, 65540, 65509, 27, 65540, 65508, 27, 65539, 65508, 27, 65539, 65507, 27, 65540, 65507, 27, 65541, 65507, 27, 65542, 65507, 27, 65542, 65508, 27, 65543, 65508, 27, 65543, 65512, 27, 65543, 65507, 27, 65543, 65506, 27, 65542, 65506, 27, 65541, 65506, 27, 65540, 65506, 27, 65539, 65506, 27, 196611, 65514, 27, 196612, 65514, 27, 196613, 65515, 27, 196613, 65514, 27, 196613, 65513, 27, 196613, 65512, 27, 196612, 65512, 27, 196612, 65513, 27, 196611, 65512, 27, 196611, 65513, 27, 196614, 65514, 27, 196614, 65515, 27, 65542, 65517, 27, 65542, 65516, 27, 65540, 65518, 27, 65540, 65519, 27, 65540, 65520, 27, 65541, 65519, 27, 65541, 65520, 27, 65542, 65520, 27, 65542, 65519, 27, 65542, 65518, 27, 4, 65521, 27, 5, 65521, 27, 6, 65521, 27, 196614, 65516, 13, 196614, 65517, 13, 196614, 65518, 13, 196614, 65519, 13, 196613, 65516, 13, 196613, 65517, 13, 65538, 65516, 13, 65539, 65516, 13, 131053, 65505, 13, 131053, 65506, 13, 65503, 65509, 13, 65504, 65509, 13, 65506, 65510, 13, 65505, 65510, 13, 65506, 65511, 13, 65505, 65511, 13, 65504, 65511, 13, 65504, 65510, 13, 65506, 65512, 13, 65507, 65512, 13, 65533, 65516, 13, 65533, 65515, 13, 65532, 65514, 13, 65529, 65513, 13, 65527, 65514, 13, 65527, 65515, 13, 65527, 65516, 13, 65529, 65515, 13, 65529, 65516, 13, 2, 65514, 13, 1, 65514, 13, 0, 65513, 13, 65535, 65513, 13, 65534, 65512, 13, 65533, 65512, 13, 65532, 65512, 13, 65531, 65512, 13, 65531, 65513, 13, 65530, 65513, 13, 65530, 65514, 13, 65530, 65515, 13, 11, 65508, 13, 13, 65510, 13, 15, 65511, 13, 27, 65507, 13, 30, 65510, 13, 30, 65511, 13, 31, 65509, 13, 24, 65534, 13, 26, 65531, 13, 28, 65530, 13, 29, 65528, 13, 30, 65527, 13, 30, 65513, 13, 29, 65514, 13, 27, 65514, 13, 25, 65515, 13, 22, 65515, 13, 21, 65515, 13, 20, 65515, 13, 20, 65514, 13, 20, 65513, 13, 20, 65512, 13, 20, 65510, 13, 21, 65508, 13, 23, 65505, 13, 29, 65505, 13, 29, 65507, 13, 29, 65509, 13, 29, 65511, 13, 17, 2, 13, 17, 3, 13, 17, 4, 13, 17, 5, 13, 17, 6, 13, 17, 7, 13, 17, 8, 13, 17, 9, 13, 17, 10, 13, 17, 11, 13, 17, 12, 13, 17, 13, 13, 17, 14, 13, 18, 2, 13, 18, 3, 13, 18, 4, 13, 18, 5, 13, 18, 6, 13, 18, 7, 13, 18, 8, 13, 18, 9, 13, 18, 10, 13, 18, 11, 13, 18, 12, 13, 18, 13, 13, 18, 14, 13, 19, 2, 13, 19, 3, 13, 19, 4, 13, 19, 5, 13, 19, 6, 13, 19, 7, 13, 19, 8, 13, 19, 9, 13, 19, 10, 13, 19, 11, 13, 19, 12, 13, 19, 13, 13, 19, 14, 13, 20, 2, 13, 20, 3, 13, 20, 4, 13, 20, 5, 13, 20, 6, 13, 20, 7, 13, 20, 8, 13, 20, 9, 13, 20, 10, 13, 20, 11, 13, 20, 12, 13, 20, 13, 13, 20, 14, 13, 21, 2, 13, 21, 3, 13, 21, 4, 13, 21, 5, 13, 21, 6, 13, 21, 7, 13, 21, 8, 13, 21, 9, 13, 21, 10, 13, 21, 11, 13, 21, 12, 13, 21, 13, 13, 21, 14, 13, 22, 2, 13, 22, 3, 13, 22, 4, 13, 22, 5, 13, 22, 6, 13, 22, 7, 13, 22, 8, 13, 22, 9, 13, 22, 10, 13, 22, 11, 13, 22, 12, 13, 22, 13, 13, 22, 14, 13, 23, 2, 13, 23, 3, 13, 23, 4, 13, 23, 5, 13, 23, 6, 13, 23, 7, 13, 23, 8, 13, 23, 9, 13, 23, 10, 13, 23, 11, 13, 23, 12, 13, 23, 13, 13, 23, 14, 13, 24, 2, 13, 24, 3, 13, 24, 4, 13, 24, 5, 13, 24, 6, 13, 24, 7, 13, 24, 8, 13, 24, 9, 13, 24, 10, 13, 24, 11, 13, 24, 12, 13, 24, 13, 13, 24, 14, 13, 25, 2, 13, 25, 3, 13, 25, 4, 13, 25, 5, 13, 25, 6, 13, 25, 7, 13, 25, 8, 13, 25, 9, 13, 25, 10, 13, 25, 11, 13, 25, 12, 13, 25, 13, 13, 25, 14, 13, 26, 2, 13, 26, 3, 13, 26, 4, 13, 26, 5, 13, 26, 6, 13, 26, 7, 13, 26, 8, 13, 26, 9, 13, 26, 10, 13, 26, 11, 13, 26, 12, 13, 26, 13, 13, 26, 14, 13, 27, 2, 13, 27, 3, 13, 27, 4, 13, 27, 5, 13, 27, 6, 13, 27, 7, 13, 27, 8, 13, 27, 9, 13, 27, 10, 13, 27, 11, 13, 27, 12, 13, 27, 13, 13, 27, 14, 13, 28, 2, 13, 28, 3, 13, 28, 4, 13, 28, 5, 13, 28, 6, 13, 28, 7, 13, 28, 8, 13, 28, 9, 13, 28, 10, 13, 28, 11, 13, 28, 12, 13, 28, 13, 13, 28, 14, 13, 29, 2, 13, 29, 3, 13, 29, 4, 13, 29, 5, 13, 29, 6, 13, 29, 7, 13, 29, 8, 13, 29, 9, 13, 29, 10, 13, 29, 11, 13, 29, 12, 13, 29, 13, 13, 29, 14, 13, 30, 2, 13, 30, 3, 13, 30, 4, 13, 30, 5, 13, 30, 6, 13, 30, 7, 13, 30, 8, 13, 30, 9, 13, 30, 10, 13, 30, 11, 13, 30, 12, 13, 30, 13, 13, 30, 14, 13, 31, 14, 13, 18, 1, 13, 30, 15, 13, 31, 1, 13, 16, 0, 13, 16, 1, 13, 16, 2, 13, 16, 3, 13, 16, 4, 13, 16, 5, 13, 16, 6, 13, 16, 7, 13, 16, 8, 13, 16, 9, 13, 16, 10, 13, 16, 11, 13, 16, 12, 13, 16, 13, 13, 17, 0, 13, 17, 1, 13, 17, 15, 13, 18, 0, 13, 18, 15, 13, 19, 0, 13, 19, 1, 13, 19, 15, 13, 20, 0, 13, 20, 1, 13, 20, 15, 13, 21, 0, 13, 21, 1, 13, 21, 15, 13, 22, 0, 13, 22, 1, 13, 22, 15, 13, 23, 1, 13, 23, 15, 13, 24, 0, 13, 24, 15, 13, 25, 1, 13, 25, 15, 13, 26, 0, 13, 26, 1, 13, 26, 15, 13, 27, 0, 13, 27, 1, 13, 27, 15, 13, 28, 0, 13, 28, 1, 13, 28, 15, 13, 29, 0, 13, 29, 1, 13, 29, 15, 13, 30, 0, 13, 30, 1, 13, 31, 0, 13, 31, 2, 13, 31, 3, 13, 31, 4, 13, 31, 5, 13, 31, 6, 13, 31, 7, 13, 31, 8, 13, 31, 9, 13, 31, 10, 13, 31, 11, 13, 31, 12, 13, 31, 13, 13, 31, 15, 13, 17, 16, 13, 18, 16, 13, 19, 16, 13, 20, 16, 13, 21, 16, 13, 22, 16, 13, 23, 16, 13, 24, 16, 13, 25, 16, 13, 26, 16, 13, 27, 16, 13, 28, 16, 13, 29, 16, 13, 30, 16, 13, 31, 16, 13, 32, 16, 13, 32, 15, 13, 32, 14, 13, 32, 13, 13, 32, 12, 13, 32, 11, 13, 32, 10, 13, 32, 9, 13, 16, 14, 13, 16, 15, 13, 16, 16, 13, 65520, 32, 13, 65520, 33, 13, 65520, 34, 13, 65520, 35, 13, 65520, 36, 13, 65520, 37, 13, 65520, 38, 13, 65520, 39, 13, 65520, 40, 13, 65520, 41, 13, 65520, 42, 13, 65520, 43, 13, 65520, 44, 13, 65520, 45, 13, 65520, 46, 13, 65520, 47, 13, 65520, 48, 13, 65521, 32, 13, 65521, 33, 13, 65521, 34, 1441833, 65521, 35, 13, 65521, 36, 13, 65521, 37, 13, 65521, 38, 13, 65521, 39, 13, 65521, 40, 13, 65521, 41, 13, 65521, 42, 13, 65521, 43, 13, 65521, 44, 13, 65521, 45, 13, 65521, 46, 1441833, 65521, 47, 13, 65521, 48, 13, 65522, 32, 13, 65522, 33, 41, 65522, 34, 13, 65522, 35, 13, 65522, 36, 13, 65522, 37, 13, 65522, 38, 13, 65522, 39, 13, 65522, 40, 13, 65522, 41, 13, 65522, 42, 13, 65522, 43, 13, 65522, 44, 13, 65522, 45, 13, 65522, 46, 13, 65522, 47, 41, 65522, 48, 13, 65523, 32, 13, 65523, 33, 13, 65523, 34, 13, 65523, 35, 13, 65523, 36, 13, 65523, 37, 13, 65523, 38, 13, 65523, 39, 13, 65523, 40, 13, 65523, 41, 13, 65523, 42, 13, 65523, 43, 13, 65523, 44, 13, 65523, 45, 13, 65523, 46, 13, 65523, 47, 13, 65523, 48, 13, 65524, 32, 13, 65524, 33, 13, 65524, 34, 13, 65524, 35, 13, 65524, 36, 13, 65524, 37, 13, 65524, 38, 13, 65524, 39, 13, 65524, 40, 13, 65524, 41, 13, 65524, 42, 13, 65524, 43, 13, 65524, 44, 13, 65524, 45, 13, 65524, 46, 13, 65524, 47, 13, 65524, 48, 13, 65525, 32, 13, 65525, 33, 13, 65525, 34, 13, 65525, 35, 13, 65525, 36, 13, 65525, 37, 13, 65525, 38, 13, 65525, 39, 13, 65525, 40, 13, 65525, 41, 13, 65525, 42, 13, 65525, 43, 13, 65525, 44, 13, 65525, 45, 13, 65525, 46, 13, 65525, 47, 13, 65525, 48, 13, 65526, 32, 13, 65526, 33, 13, 65526, 34, 13, 65526, 35, 13, 65526, 36, 13, 65526, 37, 13, 65526, 38, 13, 65526, 39, 13, 65526, 40, 13, 65526, 41, 13, 65526, 42, 13, 65526, 43, 13, 65526, 44, 13, 65526, 45, 13, 65526, 46, 13, 65526, 47, 13, 65526, 48, 13, 65527, 32, 13, 65527, 33, 13, 65527, 34, 13, 65527, 35, 13, 65527, 36, 13, 65527, 37, 13, 65527, 38, 13, 65527, 39, 13, 65527, 40, 13, 65527, 41, 13, 65527, 42, 13, 65527, 43, 13, 65527, 44, 13, 65527, 45, 13, 65527, 46, 13, 65527, 47, 13, 65527, 48, 13, 65528, 32, 13, 65528, 33, 13, 65528, 34, 13, 65528, 35, 13, 65528, 36, 13, 65528, 37, 13, 65528, 38, 13, 65528, 39, 13, 65528, 40, 13, 65528, 41, 13, 65528, 42, 13, 65528, 43, 13, 65528, 44, 13, 65528, 45, 13, 65528, 46, 13, 65528, 47, 13, 65528, 48, 13, 65529, 34, 13, 65529, 35, 13, 65529, 36, 13, 65529, 37, 13, 65529, 38, 13, 65529, 39, 13, 65529, 40, 13, 65529, 41, 13, 65529, 42, 13, 65529, 43, 13, 65529, 44, 13, 65529, 45, 13, 65529, 46, 13, 65529, 47, 13, 65529, 48, 13, 65530, 36, 13, 65530, 40, 13, 65530, 41, 13, 65530, 42, 13, 65530, 43, 13, 65530, 44, 13, 65530, 45, 13, 65530, 46, 13, 65530, 47, 13, 65530, 48, 13, 65531, 40, 13, 65531, 41, 13, 65531, 42, 13, 65531, 43, 13, 65531, 44, 13, 65531, 45, 13, 65531, 46, 13, 65531, 47, 13, 65531, 48, 13, 65532, 35, 13, 65532, 36, 13, 65532, 39, 13, 65532, 40, 13, 65532, 41, 13, 65532, 42, 13, 65532, 43, 13, 65532, 44, 13, 65532, 45, 13, 65532, 46, 13, 65532, 47, 13, 65532, 48, 13, 65533, 36, 13, 65533, 37, 13, 65533, 39, 13, 65533, 40, 13, 65533, 41, 13, 65533, 42, 13, 65533, 43, 13, 65533, 44, 13, 65533, 45, 13, 65533, 46, 13, 65533, 47, 13, 65533, 48, 13, 65534, 38, 13, 65534, 39, 13, 65534, 40, 13, 65534, 41, 13, 65534, 42, 13, 65534, 43, 13, 65534, 44, 13, 65534, 45, 13, 65534, 46, 13, 65534, 47, 41, 65534, 48, 13, 65535, 39, 13, 65535, 40, 13, 65535, 41, 13, 65535, 42, 13, 65535, 43, 13, 65535, 44, 13, 65535, 45, 13, 65535, 46, 1441833, 65535, 47, 13, 65535, 48, 13, 0, 34, 13, 0, 37, 13, 0, 38, 13, 0, 39, 13, 0, 40, 13, 0, 41, 13, 0, 42, 13, 0, 43, 13, 0, 44, 13, 0, 45, 13, 0, 46, 13, 0, 47, 13, 0, 48, 13, 32, 65520, 13, 32, 65521, 13, 32, 65522, 13, 32, 65523, 13, 32, 65524, 13, 32, 65525, 13, 32, 65526, 13, 32, 65527, 13, 32, 65528, 13, 32, 65529, 13, 32, 65530, 13, 32, 65531, 13, 32, 65532, 13, 32, 65533, 13, 32, 65534, 13, 32, 65535, 13, 32, 0, 13, 33, 65520, 13, 33, 65521, 13, 33, 65522, 13, 33, 65523, 13, 33, 65524, 13, 33, 65525, 13, 33, 65526, 13, 33, 65527, 13, 33, 65528, 13, 33, 65529, 13, 33, 65530, 13, 33, 65531, 13, 33, 65532, 13, 33, 65533, 13, 33, 65534, 13, 33, 65535, 13, 33, 0, 13, 34, 65520, 13, 34, 65521, 13, 34, 65522, 13, 34, 65523, 13, 34, 65524, 13, 34, 65525, 13, 34, 65526, 13, 34, 65527, 13, 34, 65528, 13, 34, 65529, 13, 34, 65530, 13, 34, 65531, 13, 34, 65532, 13, 34, 65533, 13, 34, 65534, 13, 34, 65535, 13, 34, 0, 13, 35, 65520, 13, 35, 65521, 13, 35, 65522, 13, 35, 65523, 13, 35, 65524, 13, 35, 65525, 13, 35, 65526, 13, 35, 65527, 13, 35, 65528, 13, 35, 65529, 13, 35, 65530, 13, 35, 65531, 13, 35, 65532, 13, 35, 65533, 13, 35, 65534, 13, 35, 65535, 13, 35, 0, 13, 36, 65520, 13, 36, 65521, 13, 36, 65522, 13, 36, 65523, 13, 36, 65524, 13, 36, 65525, 13, 36, 65526, 13, 36, 65527, 13, 36, 65528, 13, 36, 65529, 13, 36, 65530, 13, 36, 65531, 13, 36, 65532, 13, 36, 65533, 13, 36, 65534, 13, 36, 65535, 13, 36, 0, 13, 37, 65520, 13, 37, 65521, 13, 37, 65522, 13, 37, 65523, 13, 37, 65524, 13, 37, 65525, 13, 37, 65526, 13, 37, 65527, 13, 37, 65528, 13, 37, 65529, 13, 37, 65530, 13, 37, 65531, 13, 37, 65532, 13, 37, 65533, 13, 37, 65534, 13, 37, 65535, 13, 37, 0, 13, 38, 65520, 13, 38, 65521, 13, 38, 65522, 13, 38, 65523, 13, 38, 65524, 13, 38, 65525, 13, 38, 65526, 13, 38, 65527, 13, 38, 65528, 13, 38, 65529, 13, 38, 65530, 13, 38, 65531, 13, 38, 65532, 13, 38, 65533, 13, 38, 65534, 13, 38, 65535, 13, 38, 0, 13, 39, 65520, 13, 39, 65521, 13, 39, 65522, 13, 39, 65523, 13, 39, 65524, 13, 39, 65525, 13, 39, 65526, 13, 39, 65527, 13, 39, 65528, 13, 39, 65529, 13, 39, 65530, 13, 39, 65531, 13, 39, 65532, 13, 39, 65533, 13, 39, 65534, 13, 39, 65535, 13, 39, 0, 13, 40, 65520, 13, 40, 65521, 13, 40, 65522, 13, 40, 65523, 13, 40, 65524, 13, 40, 65525, 13, 40, 65526, 13, 40, 65527, 13, 40, 65528, 13, 40, 65529, 13, 40, 65530, 13, 40, 65531, 13, 40, 65532, 13, 40, 65533, 13, 40, 65534, 13, 40, 65535, 13, 40, 0, 13, 41, 65520, 13, 41, 65521, 13, 41, 65522, 13, 41, 65523, 13, 41, 65524, 13, 41, 65525, 13, 41, 65526, 13, 41, 65527, 13, 41, 65528, 13, 41, 65529, 13, 41, 65530, 13, 41, 65531, 13, 41, 65532, 13, 41, 65533, 13, 41, 65534, 13, 41, 65535, 13, 41, 0, 13, 42, 65520, 13, 42, 65521, 13, 42, 65522, 13, 42, 65523, 13, 42, 65524, 13, 42, 65525, 13, 42, 65526, 13, 42, 65527, 13, 42, 65528, 13, 42, 65529, 13, 42, 65530, 13, 42, 65531, 13, 42, 65532, 13, 42, 65533, 13, 42, 65534, 13, 42, 65535, 13, 42, 0, 13, 43, 65520, 13, 43, 65521, 13, 43, 65522, 13, 43, 65523, 13, 43, 65524, 13, 43, 65525, 13, 43, 65526, 13, 43, 65527, 13, 43, 65528, 13, 43, 65529, 13, 43, 65530, 13, 43, 65531, 13, 43, 65532, 13, 43, 65533, 13, 43, 65534, 13, 43, 65535, 13, 43, 0, 13, 44, 65520, 13, 44, 65521, 13, 44, 65522, 13, 44, 65523, 13, 44, 65524, 13, 44, 65525, 13, 44, 65526, 13, 44, 65527, 13, 44, 65528, 13, 44, 65529, 13, 44, 65530, 13, 44, 65531, 13, 44, 65532, 13, 44, 65533, 13, 44, 65534, 13, 44, 65535, 13, 44, 0, 13, 45, 65520, 13, 45, 65521, 13, 45, 65522, 13, 45, 65523, 13, 45, 65524, 13, 45, 65525, 13, 45, 65526, 13, 45, 65527, 13, 45, 65528, 13, 45, 65529, 13, 45, 65530, 13, 45, 65531, 13, 45, 65532, 13, 45, 65533, 13, 45, 65534, 13, 45, 65535, 13, 45, 0, 13, 46, 65520, 13, 46, 65521, 13, 46, 65522, 13, 46, 65523, 13, 46, 65524, 13, 46, 65525, 13, 46, 65526, 13, 46, 65527, 13, 46, 65528, 13, 46, 65529, 13, 46, 65530, 13, 46, 65531, 13, 46, 65532, 13, 46, 65533, 13, 46, 65534, 13, 46, 65535, 13, 46, 0, 13, 47, 65520, 13, 47, 65521, 13, 47, 65522, 13, 47, 65523, 13, 47, 65524, 13, 47, 65525, 13, 47, 65526, 13, 47, 65527, 13, 47, 65528, 13, 47, 65529, 13, 47, 65530, 13, 47, 65531, 13, 47, 65532, 13, 47, 65533, 13, 47, 65534, 13, 47, 65535, 13, 47, 0, 13, 48, 65520, 13, 48, 65521, 13, 48, 65522, 13, 48, 65523, 13, 48, 65524, 13, 48, 65525, 13, 48, 65526, 13, 48, 65527, 13, 48, 65528, 13, 48, 65529, 13, 48, 65530, 13, 48, 65531, 13, 48, 65532, 13, 48, 65533, 13, 48, 65534, 13, 48, 65535, 13, 48, 0, 13, 32, 1, 13, 32, 2, 13, 32, 3, 13, 32, 4, 13, 32, 5, 13, 32, 6, 13, 32, 7, 13, 32, 8, 13, 33, 1, 13, 33, 2, 13, 33, 3, 13, 33, 4, 13, 33, 5, 13, 33, 6, 13, 33, 7, 13, 33, 8, 13, 33, 9, 13, 33, 10, 13, 33, 11, 13, 33, 12, 13, 33, 13, 13, 33, 14, 13, 33, 15, 13, 33, 16, 13, 34, 1, 13, 34, 2, 13, 34, 3, 13, 34, 4, 13, 34, 5, 13, 34, 6, 13, 34, 7, 13, 34, 8, 13, 34, 9, 13, 34, 10, 13, 34, 11, 13, 34, 12, 13, 34, 13, 13, 34, 14, 13, 34, 15, 13, 34, 16, 13, 35, 1, 13, 35, 2, 13, 35, 3, 13, 35, 4, 13, 35, 5, 13, 35, 6, 13, 35, 7, 13, 35, 8, 13, 35, 9, 13, 35, 10, 13, 35, 11, 13, 35, 12, 13, 35, 13, 13, 35, 14, 13, 35, 15, 13, 35, 16, 13, 36, 1, 13, 36, 2, 13, 36, 3, 13, 36, 4, 13, 36, 5, 13, 36, 6, 13, 36, 7, 13, 36, 8, 13, 36, 9, 13, 36, 10, 13, 36, 11, 13, 36, 12, 13, 36, 13, 13, 36, 14, 13, 36, 15, 13, 36, 16, 13, 37, 1, 13, 37, 2, 13, 37, 3, 13, 37, 4, 13, 37, 5, 13, 37, 6, 13, 37, 7, 13, 37, 8, 13, 37, 9, 13, 37, 10, 13, 37, 11, 13, 37, 12, 13, 37, 13, 13, 37, 14, 13, 37, 15, 13, 37, 16, 13, 38, 1, 13, 38, 2, 13, 38, 3, 13, 38, 4, 13, 38, 5, 13, 38, 6, 13, 38, 7, 13, 38, 8, 13, 38, 9, 13, 38, 10, 13, 38, 11, 13, 38, 12, 13, 38, 13, 13, 38, 14, 13, 38, 15, 13, 38, 16, 13, 39, 1, 13, 39, 2, 13, 39, 3, 13, 39, 4, 13, 39, 5, 13, 39, 6, 13, 39, 7, 13, 39, 8, 13, 39, 9, 13, 39, 10, 13, 39, 11, 13, 39, 12, 13, 39, 13, 13, 39, 14, 13, 39, 15, 13, 39, 16, 13, 40, 1, 13, 40, 2, 13, 40, 3, 13, 40, 4, 13, 40, 5, 13, 40, 6, 13, 40, 7, 13, 40, 8, 13, 40, 9, 13, 40, 10, 13, 40, 11, 13, 40, 12, 13, 40, 13, 13, 40, 14, 13, 40, 15, 13, 40, 16, 13, 41, 1, 13, 41, 2, 13, 41, 3, 13, 41, 4, 13, 41, 5, 13, 41, 6, 13, 41, 7, 13, 41, 8, 13, 41, 9, 13, 41, 10, 13, 41, 11, 13, 41, 12, 13, 41, 13, 13, 41, 14, 13, 41, 15, 13, 41, 16, 13, 42, 1, 13, 42, 2, 13, 42, 3, 13, 42, 4, 13, 42, 5, 13, 42, 6, 13, 42, 7, 13, 42, 8, 13, 42, 9, 13, 42, 10, 13, 42, 11, 13, 42, 12, 13, 42, 13, 13, 42, 14, 13, 42, 15, 13, 42, 16, 13, 43, 1, 13, 43, 2, 13, 43, 3, 13, 43, 4, 13, 43, 5, 13, 43, 6, 13, 43, 7, 13, 43, 8, 13, 43, 9, 13, 43, 10, 13, 43, 11, 13, 43, 12, 13, 43, 13, 13, 43, 14, 13, 43, 15, 13, 43, 16, 13, 44, 1, 13, 44, 2, 13, 44, 3, 13, 44, 4, 13, 44, 5, 13, 44, 6, 13, 44, 7, 13, 44, 8, 13, 44, 9, 13, 44, 10, 13, 44, 11, 13, 44, 12, 13, 44, 13, 13, 44, 14, 13, 44, 15, 13, 44, 16, 13, 45, 1, 13, 45, 2, 13, 45, 3, 13, 45, 4, 13, 45, 5, 13, 45, 6, 13, 45, 7, 13, 45, 8, 13, 45, 9, 13, 45, 10, 13, 45, 11, 13, 45, 12, 13, 45, 13, 13, 45, 14, 13, 45, 15, 13, 45, 16, 13, 46, 1, 13, 46, 2, 13, 46, 3, 13, 46, 4, 13, 46, 5, 13, 46, 6, 13, 46, 7, 13, 46, 8, 13, 46, 9, 13, 46, 10, 13, 46, 11, 13, 46, 12, 13, 46, 13, 13, 46, 14, 13, 46, 15, 13, 46, 16, 13, 47, 1, 13, 47, 2, 13, 47, 3, 13, 47, 4, 13, 47, 5, 13, 47, 6, 13, 47, 7, 13, 47, 8, 13, 47, 9, 13, 47, 10, 13, 47, 11, 13, 47, 12, 13, 47, 13, 13, 47, 14, 13, 47, 15, 13, 47, 16, 13, 48, 1, 13, 48, 2, 13, 48, 3, 13, 48, 4, 13, 48, 5, 13, 48, 6, 13, 48, 7, 13, 48, 8, 13, 48, 9, 13, 48, 10, 13, 48, 11, 13, 48, 12, 13, 48, 13, 13, 48, 14, 13, 48, 15, 13, 48, 16, 13, 49, 0, 13, 49, 1, 13, 49, 2, 13, 49, 3, 13, 49, 4, 13, 49, 5, 13, 49, 6, 13, 49, 7, 13, 49, 8, 13, 49, 9, 13, 49, 10, 13, 49, 11, 13, 49, 12, 13, 49, 13, 13, 49, 14, 13, 49, 15, 13, 49, 16, 13, 50, 0, 13, 50, 1, 13, 50, 2, 13, 50, 3, 13, 50, 4, 13, 50, 5, 13, 50, 6, 13, 50, 7, 13, 50, 8, 13, 50, 9, 13, 50, 10, 13, 50, 11, 13, 50, 12, 13, 50, 13, 13, 50, 14, 13, 50, 15, 13, 50, 16, 13, 51, 0, 13, 51, 1, 13, 51, 2, 13, 51, 3, 13, 51, 4, 13, 51, 5, 13, 51, 6, 13, 51, 7, 13, 51, 8, 13, 51, 9, 13, 51, 10, 13, 51, 11, 13, 51, 12, 13, 51, 13, 13, 51, 14, 13, 51, 15, 13, 51, 16, 13, 52, 0, 13, 52, 1, 13, 52, 2, 13, 52, 3, 13, 52, 4, 13, 52, 5, 13, 52, 6, 13, 52, 7, 13, 52, 8, 13, 52, 9, 13, 52, 10, 13, 52, 11, 13, 52, 12, 13, 52, 13, 13, 52, 14, 13, 52, 15, 13, 52, 16, 13, 53, 0, 13, 53, 1, 13, 53, 2, 13, 53, 3, 13, 53, 4, 13, 53, 5, 13, 53, 6, 13, 53, 7, 13, 53, 8, 13, 53, 9, 13, 53, 10, 13, 53, 11, 13, 53, 12, 13, 53, 13, 13, 53, 14, 13, 53, 15, 13, 53, 16, 13, 54, 0, 13, 54, 1, 13, 54, 2, 13, 54, 3, 13, 54, 4, 13, 54, 5, 13, 54, 6, 13, 54, 7, 13, 54, 8, 13, 54, 9, 13, 54, 10, 13, 54, 11, 13, 54, 12, 13, 54, 13, 13, 54, 14, 13, 54, 15, 13, 54, 16, 13, 55, 0, 13, 55, 1, 13, 55, 2, 13, 55, 3, 13, 55, 4, 13, 55, 5, 13, 55, 6, 13, 55, 7, 13, 55, 8, 13, 55, 9, 13, 55, 10, 13, 55, 11, 13, 55, 12, 13, 55, 13, 13, 55, 14, 13, 55, 15, 13, 55, 16, 13, 56, 0, 13, 56, 1, 13, 56, 2, 13, 56, 3, 13, 56, 4, 13, 56, 5, 13, 56, 6, 13, 56, 7, 13, 56, 8, 13, 56, 9, 13, 56, 10, 13, 56, 11, 13, 56, 12, 13, 56, 13, 13, 56, 14, 13, 56, 15, 13, 56, 16, 13, 57, 0, 13, 57, 1, 13, 57, 2, 13, 57, 3, 13, 57, 4, 13, 57, 5, 13, 57, 6, 13, 57, 7, 13, 57, 8, 13, 57, 9, 13, 57, 10, 13, 57, 11, 13, 57, 12, 13, 57, 13, 13, 57, 14, 13, 57, 15, 13, 57, 16, 13, 58, 0, 13, 58, 1, 13, 58, 2, 13, 58, 3, 13, 58, 4, 13, 58, 5, 13, 58, 6, 13, 58, 7, 13, 58, 8, 13, 58, 9, 13, 58, 10, 13, 58, 11, 13, 58, 12, 13, 58, 13, 13, 58, 14, 13, 58, 15, 13, 58, 16, 13, 59, 0, 13, 59, 1, 13, 59, 2, 13, 59, 3, 13, 59, 4, 13, 59, 5, 13, 59, 6, 13, 59, 7, 13, 59, 8, 13, 59, 9, 13, 59, 10, 13, 59, 11, 13, 59, 12, 13, 59, 13, 13, 59, 14, 13, 59, 15, 13, 59, 16, 13, 60, 0, 13, 60, 1, 13, 60, 2, 13, 60, 3, 13, 60, 4, 13, 60, 5, 13, 60, 6, 13, 60, 7, 13, 60, 8, 13, 60, 9, 13, 60, 10, 13, 60, 11, 13, 60, 12, 13, 60, 13, 13, 60, 14, 13, 60, 15, 13, 60, 16, 13, 61, 0, 13, 61, 1, 13, 61, 2, 13, 61, 3, 13, 61, 4, 13, 61, 5, 13, 61, 6, 13, 61, 7, 13, 61, 8, 13, 61, 9, 13, 61, 10, 13, 61, 11, 13, 61, 12, 13, 61, 13, 13, 61, 14, 13, 61, 15, 13, 61, 16, 13, 62, 0, 13, 62, 1, 13, 62, 2, 13, 62, 3, 13, 62, 4, 13, 62, 5, 13, 62, 6, 13, 62, 7, 13, 62, 8, 13, 62, 9, 13, 62, 10, 13, 62, 11, 13, 62, 12, 13, 62, 13, 13, 62, 14, 13, 62, 15, 13, 62, 16, 13, 63, 0, 13, 63, 1, 13, 63, 2, 13, 63, 3, 13, 63, 4, 13, 63, 5, 13, 63, 6, 13, 63, 7, 13, 63, 8, 13, 63, 9, 13, 63, 10, 13, 63, 11, 13, 63, 12, 13, 63, 13, 13, 63, 14, 13, 63, 15, 13, 63, 16, 13, 64, 0, 13, 64, 1, 13, 64, 2, 13, 64, 3, 13, 64, 4, 13, 64, 5, 13, 64, 6, 13, 64, 7, 13, 64, 8, 13, 64, 9, 13, 64, 10, 13, 64, 11, 13, 64, 12, 13, 64, 13, 13, 64, 14, 13, 64, 15, 13, 64, 16, 13, 49, 65520, 13, 49, 65521, 13, 49, 65522, 13, 49, 65523, 13, 49, 65524, 13, 49, 65525, 13, 49, 65526, 13, 49, 65527, 13, 49, 65528, 13, 49, 65529, 13, 49, 65530, 13, 49, 65531, 13, 49, 65532, 13, 49, 65533, 13, 49, 65534, 13, 49, 65535, 13, 50, 65520, 13, 50, 65521, 13, 50, 65522, 13, 50, 65523, 13, 50, 65524, 13, 50, 65525, 13, 50, 65526, 13, 50, 65527, 13, 50, 65528, 13, 50, 65529, 13, 50, 65530, 13, 50, 65531, 13, 50, 65532, 13, 50, 65533, 13, 50, 65534, 13, 50, 65535, 13, 51, 65520, 13, 51, 65521, 13, 51, 65522, 13, 51, 65523, 13, 51, 65524, 13, 51, 65525, 13, 51, 65526, 13, 51, 65527, 13, 51, 65528, 13, 51, 65529, 13, 51, 65530, 13, 51, 65531, 13, 51, 65532, 13, 51, 65533, 13, 51, 65534, 13, 51, 65535, 13, 52, 65520, 13, 52, 65521, 13, 52, 65522, 13, 52, 65523, 13, 52, 65524, 13, 52, 65525, 13, 52, 65526, 13, 52, 65527, 13, 52, 65528, 13, 52, 65529, 13, 52, 65530, 13, 52, 65531, 13, 52, 65532, 13, 52, 65533, 13, 52, 65534, 13, 52, 65535, 13, 53, 65520, 13, 53, 65521, 13, 53, 65522, 13, 53, 65523, 13, 53, 65524, 13, 53, 65525, 13, 53, 65526, 13, 53, 65527, 13, 53, 65528, 13, 53, 65529, 13, 53, 65530, 13, 53, 65531, 13, 53, 65532, 13, 53, 65533, 13, 53, 65534, 13, 53, 65535, 13, 54, 65520, 13, 54, 65521, 13, 54, 65522, 13, 54, 65523, 13, 54, 65524, 13, 54, 65525, 13, 54, 65526, 13, 54, 65527, 13, 54, 65528, 13, 54, 65529, 13, 54, 65530, 13, 54, 65531, 13, 54, 65532, 13, 54, 65533, 13, 54, 65534, 13, 54, 65535, 13, 55, 65520, 13, 55, 65521, 13, 55, 65522, 13, 55, 65523, 13, 55, 65524, 13, 55, 65525, 13, 55, 65526, 13, 55, 65527, 13, 55, 65528, 13, 55, 65529, 13, 55, 65530, 13, 55, 65531, 13, 55, 65532, 13, 55, 65533, 13, 55, 65534, 13, 55, 65535, 13, 56, 65520, 13, 56, 65521, 13, 56, 65522, 13, 56, 65523, 13, 56, 65524, 13, 56, 65525, 13, 56, 65526, 13, 56, 65527, 13, 56, 65528, 13, 56, 65529, 13, 56, 65530, 13, 56, 65531, 13, 56, 65532, 13, 56, 65533, 13, 56, 65534, 13, 56, 65535, 13, 57, 65520, 13, 57, 65521, 13, 57, 65522, 13, 57, 65523, 13, 57, 65524, 13, 57, 65525, 13, 57, 65526, 13, 57, 65527, 13, 57, 65528, 13, 57, 65529, 13, 57, 65530, 13, 57, 65531, 13, 57, 65532, 13, 57, 65533, 13, 57, 65534, 13, 57, 65535, 13, 58, 65520, 13, 58, 65521, 13, 58, 65522, 13, 58, 65523, 13, 58, 65524, 13, 58, 65525, 13, 58, 65526, 13, 58, 65527, 13, 58, 65528, 13, 58, 65529, 13, 58, 65530, 13, 58, 65531, 13, 58, 65532, 13, 58, 65533, 13, 58, 65534, 13, 58, 65535, 13, 59, 65520, 13, 59, 65521, 13, 59, 65522, 13, 59, 65523, 13, 59, 65524, 13, 59, 65525, 13, 59, 65526, 13, 59, 65527, 13, 59, 65528, 13, 59, 65529, 13, 59, 65530, 13, 59, 65531, 13, 59, 65532, 13, 59, 65533, 13, 59, 65534, 13, 59, 65535, 13, 60, 65520, 13, 60, 65521, 13, 60, 65522, 13, 60, 65523, 13, 60, 65524, 13, 60, 65525, 13, 60, 65526, 13, 60, 65527, 13, 60, 65528, 13, 60, 65529, 13, 60, 65530, 13, 60, 65531, 13, 60, 65532, 13, 60, 65533, 13, 60, 65534, 13, 60, 65535, 13, 61, 65520, 13, 61, 65521, 13, 61, 65522, 13, 61, 65523, 13, 61, 65524, 13, 61, 65525, 13, 61, 65526, 13, 61, 65527, 13, 61, 65528, 13, 61, 65529, 13, 61, 65530, 13, 61, 65531, 13, 61, 65532, 13, 61, 65533, 13, 61, 65534, 13, 61, 65535, 13, 62, 65520, 13, 62, 65521, 13, 62, 65522, 13, 62, 65523, 13, 62, 65524, 13, 62, 65525, 13, 62, 65526, 13, 62, 65527, 13, 62, 65528, 13, 62, 65529, 13, 62, 65530, 13, 62, 65531, 13, 62, 65532, 13, 62, 65533, 13, 62, 65534, 13, 62, 65535, 13, 63, 65520, 13, 63, 65521, 13, 63, 65522, 13, 63, 65523, 13, 63, 65524, 13, 63, 65525, 13, 63, 65526, 13, 63, 65527, 13, 63, 65528, 13, 63, 65529, 13, 63, 65530, 13, 63, 65531, 13, 63, 65532, 13, 63, 65533, 13, 63, 65534, 13, 63, 65535, 13, 64, 65520, 13, 64, 65521, 13, 64, 65522, 13, 64, 65523, 13, 64, 65524, 13, 64, 65525, 13, 64, 65526, 13, 64, 65527, 13, 64, 65528, 13, 64, 65529, 13, 64, 65530, 13, 64, 65531, 13, 64, 65532, 13, 64, 65533, 13, 64, 65534, 13, 64, 65535, 13, 32, 65504, 13, 32, 65505, 13, 32, 65506, 13, 32, 65507, 13, 32, 65508, 13, 32, 65509, 13, 32, 65510, 13, 32, 65511, 13, 32, 65512, 13, 32, 65513, 13, 32, 65514, 13, 32, 65515, 13, 32, 65516, 13, 32, 65517, 13, 32, 65518, 13, 32, 65519, 13, 33, 65504, 13, 33, 65505, 13, 33, 65506, 13, 33, 65507, 13, 33, 65508, 13, 33, 65509, 13, 33, 65510, 13, 33, 65511, 13, 33, 65512, 13, 33, 65513, 13, 33, 65514, 13, 33, 65515, 13, 33, 65516, 13, 33, 65517, 13, 33, 65518, 13, 33, 65519, 13, 34, 65504, 13, 34, 65505, 13, 34, 65506, 13, 34, 65507, 13, 34, 65508, 13, 34, 65509, 13, 34, 65510, 13, 34, 65511, 13, 34, 65512, 13, 34, 65513, 13, 34, 65514, 13, 34, 65515, 13, 34, 65516, 13, 34, 65517, 13, 34, 65518, 13, 34, 65519, 13, 35, 65504, 13, 35, 65505, 13, 35, 65506, 13, 35, 65507, 13, 35, 65508, 13, 35, 65509, 13, 35, 65510, 13, 35, 65511, 13, 35, 65512, 13, 35, 65513, 13, 35, 65514, 13, 35, 65515, 13, 35, 65516, 13, 35, 65517, 13, 35, 65518, 13, 35, 65519, 13, 36, 65504, 13, 36, 65505, 13, 36, 65506, 13, 36, 65507, 13, 36, 65508, 13, 36, 65509, 13, 36, 65510, 13, 36, 65511, 13, 36, 65512, 13, 36, 65513, 13, 36, 65514, 13, 36, 65515, 13, 36, 65516, 13, 36, 65517, 13, 36, 65518, 13, 36, 65519, 13, 37, 65504, 13, 37, 65505, 13, 37, 65506, 13, 37, 65507, 13, 37, 65508, 13, 37, 65509, 13, 37, 65510, 13, 37, 65511, 13, 37, 65512, 13, 37, 65513, 13, 37, 65514, 13, 37, 65515, 13, 37, 65516, 13, 37, 65517, 13, 37, 65518, 13, 37, 65519, 13, 38, 65504, 13, 38, 65505, 13, 38, 65506, 13, 38, 65507, 13, 38, 65508, 13, 38, 65509, 13, 38, 65510, 13, 38, 65511, 13, 38, 65512, 13, 38, 65513, 13, 38, 65514, 13, 38, 65515, 13, 38, 65516, 13, 38, 65517, 13, 38, 65518, 13, 38, 65519, 13, 39, 65504, 13, 39, 65505, 13, 39, 65506, 13, 39, 65507, 13, 39, 65508, 13, 39, 65509, 13, 39, 65510, 13, 39, 65511, 13, 39, 65512, 13, 39, 65513, 13, 39, 65514, 13, 39, 65515, 13, 39, 65516, 13, 39, 65517, 13, 39, 65518, 13, 39, 65519, 13, 40, 65504, 13, 40, 65505, 13, 40, 65506, 13, 40, 65507, 13, 40, 65508, 13, 40, 65509, 13, 40, 65510, 13, 40, 65511, 13, 40, 65512, 13, 40, 65513, 13, 40, 65514, 13, 40, 65515, 13, 40, 65516, 13, 40, 65517, 13, 40, 65518, 13, 40, 65519, 13, 41, 65504, 13, 41, 65505, 13, 41, 65506, 13, 41, 65507, 13, 41, 65508, 13, 41, 65509, 13, 41, 65510, 13, 41, 65511, 13, 41, 65512, 13, 41, 65513, 13, 41, 65514, 13, 41, 65515, 13, 41, 65516, 13, 41, 65517, 13, 41, 65518, 13, 41, 65519, 13, 42, 65504, 13, 42, 65505, 13, 42, 65506, 13, 42, 65507, 13, 42, 65508, 13, 42, 65509, 13, 42, 65510, 13, 42, 65511, 13, 42, 65512, 13, 42, 65513, 13, 42, 65514, 13, 42, 65515, 13, 42, 65516, 13, 42, 65517, 13, 42, 65518, 13, 42, 65519, 13, 43, 65504, 13, 43, 65505, 13, 43, 65506, 13, 43, 65507, 13, 43, 65508, 13, 43, 65509, 13, 43, 65510, 13, 43, 65511, 13, 43, 65512, 13, 43, 65513, 13, 43, 65514, 13, 43, 65515, 13, 43, 65516, 13, 43, 65517, 13, 43, 65518, 13, 43, 65519, 13, 44, 65504, 13, 44, 65505, 13, 44, 65506, 13, 44, 65507, 13, 44, 65508, 13, 44, 65509, 13, 44, 65510, 13, 44, 65511, 13, 44, 65512, 13, 44, 65513, 13, 44, 65514, 13, 44, 65515, 13, 44, 65516, 13, 44, 65517, 13, 44, 65518, 13, 44, 65519, 13, 45, 65504, 13, 45, 65505, 13, 45, 65506, 13, 45, 65507, 13, 45, 65508, 13, 45, 65509, 13, 45, 65510, 13, 45, 65511, 13, 45, 65512, 13, 45, 65513, 13, 45, 65514, 13, 45, 65515, 13, 45, 65516, 13, 45, 65517, 13, 45, 65518, 13, 45, 65519, 13, 46, 65504, 13, 46, 65505, 13, 46, 65506, 13, 46, 65507, 13, 46, 65508, 13, 46, 65509, 13, 46, 65510, 13, 46, 65511, 13, 46, 65512, 13, 46, 65513, 13, 46, 65514, 13, 46, 65515, 13, 46, 65516, 13, 46, 65517, 13, 46, 65518, 13, 46, 65519, 13, 47, 65504, 13, 47, 65505, 13, 47, 65506, 13, 47, 65507, 13, 47, 65508, 13, 47, 65509, 13, 47, 65510, 13, 47, 65511, 13, 47, 65512, 13, 47, 65513, 13, 47, 65514, 13, 47, 65515, 13, 47, 65516, 13, 47, 65517, 13, 47, 65518, 13, 47, 65519, 13, 48, 65504, 13, 48, 65505, 13, 48, 65506, 13, 48, 65507, 13, 48, 65508, 13, 48, 65509, 13, 48, 65510, 13, 48, 65511, 13, 48, 65512, 13, 48, 65513, 13, 48, 65514, 13, 48, 65515, 13, 48, 65516, 13, 48, 65517, 13, 48, 65518, 13, 48, 65519, 13, 49, 65504, 13, 49, 65505, 13, 49, 65506, 13, 49, 65507, 13, 49, 65508, 13, 49, 65509, 13, 49, 65510, 13, 49, 65511, 13, 49, 65512, 13, 49, 65513, 13, 49, 65514, 13, 49, 65515, 13, 49, 65516, 13, 49, 65517, 13, 49, 65518, 13, 49, 65519, 13, 50, 65504, 13, 50, 65505, 13, 50, 65506, 13, 50, 65507, 13, 50, 65508, 13, 50, 65509, 13, 50, 65510, 13, 50, 65511, 13, 50, 65512, 13, 50, 65513, 13, 50, 65514, 13, 50, 65515, 13, 50, 65516, 13, 50, 65517, 13, 50, 65518, 13, 50, 65519, 13, 51, 65504, 13, 51, 65505, 13, 51, 65506, 13, 51, 65507, 13, 51, 65508, 13, 51, 65509, 13, 51, 65510, 13, 51, 65511, 13, 51, 65512, 13, 51, 65513, 13, 51, 65514, 13, 51, 65515, 13, 51, 65516, 13, 51, 65517, 13, 51, 65518, 13, 51, 65519, 13, 52, 65504, 13, 52, 65505, 13, 52, 65506, 13, 52, 65507, 13, 52, 65508, 13, 52, 65509, 13, 52, 65510, 13, 52, 65511, 13, 52, 65512, 13, 52, 65513, 13, 52, 65514, 13, 52, 65515, 13, 52, 65516, 13, 52, 65517, 13, 52, 65518, 13, 52, 65519, 13, 53, 65504, 13, 53, 65505, 13, 53, 65506, 13, 53, 65507, 13, 53, 65508, 13, 53, 65509, 13, 53, 65510, 13, 53, 65511, 13, 53, 65512, 13, 53, 65513, 13, 53, 65514, 13, 53, 65515, 13, 53, 65516, 13, 53, 65517, 13, 53, 65518, 13, 53, 65519, 13, 54, 65504, 13, 54, 65505, 13, 54, 65506, 13, 54, 65507, 13, 54, 65508, 13, 54, 65509, 13, 54, 65510, 13, 54, 65511, 13, 54, 65512, 13, 54, 65513, 13, 54, 65514, 13, 54, 65515, 13, 54, 65516, 13, 54, 65517, 13, 54, 65518, 13, 54, 65519, 13, 55, 65504, 13, 55, 65505, 13, 55, 65506, 13, 55, 65507, 13, 55, 65508, 13, 55, 65509, 13, 55, 65510, 13, 55, 65511, 13, 55, 65512, 13, 55, 65513, 13, 55, 65514, 13, 55, 65515, 13, 55, 65516, 13, 55, 65517, 13, 55, 65518, 13, 55, 65519, 13, 56, 65504, 13, 56, 65505, 13, 56, 65506, 13, 56, 65507, 13, 56, 65508, 13, 56, 65509, 13, 56, 65510, 13, 56, 65511, 13, 56, 65512, 13, 56, 65513, 13, 56, 65514, 13, 56, 65515, 13, 56, 65516, 13, 56, 65517, 13, 56, 65518, 13, 56, 65519, 13, 57, 65504, 13, 57, 65505, 13, 57, 65506, 13, 57, 65507, 13, 57, 65508, 13, 57, 65509, 13, 57, 65510, 13, 57, 65511, 13, 57, 65512, 13, 57, 65513, 13, 57, 65514, 13, 57, 65515, 13, 57, 65516, 13, 57, 65517, 13, 57, 65518, 13, 57, 65519, 13, 58, 65504, 13, 58, 65505, 13, 58, 65506, 13, 58, 65507, 13, 58, 65508, 13, 58, 65509, 13, 58, 65510, 13, 58, 65511, 13, 58, 65512, 13, 58, 65513, 13, 58, 65514, 13, 58, 65515, 13, 58, 65516, 13, 58, 65517, 13, 58, 65518, 13, 58, 65519, 13, 59, 65504, 13, 59, 65505, 13, 59, 65506, 13, 59, 65507, 13, 59, 65508, 13, 59, 65509, 13, 59, 65510, 13, 59, 65511, 13, 59, 65512, 13, 59, 65513, 13, 59, 65514, 13, 59, 65515, 13, 59, 65516, 13, 59, 65517, 13, 59, 65518, 13, 59, 65519, 13, 60, 65504, 13, 60, 65505, 13, 60, 65506, 13, 60, 65507, 13, 60, 65508, 13, 60, 65509, 13, 60, 65510, 13, 60, 65511, 13, 60, 65512, 13, 60, 65513, 13, 60, 65514, 13, 60, 65515, 13, 60, 65516, 13, 60, 65517, 13, 60, 65518, 13, 60, 65519, 13, 61, 65504, 13, 61, 65505, 13, 61, 65506, 13, 61, 65507, 13, 61, 65508, 13, 61, 65509, 13, 61, 65510, 13, 61, 65511, 13, 61, 65512, 13, 61, 65513, 13, 61, 65514, 13, 61, 65515, 13, 61, 65516, 13, 61, 65517, 13, 61, 65518, 13, 61, 65519, 13, 62, 65504, 13, 62, 65505, 13, 62, 65506, 13, 62, 65507, 13, 62, 65508, 13, 62, 65509, 13, 62, 65510, 13, 62, 65511, 13, 62, 65512, 13, 62, 65513, 13, 62, 65514, 13, 62, 65515, 13, 62, 65516, 13, 62, 65517, 13, 62, 65518, 13, 62, 65519, 13, 63, 65504, 13, 63, 65505, 13, 63, 65506, 13, 63, 65507, 13, 63, 65508, 13, 63, 65509, 13, 63, 65510, 13, 63, 65511, 13, 63, 65512, 13, 63, 65513, 13, 63, 65514, 13, 63, 65515, 13, 63, 65516, 13, 63, 65517, 13, 63, 65518, 13, 63, 65519, 13, 64, 65504, 13, 64, 65505, 13, 64, 65506, 13, 64, 65507, 13, 64, 65508, 13, 64, 65509, 13, 64, 65510, 13, 64, 65511, 13, 64, 65512, 13, 64, 65513, 13, 64, 65514, 13, 64, 65515, 13, 64, 65516, 13, 64, 65517, 13, 64, 65518, 13, 64, 65519, 13, 65, 65504, 13, 65, 65505, 13, 65, 65506, 13, 65, 65507, 13, 65, 65508, 13, 65, 65509, 13, 65, 65510, 13, 65, 65511, 13, 65, 65512, 13, 65, 65513, 13, 65, 65514, 13, 65, 65515, 13, 65, 65516, 13, 65, 65517, 13, 65, 65518, 13, 65, 65519, 13, 65, 65520, 13, 66, 65504, 13, 66, 65505, 13, 66, 65506, 13, 66, 65507, 13, 66, 65508, 13, 66, 65509, 13, 66, 65510, 13, 66, 65511, 13, 66, 65512, 13, 66, 65513, 13, 66, 65514, 13, 66, 65515, 13, 66, 65516, 13, 66, 65517, 13, 66, 65518, 13, 66, 65519, 13, 66, 65520, 13, 67, 65504, 13, 67, 65505, 13, 67, 65506, 13, 67, 65507, 13, 67, 65508, 13, 67, 65509, 13, 67, 65510, 13, 67, 65511, 13, 67, 65512, 13, 67, 65513, 13, 67, 65514, 13, 67, 65515, 13, 67, 65516, 13, 67, 65517, 13, 67, 65518, 13, 67, 65519, 13, 67, 65520, 13, 68, 65504, 13, 68, 65505, 13, 68, 65506, 13, 68, 65507, 13, 68, 65508, 13, 68, 65509, 13, 68, 65510, 13, 68, 65511, 13, 68, 65512, 13, 68, 65513, 13, 68, 65514, 13, 68, 65515, 13, 68, 65516, 13, 68, 65517, 13, 68, 65518, 13, 68, 65519, 13, 68, 65520, 13, 69, 65504, 13, 69, 65505, 13, 69, 65506, 13, 69, 65507, 13, 69, 65508, 13, 69, 65509, 13, 69, 65510, 13, 69, 65511, 13, 69, 65512, 13, 69, 65513, 13, 69, 65514, 13, 69, 65515, 13, 69, 65516, 13, 69, 65517, 13, 69, 65518, 13, 69, 65519, 13, 69, 65520, 13, 70, 65504, 13, 70, 65505, 13, 70, 65506, 13, 70, 65507, 13, 70, 65508, 13, 70, 65509, 13, 70, 65510, 13, 70, 65511, 13, 70, 65512, 13, 70, 65513, 13, 70, 65514, 13, 70, 65515, 13, 70, 65516, 13, 70, 65517, 13, 70, 65518, 13, 70, 65519, 13, 70, 65520, 13, 71, 65504, 13, 71, 65505, 13, 71, 65506, 13, 71, 65507, 13, 71, 65508, 13, 71, 65509, 13, 71, 65510, 13, 71, 65511, 13, 71, 65512, 13, 71, 65513, 13, 71, 65514, 13, 71, 65515, 13, 71, 65516, 13, 71, 65517, 13, 71, 65518, 13, 71, 65519, 13, 71, 65520, 13, 72, 65504, 13, 72, 65505, 13, 72, 65506, 13, 72, 65507, 13, 72, 65508, 13, 72, 65509, 13, 72, 65510, 13, 72, 65511, 13, 72, 65512, 13, 72, 65513, 13, 72, 65514, 13, 72, 65515, 13, 72, 65516, 13, 72, 65517, 13, 72, 65518, 13, 72, 65519, 13, 72, 65520, 13, 73, 65504, 13, 73, 65505, 13, 73, 65506, 13, 73, 65507, 13, 73, 65508, 13, 73, 65509, 13, 73, 65510, 13, 73, 65511, 13, 73, 65512, 13, 73, 65513, 13, 73, 65514, 13, 73, 65515, 13, 73, 65516, 13, 73, 65517, 13, 73, 65518, 13, 73, 65519, 13, 73, 65520, 13, 74, 65504, 13, 74, 65505, 13, 74, 65506, 13, 74, 65507, 13, 74, 65508, 13, 74, 65509, 13, 74, 65510, 13, 74, 65511, 13, 74, 65512, 13, 74, 65513, 13, 74, 65514, 13, 74, 65515, 13, 74, 65516, 13, 74, 65517, 13, 74, 65518, 13, 74, 65519, 13, 74, 65520, 13, 75, 65504, 13, 75, 65505, 13, 75, 65506, 13, 75, 65507, 13, 75, 65508, 13, 75, 65509, 13, 75, 65510, 13, 75, 65511, 13, 75, 65512, 13, 75, 65513, 13, 75, 65514, 13, 75, 65515, 13, 75, 65516, 13, 75, 65517, 13, 75, 65518, 13, 75, 65519, 13, 75, 65520, 13, 76, 65504, 13, 76, 65505, 13, 76, 65506, 13, 76, 65507, 13, 76, 65508, 13, 76, 65509, 13, 76, 65510, 13, 76, 65511, 13, 76, 65512, 13, 76, 65513, 13, 76, 65514, 13, 76, 65515, 13, 76, 65516, 13, 76, 65517, 13, 76, 65518, 13, 76, 65519, 13, 76, 65520, 13, 77, 65504, 13, 77, 65505, 13, 77, 65506, 13, 77, 65507, 13, 77, 65508, 13, 77, 65509, 13, 77, 65510, 13, 77, 65511, 13, 77, 65512, 13, 77, 65513, 13, 77, 65514, 13, 77, 65515, 13, 77, 65516, 13, 77, 65517, 13, 77, 65518, 13, 77, 65519, 13, 77, 65520, 13, 78, 65504, 13, 78, 65505, 13, 78, 65506, 13, 78, 65507, 13, 78, 65508, 13, 78, 65509, 13, 78, 65510, 13, 78, 65511, 13, 78, 65512, 13, 78, 65513, 13, 78, 65514, 13, 78, 65515, 13, 78, 65516, 13, 78, 65517, 13, 78, 65518, 13, 78, 65519, 13, 78, 65520, 13, 79, 65504, 13, 79, 65505, 13, 79, 65506, 13, 79, 65507, 13, 79, 65508, 13, 79, 65509, 13, 79, 65510, 13, 79, 65511, 13, 79, 65512, 13, 79, 65513, 13, 79, 65514, 13, 79, 65515, 13, 79, 65516, 13, 79, 65517, 13, 79, 65518, 13, 79, 65519, 13, 79, 65520, 13, 80, 65504, 13, 80, 65505, 13, 80, 65506, 13, 80, 65507, 13, 80, 65508, 13, 80, 65509, 13, 80, 65510, 13, 80, 65511, 13, 80, 65512, 13, 80, 65513, 13, 80, 65514, 13, 80, 65515, 13, 80, 65516, 13, 80, 65517, 13, 80, 65518, 13, 80, 65519, 13, 80, 65520, 13, 65, 65521, 13, 65, 65522, 13, 65, 65523, 13, 65, 65524, 13, 65, 65525, 13, 65, 65526, 13, 65, 65527, 13, 65, 65528, 13, 65, 65529, 13, 65, 65530, 13, 65, 65531, 13, 65, 65532, 13, 65, 65533, 13, 65, 65534, 13, 65, 65535, 13, 65, 0, 13, 66, 65521, 13, 66, 65522, 13, 66, 65523, 13, 66, 65524, 13, 66, 65525, 13, 66, 65526, 13, 66, 65527, 13, 66, 65528, 13, 66, 65529, 13, 66, 65530, 13, 66, 65531, 13, 66, 65532, 13, 66, 65533, 13, 66, 65534, 13, 66, 65535, 13, 66, 0, 13, 67, 65521, 13, 67, 65522, 13, 67, 65523, 13, 67, 65524, 13, 67, 65525, 13, 67, 65526, 13, 67, 65527, 13, 67, 65528, 13, 67, 65529, 13, 67, 65530, 13, 67, 65531, 13, 67, 65532, 13, 67, 65533, 13, 67, 65534, 13, 67, 65535, 13, 67, 0, 13, 68, 65521, 13, 68, 65522, 13, 68, 65523, 13, 68, 65524, 13, 68, 65525, 13, 68, 65526, 13, 68, 65527, 13, 68, 65528, 13, 68, 65529, 13, 68, 65530, 13, 68, 65531, 13, 68, 65532, 13, 68, 65533, 13, 68, 65534, 13, 68, 65535, 13, 68, 0, 13, 69, 65521, 13, 69, 65522, 13, 69, 65523, 13, 69, 65524, 13, 69, 65525, 13, 69, 65526, 13, 69, 65527, 13, 69, 65528, 13, 69, 65529, 13, 69, 65530, 13, 69, 65531, 13, 69, 65532, 13, 69, 65533, 13, 69, 65534, 13, 69, 65535, 13, 69, 0, 13, 70, 65521, 13, 70, 65522, 13, 70, 65523, 13, 70, 65524, 13, 70, 65525, 13, 70, 65526, 13, 70, 65527, 13, 70, 65528, 13, 70, 65529, 13, 70, 65530, 13, 70, 65531, 13, 70, 65532, 13, 70, 65533, 13, 70, 65534, 13, 70, 65535, 13, 70, 0, 13, 71, 65521, 13, 71, 65522, 13, 71, 65523, 13, 71, 65524, 13, 71, 65525, 13, 71, 65526, 13, 71, 65527, 13, 71, 65528, 13, 71, 65529, 13, 71, 65530, 13, 71, 65531, 13, 71, 65532, 13, 71, 65533, 13, 71, 65534, 13, 71, 65535, 13, 71, 0, 13, 72, 65521, 13, 72, 65522, 13, 72, 65523, 13, 72, 65524, 13, 72, 65525, 13, 72, 65526, 13, 72, 65527, 13, 72, 65528, 13, 72, 65529, 13, 72, 65530, 13, 72, 65531, 13, 72, 65532, 13, 72, 65533, 13, 72, 65534, 13, 72, 65535, 13, 72, 0, 13, 73, 65521, 13, 73, 65522, 13, 73, 65523, 13, 73, 65524, 13, 73, 65525, 13, 73, 65526, 13, 73, 65527, 13, 73, 65528, 13, 73, 65529, 13, 73, 65530, 13, 73, 65531, 13, 73, 65532, 13, 73, 65533, 13, 73, 65534, 13, 73, 65535, 13, 73, 0, 13, 74, 65521, 13, 74, 65522, 13, 74, 65523, 13, 74, 65524, 13, 74, 65525, 13, 74, 65526, 13, 74, 65527, 13, 74, 65528, 13, 74, 65529, 13, 74, 65530, 13, 74, 65531, 13, 74, 65532, 13, 74, 65533, 13, 74, 65534, 13, 74, 65535, 13, 74, 0, 13, 75, 65521, 13, 75, 65522, 13, 75, 65523, 13, 75, 65524, 13, 75, 65525, 13, 75, 65526, 13, 75, 65527, 13, 75, 65528, 13, 75, 65529, 13, 75, 65530, 13, 75, 65531, 13, 75, 65532, 13, 75, 65533, 13, 75, 65534, 13, 75, 65535, 13, 75, 0, 13, 76, 65521, 13, 76, 65522, 13, 76, 65523, 13, 76, 65524, 13, 76, 65525, 13, 76, 65526, 13, 76, 65527, 13, 76, 65528, 13, 76, 65529, 13, 76, 65530, 13, 76, 65531, 13, 76, 65532, 13, 76, 65533, 13, 76, 65534, 13, 76, 65535, 13, 76, 0, 13, 77, 65521, 13, 77, 65522, 13, 77, 65523, 13, 77, 65524, 13, 77, 65525, 13, 77, 65526, 13, 77, 65527, 13, 77, 65528, 13, 77, 65529, 13, 77, 65530, 13, 77, 65531, 13, 77, 65532, 13, 77, 65533, 13, 77, 65534, 13, 77, 65535, 13, 77, 0, 13, 78, 65521, 13, 78, 65522, 13, 78, 65523, 13, 78, 65524, 13, 78, 65525, 13, 78, 65526, 13, 78, 65527, 13, 78, 65528, 13, 78, 65529, 13, 78, 65530, 13, 78, 65531, 13, 78, 65532, 13, 78, 65533, 13, 78, 65534, 13, 78, 65535, 13, 78, 0, 13, 79, 65521, 13, 79, 65522, 13, 79, 65523, 13, 79, 65524, 13, 79, 65525, 13, 79, 65526, 13, 79, 65527, 13, 79, 65528, 13, 79, 65529, 13, 79, 65530, 13, 79, 65531, 13, 79, 65532, 13, 79, 65533, 13, 79, 65534, 13, 79, 65535, 13, 79, 0, 13, 80, 65521, 13, 80, 65522, 13, 80, 65523, 13, 80, 65524, 13, 80, 65525, 13, 80, 65526, 13, 80, 65527, 13, 80, 65528, 13, 80, 65529, 13, 80, 65530, 13, 80, 65531, 13, 80, 65532, 13, 80, 65533, 13, 80, 65534, 13, 80, 65535, 13, 80, 0, 13, 65, 1, 13, 65, 2, 13, 65, 3, 13, 65, 4, 13, 65, 5, 13, 65, 6, 13, 65, 7, 13, 65, 8, 13, 65, 9, 13, 65, 10, 13, 65, 11, 13, 65, 12, 13, 65, 13, 13, 65, 14, 13, 65, 15, 13, 65, 16, 13, 66, 1, 13, 66, 2, 13, 66, 3, 13, 66, 4, 13, 66, 5, 13, 66, 6, 13, 66, 7, 13, 66, 8, 13, 66, 9, 13, 66, 10, 13, 66, 11, 13, 66, 12, 13, 66, 13, 13, 66, 14, 13, 66, 15, 13, 66, 16, 13, 67, 1, 13, 67, 2, 13, 67, 3, 13, 67, 4, 13, 67, 5, 13, 67, 6, 13, 67, 7, 13, 67, 8, 13, 67, 9, 13, 67, 10, 13, 67, 11, 13, 67, 12, 13, 67, 13, 13, 67, 14, 13, 67, 15, 13, 67, 16, 13, 68, 1, 13, 68, 2, 13, 68, 3, 13, 68, 4, 13, 68, 5, 13, 68, 6, 13, 68, 7, 13, 68, 8, 13, 68, 9, 13, 68, 10, 13, 68, 11, 13, 68, 12, 13, 68, 13, 13, 68, 14, 13, 68, 15, 13, 68, 16, 13, 69, 1, 13, 69, 2, 13, 69, 3, 13, 69, 4, 13, 69, 5, 13, 69, 6, 13, 69, 7, 13, 69, 8, 13, 69, 9, 13, 69, 10, 13, 69, 11, 13, 69, 12, 13, 69, 13, 13, 69, 14, 13, 69, 15, 13, 69, 16, 13, 70, 1, 13, 70, 2, 13, 70, 3, 13, 70, 4, 13, 70, 5, 13, 70, 6, 13, 70, 7, 13, 70, 8, 13, 70, 9, 13, 70, 10, 13, 70, 11, 13, 70, 12, 13, 70, 13, 13, 70, 14, 13, 70, 15, 13, 70, 16, 13, 71, 1, 13, 71, 2, 13, 71, 3, 13, 71, 4, 13, 71, 5, 13, 71, 6, 13, 71, 7, 13, 71, 8, 13, 71, 9, 13, 71, 10, 13, 71, 11, 13, 71, 12, 13, 71, 13, 13, 71, 14, 13, 71, 15, 13, 71, 16, 13, 72, 1, 13, 72, 2, 13, 72, 3, 13, 72, 4, 13, 72, 5, 13, 72, 6, 13, 72, 7, 13, 72, 8, 13, 72, 9, 13, 72, 10, 13, 72, 11, 13, 72, 12, 13, 72, 13, 13, 72, 14, 13, 72, 15, 13, 72, 16, 13, 73, 1, 13, 73, 2, 13, 73, 3, 13, 73, 4, 13, 73, 5, 13, 73, 6, 13, 73, 7, 13, 73, 8, 13, 73, 9, 13, 73, 10, 13, 73, 11, 13, 73, 12, 13, 73, 13, 13, 73, 14, 13, 73, 15, 13, 73, 16, 13, 74, 1, 13, 74, 2, 13, 74, 3, 13, 74, 4, 13, 74, 5, 13, 74, 6, 13, 74, 7, 13, 74, 8, 13, 74, 9, 13, 74, 10, 13, 74, 11, 13, 74, 12, 13, 74, 13, 13, 74, 14, 13, 74, 15, 13, 74, 16, 13, 75, 1, 13, 75, 2, 13, 75, 3, 13, 75, 4, 13, 75, 5, 13, 75, 6, 13, 75, 7, 13, 75, 8, 13, 75, 9, 13, 75, 10, 13, 75, 11, 13, 75, 12, 13, 75, 13, 13, 75, 14, 13, 75, 15, 13, 75, 16, 13, 76, 1, 13, 76, 2, 13, 76, 3, 13, 76, 4, 13, 76, 5, 13, 76, 6, 13, 76, 7, 13, 76, 8, 13, 76, 9, 13, 76, 10, 13, 76, 11, 13, 76, 12, 13, 76, 13, 13, 76, 14, 13, 76, 15, 13, 76, 16, 13, 77, 1, 13, 77, 2, 13, 77, 3, 13, 77, 4, 13, 77, 5, 13, 77, 6, 13, 77, 7, 13, 77, 8, 13, 77, 9, 13, 77, 10, 13, 77, 11, 13, 77, 12, 13, 77, 13, 13, 77, 14, 13, 77, 15, 13, 77, 16, 13, 78, 1, 13, 78, 2, 13, 78, 3, 13, 78, 4, 13, 78, 5, 13, 78, 6, 13, 78, 7, 13, 78, 8, 13, 78, 9, 13, 78, 10, 13, 78, 11, 13, 78, 12, 13, 78, 13, 13, 78, 14, 13, 78, 15, 13, 78, 16, 13, 79, 1, 13, 79, 2, 13, 79, 3, 13, 79, 4, 13, 79, 5, 13, 79, 6, 13, 79, 7, 13, 79, 8, 13, 79, 9, 13, 79, 10, 13, 79, 11, 13, 79, 12, 13, 79, 13, 13, 79, 14, 13, 79, 15, 13, 79, 16, 13, 80, 1, 13, 80, 2, 13, 80, 3, 13, 80, 4, 13, 80, 5, 13, 80, 6, 13, 80, 7, 13, 80, 8, 13, 80, 9, 13, 80, 10, 13, 80, 11, 13, 80, 12, 13, 80, 13, 13, 80, 14, 13, 80, 15, 13, 80, 16, 13, 32, 65488, 13, 32, 65489, 13, 32, 65490, 13, 32, 65491, 13, 32, 65492, 13, 32, 65493, 13, 32, 65494, 13, 32, 65495, 13, 32, 65496, 13, 32, 65497, 13, 32, 65498, 13, 32, 65499, 13, 32, 65500, 13, 32, 65501, 13, 32, 65502, 13, 32, 65503, 13, 33, 65488, 13, 33, 65489, 13, 33, 65490, 13, 33, 65491, 13, 33, 65492, 13, 33, 65493, 13, 33, 65494, 13, 33, 65495, 13, 33, 65496, 13, 33, 65497, 13, 33, 65498, 13, 33, 65499, 13, 33, 65500, 13, 33, 65501, 13, 33, 65502, 13, 33, 65503, 13, 34, 65488, 13, 34, 65489, 13, 34, 65490, 13, 34, 65491, 13, 34, 65492, 13, 34, 65493, 13, 34, 65494, 13, 34, 65495, 13, 34, 65496, 13, 34, 65497, 13, 34, 65498, 13, 34, 65499, 13, 34, 65500, 13, 34, 65501, 13, 34, 65502, 13, 34, 65503, 13, 35, 65488, 13, 35, 65489, 13, 35, 65490, 13, 35, 65491, 13, 35, 65492, 13, 35, 65493, 13, 35, 65494, 13, 35, 65495, 13, 35, 65496, 13, 35, 65497, 13, 35, 65498, 13, 35, 65499, 13, 35, 65500, 13, 35, 65501, 13, 35, 65502, 13, 35, 65503, 13, 36, 65488, 13, 36, 65489, 13, 36, 65490, 13, 36, 65491, 13, 36, 65492, 13, 36, 65493, 13, 36, 65494, 13, 36, 65495, 13, 36, 65496, 13, 36, 65497, 13, 36, 65498, 13, 36, 65499, 13, 36, 65500, 13, 36, 65501, 13, 36, 65502, 13, 36, 65503, 13, 37, 65488, 13, 37, 65489, 13, 37, 65490, 13, 37, 65491, 13, 37, 65492, 13, 37, 65493, 13, 37, 65494, 13, 37, 65495, 13, 37, 65496, 13, 37, 65497, 13, 37, 65498, 13, 37, 65499, 13, 37, 65500, 13, 37, 65501, 13, 37, 65502, 13, 37, 65503, 13, 38, 65488, 13, 38, 65489, 13, 38, 65490, 13, 38, 65491, 13, 38, 65492, 13, 38, 65493, 13, 38, 65494, 13, 38, 65495, 13, 38, 65496, 13, 38, 65497, 13, 38, 65498, 13, 38, 65499, 13, 38, 65500, 13, 38, 65501, 13, 38, 65502, 13, 38, 65503, 13, 39, 65488, 13, 39, 65489, 13, 39, 65490, 13, 39, 65491, 13, 39, 65492, 13, 39, 65493, 13, 39, 65494, 13, 39, 65495, 13, 39, 65496, 13, 39, 65497, 13, 39, 65498, 13, 39, 65499, 13, 39, 65500, 13, 39, 65501, 13, 39, 65502, 13, 39, 65503, 13, 40, 65488, 13, 40, 65489, 13, 40, 65490, 13, 40, 65491, 13, 40, 65492, 13, 40, 65493, 13, 40, 65494, 13, 40, 65495, 13, 40, 65496, 13, 40, 65497, 13, 40, 65498, 13, 40, 65499, 13, 40, 65500, 13, 40, 65501, 13, 40, 65502, 13, 40, 65503, 13, 41, 65488, 13, 41, 65489, 13, 41, 65490, 13, 41, 65491, 13, 41, 65492, 13, 41, 65493, 13, 41, 65494, 13, 41, 65495, 13, 41, 65496, 13, 41, 65497, 13, 41, 65498, 13, 41, 65499, 13, 41, 65500, 13, 41, 65501, 13, 41, 65502, 13, 41, 65503, 13, 42, 65488, 13, 42, 65489, 13, 42, 65490, 13, 42, 65491, 13, 42, 65492, 13, 42, 65493, 13, 42, 65494, 13, 42, 65495, 13, 42, 65496, 13, 42, 65497, 13, 42, 65498, 13, 42, 65499, 13, 42, 65500, 13, 42, 65501, 13, 42, 65502, 13, 42, 65503, 13, 43, 65488, 13, 43, 65489, 13, 43, 65490, 13, 43, 65491, 13, 43, 65492, 13, 43, 65493, 13, 43, 65494, 13, 43, 65495, 13, 43, 65496, 13, 43, 65497, 13, 43, 65498, 13, 43, 65499, 13, 43, 65500, 13, 43, 65501, 13, 43, 65502, 13, 43, 65503, 13, 44, 65488, 13, 44, 65489, 13, 44, 65490, 13, 44, 65491, 13, 44, 65492, 13, 44, 65493, 13, 44, 65494, 13, 44, 65495, 13, 44, 65496, 13, 44, 65497, 13, 44, 65498, 13, 44, 65499, 13, 44, 65500, 13, 44, 65501, 13, 44, 65502, 13, 44, 65503, 13, 45, 65488, 13, 45, 65489, 13, 45, 65490, 13, 45, 65491, 13, 45, 65492, 13, 45, 65493, 13, 45, 65494, 13, 45, 65495, 13, 45, 65496, 13, 45, 65497, 13, 45, 65498, 13, 45, 65499, 13, 45, 65500, 13, 45, 65501, 13, 45, 65502, 13, 45, 65503, 13, 46, 65488, 13, 46, 65489, 13, 46, 65490, 13, 46, 65491, 13, 46, 65492, 13, 46, 65493, 13, 46, 65494, 13, 46, 65495, 13, 46, 65496, 13, 46, 65497, 13, 46, 65498, 13, 46, 65499, 13, 46, 65500, 13, 46, 65501, 13, 46, 65502, 13, 46, 65503, 13, 47, 65488, 13, 47, 65489, 13, 47, 65490, 13, 47, 65491, 13, 47, 65492, 13, 47, 65493, 13, 47, 65494, 13, 47, 65495, 13, 47, 65496, 13, 47, 65497, 13, 47, 65498, 13, 47, 65499, 13, 47, 65500, 13, 47, 65501, 13, 47, 65502, 13, 47, 65503, 13, 48, 65488, 13, 48, 65489, 13, 48, 65490, 13, 48, 65491, 13, 48, 65492, 13, 48, 65493, 13, 48, 65494, 13, 48, 65495, 13, 48, 65496, 13, 48, 65497, 13, 48, 65498, 13, 48, 65499, 13, 48, 65500, 13, 48, 65501, 13, 48, 65502, 13, 48, 65503, 13, 49, 65488, 13, 49, 65489, 13, 49, 65490, 13, 49, 65491, 13, 49, 65492, 13, 49, 65493, 13, 49, 65494, 13, 49, 65495, 13, 49, 65496, 13, 49, 65497, 13, 49, 65498, 13, 49, 65499, 13, 49, 65500, 13, 49, 65501, 13, 49, 65502, 13, 49, 65503, 13, 50, 65488, 13, 50, 65489, 13, 50, 65490, 13, 50, 65491, 13, 50, 65492, 13, 50, 65493, 13, 50, 65494, 13, 50, 65495, 13, 50, 65496, 13, 50, 65497, 13, 50, 65498, 13, 50, 65499, 13, 50, 65500, 13, 50, 65501, 13, 50, 65502, 13, 50, 65503, 13, 51, 65488, 13, 51, 65489, 13, 51, 65490, 13, 51, 65491, 13, 51, 65492, 13, 51, 65493, 13, 51, 65494, 13, 51, 65495, 13, 51, 65496, 13, 51, 65497, 13, 51, 65498, 13, 51, 65499, 13, 51, 65500, 13, 51, 65501, 13, 51, 65502, 13, 51, 65503, 13, 52, 65488, 13, 52, 65489, 13, 52, 65490, 13, 52, 65491, 13, 52, 65492, 13, 52, 65493, 13, 52, 65494, 13, 52, 65495, 13, 52, 65496, 13, 52, 65497, 13, 52, 65498, 13, 52, 65499, 13, 52, 65500, 13, 52, 65501, 13, 52, 65502, 13, 52, 65503, 13, 53, 65488, 13, 53, 65489, 13, 53, 65490, 13, 53, 65491, 13, 53, 65492, 13, 53, 65493, 13, 53, 65494, 13, 53, 65495, 13, 53, 65496, 13, 53, 65497, 13, 53, 65498, 13, 53, 65499, 13, 53, 65500, 13, 53, 65501, 13, 53, 65502, 13, 53, 65503, 13, 54, 65488, 13, 54, 65489, 13, 54, 65490, 13, 54, 65491, 13, 54, 65492, 13, 54, 65493, 13, 54, 65494, 13, 54, 65495, 13, 54, 65496, 13, 54, 65497, 13, 54, 65498, 13, 54, 65499, 13, 54, 65500, 13, 54, 65501, 13, 54, 65502, 13, 54, 65503, 13, 55, 65488, 13, 55, 65489, 13, 55, 65490, 13, 55, 65491, 13, 55, 65492, 13, 55, 65493, 13, 55, 65494, 13, 55, 65495, 13, 55, 65496, 13, 55, 65497, 13, 55, 65498, 13, 55, 65499, 13, 55, 65500, 13, 55, 65501, 13, 55, 65502, 13, 55, 65503, 13, 56, 65488, 13, 56, 65489, 13, 56, 65490, 13, 56, 65491, 13, 56, 65492, 13, 56, 65493, 13, 56, 65494, 13, 56, 65495, 13, 56, 65496, 13, 56, 65497, 13, 56, 65498, 13, 56, 65499, 13, 56, 65500, 13, 56, 65501, 13, 56, 65502, 13, 56, 65503, 13, 57, 65488, 13, 57, 65489, 13, 57, 65490, 13, 57, 65491, 13, 57, 65492, 13, 57, 65493, 13, 57, 65494, 13, 57, 65495, 13, 57, 65496, 13, 57, 65497, 13, 57, 65498, 13, 57, 65499, 13, 57, 65500, 13, 57, 65501, 13, 57, 65502, 13, 57, 65503, 13, 58, 65488, 13, 58, 65489, 13, 58, 65490, 13, 58, 65491, 13, 58, 65492, 13, 58, 65493, 13, 58, 65494, 13, 58, 65495, 13, 58, 65496, 13, 58, 65497, 13, 58, 65498, 13, 58, 65499, 13, 58, 65500, 13, 58, 65501, 13, 58, 65502, 13, 58, 65503, 13, 59, 65488, 13, 59, 65489, 13, 59, 65490, 13, 59, 65491, 13, 59, 65492, 13, 59, 65493, 13, 59, 65494, 13, 59, 65495, 13, 59, 65496, 13, 59, 65497, 13, 59, 65498, 13, 59, 65499, 13, 59, 65500, 13, 59, 65501, 13, 59, 65502, 13, 59, 65503, 13, 60, 65488, 13, 60, 65489, 13, 60, 65490, 13, 60, 65491, 13, 60, 65492, 13, 60, 65493, 13, 60, 65494, 13, 60, 65495, 13, 60, 65496, 13, 60, 65497, 13, 60, 65498, 13, 60, 65499, 13, 60, 65500, 13, 60, 65501, 13, 60, 65502, 13, 60, 65503, 13, 61, 65488, 13, 61, 65489, 13, 61, 65490, 13, 61, 65491, 13, 61, 65492, 13, 61, 65493, 13, 61, 65494, 13, 61, 65495, 13, 61, 65496, 13, 61, 65497, 13, 61, 65498, 13, 61, 65499, 13, 61, 65500, 13, 61, 65501, 13, 61, 65502, 13, 61, 65503, 13, 62, 65488, 13, 62, 65489, 13, 62, 65490, 13, 62, 65491, 13, 62, 65492, 13, 62, 65493, 13, 62, 65494, 13, 62, 65495, 13, 62, 65496, 13, 62, 65497, 13, 62, 65498, 13, 62, 65499, 13, 62, 65500, 13, 62, 65501, 13, 62, 65502, 13, 62, 65503, 13, 63, 65488, 13, 63, 65489, 13, 63, 65490, 13, 63, 65491, 13, 63, 65492, 13, 63, 65493, 13, 63, 65494, 13, 63, 65495, 13, 63, 65496, 13, 63, 65497, 13, 63, 65498, 13, 63, 65499, 13, 63, 65500, 13, 63, 65501, 13, 63, 65502, 13, 63, 65503, 13, 64, 65488, 13, 64, 65489, 13, 64, 65490, 13, 64, 65491, 13, 64, 65492, 13, 64, 65493, 13, 64, 65494, 13, 64, 65495, 13, 64, 65496, 13, 64, 65497, 13, 64, 65498, 13, 64, 65499, 13, 64, 65500, 13, 64, 65501, 13, 64, 65502, 13, 64, 65503, 13, 65, 65488, 13, 65, 65489, 13, 65, 65490, 13, 65, 65491, 13, 65, 65492, 13, 65, 65493, 13, 65, 65494, 13, 65, 65495, 13, 65, 65496, 13, 65, 65497, 13, 65, 65498, 13, 65, 65499, 13, 65, 65500, 13, 65, 65501, 13, 65, 65502, 13, 65, 65503, 13, 66, 65488, 13, 66, 65489, 13, 66, 65490, 13, 66, 65491, 13, 66, 65492, 13, 66, 65493, 13, 66, 65494, 13, 66, 65495, 13, 66, 65496, 13, 66, 65497, 13, 66, 65498, 13, 66, 65499, 13, 66, 65500, 13, 66, 65501, 13, 66, 65502, 13, 66, 65503, 13, 67, 65488, 13, 67, 65489, 13, 67, 65490, 13, 67, 65491, 13, 67, 65492, 13, 67, 65493, 13, 67, 65494, 13, 67, 65495, 13, 67, 65496, 13, 67, 65497, 13, 67, 65498, 13, 67, 65499, 13, 67, 65500, 13, 67, 65501, 13, 67, 65502, 13, 67, 65503, 13, 68, 65488, 13, 68, 65489, 13, 68, 65490, 13, 68, 65491, 13, 68, 65492, 13, 68, 65493, 13, 68, 65494, 13, 68, 65495, 13, 68, 65496, 13, 68, 65497, 13, 68, 65498, 13, 68, 65499, 13, 68, 65500, 13, 68, 65501, 13, 68, 65502, 13, 68, 65503, 13, 69, 65488, 13, 69, 65489, 13, 69, 65490, 13, 69, 65491, 13, 69, 65492, 13, 69, 65493, 13, 69, 65494, 13, 69, 65495, 13, 69, 65496, 13, 69, 65497, 13, 69, 65498, 13, 69, 65499, 13, 69, 65500, 13, 69, 65501, 13, 69, 65502, 13, 69, 65503, 13, 70, 65488, 13, 70, 65489, 13, 70, 65490, 13, 70, 65491, 13, 70, 65492, 13, 70, 65493, 13, 70, 65494, 13, 70, 65495, 13, 70, 65496, 13, 70, 65497, 13, 70, 65498, 13, 70, 65499, 13, 70, 65500, 13, 70, 65501, 13, 70, 65502, 13, 70, 65503, 13, 71, 65488, 13, 71, 65489, 13, 71, 65490, 13, 71, 65491, 13, 71, 65492, 13, 71, 65493, 13, 71, 65494, 13, 71, 65495, 13, 71, 65496, 13, 71, 65497, 13, 71, 65498, 13, 71, 65499, 13, 71, 65500, 13, 71, 65501, 13, 71, 65502, 13, 71, 65503, 13, 72, 65488, 13, 72, 65489, 13, 72, 65490, 13, 72, 65491, 13, 72, 65492, 13, 72, 65493, 13, 72, 65494, 13, 72, 65495, 13, 72, 65496, 13, 72, 65497, 13, 72, 65498, 13, 72, 65499, 13, 72, 65500, 13, 72, 65501, 13, 72, 65502, 13, 72, 65503, 13, 73, 65488, 13, 73, 65489, 13, 73, 65490, 13, 73, 65491, 13, 73, 65492, 13, 73, 65493, 13, 73, 65494, 13, 73, 65495, 13, 73, 65496, 13, 73, 65497, 13, 73, 65498, 13, 73, 65499, 13, 73, 65500, 13, 73, 65501, 13, 73, 65502, 13, 73, 65503, 13, 74, 65488, 13, 74, 65489, 13, 74, 65490, 13, 74, 65491, 13, 74, 65492, 13, 74, 65493, 13, 74, 65494, 13, 74, 65495, 13, 74, 65496, 13, 74, 65497, 13, 74, 65498, 13, 74, 65499, 13, 74, 65500, 13, 74, 65501, 13, 74, 65502, 13, 74, 65503, 13, 75, 65488, 13, 75, 65489, 13, 75, 65490, 13, 75, 65491, 13, 75, 65492, 13, 75, 65493, 13, 75, 65494, 13, 75, 65495, 13, 75, 65496, 13, 75, 65497, 13, 75, 65498, 13, 75, 65499, 13, 75, 65500, 13, 75, 65501, 13, 75, 65502, 13, 75, 65503, 13, 76, 65488, 13, 76, 65489, 13, 76, 65490, 13, 76, 65491, 13, 76, 65492, 13, 76, 65493, 13, 76, 65494, 13, 76, 65495, 13, 76, 65496, 13, 76, 65497, 13, 76, 65498, 13, 76, 65499, 13, 76, 65500, 13, 76, 65501, 13, 76, 65502, 13, 76, 65503, 13, 77, 65488, 13, 77, 65489, 13, 77, 65490, 13, 77, 65491, 13, 77, 65492, 13, 77, 65493, 13, 77, 65494, 13, 77, 65495, 13, 77, 65496, 13, 77, 65497, 13, 77, 65498, 13, 77, 65499, 13, 77, 65500, 13, 77, 65501, 13, 77, 65502, 13, 77, 65503, 13, 78, 65488, 13, 78, 65489, 13, 78, 65490, 13, 78, 65491, 13, 78, 65492, 13, 78, 65493, 13, 78, 65494, 13, 78, 65495, 13, 78, 65496, 13, 78, 65497, 13, 78, 65498, 13, 78, 65499, 13, 78, 65500, 13, 78, 65501, 13, 78, 65502, 13, 78, 65503, 13, 79, 65488, 13, 79, 65489, 13, 79, 65490, 13, 79, 65491, 13, 79, 65492, 13, 79, 65493, 13, 79, 65494, 13, 79, 65495, 13, 79, 65496, 13, 79, 65497, 13, 79, 65498, 13, 79, 65499, 13, 79, 65500, 13, 79, 65501, 13, 79, 65502, 13, 79, 65503, 13, 80, 65488, 13, 80, 65489, 13, 80, 65490, 13, 80, 65491, 13, 80, 65492, 13, 80, 65493, 13, 80, 65494, 13, 80, 65495, 13, 80, 65496, 13, 80, 65497, 13, 80, 65498, 13, 80, 65499, 13, 80, 65500, 13, 80, 65501, 13, 80, 65502, 13, 80, 65503, 13, 17, 65488, 13, 17, 65489, 13, 17, 65490, 13, 17, 65491, 13, 17, 65492, 13, 17, 65493, 13, 17, 65494, 13, 17, 65495, 13, 17, 65496, 13, 17, 65497, 13, 17, 65498, 13, 17, 65499, 13, 17, 65500, 13, 17, 65501, 13, 17, 65502, 13, 17, 65503, 13, 17, 65504, 13, 18, 65488, 13, 18, 65489, 13, 18, 65490, 13, 18, 65491, 13, 18, 65492, 13, 18, 65493, 13, 18, 65494, 13, 18, 65495, 13, 18, 65496, 13, 18, 65497, 13, 18, 65498, 13, 18, 65499, 13, 18, 65500, 13, 18, 65501, 13, 18, 65502, 13, 18, 65503, 13, 18, 65504, 13, 19, 65488, 13, 19, 65489, 13, 19, 65490, 13, 19, 65491, 13, 19, 65492, 13, 19, 65493, 13, 19, 65494, 13, 19, 65495, 13, 19, 65496, 13, 19, 65497, 13, 19, 65498, 13, 19, 65499, 13, 19, 65500, 13, 19, 65501, 13, 19, 65502, 13, 19, 65503, 13, 19, 65504, 13, 20, 65488, 13, 20, 65489, 13, 20, 65490, 13, 20, 65491, 13, 20, 65492, 13, 20, 65493, 13, 20, 65494, 13, 20, 65495, 13, 20, 65496, 13, 20, 65497, 13, 20, 65498, 13, 20, 65499, 13, 20, 65500, 13, 20, 65501, 13, 20, 65502, 13, 20, 65503, 13, 20, 65504, 13, 21, 65488, 13, 21, 65489, 13, 21, 65490, 13, 21, 65491, 13, 21, 65492, 13, 21, 65493, 13, 21, 65494, 13, 21, 65495, 13, 21, 65496, 13, 21, 65497, 13, 21, 65498, 13, 21, 65499, 13, 21, 65500, 13, 21, 65501, 13, 21, 65502, 13, 21, 65503, 13, 21, 65504, 13, 22, 65488, 13, 22, 65489, 13, 22, 65490, 13, 22, 65491, 13, 22, 65492, 13, 22, 65493, 13, 22, 65494, 13, 22, 65495, 13, 22, 65496, 13, 22, 65497, 13, 22, 65498, 13, 22, 65499, 13, 22, 65500, 13, 22, 65501, 13, 22, 65502, 13, 22, 65503, 13, 22, 65504, 13, 23, 65488, 13, 23, 65489, 13, 23, 65490, 13, 23, 65491, 13, 23, 65492, 13, 23, 65493, 13, 23, 65494, 13, 23, 65495, 13, 23, 65496, 13, 23, 65497, 13, 23, 65498, 13, 23, 65499, 13, 23, 65500, 13, 23, 65501, 13, 23, 65502, 13, 23, 65503, 13, 23, 65504, 13, 24, 65488, 13, 24, 65489, 13, 24, 65490, 13, 24, 65491, 13, 24, 65492, 13, 24, 65493, 13, 24, 65494, 13, 24, 65495, 13, 24, 65496, 13, 24, 65497, 13, 24, 65498, 13, 24, 65499, 13, 24, 65500, 13, 24, 65501, 13, 24, 65502, 13, 24, 65503, 13, 24, 65504, 13, 25, 65488, 13, 25, 65489, 13, 25, 65490, 13, 25, 65491, 13, 25, 65492, 13, 25, 65493, 13, 25, 65494, 13, 25, 65495, 13, 25, 65496, 13, 25, 65497, 13, 25, 65498, 13, 25, 65499, 13, 25, 65500, 13, 25, 65501, 13, 25, 65502, 13, 25, 65503, 13, 25, 65504, 13, 26, 65488, 13, 26, 65489, 13, 26, 65490, 13, 26, 65491, 13, 26, 65492, 13, 26, 65493, 13, 26, 65494, 13, 26, 65495, 13, 26, 65496, 13, 26, 65497, 13, 26, 65498, 13, 26, 65499, 13, 26, 65500, 13, 26, 65501, 13, 26, 65502, 13, 26, 65503, 13, 26, 65504, 13, 27, 65488, 13, 27, 65489, 13, 27, 65490, 13, 27, 65491, 13, 27, 65492, 13, 27, 65493, 13, 27, 65494, 13, 27, 65495, 13, 27, 65496, 13, 27, 65497, 13, 27, 65498, 13, 27, 65499, 13, 27, 65500, 13, 27, 65501, 13, 27, 65502, 13, 27, 65503, 13, 27, 65504, 13, 28, 65488, 13, 28, 65489, 13, 28, 65490, 13, 28, 65491, 13, 28, 65492, 13, 28, 65493, 13, 28, 65494, 13, 28, 65495, 13, 28, 65496, 13, 28, 65497, 13, 28, 65498, 13, 28, 65499, 13, 28, 65500, 13, 28, 65501, 13, 28, 65502, 13, 28, 65503, 13, 28, 65504, 13, 29, 65488, 13, 29, 65489, 13, 29, 65490, 13, 29, 65491, 13, 29, 65492, 13, 29, 65493, 13, 29, 65494, 13, 29, 65495, 13, 29, 65496, 13, 29, 65497, 13, 29, 65498, 13, 29, 65499, 13, 29, 65500, 13, 29, 65501, 13, 29, 65502, 13, 29, 65503, 13, 29, 65504, 13, 30, 65488, 13, 30, 65489, 13, 30, 65490, 13, 30, 65491, 13, 30, 65492, 13, 30, 65493, 13, 30, 65494, 13, 30, 65495, 13, 30, 65496, 13, 30, 65497, 13, 30, 65498, 13, 30, 65499, 13, 30, 65500, 13, 30, 65501, 13, 30, 65502, 13, 30, 65503, 13, 30, 65504, 13, 31, 65488, 13, 31, 65489, 13, 31, 65490, 13, 31, 65491, 13, 31, 65492, 13, 31, 65493, 13, 31, 65494, 13, 31, 65495, 13, 31, 65496, 13, 31, 65497, 13, 31, 65498, 13, 31, 65499, 13, 31, 65500, 13, 31, 65501, 13, 31, 65502, 13, 31, 65503, 13, 31, 65504, 13, 48, 17, 13, 48, 18, 13, 48, 19, 13, 48, 20, 13, 48, 21, 13, 48, 22, 13, 48, 23, 13, 48, 24, 13, 48, 25, 13, 48, 26, 13, 48, 27, 13, 48, 28, 13, 48, 29, 13, 48, 30, 13, 48, 31, 13, 48, 32, 13, 49, 17, 13, 49, 18, 13, 49, 19, 13, 49, 20, 13, 49, 21, 13, 49, 22, 13, 49, 23, 13, 49, 24, 13, 49, 25, 13, 49, 26, 13, 49, 27, 13, 49, 28, 13, 49, 29, 13, 49, 30, 13, 49, 31, 13, 49, 32, 13, 50, 17, 13, 50, 18, 13, 50, 19, 13, 50, 20, 13, 50, 21, 13, 50, 22, 13, 50, 23, 13, 50, 24, 13, 50, 25, 13, 50, 26, 13, 50, 27, 13, 50, 28, 13, 50, 29, 13, 50, 30, 13, 50, 31, 13, 50, 32, 13, 51, 17, 13, 51, 18, 13, 51, 19, 13, 51, 20, 13, 51, 21, 13, 51, 22, 13, 51, 23, 13, 51, 24, 13, 51, 25, 13, 51, 26, 13, 51, 27, 13, 51, 28, 13, 51, 29, 13, 51, 30, 13, 51, 31, 13, 51, 32, 13, 52, 17, 13, 52, 18, 13, 52, 19, 13, 52, 20, 13, 52, 21, 13, 52, 22, 13, 52, 23, 13, 52, 24, 13, 52, 25, 13, 52, 26, 13, 52, 27, 13, 52, 28, 13, 52, 29, 13, 52, 30, 13, 52, 31, 13, 52, 32, 13, 53, 17, 13, 53, 18, 13, 53, 19, 13, 53, 20, 13, 53, 21, 13, 53, 22, 13, 53, 23, 13, 53, 24, 13, 53, 25, 13, 53, 26, 13, 53, 27, 13, 53, 28, 13, 53, 29, 13, 53, 30, 13, 53, 31, 13, 53, 32, 13, 54, 17, 13, 54, 18, 13, 54, 19, 13, 54, 20, 13, 54, 21, 13, 54, 22, 13, 54, 23, 13, 54, 24, 13, 54, 25, 13, 54, 26, 13, 54, 27, 13, 54, 28, 13, 54, 29, 13, 54, 30, 13, 54, 31, 13, 54, 32, 13, 55, 17, 13, 55, 18, 13, 55, 19, 13, 55, 20, 13, 55, 21, 13, 55, 22, 13, 55, 23, 13, 55, 24, 13, 55, 25, 13, 55, 26, 13, 55, 27, 13, 55, 28, 13, 55, 29, 13, 55, 30, 13, 55, 31, 13, 55, 32, 13, 56, 17, 13, 56, 18, 13, 56, 19, 13, 56, 20, 13, 56, 21, 13, 56, 22, 13, 56, 23, 13, 56, 24, 13, 56, 25, 13, 56, 26, 13, 56, 27, 13, 56, 28, 13, 56, 29, 13, 56, 30, 13, 56, 31, 13, 56, 32, 13, 57, 17, 13, 57, 18, 13, 57, 19, 13, 57, 20, 13, 57, 21, 13, 57, 22, 13, 57, 23, 13, 57, 24, 13, 57, 25, 13, 57, 26, 13, 57, 27, 13, 57, 28, 13, 57, 29, 13, 57, 30, 13, 57, 31, 13, 57, 32, 13, 58, 17, 13, 58, 18, 13, 58, 19, 13, 58, 20, 13, 58, 21, 13, 58, 22, 13, 58, 23, 13, 58, 24, 13, 58, 25, 13, 58, 26, 13, 58, 27, 13, 58, 28, 13, 58, 29, 13, 58, 30, 13, 58, 31, 13, 58, 32, 13, 59, 17, 13, 59, 18, 13, 59, 19, 13, 59, 20, 13, 59, 21, 13, 59, 22, 13, 59, 23, 13, 59, 24, 13, 59, 25, 13, 59, 26, 13, 59, 27, 13, 59, 28, 13, 59, 29, 13, 59, 30, 13, 59, 31, 13, 59, 32, 13, 60, 17, 13, 60, 18, 13, 60, 19, 13, 60, 20, 13, 60, 21, 13, 60, 22, 13, 60, 23, 13, 60, 24, 13, 60, 25, 13, 60, 26, 13, 60, 27, 13, 60, 28, 13, 60, 29, 13, 60, 30, 13, 60, 31, 13, 60, 32, 13, 61, 17, 13, 61, 18, 13, 61, 19, 13, 61, 20, 13, 61, 21, 13, 61, 22, 13, 61, 23, 13, 61, 24, 13, 61, 25, 13, 61, 26, 13, 61, 27, 13, 61, 28, 13, 61, 29, 13, 61, 30, 13, 61, 31, 13, 61, 32, 13, 62, 17, 13, 62, 18, 13, 62, 19, 13, 62, 20, 13, 62, 21, 13, 62, 22, 13, 62, 23, 13, 62, 24, 13, 62, 25, 13, 62, 26, 13, 62, 27, 13, 62, 28, 13, 62, 29, 13, 62, 30, 13, 62, 31, 13, 62, 32, 13, 63, 17, 13, 63, 18, 13, 63, 19, 13, 63, 20, 13, 63, 21, 13, 63, 22, 13, 63, 23, 13, 63, 24, 13, 63, 25, 13, 63, 26, 13, 63, 27, 13, 63, 28, 13, 63, 29, 13, 63, 30, 13, 63, 31, 13, 63, 32, 13, 64, 17, 13, 64, 18, 13, 64, 19, 13, 64, 20, 13, 64, 21, 13, 64, 22, 13, 64, 23, 13, 64, 24, 13, 64, 25, 13, 64, 26, 13, 64, 27, 13, 64, 28, 13, 64, 29, 13, 64, 30, 13, 64, 31, 13, 64, 32, 13, 32, 17, 13, 32, 18, 13, 32, 19, 13, 32, 20, 13, 32, 21, 13, 32, 22, 13, 32, 23, 13, 32, 24, 13, 32, 25, 13, 32, 26, 13, 32, 27, 13, 32, 28, 13, 32, 29, 13, 32, 30, 13, 32, 31, 13, 32, 32, 13, 33, 17, 13, 33, 18, 13, 33, 19, 13, 33, 20, 13, 33, 21, 13, 33, 22, 13, 33, 23, 13, 33, 24, 13, 33, 25, 13, 33, 26, 13, 33, 27, 13, 33, 28, 13, 33, 29, 13, 33, 30, 13, 33, 31, 13, 33, 32, 13, 34, 17, 13, 34, 18, 13, 34, 19, 13, 34, 20, 13, 34, 21, 13, 34, 22, 13, 34, 23, 13, 34, 24, 13, 34, 25, 13, 34, 26, 13, 34, 27, 13, 34, 28, 13, 34, 29, 13, 34, 30, 13, 34, 31, 13, 34, 32, 13, 35, 17, 13, 35, 18, 13, 35, 19, 13, 35, 20, 13, 35, 21, 13, 35, 22, 13, 35, 23, 13, 35, 24, 13, 35, 25, 13, 35, 26, 13, 35, 27, 13, 35, 28, 13, 35, 29, 13, 35, 30, 13, 35, 31, 13, 35, 32, 13, 36, 17, 13, 36, 18, 13, 36, 19, 13, 36, 20, 13, 36, 21, 13, 36, 22, 13, 36, 23, 13, 36, 24, 13, 36, 25, 13, 36, 26, 13, 36, 27, 13, 36, 28, 13, 36, 29, 13, 36, 30, 13, 36, 31, 13, 36, 32, 13, 37, 17, 13, 37, 18, 13, 37, 19, 13, 37, 20, 13, 37, 21, 13, 37, 22, 13, 37, 23, 13, 37, 24, 13, 37, 25, 13, 37, 26, 13, 37, 27, 13, 37, 28, 13, 37, 29, 13, 37, 30, 13, 37, 31, 13, 37, 32, 13, 38, 17, 13, 38, 18, 13, 38, 19, 13, 38, 20, 13, 38, 21, 13, 38, 22, 13, 38, 23, 13, 38, 24, 13, 38, 25, 13, 38, 26, 13, 38, 27, 13, 38, 28, 13, 38, 29, 13, 38, 30, 13, 38, 31, 13, 38, 32, 13, 39, 17, 13, 39, 18, 13, 39, 19, 13, 39, 20, 13, 39, 21, 13, 39, 22, 13, 39, 23, 13, 39, 24, 13, 39, 25, 13, 39, 26, 13, 39, 27, 13, 39, 28, 13, 39, 29, 13, 39, 30, 13, 39, 31, 13, 39, 32, 13, 40, 17, 13, 40, 18, 13, 40, 19, 13, 40, 20, 13, 40, 21, 13, 40, 22, 13, 40, 23, 13, 40, 24, 13, 40, 25, 13, 40, 26, 13, 40, 27, 13, 40, 28, 13, 40, 29, 13, 40, 30, 13, 40, 31, 13, 40, 32, 13, 41, 17, 13, 41, 18, 13, 41, 19, 13, 41, 20, 13, 41, 21, 13, 41, 22, 13, 41, 23, 13, 41, 24, 13, 41, 25, 13, 41, 26, 13, 41, 27, 13, 41, 28, 13, 41, 29, 13, 41, 30, 13, 41, 31, 13, 41, 32, 13, 42, 17, 13, 42, 18, 13, 42, 19, 13, 42, 20, 13, 42, 21, 13, 42, 22, 13, 42, 23, 13, 42, 24, 13, 42, 25, 13, 42, 26, 13, 42, 27, 13, 42, 28, 13, 42, 29, 13, 42, 30, 13, 42, 31, 13, 42, 32, 13, 43, 17, 13, 43, 18, 13, 43, 19, 13, 43, 20, 13, 43, 21, 13, 43, 22, 13, 43, 23, 13, 43, 24, 13, 43, 25, 13, 43, 26, 13, 43, 27, 13, 43, 28, 13, 43, 29, 13, 43, 30, 13, 43, 31, 13, 43, 32, 13, 44, 17, 13, 44, 18, 13, 44, 19, 13, 44, 20, 13, 44, 21, 13, 44, 22, 13, 44, 23, 13, 44, 24, 13, 44, 25, 13, 44, 26, 13, 44, 27, 13, 44, 28, 13, 44, 29, 13, 44, 30, 13, 44, 31, 13, 44, 32, 13, 45, 17, 13, 45, 18, 13, 45, 19, 13, 45, 20, 13, 45, 21, 13, 45, 22, 13, 45, 23, 13, 45, 24, 13, 45, 25, 13, 45, 26, 13, 45, 27, 13, 45, 28, 13, 45, 29, 13, 45, 30, 13, 45, 31, 13, 45, 32, 13, 46, 17, 13, 46, 18, 13, 46, 19, 13, 46, 20, 13, 46, 21, 13, 46, 22, 13, 46, 23, 13, 46, 24, 13, 46, 25, 13, 46, 26, 13, 46, 27, 13, 46, 28, 13, 46, 29, 13, 46, 30, 13, 46, 31, 13, 46, 32, 13, 47, 17, 13, 47, 18, 13, 47, 19, 13, 47, 20, 13, 47, 21, 13, 47, 22, 13, 47, 23, 13, 47, 24, 13, 47, 25, 13, 47, 26, 13, 47, 27, 13, 47, 28, 13, 47, 29, 13, 47, 30, 13, 47, 31, 13, 47, 32, 13, 16, 17, 13, 16, 18, 13, 16, 19, 13, 16, 20, 13, 16, 21, 13, 16, 22, 13, 16, 23, 13, 16, 24, 13, 16, 25, 13, 16, 26, 13, 16, 27, 13, 16, 28, 13, 16, 29, 13, 16, 30, 13, 16, 31, 13, 16, 32, 13, 17, 17, 13, 17, 18, 13, 17, 19, 13, 17, 20, 13, 17, 21, 13, 17, 22, 13, 17, 23, 13, 17, 24, 13, 17, 25, 13, 17, 26, 13, 17, 27, 13, 17, 28, 13, 17, 29, 13, 17, 30, 13, 17, 31, 13, 17, 32, 13, 18, 17, 13, 18, 18, 13, 18, 19, 13, 18, 20, 13, 18, 21, 13, 18, 22, 13, 18, 23, 13, 18, 24, 13, 18, 25, 13, 18, 26, 13, 18, 27, 13, 18, 28, 13, 18, 29, 13, 18, 30, 13, 18, 31, 13, 18, 32, 13, 19, 17, 13, 19, 18, 13, 19, 19, 13, 19, 20, 13, 19, 21, 13, 19, 22, 13, 19, 23, 13, 19, 24, 13, 19, 25, 13, 19, 26, 13, 19, 27, 13, 19, 28, 13, 19, 29, 13, 19, 30, 13, 19, 31, 13, 19, 32, 13, 20, 17, 13, 20, 18, 13, 20, 19, 13, 20, 20, 13, 20, 21, 13, 20, 22, 13, 20, 23, 13, 20, 24, 13, 20, 25, 13, 20, 26, 13, 20, 27, 13, 20, 28, 13, 20, 29, 13, 20, 30, 13, 20, 31, 13, 20, 32, 13, 21, 17, 13, 21, 18, 13, 21, 19, 13, 21, 20, 13, 21, 21, 13, 21, 22, 13, 21, 23, 13, 21, 24, 13, 21, 25, 13, 21, 26, 13, 21, 27, 13, 21, 28, 13, 21, 29, 13, 21, 30, 13, 21, 31, 13, 21, 32, 13, 22, 17, 13, 22, 18, 13, 22, 19, 13, 22, 20, 13, 22, 21, 13, 22, 22, 13, 22, 23, 13, 22, 24, 13, 22, 25, 13, 22, 26, 13, 22, 27, 13, 22, 28, 13, 22, 29, 13, 22, 30, 13, 22, 31, 13, 22, 32, 13, 23, 17, 13, 23, 18, 13, 23, 19, 13, 23, 20, 13, 23, 21, 13, 23, 22, 13, 23, 23, 13, 23, 24, 13, 23, 25, 13, 23, 26, 13, 23, 27, 13, 23, 28, 13, 23, 29, 13, 23, 30, 13, 23, 31, 13, 23, 32, 13, 24, 17, 13, 24, 18, 13, 24, 19, 13, 24, 20, 13, 24, 21, 13, 24, 22, 13, 24, 23, 13, 24, 24, 13, 24, 25, 13, 24, 26, 13, 24, 27, 13, 24, 28, 13, 24, 29, 13, 24, 30, 13, 24, 31, 13, 24, 32, 13, 25, 17, 13, 25, 18, 13, 25, 19, 13, 25, 20, 13, 25, 21, 13, 25, 22, 13, 25, 23, 13, 25, 24, 13, 25, 25, 13, 25, 26, 13, 25, 27, 13, 25, 28, 13, 25, 29, 13, 25, 30, 13, 25, 31, 13, 25, 32, 13, 26, 17, 13, 26, 18, 13, 26, 19, 13, 26, 20, 13, 26, 21, 13, 26, 22, 13, 26, 23, 13, 26, 24, 13, 26, 25, 13, 26, 26, 13, 26, 27, 13, 26, 28, 13, 26, 29, 13, 26, 30, 13, 26, 31, 13, 26, 32, 13, 27, 17, 13, 27, 18, 13, 27, 19, 13, 27, 20, 13, 27, 21, 13, 27, 22, 13, 27, 23, 13, 27, 24, 13, 27, 25, 13, 27, 26, 13, 27, 27, 13, 27, 28, 13, 27, 29, 13, 27, 30, 13, 27, 31, 13, 27, 32, 13, 28, 17, 13, 28, 18, 13, 28, 19, 13, 28, 20, 13, 28, 21, 13, 28, 22, 13, 28, 23, 13, 28, 24, 13, 28, 25, 13, 28, 26, 13, 28, 27, 13, 28, 28, 13, 28, 29, 13, 28, 30, 13, 28, 31, 13, 28, 32, 13, 29, 17, 13, 29, 18, 13, 29, 19, 13, 29, 20, 13, 29, 21, 13, 29, 22, 13, 29, 23, 13, 29, 24, 13, 29, 25, 13, 29, 26, 13, 29, 27, 13, 29, 28, 13, 29, 29, 13, 29, 30, 13, 29, 31, 13, 29, 32, 13, 30, 17, 13, 30, 18, 13, 30, 19, 13, 30, 20, 13, 30, 21, 13, 30, 22, 13, 30, 23, 13, 30, 24, 13, 30, 25, 13, 30, 26, 13, 30, 27, 13, 30, 28, 13, 30, 29, 13, 30, 30, 13, 30, 31, 13, 30, 32, 13, 31, 17, 13, 31, 18, 13, 31, 19, 13, 31, 20, 13, 31, 21, 13, 31, 22, 13, 31, 23, 13, 31, 24, 13, 31, 25, 13, 31, 26, 13, 31, 27, 13, 31, 28, 13, 31, 29, 13, 31, 30, 13, 31, 31, 13, 31, 32, 13, 65, 17, 13, 65, 18, 13, 65, 19, 13, 65, 20, 13, 65, 21, 13, 65, 22, 13, 65, 23, 13, 65, 24, 13, 65, 25, 13, 65, 26, 13, 65, 27, 13, 65, 28, 13, 65, 29, 13, 65, 30, 13, 65, 31, 13, 65, 32, 13, 66, 17, 13, 66, 18, 13, 66, 19, 13, 66, 20, 13, 66, 21, 13, 66, 22, 13, 66, 23, 13, 66, 24, 13, 66, 25, 13, 66, 26, 13, 66, 27, 13, 66, 28, 13, 66, 29, 13, 66, 30, 13, 66, 31, 13, 66, 32, 13, 67, 17, 13, 67, 18, 13, 67, 19, 13, 67, 20, 13, 67, 21, 13, 67, 22, 13, 67, 23, 13, 67, 24, 13, 67, 25, 13, 67, 26, 13, 67, 27, 13, 67, 28, 13, 67, 29, 13, 67, 30, 13, 67, 31, 13, 67, 32, 13, 68, 17, 13, 68, 18, 13, 68, 19, 13, 68, 20, 13, 68, 21, 13, 68, 22, 13, 68, 23, 13, 68, 24, 13, 68, 25, 13, 68, 26, 13, 68, 27, 13, 68, 28, 13, 68, 29, 13, 68, 30, 13, 68, 31, 13, 68, 32, 13, 69, 17, 13, 69, 18, 13, 69, 19, 13, 69, 20, 13, 69, 21, 13, 69, 22, 13, 69, 23, 13, 69, 24, 13, 69, 25, 13, 69, 26, 13, 69, 27, 13, 69, 28, 13, 69, 29, 13, 69, 30, 13, 69, 31, 13, 69, 32, 13, 70, 17, 13, 70, 18, 13, 70, 19, 13, 70, 20, 13, 70, 21, 13, 70, 22, 13, 70, 23, 13, 70, 24, 13, 70, 25, 13, 70, 26, 13, 70, 27, 13, 70, 28, 13, 70, 29, 13, 70, 30, 13, 70, 31, 13, 70, 32, 13, 71, 17, 13, 71, 18, 13, 71, 19, 13, 71, 20, 13, 71, 21, 13, 71, 22, 13, 71, 23, 13, 71, 24, 13, 71, 25, 13, 71, 26, 13, 71, 27, 13, 71, 28, 13, 71, 29, 13, 71, 30, 13, 71, 31, 13, 71, 32, 13, 72, 17, 13, 72, 18, 13, 72, 19, 13, 72, 20, 13, 72, 21, 13, 72, 22, 13, 72, 23, 13, 72, 24, 13, 72, 25, 13, 72, 26, 13, 72, 27, 13, 72, 28, 13, 72, 29, 13, 72, 30, 13, 72, 31, 13, 72, 32, 13, 73, 17, 13, 73, 18, 13, 73, 19, 13, 73, 20, 13, 73, 21, 13, 73, 22, 13, 73, 23, 13, 73, 24, 13, 73, 25, 13, 73, 26, 13, 73, 27, 13, 73, 28, 13, 73, 29, 13, 73, 30, 13, 73, 31, 13, 73, 32, 13, 74, 17, 13, 74, 18, 13, 74, 19, 13, 74, 20, 13, 74, 21, 13, 74, 22, 13, 74, 23, 13, 74, 24, 13, 74, 25, 13, 74, 26, 13, 74, 27, 13, 74, 28, 13, 74, 29, 13, 74, 30, 13, 74, 31, 13, 74, 32, 13, 75, 17, 13, 75, 18, 13, 75, 19, 13, 75, 20, 13, 75, 21, 13, 75, 22, 13, 75, 23, 13, 75, 24, 13, 75, 25, 13, 75, 26, 13, 75, 27, 13, 75, 28, 13, 75, 29, 13, 75, 30, 13, 75, 31, 13, 75, 32, 13, 76, 17, 13, 76, 18, 13, 76, 19, 13, 76, 20, 13, 76, 21, 13, 76, 22, 13, 76, 23, 13, 76, 24, 13, 76, 25, 13, 76, 26, 13, 76, 27, 13, 76, 28, 13, 76, 29, 13, 76, 30, 13, 76, 31, 13, 76, 32, 13, 77, 17, 13, 77, 18, 13, 77, 19, 13, 77, 20, 13, 77, 21, 13, 77, 22, 13, 77, 23, 13, 77, 24, 13, 77, 25, 13, 77, 26, 13, 77, 27, 13, 77, 28, 13, 77, 29, 13, 77, 30, 13, 77, 31, 13, 77, 32, 13, 78, 17, 13, 78, 18, 13, 78, 19, 13, 78, 20, 13, 78, 21, 13, 78, 22, 13, 78, 23, 13, 78, 24, 13, 78, 25, 13, 78, 26, 13, 78, 27, 13, 78, 28, 13, 78, 29, 13, 78, 30, 13, 78, 31, 13, 78, 32, 13, 79, 17, 13, 79, 18, 13, 79, 19, 13, 79, 20, 13, 79, 21, 13, 79, 22, 13, 79, 23, 13, 79, 24, 13, 79, 25, 13, 79, 26, 13, 79, 27, 13, 79, 28, 13, 79, 29, 13, 79, 30, 13, 79, 31, 13, 79, 32, 13, 80, 17, 13, 80, 18, 13, 80, 19, 13, 80, 20, 13, 80, 21, 13, 80, 22, 13, 80, 23, 13, 80, 24, 13, 80, 25, 13, 80, 26, 13, 80, 27, 13, 80, 28, 13, 80, 29, 13, 80, 30, 13, 80, 31, 13, 80, 32, 13, 81, 0, 13, 81, 1, 13, 81, 2, 13, 81, 3, 13, 81, 4, 13, 81, 5, 13, 81, 6, 13, 81, 7, 13, 81, 8, 13, 81, 9, 13, 81, 10, 13, 81, 11, 13, 81, 12, 13, 81, 13, 13, 81, 14, 13, 81, 15, 13, 81, 16, 13, 82, 0, 13, 82, 1, 13, 82, 2, 13, 82, 3, 13, 82, 4, 13, 82, 5, 13, 82, 6, 13, 82, 7, 13, 82, 8, 13, 82, 9, 13, 82, 10, 13, 82, 11, 13, 82, 12, 13, 82, 13, 13, 82, 14, 13, 82, 15, 13, 82, 16, 13, 83, 0, 13, 83, 1, 13, 83, 2, 13, 83, 3, 13, 83, 4, 13, 83, 5, 13, 83, 6, 13, 83, 7, 13, 83, 8, 13, 83, 9, 13, 83, 10, 13, 83, 11, 13, 83, 12, 13, 83, 13, 13, 83, 14, 13, 83, 15, 13, 83, 16, 13, 84, 0, 13, 84, 1, 13, 84, 2, 13, 84, 3, 13, 84, 4, 13, 84, 5, 13, 84, 6, 13, 84, 7, 13, 84, 8, 13, 84, 9, 13, 84, 10, 13, 84, 11, 13, 84, 12, 13, 84, 13, 13, 84, 14, 13, 84, 15, 13, 84, 16, 13, 85, 0, 13, 85, 1, 13, 85, 2, 13, 85, 3, 13, 85, 4, 13, 85, 5, 13, 85, 6, 13, 85, 7, 13, 85, 8, 13, 85, 9, 13, 85, 10, 13, 85, 11, 13, 85, 12, 13, 85, 13, 13, 85, 14, 13, 85, 15, 13, 85, 16, 13, 86, 0, 13, 86, 1, 13, 86, 2, 13, 86, 3, 13, 86, 4, 13, 86, 5, 13, 86, 6, 13, 86, 7, 13, 86, 8, 13, 86, 9, 13, 86, 10, 13, 86, 11, 13, 86, 12, 13, 86, 13, 13, 86, 14, 13, 86, 15, 13, 86, 16, 13, 87, 0, 13, 87, 1, 13, 87, 2, 13, 87, 3, 13, 87, 4, 13, 87, 5, 13, 87, 6, 13, 87, 7, 13, 87, 8, 13, 87, 9, 13, 87, 10, 13, 87, 11, 13, 87, 12, 13, 87, 13, 13, 87, 14, 13, 87, 15, 13, 87, 16, 13, 88, 0, 13, 88, 1, 13, 88, 2, 13, 88, 3, 13, 88, 4, 13, 88, 5, 13, 88, 6, 13, 88, 7, 13, 88, 8, 13, 88, 9, 13, 88, 10, 13, 88, 11, 13, 88, 12, 13, 88, 13, 13, 88, 14, 13, 88, 15, 13, 88, 16, 13, 89, 0, 13, 89, 1, 13, 89, 2, 13, 89, 3, 13, 89, 4, 13, 89, 5, 13, 89, 6, 13, 89, 7, 13, 89, 8, 13, 89, 9, 13, 89, 10, 13, 89, 11, 13, 89, 12, 13, 89, 13, 13, 89, 14, 13, 89, 15, 13, 89, 16, 13, 90, 0, 13, 90, 1, 13, 90, 2, 13, 90, 3, 13, 90, 4, 13, 90, 5, 13, 90, 6, 13, 90, 7, 13, 90, 8, 13, 90, 9, 13, 90, 10, 13, 90, 11, 13, 90, 12, 13, 90, 13, 13, 90, 14, 13, 90, 15, 13, 90, 16, 13, 91, 0, 13, 91, 1, 13, 91, 2, 13, 91, 3, 13, 91, 4, 13, 91, 5, 13, 91, 6, 13, 91, 7, 13, 91, 8, 13, 91, 9, 13, 91, 10, 13, 91, 11, 13, 91, 12, 13, 91, 13, 13, 91, 14, 13, 91, 15, 13, 91, 16, 13, 92, 0, 13, 92, 1, 13, 92, 2, 13, 92, 3, 13, 92, 4, 13, 92, 5, 13, 92, 6, 13, 92, 7, 13, 92, 8, 13, 92, 9, 13, 92, 10, 13, 92, 11, 13, 92, 12, 13, 92, 13, 13, 92, 14, 13, 92, 15, 13, 92, 16, 13, 93, 0, 13, 93, 1, 13, 93, 2, 13, 93, 3, 13, 93, 4, 13, 93, 5, 13, 93, 6, 13, 93, 7, 13, 93, 8, 13, 93, 9, 13, 93, 10, 13, 93, 11, 13, 93, 12, 13, 93, 13, 13, 93, 14, 13, 93, 15, 13, 93, 16, 13, 94, 0, 13, 94, 1, 13, 94, 2, 13, 94, 3, 13, 94, 4, 13, 94, 5, 13, 94, 6, 13, 94, 7, 13, 94, 8, 13, 94, 9, 13, 94, 10, 13, 94, 11, 13, 94, 12, 13, 94, 13, 13, 94, 14, 13, 94, 15, 13, 94, 16, 13, 95, 0, 13, 95, 1, 13, 95, 2, 13, 95, 3, 13, 95, 4, 13, 95, 5, 13, 95, 6, 13, 95, 7, 13, 95, 8, 13, 95, 9, 13, 95, 10, 13, 95, 11, 13, 95, 12, 13, 95, 13, 13, 95, 14, 13, 95, 15, 13, 95, 16, 13, 96, 0, 13, 96, 1, 13, 96, 2, 13, 96, 3, 13, 96, 4, 13, 96, 5, 13, 96, 6, 13, 96, 7, 13, 96, 8, 13, 96, 9, 13, 96, 10, 13, 96, 11, 13, 96, 12, 13, 96, 13, 13, 96, 14, 13, 96, 15, 13, 96, 16, 13, 81, 17, 13, 81, 18, 13, 81, 19, 13, 81, 20, 13, 81, 21, 13, 81, 22, 13, 81, 23, 13, 81, 24, 13, 81, 25, 13, 81, 26, 13, 81, 27, 13, 81, 28, 13, 81, 29, 13, 81, 30, 13, 81, 31, 13, 81, 32, 13, 82, 17, 13, 82, 18, 13, 82, 19, 13, 82, 20, 13, 82, 21, 13, 82, 22, 13, 82, 23, 13, 82, 24, 13, 82, 25, 13, 82, 26, 13, 82, 27, 13, 82, 28, 13, 82, 29, 13, 82, 30, 13, 82, 31, 13, 82, 32, 13, 83, 17, 13, 83, 18, 13, 83, 19, 13, 83, 20, 13, 83, 21, 13, 83, 22, 13, 83, 23, 13, 83, 24, 13, 83, 25, 13, 83, 26, 13, 83, 27, 13, 83, 28, 13, 83, 29, 13, 83, 30, 13, 83, 31, 13, 83, 32, 13, 84, 17, 13, 84, 18, 13, 84, 19, 13, 84, 20, 13, 84, 21, 13, 84, 22, 13, 84, 23, 13, 84, 24, 13, 84, 25, 13, 84, 26, 13, 84, 27, 13, 84, 28, 13, 84, 29, 13, 84, 30, 13, 84, 31, 13, 84, 32, 13, 85, 17, 13, 85, 18, 13, 85, 19, 13, 85, 20, 13, 85, 21, 13, 85, 22, 13, 85, 23, 13, 85, 24, 13, 85, 25, 13, 85, 26, 13, 85, 27, 13, 85, 28, 13, 85, 29, 13, 85, 30, 13, 85, 31, 13, 85, 32, 13, 86, 17, 13, 86, 18, 13, 86, 19, 13, 86, 20, 13, 86, 21, 13, 86, 22, 13, 86, 23, 13, 86, 24, 13, 86, 25, 13, 86, 26, 13, 86, 27, 13, 86, 28, 13, 86, 29, 13, 86, 30, 13, 86, 31, 13, 86, 32, 13, 87, 17, 13, 87, 18, 13, 87, 19, 13, 87, 20, 13, 87, 21, 13, 87, 22, 13, 87, 23, 13, 87, 24, 13, 87, 25, 13, 87, 26, 13, 87, 27, 13, 87, 28, 13, 87, 29, 13, 87, 30, 13, 87, 31, 13, 87, 32, 13, 88, 17, 13, 88, 18, 13, 88, 19, 13, 88, 20, 13, 88, 21, 13, 88, 22, 13, 88, 23, 13, 88, 24, 13, 88, 25, 13, 88, 26, 13, 88, 27, 13, 88, 28, 13, 88, 29, 13, 88, 30, 13, 88, 31, 13, 88, 32, 13, 89, 17, 13, 89, 18, 13, 89, 19, 13, 89, 20, 13, 89, 21, 13, 89, 22, 13, 89, 23, 13, 89, 24, 13, 89, 25, 13, 89, 26, 13, 89, 27, 13, 89, 28, 13, 89, 29, 13, 89, 30, 13, 89, 31, 13, 89, 32, 13, 90, 17, 13, 90, 18, 13, 90, 19, 13, 90, 20, 13, 90, 21, 13, 90, 22, 13, 90, 23, 13, 90, 24, 13, 90, 25, 13, 90, 26, 13, 90, 27, 13, 90, 28, 13, 90, 29, 13, 90, 30, 13, 90, 31, 13, 90, 32, 13, 91, 17, 13, 91, 18, 13, 91, 19, 13, 91, 20, 13, 91, 21, 13, 91, 22, 13, 91, 23, 13, 91, 24, 13, 91, 25, 13, 91, 26, 13, 91, 27, 13, 91, 28, 13, 91, 29, 13, 91, 30, 13, 91, 31, 13, 91, 32, 13, 92, 17, 13, 92, 18, 13, 92, 19, 13, 92, 20, 13, 92, 21, 13, 92, 22, 13, 92, 23, 13, 92, 24, 13, 92, 25, 13, 92, 26, 13, 92, 27, 13, 92, 28, 13, 92, 29, 13, 92, 30, 13, 92, 31, 13, 92, 32, 13, 93, 17, 13, 93, 18, 13, 93, 19, 13, 93, 20, 13, 93, 21, 13, 93, 22, 13, 93, 23, 13, 93, 24, 13, 93, 25, 13, 93, 26, 13, 93, 27, 13, 93, 28, 13, 93, 29, 13, 93, 30, 13, 93, 31, 13, 93, 32, 13, 94, 17, 13, 94, 18, 13, 94, 19, 13, 94, 20, 13, 94, 21, 13, 94, 22, 13, 94, 23, 13, 94, 24, 13, 94, 25, 13, 94, 26, 13, 94, 27, 13, 94, 28, 13, 94, 29, 13, 94, 30, 13, 94, 31, 13, 94, 32, 13, 95, 17, 13, 95, 18, 13, 95, 19, 13, 95, 20, 13, 95, 21, 13, 95, 22, 13, 95, 23, 13, 95, 24, 13, 95, 25, 13, 95, 26, 13, 95, 27, 13, 95, 28, 13, 95, 29, 13, 95, 30, 13, 95, 31, 13, 95, 32, 13, 96, 17, 13, 96, 18, 13, 96, 19, 13, 96, 20, 13, 96, 21, 13, 96, 22, 13, 96, 23, 13, 96, 24, 13, 96, 25, 13, 96, 26, 13, 96, 27, 13, 96, 28, 13, 96, 29, 13, 96, 30, 13, 96, 31, 13, 96, 32, 13, 81, 65520, 13, 81, 65521, 13, 81, 65522, 13, 81, 65523, 13, 81, 65524, 13, 81, 65525, 13, 81, 65526, 13, 81, 65527, 13, 81, 65528, 13, 81, 65529, 13, 81, 65530, 13, 81, 65531, 13, 81, 65532, 13, 81, 65533, 13, 81, 65534, 13, 81, 65535, 13, 82, 65520, 13, 82, 65521, 13, 82, 65522, 13, 82, 65523, 13, 82, 65524, 13, 82, 65525, 13, 82, 65526, 13, 82, 65527, 13, 82, 65528, 13, 82, 65529, 13, 82, 65530, 13, 82, 65531, 13, 82, 65532, 13, 82, 65533, 13, 82, 65534, 13, 82, 65535, 13, 83, 65520, 13, 83, 65521, 13, 83, 65522, 13, 83, 65523, 13, 83, 65524, 13, 83, 65525, 13, 83, 65526, 13, 83, 65527, 13, 83, 65528, 13, 83, 65529, 13, 83, 65530, 13, 83, 65531, 13, 83, 65532, 13, 83, 65533, 13, 83, 65534, 13, 83, 65535, 13, 84, 65520, 13, 84, 65521, 13, 84, 65522, 13, 84, 65523, 13, 84, 65524, 13, 84, 65525, 13, 84, 65526, 13, 84, 65527, 13, 84, 65528, 13, 84, 65529, 13, 84, 65530, 13, 84, 65531, 13, 84, 65532, 13, 84, 65533, 13, 84, 65534, 13, 84, 65535, 13, 85, 65520, 13, 85, 65521, 13, 85, 65522, 13, 85, 65523, 13, 85, 65524, 13, 85, 65525, 13, 85, 65526, 13, 85, 65527, 13, 85, 65528, 13, 85, 65529, 13, 85, 65530, 13, 85, 65531, 13, 85, 65532, 13, 85, 65533, 13, 85, 65534, 13, 85, 65535, 13, 86, 65520, 13, 86, 65521, 13, 86, 65522, 13, 86, 65523, 13, 86, 65524, 13, 86, 65525, 13, 86, 65526, 13, 86, 65527, 13, 86, 65528, 13, 86, 65529, 13, 86, 65530, 13, 86, 65531, 13, 86, 65532, 13, 86, 65533, 13, 86, 65534, 13, 86, 65535, 13, 87, 65520, 13, 87, 65521, 13, 87, 65522, 13, 87, 65523, 13, 87, 65524, 13, 87, 65525, 13, 87, 65526, 13, 87, 65527, 13, 87, 65528, 13, 87, 65529, 13, 87, 65530, 13, 87, 65531, 13, 87, 65532, 13, 87, 65533, 13, 87, 65534, 13, 87, 65535, 13, 88, 65520, 13, 88, 65521, 13, 88, 65522, 13, 88, 65523, 13, 88, 65524, 13, 88, 65525, 13, 88, 65526, 13, 88, 65527, 13, 88, 65528, 13, 88, 65529, 13, 88, 65530, 13, 88, 65531, 13, 88, 65532, 13, 88, 65533, 13, 88, 65534, 13, 88, 65535, 13, 89, 65520, 13, 89, 65521, 13, 89, 65522, 13, 89, 65523, 13, 89, 65524, 13, 89, 65525, 13, 89, 65526, 13, 89, 65527, 13, 89, 65528, 13, 89, 65529, 13, 89, 65530, 13, 89, 65531, 13, 89, 65532, 13, 89, 65533, 13, 89, 65534, 13, 89, 65535, 13, 90, 65520, 13, 90, 65521, 13, 90, 65522, 13, 90, 65523, 13, 90, 65524, 13, 90, 65525, 13, 90, 65526, 13, 90, 65527, 13, 90, 65528, 13, 90, 65529, 13, 90, 65530, 13, 90, 65531, 13, 90, 65532, 13, 90, 65533, 13, 90, 65534, 13, 90, 65535, 13, 91, 65520, 13, 91, 65521, 13, 91, 65522, 13, 91, 65523, 13, 91, 65524, 13, 91, 65525, 13, 91, 65526, 13, 91, 65527, 13, 91, 65528, 13, 91, 65529, 13, 91, 65530, 13, 91, 65531, 13, 91, 65532, 13, 91, 65533, 13, 91, 65534, 13, 91, 65535, 13, 92, 65520, 13, 92, 65521, 13, 92, 65522, 13, 92, 65523, 13, 92, 65524, 13, 92, 65525, 13, 92, 65526, 13, 92, 65527, 13, 92, 65528, 13, 92, 65529, 13, 92, 65530, 13, 92, 65531, 13, 92, 65532, 13, 92, 65533, 13, 92, 65534, 13, 92, 65535, 13, 93, 65520, 13, 93, 65521, 13, 93, 65522, 13, 93, 65523, 13, 93, 65524, 13, 93, 65525, 13, 93, 65526, 13, 93, 65527, 13, 93, 65528, 13, 93, 65529, 13, 93, 65530, 13, 93, 65531, 13, 93, 65532, 13, 93, 65533, 13, 93, 65534, 13, 93, 65535, 13, 94, 65520, 13, 94, 65521, 13, 94, 65522, 13, 94, 65523, 13, 94, 65524, 13, 94, 65525, 13, 94, 65526, 13, 94, 65527, 13, 94, 65528, 13, 94, 65529, 13, 94, 65530, 13, 94, 65531, 13, 94, 65532, 13, 94, 65533, 13, 94, 65534, 13, 94, 65535, 13, 95, 65520, 13, 95, 65521, 13, 95, 65522, 13, 95, 65523, 13, 95, 65524, 13, 95, 65525, 13, 95, 65526, 13, 95, 65527, 13, 95, 65528, 13, 95, 65529, 13, 95, 65530, 13, 95, 65531, 13, 95, 65532, 13, 95, 65533, 13, 95, 65534, 13, 95, 65535, 13, 96, 65520, 13, 96, 65521, 13, 96, 65522, 13, 96, 65523, 13, 96, 65524, 13, 96, 65525, 13, 96, 65526, 13, 96, 65527, 13, 96, 65528, 13, 96, 65529, 13, 96, 65530, 13, 96, 65531, 13, 96, 65532, 13, 96, 65533, 13, 96, 65534, 13, 96, 65535, 13, 81, 65504, 13, 81, 65505, 13, 81, 65506, 13, 81, 65507, 13, 81, 65508, 13, 81, 65509, 13, 81, 65510, 13, 81, 65511, 13, 81, 65512, 13, 81, 65513, 13, 81, 65514, 13, 81, 65515, 13, 81, 65516, 13, 81, 65517, 13, 81, 65518, 13, 81, 65519, 13, 82, 65504, 13, 82, 65505, 13, 82, 65506, 13, 82, 65507, 13, 82, 65508, 13, 82, 65509, 13, 82, 65510, 13, 82, 65511, 13, 82, 65512, 13, 82, 65513, 13, 82, 65514, 13, 82, 65515, 13, 82, 65516, 13, 82, 65517, 13, 82, 65518, 13, 82, 65519, 13, 83, 65504, 13, 83, 65505, 13, 83, 65506, 13, 83, 65507, 13, 83, 65508, 13, 83, 65509, 13, 83, 65510, 13, 83, 65511, 13, 83, 65512, 13, 83, 65513, 13, 83, 65514, 13, 83, 65515, 13, 83, 65516, 13, 83, 65517, 13, 83, 65518, 13, 83, 65519, 13, 84, 65504, 13, 84, 65505, 13, 84, 65506, 13, 84, 65507, 13, 84, 65508, 13, 84, 65509, 13, 84, 65510, 13, 84, 65511, 13, 84, 65512, 13, 84, 65513, 13, 84, 65514, 13, 84, 65515, 13, 84, 65516, 13, 84, 65517, 13, 84, 65518, 13, 84, 65519, 13, 85, 65504, 13, 85, 65505, 13, 85, 65506, 13, 85, 65507, 13, 85, 65508, 13, 85, 65509, 13, 85, 65510, 13, 85, 65511, 13, 85, 65512, 13, 85, 65513, 13, 85, 65514, 13, 85, 65515, 13, 85, 65516, 13, 85, 65517, 13, 85, 65518, 13, 85, 65519, 13, 86, 65504, 13, 86, 65505, 13, 86, 65506, 13, 86, 65507, 13, 86, 65508, 13, 86, 65509, 13, 86, 65510, 13, 86, 65511, 13, 86, 65512, 13, 86, 65513, 13, 86, 65514, 13, 86, 65515, 13, 86, 65516, 13, 86, 65517, 13, 86, 65518, 13, 86, 65519, 13, 87, 65504, 13, 87, 65505, 13, 87, 65506, 13, 87, 65507, 13, 87, 65508, 13, 87, 65509, 13, 87, 65510, 13, 87, 65511, 13, 87, 65512, 13, 87, 65513, 13, 87, 65514, 13, 87, 65515, 13, 87, 65516, 13, 87, 65517, 13, 87, 65518, 13, 87, 65519, 13, 88, 65504, 13, 88, 65505, 13, 88, 65506, 13, 88, 65507, 13, 88, 65508, 13, 88, 65509, 13, 88, 65510, 13, 88, 65511, 13, 88, 65512, 13, 88, 65513, 13, 88, 65514, 13, 88, 65515, 13, 88, 65516, 13, 88, 65517, 13, 88, 65518, 13, 88, 65519, 13, 89, 65504, 13, 89, 65505, 13, 89, 65506, 13, 89, 65507, 13, 89, 65508, 13, 89, 65509, 13, 89, 65510, 13, 89, 65511, 13, 89, 65512, 13, 89, 65513, 13, 89, 65514, 13, 89, 65515, 13, 89, 65516, 13, 89, 65517, 13, 89, 65518, 13, 89, 65519, 13, 90, 65504, 13, 90, 65505, 13, 90, 65506, 13, 90, 65507, 13, 90, 65508, 13, 90, 65509, 13, 90, 65510, 13, 90, 65511, 13, 90, 65512, 13, 90, 65513, 13, 90, 65514, 13, 90, 65515, 13, 90, 65516, 13, 90, 65517, 13, 90, 65518, 13, 90, 65519, 13, 91, 65504, 13, 91, 65505, 13, 91, 65506, 13, 91, 65507, 13, 91, 65508, 13, 91, 65509, 13, 91, 65510, 13, 91, 65511, 13, 91, 65512, 13, 91, 65513, 13, 91, 65514, 13, 91, 65515, 13, 91, 65516, 13, 91, 65517, 13, 91, 65518, 13, 91, 65519, 13, 92, 65504, 13, 92, 65505, 13, 92, 65506, 13, 92, 65507, 13, 92, 65508, 13, 92, 65509, 13, 92, 65510, 13, 92, 65511, 13, 92, 65512, 13, 92, 65513, 13, 92, 65514, 13, 92, 65515, 13, 92, 65516, 13, 92, 65517, 13, 92, 65518, 13, 92, 65519, 13, 93, 65504, 13, 93, 65505, 13, 93, 65506, 13, 93, 65507, 13, 93, 65508, 13, 93, 65509, 13, 93, 65510, 13, 93, 65511, 13, 93, 65512, 13, 93, 65513, 13, 93, 65514, 13, 93, 65515, 13, 93, 65516, 13, 93, 65517, 13, 93, 65518, 13, 93, 65519, 13, 94, 65504, 13, 94, 65505, 13, 94, 65506, 13, 94, 65507, 13, 94, 65508, 13, 94, 65509, 13, 94, 65510, 13, 94, 65511, 13, 94, 65512, 13, 94, 65513, 13, 94, 65514, 13, 94, 65515, 13, 94, 65516, 13, 94, 65517, 13, 94, 65518, 13, 94, 65519, 13, 95, 65504, 13, 95, 65505, 13, 95, 65506, 13, 95, 65507, 13, 95, 65508, 13, 95, 65509, 13, 95, 65510, 13, 95, 65511, 13, 95, 65512, 13, 95, 65513, 13, 95, 65514, 13, 95, 65515, 13, 95, 65516, 13, 95, 65517, 13, 95, 65518, 13, 95, 65519, 13, 96, 65504, 13, 96, 65505, 13, 96, 65506, 13, 96, 65507, 13, 96, 65508, 13, 96, 65509, 13, 96, 65510, 13, 96, 65511, 13, 96, 65512, 13, 96, 65513, 13, 96, 65514, 13, 96, 65515, 13, 96, 65516, 13, 96, 65517, 13, 96, 65518, 13, 96, 65519, 13, 81, 65488, 13, 81, 65489, 13, 81, 65490, 13, 81, 65491, 13, 81, 65492, 13, 81, 65493, 13, 81, 65494, 13, 81, 65495, 13, 81, 65496, 13, 81, 65497, 13, 81, 65498, 13, 81, 65499, 13, 81, 65500, 13, 81, 65501, 13, 81, 65502, 13, 81, 65503, 13, 82, 65488, 13, 82, 65489, 13, 82, 65490, 13, 82, 65491, 13, 82, 65492, 13, 82, 65493, 13, 82, 65494, 13, 82, 65495, 13, 82, 65496, 13, 82, 65497, 13, 82, 65498, 13, 82, 65499, 13, 82, 65500, 13, 82, 65501, 13, 82, 65502, 13, 82, 65503, 13, 83, 65488, 13, 83, 65489, 13, 83, 65490, 13, 83, 65491, 13, 83, 65492, 13, 83, 65493, 13, 83, 65494, 13, 83, 65495, 13, 83, 65496, 13, 83, 65497, 13, 83, 65498, 13, 83, 65499, 13, 83, 65500, 13, 83, 65501, 13, 83, 65502, 13, 83, 65503, 13, 84, 65488, 13, 84, 65489, 13, 84, 65490, 13, 84, 65491, 13, 84, 65492, 13, 84, 65493, 13, 84, 65494, 13, 84, 65495, 13, 84, 65496, 13, 84, 65497, 13, 84, 65498, 13, 84, 65499, 13, 84, 65500, 13, 84, 65501, 13, 84, 65502, 13, 84, 65503, 13, 85, 65488, 13, 85, 65489, 13, 85, 65490, 13, 85, 65491, 13, 85, 65492, 13, 85, 65493, 13, 85, 65494, 13, 85, 65495, 13, 85, 65496, 13, 85, 65497, 13, 85, 65498, 13, 85, 65499, 13, 85, 65500, 13, 85, 65501, 13, 85, 65502, 13, 85, 65503, 13, 86, 65488, 13, 86, 65489, 13, 86, 65490, 13, 86, 65491, 13, 86, 65492, 13, 86, 65493, 13, 86, 65494, 13, 86, 65495, 13, 86, 65496, 13, 86, 65497, 13, 86, 65498, 13, 86, 65499, 13, 86, 65500, 13, 86, 65501, 13, 86, 65502, 13, 86, 65503, 13, 87, 65488, 13, 87, 65489, 13, 87, 65490, 13, 87, 65491, 13, 87, 65492, 13, 87, 65493, 13, 87, 65494, 13, 87, 65495, 13, 87, 65496, 13, 87, 65497, 13, 87, 65498, 13, 87, 65499, 13, 87, 65500, 13, 87, 65501, 13, 87, 65502, 13, 87, 65503, 13, 88, 65488, 13, 88, 65489, 13, 88, 65490, 13, 88, 65491, 13, 88, 65492, 13, 88, 65493, 13, 88, 65494, 13, 88, 65495, 13, 88, 65496, 13, 88, 65497, 13, 88, 65498, 13, 88, 65499, 13, 88, 65500, 13, 88, 65501, 13, 88, 65502, 13, 88, 65503, 13, 89, 65488, 13, 89, 65489, 13, 89, 65490, 13, 89, 65491, 13, 89, 65492, 13, 89, 65493, 13, 89, 65494, 13, 89, 65495, 13, 89, 65496, 13, 89, 65497, 13, 89, 65498, 13, 89, 65499, 13, 89, 65500, 13, 89, 65501, 13, 89, 65502, 13, 89, 65503, 13, 90, 65488, 13, 90, 65489, 13, 90, 65490, 13, 90, 65491, 13, 90, 65492, 13, 90, 65493, 13, 90, 65494, 13, 90, 65495, 13, 90, 65496, 13, 90, 65497, 13, 90, 65498, 13, 90, 65499, 13, 90, 65500, 13, 90, 65501, 13, 90, 65502, 13, 90, 65503, 13, 91, 65488, 13, 91, 65489, 13, 91, 65490, 13, 91, 65491, 13, 91, 65492, 13, 91, 65493, 13, 91, 65494, 13, 91, 65495, 13, 91, 65496, 13, 91, 65497, 13, 91, 65498, 13, 91, 65499, 13, 91, 65500, 13, 91, 65501, 13, 91, 65502, 13, 91, 65503, 13, 92, 65488, 13, 92, 65489, 13, 92, 65490, 13, 92, 65491, 13, 92, 65492, 13, 92, 65493, 13, 92, 65494, 13, 92, 65495, 13, 92, 65496, 13, 92, 65497, 13, 92, 65498, 13, 92, 65499, 13, 92, 65500, 13, 92, 65501, 13, 92, 65502, 13, 92, 65503, 13, 93, 65488, 13, 93, 65489, 13, 93, 65490, 13, 93, 65491, 13, 93, 65492, 13, 93, 65493, 13, 93, 65494, 13, 93, 65495, 13, 93, 65496, 13, 93, 65497, 13, 93, 65498, 13, 93, 65499, 13, 93, 65500, 13, 93, 65501, 13, 93, 65502, 13, 93, 65503, 13, 94, 65488, 13, 94, 65489, 13, 94, 65490, 13, 94, 65491, 13, 94, 65492, 13, 94, 65493, 13, 94, 65494, 13, 94, 65495, 13, 94, 65496, 13, 94, 65497, 13, 94, 65498, 13, 94, 65499, 13, 94, 65500, 13, 94, 65501, 13, 94, 65502, 13, 94, 65503, 13, 95, 65488, 13, 95, 65489, 13, 95, 65490, 13, 95, 65491, 13, 95, 65492, 13, 95, 65493, 13, 95, 65494, 13, 95, 65495, 13, 95, 65496, 13, 95, 65497, 13, 95, 65498, 13, 95, 65499, 13, 95, 65500, 13, 95, 65501, 13, 95, 65502, 13, 95, 65503, 13, 96, 65488, 13, 96, 65489, 13, 96, 65490, 13, 96, 65491, 13, 96, 65492, 13, 96, 65493, 13, 96, 65494, 13, 96, 65495, 13, 96, 65496, 13, 96, 65497, 13, 96, 65498, 13, 96, 65499, 13, 96, 65500, 13, 96, 65501, 13, 96, 65502, 13, 96, 65503, 13, 17, 65472, 13, 17, 65473, 13, 17, 65474, 13, 17, 65475, 13, 17, 65476, 13, 17, 65477, 13, 17, 65478, 13, 17, 65479, 13, 17, 65480, 13, 17, 65481, 13, 17, 65482, 13, 17, 65483, 13, 17, 65484, 13, 17, 65485, 13, 17, 65486, 13, 17, 65487, 13, 18, 65472, 13, 18, 65473, 13, 18, 65474, 13, 18, 65475, 13, 18, 65476, 13, 18, 65477, 13, 18, 65478, 13, 18, 65479, 13, 18, 65480, 13, 18, 65481, 13, 18, 65482, 13, 18, 65483, 13, 18, 65484, 13, 18, 65485, 13, 18, 65486, 13, 18, 65487, 13, 19, 65472, 13, 19, 65473, 13, 19, 65474, 13, 19, 65475, 13, 19, 65476, 13, 19, 65477, 13, 19, 65478, 13, 19, 65479, 13, 19, 65480, 13, 19, 65481, 13, 19, 65482, 13, 19, 65483, 13, 19, 65484, 13, 19, 65485, 13, 19, 65486, 13, 19, 65487, 13, 20, 65472, 13, 20, 65473, 13, 20, 65474, 13, 20, 65475, 13, 20, 65476, 13, 20, 65477, 13, 20, 65478, 13, 20, 65479, 13, 20, 65480, 13, 20, 65481, 13, 20, 65482, 13, 20, 65483, 13, 20, 65484, 13, 20, 65485, 13, 20, 65486, 13, 20, 65487, 13, 21, 65472, 13, 21, 65473, 13, 21, 65474, 13, 21, 65475, 13, 21, 65476, 13, 21, 65477, 13, 21, 65478, 13, 21, 65479, 13, 21, 65480, 13, 21, 65481, 13, 21, 65482, 13, 21, 65483, 13, 21, 65484, 13, 21, 65485, 13, 21, 65486, 13, 21, 65487, 13, 22, 65472, 13, 22, 65473, 13, 22, 65474, 13, 22, 65475, 13, 22, 65476, 13, 22, 65477, 13, 22, 65478, 13, 22, 65479, 13, 22, 65480, 13, 22, 65481, 13, 22, 65482, 13, 22, 65483, 13, 22, 65484, 13, 22, 65485, 13, 22, 65486, 13, 22, 65487, 13, 23, 65472, 13, 23, 65473, 13, 23, 65474, 13, 23, 65475, 13, 23, 65476, 13, 23, 65477, 13, 23, 65478, 13, 23, 65479, 13, 23, 65480, 13, 23, 65481, 13, 23, 65482, 13, 23, 65483, 13, 23, 65484, 13, 23, 65485, 13, 23, 65486, 13, 23, 65487, 13, 24, 65472, 13, 24, 65473, 13, 24, 65474, 13, 24, 65475, 13, 24, 65476, 13, 24, 65477, 13, 24, 65478, 13, 24, 65479, 13, 24, 65480, 13, 24, 65481, 13, 24, 65482, 13, 24, 65483, 13, 24, 65484, 13, 24, 65485, 13, 24, 65486, 13, 24, 65487, 13, 25, 65472, 13, 25, 65473, 13, 25, 65474, 13, 25, 65475, 13, 25, 65476, 13, 25, 65477, 13, 25, 65478, 13, 25, 65479, 13, 25, 65480, 13, 25, 65481, 13, 25, 65482, 13, 25, 65483, 13, 25, 65484, 13, 25, 65485, 13, 25, 65486, 13, 25, 65487, 13, 26, 65472, 13, 26, 65473, 13, 26, 65474, 13, 26, 65475, 13, 26, 65476, 13, 26, 65477, 13, 26, 65478, 13, 26, 65479, 13, 26, 65480, 13, 26, 65481, 13, 26, 65482, 13, 26, 65483, 13, 26, 65484, 13, 26, 65485, 13, 26, 65486, 13, 26, 65487, 13, 27, 65472, 13, 27, 65473, 13, 27, 65474, 13, 27, 65475, 13, 27, 65476, 13, 27, 65477, 13, 27, 65478, 13, 27, 65479, 13, 27, 65480, 13, 27, 65481, 13, 27, 65482, 13, 27, 65483, 13, 27, 65484, 13, 27, 65485, 13, 27, 65486, 13, 27, 65487, 13, 28, 65472, 13, 28, 65473, 13, 28, 65474, 13, 28, 65475, 13, 28, 65476, 13, 28, 65477, 13, 28, 65478, 13, 28, 65479, 13, 28, 65480, 13, 28, 65481, 13, 28, 65482, 13, 28, 65483, 13, 28, 65484, 13, 28, 65485, 13, 28, 65486, 13, 28, 65487, 13, 29, 65472, 13, 29, 65473, 13, 29, 65474, 13, 29, 65475, 13, 29, 65476, 13, 29, 65477, 13, 29, 65478, 13, 29, 65479, 13, 29, 65480, 13, 29, 65481, 13, 29, 65482, 13, 29, 65483, 13, 29, 65484, 13, 29, 65485, 13, 29, 65486, 13, 29, 65487, 13, 30, 65472, 13, 30, 65473, 13, 30, 65474, 13, 30, 65475, 13, 30, 65476, 13, 30, 65477, 13, 30, 65478, 13, 30, 65479, 13, 30, 65480, 13, 30, 65481, 13, 30, 65482, 13, 30, 65483, 13, 30, 65484, 13, 30, 65485, 13, 30, 65486, 13, 30, 65487, 13, 31, 65472, 13, 31, 65473, 13, 31, 65474, 13, 31, 65475, 13, 31, 65476, 13, 31, 65477, 13, 31, 65478, 13, 31, 65479, 13, 31, 65480, 13, 31, 65481, 13, 31, 65482, 13, 31, 65483, 13, 31, 65484, 13, 31, 65485, 13, 31, 65486, 13, 31, 65487, 13, 32, 65472, 13, 32, 65473, 13, 32, 65474, 13, 32, 65475, 13, 32, 65476, 13, 32, 65477, 13, 32, 65478, 13, 32, 65479, 13, 32, 65480, 13, 32, 65481, 13, 32, 65482, 13, 32, 65483, 13, 32, 65484, 13, 32, 65485, 13, 32, 65486, 13, 32, 65487, 13, 33, 65472, 13, 33, 65473, 13, 33, 65474, 13, 33, 65475, 13, 33, 65476, 13, 33, 65477, 13, 33, 65478, 13, 33, 65479, 13, 33, 65480, 13, 33, 65481, 13, 33, 65482, 13, 33, 65483, 13, 33, 65484, 13, 33, 65485, 13, 33, 65486, 13, 33, 65487, 13, 16, 65488, 13, 16, 65489, 13, 16, 65490, 13, 16, 65491, 13, 16, 65492, 13, 16, 65493, 13, 16, 65494, 13, 16, 65495, 13, 16, 65496, 13, 16, 65497, 13, 16, 65498, 13, 16, 65499, 13, 16, 65500, 13, 16, 65501, 13, 16, 65502, 13, 16, 65503, 13, 16, 65504, 13, 16, 65472, 13, 16, 65473, 13, 16, 65474, 13, 16, 65475, 13, 16, 65476, 13, 16, 65477, 13, 16, 65478, 13, 16, 65479, 13, 16, 65480, 13, 16, 65481, 13, 16, 65482, 13, 16, 65483, 13, 16, 65484, 13, 16, 65485, 13, 16, 65486, 13, 16, 65487, 13, 34, 65472, 13, 34, 65473, 13, 34, 65474, 13, 34, 65475, 13, 34, 65476, 13, 34, 65477, 13, 34, 65478, 13, 34, 65479, 13, 34, 65480, 13, 34, 65481, 13, 34, 65482, 13, 34, 65483, 13, 34, 65484, 13, 34, 65485, 13, 34, 65486, 13, 34, 65487, 13, 35, 65472, 13, 35, 65473, 13, 35, 65474, 13, 35, 65475, 13, 35, 65476, 13, 35, 65477, 13, 35, 65478, 13, 35, 65479, 13, 35, 65480, 13, 35, 65481, 13, 35, 65482, 13, 35, 65483, 13, 35, 65484, 13, 35, 65485, 13, 35, 65486, 13, 35, 65487, 13, 36, 65472, 13, 36, 65473, 13, 36, 65474, 13, 36, 65475, 13, 36, 65476, 13, 36, 65477, 13, 36, 65478, 13, 36, 65479, 13, 36, 65480, 13, 36, 65481, 13, 36, 65482, 13, 36, 65483, 13, 36, 65484, 13, 36, 65485, 13, 36, 65486, 13, 36, 65487, 13, 37, 65472, 13, 37, 65473, 13, 37, 65474, 13, 37, 65475, 13, 37, 65476, 13, 37, 65477, 13, 37, 65478, 13, 37, 65479, 13, 37, 65480, 13, 37, 65481, 13, 37, 65482, 13, 37, 65483, 13, 37, 65484, 13, 37, 65485, 13, 37, 65486, 13, 37, 65487, 13, 38, 65472, 13, 38, 65473, 13, 38, 65474, 13, 38, 65475, 13, 38, 65476, 13, 38, 65477, 13, 38, 65478, 13, 38, 65479, 13, 38, 65480, 13, 38, 65481, 13, 38, 65482, 13, 38, 65483, 13, 38, 65484, 13, 38, 65485, 13, 38, 65486, 13, 38, 65487, 13, 39, 65472, 13, 39, 65473, 13, 39, 65474, 13, 39, 65475, 13, 39, 65476, 13, 39, 65477, 13, 39, 65478, 13, 39, 65479, 13, 39, 65480, 13, 39, 65481, 13, 39, 65482, 13, 39, 65483, 13, 39, 65484, 13, 39, 65485, 13, 39, 65486, 13, 39, 65487, 13, 40, 65472, 13, 40, 65473, 13, 40, 65474, 13, 40, 65475, 13, 40, 65476, 13, 40, 65477, 13, 40, 65478, 13, 40, 65479, 13, 40, 65480, 13, 40, 65481, 13, 40, 65482, 13, 40, 65483, 13, 40, 65484, 13, 40, 65485, 13, 40, 65486, 13, 40, 65487, 13, 41, 65472, 13, 41, 65473, 13, 41, 65474, 13, 41, 65475, 13, 41, 65476, 13, 41, 65477, 13, 41, 65478, 13, 41, 65479, 13, 41, 65480, 13, 41, 65481, 13, 41, 65482, 13, 41, 65483, 13, 41, 65484, 13, 41, 65485, 13, 41, 65486, 13, 41, 65487, 13, 42, 65472, 13, 42, 65473, 13, 42, 65474, 13, 42, 65475, 13, 42, 65476, 13, 42, 65477, 13, 42, 65478, 13, 42, 65479, 13, 42, 65480, 13, 42, 65481, 13, 42, 65482, 13, 42, 65483, 13, 42, 65484, 13, 42, 65485, 13, 42, 65486, 13, 42, 65487, 13, 43, 65472, 13, 43, 65473, 13, 43, 65474, 13, 43, 65475, 13, 43, 65476, 13, 43, 65477, 13, 43, 65478, 13, 43, 65479, 13, 43, 65480, 13, 43, 65481, 13, 43, 65482, 13, 43, 65483, 13, 43, 65484, 13, 43, 65485, 13, 43, 65486, 13, 43, 65487, 13, 44, 65472, 13, 44, 65473, 13, 44, 65474, 13, 44, 65475, 13, 44, 65476, 13, 44, 65477, 13, 44, 65478, 13, 44, 65479, 13, 44, 65480, 13, 44, 65481, 13, 44, 65482, 13, 44, 65483, 13, 44, 65484, 13, 44, 65485, 13, 44, 65486, 13, 44, 65487, 13, 45, 65472, 13, 45, 65473, 13, 45, 65474, 13, 45, 65475, 13, 45, 65476, 13, 45, 65477, 13, 45, 65478, 13, 45, 65479, 13, 45, 65480, 13, 45, 65481, 13, 45, 65482, 13, 45, 65483, 13, 45, 65484, 13, 45, 65485, 13, 45, 65486, 13, 45, 65487, 13, 46, 65472, 13, 46, 65473, 13, 46, 65474, 13, 46, 65475, 13, 46, 65476, 13, 46, 65477, 13, 46, 65478, 13, 46, 65479, 13, 46, 65480, 13, 46, 65481, 13, 46, 65482, 13, 46, 65483, 13, 46, 65484, 13, 46, 65485, 13, 46, 65486, 13, 46, 65487, 13, 47, 65472, 13, 47, 65473, 13, 47, 65474, 13, 47, 65475, 13, 47, 65476, 13, 47, 65477, 13, 47, 65478, 13, 47, 65479, 13, 47, 65480, 13, 47, 65481, 13, 47, 65482, 13, 47, 65483, 13, 47, 65484, 13, 47, 65485, 13, 47, 65486, 13, 47, 65487, 13, 48, 65472, 13, 48, 65473, 13, 48, 65474, 13, 48, 65475, 13, 48, 65476, 13, 48, 65477, 13, 48, 65478, 13, 48, 65479, 13, 48, 65480, 13, 48, 65481, 13, 48, 65482, 13, 48, 65483, 13, 48, 65484, 13, 48, 65485, 13, 48, 65486, 13, 48, 65487, 13, 49, 65472, 13, 49, 65473, 13, 49, 65474, 13, 49, 65475, 13, 49, 65476, 13, 49, 65477, 13, 49, 65478, 13, 49, 65479, 13, 49, 65480, 13, 49, 65481, 13, 49, 65482, 13, 49, 65483, 13, 49, 65484, 13, 49, 65485, 13, 49, 65486, 13, 49, 65487, 13, 50, 65472, 13, 50, 65473, 13, 50, 65474, 13, 50, 65475, 13, 50, 65476, 13, 50, 65477, 13, 50, 65478, 13, 50, 65479, 13, 50, 65480, 13, 50, 65481, 13, 50, 65482, 13, 50, 65483, 13, 50, 65484, 13, 50, 65485, 13, 50, 65486, 13, 50, 65487, 13, 51, 65472, 13, 51, 65473, 13, 51, 65474, 13, 51, 65475, 13, 51, 65476, 13, 51, 65477, 13, 51, 65478, 13, 51, 65479, 13, 51, 65480, 13, 51, 65481, 13, 51, 65482, 13, 51, 65483, 13, 51, 65484, 13, 51, 65485, 13, 51, 65486, 13, 51, 65487, 13, 52, 65472, 13, 52, 65473, 13, 52, 65474, 13, 52, 65475, 13, 52, 65476, 13, 52, 65477, 13, 52, 65478, 13, 52, 65479, 13, 52, 65480, 13, 52, 65481, 13, 52, 65482, 13, 52, 65483, 13, 52, 65484, 13, 52, 65485, 13, 52, 65486, 13, 52, 65487, 13, 53, 65472, 13, 53, 65473, 13, 53, 65474, 13, 53, 65475, 13, 53, 65476, 13, 53, 65477, 13, 53, 65478, 13, 53, 65479, 13, 53, 65480, 13, 53, 65481, 13, 53, 65482, 13, 53, 65483, 13, 53, 65484, 13, 53, 65485, 13, 53, 65486, 13, 53, 65487, 13, 54, 65472, 13, 54, 65473, 13, 54, 65474, 13, 54, 65475, 13, 54, 65476, 13, 54, 65477, 13, 54, 65478, 13, 54, 65479, 13, 54, 65480, 13, 54, 65481, 13, 54, 65482, 13, 54, 65483, 13, 54, 65484, 13, 54, 65485, 13, 54, 65486, 13, 54, 65487, 13, 55, 65472, 13, 55, 65473, 13, 55, 65474, 13, 55, 65475, 13, 55, 65476, 13, 55, 65477, 13, 55, 65478, 13, 55, 65479, 13, 55, 65480, 13, 55, 65481, 13, 55, 65482, 13, 55, 65483, 13, 55, 65484, 13, 55, 65485, 13, 55, 65486, 13, 55, 65487, 13, 56, 65472, 13, 56, 65473, 13, 56, 65474, 13, 56, 65475, 13, 56, 65476, 13, 56, 65477, 13, 56, 65478, 13, 56, 65479, 13, 56, 65480, 13, 56, 65481, 13, 56, 65482, 13, 56, 65483, 13, 56, 65484, 13, 56, 65485, 13, 56, 65486, 13, 56, 65487, 13, 57, 65472, 13, 57, 65473, 13, 57, 65474, 13, 57, 65475, 13, 57, 65476, 13, 57, 65477, 13, 57, 65478, 13, 57, 65479, 13, 57, 65480, 13, 57, 65481, 13, 57, 65482, 13, 57, 65483, 13, 57, 65484, 13, 57, 65485, 13, 57, 65486, 13, 57, 65487, 13, 58, 65472, 13, 58, 65473, 13, 58, 65474, 13, 58, 65475, 13, 58, 65476, 13, 58, 65477, 13, 58, 65478, 13, 58, 65479, 13, 58, 65480, 13, 58, 65481, 13, 58, 65482, 13, 58, 65483, 13, 58, 65484, 13, 58, 65485, 13, 58, 65486, 13, 58, 65487, 13, 59, 65472, 13, 59, 65473, 13, 59, 65474, 13, 59, 65475, 13, 59, 65476, 13, 59, 65477, 13, 59, 65478, 13, 59, 65479, 13, 59, 65480, 13, 59, 65481, 13, 59, 65482, 13, 59, 65483, 13, 59, 65484, 13, 59, 65485, 13, 59, 65486, 13, 59, 65487, 13, 60, 65472, 13, 60, 65473, 13, 60, 65474, 13, 60, 65475, 13, 60, 65476, 13, 60, 65477, 13, 60, 65478, 13, 60, 65479, 13, 60, 65480, 13, 60, 65481, 13, 60, 65482, 13, 60, 65483, 13, 60, 65484, 13, 60, 65485, 13, 60, 65486, 13, 60, 65487, 13, 61, 65472, 13, 61, 65473, 13, 61, 65474, 13, 61, 65475, 13, 61, 65476, 13, 61, 65477, 13, 61, 65478, 13, 61, 65479, 13, 61, 65480, 13, 61, 65481, 13, 61, 65482, 13, 61, 65483, 13, 61, 65484, 13, 61, 65485, 13, 61, 65486, 13, 61, 65487, 13, 62, 65472, 13, 62, 65473, 13, 62, 65474, 13, 62, 65475, 13, 62, 65476, 13, 62, 65477, 13, 62, 65478, 13, 62, 65479, 13, 62, 65480, 13, 62, 65481, 13, 62, 65482, 13, 62, 65483, 13, 62, 65484, 13, 62, 65485, 13, 62, 65486, 13, 62, 65487, 13, 63, 65472, 13, 63, 65473, 13, 63, 65474, 13, 63, 65475, 13, 63, 65476, 13, 63, 65477, 13, 63, 65478, 13, 63, 65479, 13, 63, 65480, 13, 63, 65481, 13, 63, 65482, 13, 63, 65483, 13, 63, 65484, 13, 63, 65485, 13, 63, 65486, 13, 63, 65487, 13, 64, 65472, 13, 64, 65473, 13, 64, 65474, 13, 64, 65475, 13, 64, 65476, 13, 64, 65477, 13, 64, 65478, 13, 64, 65479, 13, 64, 65480, 13, 64, 65481, 13, 64, 65482, 13, 64, 65483, 13, 64, 65484, 13, 64, 65485, 13, 64, 65486, 13, 64, 65487, 13, 65, 65472, 13, 65, 65473, 13, 65, 65474, 13, 65, 65475, 13, 65, 65476, 13, 65, 65477, 13, 65, 65478, 13, 65, 65479, 13, 65, 65480, 13, 65, 65481, 13, 65, 65482, 13, 65, 65483, 13, 65, 65484, 13, 65, 65485, 13, 65, 65486, 13, 65, 65487, 13, 66, 65472, 13, 66, 65473, 13, 66, 65474, 13, 66, 65475, 13, 66, 65476, 13, 66, 65477, 13, 66, 65478, 13, 66, 65479, 13, 66, 65480, 13, 66, 65481, 13, 66, 65482, 13, 66, 65483, 13, 66, 65484, 13, 66, 65485, 13, 66, 65486, 13, 66, 65487, 13, 67, 65472, 13, 67, 65473, 13, 67, 65474, 13, 67, 65475, 13, 67, 65476, 13, 67, 65477, 13, 67, 65478, 13, 67, 65479, 13, 67, 65480, 13, 67, 65481, 13, 67, 65482, 13, 67, 65483, 13, 67, 65484, 13, 67, 65485, 13, 67, 65486, 13, 67, 65487, 13, 68, 65472, 13, 68, 65473, 13, 68, 65474, 13, 68, 65475, 13, 68, 65476, 13, 68, 65477, 13, 68, 65478, 13, 68, 65479, 13, 68, 65480, 13, 68, 65481, 13, 68, 65482, 13, 68, 65483, 13, 68, 65484, 13, 68, 65485, 13, 68, 65486, 13, 68, 65487, 13, 69, 65472, 13, 69, 65473, 13, 69, 65474, 13, 69, 65475, 13, 69, 65476, 13, 69, 65477, 13, 69, 65478, 13, 69, 65479, 13, 69, 65480, 13, 69, 65481, 13, 69, 65482, 13, 69, 65483, 13, 69, 65484, 13, 69, 65485, 13, 69, 65486, 13, 69, 65487, 13, 70, 65472, 13, 70, 65473, 13, 70, 65474, 13, 70, 65475, 13, 70, 65476, 13, 70, 65477, 13, 70, 65478, 13, 70, 65479, 13, 70, 65480, 13, 70, 65481, 13, 70, 65482, 13, 70, 65483, 13, 70, 65484, 13, 70, 65485, 13, 70, 65486, 13, 70, 65487, 13, 71, 65472, 13, 71, 65473, 13, 71, 65474, 13, 71, 65475, 13, 71, 65476, 13, 71, 65477, 13, 71, 65478, 13, 71, 65479, 13, 71, 65480, 13, 71, 65481, 13, 71, 65482, 13, 71, 65483, 13, 71, 65484, 13, 71, 65485, 13, 71, 65486, 13, 71, 65487, 13, 72, 65472, 13, 72, 65473, 13, 72, 65474, 13, 72, 65475, 13, 72, 65476, 13, 72, 65477, 13, 72, 65478, 13, 72, 65479, 13, 72, 65480, 13, 72, 65481, 13, 72, 65482, 13, 72, 65483, 13, 72, 65484, 13, 72, 65485, 13, 72, 65486, 13, 72, 65487, 13, 73, 65472, 13, 73, 65473, 13, 73, 65474, 13, 73, 65475, 13, 73, 65476, 13, 73, 65477, 13, 73, 65478, 13, 73, 65479, 13, 73, 65480, 13, 73, 65481, 13, 73, 65482, 13, 73, 65483, 13, 73, 65484, 13, 73, 65485, 13, 73, 65486, 13, 73, 65487, 13, 74, 65472, 13, 74, 65473, 13, 74, 65474, 13, 74, 65475, 13, 74, 65476, 13, 74, 65477, 13, 74, 65478, 13, 74, 65479, 13, 74, 65480, 13, 74, 65481, 13, 74, 65482, 13, 74, 65483, 13, 74, 65484, 13, 74, 65485, 13, 74, 65486, 13, 74, 65487, 13, 75, 65472, 13, 75, 65473, 13, 75, 65474, 13, 75, 65475, 13, 75, 65476, 13, 75, 65477, 13, 75, 65478, 13, 75, 65479, 13, 75, 65480, 13, 75, 65481, 13, 75, 65482, 13, 75, 65483, 13, 75, 65484, 13, 75, 65485, 13, 75, 65486, 13, 75, 65487, 13, 76, 65472, 13, 76, 65473, 13, 76, 65474, 13, 76, 65475, 13, 76, 65476, 13, 76, 65477, 13, 76, 65478, 13, 76, 65479, 13, 76, 65480, 13, 76, 65481, 13, 76, 65482, 13, 76, 65483, 13, 76, 65484, 13, 76, 65485, 13, 76, 65486, 13, 76, 65487, 13, 77, 65472, 13, 77, 65473, 13, 77, 65474, 13, 77, 65475, 13, 77, 65476, 13, 77, 65477, 13, 77, 65478, 13, 77, 65479, 13, 77, 65480, 13, 77, 65481, 13, 77, 65482, 13, 77, 65483, 13, 77, 65484, 13, 77, 65485, 13, 77, 65486, 13, 77, 65487, 13, 78, 65472, 13, 78, 65473, 13, 78, 65474, 13, 78, 65475, 13, 78, 65476, 13, 78, 65477, 13, 78, 65478, 13, 78, 65479, 13, 78, 65480, 13, 78, 65481, 13, 78, 65482, 13, 78, 65483, 13, 78, 65484, 13, 78, 65485, 13, 78, 65486, 13, 78, 65487, 13, 79, 65472, 13, 79, 65473, 13, 79, 65474, 13, 79, 65475, 13, 79, 65476, 13, 79, 65477, 13, 79, 65478, 13, 79, 65479, 13, 79, 65480, 13, 79, 65481, 13, 79, 65482, 13, 79, 65483, 13, 79, 65484, 13, 79, 65485, 13, 79, 65486, 13, 79, 65487, 13, 80, 65472, 13, 80, 65473, 13, 80, 65474, 13, 80, 65475, 13, 80, 65476, 13, 80, 65477, 13, 80, 65478, 13, 80, 65479, 13, 80, 65480, 13, 80, 65481, 13, 80, 65482, 13, 80, 65483, 13, 80, 65484, 13, 80, 65485, 13, 80, 65486, 13, 80, 65487, 13, 81, 65472, 13, 81, 65473, 13, 81, 65474, 13, 81, 65475, 13, 81, 65476, 13, 81, 65477, 13, 81, 65478, 13, 81, 65479, 13, 81, 65480, 13, 81, 65481, 13, 81, 65482, 13, 81, 65483, 13, 81, 65484, 13, 81, 65485, 13, 81, 65486, 13, 81, 65487, 13, 82, 65472, 13, 82, 65473, 13, 82, 65474, 13, 82, 65475, 13, 82, 65476, 13, 82, 65477, 13, 82, 65478, 13, 82, 65479, 13, 82, 65480, 13, 82, 65481, 13, 82, 65482, 13, 82, 65483, 13, 82, 65484, 13, 82, 65485, 13, 82, 65486, 13, 82, 65487, 13, 83, 65472, 13, 83, 65473, 13, 83, 65474, 13, 83, 65475, 13, 83, 65476, 13, 83, 65477, 13, 83, 65478, 13, 83, 65479, 13, 83, 65480, 13, 83, 65481, 13, 83, 65482, 13, 83, 65483, 13, 83, 65484, 13, 83, 65485, 13, 83, 65486, 13, 83, 65487, 13, 84, 65472, 13, 84, 65473, 13, 84, 65474, 13, 84, 65475, 13, 84, 65476, 13, 84, 65477, 13, 84, 65478, 13, 84, 65479, 13, 84, 65480, 13, 84, 65481, 13, 84, 65482, 13, 84, 65483, 13, 84, 65484, 13, 84, 65485, 13, 84, 65486, 13, 84, 65487, 13, 85, 65472, 13, 85, 65473, 13, 85, 65474, 13, 85, 65475, 13, 85, 65476, 13, 85, 65477, 13, 85, 65478, 13, 85, 65479, 13, 85, 65480, 13, 85, 65481, 13, 85, 65482, 13, 85, 65483, 13, 85, 65484, 13, 85, 65485, 13, 85, 65486, 13, 85, 65487, 13, 86, 65472, 13, 86, 65473, 13, 86, 65474, 13, 86, 65475, 13, 86, 65476, 13, 86, 65477, 13, 86, 65478, 13, 86, 65479, 13, 86, 65480, 13, 86, 65481, 13, 86, 65482, 13, 86, 65483, 13, 86, 65484, 13, 86, 65485, 13, 86, 65486, 13, 86, 65487, 13, 87, 65472, 13, 87, 65473, 13, 87, 65474, 13, 87, 65475, 13, 87, 65476, 13, 87, 65477, 13, 87, 65478, 13, 87, 65479, 13, 87, 65480, 13, 87, 65481, 13, 87, 65482, 13, 87, 65483, 13, 87, 65484, 13, 87, 65485, 13, 87, 65486, 13, 87, 65487, 13, 88, 65472, 13, 88, 65473, 13, 88, 65474, 13, 88, 65475, 13, 88, 65476, 13, 88, 65477, 13, 88, 65478, 13, 88, 65479, 13, 88, 65480, 13, 88, 65481, 13, 88, 65482, 13, 88, 65483, 13, 88, 65484, 13, 88, 65485, 13, 88, 65486, 13, 88, 65487, 13, 89, 65472, 13, 89, 65473, 13, 89, 65474, 13, 89, 65475, 13, 89, 65476, 13, 89, 65477, 13, 89, 65478, 13, 89, 65479, 13, 89, 65480, 13, 89, 65481, 13, 89, 65482, 13, 89, 65483, 13, 89, 65484, 13, 89, 65485, 13, 89, 65486, 13, 89, 65487, 13, 90, 65472, 13, 90, 65473, 13, 90, 65474, 13, 90, 65475, 13, 90, 65476, 13, 90, 65477, 13, 90, 65478, 13, 90, 65479, 13, 90, 65480, 13, 90, 65481, 13, 90, 65482, 13, 90, 65483, 13, 90, 65484, 13, 90, 65485, 13, 90, 65486, 13, 90, 65487, 13, 91, 65472, 13, 91, 65473, 13, 91, 65474, 13, 91, 65475, 13, 91, 65476, 13, 91, 65477, 13, 91, 65478, 13, 91, 65479, 13, 91, 65480, 13, 91, 65481, 13, 91, 65482, 13, 91, 65483, 13, 91, 65484, 13, 91, 65485, 13, 91, 65486, 13, 91, 65487, 13, 92, 65472, 13, 92, 65473, 13, 92, 65474, 13, 92, 65475, 13, 92, 65476, 13, 92, 65477, 13, 92, 65478, 13, 92, 65479, 13, 92, 65480, 13, 92, 65481, 13, 92, 65482, 13, 92, 65483, 13, 92, 65484, 13, 92, 65485, 13, 92, 65486, 13, 92, 65487, 13, 93, 65472, 13, 93, 65473, 13, 93, 65474, 13, 93, 65475, 13, 93, 65476, 13, 93, 65477, 13, 93, 65478, 13, 93, 65479, 13, 93, 65480, 13, 93, 65481, 13, 93, 65482, 13, 93, 65483, 13, 93, 65484, 13, 93, 65485, 13, 93, 65486, 13, 93, 65487, 13, 94, 65472, 13, 94, 65473, 13, 94, 65474, 13, 94, 65475, 13, 94, 65476, 13, 94, 65477, 13, 94, 65478, 13, 94, 65479, 13, 94, 65480, 13, 94, 65481, 13, 94, 65482, 13, 94, 65483, 13, 94, 65484, 13, 94, 65485, 13, 94, 65486, 13, 94, 65487, 13, 95, 65472, 13, 95, 65473, 13, 95, 65474, 13, 95, 65475, 13, 95, 65476, 13, 95, 65477, 13, 95, 65478, 13, 95, 65479, 13, 95, 65480, 13, 95, 65481, 13, 95, 65482, 13, 95, 65483, 13, 95, 65484, 13, 95, 65485, 13, 95, 65486, 13, 95, 65487, 13, 96, 65472, 13, 96, 65473, 13, 96, 65474, 13, 96, 65475, 13, 96, 65476, 13, 96, 65477, 13, 96, 65478, 13, 96, 65479, 13, 96, 65480, 13, 96, 65481, 13, 96, 65482, 13, 96, 65483, 13, 96, 65484, 13, 96, 65485, 13, 96, 65486, 13, 96, 65487, 13, 9, 65521, 13, 10, 65521, 13, 24, 1, 27, 65531, 38, 13, 65532, 38, 13, 65533, 38, 13, 65531, 36, 13, 65530, 37, 13, 65530, 39, 13, 65531, 39, 13, 65532, 37, 13, 65534, 37, 13, 65535, 37, 13, 65535, 36, 13, 0, 36, 13, 65535, 35, 13, 65535, 34, 13, 0, 33, 13, 65535, 33, 13, 0, 35, 13, 65534, 33, 13, 65533, 33, 13, 65532, 33, 13, 65531, 33, 13, 65530, 33, 13, 65530, 34, 13, 65530, 35, 13, 65531, 35, 13, 65533, 35, 13, 65534, 35, 13, 65534, 34, 13, 65533, 34, 13, 65529, 33, 13, 65529, 32, 13, 65530, 32, 13, 65531, 32, 13, 65532, 32, 13, 0, 32, 13, 65533, 32, 13, 65534, 32, 13, 65535, 32, 13, 9, 35, 13, 8, 35, 13, 7, 35, 13, 8, 36, 13, 5, 34, 13, 4, 33, 13, 5, 35, 13, 6, 35, 13, 7, 36, 13, 6, 36, 13, 4, 34, 13, 3, 37, 13, 4, 37, 13, 3, 39, 13, 3, 40, 13, 3, 38, 13, 4, 40, 13, 65570, 65508, 13, 65571, 65508, 13, 65570, 65507, 13, 65571, 65507, 13, 65552, 65481, 27, 65552, 65482, 27, 65552, 65483, 27, 65552, 65484, 27, 65552, 65485, 27, 65552, 65486, 27, 65552, 65487, 27, 65552, 65488, 27, 65552, 65489, 27, 65552, 65490, 27, 65552, 65491, 27, 65552, 65492, 27, 65552, 65493, 27, 65552, 65494, 27, 65552, 65495, 27, 65552, 65496, 27, 65552, 65497, 27, 65552, 65472, 27, 65552, 65473, 27, 65552, 65474, 27, 65552, 65475, 27, 65552, 65476, 27, 65552, 65477, 27, 65552, 65478, 27, 65552, 65479, 27, 65552, 65480, 27, 65553, 65472, 27, 65554, 65472, 27, 65555, 65472, 27, 65556, 65472, 27, 65557, 65472, 27, 65558, 65472, 27, 65559, 65472, 27, 65560, 65472, 27, 65561, 65472, 27, 65562, 65472, 27, 65563, 65472, 27, 65564, 65472, 27, 65565, 65472, 27, 65566, 65472, 27, 65567, 65472, 27, 65567, 65473, 27, 65568, 65472, 27, 65569, 65472, 27, 65570, 65472, 27, 65571, 65472, 27, 65572, 65472, 27, 65573, 65472, 27, 65574, 65472, 27, 65575, 65472, 27, 65576, 65472, 27, 65577, 65472, 27, 65578, 65472, 27, 65579, 65472, 27, 65580, 65472, 27, 65581, 65472, 27, 65582, 65472, 27, 65583, 65472, 27, 65583, 65489, 27, 65583, 65490, 27, 65583, 65491, 27, 65583, 65492, 27, 65583, 65493, 27, 65583, 65494, 27, 65583, 65495, 27, 65583, 65496, 27, 65583, 65497, 27, 65583, 65498, 27, 65583, 65499, 27, 65567, 65499, 27, 65568, 65499, 27, 65569, 65499, 27, 65570, 65499, 27, 65571, 65499, 27, 65572, 65499, 27, 65573, 65499, 27, 65574, 65499, 27, 65575, 65499, 27, 65576, 65499, 27, 65577, 65499, 27, 65578, 65499, 27, 65579, 65499, 27, 65580, 65499, 27, 65581, 65499, 27, 65582, 65499, 27, 65552, 65498, 27, 65552, 65499, 27, 65553, 65499, 27, 65554, 65499, 27, 65555, 65499, 27, 65556, 65499, 27, 65557, 65499, 27, 65558, 65499, 27, 65559, 65499, 27, 65560, 65499, 27, 65561, 65499, 27, 65562, 65499, 27, 65563, 65499, 27, 65563, 65495, 27, 65564, 65495, 27, 65565, 65495, 27, 65566, 65495, 27, 65567, 65495, 27, 65568, 65495, 27, 65559, 65498, 27, 65559, 65497, 27, 65559, 65496, 27, 65559, 65495, 27, 65559, 65494, 27, 65559, 65493, 27, 65559, 65492, 27, 65558, 65494, 27, 65557, 65494, 27, 65556, 65494, 27, 65553, 65490, 27, 65554, 65490, 27, 65555, 65490, 27, 65559, 65491, 27, 65559, 65490, 27, 65557, 65486, 27, 65558, 65486, 27, 65559, 65486, 27, 65560, 65486, 27, 65561, 65486, 27, 65562, 65486, 27, 65563, 65486, 27, 65563, 65487, 27, 65563, 65488, 27, 65563, 65489, 27, 65563, 65490, 27, 65563, 65491, 27, 65564, 65491, 27, 65565, 65491, 27, 65566, 65491, 27, 65569, 65495, 27, 65570, 65495, 27, 65570, 65494, 27, 65570, 65493, 27, 65570, 65492, 27, 65570, 65491, 27, 65570, 65490, 27, 65570, 65489, 27, 65570, 65488, 27, 65570, 65487, 27, 65570, 65486, 27, 65569, 65486, 27, 65568, 65486, 27, 65567, 65486, 27, 65553, 65482, 27, 65554, 65482, 27, 65555, 65482, 27, 65556, 65482, 27, 65557, 65482, 27, 65562, 65482, 27, 65563, 65482, 27, 65564, 65482, 27, 65565, 65482, 27, 65566, 65482, 27, 65567, 65482, 27, 65568, 65482, 27, 65569, 65482, 27, 65570, 65482, 27, 65567, 65474, 27, 65567, 65475, 27, 65567, 65476, 27, 65567, 65477, 27, 65567, 65478, 27, 65567, 65479, 27, 65567, 65480, 27, 65567, 65481, 27, 65571, 65490, 27, 65572, 65490, 27, 65573, 65490, 27, 65574, 65490, 27, 65575, 65490, 27, 65576, 65490, 27, 65577, 65490, 27, 65578, 65490, 27, 65578, 65491, 27, 65578, 65492, 27, 65578, 65493, 27, 65578, 65494, 27, 65578, 65495, 27, 65578, 65496, 27, 65578, 65497, 27, 65578, 65498, 27, 65584, 65472, 27, 65585, 65472, 27, 65586, 65472, 27, 65587, 65472, 27, 65588, 65472, 27, 65589, 65472, 27, 65590, 65472, 27, 65591, 65472, 27, 65592, 65472, 27, 65593, 65472, 27, 65594, 65472, 27, 65595, 65472, 27, 65596, 65472, 27, 65597, 65472, 27, 65598, 65472, 27, 65599, 65472, 27, 65599, 65473, 27, 65599, 65474, 27, 65599, 65475, 27, 65599, 65476, 27, 65599, 65477, 27, 65599, 65478, 27, 65599, 65479, 27, 65599, 65480, 27, 65599, 65481, 27, 65599, 65482, 27, 65599, 65483, 27, 65599, 65484, 27, 65599, 65485, 27, 65599, 65486, 27, 65599, 65487, 27, 65583, 65488, 27, 65584, 65488, 27, 65585, 65488, 27, 65586, 65488, 27, 65587, 65488, 27, 65588, 65488, 27, 65589, 65488, 27, 65590, 65488, 27, 65591, 65488, 27, 65592, 65488, 27, 65593, 65488, 27, 65594, 65488, 27, 65595, 65488, 27, 65596, 65488, 27, 65597, 65488, 27, 65598, 65488, 27, 65599, 65488, 27, 131130, 65504, 13, 131130, 65505, 13, 131130, 65506, 13, 131129, 65506, 13, 131128, 65506, 13, 131127, 65506, 13, 131127, 65505, 13, 131128, 65505, 13, 131129, 65505, 13, 131129, 65504, 13, 131129, 65503, 13, 131128, 65504, 13, 131126, 65505, 13, 131125, 65505, 13, 131124, 65505, 13, 131124, 65504, 13, 131125, 65504, 13, 131126, 65503, 13, 131127, 65503, 13, 131128, 65503, 13, 131129, 65502, 13, 131128, 65502, 13, 131127, 65502, 13, 131126, 65502, 13, 131125, 65502, 13, 131125, 65503, 13, 131124, 65502, 13, 131124, 65501, 13, 131123, 65501, 13, 131123, 65502, 13, 131123, 65503, 13, 131122, 65503, 13, 131123, 65506, 13, 131124, 65506, 13, 131125, 65506, 13, 131126, 65506, 13, 131130, 65503, 13, 131131, 65502, 13, 131131, 65501, 13, 131131, 65500, 13, 131130, 65500, 13, 131129, 65500, 13, 131129, 65501, 13, 131128, 65501, 13, 131127, 65501, 13, 131126, 65501, 13, 131125, 65501, 13, 131125, 65500, 13, 131126, 65500, 13, 131127, 65500, 13, 131130, 65502, 13, 131132, 65502, 13, 131132, 65503, 13, 131131, 65503, 13, 131131, 65504, 13, 131126, 65504, 13, 131124, 65503, 13, 131124, 65507, 13, 131125, 65507, 13, 131127, 65507, 13, 131128, 65507, 13, 131129, 65507, 13, 131122, 65504, 13, 131123, 65505, 13) } -metadata/_editor_floor_ = Vector3(0, 1, 0) +metadata/_editor_floor_ = Vector3(0, 2, 0) [node name="GridLines" type="Node3D" parent="GridMap"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.005, 0) @@ -258,247 +276,323 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.28654, -9.53674e-06, -10.26 [node name="TreePine7" parent="Vegetation/Pines" instance=ExtResource("11_5olon")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.2865, -9.53674e-06, -11.7657) -[node name="TreePine8" parent="Vegetation/Pines" instance=ExtResource("11_5olon")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17.5, 0, -14) - -[node name="TreePine" parent="Vegetation" instance=ExtResource("11_5olon")] +[node name="TreePine" parent="Vegetation/Pines" instance=ExtResource("11_5olon")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.85673, -4.76837e-06, -3.38285) -[node name="TreePine2" parent="Vegetation" instance=ExtResource("16_8m1m6")] +[node name="TreePine2" parent="Vegetation/Pines" instance=ExtResource("16_8m1m6")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.99916, -4.76837e-06, -3.04329) -[node name="TreePine3" parent="Vegetation" instance=ExtResource("11_5olon")] +[node name="TreePine3" parent="Vegetation/Pines" instance=ExtResource("11_5olon")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.26548, 0, 0) -[node name="Grass" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Maze" type="Node3D" parent="Vegetation"] + +[node name="TreePine9" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14.5, 0, -30.5) + +[node name="TreePine10" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17, 0, -30.5) + +[node name="TreePine11" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -30.5) + +[node name="TreePine12" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 0, -28) + +[node name="TreePine13" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 0, -29) + +[node name="TreePine14" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23.5, 0, -27.5) + +[node name="TreePine15" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.5, 0, -29.5) + +[node name="TreePine16" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.5, 0, -30) + +[node name="TreePine17" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -30.5) + +[node name="TreePine18" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.5, 0, -28.5) + +[node name="TreePine19" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21.5, 0, -31) + +[node name="TreePine20" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 0, -28) + +[node name="TreePine21" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23, 0, -29) + +[node name="TreePine22" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23.5, 0, -27.5) + +[node name="TreePine23" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.5, 0, -29.5) + +[node name="TreePine24" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.5, 0, -30) + +[node name="TreePine25" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, -30.5) + +[node name="TreePine26" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22.5, 0, -28.5) + +[node name="TreePine27" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26.5, 0, -25) + +[node name="TreePine28" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26.5, 0, -26) + +[node name="TreePine29" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27, 0, -24.5) + +[node name="TreePine30" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -26.5) + +[node name="TreePine31" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -27) + +[node name="TreePine32" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.5, 0, -27.5) + +[node name="TreePine33" parent="Vegetation/Maze" instance=ExtResource("11_5olon")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -25.5) + +[node name="Grass" type="Node" parent="Vegetation"] + +[node name="Grass" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1, 0, -2) -[node name="Grass2" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass2" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -2.5) -[node name="Grass3" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass3" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, -2) -[node name="Grass4" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass4" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1, 0, -1.5) -[node name="Grass5" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass5" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.5, 0, -1.5) -[node name="Grass6" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass6" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 3, 0, -3) -[node name="Grass7" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass7" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 2.5, 0, -2.5) -[node name="Grass8" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass8" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 2.5, 0, -2) -[node name="Grass9" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass9" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 2, 0, -2) -[node name="Grass10" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass10" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 1.5, 0, -2) -[node name="Grass11" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass11" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 1.5, 0, -1.5) -[node name="Grass12" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass12" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 24.5, 0, -1.5) -[node name="Grass13" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass13" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26.5, 0, -2) -[node name="Grass14" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass14" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26.5, 0, -1.5) -[node name="Grass15" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass15" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 24.5, 0, -1) -[node name="Grass16" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass16" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25, 0, -1) -[node name="Grass17" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass17" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 28.5, 0, -2.5) -[node name="Grass18" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass18" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 28, 0, -2) -[node name="Grass19" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass19" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 28, 0, -1.5) -[node name="Grass20" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass20" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 27.5, 0, -1.5) -[node name="Grass21" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass21" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 27, 0, -1.5) -[node name="Grass22" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass22" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 27, 0, -1) -[node name="Grass23" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass23" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.5, 0, -3) -[node name="Grass24" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass24" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27.5, 0, -3.5) -[node name="Grass25" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass25" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27.5, 0, -3) -[node name="Grass26" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass26" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 25.5, 0, -2.5) -[node name="Grass27" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass27" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, -2.5) -[node name="Grass28" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass28" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 29.5, 0, -4) -[node name="Grass29" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass29" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 29, 0, -3.5) -[node name="Grass30" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass30" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 29, 0, -3) -[node name="Grass31" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass31" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 28.5, 0, -3) -[node name="Grass32" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass32" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 28, 0, -3) -[node name="Grass33" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass33" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 28, 0, -2.5) -[node name="Grass34" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass34" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 28.7727, 0, -4.09091) -[node name="Grass35" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass35" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 26.7727, 0, -3.59091) -[node name="Grass36" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass36" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 26.7727, 0, -4.09091) -[node name="Grass37" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass37" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 28.7727, 0, -4.59091) -[node name="Grass38" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass38" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 28.2727, 0, -4.59091) -[node name="Grass39" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass39" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 24.7727, 0, -3.09091) -[node name="Grass40" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass40" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 25.2727, 0, -3.59091) -[node name="Grass41" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass41" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 25.2727, 0, -4.09091) -[node name="Grass42" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass42" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 25.7727, 0, -4.09091) -[node name="Grass43" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass43" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 26.2727, 0, -4.09091) -[node name="Grass44" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass44" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 26.2727, 0, -4.59091) -[node name="Grass45" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass45" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 29.0909, 0, -8.84848) -[node name="Grass46" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass46" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 29.5909, 0, -6.84848) -[node name="Grass47" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass47" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 29.0909, 0, -6.84848) -[node name="Grass48" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass48" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 28.5909, 0, -8.84848) -[node name="Grass49" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass49" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 28.5909, 0, -8.34848) -[node name="Grass50" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass50" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 30.0909, 0, -4.84848) -[node name="Grass51" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass51" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 29.5909, 0, -5.34848) -[node name="Grass52" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass52" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 29.0909, 0, -5.34848) -[node name="Grass53" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass53" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 29.0909, 0, -5.84848) -[node name="Grass54" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass54" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 29.0909, 0, -6.34848) -[node name="Grass55" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass55" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 28.5909, 0, -6.34848) -[node name="Grass56" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass56" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 30.5909, 0, -7.84848) -[node name="Grass57" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass57" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 31.0909, 0, -5.84848) -[node name="Grass58" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass58" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 30.5909, 0, -5.84848) -[node name="Grass59" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass59" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 30.0909, 0, -7.84848) -[node name="Grass60" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass60" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 30.0909, 0, -7.34848) -[node name="Grass61" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass61" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 31.5909, 0, -3.84848) -[node name="Grass62" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass62" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 31.0909, 0, -4.34848) -[node name="Grass63" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass63" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 30.5909, 0, -4.34848) -[node name="Grass64" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass64" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 30.5909, 0, -4.84848) -[node name="Grass65" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass65" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 30.5909, 0, -5.34848) -[node name="Grass66" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass66" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 30.0909, 0, -5.34848) -[node name="Grass67" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass67" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 31.6818, 0, -4.57575) -[node name="Grass68" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass68" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 31.1818, 0, -6.57575) -[node name="Grass69" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass69" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 31.6818, 0, -6.57575) -[node name="Grass70" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass70" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 32.1818, 0, -4.57575) -[node name="Grass71" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass71" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1.31134e-07, 0, 1, 0, 1, 0, -1, 0, 1.31134e-07, 32.1818, 0, -5.07575) -[node name="Grass72" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass72" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, -1.74846e-07, 0, 1, 0, 1.74846e-07, 0, 1, 30.6818, 0, -8.57575) -[node name="Grass73" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass73" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, -1.74846e-07, 0, 1, 0, 1.74846e-07, 0, 1, 31.1818, 0, -8.07575) -[node name="Grass74" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass74" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, -1.74846e-07, 0, 1, 0, 1.74846e-07, 0, 1, 31.6818, 0, -8.07575) -[node name="Grass75" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass75" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, -1.74846e-07, 0, 1, 0, 1.74846e-07, 0, 1, 31.6818, 0, -7.57575) -[node name="Grass76" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass76" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, -1.74846e-07, 0, 1, 0, 1.74846e-07, 0, 1, 31.6818, 0, -7.07575) -[node name="Grass77" parent="Vegetation" instance=ExtResource("24_4cd0f")] +[node name="Grass77" parent="Vegetation/Grass" instance=ExtResource("24_4cd0f")] transform = Transform3D(1, 0, -1.74846e-07, 0, 1, 0, 1.74846e-07, 0, 1, 32.1818, 0, -7.07575) [node name="Level" type="Node3D" parent="."] @@ -584,7 +678,6 @@ transform = Transform3D(1, 0, 4.65661e-10, 0, 1, 0, -4.65661e-10, 0, 1, 0.199995 unique_name_in_owner = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.64783, 0, -1.58598) collision_layer = 0 -behaviour = ExtResource("30_7tuqh") [node name="CollisionShape3D2" type="CollisionShape3D" parent="Level/Quests/BuilderMissingTool/Merchant"] transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 0, 0.310637, 0) @@ -616,7 +709,6 @@ script = ExtResource("24_5bs33") [node name="SeedMerchant" parent="Level/Quests/NeedSomeSeeds" instance=ExtResource("23_fjbgv")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -3.5) -behaviour = ExtResource("30_7tuqh") [node name="Geometry" parent="Level/Quests/NeedSomeSeeds/SeedMerchant" instance=ExtResource("24_jxnq6")] transform = Transform3D(0.4, 0, 0, 0, 0.4, 0, 0, 0, 0.4, 0, 0, 0) @@ -639,18 +731,25 @@ item = ExtResource("7_pt3bs") [node name="PugNPC" parent="Level/Quests/MissingPet" instance=ExtResource("23_fjbgv")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 0, -12.5) -behaviour = ExtResource("5_2yc6b") +visible = false [node name="Geometry" parent="Level/Quests/MissingPet/PugNPC" instance=ExtResource("29_mexqd")] transform = Transform3D(0.2, 0, 0, 0, 0.2, 0, 0, 0, 0.2, 0, 0, 0) [node name="Timmy" parent="Level/Quests/MissingPet" instance=ExtResource("23_fjbgv")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15, 0, -7) -behaviour = ExtResource("30_7tuqh") [node name="Geometry" parent="Level/Quests/MissingPet/Timmy" instance=ExtResource("31_ybkxd")] transform = Transform3D(0.4, 0, 0, 0, 0.4, 0, 0, 0, 0.4, 0, 0, 0) +[node name="PugNPC2" parent="Level/Quests/MissingPet" instance=ExtResource("23_fjbgv")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 13.5, 0, -29.5) +behaviour = ExtResource("32_o2fv2") +behaviour_blackboard_plan = SubResource("BlackboardPlan_jgxfv") + +[node name="Geometry" parent="Level/Quests/MissingPet/PugNPC2" instance=ExtResource("29_mexqd")] +transform = Transform3D(0.2, 0, 0, 0, 0.2, 0, 0, 0, 0.2, 0, 0, 0) + [node name="Water" type="MeshInstance3D" parent="Level"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.239327, 0) visible = false @@ -664,3 +763,74 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 1) [node name="MeshInstance3D" type="MeshInstance3D" parent="Level/Bone"] mesh = SubResource("SphereMesh_ptjaf") + +[node name="Mountains" type="Node3D" parent="."] + +[node name="BigRock2" type="Node3D" parent="Mountains"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27.5, 0, -14) + +[node name="rockB2" parent="Mountains/BigRock2" instance=ExtResource("33_8eayx")] + +[node name="rockC2" parent="Mountains/BigRock2" instance=ExtResource("34_rbou3")] +transform = Transform3D(3, -1.22236e-09, -1.11759e-08, 1.22236e-09, 3, -5.58793e-09, 1.11759e-08, 5.58793e-09, 3, 0, 0, 0) + +[node name="rockB3" parent="Mountains/BigRock2" instance=ExtResource("33_8eayx")] +transform = Transform3D(1.03528, 0, 3.8637, 0, 4, 0, -3.8637, 0, 1.03528, 0, 0, 0) + +[node name="BigRock3" type="Node3D" parent="Mountains"] +transform = Transform3D(2.98023e-08, 0, 1, 0, 1, 0, -1, 0, 2.98023e-08, 25, 0, -14) + +[node name="rockB2" parent="Mountains/BigRock3" instance=ExtResource("33_8eayx")] + +[node name="rockC2" parent="Mountains/BigRock3" instance=ExtResource("34_rbou3")] +transform = Transform3D(3, -1.22236e-09, -1.11759e-08, 1.22236e-09, 3, -5.58793e-09, 1.11759e-08, 5.58793e-09, 3, 0, 0, 0) + +[node name="rockB3" parent="Mountains/BigRock3" instance=ExtResource("33_8eayx")] +transform = Transform3D(1.03528, 0, 3.8637, 0, 4, 0, -3.8637, 0, 1.03528, 0, 0, 0) + +[node name="rockB4" parent="Mountains/BigRock3" instance=ExtResource("33_8eayx")] +transform = Transform3D(1.19209e-07, 0, 4, 0, 4, 0, -4, 0, 1.19209e-07, 0.5, 0, 0.5) + +[node name="rockB5" parent="Mountains/BigRock3" instance=ExtResource("33_8eayx")] +transform = Transform3D(-2.82843, 0, 2.82843, 0, 4, 0, -2.82843, 0, -2.82843, -0.5, 0, 1.5) + +[node name="BigRock4" type="Node3D" parent="Mountains"] +transform = Transform3D(2.98023e-08, 0, 1, 0, 1, 0, -1, 0, 2.98023e-08, 29, 0, -14) + +[node name="rockB2" parent="Mountains/BigRock4" instance=ExtResource("33_8eayx")] + +[node name="rockC2" parent="Mountains/BigRock4" instance=ExtResource("34_rbou3")] +transform = Transform3D(3, -1.22236e-09, -1.11759e-08, 1.22236e-09, 3, -5.58793e-09, 1.11759e-08, 5.58793e-09, 3, 0, 0, 0) + +[node name="rockB3" parent="Mountains/BigRock4" instance=ExtResource("33_8eayx")] +transform = Transform3D(1.03528, 0, 3.8637, 0, 4, 0, -3.8637, 0, 1.03528, 0, 0, 0) + +[node name="rockB4" parent="Mountains/BigRock4" instance=ExtResource("33_8eayx")] +transform = Transform3D(1.19209e-07, 0, 4, 0, 4, 0, -4, 0, 1.19209e-07, 0.5, 0, 0.5) + +[node name="rockB5" parent="Mountains/BigRock4" instance=ExtResource("33_8eayx")] +transform = Transform3D(-2.82843, 0, 2.82843, 0, 4, 0, -2.82843, 0, -2.82843, -0.5, 0, 1.5) + +[node name="BigRock5" type="Node3D" parent="Mountains"] +transform = Transform3D(1, 0, -7.35137e-08, 0, 1, 0, 7.35137e-08, 0, 1, 25, 0, -17) + +[node name="rockB2" parent="Mountains/BigRock5" instance=ExtResource("33_8eayx")] + +[node name="rockC2" parent="Mountains/BigRock5" instance=ExtResource("34_rbou3")] +transform = Transform3D(3, -1.22236e-09, -1.11759e-08, 1.22236e-09, 3, -5.58793e-09, 1.11759e-08, 5.58793e-09, 3, 0, 0, 0) + +[node name="rockB3" parent="Mountains/BigRock5" instance=ExtResource("33_8eayx")] +transform = Transform3D(1.03528, 0, 3.8637, 0, 4, 0, -3.8637, 0, 1.03528, 0, 0, 0) + +[node name="rockB4" parent="Mountains/BigRock5" instance=ExtResource("33_8eayx")] +transform = Transform3D(1.19209e-07, 0, 4, 0, 4, 0, -4, 0, 1.19209e-07, 0.5, 0, 0.5) + +[node name="rockB5" parent="Mountains/BigRock5" instance=ExtResource("33_8eayx")] +transform = Transform3D(-2.82843, 0, 2.82843, 0, 4, 0, -2.82843, 0, -2.82843, -0.5, 0, 1.5) + +[node name="PatrolPath01" type="Path3D" parent="."] +curve = SubResource("Curve3D_xbm4j") + +[node name="PathFollow3D" type="PathFollow3D" parent="PatrolPath01"] +transform = Transform3D(0.999059, -0.000127656, -0.043208, -0.000656565, 0.999827, -0.0181351, 0.0432032, 0.0181465, 0.998894, 12.4989, 0.0434885, -23.996) +progress = 22.4482