commit bcdd439d12a48548c04bc99e15d5a1998d44e123 Author: Hipstercat Date: Wed Apr 15 13:45:56 2020 +0200 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4f48ad7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Godot-specific ignores +.import/ +export.cfg +export_presets.cfg + +# Imported translations (automatically generated from CSV files) +*.translation + +# Mono-specific ignores +.mono/ +data_*/ diff --git a/3d.gd b/3d.gd new file mode 100644 index 0000000..00da6ae --- /dev/null +++ b/3d.gd @@ -0,0 +1,42 @@ +extends Spatial + +#-----------------SCENE--SCRIPT------------------# +# Close your game faster by clicking 'Esc' # +# Change mouse mode by clicking 'Shift + F1' # +#------------------------------------------------# + +export var fast_close := true +var mouse_mode: String = "CAPTURED" + +onready var camera = get_node("Player/Head/Camera") + +################################################## + +func _ready() -> void: + if fast_close: + print("** Fast Close enabled in the 's_main.gd' script **") + print("** 'Esc' to close 'Shift + F1' to release mouse **") + + +func _input(event: InputEvent) -> void: + if event.is_action_pressed("ui_cancel") and fast_close: + get_tree().quit() # Quits the game + + if event.is_action_pressed("mouse_input") and fast_close: + match mouse_mode: # Switch statement in GDScript + "CAPTURED": + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + mouse_mode = "VISIBLE" + "VISIBLE": + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + mouse_mode = "CAPTURED" + +func _process(delta): + var pos = camera.get_global_transform().origin + get_node("Label").text = "X: "+str(pos.x)+", Y: "+str(pos.y)+", Z: "+str(pos.z) + var rotation = camera.rotation + get_node("Label").text += " X: "+str(rotation.x)+", Y: "+str(rotation.y)+", Z: "+str(rotation.z) + + +func _on_Button_pressed(): + get_tree().quit() diff --git a/3d.tscn b/3d.tscn new file mode 100644 index 0000000..48c8398 --- /dev/null +++ b/3d.tscn @@ -0,0 +1,56 @@ +[gd_scene load_steps=8 format=2] + +[ext_resource path="res://player/Player.tscn" type="PackedScene" id=1] +[ext_resource path="res://MeshInstance.tscn" type="PackedScene" id=2] +[ext_resource path="res://3d.gd" type="Script" id=3] +[ext_resource path="res://ImmediateGeometry.gd" type="Script" id=4] +[ext_resource path="res://Water.tscn" type="PackedScene" id=5] + +[sub_resource type="SpatialMaterial" id=7] +vertex_color_use_as_albedo = true +params_cull_mode = 2 + +[sub_resource type="SpatialMaterial" id=6] +vertex_color_use_as_albedo = true +params_diffuse_mode = 4 +params_specular_mode = 4 +params_cull_mode = 2 + +[node name="Spatial" type="Spatial"] +script = ExtResource( 3 ) + +[node name="Player" parent="." instance=ExtResource( 1 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.151, 200, -0.003 ) + +[node name="GiantsTerrain" parent="." instance=ExtResource( 2 )] +material_override = SubResource( 7 ) + +[node name="Label" type="Label" parent="."] +margin_right = 40.0 +margin_bottom = 14.0 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="DirectionalLight" type="DirectionalLight" parent="."] +transform = Transform( 1, 0, 0, 0, -0.00790628, 0.999969, 0, -0.999969, -0.00790628, 0, 300, 0 ) +light_energy = 1.94 +shadow_enabled = true + +[node name="ImmediateGeometry" type="ImmediateGeometry" parent="."] +material_override = SubResource( 6 ) +cast_shadow = 0 +script = ExtResource( 4 ) + +[node name="Water" parent="." instance=ExtResource( 5 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -10, 0 ) + +[node name="Button" type="Button" parent="."] +margin_top = 579.365 +margin_right = 40.0 +margin_bottom = 599.365 +text = "Quit" +__meta__ = { +"_edit_use_anchors_": false +} +[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"] diff --git a/ImmediateGeometry.gd b/ImmediateGeometry.gd new file mode 100644 index 0000000..acf9c10 --- /dev/null +++ b/ImmediateGeometry.gd @@ -0,0 +1,149 @@ +extends ImmediateGeometry + +var signature +var u0 +var xoffset +var yoffset +var minheight +var maxheight +var xverticesnumber +var yverticesnumber +var stretch +var u1 +var u2 +var u3 +var u4 +var version +var u6 +var u7 +var u8 +var tex + +var edges +var file = File.new() + +var vertices = [] +var triangles = [] + +func _ready(): + return + clear() + readgti("res://default.gti") + # triangles = [[-1, 0, -1, 0, 1, 255, 251], [-1,0,1, 0, 224, 255, 0], [1,0,-1, 0, 1, 0, 0]] + print("vertices: "+str(len(vertices))) + print("draw "+str(len(triangles))) + assert(len(triangles) % 3 == 0) + begin(Mesh.PRIMITIVE_TRIANGLES) + for i in range(len(triangles)): + var vertex = triangles[i] + if not vertex: + print(i) + else: + print("color: ("+str(vertex[6] / 255.0)+")") + set_color(Color(vertex[4] / 255.0, vertex[5] / 255.0, vertex[6] / 255.0)) + add_vertex(Vector3(vertex[0], vertex[2], vertex[1])) + end() + +func fill(): + print("version="+str(version)) + # fill read values + print("fill") + var p = 0 + while p < xverticesnumber * yverticesnumber: + var b = file.get_8() + if b >= 0x80: + while b != 0x00: + if p >= xverticesnumber * yverticesnumber: + return + b = (b + 1) & 0xFF + p+=1 + else: + while b != 0xff: + if p >= xverticesnumber * yverticesnumber: + return + if version != 7: + vertices[p][2] = file.get_float() # height + vertices[p][3] = file.get_8() # triangulation + vertices[p][4] = file.get_8() # R + vertices[p][5] = file.get_8() # G + vertices[p][6] = file.get_8() # B + else: + vertices[p][2] = file.get_float() # height + vertices[p][3] = file.get_8() # triangulation + vertices[p][4] = file.get_8() # R + vertices[p][5] = file.get_8() # G + vertices[p][6] = file.get_8() # B + var unk = file.get_8() # unk + # print("["+ str(vertices[p][0]) + ", "+ str(vertices[p][1])+", "+ str(vertices[p][2])+", "+ str(vertices[p][3])+", "+ str(vertices[p][4])+", "+ str(vertices[p][5])+", "+ str(vertices[p][6])+", "+str(b)+"]") + p+=1 + b = (b - 1) & 0xFF + +func readgti(filename): + file.open(filename, File.READ) + if not file.is_open(): + get_tree().quit() + return + signature = file.get_32() + u0 = file.get_32() + xoffset = file.get_float() + yoffset = file.get_float() + minheight = file.get_float() + maxheight = file.get_float() + xverticesnumber = file.get_32() + yverticesnumber = file.get_32() + stretch = file.get_float() + u1 = file.get_float() + u2 = file.get_float() + u3 = file.get_float() + u4 = file.get_float() + version = file.get_16() + u6 = file.get_16() + u7 = file.get_float() + u8 = file.get_float() + tex = file.get_buffer(32).get_string_from_ascii() + + vertices.resize(xverticesnumber * yverticesnumber) + + # initialize empty terrain + print("init") + for y in range(yverticesnumber): + for x in range(xverticesnumber): + vertices[y * xverticesnumber + x] = [] + vertices[y * xverticesnumber + x].append(xoffset + x * stretch) # 0: x + vertices[y * xverticesnumber + x].append(yoffset + y * stretch) # 1: y + vertices[y * xverticesnumber + x].append(minheight) # 2: height + vertices[y * xverticesnumber + x].append(0) # 3: triangulation value + vertices[y * xverticesnumber + x].append(0) # 4: R + vertices[y * xverticesnumber + x].append(0) # 5: G + vertices[y * xverticesnumber + x].append(0) # 6: B + + + fill() + file.close() + + # sort triangles + print("sort") + var i = 0 + # triangles.resize(2*len(vertices)) + for y in range(yverticesnumber-1): + for x in range(xverticesnumber-1): + var b = (vertices[y * xverticesnumber + x][3] & 7) % 128 + if b == 4 or b == 5 or b == 7: + triangles.append(vertices[(y+1) * xverticesnumber + x]) + triangles.append(vertices[y * xverticesnumber + x]) + triangles.append(vertices[(y+1) * xverticesnumber + (x+1)]) + if b == 5 or b == 3: + triangles.append(vertices[y * xverticesnumber + (x + 1)]) + triangles.append(vertices[y * xverticesnumber + x]) + triangles.append(vertices[(y + 1) * xverticesnumber + (x + 1)]) + for y in range (yverticesnumber-1): + for x in range(xverticesnumber-1): + var b = (vertices[y * xverticesnumber + x][3] & 7) % 128 + if b == 1 or b == 6: + triangles.append(vertices[(y + 1) * xverticesnumber + x]) + triangles.append(vertices[y * xverticesnumber + x]) + triangles.append(vertices[y * xverticesnumber + (x + 1)]) + if b == 2 or b == 6: + triangles.append(vertices[y * xverticesnumber + (x + 1)]) + triangles.append(vertices[(y + 1) * xverticesnumber + x]) + triangles.append(vertices[(y + 1) * xverticesnumber + (x + 1)]) diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..65bc66f --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,51 @@ + +All parts of this project that are not copyrighted or licensed by someone else are released under the MIT License: + +Copyright (c) 2018 Jaccomo Lorenz (Maujoe) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +------------ +Other Files: + +Some files caintained in this project may be generated by the Godot Engine version 3.x that is covered by its own license, an up to date version can be found on: https://github.com/godotengine/godot/blob/master/LICENSE.txt. + +Quote (18th February 2018): + +"Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. +Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE." diff --git a/MeshInstance.gd b/MeshInstance.gd new file mode 100644 index 0000000..2609875 --- /dev/null +++ b/MeshInstance.gd @@ -0,0 +1,141 @@ +extends MeshInstance + +var signature +var u0 +var xoffset +var yoffset +var minheight +var maxheight +var xverticesnumber +var yverticesnumber +var stretch +var u1 +var u2 +var u3 +var u4 +var version +var u6 +var u7 +var u8 +var tex + +var edges +var file = File.new() + +var vertices = [] +var triangles = [] + +func _on_MeshInstance_ready(): + readgti("res://default.gti") + var st = SurfaceTool.new() + st.begin(Mesh.PRIMITIVE_TRIANGLES) + for v in triangles: + st.add_color(Color(v[4] / 255.0, v[5] / 255.0, v[6] / 255.0)) + st.add_vertex(Vector3(v[0], v[2], v[1])) + + var m = st.commit() + mesh = m + +func fill(): + print("version="+str(version)) + # fill read values + print("fill") + var p = 0 + while p < xverticesnumber * yverticesnumber: + var b = file.get_8() + if b >= 0x80: + while b != 0x00: + if p >= xverticesnumber * yverticesnumber: + return + b = (b + 1) & 0xFF + p+=1 + else: + while b != 0xff: + if p >= xverticesnumber * yverticesnumber: + return + if version != 7: + vertices[p][2] = file.get_float() # height + vertices[p][3] = file.get_8() # triangulation + vertices[p][4] = file.get_8() # R + vertices[p][5] = file.get_8() # G + vertices[p][6] = file.get_8() # B + else: + vertices[p][2] = file.get_float() # height + vertices[p][3] = file.get_8() # triangulation + vertices[p][4] = file.get_8() # R + vertices[p][5] = file.get_8() # G + vertices[p][6] = file.get_8() # B + var unk = file.get_8() # unk + # print("["+ str(vertices[p][0]) + ", "+ str(vertices[p][1])+", "+ str(vertices[p][2])+", "+ str(vertices[p][3])+", "+ str(vertices[p][4])+", "+ str(vertices[p][5])+", "+ str(vertices[p][6])+", "+str(b)+"]") + p+=1 + b = (b - 1) & 0xFF + +func readgti(filename): + file.open(filename, File.READ) + if not file.is_open(): + get_tree().quit() + return + signature = file.get_32() + u0 = file.get_32() + xoffset = file.get_float() + yoffset = file.get_float() + minheight = file.get_float() + maxheight = file.get_float() + xverticesnumber = file.get_32() + yverticesnumber = file.get_32() + stretch = file.get_float() + u1 = file.get_float() + u2 = file.get_float() + u3 = file.get_float() + u4 = file.get_float() + version = file.get_16() + u6 = file.get_16() + u7 = file.get_float() + u8 = file.get_float() + tex = file.get_buffer(32).get_string_from_ascii() + + vertices.resize(xverticesnumber * yverticesnumber) + + # initialize empty terrain + print("init") + for y in range(yverticesnumber): + for x in range(xverticesnumber): + vertices[y * xverticesnumber + x] = [] + vertices[y * xverticesnumber + x].append(xoffset + x * stretch) # 0: x + vertices[y * xverticesnumber + x].append(yoffset + y * stretch) # 1: y + vertices[y * xverticesnumber + x].append(minheight) # 2: height + vertices[y * xverticesnumber + x].append(0) # 3: triangulation value + vertices[y * xverticesnumber + x].append(0) # 4: R + vertices[y * xverticesnumber + x].append(0) # 5: G + vertices[y * xverticesnumber + x].append(0) # 6: B + + + fill() + file.close() + + # sort triangles + print("sort") + var i = 0 + # triangles.resize(2*len(vertices)) + for y in range(yverticesnumber-1): + for x in range(xverticesnumber-1): + var b = (vertices[y * xverticesnumber + x][3] & 7) % 128 + if b == 4 or b == 5 or b == 7: + triangles.append(vertices[(y+1) * xverticesnumber + x]) + triangles.append(vertices[y * xverticesnumber + x]) + triangles.append(vertices[(y+1) * xverticesnumber + (x+1)]) + if b == 5 or b == 3: + triangles.append(vertices[y * xverticesnumber + (x + 1)]) + triangles.append(vertices[y * xverticesnumber + x]) + triangles.append(vertices[(y + 1) * xverticesnumber + (x + 1)]) + for y in range (yverticesnumber-1): + for x in range(xverticesnumber-1): + var b = (vertices[y * xverticesnumber + x][3] & 7) % 128 + if b == 1 or b == 6: + triangles.append(vertices[(y + 1) * xverticesnumber + x]) + triangles.append(vertices[y * xverticesnumber + x]) + triangles.append(vertices[y * xverticesnumber + (x + 1)]) + if b == 2 or b == 6: + triangles.append(vertices[y * xverticesnumber + (x + 1)]) + triangles.append(vertices[(y + 1) * xverticesnumber + x]) + triangles.append(vertices[(y + 1) * xverticesnumber + (x + 1)]) diff --git a/MeshInstance.tscn b/MeshInstance.tscn new file mode 100644 index 0000000..526442b --- /dev/null +++ b/MeshInstance.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://MeshInstance.gd" type="Script" id=1] + +[node name="GiantsTerrain" type="MeshInstance"] +script = ExtResource( 1 ) +[connection signal="ready" from="." to="." method="_on_MeshInstance_ready"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..230ac58 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# Basic Water Material + +A basic water material for the Godot Engine 3.x. + +#### Video/How To: +https://youtu.be/jbYrpKWTlpw + +![Image](assets/maujoe.basic_water_material/screenshots/basic_water_material_1.jpg) + +## License + +All parts of this project that are not copyrighted or licensed by someone else are released free under the MIT License - see the LICENSE.md file for details. diff --git a/UI.gd b/UI.gd new file mode 100644 index 0000000..c1c91d4 --- /dev/null +++ b/UI.gd @@ -0,0 +1 @@ +extends Panel diff --git a/UI.tscn b/UI.tscn new file mode 100644 index 0000000..20891e0 --- /dev/null +++ b/UI.tscn @@ -0,0 +1,63 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://UI.gd" type="Script" id=1] + +[node name="Panel" type="Panel"] +anchor_left = 0.000976562 +anchor_top = 0.001 +anchor_right = 0.000976562 +anchor_bottom = 0.001 +margin_left = -2.0 +margin_top = -1.0 +margin_right = 1023.0 +margin_bottom = 600.0 +script = ExtResource( 1 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Title" type="Label" parent="."] +margin_left = 329.0 +margin_top = 37.0 +margin_right = 539.0 +margin_bottom = 51.0 +text = "Welcome to GiantsEditReloaded!" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="New" type="Button" parent="."] +margin_left = 153.0 +margin_top = 150.0 +margin_right = 268.0 +margin_bottom = 179.0 +rect_pivot_offset = Vector2( 82, 14.5 ) +text = "Create new map" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Open" type="Button" parent="."] +margin_left = 366.0 +margin_top = 149.0 +margin_right = 481.0 +margin_bottom = 178.0 +rect_pivot_offset = Vector2( 82, 14.5 ) +text = "Open map" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Quit" type="Button" parent="."] +margin_left = 614.0 +margin_top = 149.0 +margin_right = 729.0 +margin_bottom = 178.0 +rect_pivot_offset = Vector2( 82, 14.5 ) +text = "Quit" +__meta__ = { +"_edit_use_anchors_": false +} +[connection signal="pressed" from="New" to="." method="_on_Button_pressed"] +[connection signal="pressed" from="Open" to="." method="_on_Button_pressed"] +[connection signal="pressed" from="Quit" to="." method="_on_Button_pressed"] diff --git a/Water.tscn b/Water.tscn new file mode 100644 index 0000000..215df64 --- /dev/null +++ b/Water.tscn @@ -0,0 +1,33 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://assets/maujoe.basic_water_material/materials/basic_water_material.material" type="Material" id=1] + +[sub_resource type="PlaneMesh" id=1] +material = ExtResource( 1 ) +size = Vector2( 50000, 50000 ) + +[sub_resource type="Animation" id=2] +resource_name = "uv_water" +loop = true +tracks/0/type = "value" +tracks/0/path = NodePath(".:mesh:material:uv1_offset") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0, 1 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 0, +"values": [ Vector3( 0, 0, 0 ), Vector3( 1, 0, 0 ) ] +} + +[node name="Water" type="MeshInstance"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.473385, 0 ) +mesh = SubResource( 1 ) +material/0 = null + +[node name="AnimationPlayer" type="AnimationPlayer" parent="."] +autoplay = "uv_water" +playback_speed = 0.05 +anims/uv_water = SubResource( 2 ) diff --git a/assets/maujoe.basic_water_material/LICENSE.md b/assets/maujoe.basic_water_material/LICENSE.md new file mode 100644 index 0000000..65bc66f --- /dev/null +++ b/assets/maujoe.basic_water_material/LICENSE.md @@ -0,0 +1,51 @@ + +All parts of this project that are not copyrighted or licensed by someone else are released under the MIT License: + +Copyright (c) 2018 Jaccomo Lorenz (Maujoe) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +------------ +Other Files: + +Some files caintained in this project may be generated by the Godot Engine version 3.x that is covered by its own license, an up to date version can be found on: https://github.com/godotengine/godot/blob/master/LICENSE.txt. + +Quote (18th February 2018): + +"Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. +Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE." diff --git a/assets/maujoe.basic_water_material/README.md b/assets/maujoe.basic_water_material/README.md new file mode 100644 index 0000000..1b5f1d4 --- /dev/null +++ b/assets/maujoe.basic_water_material/README.md @@ -0,0 +1,12 @@ +# Basic Water Material + +A basic water material for the Godot Engine 3.x. + +#### Video/How To: +https://youtu.be/jbYrpKWTlpw + +![Image](screenshots/basic_water_material_1.jpg) + +## License + +All parts of this project that are not copyrighted or licensed by someone else are released free under the MIT License - see the LICENSE.md file for details. diff --git a/assets/maujoe.basic_water_material/basic_water_material.tscn b/assets/maujoe.basic_water_material/basic_water_material.tscn new file mode 100644 index 0000000..ddeda9f --- /dev/null +++ b/assets/maujoe.basic_water_material/basic_water_material.tscn @@ -0,0 +1,30 @@ +[gd_scene load_steps=6 format=2] + +[ext_resource path="res://assets/maujoe.basic_water_material/models/terrain.tscn" type="PackedScene" id=1] +[ext_resource path="res://assets/maujoe.basic_water_material/textures/cloud_layers_1k.hdr" type="Texture" id=2] +[ext_resource path="res://Water.tscn" type="PackedScene" id=3] + +[sub_resource type="PanoramaSky" id=1] +radiance_size = 4 +panorama = ExtResource( 2 ) + +[sub_resource type="Environment" id=2] +background_mode = 2 +background_sky = SubResource( 1 ) +background_energy = 1.5 +fog_height_min = 0.0 +fog_height_max = 100.0 +ssao_quality = 0 + +[node name="Node" type="Node"] + +[node name="terrain" parent="." instance=ExtResource( 1 )] + +[node name="Camera" type="Camera" parent="."] +transform = Transform( 0.821155, 0, -0.570705, 0, 1, 0, 0.570705, 0, 0.821155, -10.0408, 1.29057, 13.15 ) + +[node name="WorldEnvironment" type="WorldEnvironment" parent="."] +environment = SubResource( 2 ) + +[node name="Water" parent="." instance=ExtResource( 3 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.14418, 0 ) diff --git a/assets/maujoe.basic_water_material/default_env.tres b/assets/maujoe.basic_water_material/default_env.tres new file mode 100644 index 0000000..0f8c712 --- /dev/null +++ b/assets/maujoe.basic_water_material/default_env.tres @@ -0,0 +1,18 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] +radiance_size = 4 +sky_top_color = Color( 0.0470588, 0.454902, 0.976471, 1 ) +sky_horizon_color = Color( 0.556863, 0.823529, 0.909804, 1 ) +sky_curve = 0.25 +ground_bottom_color = Color( 0.101961, 0.145098, 0.188235, 1 ) +ground_horizon_color = Color( 0.482353, 0.788235, 0.952941, 1 ) +ground_curve = 0.01 +sun_energy = 16.0 + +[resource] +background_mode = 2 +background_sky = SubResource( 1 ) +fog_height_min = 0.0 +fog_height_max = 100.0 +ssao_quality = 0 diff --git a/assets/maujoe.basic_water_material/icon.png b/assets/maujoe.basic_water_material/icon.png new file mode 100644 index 0000000..33eabb4 Binary files /dev/null and b/assets/maujoe.basic_water_material/icon.png differ diff --git a/assets/maujoe.basic_water_material/icon.png.import b/assets/maujoe.basic_water_material/icon.png.import new file mode 100644 index 0000000..96d684c --- /dev/null +++ b/assets/maujoe.basic_water_material/icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/icon.png-231110b88024ae42b05514bfd264b637.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/icon.png" +dest_files=[ "res://.import/icon.png-231110b88024ae42b05514bfd264b637.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/materials/basic_water_material.material b/assets/maujoe.basic_water_material/materials/basic_water_material.material new file mode 100644 index 0000000..a772e11 Binary files /dev/null and b/assets/maujoe.basic_water_material/materials/basic_water_material.material differ diff --git a/assets/maujoe.basic_water_material/models/terrain.blend b/assets/maujoe.basic_water_material/models/terrain.blend new file mode 100644 index 0000000..affc483 Binary files /dev/null and b/assets/maujoe.basic_water_material/models/terrain.blend differ diff --git a/assets/maujoe.basic_water_material/models/terrain.dae b/assets/maujoe.basic_water_material/models/terrain.dae new file mode 100644 index 0000000..c60377c --- /dev/null +++ b/assets/maujoe.basic_water_material/models/terrain.dae @@ -0,0 +1,4682 @@ + + + + + Anonymous + Collada Exporter for Blender 2.6+, by Juan Linietsky (juan@codenix.com) + + 2018-03-29T20:12:25Z + 2018-03-29T20:12:25Z + + Z_UP + + + + + + 0.5035507082939148 0.5020129084587097 -0.03823612630367279 0.47323864698410034 0.503095269203186 -0.05140293762087822 0.4746578633785248 0.472186803817749 -0.061288658529520035 0.5047900676727295 0.4709024131298065 -0.046329714357852936 0.4764604866504669 0.44119691848754883 -0.07174134999513626 0.5063109993934631 0.43972429633140564 -0.05492762103676796 0.4787532687187195 0.41008174419403076 -0.08247078955173492 0.5082006454467773 0.40846920013427734 -0.06377384811639786 0.4816657304763794 0.37877753376960754 -0.09354662150144577 0.5106685161590576 0.37709105014801025 -0.07332181185483932 0.48541441559791565 0.3472667634487152 -0.10557236522436142 0.5139472484588623 0.3455623984336853 -0.08425972610712051 0.4901825189590454 0.31562116742134094 -0.11881784349679947 0.51814204454422 0.31392428278923035 -0.09649083018302917 0.49597713351249695 0.283865362405777 -0.1330566257238388 0.5232917666435242 0.28221070766448975 -0.10980551689863205 0.5025344491004944 0.25188949704170227 -0.14781838655471802 0.5293411016464233 0.2503579258918762 -0.12425722181797028 0.5093039274215698 0.21965870261192322 -0.16179098188877106 0.5358651876449585 0.21832825243473053 -0.13895593583583832 0.5154706239700317 0.18730813264846802 -0.17300961911678314 0.5420867800712585 0.18621255457401276 -0.15198135375976562 0.5205056071281433 0.1548808217048645 -0.18078365921974182 0.54730224609375 0.1540427803993225 -0.16192738711833954 0.5247374176979065 0.1223246231675148 -0.18669143319129944 0.5516947507858276 0.12177645415067673 -0.16981934010982513 0.5284711122512817 0.08961500227451324 -0.192046120762825 0.5555654764175415 0.08938231319189072 -0.17682981491088867 0.5315958857536316 0.056787360459566116 -0.19712279736995697 0.558834969997406 0.056885626167058945 -0.1830984354019165 0.5342941880226135 0.02380703017115593 -0.20322443544864655 0.5616481304168701 0.024265872314572334 -0.18954399228096008 0.5368082523345947 -0.009388755075633526 -0.21155397593975067 0.5641458630561829 -0.008515376597642899 -0.19711466133594513 0.44325029850006104 0.5043796300888062 -0.06732833385467529 0.4449059069156647 0.4737376868724823 -0.07951778918504715 0.4469655156135559 0.4430118203163147 -0.09204253554344177 0.44953861832618713 0.4121105968952179 -0.10459595173597336 0.4527459442615509 0.3809375464916229 -0.11702805012464523 0.4568490982055664 0.3494794964790344 -0.12995518743991852 0.4620414078235626 0.31782639026641846 -0.1438804268836975 0.4681962728500366 0.28598713874816895 -0.15831270813941956 0.474915474653244 0.25383010506629944 -0.1724313646554947 0.48171454668045044 0.22134588658809662 -0.18516798317432404 0.48786836862564087 0.1886834353208542 -0.1946345865726471 0.4928760826587677 0.15590736269950867 -0.200344055891037 0.49704286456108093 0.12298762053251266 -0.20414650440216064 0.5007072687149048 0.08990650624036789 -0.20781569182872772 0.5037509799003601 0.05669402331113815 -0.21182259917259216 0.5063585042953491 0.023310067132115364 -0.2175617218017578 0.5088318586349487 -0.01031830720603466 -0.22617870569229126 0.4135681390762329 0.5058557391166687 -0.0859072357416153 0.4154970645904541 0.47551459074020386 -0.10083422809839249 0.4177868068218231 0.44508931040763855 -0.11572643369436264 0.4204968512058258 0.41446012258529663 -0.1300048977136612 0.4238045811653137 0.3835138976573944 -0.14355511963367462 0.42806476354599 0.3522128164768219 -0.15718436241149902 0.43341928720474243 0.320590615272522 -0.17132137715816498 0.43961817026138306 0.28865405917167664 -0.18535515666007996 0.44630324840545654 0.2563098073005676 -0.19844336807727814 0.45310163497924805 0.2235364466905594 -0.20987150073051453 0.45936670899391174 0.19048701226711273 -0.21797065436840057 0.4645604193210602 0.15726643800735474 -0.2220962941646576 0.4688268303871155 0.12386959791183472 -0.22397607564926147 0.4725237190723419 0.09032774716615677 -0.22604182362556458 0.47560733556747437 0.056660886853933334 -0.22919633984565735 0.4781903028488159 0.02279231697320938 -0.23443792760372162 0.48054784536361694 -0.011344492435455322 -0.24273794889450073 0.3841230571269989 0.5075126886367798 -0.107053242623806 0.38634219765663147 0.47749313712120056 -0.1251104474067688 0.3888360559940338 0.4473784863948822 -0.1425931751728058 0.39161914587020874 0.4170420467853546 -0.15863439440727234 0.39491403102874756 0.38638317584991455 -0.17328691482543945 0.39905327558517456 0.3553171157836914 -0.1871224045753479 0.4042065143585205 0.3238013684749603 -0.20080961287021637 0.4101562201976776 0.2918336093425751 -0.21414989233016968 0.41668516397476196 0.2593723237514496 -0.22647152841091156 0.4235031008720398 0.22635972499847412 -0.23710323870182037 0.4299992620944977 0.19290190935134888 -0.24448686838150024 0.43564286828041077 0.1591450273990631 -0.2479100525379181 0.44024598598480225 0.12515895068645477 -0.2484504133462906 0.4440845847129822 0.09103292226791382 -0.2487255483865738 0.447284072637558 0.056796878576278687 -0.2505403757095337 0.44987136125564575 0.022357331588864326 -0.25467532873153687 0.4520135521888733 -0.012339563108980656 -0.26170438528060913 0.3548174500465393 0.5093113780021667 -0.13033214211463928 0.35729798674583435 0.4796145260334015 -0.1515856236219406 0.35995760560035706 0.4497990310192108 -0.1716122180223465 0.36279138922691345 0.4197455048561096 -0.18963131308555603 0.36598166823387146 0.3893628418445587 -0.2055736929178238 0.3698585331439972 0.3585713803768158 -0.21997657418251038 0.3745940923690796 0.3272766172885895 -0.23337629437446594 0.3800048232078552 0.2953917682170868 -0.24580666422843933 0.3860081434249878 0.26288968324661255 -0.2570834755897522 0.39260780811309814 0.22973446547985077 -0.2669488489627838 0.3993508517742157 0.19593264162540436 -0.2742850184440613 0.4056279957294464 0.16164124011993408 -0.2780034840106964 0.41093969345092773 0.12703226506710052 -0.27822190523147583 0.41513243317604065 0.09223593771457672 -0.27657729387283325 0.4184480905532837 0.0573226623237133 -0.2758921682834625 0.4209350049495697 0.02226325310766697 -0.27744901180267334 0.42269769310951233 -0.013021179474890232 -0.2817264795303345 0.3255055248737335 0.5111666321754456 -0.15466861426830292 0.32819831371307373 0.4817681312561035 -0.17900800704956055 0.3309873044490814 0.452229380607605 -0.2016717940568924 0.3338295817375183 0.4224347770214081 -0.22198496758937836 0.3368842303752899 0.39231255650520325 -0.2398768663406372 0.3404347598552704 0.3618113398551941 -0.25560256838798523 0.3445886969566345 0.3307792544364929 -0.2690263092517853 0.34915268421173096 0.29905110597610474 -0.28000155091285706 0.3541487157344818 0.2665793299674988 -0.2891620397567749 0.35991135239601135 0.23336143791675568 -0.2971663475036621 0.3665134310722351 0.19936661422252655 -0.30398470163345337 0.3733709454536438 0.16462941467761993 -0.30849841237068176 0.3796371817588806 0.12943246960639954 -0.30957600474357605 0.38467344641685486 0.09401985257863998 -0.30747169256210327 0.38827455043792725 0.0584833137691021 -0.30408430099487305 0.3906126916408539 0.022775346413254738 -0.30170634388923645 0.39192792773246765 -0.013151050545275211 -0.30189260840415955 0.2960178256034851 0.5129849910736084 -0.17886264622211456 0.29888635873794556 0.48384442925453186 -0.2062918245792389 0.3017756938934326 0.4545409679412842 -0.23181286454200745 0.3046096861362457 0.42495155334472656 -0.25457292795181274 0.3075210154056549 0.39505159854888916 -0.2745855152606964 0.31063273549079895 0.3647564947605133 -0.29141366481781006 0.31395530700683594 0.33387255668640137 -0.30420443415641785 0.31758609414100647 0.3022964298725128 -0.3135618269443512 0.3215514123439789 0.2699863612651825 -0.3205734193325043 0.3261043131351471 0.23687893152236938 -0.326015442609787 0.3316900432109833 0.20289772748947144 -0.3309047520160675 0.3383764922618866 0.16796107590198517 -0.33526721596717834 0.3452985882759094 0.1322796493768692 -0.3377423584461212 0.35120049118995667 0.09630779922008514 -0.3362455368041992 0.35543355345726013 0.060249246656894684 -0.33152976632118225 0.3579087555408478 0.02395627647638321 -0.325722873210907 0.3588564693927765 -0.012652771547436714 -0.32088539004325867 0.26621314883232117 0.5146821737289429 -0.2018914818763733 0.2691960334777832 0.48572662472724915 -0.23209965229034424 0.27214187383651733 0.4565693438053131 -0.26009032130241394 0.27496957778930664 0.4271131455898285 -0.2850499153137207 0.2777253985404968 0.3973403871059418 -0.3066425025463104 0.28033190965652466 0.36710795760154724 -0.3236095607280731 0.28281983733177185 0.3362586796283722 -0.3353472650051117 0.2855047285556793 0.30478376150131226 -0.34343498945236206 0.28860390186309814 0.27268385887145996 -0.3494585454463959 0.2921501100063324 0.23984317481517792 -0.3534415662288666 0.29642823338508606 0.2060936987400055 -0.35596078634262085 0.30190467834472656 0.17125792801380157 -0.3582620918750763 0.3083834648132324 0.135372593998909 -0.3601822853088379 0.3145633637905121 0.09897482395172119 -0.3592936098575592 0.3192312717437744 0.06244499981403351 -0.35407620668411255 0.3219768702983856 0.025659048929810524 -0.34557610750198364 0.32278886437416077 -0.011560331098735332 -0.335943341255188 0.23596076667308807 0.5161346793174744 -0.22221356630325317 0.23898005485534668 0.4872581660747528 -0.2544237971305847 0.24194036424160004 0.45816606283187866 -0.2843460738658905 0.24473558366298676 0.42877987027168274 -0.31110283732414246 0.24732151627540588 0.39904627203941345 -0.3337269127368927 0.24953320622444153 0.368815153837204 -0.3507508933544159 0.25141480565071106 0.3379976153373718 -0.3621924817562103 0.25328320264816284 0.3066066801548004 -0.36982297897338867 0.2554631233215332 0.2746489346027374 -0.3752567172050476 0.2580966353416443 0.24204044044017792 -0.37859904766082764 0.2613668441772461 0.20857161283493042 -0.37991026043891907 0.26557832956314087 0.17398890852928162 -0.3799651861190796 0.2708773612976074 0.13820885121822357 -0.37960219383239746 0.2764534056186676 0.1016581729054451 -0.37724876403808594 0.2809878885746002 0.0648399218916893 -0.3708910644054413 0.28376781940460205 0.027679763734340668 -0.36034223437309265 0.28454992175102234 -0.010077450424432755 -0.347181111574173 0.2051927149295807 0.5172150731086731 -0.23836620151996613 0.208180233836174 0.4883463680744171 -0.2720472514629364 0.21111300587654114 0.4592799246311188 -0.3036612272262573 0.2138272523880005 0.4299132227897644 -0.3318271338939667 0.21624276041984558 0.40016984939575195 -0.355218768119812 0.2182176411151886 0.3699490427970886 -0.37279820442199707 0.21975824236869812 0.33919012546539307 -0.38478851318359375 0.22110286355018616 0.3079027533531189 -0.39276644587516785 0.22254161536693573 0.2760520577430725 -0.39787495136260986 0.22426731884479523 0.24354436993598938 -0.4003208577632904 0.2265244424343109 0.21022315323352814 -0.40021005272865295 0.2296627163887024 0.1758352518081665 -0.3985650837421417 0.23384778201580048 0.14023450016975403 -0.39641618728637695 0.2384510338306427 0.10376548022031784 -0.39244544506073 0.24229729175567627 0.06692350655794144 -0.3845115303993225 0.24467071890830994 0.029605817049741745 -0.37249985337257385 0.2452438622713089 -0.00855342298746109 -0.35744547843933105 0.17390146851539612 0.5179103016853333 -0.25004422664642334 0.17679719626903534 0.48902103304862976 -0.2851015627384186 0.17964014410972595 0.4599548876285553 -0.3182445168495178 0.1822245717048645 0.43056848645210266 -0.34747251868247986 0.18448133766651154 0.40079566836357117 -0.37146103382110596 0.18631461262702942 0.3705880045890808 -0.3895677626132965 0.18770796060562134 0.33990374207496643 -0.4023503065109253 0.18879954516887665 0.3087116479873657 -0.41098952293395996 0.1897936463356018 0.276938796043396 -0.4161061644554138 0.19087989628314972 0.2444837987422943 -0.4177325665950775 0.19225838780403137 0.21121586859226227 -0.41615355014801025 0.1942913830280304 0.17691659927368164 -0.4127286374568939 0.1972711831331253 0.1414296180009842 -0.4090133011341095 0.2007676362991333 0.1050676703453064 -0.4041588008403778 0.20369893312454224 0.06828011572360992 -0.39582082629203796 0.20527464151382446 0.030940672382712364 -0.38362982869148254 0.20531047880649567 -0.007416001055389643 -0.3684345781803131 0.14207515120506287 0.518288791179657 -0.2577504813671112 0.14483033120632172 0.4893711507320404 -0.2942933738231659 0.14751017093658447 0.46027037501335144 -0.3286619484424591 0.14990752935409546 0.43082791566848755 -0.35844850540161133 0.15199927985668182 0.4010066092014313 -0.3824974000453949 0.15375493466854095 0.37080949544906616 -0.4009617269039154 0.15510448813438416 0.3401833176612854 -0.41449224948883057 0.15608373284339905 0.3090507388114929 -0.42373985052108765 0.15683376789093018 0.27731794118881226 -0.42892885208129883 0.15751659870147705 0.24488510191440582 -0.42999717593193054 0.15828511118888855 0.21163251996040344 -0.42740219831466675 0.15941405296325684 0.1773892045021057 -0.42264387011528015 0.1612369418144226 0.1420002579689026 -0.4175952076911926 0.16347575187683105 0.10572003573179245 -0.412044882774353 0.1652621626853943 0.06893934309482574 -0.40418553352355957 0.16590674221515656 0.03157409280538559 -0.3934920132160187 0.16535577178001404 -0.006813141517341137 -0.3802691698074341 0.10970054566860199 0.5184155702590942 -0.261885404586792 0.11226420104503632 0.4894590377807617 -0.299874484539032 0.11473270505666733 0.46029865741729736 -0.3351525068283081 0.11690766364336014 0.43078121542930603 -0.3650558590888977 0.11881252378225327 0.4008947014808655 -0.3888462483882904 0.12047605216503143 0.370673269033432 -0.4073330760002136 0.12181181460618973 0.34005361795425415 -0.42119300365448 0.12275989353656769 0.3089315593242645 -0.4306897222995758 0.12337516993284225 0.2772040069103241 -0.4357682168483734 0.12378216534852982 0.24476799368858337 -0.43642809987068176 0.1241021677851677 0.21150869131088257 -0.4332903325557709 0.12454956769943237 0.17730002105236053 -0.4278930127620697 0.12539368867874146 0.14200739562511444 -0.42217984795570374 0.12645387649536133 0.10581424087285995 -0.4165194630622864 0.12700563669204712 0.06905445456504822 -0.4098834693431854 0.12660987675189972 0.03169240802526474 -0.40153297781944275 0.12554937601089478 -0.006546405144035816 -0.39075204730033875 0.07679101824760437 0.5182759761810303 -0.26195237040519714 0.0791132003068924 0.48927512764930725 -0.30126190185546875 0.08134400099515915 0.4600718021392822 -0.33749693632125854 0.08330278098583221 0.4305095076560974 -0.3677125573158264 0.08501902967691422 0.4005643427371979 -0.3912380337715149 0.08653774112462997 0.3702627122402191 -0.40917256474494934 0.08780620992183685 0.3395654261112213 -0.4225292503833771 0.08872468024492264 0.30839091539382935 -0.4317224323749542 0.08926226198673248 0.2766302227973938 -0.43649032711982727 0.08946853131055832 0.24417047202587128 -0.4368775486946106 0.08943477272987366 0.21090051531791687 -0.43366947770118713 0.08931171149015427 0.1767037808895111 -0.4283365309238434 0.08930009603500366 0.141488179564476 -0.4228333830833435 0.08924929797649384 0.10539668053388596 -0.4180733561515808 0.08866268396377563 0.06869114935398102 -0.413429319858551 0.08735107630491257 0.03143017366528511 -0.407171368598938 0.08591435104608536 -0.00644853338599205 -0.397816926240921 0.04341552034020424 0.5178118944168091 -0.25712287425994873 0.04545820131897926 0.48878762125968933 -0.2977616786956787 0.047423653304576874 0.4595772922039032 -0.3351713716983795 0.04917195439338684 0.43002405762672424 -0.36617064476013184 0.05070958659052849 0.40005791187286377 -0.38981255888938904 0.0520593635737896 0.3696630597114563 -0.40710076689720154 0.05318634957075119 0.33882763981819153 -0.4194839298725128 0.054006125777959824 0.30752453207969666 -0.42779648303985596 0.054446540772914886 0.2756846249103546 -0.43203115463256836 0.05448925495147705 0.24318623542785645 -0.4323022663593292 0.05414625257253647 0.209881991147995 -0.42932286858558655 0.05348268151283264 0.17566227912902832 -0.4244409501552582 0.05263044685125351 0.1404874175786972 -0.42002132534980774 0.05152212455868721 0.10450954735279083 -0.4171425998210907 0.0499931201338768 0.06793966144323349 -0.4144946038722992 0.04821358248591423 0.03092510625720024 -0.4094935357570648 0.046849798411130905 -0.006461810320615768 -0.400673508644104 0.009627075865864754 0.517071008682251 -0.2479369044303894 0.011384096927940845 0.48804759979248047 -0.2898199260234833 0.013060061261057854 0.45883285999298096 -0.3282158374786377 0.01459219679236412 0.4292954206466675 -0.35996460914611816 0.015946051105856895 0.3993243873119354 -0.38397926092147827 0.01712721772491932 0.3688674569129944 -0.4011041820049286 0.018101122230291367 0.337903767824173 -0.41274088621139526 0.01877751387655735 0.30643948912620544 -0.42007505893707275 0.019056184217333794 0.27446648478507996 -0.42357343435287476 0.018866563215851784 0.2418687641620636 -0.4235844910144806 0.01814976893365383 0.20848743617534637 -0.42090997099876404 0.016880357638001442 0.17421428859233856 -0.41712331771850586 0.015165826305747032 0.13907107710838318 -0.4145454466342926 0.013183421455323696 0.10322251170873642 -0.4136011600494385 0.01117729116231203 0.06692460179328918 -0.41202613711357117 0.009548865258693695 0.030365189537405968 -0.40696921944618225 0.00865868665277958 -0.006494722329080105 -0.3979116678237915 0.5352523922920227 0.4699348211288452 -0.03498733043670654 0.5341470837593079 0.5011653900146484 -0.02812134101986885 0.5659650564193726 0.46928390860557556 -0.02716267853975296 0.5649629831314087 0.5005722045898438 -0.021117163822054863 0.5968254208564758 0.4688730835914612 -0.021883778274059296 0.5959246754646301 0.5001924633979797 -0.01651565544307232 0.6277785897254944 0.4686335623264313 -0.018281912431120872 0.626966118812561 0.4999697804450989 -0.013465222902595997 0.658784031867981 0.4685194492340088 -0.01579650118947029 0.6580381989479065 0.49985936284065247 -0.01136091724038124 0.6897940635681152 0.46849244832992554 -0.013920437544584274 0.6891025900840759 0.49982789158821106 -0.009786894544959068 0.7207669615745544 0.4685141146183014 -0.01214537676423788 0.7201350927352905 0.4998398721218109 -0.008350899443030357 0.7516838908195496 0.4685537815093994 -0.010138684883713722 0.7511362433433533 0.49986764788627625 -0.006841810420155525 0.7825697660446167 0.46859627962112427 -0.007946544326841831 0.7821292877197266 0.4998975694179535 -0.005294496659189463 0.8134698867797852 0.46863701939582825 -0.005839992314577103 0.8131400942802429 0.499925434589386 -0.0038541690446436405 0.8444178700447083 0.4686722159385681 -0.004021490458399057 0.8441835045814514 0.49994951486587524 -0.002610396360978484 0.8754274249076843 0.46870023012161255 -0.0025735688395798206 0.8752660751342773 0.4999690055847168 -0.0016022406052798033 0.9064935445785522 0.4687216281890869 -0.0014666144270449877 0.9063878655433655 0.49998393654823303 -0.0008303042268380523 0.9376140832901001 0.4687367081642151 -0.0006868447526358068 0.9375558495521545 0.4999935030937195 -0.0003361720882821828 0.9706214666366577 0.4999983310699463 -0.010649416595697403 1.000001311302185 0.49999985098838806 -0.1777578443288803 1.0 0.53125 -0.17774981260299683 0.970609724521637 0.5312496423721313 -0.010579191148281097 0.500001072883606 0.9375019669532776 -2.5346065740450285e-05 0.5000003576278687 0.9580279588699341 -8.696904842508957e-06 0.4687514007091522 0.9580284357070923 -3.260829907958396e-05 0.4687536358833313 0.9375066161155701 -8.449279266642407e-05 0.5365121364593506 0.4386555552482605 -0.04206673428416252 0.5670104026794434 0.43795713782310486 -0.03304244205355644 0.597711980342865 0.4375273287296295 -0.026883414015173912 0.6285495162010193 0.4372834861278534 -0.022679481655359268 0.6594766974449158 0.4371725618839264 -0.01981331966817379 0.6904447674751282 0.4371528625488281 -0.01775633729994297 0.7213948965072632 0.4371829330921173 -0.01589302159845829 0.7522791624069214 0.4372318685054779 -0.013713367283344269 0.7830882668495178 0.4372856914997101 -0.011068152263760567 0.8138744831085205 0.4373399019241333 -0.008276139385998249 0.8447076082229614 0.43738844990730286 -0.005766172427684069 0.8756234049797058 0.4374274015426636 -0.0037535896990448236 0.906622588634491 0.4374566078186035 -0.002243372844532132 0.9376922249794006 0.43747761845588684 -0.0011575320968404412 0.9706457257270813 0.4687456488609314 -0.01079538743942976 0.9706840515136719 0.43749138712882996 -0.011025659739971161 1.0000202655792236 0.43749764561653137 -0.17787188291549683 1.0000073909759521 0.46874913573265076 -0.17779456079006195 0.9377840757369995 0.40621691942214966 -0.0017106684390455484 0.9581595659255981 0.4062289297580719 -0.0010892231948673725 0.9581078886985779 0.4374863803386688 -0.000703583238646388 0.5379930734634399 0.407320499420166 -0.04915434494614601 0.5681523084640503 0.40658482909202576 -0.038650721311569214 0.5986036658287048 0.4061492383480072 -0.03141937404870987 0.6292721629142761 0.4059130549430847 -0.026506351307034492 0.6600884795188904 0.40581613779067993 -0.023201238363981247 0.6909939646720886 0.4058106541633606 -0.020906371995806694 0.7219216227531433 0.4058530330657959 -0.018984908238053322 0.7528063654899597 0.40591129660606384 -0.016853230074048042 0.7836017608642578 0.40597328543663025 -0.0141502246260643 0.8143174052238464 0.40603816509246826 -0.010942627675831318 0.845037043094635 0.4061000943183899 -0.007749844808131456 0.8758465051651001 0.4061514139175415 -0.005096986889839172 0.9067671298980713 0.40618976950645447 -0.003113875398412347 0.9707335233688354 0.40623584389686584 -0.011322913691401482 1.000040054321289 0.4062453508377075 -0.1779908984899521 0.9378772377967834 0.37495607137680054 -0.0022715646773576736 0.9582168459892273 0.37497103214263916 -0.00149818928912282 0.5399601459503174 0.3758922517299652 -0.05700827017426491 0.5696457624435425 0.3751350939273834 -0.04483778402209282 0.5997076034545898 0.37470850348472595 -0.036218032240867615 0.630085289478302 0.3745035231113434 -0.030316438525915146 0.6607033014297485 0.37443745136260986 -0.026321107521653175 0.6914882063865662 0.37445637583732605 -0.023593377321958542 0.7223557233810425 0.3745191991329193 -0.021454449743032455 0.7532284259796143 0.3745926320552826 -0.01931946538388729 0.7840325832366943 0.37466520071029663 -0.01671389862895012 0.8147332072257996 0.3747378885746002 -0.01343912910670042 0.8453749418258667 0.37481072545051575 -0.009784179739654064 0.8760808110237122 0.3748741149902344 -0.006507971324026585 0.9069170355796814 0.3749223053455353 -0.004016402643173933 0.9707881808280945 0.374979704618454 -0.011651366017758846 1.0000646114349365 0.3749924600124359 -0.17813904583454132 0.9379649758338928 0.34369584918022156 -0.0027996401768177748 0.9582721590995789 0.3437134921550751 -0.0018866288010030985 0.5426605939865112 0.34433987736701965 -0.06635645776987076 0.5717582702636719 0.34357771277427673 -0.052447255700826645 0.6012756824493408 0.34318116307258606 -0.042146261781454086 0.6311947107315063 0.3430292308330536 -0.03482366353273392 0.6614632606506348 0.34301701188087463 -0.02970605157315731 0.6920169591903687 0.34307926893234253 -0.02618865668773651 0.7227542996406555 0.3431724011898041 -0.02358233742415905 0.753570020198822 0.343270868062973 -0.021251695230603218 0.7843687534332275 0.3433602750301361 -0.0186780896037817 0.8150725364685059 0.3434428572654724 -0.015461212024092674 0.845678448677063 0.3435244858264923 -0.011608591303229332 0.8763017654418945 0.3435983657836914 -0.00783819705247879 0.9070595502853394 0.34365570545196533 -0.004874493461102247 0.9708404541015625 0.34372377395629883 -0.011965500190854073 1.0000903606414795 0.34373947978019714 -0.17829401791095734 0.9380372762680054 0.31243741512298584 -0.0032350406982004642 0.9583191871643066 0.31245720386505127 -0.002211913000792265 0.5462017059326172 0.3126942217350006 -0.077232226729393 0.5746133923530579 0.31193098425865173 -0.06165718659758568 0.6034578680992126 0.31156474351882935 -0.049579329788684845 0.6327674984931946 0.31147700548171997 -0.040511664003133774 0.6625257134437561 0.3115384578704834 -0.03383997827768326 0.692699134349823 0.31166353821754456 -0.02910088375210762 0.7231919169425964 0.31180548667907715 -0.025665758177638054 0.7538782358169556 0.3119392693042755 -0.022882966324687004 0.7846262454986572 0.3120554983615875 -0.020135845988988876 0.8153231739997864 0.312153160572052 -0.016930390149354935 0.8459140062332153 0.312244176864624 -0.01301602553576231 0.8764816522598267 0.3123273253440857 -0.008920935913920403 0.9071770310401917 0.3123920261859894 -0.005581967532634735 0.9708847999572754 0.31246882677078247 -0.012231959030032158 1.0001126527786255 0.3124868869781494 -0.1784282624721527 0.9380826950073242 0.2811821401119232 -0.0035084818955510855 0.9583480358123779 0.28120332956314087 -0.002412046305835247 0.5505825877189636 0.2809997498989105 -0.0892726480960846 0.5782005786895752 0.28024816513061523 -0.07217878848314285 0.6062978506088257 0.27990591526031494 -0.05848165601491928 0.6348856091499329 0.279863566160202 -0.04755838215351105 0.6640042662620544 0.2799990475177765 -0.03904932737350464 0.6936459541320801 0.2802025377750397 -0.03265891969203949 0.723754346370697 0.28041160106658936 -0.027981573715806007 0.754202127456665 0.2805960476398468 -0.024394094944000244 0.7848367094993591 0.2807466983795166 -0.021250806748867035 0.8154937624931335 0.2808676064014435 -0.01789875328540802 0.8460665345191956 0.2809709906578064 -0.013913633301854134 0.8765993714332581 0.28106269240379333 -0.00962645374238491 0.9072532057762146 0.28113314509391785 -0.006040588952600956 0.9709116220474243 0.28121575713157654 -0.012392831966280937 1.0001275539398193 0.28123512864112854 -0.17851807177066803 0.9380983710289001 0.24993030726909637 -0.003602852113544941 0.9583573341369629 0.24995207786560059 -0.002477872883901 0.5558532476425171 0.2492319494485855 -0.1027146577835083 0.5825713872909546 0.24853719770908356 -0.08410792052745819 0.6097710132598877 0.2482299506664276 -0.06861010938882828 0.6375417113304138 0.24822285771369934 -0.055819071829319 0.6659148931503296 0.24841706454753876 -0.045326296240091324 0.6949065327644348 0.24870239198207855 -0.03699425235390663 0.7245054841041565 0.24899064004421234 -0.030711539089679718 0.7546000480651855 0.2492382675409317 -0.02596992254257202 0.7850325703620911 0.24943266808986664 -0.022139664739370346 0.8155953884124756 0.2495843470096588 -0.01842774823307991 0.8461320400238037 0.2497054636478424 -0.014277800917625427 0.8766412734985352 0.24980589747428894 -0.009871612302958965 0.9072777032852173 0.24988029897212982 -0.0061880494467914104 0.9709199666976929 0.24996481835842133 -0.01244337297976017 1.000132441520691 0.24998457729816437 -0.17854714393615723 0.9380788803100586 0.21868257224559784 -0.0034857525024563074 0.9583456516265869 0.21870365738868713 -0.0023955092765390873 0.5617986917495728 0.21734385192394257 -0.11720246821641922 0.5877097249031067 0.2167549580335617 -0.09749735891819 0.6139312386512756 0.21652421355247498 -0.08010027557611465 0.6407161355018616 0.21657037734985352 -0.06511469930410385 0.6682121753692627 0.2168157398700714 -0.0524384044110775 0.696462094783783 0.2171790897846222 -0.0419900082051754 0.725450336933136 0.21755219995975494 -0.03382575884461403 0.7550917267799377 0.2178710252046585 -0.027629317715764046 0.7852311134338379 0.21811744570732117 -0.022819053381681442 0.8156375288963318 0.2183043360710144 -0.01853628270328045 0.8461090922355652 0.21844802796840668 -0.01410334650427103 0.8766041994094849 0.21855738759040833 -0.009637474082410336 0.9072476625442505 0.2186335325241089 -0.0060064587742090225 0.9709093570709229 0.21871602535247803 -0.012379619292914867 1.0001263618469238 0.21873529255390167 -0.17851044237613678 0.938029944896698 0.1874382644891739 -0.003191049676388502 0.9583145380020142 0.1874578595161438 -0.002179561648517847 0.5678557753562927 0.18538212776184082 -0.1312408447265625 0.5932620167732239 0.1849035918712616 -0.11136873066425323 0.618679940700531 0.18476924300193787 -0.09265805035829544 0.6444067358970642 0.18489786982536316 -0.07534805685281754 0.6708584427833557 0.18521267175674438 -0.060124125331640244 0.6982307434082031 0.18565215170383453 -0.04730481654405594 0.7265357375144958 0.18611331284046173 -0.03707914426922798 0.7556595206260681 0.18650425970554352 -0.029265396296977997 0.7854369878768921 0.18680478632450104 -0.023274289444088936 0.8156251311302185 0.18703043460845947 -0.018212273716926575 0.8459986448287964 0.18719908595085144 -0.013386773876845837 0.876490592956543 0.1873173862695694 -0.008940886706113815 0.9071670174598694 0.1873924434185028 -0.005518822465091944 0.9708804488182068 0.18746930360794067 -0.012205846607685089 1.000110387802124 0.1874871402978897 -0.17841441929340363 0.9379555583000183 0.1561969369649887 -0.0027430374175310135 0.9582660794258118 0.15621432662010193 -0.0018445143941789865 0.5732494592666626 0.15339450538158417 -0.14301997423171997 0.5986373424530029 0.15302997827529907 -0.124180369079113 0.6236352920532227 0.15298563241958618 -0.10518088191747665 0.6484888195991516 0.15320396423339844 -0.08612725883722305 0.6738252639770508 0.15360628068447113 -0.06821803748607635 0.7001859545707703 0.1541341245174408 -0.05272974073886871 0.7277146577835083 0.15468458831310272 -0.040257301181554794 0.7562698125839233 0.15514853596687317 -0.03070632740855217 0.7856228351593018 0.15550342202186584 -0.023351255804300308 0.8155470490455627 0.15576697885990143 -0.01737458072602749 0.845805823802948 0.15595990419387817 -0.012146486900746822 0.8763139247894287 0.15608467161655426 -0.007865489460527897 0.9070470929145813 0.15615586936473846 -0.004794367589056492 0.9708347320556641 0.15622445940971375 -0.011931131593883038 1.0000873804092407 0.1562398225069046 -0.17827622592449188 0.9378666877746582 0.12495728582143784 -0.0022080624476075172 0.9582099914550781 0.12497194111347198 -0.0014504783321172 0.5778549909591675 0.12134945392608643 -0.1526656299829483 0.6034044623374939 0.12113781273365021 -0.13510331511497498 0.6283541321754456 0.1211966872215271 -0.11663351207971573 0.6526777744293213 0.12150326371192932 -0.09668808430433273 0.6770028471946716 0.12200313806533813 -0.07638732343912125 0.7023115754127502 0.1226314902305603 -0.058156292885541916 0.7289735674858093 0.12327536940574646 -0.04324342682957649 0.7568942308425903 0.12381376326084137 -0.03176696226000786 0.785771369934082 0.124220110476017 -0.02291729487478733 0.8153931498527527 0.1245197206735611 -0.015955034643411636 0.8455495238304138 0.12473057955503464 -0.0104857562109828 0.8760988712310791 0.12485691159963608 -0.0065575698390603065 0.9069051146507263 0.1249220222234726 -0.003937907516956329 0.970781683921814 0.12498044222593307 -0.0116120595484972 1.0000616312026978 0.12499281764030457 -0.17812101542949677 0.9377732276916504 0.09371817111968994 -0.001645196694880724 0.9581530094146729 0.09372984617948532 -0.0010418666061013937 0.5819002389907837 0.08921784162521362 -0.1610766351222992 0.6076171398162842 0.08920370787382126 -0.14459800720214844 0.63261479139328 0.08939802646636963 -0.12668199837207794 0.6566566824913025 0.0898047536611557 -0.10629884898662567 0.6801964640617371 0.09041154384613037 -0.0841222032904625 0.7044800519943237 0.09115510433912277 -0.06318184733390808 0.7302606105804443 0.09189536422491074 -0.0457838699221611 0.7575003504753113 0.09250514954328537 -0.03228740766644478 0.7858859300613403 0.09295789152383804 -0.021935665979981422 0.8152009844779968 0.09328776597976685 -0.014116291888058186 0.8452752828598022 0.09350842982530594 -0.00864845234900713 0.8758731484413147 0.09363160282373428 -0.005178253632038832 0.9067543745040894 0.09368949383497238 -0.003030194668099284 0.970727264881134 0.09373655915260315 -0.011285144835710526 1.000037431716919 0.0937456414103508 -0.17797498404979706 0.9376823306083679 0.06247876212000847 -0.0010978595819324255 0.9581025242805481 0.06248718127608299 -0.0006626519025303423 0.5853817462921143 0.057009391486644745 -0.16849902272224426 0.6113223433494568 0.05722609907388687 -0.15292613208293915 0.6364038586616516 0.05758308246731758 -0.13540872931480408 0.6602435111999512 0.058113131672143936 -0.11455882340669632 0.6831794381141663 0.05884315073490143 -0.09080468118190765 0.7065492272377014 0.05971626937389374 -0.06734378635883331 0.7314743995666504 0.06055522337555885 -0.04752228036522865 0.7580708861351013 0.06122704967856407 -0.0321740061044693 0.7860060334205627 0.061716269701719284 -0.020604625344276428 0.8150632381439209 0.06206341087818146 -0.012315074913203716 0.8450515270233154 0.06228799372911453 -0.006974465679377317 0.8756723403930664 0.0624060221016407 -0.003903784556314349 0.9066119194030762 0.062456388026475906 -0.002171722473576665 0.9706789255142212 0.062491968274116516 -0.01099460106343031 1.0000183582305908 0.062497854232788086 -0.17786064743995667 0.9376060366630554 0.03123764880001545 -0.0006384413572959602 0.9580644965171814 0.031243039295077324 -0.0003598631592467427 0.5883581638336182 0.024724621325731277 -0.17533087730407715 0.6144668459892273 0.025215106084942818 -0.16009020805358887 0.6396189332008362 0.025759631767868996 -0.14259487390518188 0.6633288860321045 0.026434989646077156 -0.12122135609388351 0.6857998967170715 0.027309732511639595 -0.09603698551654816 0.7084097862243652 0.028322705999016762 -0.07037749886512756 0.7325828671455383 0.02925584837794304 -0.04846693202853203 0.7586379647254944 0.029971757903695107 -0.03175124153494835 0.7862218022346497 0.030482254922389984 -0.01949395053088665 0.8150649666786194 0.030838629230856895 -0.011007284745573997 0.8449400067329407 0.031063754111528397 -0.005738936364650726 0.8755295276641846 0.03117726929485798 -0.0028800389263778925 0.9064924120903015 0.03122132457792759 -0.0014255479909479618 0.9706422090530396 0.031246062368154526 -0.010774117894470692 1.0000064373016357 0.03124925307929516 -0.1777884066104889 0.9375532269477844 -6.050413048797054e-06 -0.00031239388044923544 0.9580410718917847 -3.05924481835973e-06 -0.00015801566769368947 0.5908297300338745 -0.007657504640519619 -0.18201451003551483 0.6168507933616638 -0.006835618522018194 -0.16580040752887726 0.6419269442558289 -0.006047531962394714 -0.14752016961574554 0.6655788421630859 -0.005196791607886553 -0.12554897367954254 0.6878754496574402 -0.004165977239608765 -0.09956479072570801 0.710035502910614 -0.0030253701843321323 -0.07257486879825592 0.7336748838424683 -0.002018974395468831 -0.049338825047016144 0.7592965960502625 -0.0012727543944492936 -0.031727783381938934 0.7865935564041138 -0.0007521231891587377 -0.01906268112361431 0.815230667591095 -0.0003919019945897162 -0.010384666733443737 0.8449639081954956 -0.00016765249893069267 -0.005046864040195942 0.8754732608795166 -5.7632587413536385e-05 -0.0022148245479911566 0.9064169526100159 -1.782235995051451e-05 -0.0008876391220837831 0.9706194400787354 -1.412033043379779e-06 -0.010637352243065834 1.0000009536743164 -1.1638726249429965e-07 -0.17775583267211914 0.5312501192092896 0.9375001788139343 -2.254457285744138e-06 0.5625 0.9375 0.0 0.5625 0.9580279588699341 0.0 0.5312500596046448 0.9580279588699341 -7.735197868896648e-07 0.5332682132720947 0.5323403477668762 -0.022210584953427315 0.5025813579559326 0.5330663919448853 -0.031155766919255257 0.5326323509216309 0.5634773373603821 -0.017455019056797028 0.5018504858016968 0.5640900135040283 -0.025180524215102196 0.5321763753890991 0.5945976376533508 -0.013570123352110386 0.5013027191162109 0.5951099395751953 -0.02012261189520359 0.5318526029586792 0.6257140636444092 -0.010356809943914413 0.5009015798568726 0.6261364817619324 -0.015839073807001114 0.5316444635391235 0.6568314433097839 -0.007831004448235035 0.5006242394447327 0.6571692824363708 -0.012247113510966301 0.531518280506134 0.6879540085792542 -0.0058714840561151505 0.5004374980926514 0.6882150769233704 -0.009276796132326126 0.5314399600028992 0.7190903425216675 -0.004344272427260876 0.5003069639205933 0.719283401966095 -0.006835905835032463 0.5313830971717834 0.7502432465553284 -0.003097390988841653 0.5002116560935974 0.7503814101219177 -0.0048611280508339405 0.5313386917114258 0.7814124822616577 -0.0020685086492449045 0.5001420974731445 0.7815099954605103 -0.003310727421194315 0.5313025116920471 0.8125962018966675 -0.0012245489051565528 0.5000896453857422 0.8126642107963562 -0.0020904256962239742 0.5312759876251221 0.8437975645065308 -0.0006055780104361475 0.5000494122505188 0.8438405394554138 -0.0011523737339302897 0.5312597155570984 0.8750178217887878 -0.00022690955665893853 0.5000219941139221 0.8750402927398682 -0.000513326667714864 0.5312522053718567 0.9062540531158447 -5.16754989803303e-05 0.500006914138794 0.9062626957893372 -0.00016169785521924496 0.5 0.9706065654754639 -0.010560071095824242 0.5 1.0 -0.17774981260299683 0.46875 1.0 -0.17774981260299683 0.4687502384185791 0.9706069827079773 -0.010565565899014473 0.9580681324005127 0.4687424302101135 -0.0003904721525032073 0.5641490817070007 0.5318178534507751 -0.01590949110686779 0.563572347164154 0.5630292892456055 -0.011897292919456959 0.5631772875785828 0.5942238569259644 -0.008836662396788597 0.5629093647003174 0.6254101395606995 -0.006470562890172005 0.5627461671829224 0.6565914154052734 -0.004738655872642994 0.5626582503318787 0.6877704858779907 -0.0035078334622085094 0.5626109838485718 0.7189527153968811 -0.00258138426579535 0.5625773668289185 0.7501417994499207 -0.0018051795195788145 0.5625482201576233 0.7813383340835571 -0.0011246107751503587 0.5625255703926086 0.8125468492507935 -0.0005968259065411985 0.5625106692314148 0.8437695503234863 -0.0002491417108103633 0.5625029802322388 0.8750054836273193 -6.944312917767093e-05 0.5625002980232239 0.906250536441803 -6.868681339256e-06 0.53125 0.9706065654754639 -0.010560071095824242 0.5625 0.9706065654754639 -0.010560071095824242 0.5625 1.0 -0.17774981260299683 0.53125 1.0 -0.17774981260299683 0.59375 0.9375 0.0 0.59375 0.9580279588699341 0.0 0.5951693654060364 0.5314813256263733 -0.011817158199846745 0.5946370363235474 0.5627411007881165 -0.00831765215843916 0.5942813754081726 0.5939830541610718 -0.005802186205983162 0.5940464735031128 0.6252140998840332 -0.003986048977822065 0.5939067602157593 0.6564339399337769 -0.002736075548455119 0.5938389897346497 0.6876466870307922 -0.0019306757021695375 0.5938083529472351 0.718856930732727 -0.0013611194444820285 0.5937877893447876 0.750069260597229 -0.0008819897775538266 0.5937710404396057 0.7812885046005249 -0.0004901268403045833 0.5937593579292297 0.8125171661376953 -0.0002185409248340875 0.593752920627594 0.843755304813385 -6.764166028006002e-05 0.5937503576278687 0.8750007152557373 -8.82749827724183e-06 0.59375 0.90625 0.0 0.59375 0.9706065654754639 -0.010560071095824242 0.59375 1.0 -0.17774981260299683 0.625 0.9375 0.0 0.625 0.9580279588699341 0.0 0.6262685656547546 0.5312831997871399 -0.009207915514707565 0.6257737874984741 0.5625706315040588 -0.006092679221183062 0.6254444718360901 0.5938393473625183 -0.003935892600566149 0.6252276301383972 0.6250928044319153 -0.002431673463433981 0.6251022815704346 0.6563342809677124 -0.0014697988517582417 0.6250455975532532 0.687566339969635 -0.0009107744554057717 0.6250244379043579 0.7187947630882263 -0.0005701518966816366 0.6250139474868774 0.7500255703926086 -0.0003254004695918411 0.625006377696991 0.7812617421150208 -0.0001492932642577216 0.6250020265579224 0.8125036954879761 -4.728823114419356e-05 0.6250002384185791 0.8437504768371582 -6.2036833696765825e-06 0.625 0.875 0.0 0.625 0.90625 0.0 0.625 0.9706065654754639 -0.010560071095824242 0.625 1.0 -0.17774981260299683 0.65625 0.9375 0.0 0.65625 0.9580279588699341 0.0 0.6573967933654785 0.5311809778213501 -0.007488677278161049 0.6569387912750244 0.5624797940254211 -0.004688556306064129 0.6566317081451416 0.5937594175338745 -0.0027790481690317392 0.6564304828643799 0.6250243782997131 -0.00149007816798985 0.6563172340393066 0.656277060508728 -0.0007142750546336174 0.6562699675559998 0.6875212788581848 -0.0003293012850917876 0.656256914138794 0.7187626957893372 -0.0001615160726942122 0.6562530994415283 0.7500057220458984 -7.297047704923898e-05 0.6562508940696716 0.7812516689300537 -2.1248566554277204e-05 0.6562500596046448 0.8125001192092896 -1.552981757413363e-06 0.65625 0.84375 0.0 0.65625 0.875 0.0 0.65625 0.90625 0.0 0.65625 0.9706065654754639 -0.010560071095824242 0.65625 1.0 -0.17774981260299683 0.6875 0.9375 0.0 0.6875 0.9580279588699341 0.0 0.6885210871696472 0.5311468243598938 -0.006290174555033445 0.6881052255630493 0.5624449849128723 -0.0037824860773980618 0.6878244280815125 0.5937262177467346 -0.0020779240876436234 0.6876429915428162 0.6249944567680359 -0.0009595544543117285 0.6875448822975159 0.656252384185791 -0.00033759776852093637 0.6875079274177551 0.6875032782554626 -8.483130659442395e-05 0.6875008344650269 0.7187515497207642 -1.966007039300166e-05 0.6875001788139343 0.7500002980232239 -3.5231760193710215e-06 0.6875 0.78125 0.0 0.6875 0.8125 0.0 0.6875 0.84375 0.0 0.6875 0.875 0.0 0.6875 0.90625 0.0 0.6875 0.9706065654754639 -0.010560071095824242 0.6875 1.0 -0.17774981260299683 0.71875 0.9375 0.0 0.71875 0.9580279588699341 0.0 0.7196256518363953 0.5311496257781982 -0.0052868518978357315 0.7192628383636475 0.5624419450759888 -0.0031031209509819746 0.7190175652503967 0.5937201976776123 -0.0016237146919593215 0.7188597321510315 0.6249881386756897 -0.0006683708052150905 0.7187800407409668 0.6562468409538269 -0.00018392426136415452 0.7187532782554626 0.6874996423721313 -2.0237665012245998e-05 0.71875 0.71875 0.0 0.71875 0.75 0.0 0.71875 0.78125 0.0 0.71875 0.8125 0.0 0.71875 0.84375 0.0 0.71875 0.875 0.0 0.71875 0.90625 0.0 0.71875 0.9706065654754639 -0.010560071095824242 0.71875 1.0 -0.17774981260299683 0.75 0.9375 0.0 0.75 0.9580279588699341 0.0 0.7507127523422241 0.5311669707298279 -0.004291700664907694 0.7504108548164368 0.5624521374702454 -0.00247398903593421 0.7502046823501587 0.5937261581420898 -0.0012325862189754844 0.7500777840614319 0.6249909400939941 -0.00046825435128994286 0.7500184178352356 0.6562478542327881 -0.00011091488704551011 0.7500012516975403 0.6874998807907104 -7.3937076194852125e-06 0.75 0.71875 0.0 0.75 0.75 0.0 0.75 0.78125 0.0 0.75 0.8125 0.0 0.75 0.84375 0.0 0.75 0.875 0.0 0.75 0.90625 0.0 0.75 0.9706065654754639 -0.010560071095824242 0.75 1.0 -0.17774981260299683 0.78125 0.9375 0.0 0.78125 0.9580279588699341 0.0 0.7817959189414978 0.5311864018440247 -0.0032872159499675035 0.781555712223053 0.5624644160270691 -0.001840635435655713 0.7813922166824341 0.5937334299087524 -0.0008564387680962682 0.781298041343689 0.6249943971633911 -0.000289351271931082 0.7812590003013611 0.656248927116394 -5.404220792115666e-05 0.7812501192092896 0.6875 -7.607666248077294e-07 0.78125 0.71875 0.0 0.78125 0.75 0.0 0.78125 0.78125 0.0 0.78125 0.8125 0.0 0.78125 0.84375 0.0 0.78125 0.875 0.0 0.78125 0.90625 0.0 0.78125 0.9706065654754639 -0.010560071095824242 0.78125 1.0 -0.17774981260299683 0.8125 0.9375 0.0 0.8125 0.9580279588699341 0.0 0.8128883838653564 0.5312047600746155 -0.0023385854437947273 0.8127061128616333 0.5624759793281555 -0.0012411604402586818 0.8125863075256348 0.593739926815033 -0.000519661873113364 0.8125244379043579 0.6249971389770508 -0.00014712638221681118 0.812502920627594 0.6562496423721313 -1.7462854884797707e-05 0.8125 0.6875 0.0 0.8125 0.71875 0.0 0.8125 0.75 0.0 0.8125 0.78125 0.0 0.8125 0.8125 0.0 0.8125 0.84375 0.0 0.8125 0.875 0.0 0.8125 0.90625 0.0 0.8125 0.9706065654754639 -0.010560071095824242 0.8125 1.0 -0.17774981260299683 0.84375 0.9375 0.0 0.84375 0.9580279588699341 0.0 0.8440020084381104 0.5312206149101257 -0.0015175779117271304 0.8438711166381836 0.5624858736991882 -0.0007292786031030118 0.8437934517860413 0.5937449336051941 -0.0002617750142235309 0.8437591195106506 0.624998927116394 -5.491435877047479e-05 0.8437502980232239 0.6562499403953552 -1.6538200497961952e-06 0.84375 0.6875 0.0 0.84375 0.71875 0.0 0.84375 0.75 0.0 0.84375 0.78125 0.0 0.84375 0.8125 0.0 0.84375 0.84375 0.0 0.84375 0.875 0.0 0.84375 0.90625 0.0 0.84375 0.9706065654754639 -0.010560071095824242 0.84375 1.0 -0.17774981260299683 0.875 0.9375 0.0 0.875 0.9580279588699341 0.0 0.8751406073570251 0.5312336087226868 -0.0008467035368084908 0.875058650970459 0.5624931454658508 -0.00035311694955453277 0.8750163912773132 0.5937480926513672 -9.861827857093886e-05 0.8750017881393433 0.6249998211860657 -1.0707035471568815e-05 0.875 0.65625 0.0 0.875 0.6875 0.0 0.875 0.71875 0.0 0.875 0.75 0.0 0.875 0.78125 0.0 0.875 0.8125 0.0 0.875 0.84375 0.0 0.875 0.875 0.0 0.875 0.90625 0.0 0.875 0.9706065654754639 -0.010560071095824242 0.875 1.0 -0.17774981260299683 0.90625 0.9375 0.0 0.90625 0.9580279588699341 0.0 0.906313419342041 0.5312426090240479 -0.00038200424751266837 0.9062709212303162 0.5624975562095642 -0.0001261482248082757 0.9062535166740417 0.5937495827674866 -2.126966865034774e-05 0.90625 0.625 0.0 0.90625 0.65625 0.0 0.90625 0.6875 0.0 0.90625 0.71875 0.0 0.90625 0.75 0.0 0.90625 0.78125 0.0 0.90625 0.8125 0.0 0.90625 0.84375 0.0 0.90625 0.875 0.0 0.90625 0.90625 0.0 0.90625 0.9706065654754639 -0.010560071095824242 0.90625 1.0 -0.17774981260299683 0.9375 0.9375 0.0 0.9375 0.9580279588699341 0.0 0.9375203251838684 0.531247615814209 -0.0001224373554578051 0.9375041723251343 0.5624995231628418 -2.514894731575623e-05 0.9375 0.59375 -1.3594352310519753e-07 0.9375 0.625 0.0 0.9375 0.65625 0.0 0.9375 0.6875 0.0 0.9375 0.71875 0.0 0.9375 0.75 0.0 0.9375 0.78125 0.0 0.9375 0.8125 0.0 0.9375 0.84375 0.0 0.9375 0.875 0.0 0.9375 0.90625 0.0 0.9375 0.9706065654754639 -0.010560071095824242 0.9375 1.0 -0.17774981260299683 0.9580279588699341 0.9375 0.0 0.9580279588699341 0.9580279588699341 0.0 0.9580432176589966 0.4999966621398926 -0.00017409873544238508 1.0 0.5625 -0.17774981260299683 0.9706065654754639 0.5625 -0.010560081340372562 1.0 0.59375 -0.17774981260299683 0.9706065654754639 0.59375 -0.010560071095824242 1.0 0.625 -0.17774981260299683 0.9706065654754639 0.625 -0.010560071095824242 1.0 0.65625 -0.17774981260299683 0.9706065654754639 0.65625 -0.010560071095824242 1.0 0.6875 -0.17774981260299683 0.9706065654754639 0.6875 -0.010560071095824242 1.0 0.71875 -0.17774981260299683 0.9706065654754639 0.71875 -0.010560071095824242 1.0 0.75 -0.17774981260299683 0.9706065654754639 0.75 -0.010560071095824242 1.0 0.78125 -0.17774981260299683 0.9706065654754639 0.78125 -0.010560071095824242 1.0 0.8125 -0.17774981260299683 0.9706065654754639 0.8125 -0.010560071095824242 1.0 0.84375 -0.17774981260299683 0.9706065654754639 0.84375 -0.010560071095824242 1.0 0.875 -0.17774981260299683 0.9706065654754639 0.875 -0.010560071095824242 1.0 0.90625 -0.17774981260299683 0.9706065654754639 0.90625 -0.010560071095824242 1.0 0.9375 -0.17774981260299683 0.9706065654754639 0.9375 -0.010560071095824242 0.9580279588699341 0.9706065654754639 -0.010560072958469391 0.9580279588699341 1.0 -0.17774981260299683 0.958031177520752 0.531248927116394 -5.4579963034484535e-05 0.9580279588699341 0.5624998211860657 -8.635752237751149e-06 0.9580279588699341 0.59375 -4.664288866251809e-08 0.9580279588699341 0.625 0.0 0.9580279588699341 0.65625 0.0 0.9580279588699341 0.6875 0.0 0.9580279588699341 0.71875 0.0 0.9580279588699341 0.75 0.0 0.9580279588699341 0.78125 0.0 0.9580279588699341 0.8125 0.0 0.9580279588699341 0.84375 0.0 0.9580279588699341 0.875 0.0 0.9580279588699341 0.90625 0.0 1.0 0.9580279588699341 -0.17774981260299683 0.9706065654754639 0.9580279588699341 -0.010560071095824242 0.9763891100883484 0.9763891100883484 -0.08690228313207626 1.0 0.9794720411300659 -0.17774981260299683 1.0 1.0 -0.17774981260299683 0.9794720411300659 1.0 -0.17774981260299683 0.43750348687171936 0.9580301642417908 -8.121083374135196e-05 0.4375079870223999 0.9375146627426147 -0.00018652375729288906 0.4721188545227051 0.5339596271514893 -0.0424332432448864 0.4418952465057373 0.5349916219711304 -0.05575794354081154 0.41193485260009766 0.5361859202384949 -0.07140812277793884 0.3821887671947479 0.5375375747680664 -0.08926145732402802 0.3525852859020233 0.5390148162841797 -0.10896266251802444 0.3230186104774475 0.5405675768852234 -0.12982431054115295 0.29333770275115967 0.5421234369277954 -0.15080143511295319 0.2634045481681824 0.5436188578605652 -0.17091140151023865 0.23311656713485718 0.544964611530304 -0.1890965849161148 0.202387735247612 0.5460269451141357 -0.20383518934249878 0.17117939889431 0.5467379689216614 -0.21422426402568817 0.13947764039039612 0.5471376180648804 -0.22053839266300201 0.10726090520620346 0.5472793579101562 -0.22316274046897888 0.07454715669155121 0.5471566319465637 -0.22186583280563354 0.04138009250164032 0.5466964244842529 -0.21580389142036438 0.007823451422154903 0.5459418296813965 -0.20553359389305115 0.47123411297798157 0.5648170113563538 -0.03456137701869011 0.44079360365867615 0.5656322240829468 -0.04534013569355011 0.41055014729499817 0.5665609836578369 -0.057836443185806274 0.38050392270088196 0.5676245093345642 -0.07229072600603104 0.3505958020687103 0.5688012838363647 -0.08835095912218094 0.32073965668678284 0.5700512528419495 -0.10538864880800247 0.29083356261253357 0.5713343024253845 -0.12275579571723938 0.26075708866119385 0.5725990533828735 -0.1396513730287552 0.2304069846868515 0.5737770199775696 -0.15514959394931793 0.19969704747200012 0.5747659802436829 -0.16803887486457825 0.168561190366745 0.5754649043083191 -0.17709432542324066 0.13696004450321198 0.5758616328239441 -0.18212378025054932 0.1048760935664177 0.5760003328323364 -0.1835574507713318 0.07230644673109055 0.5758694410324097 -0.18123289942741394 0.03929830342531204 0.5754048824310303 -0.17441043257713318 0.005954725202172995 0.5746569037437439 -0.16383837163448334 0.47055143117904663 0.5957040786743164 -0.027889005839824677 0.43992069363594055 0.596341609954834 -0.036441780626773834 0.40942850708961487 0.5970433950424194 -0.04606381803750992 0.3790862262248993 0.5978403687477112 -0.05708391219377518 0.3488618731498718 0.5987317562103271 -0.06940826773643494 0.3186919391155243 0.5996891260147095 -0.08254139125347137 0.28850293159484863 0.6006800532341003 -0.09593690186738968 0.25821539759635925 0.601672887802124 -0.10907712578773499 0.22773577272891998 0.6026163101196289 -0.12123778462409973 0.19697205722332 0.603432834148407 -0.13142023980617523 0.16586123406887054 0.6040489673614502 -0.13875411450862885 0.13433915376663208 0.6044130325317383 -0.14265339076519012 0.10237199813127518 0.6045279502868652 -0.14316008985042572 0.06995592266321182 0.6043902635574341 -0.14026851952075958 0.037154652178287506 0.6039651036262512 -0.1336270421743393 0.004137804266065359 0.6033274531364441 -0.12434422969818115 0.4700455665588379 0.6266284584999084 -0.022340189665555954 0.4392685890197754 0.6271371245384216 -0.02923092246055603 0.40857672691345215 0.6276662945747375 -0.03656087443232536 0.3779761791229248 0.6282437443733215 -0.04462533816695213 0.3474540412425995 0.6288814544677734 -0.05347307771444321 0.3169775903224945 0.6295726895332336 -0.06292956322431564 0.28649407625198364 0.6302880048751831 -0.07253505289554596 0.25594377517700195 0.6309998631477356 -0.081855408847332 0.22525840997695923 0.6316733360290527 -0.0903766080737114 0.19436712563037872 0.6322641968727112 -0.09749434143304825 0.16320765018463135 0.6327170133590698 -0.10253950953483582 0.1317298710346222 0.6329897046089172 -0.1050429418683052 0.09989362210035324 0.6330582499504089 -0.10474863648414612 0.06769674271345139 0.6329209208488464 -0.10171175003051758 0.035215336829423904 0.6325916647911072 -0.09624113887548447 0.0026112045161426067 0.6321477293968201 -0.08948497474193573 0.46968480944633484 0.6575794816017151 -0.0176957119256258 0.4387984871864319 0.6580007076263428 -0.023404143750667572 0.40795642137527466 0.6584133505821228 -0.02910107746720314 0.37716203927993774 0.6588357090950012 -0.03497949242591858 0.34640687704086304 0.6592826247215271 -0.04115663841366768 0.3156769871711731 0.6597588658332825 -0.047624241560697556 0.2849412262439728 0.6602486371994019 -0.0541219487786293 0.254157155752182 0.6607238054275513 -0.060259588062763214 0.22327496111392975 0.6611633896827698 -0.06570624560117722 0.19224445521831512 0.6615409255027771 -0.07010684907436371 0.16102014482021332 0.6618216037750244 -0.07300660759210587 0.129568949341774 0.6619693040847778 -0.07399934530258179 0.09786301851272583 0.6619670987129211 -0.07293179631233215 0.06590447574853897 0.6618162989616394 -0.06990056484937668 0.033752214163541794 0.6615641117095947 -0.06561411917209625 0.0015237621264532208 0.6612915396690369 -0.061221085488796234 0.469420462846756 0.6885461211204529 -0.013646150007843971 0.43844863772392273 0.6889029741287231 -0.018419254571199417 0.4075009524822235 0.6892452239990234 -0.0230658371001482 0.3765687346458435 0.6895681023597717 -0.02748745121061802 0.34565499424934387 0.6898884177207947 -0.03185594826936722 0.3147483468055725 0.6902124881744385 -0.03621267154812813 0.2838295102119446 0.6905331015586853 -0.04041820764541626 0.25287675857543945 0.6908389329910278 -0.04429854452610016 0.2218540608882904 0.6911072134971619 -0.04755401983857155 0.190723717212677 0.6913214325904846 -0.04993831366300583 0.15945574641227722 0.6914609670639038 -0.05119253322482109 0.12802845239639282 0.691500723361969 -0.05102656036615372 0.09642381966114044 0.6914198398590088 -0.049232367426157 0.0646529495716095 0.6912400126457214 -0.046154506504535675 0.03276902437210083 0.6910311579704285 -0.04274052754044533 0.000839675369206816 0.690855860710144 -0.03985875844955444 0.4692195653915405 0.7195349931716919 -0.010109960101544857 0.43817266821861267 0.7198266386985779 -0.013934990391135216 0.4071463942527771 0.7201176881790161 -0.017789244651794434 0.3761264383792877 0.7203838229179382 -0.021351829171180725 0.3451055586338043 0.7206246852874756 -0.02458593063056469 0.31408172845840454 0.7208490967750549 -0.027566883713006973 0.2830449640750885 0.7210587859153748 -0.030285673215985298 0.25197848677635193 0.721244215965271 -0.032603390514850616 0.22085940837860107 0.7213913202285767 -0.03432585671544075 0.1896655112504959 0.7214882969856262 -0.0352986715734005 0.15837156772613525 0.7215191721916199 -0.03532952815294266 0.12695923447608948 0.7214671969413757 -0.03422095999121666 0.09543117880821228 0.7213340997695923 -0.03203423321247101 0.06380978226661682 0.7211530804634094 -0.029238034039735794 0.03213433921337128 0.7209843993186951 -0.026637928560376167 0.000435522582847625 0.7208616733551025 -0.024687385186553 0.4690687358379364 0.7505611181259155 -0.007170506287366152 0.43795540928840637 0.7507781982421875 -0.009974604472517967 0.40686365962028503 0.7510122656822205 -0.01301547884941101 0.37577831745147705 0.7512341737747192 -0.015920275822281837 0.34468796849250793 0.7514275908470154 -0.018462812528014183 0.31358760595321655 0.7515913248062134 -0.020610958337783813 0.2824676036834717 0.7517248392105103 -0.02233000099658966 0.25132331252098083 0.7518279552459717 -0.023601152002811432 0.22013987600803375 0.7518904209136963 -0.024288123473525047 0.1889001727104187 0.7519011497497559 -0.024253830313682556 0.1575911045074463 0.7518554329872131 -0.02344275265932083 0.12620215117931366 0.7517501711845398 -0.02183462306857109 0.09474799782037735 0.7516074180603027 -0.019730279222130775 0.06324956566095352 0.7514610886573792 -0.01758268103003502 0.031729843467473984 0.7513360977172852 -0.01574239693582058 0.00020346020755823702 0.7512483596801758 -0.014423590153455734 0.4689612090587616 0.7816331386566162 -0.004880201071500778 0.43779805302619934 0.7817824482917786 -0.006788786966353655 0.40664905309677124 0.7819480895996094 -0.00891589280217886 0.37550783157348633 0.7821158170700073 -0.011077775619924068 0.3443639576435089 0.7822661399841309 -0.013024012558162212 0.31320807337760925 0.782386302947998 -0.01458067074418068 0.28203409910202026 0.7824718356132507 -0.015677329152822495 0.2508357763290405 0.7825194597244263 -0.016263816505670547 0.21960653364658356 0.7825254797935486 -0.01628323271870613 0.18833991885185242 0.7824857831001282 -0.015686117112636566 0.15703079104423523 0.7824043035507202 -0.014528115279972553 0.12568017840385437 0.7822945713996887 -0.012987587600946426 0.0942978784441948 0.7821784615516663 -0.01135703083127737 0.0628964751958847 0.7820736765861511 -0.00987069308757782 0.031486887484788895 0.7819914221763611 -0.008687731809914112 7.763825124129653e-05 0.7819302082061768 -0.007804472465068102 0.46888524293899536 0.8127477765083313 -0.003154399339109659 0.4376896619796753 0.8128461837768555 -0.004407795611768961 0.4065013825893402 0.812954843044281 -0.005794001277536154 0.37531593441963196 0.8130648732185364 -0.007200108375400305 0.3441285789012909 0.8131661415100098 -0.008497233502566814 0.31293219327926636 0.8132461309432983 -0.009524751454591751 0.2817208468914032 0.8132963180541992 -0.010169309563934803 0.25049036741256714 0.8133127093315125 -0.01037206593900919 0.2192377895116806 0.8132942914962769 -0.010117162019014359 0.1879630833864212 0.8132438063621521 -0.00943958479911089 0.15666787326335907 0.8131682276725769 -0.008426406420767307 0.12535540759563446 0.8130812048912048 -0.007257929537445307 0.09402947127819061 0.8129956722259521 -0.006100279279053211 0.06269488483667374 0.8129218220710754 -0.005086710210889578 0.031357090920209885 0.8128643035888672 -0.004286270588636398 2.0554538423311897e-05 0.8128235936164856 -0.00370944757014513 0.46882978081703186 0.8438961505889893 -0.0018605564255267382 0.43761494755744934 0.8439606428146362 -0.0026814297307282686 0.40640249848365784 0.8440293073654175 -0.0035565239377319813 0.3751910924911499 0.8440989851951599 -0.004443431738764048 0.34397637844085693 0.8441612720489502 -0.00523797795176506 0.3127543330192566 0.8442088961601257 -0.005846245214343071 0.281521737575531 0.8442360758781433 -0.006193532142788172 0.25027623772621155 0.8442391753196716 -0.00623358553275466 0.21901722252368927 0.8442184925079346 -0.005966679658740759 0.18774572014808655 0.8441774249076843 -0.005435273051261902 0.1564645618200302 0.8441218733787537 -0.004712210036814213 0.12517696619033813 0.8440587520599365 -0.0038893893361091614 0.0938856229186058 0.8439977169036865 -0.0030879650730639696 0.06259150058031082 0.8439437747001648 -0.002374686999246478 0.03129671886563301 0.8439018130302429 -0.0018122999463230371 4.476803951547481e-06 0.843874990940094 -0.001443888177163899 0.46878984570503235 0.8750730156898499 -0.0009292368777096272 0.4375617802143097 0.8751131892204285 -0.0014411769807338715 0.4063357710838318 0.8751571178436279 -0.002000333508476615 0.3751092255115509 0.8752001523971558 -0.0025479737669229507 0.343879759311676 0.8752377033233643 -0.0030262689106166363 0.3126455247402191 0.8752665519714355 -0.0033936200197786093 0.2814038097858429 0.8752813339233398 -0.003582491772249341 0.250154048204422 0.8752813935279846 -0.003582495730370283 0.21889622509479523 0.8752666115760803 -0.00339464470744133 0.18763065338134766 0.8752378225326538 -0.003027162980288267 0.1563604176044464 0.8752008676528931 -0.0025547475088387728 0.12508723139762878 0.875158965587616 -0.002017749473452568 0.09381353855133057 0.8751165866851807 -0.0014743426581844687 0.06254079937934875 0.8750790953636169 -0.0009910239605233073 0.03127003088593483 0.8750508427619934 -0.0006237023626454175 2.477864427419263e-06 0.875034511089325 -0.0004071349394507706 0.4687651991844177 0.9062778353691101 -0.0003543021739460528 0.4375267028808594 0.9062989354133606 -0.0006226645782589912 0.40629029273986816 0.9063238501548767 -0.0009401174611411989 0.3750542998313904 0.9063494801521301 -0.0012666061520576477 0.34381699562072754 0.9063727259635925 -0.0015627359971404076 0.31257638335227966 0.9063898921012878 -0.0017813830636441708 0.2813310921192169 0.9063985347747803 -0.001891149440780282 0.25008100271224976 0.9063984155654907 -0.0018895373214036226 0.21882617473602295 0.9063895344734192 -0.0017765839584171772 0.18756666779518127 0.9063721299171448 -0.0015548572409898043 0.15630391240119934 0.9063487648963928 -0.0012575092259794474 0.12503990530967712 0.9063231348991394 -0.0009307879372499883 0.09377632290124893 0.9062982201576233 -0.0006139552569948137 0.06251492351293564 0.9062773585319519 -0.00034823123132809997 0.031256742775440216 0.9062626361846924 -0.00016040400078054518 1.4202569218468852e-06 0.9062550067901611 -6.177228351589292e-05 0.40626391768455505 0.9375255107879639 -0.00032474781619384885 0.3750206232070923 0.9375377893447876 -0.00048108171904459596 0.34377703070640564 0.9375494718551636 -0.0006302121328189969 0.312531977891922 0.9375585913658142 -0.000746124773286283 0.28128471970558167 0.9375635981559753 -0.0008096451056189835 0.2500346601009369 0.9375635385513306 -0.0008086930611170828 0.21878187358379364 0.9375584125518799 -0.0007435018778778613 0.1875268518924713 0.9375491738319397 -0.0006262374226935208 0.15627042949199677 0.937537431716919 -0.00047651882050558925 0.12501373887062073 0.9375251531600952 -0.00032044481486082077 0.09375784546136856 0.9375143647193909 -0.0001830670953495428 0.06250351667404175 0.9375064373016357 -8.20342538645491e-05 0.03125103563070297 0.9375019073486328 -2.418357144051697e-05 8.366321679886823e-08 0.9375001788139343 -1.951420699697337e-06 0.4375 1.0 -0.17774981260299683 0.43750107288360596 0.9706087112426758 -0.010586222633719444 0.4062500596046448 1.0000001192092896 -0.1777513325214386 0.40625259280204773 0.9706119298934937 -0.010623693466186523 0.37500032782554626 1.0000005960464478 -0.17775759100914001 0.3750046491622925 0.9706161618232727 -0.010674398392438889 0.3437507450580597 1.0000014305114746 -0.17776726186275482 0.3437568247318268 0.9706205725669861 -0.010727815330028534 0.3125011622905731 1.000002145767212 -0.17777664959430695 0.31250864267349243 0.9706242680549622 -0.010772746056318283 0.2812514007091522 1.0000025033950806 -0.1777823567390442 0.2812596559524536 0.9706263542175293 -0.010797535069286823 0.2500014007091522 1.0000025033950806 -0.17778226733207703 0.2500096559524536 0.9706263542175293 -0.010797170922160149 0.21875114738941193 1.000002145767212 -0.17777641117572784 0.21875859797000885 0.9706242084503174 -0.010771675035357475 0.1875007301568985 1.000001311302185 -0.17776697874069214 0.1875067502260208 0.9706204533576965 -0.010726269334554672 0.15625032782554626 1.0000005960464478 -0.1777573972940445 0.1562545746564865 0.9706160426139832 -0.010672816075384617 0.12500005960464478 1.0000001192092896 -0.17775121331214905 0.12500251829624176 0.9706118106842041 -0.010622348636388779 0.09375 1.0 -0.17774981260299683 0.09375102072954178 0.970608651638031 -0.010585356503725052 0.0625 1.0 -0.17774981260299683 0.06250020116567612 0.9706069827079773 -0.010565192438662052 0.03125 1.0 -0.17774981260299683 0.03125 0.9706065654754639 -0.010560071095824242 0.0 1.0 -0.17774981260299683 0.0 0.9706065654754639 -0.010560071095824242 0.4062565863132477 0.9580333232879639 -0.0001533049944555387 0.37501031160354614 0.9580377340316772 -0.0002403294201940298 0.3437640070915222 0.9580422639846802 -0.0003266757121309638 0.3125169277191162 0.9580461978912354 -0.00039604015182703733 0.2812685966491699 0.9580483436584473 -0.00043416378321126103 0.25001856684684753 0.958048403263092 -0.0004335969570092857 0.21876689791679382 0.9580460786819458 -0.00039443402783945203 0.18751390278339386 0.9580422043800354 -0.00032429402926936746 0.1562601923942566 0.9580375552177429 -0.0002377227647230029 0.12500646710395813 0.9580332040786743 -0.00015094326226972044 0.0937534049153328 0.958030104637146 -7.94557054177858e-05 0.06250134855508804 0.9580284357070923 -3.1518193281954154e-05 0.031250353902578354 0.9580279588699341 -8.298005923279561e-06 2.8705422039365658e-08 0.9580279588699341 -6.695458409922139e-07 -0.5 0.9375 0.0 -0.5 0.9580279588699341 0.0 -0.53125 0.9580279588699341 0.0 -0.53125 0.9375 0.0 -0.5043389201164246 0.5019263029098511 -0.03827983886003494 -0.5345526337623596 0.5013041496276855 -0.02826192043721676 -0.5359652638435364 0.470320463180542 -0.03899932652711868 -0.5059266090393066 0.4710066318511963 -0.050640612840652466 -0.5376932621002197 0.43926379084587097 -0.051390234380960464 -0.507769763469696 0.43998295068740845 -0.06415115296840668 -0.539597749710083 0.40806886553764343 -0.06405306607484818 -0.5097020268440247 0.408793568611145 -0.07724203169345856 -0.5416294932365417 0.37668561935424805 -0.07629840075969696 -0.5117077827453613 0.3773939311504364 -0.08944743871688843 -0.5438297986984253 0.34509313106536865 -0.08830033242702484 -0.5138806700706482 0.3457699120044708 -0.10127702355384827 -0.5461092591285706 0.31330808997154236 -0.09979663044214249 -0.5161465406417847 0.3139425218105316 -0.1125490665435791 -0.5482816100120544 0.2813696563243866 -0.11006177961826324 -0.5182968974113464 0.2819606363773346 -0.12243545055389404 -0.5502155423164368 0.2493276745080948 -0.11868146061897278 -0.5202034711837769 0.2498658001422882 -0.13051356375217438 -0.551871657371521 0.21722590923309326 -0.12566444277763367 -0.5218491554260254 0.21768531203269958 -0.13688653707504272 -0.5532519221305847 0.18509596586227417 -0.13126391172409058 -0.5232449769973755 0.1854427009820938 -0.14188334345817566 -0.5544520616531372 0.15292374789714813 -0.13615509867668152 -0.5244911909103394 0.15313394367694855 -0.14631816744804382 -0.5555012822151184 0.12071601301431656 -0.14055363833904266 -0.5256142616271973 0.12079065293073654 -0.15054768323898315 -0.5563269853591919 0.0885062962770462 -0.1441042572259903 -0.5265527367591858 0.08845524489879608 -0.15434885025024414 -0.5568912625312805 0.056292202323675156 -0.14666549861431122 -0.5272724032402039 0.0561191588640213 -0.1576506644487381 -0.5571681261062622 0.024073943495750427 -0.1481645256280899 -0.5277008414268494 0.023768668994307518 -0.16001135110855103 -0.5571049451828003 -0.00808512233197689 -0.1484273225069046 -0.5277228355407715 -0.008534543216228485 -0.16090789437294006 -0.5649003982543945 0.5008273720741272 -0.019943978637456894 -0.5660715699195862 0.4697688817977905 -0.028652435168623924 -0.5675897002220154 0.43866246938705444 -0.03932725638151169 -0.5693710446357727 0.4074544310569763 -0.05103464052081108 -0.5713478326797485 0.3760920464992523 -0.06295482814311981 -0.5735145807266235 0.34454360604286194 -0.07489920407533646 -0.5757775902748108 0.3128150403499603 -0.08651067316532135 -0.5779826641082764 0.28093990683555603 -0.09726312756538391 -0.5799950361251831 0.24896466732025146 -0.10669668018817902 -0.5817217230796814 0.21694742143154144 -0.1145639568567276 -0.5831403732299805 0.1849178969860077 -0.120900958776474 -0.5843185782432556 0.15285435318946838 -0.12614546716213226 -0.5853018164634705 0.12075057625770569 -0.13050876557826996 -0.5860351324081421 0.08863489329814911 -0.13369376957416534 -0.5864849090576172 0.056525398045778275 -0.1356443166732788 -0.586669921875 0.024424774572253227 -0.1366215944290161 -0.5865569710731506 -0.007614462170749903 -0.1365033984184265 -0.5954214334487915 0.5004948377609253 -0.01351856254041195 -0.5963405966758728 0.4693717658519745 -0.020215677097439766 -0.5975939035415649 0.4382162392139435 -0.028877776116132736 -0.599155843257904 0.40698671340942383 -0.03903934359550476 -0.6009664535522461 0.37563785910606384 -0.04997098445892334 -0.6030115485191345 0.3441374599933624 -0.06139595806598663 -0.6052067279815674 0.3124803602695465 -0.0729139968752861 -0.6074041128158569 0.2806842625141144 -0.08394283056259155 -0.6094772815704346 0.24878790974617004 -0.09405218809843063 -0.6112952828407288 0.2168428748846054 -0.10274520516395569 -0.6127755045890808 0.18488632142543793 -0.1097021996974945 -0.6139482855796814 0.15290674567222595 -0.1151324212551117 -0.6148829460144043 0.120887391269207 -0.11939336359500885 -0.6155640482902527 0.08885496854782104 -0.12238439172506332 -0.6159647107124329 0.0568431094288826 -0.12407633662223816 -0.6160946488380432 0.024857748299837112 -0.12468750029802322 -0.615952730178833 -0.007078052964061499 -0.12430836260318756 -0.6261099576950073 0.5002779960632324 -0.00877863448113203 -0.6267998814582825 0.4691081643104553 -0.013719078153371811 -0.6277790069580078 0.4379148781299591 -0.020378099754452705 -0.6290679574012756 0.4066697061061859 -0.028697127476334572 -0.6306325197219849 0.3753340542316437 -0.038166750222444534 -0.6324536800384521 0.3438795506954193 -0.04845786839723587 -0.6344764232635498 0.3122935891151428 -0.05925372615456581 -0.6365696787834167 0.28058260679244995 -0.0699852854013443 -0.63861483335495 0.24876782298088074 -0.0801892876625061 -0.6404780745506287 0.2168889343738556 -0.08931655436754227 -0.6420270204544067 0.18498826026916504 -0.09677491337060928 -0.6432364583015442 0.15307623147964478 -0.10249751806259155 -0.6441686749458313 0.12113986909389496 -0.10683657974004745 -0.6448501348495483 0.08919205516576767 -0.10992515087127686 -0.6452428102493286 0.05727138742804527 -0.11159759759902954 -0.6453337669372559 0.0253915935754776 -0.11189265549182892 -0.6451594829559326 -0.006436556112021208 -0.11119520664215088 -0.6569389700889587 0.5001429915428162 -0.005355056840926409 -0.6574376225471497 0.46894383430480957 -0.008893189020454884 -0.6581640243530273 0.43772652745246887 -0.013770956546068192 -0.6591612100601196 0.4064730405807495 -0.02015911415219307 -0.6604424118995667 0.3751533329486847 -0.02793198823928833 -0.661976158618927 0.34374356269836426 -0.036705825477838516 -0.6637256741523743 0.3122268319129944 -0.04617414250969887 -0.6656050682067871 0.28060054779052734 -0.055940836668014526 -0.6674948334693909 0.24887454509735107 -0.0654844418168068 -0.6692987084388733 0.2170715034008026 -0.0744175836443901 -0.6708820462226868 0.18523147702217102 -0.08213557302951813 -0.6721523404121399 0.15338236093521118 -0.0882377028465271 -0.6731140613555908 0.1215270459651947 -0.0927872508764267 -0.6737950444221497 0.0896688848733902 -0.09591715037822723 -0.6741835474967957 0.057828716933727264 -0.09756074100732803 -0.6742584109306335 0.026040906086564064 -0.09770910441875458 -0.6740515232086182 -0.005673525854945183 -0.09675666689872742 -0.6878933906555176 0.5000653266906738 -0.003018972696736455 -0.6882278919219971 0.4688449800014496 -0.005382994655519724 -0.6887367367744446 0.43761470913887024 -0.008782964199781418 -0.6894606947898865 0.40635809302330017 -0.013385067693889141 -0.690429151058197 0.37505510449409485 -0.019255656749010086 -0.6916449666023254 0.34368637204170227 -0.02627754770219326 -0.6930727958679199 0.31223607063293457 -0.03412562236189842 -0.694656491279602 0.2806951403617859 -0.042465075850486755 -0.6963049173355103 0.24906589090824127 -0.05088038370013237 -0.697920560836792 0.2173614352941513 -0.05894074589014053 -0.6994155049324036 0.18560470640659332 -0.06626810133457184 -0.7006791830062866 0.15382710099220276 -0.0723566934466362 -0.7016463279724121 0.12204766273498535 -0.07691384851932526 -0.7023046016693115 0.09027504175901413 -0.07990522682666779 -0.7026702761650085 0.058526042848825455 -0.08144617825746536 -0.7027407288551331 0.02683172933757305 -0.08163432031869888 -0.7025189995765686 -0.00477810250595212 -0.08063293248414993 -0.7189522981643677 0.500026524066925 -0.001543140271678567 -0.719160258769989 0.4687926471233368 -0.00301596662029624 -0.7194897532463074 0.4375530779361725 -0.0052131242118775845 -0.7199808359146118 0.4062967896461487 -0.008317128755152225 -0.7206574082374573 0.37500977516174316 -0.012406745925545692 -0.7215396165847778 0.3436748683452606 -0.01750374771654606 -0.7226154208183289 0.31228122115135193 -0.023463033139705658 -0.7238456010818481 0.2808208167552948 -0.030018353834748268 -0.7251713871955872 0.24928924441337585 -0.03684796765446663 -0.7265132069587708 0.2176913022994995 -0.04357846453785896 -0.7277832627296448 0.18604137003421783 -0.049807269126176834 -0.7288976907730103 0.15436069667339325 -0.055151067674160004 -0.729789137840271 0.12266955524682999 -0.05932805687189102 -0.7304078936576843 0.09099096059799194 -0.06215085834264755 -0.7307505011558533 0.05934203043580055 -0.06367716938257217 -0.7308124899864197 0.0277512576431036 -0.06395529955625534 -0.7305850386619568 -0.003759481944143772 -0.06298541277647018 -0.750091016292572 0.5000100135803223 -0.0006960247992537916 -0.7502076029777527 0.4687679409980774 -0.0015280285151675344 -0.7504054307937622 0.4375235438346863 -0.002855969127267599 -0.7507099509239197 0.4062693417072296 -0.00477952603250742 -0.7511470317840576 0.3749951124191284 -0.007407468743622303 -0.7517355680465698 0.3436887562274933 -0.010792925953865051 -0.7524775862693787 0.3123409152030945 -0.014897361397743225 -0.7533514499664307 0.2809452414512634 -0.019557511433959007 -0.7543129920959473 0.24950022995471954 -0.02452581189572811 -0.7553161978721619 0.2180035561323166 -0.029562300071120262 -0.7562930583953857 0.18646301329135895 -0.03434354066848755 -0.7571722269058228 0.15489456057548523 -0.03855610266327858 -0.75789874792099 0.12331432104110718 -0.04197538644075394 -0.7584267258644104 0.09174265712499619 -0.04444422945380211 -0.7587225437164307 0.06020057201385498 -0.04585162550210953 -0.7587735056877136 0.02870655432343483 -0.04616856947541237 -0.7585686445236206 -0.0027176039293408394 -0.04532762989401817 -0.781284511089325 0.5000038743019104 -0.00026736714062280953 -0.7813402414321899 0.46875789761543274 -0.0006737580406479537 -0.7814465165138245 0.43751105666160583 -0.001396580832079053 -0.7816207408905029 0.4062594175338745 -0.0025083469226956367 -0.7818814516067505 0.3749958872795105 -0.004075886681675911 -0.7822437286376953 0.34371218085289 -0.006150943227112293 -0.7827123999595642 0.31240060925483704 -0.008728833869099617 -0.7832823991775513 0.28105607628822327 -0.011753296479582787 -0.7839282751083374 0.24967652559280396 -0.01507563516497612 -0.7846060991287231 0.21826404333114624 -0.018466975539922714 -0.7852833867073059 0.18682044744491577 -0.021781349554657936 -0.785906195640564 0.15535597503185272 -0.0247710719704628 -0.7864328026771545 0.1238832101225853 -0.027276381850242615 -0.7868188619613647 0.09241830557584763 -0.029114047065377235 -0.7870367169380188 0.06097535416483879 -0.030186854302883148 -0.7870727777481079 0.029565900564193726 -0.030438413843512535 -0.7869227528572083 -0.0017946978332474828 -0.029840335249900818 -0.812509298324585 0.500001072883606 -7.210511103039607e-05 -0.8125302791595459 0.4687531292438507 -0.00023149164917413145 -0.8125776052474976 0.4375050961971283 -0.0005617308779619634 -0.8126651644706726 0.4062548875808716 -0.0011299431789666414 -0.8128046989440918 0.37499919533729553 -0.0019790383521467447 -0.8130090236663818 0.3437320590019226 -0.0031531336717307568 -0.8132842183113098 0.3124474585056305 -0.004662264138460159 -0.8136275410652161 0.28114137053489685 -0.00647552777081728 -0.8140241503715515 0.24981260299682617 -0.008501776494085789 -0.814458429813385 0.21846091747283936 -0.010667516849935055 -0.8148910403251648 0.18709135055541992 -0.012778561562299728 -0.8152968287467957 0.1557084172964096 -0.014736931771039963 -0.8156359195709229 0.12432173639535904 -0.01635556109249592 -0.8158912658691406 0.092938631772995 -0.017580943182110786 -0.8160344362258911 0.061570536345243454 -0.018291378393769264 -0.8160548806190491 0.030226439237594604 -0.01844135858118534 -0.8159584403038025 -0.0010877802269533277 -0.018063604831695557 -0.8437508344650269 0.5000001192092896 -6.627692982874578e-06 -0.8437561988830566 0.4687507152557373 -4.803928095498122e-05 -0.8437710404396057 0.43750184774398804 -0.00015755955246277153 -0.8438059091567993 0.4062522351741791 -0.00038920683437027037 -0.8438693881034851 0.3750001788139343 -0.0007804626366123557 -0.8439679741859436 0.34374329447746277 -0.0013534828322008252 -0.8441106677055359 0.3124772608280182 -0.002138410462066531 -0.8442978262901306 0.2811986207962036 -0.0031264182180166245 -0.8445247411727905 0.24990549683570862 -0.004284823779016733 -0.8447760939598083 0.21859903633594513 -0.0055351173505187035 -0.8450341820716858 0.1872805655002594 -0.00679112458601594 -0.845276951789856 0.15595421195030212 -0.00795792043209076 -0.8454861044883728 0.12462484836578369 -0.008957362733781338 -0.8456392884254456 0.09329944849014282 -0.00969163328409195 -0.8457258939743042 0.061983007937669754 -0.010121846571564674 -0.8457394242286682 0.030681462958455086 -0.010222960263490677 -0.845681369304657 -0.0006015808321535587 -0.010004039853811264 -0.875 0.5 0.0 -0.8750001788139343 0.4687500298023224 -1.4432688431043061e-06 -0.8750025629997253 0.4375002980232239 -1.9957236872869544e-05 -0.8750104904174805 0.4062507152557373 -7.659862603759393e-05 -0.8750314712524414 0.3750002086162567 -0.00020750254043377936 -0.8750702738761902 0.34374773502349854 -0.0004343382315710187 -0.8751299381256104 0.31249210238456726 -0.0007637670496478677 -0.8752152323722839 0.2812303304672241 -0.001213651499710977 -0.8753257393836975 0.2499607354402542 -0.0017759138718247414 -0.8754549622535706 0.21868310868740082 -0.002415939699858427 -0.8755935430526733 0.18739867210388184 -0.0030876093078404665 -0.8757242560386658 0.15610995888710022 -0.0037147263064980507 -0.8758415579795837 0.12481871992349625 -0.004275770392268896 -0.875929594039917 0.09352921694517136 -0.004702808801084757 -0.8759769797325134 0.06224658712744713 -0.004944011103361845 -0.8759837746620178 0.030972620472311974 -0.005004020407795906 -0.8759493231773376 -0.00029049284057691693 -0.0048778303898870945 -0.90625 0.5 0.0 -0.90625 0.46875 0.0 -0.90625 0.4375 0.0 -0.9062503576278687 0.4062500298023224 -2.677223164937459e-06 -0.9062528610229492 0.37500011920928955 -2.0056413632119074e-05 -0.9062621593475342 0.3437495231628418 -7.401061156997457e-05 -0.9062809348106384 0.31249764561653137 -0.00017634329560678452 -0.9063102602958679 0.28124403953552246 -0.00032851891592144966 -0.9063513278961182 0.24998745322227478 -0.0005353299202397466 -0.9064040184020996 0.2187269777059555 -0.0007948986021801829 -0.9064643979072571 0.18746286630630493 -0.0010874144500121474 -0.9065252542495728 0.15619657933712006 -0.0013796124840155244 -0.9065797328948975 0.12492939084768295 -0.0016423831693828106 -0.9066216349601746 0.09366296976804733 -0.0018499220022931695 -0.9066452980041504 0.06239929422736168 -0.0019770683720707893 -0.9066475033760071 0.031140219420194626 -0.0020064259879291058 -0.9066280126571655 -0.00011301674385322258 -0.0019330608192831278 -0.9375 0.5 0.0 -0.9375 0.46875 0.0 -0.9375 0.4375 0.0 -0.9375 0.40625 0.0 -0.9375 0.375 0.0 -0.9375 0.34375 0.0 -0.9375023245811462 0.3124997019767761 -1.1910488865396474e-05 -0.937508761882782 0.2812487781047821 -4.400557008921169e-05 -0.9375195503234863 0.24999716877937317 -9.646463877288625e-05 -0.9375343918800354 0.21874457597732544 -0.00016846477228682488 -0.9375532865524292 0.18749068677425385 -0.00025917275343090296 -0.9375739097595215 0.15623566508293152 -0.0003596097230911255 -0.937593400478363 0.12498024851083755 -0.0004564463743008673 -0.9376083016395569 0.09372538328170776 -0.000531732221134007 -0.9376162886619568 0.06247153878211975 -0.0005769709823653102 -0.9376157522201538 0.031219270080327988 -0.0005814416217617691 -0.9376070499420166 -3.108487726422027e-05 -0.0005459652165882289 -0.9375 0.53125 0.0 -0.9580279588699341 0.53125 0.0 -0.9580279588699341 0.5 0.0 -0.9706065654754639 0.46875 -0.010560071095824242 -1.0 0.46875 -0.17774981260299683 -1.0 0.4375 -0.17774981260299683 -0.9706065654754639 0.4375 -0.010560071095824242 -1.0 0.40625 -0.17774981260299683 -0.9706065654754639 0.40625 -0.010560071095824242 -1.0 0.375 -0.17774981260299683 -0.9706065654754639 0.375 -0.010560071095824242 -1.0 0.34375 -0.17774981260299683 -0.9706065654754639 0.34375 -0.010560071095824242 -1.0 0.3125 -0.17774981260299683 -0.9706065654754639 0.3125 -0.010560071095824242 -1.0 0.28125 -0.17774981260299683 -0.9706065654754639 0.28125 -0.010560071095824242 -1.0 0.25 -0.17774981260299683 -0.9706076383590698 0.24999982118606567 -0.01056506484746933 -1.0 0.21875 -0.17774981260299683 -0.9706099033355713 0.21874946355819702 -0.010576501488685608 -1.0 0.1875 -0.17774981260299683 -0.9706132411956787 0.18749892711639404 -0.010592255741357803 -1.0 0.15625 -0.17774991691112518 -0.9706170558929443 0.1562482714653015 -0.010610700584948063 -1.0000001192092896 0.12499997019767761 -0.17775064706802368 -0.9706211090087891 0.1249973326921463 -0.010630922392010689 -1.000000238418579 0.09374996274709702 -0.177750825881958 -0.9706242680549622 0.09374640136957169 -0.010647373273968697 -1.0000001192092896 0.06249998137354851 -0.1777503788471222 -0.9706257581710815 0.06249568611383438 -0.010655935853719711 -1.0000001192092896 0.03124997951090336 -0.1777501255273819 -0.970625102519989 0.031245429068803787 -0.010653667151927948 -1.0000001192092896 -3.838299633684983e-08 -0.1777503937482834 -0.9706224203109741 -4.282678673916962e-06 -0.010641273111104965 -0.9706065654754639 0.5 -0.010560071095824242 -0.9706065654754639 0.53125 -0.010560071095824242 -1.0 0.53125 -0.17774981260299683 -1.0 0.5 -0.17774981260299683 -0.9580279588699341 0.4375 0.0 -0.9580279588699341 0.40625 0.0 -0.9580279588699341 0.375 0.0 -0.9580279588699341 0.34375 0.0 -0.9580279588699341 0.31249991059303284 -4.086850822204724e-06 -0.9580279588699341 0.2812495827674866 -1.5102747056516819e-05 -0.9580290913581848 0.24999891221523285 -3.639571150415577e-05 -0.9580315351486206 0.21874776482582092 -6.86414132360369e-05 -0.9580350518226624 0.18749606609344482 -0.00011017116776201874 -0.9580391049385071 0.15624387562274933 -0.00015683962556067854 -0.9580434560775757 0.12499134987592697 -0.00020345894154161215 -0.9580469727516174 0.09373902529478073 -0.0002401978272246197 -0.9580486416816711 0.062487196177244186 -0.0002614116237964481 -0.9580479264259338 0.03123623877763748 -0.0002614649711176753 -0.9580451250076294 -1.3680425581696909e-05 -0.00024110058438964188 -0.46875 0.9375 0.0 -0.4375 0.9375 0.0 -0.4375 0.9580279588699341 0.0 -0.46875 0.9580279588699341 0.0 -0.47584113478660583 0.47178158164024353 -0.06274333596229553 -0.47415995597839355 0.5026540160179138 -0.04925644397735596 -0.44561707973480225 0.4726005494594574 -0.07467945665121078 -0.4439181983470917 0.5034424662590027 -0.06050621345639229 -0.4151921570301056 0.4734332859516144 -0.08611457049846649 -0.4135333299636841 0.5042484998703003 -0.07149948179721832 -0.38452666997909546 0.47425249218940735 -0.09689772129058838 -0.3829580545425415 0.5050383806228638 -0.0819535106420517 -0.35355597734451294 0.4750064015388489 -0.10671480745077133 -0.3521207869052887 0.505754828453064 -0.09138324111700058 -0.3222513794898987 0.47572556138038635 -0.1161990761756897 -0.3209928274154663 0.506415843963623 -0.10019233822822571 -0.29060760140419006 0.47650498151779175 -0.12667809426784515 -0.28955715894699097 0.5071032643318176 -0.10941830277442932 -0.25861042737960815 0.47744280099868774 -0.13954120874404907 -0.2577989995479584 0.5078967809677124 -0.1201123371720314 -0.22621579468250275 0.4785754084587097 -0.15540049970149994 -0.22567448019981384 0.5088346004486084 -0.13290268182754517 -0.1933661252260208 0.47990456223487854 -0.17443053424358368 -0.19313101470470428 0.5099028944969177 -0.14777730405330658 -0.160012885928154 0.48141613602638245 -0.19632968306541443 -0.16010898351669312 0.5111072063446045 -0.1647120714187622 -0.12618224322795868 0.48299115896224976 -0.2192668616771698 -0.12660203874111176 0.5124130845069885 -0.18306556344032288 -0.09195378422737122 0.4845042824745178 -0.24127648770809174 -0.09273039549589157 0.5137268900871277 -0.20158104598522186 -0.05750387907028198 0.4858826696872711 -0.2610618770122528 -0.058633361011743546 0.5149903893470764 -0.219407320022583 -0.02299909107387066 0.4870809316635132 -0.27758872509002686 -0.02445586957037449 0.5161226987838745 -0.23520392179489136 -0.47772735357284546 0.4407849609851837 -0.077003113925457 -0.4474841058254242 0.4416256248950958 -0.0893874242901802 -0.4169880747795105 0.44247856736183167 -0.10106921941041946 -0.38619527220726013 0.44332486391067505 -0.11195556074380875 -0.35504940152168274 0.4441232979297638 -0.12198015302419662 -0.3235376477241516 0.44491106271743774 -0.13207218050956726 -0.2916586399078369 0.44579482078552246 -0.1437821388244629 -0.2593849003314972 0.446882426738739 -0.1585989147424698 -0.22667473554611206 0.4482147991657257 -0.1773240566253662 -0.19348658621311188 0.44979679584503174 -0.20015646517276764 -0.1598014086484909 0.45157861709594727 -0.2262105792760849 -0.12566933035850525 0.45339077711105347 -0.2529281675815582 -0.09115564078092575 0.4550781846046448 -0.2777603566646576 -0.056411389261484146 0.45657432079315186 -0.299261212348938 -0.021615657955408096 0.4578401446342468 -0.3163641691207886 -0.4796295762062073 0.4096076190471649 -0.09031262248754501 -0.44932469725608826 0.4104654788970947 -0.1028595045208931 -0.4187289774417877 0.4113321304321289 -0.11455176770687103 -0.3878021836280823 0.41220328211784363 -0.1254979819059372 -0.3564968705177307 0.4130629897117615 -0.13598254323005676 -0.32479602098464966 0.41394081711769104 -0.14688514173030853 -0.29269060492515564 0.4149428606033325 -0.15982641279697418 -0.26015618443489075 0.416184663772583 -0.17658847570419312 -0.22713841497898102 0.4177214503288269 -0.19808392226696014 -0.19360829889774323 0.4195428192615509 -0.22419621050357819 -0.15958185493946075 0.4215558171272278 -0.25331416726112366 -0.12513452768325806 0.4235616624355316 -0.28248104453086853 -0.09033451974391937 0.42539265751838684 -0.3090137541294098 -0.055335428565740585 0.4269840717315674 -0.33142536878585815 -0.020314237102866173 0.42829322814941406 -0.3485928475856781 -0.48156464099884033 0.37820908427238464 -0.10239383578300476 -0.4511510133743286 0.3790821135044098 -0.11473655700683594 -0.4204065799713135 0.3799632787704468 -0.12608414888381958 -0.38932445645332336 0.3808680474758148 -0.13703635334968567 -0.3578883707523346 0.38180625438690186 -0.14824356138706207 -0.3260437250137329 0.38279056549072266 -0.16020098328590393 -0.2937396466732025 0.38391605019569397 -0.17440620064735413 -0.260971337556839 0.3853099048137665 -0.19306600093841553 -0.22768551111221313 0.3870469927787781 -0.21720170974731445 -0.19383609294891357 0.38908278942108154 -0.2458205372095108 -0.15945802628993988 0.3912867307662964 -0.27688950300216675 -0.12466728687286377 0.39342713356018066 -0.3071863651275635 -0.08956820517778397 0.395348459482193 -0.3341817855834961 -0.05434229224920273 0.39698368310928345 -0.35640275478363037 -0.01913364790380001 0.3983108401298523 -0.3730592429637909 -0.48366057872772217 0.3465742766857147 -0.113923579454422 -0.45311853289604187 0.347457617521286 -0.1258050948381424 -0.4221976697444916 0.3483631908893585 -0.13665039837360382 -0.39092105627059937 0.34931182861328125 -0.14736005663871765 -0.3593176603317261 0.3503311276435852 -0.15894480049610138 -0.3273353576660156 0.35143232345581055 -0.17194417119026184 -0.2948782742023468 0.3526797592639923 -0.18754810094833374 -0.2618957459926605 0.35421186685562134 -0.20783917605876923 -0.2283659279346466 0.35611698031425476 -0.23388026654720306 -0.19422602653503418 0.3583316504955292 -0.26430317759513855 -0.15950900316238403 0.3606604337692261 -0.2963096499443054 -0.12437289953231812 0.36287063360214233 -0.32667139172554016 -0.08897597342729568 0.36482030153274536 -0.353012353181839 -0.05351809039711952 0.3664645552635193 -0.3743537962436676 -0.01811717264354229 0.367812842130661 -0.3903856873512268 -0.4858860969543457 0.31471800804138184 -0.12488666921854019 -0.4552716016769409 0.3155958652496338 -0.13644370436668396 -0.424227237701416 0.3165282607078552 -0.1470007598400116 -0.3927674889564514 0.31752437353134155 -0.15744049847126007 -0.36094939708709717 0.3186156451702118 -0.16889441013336182 -0.3287751078605652 0.31982213258743286 -0.1823989301919937 -0.29615145921707153 0.32119032740592957 -0.1991998851299286 -0.26299044489860535 0.3228358030319214 -0.2208167314529419 -0.2292371392250061 0.3248555660247803 -0.24790428578853607 -0.19483745098114014 0.32717466354370117 -0.27913862466812134 -0.15980559587478638 0.3295561373233795 -0.31127843260765076 -0.12432929128408432 0.3317733407020569 -0.3408486843109131 -0.08863003551959991 0.3337123394012451 -0.36594676971435547 -0.052903104573488235 0.3353762626647949 -0.38637247681617737 -0.017299199476838112 0.33676591515541077 -0.40188080072402954 -0.4880271852016449 0.28269290924072266 -0.13444559276103973 -0.45742470026016235 0.2835409641265869 -0.14594018459320068 -0.42639705538749695 0.2844766676425934 -0.15679414570331573 -0.39488062262535095 0.2855055630207062 -0.16742491722106934 -0.3628934621810913 0.2866523265838623 -0.17873340845108032 -0.3304911255836487 0.2879345118999481 -0.19219839572906494 -0.29766952991485596 0.28939875960350037 -0.20968449115753174 -0.26433971524238586 0.29112574458122253 -0.23211036622524261 -0.23040656745433807 0.29318472743034363 -0.2594809830188751 -0.19577261805534363 0.29550209641456604 -0.2904280126094818 -0.16041511297225952 0.2978624701499939 -0.32174476981163025 -0.12459318339824677 0.30004116892814636 -0.3498736023902893 -0.08858178555965424 0.3019692897796631 -0.3735365867614746 -0.05258287489414215 0.3036825656890869 -0.39320260286331177 -0.016767052933573723 0.30516964197158813 -0.4086744487285614 -0.4899512231349945 0.25054726004600525 -0.14222772419452667 -0.4594053030014038 0.25134599208831787 -0.15372876822948456 -0.4284837245941162 0.252254456281662 -0.16510853171348572 -0.3970958888530731 0.2532837390899658 -0.17662084102630615 -0.3651360273361206 0.2544459104537964 -0.188484326004982 -0.3325912356376648 0.2557689845561981 -0.20203234255313873 -0.2995685636997223 0.2572842836380005 -0.21971946954727173 -0.2660731077194214 0.2590336501598358 -0.242354616522789 -0.232005313038826 0.2610337734222412 -0.26921606063842773 -0.1971801370382309 0.26322460174560547 -0.29870355129241943 -0.16151833534240723 0.26547670364379883 -0.32812070846557617 -0.1253359615802765 0.2676049470901489 -0.3543046712875366 -0.08900684118270874 0.2695506811141968 -0.37646061182022095 -0.05272947996854782 0.2713758051395416 -0.39557647705078125 -0.016687657684087753 0.2730271816253662 -0.4114319384098053 -0.49166426062583923 0.2182990163564682 -0.14847417175769806 -0.4612298607826233 0.21903520822525024 -0.16018030047416687 -0.43045878410339355 0.2198898196220398 -0.1720496416091919 -0.3992745280265808 0.22087767720222473 -0.1844572126865387 -0.3675408363342285 0.22201085090637207 -0.19758614897727966 -0.3350784480571747 0.2233257293701172 -0.21206654608249664 -0.3019218444824219 0.2248481810092926 -0.22987081110477448 -0.2682492733001709 0.22654899954795837 -0.2520063519477844 -0.23406201601028442 0.2283945232629776 -0.27751463651657104 -0.1991393119096756 0.23034942150115967 -0.3047812879085541 -0.16329778730869293 0.23240594565868378 -0.33181995153427124 -0.12685230374336243 0.23446239531040192 -0.3560883104801178 -0.09022095799446106 0.2364664226770401 -0.37691375613212585 -0.05361687391996384 0.23842938244342804 -0.3952365517616272 -0.017210951074957848 0.24026592075824738 -0.4110530912876129 -0.49316078424453735 0.18595203757286072 -0.15334996581077576 -0.4629116654396057 0.18660284578800201 -0.16550402343273163 -0.4323851466178894 0.187374085187912 -0.17814970016479492 -0.40147554874420166 0.18828237056732178 -0.191530242562294 -0.370022714138031 0.18934737145900726 -0.2059289813041687 -0.3377777636051178 0.19059348106384277 -0.2216458022594452 -0.30457794666290283 0.192054882645607 -0.2394692450761795 -0.2706875503063202 0.19366787374019623 -0.26035839319229126 -0.23634381592273712 0.19532236456871033 -0.28386521339416504 -0.2013978511095047 0.19700855016708374 -0.3090670108795166 -0.16562595963478088 0.19881586730480194 -0.33435142040252686 -0.1292126327753067 0.20075684785842896 -0.3575863838195801 -0.09242498874664307 0.20275932550430298 -0.3774314820766449 -0.05542321130633354 0.20479142665863037 -0.3943522572517395 -0.018464669585227966 0.20675025880336761 -0.4089820683002472 -0.4945076107978821 0.15350188314914703 -0.15748657286167145 -0.46446526050567627 0.15402349829673767 -0.16993682086467743 -0.4342392683029175 0.15468497574329376 -0.1834864765405655 -0.40367788076400757 0.15548297762870789 -0.19809982180595398 -0.3725252151489258 0.15644130110740662 -0.2136758416891098 -0.34043988585472107 0.1575840413570404 -0.2300068885087967 -0.30720558762550354 0.1589258462190628 -0.24716000258922577 -0.273066908121109 0.16041500866413116 -0.26609283685684204 -0.23848474025726318 0.16191068291664124 -0.28748175501823425 -0.2035072296857834 0.16337278485298157 -0.31089872121810913 -0.16794632375240326 0.16493864357471466 -0.3354036509990692 -0.13183419406414032 0.16667602956295013 -0.3589177131652832 -0.09520387649536133 0.16852879524230957 -0.3789363503456116 -0.05800064280629158 0.1704738736152649 -0.39464783668518066 -0.020454028621315956 0.17242854833602905 -0.4071028232574463 -0.4957433044910431 0.12099210917949677 -0.16148777306079865 -0.46590641140937805 0.12133388221263885 -0.17405475676059723 -0.43599313497543335 0.12182916700839996 -0.188335582613945 -0.4057715833187103 0.12248116731643677 -0.2040155827999115 -0.374866247177124 0.12330655753612518 -0.22039954364299774 -0.34285035729408264 0.12432645261287689 -0.2366037219762802 -0.309522807598114 0.12553414702415466 -0.2523554563522339 -0.27513623237609863 0.12688741087913513 -0.26898330450057983 -0.24027779698371887 0.12826555967330933 -0.28849583864212036 -0.20521096885204315 0.1295613795518875 -0.3106536865234375 -0.16981706023216248 0.13088315725326538 -0.3347717523574829 -0.13400912284851074 0.1323496401309967 -0.3590342104434967 -0.09771829843521118 0.1339210718870163 -0.3799332082271576 -0.06070384010672569 0.13558971881866455 -0.39571264386177063 -0.022887161001563072 0.13735543191432953 -0.40669333934783936 -0.49682867527008057 0.08849214017391205 -0.16546101868152618 -0.467205673456192 0.08863312751054764 -0.17828407883644104 -0.4375830888748169 0.0889086201786995 -0.1930883526802063 -0.40764930844306946 0.0893511176109314 -0.2094455063343048 -0.37690240144729614 0.08999913930892944 -0.22602781653404236 -0.34488433599472046 0.09087202697992325 -0.24146604537963867 -0.31140029430389404 0.09194544702768326 -0.2552495300769806 -0.2767925560474396 0.09316202998161316 -0.26970022916793823 -0.24168632924556732 0.09442415833473206 -0.28769969940185547 -0.20647890865802765 0.09557896107435226 -0.30911704897880554 -0.17113234102725983 0.096674844622612 -0.3328796327114105 -0.13552112877368927 0.09783078730106354 -0.3572460412979126 -0.09949725866317749 0.09905077517032623 -0.37895292043685913 -0.06284600496292114 0.10033014416694641 -0.3955223560333252 -0.025227056816220284 0.10174392908811569 -0.4067806899547577 -0.4977353513240814 0.05599568039178848 -0.1694582998752594 -0.4683420956134796 0.05593334510922432 -0.18291863799095154 -0.4389607012271881 0.05596623942255974 -0.19818171858787537 -0.40921369194984436 0.056150153279304504 -0.21463167667388916 -0.3785451054573059 0.05655699968338013 -0.23083628714084625 -0.34648293256759644 0.05722853168845177 -0.24518653750419617 -0.3128353953361511 0.05815434828400612 -0.2570137083530426 -0.2780166566371918 0.059247106313705444 -0.26922520995140076 -0.2426776885986328 0.060395464301109314 -0.28543388843536377 -0.20728838443756104 0.0614444836974144 -0.3060897886753082 -0.17191801965236664 0.062344253063201904 -0.32908058166503906 -0.13640694320201874 0.06318923085927963 -0.35265305638313293 -0.1005825623869896 0.06405891478061676 -0.3744858205318451 -0.06424931436777115 0.06493557244539261 -0.39215919375419617 -0.0270555280148983 0.06587661802768707 -0.40471360087394714 -0.4983624219894409 0.023482901975512505 -0.1728636771440506 -0.46918785572052 0.0232134610414505 -0.18732419610023499 -0.44000211358070374 0.02298957295715809 -0.20321546494960785 -0.410358190536499 0.0228884220123291 -0.219543918967247 -0.3797060251235962 0.023002050817012787 -0.23511648178100586 -0.34759196639060974 0.023403644561767578 -0.24843060970306396 -0.31383317708969116 0.02412569150328636 -0.2586747407913208 -0.2788342535495758 0.025097869336605072 -0.26843032240867615 -0.2432970106601715 0.026148060336709023 -0.2820451557636261 -0.20772287249565125 0.027098292484879494 -0.300986647605896 -0.17225611209869385 0.02783386968076229 -0.3227064609527588 -0.13681572675704956 0.028392642736434937 -0.34488445520401 -0.10114985704421997 0.028896475210785866 -0.36614009737968445 -0.06500983983278275 0.029384365305304527 -0.38470640778541565 -0.02818360924720764 0.029854988679289818 -0.3986715078353882 -0.4985211193561554 -0.008998596109449863 -0.17478874325752258 -0.4694982171058655 -0.009479973465204239 -0.1902952492237091 -0.4404368996620178 -0.009946146979928017 -0.2068631798028946 -0.41085386276245117 -0.010327821597456932 -0.22336474061012268 -0.38022467494010925 -0.010533157736063004 -0.23876412212848663 -0.3481231927871704 -0.010448451153934002 -0.2518395781517029 -0.31438758969306946 -0.010001136921346188 -0.26131904125213623 -0.27935531735420227 -0.00922197476029396 -0.2689695656299591 -0.24371005594730377 -0.008327661082148552 -0.2796211540699005 -0.20797693729400635 -0.007552814204245806 -0.2958040237426758 -0.17236457765102386 -0.007003628183156252 -0.31550848484039307 -0.1368759125471115 -0.006693574599921703 -0.33594751358032227 -0.10126606374979019 -0.006558399647474289 -0.35603412985801697 -0.06522777676582336 -0.006519243586808443 -0.37444868683815 -0.028638148680329323 -0.00650438666343689 -0.3889867067337036 -0.4727705419063568 0.5334476232528687 -0.03744499012827873 -0.5030792355537415 0.5327938199043274 -0.02788095921278 -0.47161948680877686 0.5642056465148926 -0.027195028960704803 -0.5021039843559265 0.5636616945266724 -0.01943822391331196 -0.4706808626651764 0.5949904322624207 -0.018617108464241028 -0.5013558268547058 0.5945693850517273 -0.012767716310918331 -0.4699746370315552 0.6258489489555359 -0.012033630162477493 -0.5008220076560974 0.6255425214767456 -0.007898439653217793 -0.4694911241531372 0.6567955017089844 -0.00740235298871994 -0.5004706978797913 0.6565818190574646 -0.004597783088684082 -0.4691711664199829 0.6878201961517334 -0.0042495992965996265 -0.5002438426017761 0.6876770853996277 -0.0024024152662605047 -0.46895474195480347 0.7189082503318787 -0.002081990474835038 -0.5001034140586853 0.7188257575035095 -0.0010221421252936125 -0.46882569789886475 0.750059962272644 -0.0007785338093526661 -0.5000300407409668 0.7500221729278564 -0.00029793253634124994 -0.468767374753952 0.7812642455101013 -0.00018191817798651755 -0.5000038146972656 0.7812528610229492 -3.754406498046592e-05 -0.4687511622905731 0.8125010132789612 -1.2618942491826601e-05 -0.5 0.8125 0.0 -0.46875 0.84375 0.0 -0.5 0.84375 0.0 -0.46875 0.875 0.0 -0.5 0.875 0.0 -0.46875 0.90625 0.0 -0.5 0.90625 0.0 -0.5 0.9706065654754639 -0.010560071095824242 -0.5 1.0 -0.17774981260299683 -0.53125 1.0 -0.17774981260299683 -0.53125 0.9706065654754639 -0.010560071095824242 -0.44247615337371826 0.5341868996620178 -0.04777445271611214 -0.4412181079387665 0.5648590326309204 -0.03617427498102188 -0.4401060938835144 0.5955154895782471 -0.02570337988436222 -0.43921375274658203 0.6262384057044983 -0.01717868261039257 -0.43857821822166443 0.6570722460746765 -0.01097739115357399 -0.43814587593078613 0.6880097389221191 -0.006653193384408951 -0.43784666061401367 0.7190298438072205 -0.003608363214880228 -0.4376508593559265 0.7501254081726074 -0.001593871507793665 -0.4375470280647278 0.7812907695770264 -0.00050865497905761 -0.4375080466270447 0.8125075101852417 -9.061266609933227e-05 -0.43750014901161194 0.8437501788139343 -2.028004473686451e-06 -0.4375 0.875 0.0 -0.4375 0.90625 0.0 -0.46875 0.9706065654754639 -0.010560071095824242 -0.4375 0.9706065654754639 -0.010560071095824242 -0.4375 1.0 -0.17774981260299683 -0.46875 1.0 -0.17774981260299683 -0.40625 0.9375 0.0 -0.40625 0.9580279588699341 0.0 -0.41210511326789856 0.5349629521369934 -0.058223798871040344 -0.41081178188323975 0.5655807852745056 -0.04575295001268387 -0.4095892012119293 0.596133291721344 -0.03380312770605087 -0.40852510929107666 0.6267125010490417 -0.02330275997519493 -0.407721608877182 0.6574088931083679 -0.015258031897246838 -0.40715983510017395 0.6882398128509521 -0.009534765966236591 -0.40676966309547424 0.7191838026046753 -0.0055113909766077995 -0.40650367736816406 0.7502186894416809 -0.0027376541402190924 -0.40634608268737793 0.7813366651535034 -0.0010634142672643065 -0.4062744975090027 0.8125235438346863 -0.00028158206259831786 -0.4062529504299164 0.8437530398368835 -3.5939076042268425e-05 -0.40625 0.875 0.0 -0.40625 0.90625 0.0 -0.40625 0.9706065654754639 -0.010560071095824242 -0.40625 1.0 -0.17774981260299683 -0.375 0.9375 0.0 -0.375 0.9580279588699341 0.0 -0.3815789818763733 0.5357252359390259 -0.06819301843643188 -0.38030561804771423 0.5663133263587952 -0.05517726391553879 -0.3790479302406311 0.5968005657196045 -0.04229199141263962 -0.3778667449951172 0.6272566318511963 -0.0301627479493618 -0.3769049346446991 0.6578052043914795 -0.02019829861819744 -0.3762049376964569 0.6885105967521667 -0.01287099625915289 -0.37571364641189575 0.7193629145622253 -0.007695944048464298 -0.3753766119480133 0.7503342032432556 -0.004133367445319891 -0.37516263127326965 0.7814008593559265 -0.0018311400199308991 -0.3750523328781128 0.8125514388084412 -0.0006100817699916661 -0.37501057982444763 0.8437610864639282 -0.0001285629696212709 -0.37500065565109253 0.8750007748603821 -8.442343641945627e-06 -0.375 0.90625 0.0 -0.375 0.9706065654754639 -0.010560071095824242 -0.375 1.0 -0.17774981260299683 -0.34375 0.9375 0.0 -0.34375 0.9580279588699341 0.0 -0.3508272171020508 0.5364127159118652 -0.07709931582212448 -0.3496114909648895 0.5669830441474915 -0.06363353133201599 -0.3483853340148926 0.5974442362785339 -0.05027937516570091 -0.34716856479644775 0.6278268098831177 -0.03717656433582306 -0.3460941016674042 0.6582469344139099 -0.02558193728327751 -0.34526151418685913 0.6888158917427063 -0.01655304804444313 -0.3446670472621918 0.719563364982605 -0.01009636465460062 -0.34425631165504456 0.750461220741272 -0.005645935423672199 -0.3439903259277344 0.7814781665802002 -0.002745051169767976 -0.3438400626182556 0.8125901222229004 -0.0010620095999911427 -0.34377387166023254 0.84377521276474 -0.00029209585045464337 -0.3437531590461731 0.8750036358833313 -4.0629303839523345e-05 -0.34375 0.90625 0.0 -0.34375 0.9706065654754639 -0.010560071095824242 -0.34375 1.0 -0.17774981260299683 -0.3125 0.9375 0.0 -0.3125 0.9580279588699341 0.0 -0.3198092579841614 0.5370224118232727 -0.08501287549734116 -0.3186735212802887 0.567558228969574 -0.07082463055849075 -0.31751853227615356 0.5979993343353271 -0.05704542249441147 -0.31634077429771423 0.6283527612686157 -0.043492261320352554 -0.3152315020561218 0.6586939692497253 -0.030898893252015114 -0.31430336833000183 0.6891425251960754 -0.02039790153503418 -0.3136131465435028 0.7197777032852173 -0.012605183757841587 -0.31313279271125793 0.7505953311920166 -0.007212597876787186 -0.3128194212913513 0.781559944152832 -0.0036995760165154934 -0.3126334249973297 0.8126354813575745 -0.0015892843948677182 -0.3125421106815338 0.8437948822975159 -0.0005179501604288816 -0.31250807642936707 0.8750091195106506 -0.00010330489749321714 -0.3125004768371582 0.906250536441803 -6.30913245913689e-06 -0.3125 0.9706065654754639 -0.010560071095824242 -0.3125 1.0 -0.17774981260299683 -0.28125 0.9375 0.0 -0.28125 0.9580279588699341 0.0 -0.2885146737098694 0.5376182198524475 -0.09274053573608398 -0.28748077154159546 0.5680768489837646 -0.0772448480129242 -0.2864167392253876 0.5984672904014587 -0.06262818723917007 -0.28532159328460693 0.6287931203842163 -0.04864121600985527 -0.28425151109695435 0.6590973138809204 -0.03556165471673012 -0.28329119086265564 0.6894615888595581 -0.024052990600466728 -0.2825334668159485 0.7199949026107788 -0.015078524127602577 -0.2819940745830536 0.7507301568984985 -0.00874885730445385 -0.2816407084465027 0.7816405892372131 -0.004624994471669197 -0.2814267873764038 0.8126823306083679 -0.0021283922251313925 -0.2813127636909485 0.8438174724578857 -0.0007770744850859046 -0.28126493096351624 0.8750168681144714 -0.0001913326559588313 -0.2812516689300537 0.9062519073486328 -2.177680653403513e-05 -0.28125 0.9706065654754639 -0.010560071095824242 -0.28125 1.0 -0.17774981260299683 -0.25 0.9375 0.0 -0.25 0.9580279588699341 0.0 -0.2569293677806854 0.5382740497589111 -0.10122793912887573 -0.256025493144989 0.5686011910438538 -0.08366571366786957 -0.2550755739212036 0.598891019821167 -0.06755208969116211 -0.25409477949142456 0.6291605830192566 -0.05278293043375015 -0.2531120181083679 0.659429132938385 -0.039251189678907394 -0.2521826922893524 0.6897436380386353 -0.027171147987246513 -0.25140395760536194 0.7201969623565674 -0.01730264723300934 -0.25082898139953613 0.750857949256897 -0.010160831734538078 -0.2504480481147766 0.7817169427871704 -0.00547961937263608 -0.25021275877952576 0.8127251267433167 -0.0026126098819077015 -0.2500826120376587 0.8438395857810974 -0.0010288679040968418 -0.2500225603580475 0.8750255107879639 -0.0002894800272770226 -0.2500034272670746 0.9062539339065552 -4.4562300899997354e-05 -0.25 0.9706065654754639 -0.010560071095824242 -0.25 1.0 -0.17774981260299683 -0.21875010430812836 0.9375001192092896 -1.4404572539206129e-06 -0.2187500298023224 0.9580279588699341 -4.942298232890607e-07 -0.2250220775604248 0.5390185713768005 -0.11089110374450684 -0.2242853343486786 0.5691681504249573 -0.09055828303098679 -0.22348985075950623 0.5993149876594543 -0.07237447798252106 -0.2226623296737671 0.6294897198677063 -0.05635259300470352 -0.2218027114868164 0.6596993207931519 -0.04210938140749931 -0.22095240652561188 0.6899693608283997 -0.029543492943048477 -0.2202010154724121 0.7203677296638489 -0.01909731701016426 -0.21962398290634155 0.7509673833847046 -0.01132033858448267 -0.21923285722732544 0.7817816138267517 -0.006177840754389763 -0.21898768842220306 0.8127614855766296 -0.00301525485701859 -0.21884801983833313 0.8438583016395569 -0.0012389600742608309 -0.21877950429916382 0.875033438205719 -0.00037925568176433444 -0.2187553495168686 0.9062561392784119 -6.943596963537857e-05 -0.21875 0.9706065654754639 -0.010560071095824242 -0.21875 1.0 -0.17774981260299683 -0.1875002533197403 0.9375002980232239 -3.3756714401533827e-06 -0.18750008940696716 0.9580279588699341 -1.1582204706428456e-06 -0.19273892045021057 0.5398461818695068 -0.12179950624704361 -0.19223462045192719 0.5697871446609497 -0.0981566533446312 -0.19166027009487152 0.5997642874717712 -0.07749345153570175 -0.19102784991264343 0.6298109292984009 -0.05977058410644531 -0.19032493233680725 0.6599276661872864 -0.04440324753522873 -0.18959274888038635 0.6901414394378662 -0.031223129481077194 -0.18891401588916779 0.7204973697662354 -0.0203738734126091 -0.18836893141269684 0.7510514855384827 -0.01216015126556158 -0.1879902184009552 0.7818297743797302 -0.0066678086295723915 -0.18774768710136414 0.8127879500389099 -0.003294288646429777 -0.18760645389556885 0.8438717722892761 -0.0013858845923095942 -0.18753424286842346 0.8750390410423279 -0.00044185377191752195 -0.18750686943531036 0.9062579274177551 -8.918326784623787e-05 -0.1875 0.9706065654754639 -0.010560071095824242 -0.1875 1.0 -0.17774981260299683 -0.15625032782554626 0.9375003576278687 -4.295804046705598e-06 -0.15625011920928955 0.9580279588699341 -1.4739282505615847e-06 -0.1600455343723297 0.5407527089118958 -0.13395372033119202 -0.15985777974128723 0.5704631209373474 -0.10666994750499725 -0.15957826375961304 0.6002570390701294 -0.08327498286962509 -0.15919142961502075 0.630139946937561 -0.06333362311124802 -0.15868045389652252 0.6601333618164062 -0.04642358794808388 -0.15810588002204895 0.6902725696563721 -0.03241506963968277 -0.15754000842571259 0.7205837368965149 -0.021136492490768433 -0.1570611149072647 0.7511066794395447 -0.012658440507948399 -0.15671637654304504 0.7818586230278015 -0.006929312366992235 -0.15649175643920898 0.8128024935722351 -0.003430740674957633 -0.15635652840137482 0.8438785076141357 -0.0014534011716023088 -0.15628576278686523 0.8750415444374084 -0.00046923832269385457 -0.1562575399875641 0.9062587022781372 -9.790267358766869e-05 -0.15625 0.9706065654754639 -0.010560071095824242 -0.15625 1.0 -0.17774981260299683 -0.12500029802322388 0.9375003576278687 -3.7901900213910267e-06 -0.12500010430812836 0.9580279588699341 -1.300447706853447e-06 -0.12693709135055542 0.5417669415473938 -0.1476885825395584 -0.1271670013666153 0.5712146759033203 -0.116439588367939 -0.12724415957927704 0.6007989048957825 -0.08993780612945557 -0.12714673578739166 0.6304938793182373 -0.06736715137958527 -0.12687499821186066 0.6603358387947083 -0.048504896461963654 -0.12649637460708618 0.6903837323188782 -0.03343205526471138 -0.12607961893081665 0.7206403613090515 -0.02159634232521057 -0.12569978833198547 0.751133382320404 -0.012845688499510288 -0.12541189789772034 0.7818700075149536 -0.006991952192038298 -0.12521913647651672 0.8128048181533813 -0.0034256260842084885 -0.1250985860824585 0.8438782095909119 -0.001439430401660502 -0.12503385543823242 0.8750409483909607 -0.0004605283320415765 -0.12500718235969543 0.9062582850456238 -9.324904385721311e-05 -0.125 0.9706065654754639 -0.010560071095824242 -0.125 1.0 -0.17774981260299683 -0.09375015646219254 0.9375001788139343 -2.047966518148314e-06 -0.09375005215406418 0.9580279588699341 -7.026714001767687e-07 -0.09349778294563293 0.5428655743598938 -0.16269640624523163 -0.0941820964217186 0.5720579028129578 -0.12771330773830414 -0.09466920793056488 0.6013859510421753 -0.09749911725521088 -0.09490013867616653 0.6308684945106506 -0.07190365344285965 -0.09492012113332748 0.6605501174926758 -0.05091867223381996 -0.09477820992469788 0.6904906034469604 -0.03454922139644623 -0.09453727304935455 0.7206835150718689 -0.021997274830937386 -0.09428492188453674 0.7511471509933472 -0.012934282422065735 -0.09407743066549301 0.7818706035614014 -0.006951858755201101 -0.0939299613237381 0.8127992153167725 -0.003337244503200054 -0.09383361041545868 0.8438718318939209 -0.0013563204556703568 -0.09377890080213547 0.8750373721122742 -0.00041830819100141525 -0.09375587105751038 0.9062567353248596 -7.623595593031496e-05 -0.09375 0.9706065654754639 -0.010560071095824242 -0.09375 1.0 -0.17774981260299683 -0.0625000149011612 0.9375 -2.332612751843044e-07 -0.0625000074505806 0.9580279588699341 -8.003308948900667e-08 -0.05982291325926781 0.5439668893814087 -0.1779933124780655 -0.06095120683312416 0.5729352831840515 -0.13972002267837524 -0.061870869249105453 0.6020010113716125 -0.10574915260076523 -0.062496036291122437 0.6312642097473145 -0.07702300697565079 -0.06284499913454056 0.6607850193977356 -0.0538618266582489 -0.06296531111001968 0.6906036734580994 -0.03595573082566261 -0.06292353570461273 0.7207273840904236 -0.022548701614141464 -0.06281955540180206 0.7511630654335022 -0.01312562357634306 -0.06271430104970932 0.7818740010261536 -0.006986137479543686 -0.06262662261724472 0.8127955198287964 -0.0032898681238293648 -0.06256141513586044 0.8438646197319031 -0.0012721761595457792 -0.06252161413431168 0.8750321269035339 -0.0003582236240617931 -0.06250400841236115 0.9062547087669373 -5.2924722695024684e-05 -0.0625 0.9706065654754639 -0.010560071095824242 -0.0625 1.0 -0.17774981260299683 -0.03125 0.9375 0.0 -0.03125 0.9580279588699341 0.0 -0.025989757850766182 0.5450093746185303 -0.19258160889148712 -0.027530577033758163 0.5738049149513245 -0.15185347199440002 -0.028909239917993546 0.60264652967453 -0.11468896269798279 -0.029978541657328606 0.6316896677017212 -0.0828704908490181 -0.030689101666212082 0.6610327959060669 -0.0573013573884964 -0.03108343854546547 0.6907212734222412 -0.03767544403672218 -0.03125899285078049 0.7207822203636169 -0.023392103612422943 -0.031318433582782745 0.7511943578720093 -0.013595186173915863 -0.031326185911893845 0.7818921804428101 -0.007248929236084223 -0.031309451907873154 0.8128014802932739 -0.003387730335816741 -0.03128189221024513 0.8438636660575867 -0.0012766561703756452 -0.03126136586070061 0.8750295042991638 -0.0003334391221869737 -0.03125184401869774 0.9062531590461731 -3.616773756220937e-05 -0.03125 0.9706065654754639 -0.010560071095824242 -0.03125 1.0 -0.17774981260299683 -0.9375 0.5625 0.0 -0.9580279588699341 0.5625 0.0 -0.5334917306900024 0.5322648286819458 -0.01972855255007744 -0.5640616416931152 0.5318773984909058 -0.013359136879444122 -0.5947842597961426 0.5316126942634583 -0.00862104818224907 -0.6256440877914429 0.5314435362815857 -0.005252939648926258 -0.6566169857978821 0.5313411951065063 -0.0029400689527392387 -0.6876863837242126 0.5312866568565369 -0.0014727010857313871 -0.7188335061073303 0.5312624573707581 -0.000653146009426564 -0.7500324249267578 0.5312537550926208 -0.00025224348064512014 -0.7812599539756775 0.5312511324882507 -7.727791671641171e-05 -0.8125013113021851 0.5312501788139343 -1.0335910701542161e-05 -0.84375 0.53125 0.0 -0.875 0.53125 0.0 -0.90625 0.53125 0.0 -0.9580279588699341 0.46875 0.0 -0.5327144861221313 0.5632398724555969 -0.013168065808713436 -0.5634680390357971 0.5629413723945618 -0.008473286405205727 -0.5943467020988464 0.5627415776252747 -0.005095967091619968 -0.6253362894058228 0.5626183152198792 -0.002813244005665183 -0.6564173102378845 0.5625485181808472 -0.0013713196385651827 -0.6875720024108887 0.562515914440155 -0.0005777014885097742 -0.7187760472297668 0.5625038743019104 -0.00020418783242348582 -0.7500078082084656 0.5625008940696716 -6.060708619770594e-05 -0.7812511324882507 0.5625001192092896 -8.799084753263742e-06 -0.8125 0.5625 0.0 -0.84375 0.5625 0.0 -0.875 0.5625 0.0 -0.90625 0.5625 0.0 -0.9706065654754639 0.5625 -0.010560071095824242 -1.0 0.5625 -0.17774981260299683 -0.9375 0.59375 0.0 -0.9580279588699341 0.59375 0.0 -0.5321478247642517 0.5942544341087341 -0.008241272531449795 -0.5630519390106201 0.594034731388092 -0.004937734920531511 -0.5940577983856201 0.593893826007843 -0.002690766006708145 -0.6251496076583862 0.5938119292259216 -0.0012812628410756588 -0.6563100218772888 0.5937706232070923 -0.0005020403186790645 -0.6875190138816833 0.5937548279762268 -0.00015471481310669333 -0.7187542915344238 0.593750536441803 -3.372475111973472e-05 -0.7500004768371582 0.5937500596046448 -3.6491637729341164e-06 -0.78125 0.59375 0.0 -0.8125 0.59375 0.0 -0.84375 0.59375 0.0 -0.875 0.59375 0.0 -0.90625 0.59375 0.0 -0.9706065654754639 0.59375 -0.010560071095824242 -1.0 0.59375 -0.17774981260299683 -0.9375 0.625 0.0 -0.9580279588699341 0.625 0.0 -0.5317596197128296 0.6253172159194946 -0.004779694136232138 -0.5627846717834473 0.6251658201217651 -0.0026075502391904593 -0.5938866138458252 0.6250742077827454 -0.0012271752348169684 -0.6250528693199158 0.6250264644622803 -0.0004666974418796599 -0.6562647819519043 0.6250065565109253 -0.00012814327783416957 -0.6875021457672119 0.6250007152557373 -1.812581467675045e-05 -0.71875 0.625 0.0 -0.75 0.625 0.0 -0.78125 0.625 0.0 -0.8125 0.625 0.0 -0.84375 0.625 0.0 -0.875 0.625 0.0 -0.90625 0.625 0.0 -0.9706065654754639 0.625 -0.010560071095824242 -1.0 0.625 -0.17774981260299683 -0.9375 0.65625 0.0 -0.9580279588699341 0.65625 0.0 -0.5315161347389221 0.6564284563064575 -0.0025388465728610754 -0.5626295208930969 0.6563324928283691 -0.0012088412186130881 -0.5938010811805725 0.6562811732292175 -0.00046900848974473774 -0.6250143647193909 0.6562584042549133 -0.00013001290790271014 -0.6562520861625671 0.6562512516975403 -1.911200706672389e-05 -0.6875 0.65625 0.0 -0.71875 0.65625 0.0 -0.75 0.65625 0.0 -0.78125 0.65625 0.0 -0.8125 0.65625 0.0 -0.84375 0.65625 0.0 -0.875 0.65625 0.0 -0.90625 0.65625 0.0 -0.9706065654754639 0.65625 -0.010560071095824242 -1.0 0.65625 -0.17774981260299683 -0.9375 0.6875 0.0 -0.9580279588699341 0.6875 0.0 -0.5313716530799866 0.6875838041305542 -0.0011680590687319636 -0.5625495910644531 0.6875323057174683 -0.00046437824494205415 -0.5937649607658386 0.687509298324585 -0.00013756331463810056 -0.6250025033950806 0.6875014901161194 -2.270793993375264e-05 -0.65625 0.6875 0.0 -0.6875 0.6875 0.0 -0.71875 0.6875 0.0 -0.75 0.6875 0.0 -0.78125 0.6875 0.0 -0.8125 0.6875 0.0 -0.84375 0.6875 0.0 -0.875 0.6875 0.0 -0.90625 0.6875 0.0 -0.9706065654754639 0.6875 -0.010560071095824242 -1.0 0.6875 -0.17774981260299683 -0.9375 0.71875 0.0 -0.9580279588699341 0.71875 0.0 -0.5312921404838562 0.7187789082527161 -0.00040401803562417626 -0.5625126361846924 0.7187581658363342 -0.00011788777192123234 -0.5937519669532776 0.7187511920928955 -1.8019462004303932e-05 -0.625 0.71875 0.0 -0.65625 0.71875 0.0 -0.6875 0.71875 0.0 -0.71875 0.71875 0.0 -0.75 0.71875 0.0 -0.78125 0.71875 0.0 -0.8125 0.71875 0.0 -0.84375 0.71875 0.0 -0.875 0.71875 0.0 -0.90625 0.71875 0.0 -0.9706065654754639 0.71875 -0.010560071095824242 -1.0 0.71875 -0.17774981260299683 -0.9375 0.75 0.0 -0.9580279588699341 0.75 0.0 -0.5312581658363342 0.7500055432319641 -7.762357563478872e-05 -0.5625009536743164 0.7500005960464478 -8.754871487326454e-06 -0.59375 0.75 0.0 -0.625 0.75 0.0 -0.65625 0.75 0.0 -0.6875 0.75 0.0 -0.71875 0.75 0.0 -0.75 0.75 0.0 -0.78125 0.75 0.0 -0.8125 0.75 0.0 -0.84375 0.75 0.0 -0.875 0.75 0.0 -0.90625 0.75 0.0 -0.9706065654754639 0.75 -0.010560071095824242 -1.0 0.75 -0.17774981260299683 -0.9375 0.78125 0.0 -0.9580279588699341 0.78125 0.0 -0.5312501192092896 0.7812500596046448 -1.2238676845299779e-06 -0.5625 0.78125 0.0 -0.59375 0.78125 0.0 -0.625 0.78125 0.0 -0.65625 0.78125 0.0 -0.6875 0.78125 0.0 -0.71875 0.78125 0.0 -0.75 0.78125 0.0 -0.78125 0.78125 0.0 -0.8125 0.78125 0.0 -0.84375 0.78125 0.0 -0.875 0.78125 0.0 -0.90625 0.78125 0.0 -0.9706065654754639 0.78125 -0.010560071095824242 -1.0 0.78125 -0.17774981260299683 -0.9375 0.8125 0.0 -0.9580279588699341 0.8125 0.0 -0.53125 0.8125 0.0 -0.5625 0.8125 0.0 -0.59375 0.8125 0.0 -0.625 0.8125 0.0 -0.65625 0.8125 0.0 -0.6875 0.8125 0.0 -0.71875 0.8125 0.0 -0.75 0.8125 0.0 -0.78125 0.8125 0.0 -0.8125 0.8125 0.0 -0.84375 0.8125 0.0 -0.875 0.8125 0.0 -0.90625 0.8125 0.0 -0.9706065654754639 0.8125 -0.010560071095824242 -1.0 0.8125 -0.17774981260299683 -0.9375 0.84375 0.0 -0.9580279588699341 0.84375 0.0 -0.53125 0.84375 0.0 -0.5625 0.84375 0.0 -0.59375 0.84375 0.0 -0.625 0.84375 0.0 -0.65625 0.84375 0.0 -0.6875 0.84375 0.0 -0.71875 0.84375 0.0 -0.75 0.84375 0.0 -0.78125 0.84375 0.0 -0.8125 0.84375 0.0 -0.84375 0.84375 0.0 -0.875 0.84375 0.0 -0.90625 0.84375 0.0 -0.9706065654754639 0.84375 -0.010560071095824242 -1.0 0.84375 -0.17774981260299683 -0.9375 0.875 0.0 -0.9580279588699341 0.875 0.0 -0.53125 0.875 0.0 -0.5625 0.875 0.0 -0.59375 0.875 0.0 -0.625 0.875 0.0 -0.65625 0.875 0.0 -0.6875 0.875 0.0 -0.71875 0.875 0.0 -0.75 0.875 0.0 -0.78125 0.875 0.0 -0.8125 0.875 0.0 -0.84375 0.875 0.0 -0.875 0.875 0.0 -0.90625 0.875 0.0 -0.9706065654754639 0.875 -0.010560071095824242 -1.0 0.875 -0.17774981260299683 -0.9375 0.90625 0.0 -0.9580279588699341 0.90625 0.0 -0.53125 0.90625 0.0 -0.5625 0.90625 0.0 -0.59375 0.90625 0.0 -0.625 0.90625 0.0 -0.65625 0.90625 0.0 -0.6875 0.90625 0.0 -0.71875 0.90625 0.0 -0.75 0.90625 0.0 -0.78125 0.90625 0.0 -0.8125 0.90625 0.0 -0.84375 0.90625 0.0 -0.875 0.90625 0.0 -0.90625 0.90625 0.0 -0.9706065654754639 0.90625 -0.010560071095824242 -1.0 0.90625 -0.17774981260299683 -0.9375 0.9375 0.0 -0.9580279588699341 0.9375 0.0 -0.5625 0.9375 0.0 -0.59375 0.9375 0.0 -0.625 0.9375 0.0 -0.65625 0.9375 0.0 -0.6875 0.9375 0.0 -0.71875 0.9375 0.0 -0.75 0.9375 0.0 -0.78125 0.9375 0.0 -0.8125 0.9375 0.0 -0.84375 0.9375 0.0 -0.875 0.9375 0.0 -0.90625 0.9375 0.0 -0.9706065654754639 0.9375 -0.010560071095824242 -1.0 0.9375 -0.17774981260299683 -0.9375 0.9580279588699341 0.0 -0.9580279588699341 0.9580279588699341 0.0 -0.5625 1.0 -0.17774981260299683 -0.5625 0.9706065654754639 -0.010560071095824242 -0.59375 1.0 -0.17774981260299683 -0.59375 0.9706065654754639 -0.010560071095824242 -0.625 1.0 -0.17774981260299683 -0.625 0.9706065654754639 -0.010560071095824242 -0.65625 1.0 -0.17774981260299683 -0.65625 0.9706065654754639 -0.010560071095824242 -0.6875 1.0 -0.17774981260299683 -0.6875 0.9706065654754639 -0.010560071095824242 -0.71875 1.0 -0.17774981260299683 -0.71875 0.9706065654754639 -0.010560071095824242 -0.75 1.0 -0.17774981260299683 -0.75 0.9706065654754639 -0.010560071095824242 -0.78125 1.0 -0.17774981260299683 -0.78125 0.9706065654754639 -0.010560071095824242 -0.8125 1.0 -0.17774981260299683 -0.8125 0.9706065654754639 -0.010560071095824242 -0.84375 1.0 -0.17774981260299683 -0.84375 0.9706065654754639 -0.010560071095824242 -0.875 1.0 -0.17774981260299683 -0.875 0.9706065654754639 -0.010560071095824242 -0.90625 1.0 -0.17774981260299683 -0.90625 0.9706065654754639 -0.010560071095824242 -0.9375 1.0 -0.17774981260299683 -0.9375 0.9706065654754639 -0.010560071095824242 -0.9706065654754639 0.9580279588699341 -0.010560072958469391 -1.0 0.9580279588699341 -0.17774981260299683 -0.5625 0.9580279588699341 0.0 -0.59375 0.9580279588699341 0.0 -0.625 0.9580279588699341 0.0 -0.65625 0.9580279588699341 0.0 -0.6875 0.9580279588699341 0.0 -0.71875 0.9580279588699341 0.0 -0.75 0.9580279588699341 0.0 -0.78125 0.9580279588699341 0.0 -0.8125 0.9580279588699341 0.0 -0.84375 0.9580279588699341 0.0 -0.875 0.9580279588699341 0.0 -0.90625 0.9580279588699341 0.0 -0.9580279588699341 1.0 -0.17774981260299683 -0.9580279588699341 0.9706065654754639 -0.010560071095824242 -0.9763891100883484 0.9763891100883484 -0.08690228313207626 -0.9794720411300659 1.0 -0.17774981260299683 -1.0 1.0 -0.17774981260299683 -1.0 0.9794720411300659 -0.17774981260299683 -0.5 -0.9375 0.0 -0.5 -0.9580279588699341 0.0 -0.46875 -0.9580279588699341 0.0 -0.46875 -0.9375 0.0 -0.5096430778503418 -0.5169821977615356 -0.13043436408042908 -0.5396180748939514 -0.5142042636871338 -0.11040027439594269 -0.5387303233146667 -0.5441946983337402 -0.09888113290071487 -0.5086290836334229 -0.5467445850372314 -0.11686304211616516 -0.5378814339637756 -0.5740571618080139 -0.0872965157032013 -0.5076528787612915 -0.5763458609580994 -0.10318098217248917 -0.537020206451416 -0.6037744283676147 -0.07527197152376175 -0.5066660046577454 -0.6057813167572021 -0.08909507095813751 -0.5360944271087646 -0.6333297491073608 -0.06240366771817207 -0.5056218504905701 -0.6350470781326294 -0.07422797381877899 -0.5350757837295532 -0.6627415418624878 -0.048683904111385345 -0.5044758915901184 -0.6641392111778259 -0.05833205208182335 -0.5340234041213989 -0.69215327501297 -0.034998487681150436 -0.5032686591148376 -0.69319087266922 -0.042185839265584946 -0.5330883860588074 -0.7218092083930969 -0.023101668804883957 -0.502175509929657 -0.7225059270858765 -0.027935437858104706 -0.5323765873908997 -0.7518571019172668 -0.01409916952252388 -0.5013399720191956 -0.7522950172424316 -0.017147338017821312 -0.5318845510482788 -0.7822825312614441 -0.00789252482354641 -0.5007596611976624 -0.7825365662574768 -0.009668982587754726 -0.5315588116645813 -0.8129931688308716 -0.003804860869422555 -0.5003778338432312 -0.8131299614906311 -0.004771729931235313 -0.5313664674758911 -0.8439319133758545 -0.001419329666532576 -0.500147819519043 -0.8439915776252747 -0.00184891268145293 -0.5312788486480713 -0.8750439286231995 -0.00034685173886828125 -0.5000383853912354 -0.8750610947608948 -0.0004737530543934554 -0.5312527418136597 -0.9062539935112 -3.170363561366685e-05 -0.500004231929779 -0.9062566161155701 -5.144688839209266e-05 -0.53125 -0.9375 0.0 -0.5 -0.9706065654754639 -0.010560071095824242 -0.5 -1.0 -0.17774981260299683 -0.46875 -1.0 -0.17774981260299683 -0.46875 -0.9706065654754639 -0.010560071095824242 -0.9706065654754639 -0.5 -0.010560071095824242 -1.0 -0.5 -0.17774981260299683 -1.0 -0.53125 -0.17774981260299683 -0.9706065654754639 -0.53125 -0.010560071095824242 -0.5696141123771667 -0.5116471648216248 -0.09158693253993988 -0.5688690543174744 -0.5418739914894104 -0.08221235126256943 -0.5681453347206116 -0.5719749331474304 -0.07256709784269333 -0.5673953890800476 -0.6019370555877686 -0.0623316615819931 -0.5665752291679382 -0.6317505836486816 -0.05129193514585495 -0.5656788349151611 -0.6614566445350647 -0.03960852697491646 -0.5647764801979065 -0.691193163394928 -0.028187241405248642 -0.5639971494674683 -0.7211588025093079 -0.018469063565135002 -0.5634120106697083 -0.7514528632164001 -0.011199254542589188 -0.563004732131958 -0.782042384147644 -0.006153658963739872 -0.5627383589744568 -0.812867283821106 -0.002878580940887332 -0.5625861883163452 -0.8438799381256104 -0.0010286980541422963 -0.5625196099281311 -0.8750289678573608 -0.00023145254817791283 -0.5625014901161194 -0.9062520861625671 -1.7103489881264977e-05 -0.5625 -0.9375 0.0 -0.53125 -0.9706065654754639 -0.010560071095824242 -0.5625 -0.9706065654754639 -0.010560071095824242 -0.5625 -1.0 -0.17774981260299683 -0.53125 -1.0 -0.17774981260299683 -0.59375 -0.9375 0.0 -0.59375 -0.9580279588699341 0.0 -0.5625 -0.9580279588699341 0.0 -0.5996740460395813 -0.5093734860420227 -0.07447580248117447 -0.5990617275238037 -0.5398008227348328 -0.0669601708650589 -0.5984508991241455 -0.5701083540916443 -0.05899975076317787 -0.597798764705658 -0.6002821922302246 -0.05037469416856766 -0.5970751643180847 -0.6303233504295349 -0.04098636656999588 -0.5962960720062256 -0.6602904796600342 -0.031158383935689926 -0.5955444574356079 -0.6903253793716431 -0.021863793954253197 -0.5949193835258484 -0.720576822757721 -0.014198333956301212 -0.5944543480873108 -0.7510884404182434 -0.00850736815482378 -0.5941310524940491 -0.7818306088447571 -0.0045699262991547585 -0.5939229130744934 -0.8127592206001282 -0.0020563716534525156 -0.5938085317611694 -0.8438364267349243 -0.000690351938828826 -0.5937615633010864 -0.8750166893005371 -0.00013506361574400216 -0.5937506556510925 -0.9062508940696716 -7.293032922461862e-06 -0.59375 -0.9706065654754639 -0.010560071095824242 -0.59375 -1.0 -0.17774981260299683 -0.625 -0.9375 0.0 -0.625 -0.9580279588699341 0.0 -0.629815936088562 -0.5073876976966858 -0.05917726084589958 -0.6293194890022278 -0.5379819273948669 -0.05321001634001732 -0.6288037300109863 -0.5684583187103271 -0.04667392373085022 -0.6282332539558411 -0.5988048911094666 -0.03941166400909424 -0.6276015639305115 -0.6290451884269714 -0.03151368349790573 -0.6269491910934448 -0.6592614650726318 -0.023505156859755516 -0.6263529658317566 -0.6895771026611328 -0.016268065199255943 -0.6258721351623535 -0.7200782299041748 -0.0104463379830122 -0.6255170702934265 -0.7507792115211487 -0.0061608366668224335 -0.6252710223197937 -0.7816534042358398 -0.0032083136029541492 -0.6251160502433777 -0.8126707077026367 -0.001364920986816287 -0.625035285949707 -0.8438011407852173 -0.0004118909710086882 -0.6250057220458984 -0.875008225440979 -6.667915295111015e-05 -0.6250001192092896 -0.9062501788139343 -1.270408006348589e-06 -0.625 -0.9706065654754639 -0.010560071095824242 -0.625 -1.0 -0.17774981260299683 -0.65625 -0.9375 0.0 -0.65625 -0.9580279588699341 0.0 -0.6600375175476074 -0.5056672692298889 -0.04560140147805214 -0.6596350073814392 -0.5363885164260864 -0.04085699841380119 -0.6591960787773132 -0.566994309425354 -0.03547212854027748 -0.658704936504364 -0.5974932909011841 -0.029449209570884705 -0.658179521560669 -0.627931535243988 -0.023065797984600067 -0.6576665043830872 -0.6583916544914246 -0.016889821738004684 -0.6572199463844299 -0.6889580488204956 -0.011534547433257103 -0.6568673849105835 -0.7196711301803589 -0.0073142992332577705 -0.6566072702407837 -0.7505283951759338 -0.00421326607465744 -0.6564280986785889 -0.7815108895301819 -0.0020892685279250145 -0.6563194394111633 -0.8126006126403809 -0.0008099243277683854 -0.6562681794166565 -0.8437760472297668 -0.00021106298663653433 -0.6562520861625671 -0.875002920627594 -2.3872995370766148e-05 -0.65625 -0.90625 0.0 -0.65625 -0.9706065654754639 -0.010560071095824242 -0.65625 -1.0 -0.17774981260299683 -0.6875 -0.9375 0.0 -0.6875 -0.9580279588699341 0.0 -0.6903147101402283 -0.5041404366493225 -0.03333932161331177 -0.6899970769882202 -0.5349703431129456 -0.029673393815755844 -0.6896388530731201 -0.5657016038894653 -0.02540786936879158 -0.6892463564872742 -0.59636390209198 -0.02071383036673069 -0.6888468861579895 -0.62701016664505 -0.01594819687306881 -0.688474714756012 -0.6576986312866211 -0.011518890969455242 -0.6881594061851501 -0.6884749531745911 -0.007772447541356087 -0.6879109740257263 -0.7193539142608643 -0.0048277596943080425 -0.6877281069755554 -0.7503327131271362 -0.002668804954737425 -0.6876044273376465 -0.7814010381698608 -0.0012168275425210595 -0.6875357627868652 -0.8125512599945068 -0.0004148994339630008 -0.6875073313713074 -0.8437604904174805 -8.522409189026803e-05 -0.6875004172325134 -0.875000536441803 -4.596782218868611e-06 -0.6875 -0.90625 0.0 -0.6875 -0.9706065654754639 -0.010560071095824242 -0.6875 -1.0 -0.17774981260299683 -0.71875 -0.9375 0.0 -0.71875 -0.9580279588699341 0.0 -0.7206785678863525 -0.5028092265129089 -0.022584103047847748 -0.7204491496086121 -0.5337510704994202 -0.01998373307287693 -0.7201887965202332 -0.5646256804466248 -0.01694350317120552 -0.719910204410553 -0.5954628586769104 -0.013657789677381516 -0.7196338176727295 -0.6263011693954468 -0.010389958508312702 -0.7193824052810669 -0.6571776270866394 -0.007420359645038843 -0.7191699147224426 -0.6881132125854492 -0.0049150316044688225 -0.7190009355545044 -0.719114363193512 -0.0029282476752996445 -0.7188788056373596 -0.7501859068870544 -0.0014984948793426156 -0.7188024520874023 -0.7813252806663513 -0.0006088500958867371 -0.7187647819519043 -0.8125211000442505 -0.00017101231787819415 -0.7187519669532776 -0.8437527418136597 -2.2474763682112098e-05 -0.71875 -0.875 0.0 -0.71875 -0.90625 0.0 -0.71875 -0.9706065654754639 -0.010560071095824242 -0.71875 -1.0 -0.17774981260299683 -0.75 -0.9375 0.0 -0.75 -0.9580279588699341 0.0 -0.7512127757072449 -0.5017579793930054 -0.014111743308603764 -0.7510689496994019 -0.5328111052513123 -0.01249891147017479 -0.7509015202522278 -0.5638186931610107 -0.010558441281318665 -0.7507232427597046 -0.5948060154914856 -0.008462718687951565 -0.7505449652671814 -0.6257938146591187 -0.006368590984493494 -0.7503809928894043 -0.6568030714988708 -0.0044440096244215965 -0.7502422332763672 -0.687850296497345 -0.0028198021464049816 -0.7501349449157715 -0.718944251537323 -0.0015673167072236538 -0.7500618100166321 -0.750088632106781 -0.000716911512427032 -0.7500209212303162 -0.7812799215316772 -0.0002423862461000681 -0.7500040531158447 -0.8125057816505432 -4.701100260717794e-05 -0.7500001192092896 -0.8437501788139343 -1.6527887964912225e-06 -0.75 -0.875 0.0 -0.75 -0.90625 0.0 -0.75 -0.9706065654754639 -0.010560071095824242 -0.75 -1.0 -0.17774981260299683 -0.78125 -0.9375 0.0 -0.78125 -0.9580279588699341 0.0 -0.7819622755050659 -0.5010296702384949 -0.008271981962025166 -0.7818792462348938 -0.5321633219718933 -0.007335405331104994 -0.7817796468734741 -0.5632683038711548 -0.00617404468357563 -0.7816686630249023 -0.5943563580513 -0.004876617807894945 -0.7815564274787903 -0.6254428029060364 -0.0035651500802487135 -0.7814555764198303 -0.6565462350845337 -0.0023885888513177633 -0.7813708782196045 -0.6876737475395203 -0.0014032884500920773 -0.7813099026679993 -0.7188358902931213 -0.0006949336966499686 -0.781272828578949 -0.7500326037406921 -0.0002642221807036549 -0.7812554836273193 -0.7812578678131104 -6.39528370811604e-05 -0.7812504768371582 -0.8125007152557373 -5.605965270660818e-06 -0.78125 -0.84375 0.0 -0.78125 -0.875 0.0 -0.78125 -0.90625 0.0 -0.78125 -0.9706065654754639 -0.010560071095824242 -0.78125 -1.0 -0.17774981260299683 -0.8125 -0.9375 0.0 -0.8125 -0.9580279588699341 0.0 -0.8128859996795654 -0.5005571246147156 -0.004485480021685362 -0.8128405809402466 -0.5317414999008179 -0.003958698362112045 -0.8127811551094055 -0.5629053115844727 -0.0032665454782545567 -0.8127149343490601 -0.5940594673156738 -0.0024961759336292744 -0.8126490116119385 -0.6252142786979675 -0.0017301499610766768 -0.8125916123390198 -0.6563815474510193 -0.0010629977332428098 -0.8125476241111755 -0.6875683069229126 -0.0005527712637558579 -0.8125194311141968 -0.7187777757644653 -0.000224975825403817 -0.812505304813385 -0.7500075101852417 -6.144015787867829e-05 -0.8125005960464478 -0.7812508940696716 -7.180403372331057e-06 -0.8125 -0.8125 0.0 -0.8125 -0.84375 0.0 -0.8125 -0.875 0.0 -0.8125 -0.90625 0.0 -0.8125 -0.9706065654754639 -0.010560071095824242 -0.8125 -1.0 -0.17774981260299683 -0.84375 -0.9375 0.0 -0.84375 -0.9580279588699341 0.0 -0.8439328074455261 -0.5002632141113281 -0.002123195445165038 -0.8439071774482727 -0.5314761996269226 -0.0018253130838274956 -0.843874454498291 -0.562678873538971 -0.001444716937839985 -0.8438391089439392 -0.5938779711723328 -0.0010343273170292377 -0.843806266784668 -0.6250807046890259 -0.0006530716782435775 -0.8437801003456116 -0.6562930345535278 -0.0003489147056825459 -0.8437625765800476 -0.6875180006027222 -0.0001461932115489617 -0.8437535762786865 -0.7187551259994507 -4.149879532633349e-05 -0.8437504172325134 -0.7500005960464478 -4.804646778211463e-06 -0.84375 -0.78125 0.0 -0.84375 -0.8125 0.0 -0.84375 -0.84375 0.0 -0.84375 -0.875 0.0 -0.84375 -0.90625 0.0 -0.84375 -0.9706065654754639 -0.010560071095824242 -0.84375 -1.0 -0.17774981260299683 -0.875 -0.9375 0.0 -0.875 -0.9580279588699341 0.0 -0.8750661611557007 -0.500095009803772 -0.000767700606957078 -0.8750545978546143 -0.5313282608985901 -0.000633100513368845 -0.8750401735305786 -0.5625576376914978 -0.00046648047282360494 -0.8750258684158325 -0.5937870144844055 -0.00029988164897076786 -0.8750138878822327 -0.6250197887420654 -0.0001606638979865238 -0.8750056624412537 -0.6562581062316895 -6.60019286442548e-05 -0.8750015497207642 -0.6875022053718567 -1.8018215996562503e-05 -0.8750000596046448 -0.7187501192092896 -9.626209021007526e-07 -0.875 -0.75 0.0 -0.875 -0.78125 0.0 -0.875 -0.8125 0.0 -0.875 -0.84375 0.0 -0.875 -0.875 0.0 -0.875 -0.90625 0.0 -0.875 -0.9706065654754639 -0.010560071095824242 -0.875 -1.0 -0.17774981260299683 -0.90625 -0.9375 0.0 -0.90625 -0.9580279588699341 0.0 -0.9062649607658386 -0.5000214576721191 -0.00017398287309333682 -0.9062614440917969 -0.5312663316726685 -0.00013292525545693934 -0.9062573909759521 -0.5625104904174805 -8.527497993782163e-05 -0.9062538146972656 -0.5937554240226746 -4.415027433424257e-05 -0.9062514305114746 -0.6250020265579224 -1.6703006622265093e-05 -0.9062502384185791 -0.6562502980232239 -2.621794692458934e-06 -0.90625 -0.6875 0.0 -0.90625 -0.71875 0.0 -0.90625 -0.75 0.0 -0.90625 -0.78125 0.0 -0.90625 -0.8125 0.0 -0.90625 -0.84375 0.0 -0.90625 -0.875 0.0 -0.90625 -0.90625 0.0 -0.90625 -0.9706065654754639 -0.010560071095824242 -0.90625 -1.0 -0.17774981260299683 -0.9375 -0.9375 0.0 -0.9375 -0.9580279588699341 0.0 -0.9375012516975403 -0.5000017881393433 -1.4580259630747605e-05 -0.9375007748603821 -0.531251072883606 -8.854889529175125e-06 -0.9375002980232239 -0.5625004172325134 -3.3219996566913323e-06 -0.9375 -0.59375 0.0 -0.9375 -0.625 0.0 -0.9375 -0.65625 0.0 -0.9375 -0.6875 0.0 -0.9375 -0.71875 0.0 -0.9375 -0.75 0.0 -0.9375 -0.78125 0.0 -0.9375 -0.8125 0.0 -0.9375 -0.84375 0.0 -0.9375 -0.875 0.0 -0.9375 -0.90625 0.0 -0.9375 -0.9706065654754639 -0.010560071095824242 -0.9375 -1.0 -0.17774981260299683 -0.9580279588699341 -0.9375 0.0 -0.9580279588699341 -0.9580279588699341 0.0 -0.9375015497207642 -0.4687522053718567 -1.7950244000530802e-05 -0.9580279588699341 -0.4687507450580597 -6.159121312521165e-06 -0.9580279588699341 -0.5000005960464478 -5.002758371119853e-06 -1.0 -0.5625 -0.17774981260299683 -0.9706065654754639 -0.5625 -0.010560071095824242 -1.0 -0.59375 -0.17774981260299683 -0.9706065654754639 -0.59375 -0.010560071095824242 -1.0 -0.625 -0.17774981260299683 -0.9706065654754639 -0.625 -0.010560071095824242 -1.0 -0.65625 -0.17774981260299683 -0.9706065654754639 -0.65625 -0.010560071095824242 -1.0 -0.6875 -0.17774981260299683 -0.9706065654754639 -0.6875 -0.010560071095824242 -1.0 -0.71875 -0.17774981260299683 -0.9706065654754639 -0.71875 -0.010560071095824242 -1.0 -0.75 -0.17774981260299683 -0.9706065654754639 -0.75 -0.010560071095824242 -1.0 -0.78125 -0.17774981260299683 -0.9706065654754639 -0.78125 -0.010560071095824242 -1.0 -0.8125 -0.17774981260299683 -0.9706065654754639 -0.8125 -0.010560071095824242 -1.0 -0.84375 -0.17774981260299683 -0.9706065654754639 -0.84375 -0.010560071095824242 -1.0 -0.875 -0.17774981260299683 -0.9706065654754639 -0.875 -0.010560071095824242 -1.0 -0.90625 -0.17774981260299683 -0.9706065654754639 -0.90625 -0.010560071095824242 -1.0 -0.9375 -0.17774981260299683 -0.9706065654754639 -0.9375 -0.010560071095824242 -0.9580279588699341 -0.9706065654754639 -0.010560072958469391 -0.9580279588699341 -1.0 -0.17774981260299683 -0.9580279588699341 -0.5312503576278687 -3.0382311706489418e-06 -0.9580279588699341 -0.5625001192092896 -1.1398052492950228e-06 -0.9706065654754639 -0.46875 -0.010560071095824242 -1.0 -0.46875 -0.17774981260299683 -0.9580279588699341 -0.59375 0.0 -0.9580279588699341 -0.625 0.0 -0.9580279588699341 -0.65625 0.0 -0.9580279588699341 -0.6875 0.0 -0.9580279588699341 -0.71875 0.0 -0.9580279588699341 -0.75 0.0 -0.9580279588699341 -0.78125 0.0 -0.9580279588699341 -0.8125 0.0 -0.9580279588699341 -0.84375 0.0 -0.9580279588699341 -0.875 0.0 -0.9580279588699341 -0.90625 0.0 -1.0 -0.9580279588699341 -0.17774981260299683 -0.9706065654754639 -0.9580279588699341 -0.010560071095824242 -0.9763891100883484 -0.9763891100883484 -0.08690228313207626 -1.0 -0.9794720411300659 -0.17774981260299683 -1.0 -1.0 -0.17774981260299683 -0.9794720411300659 -1.0 -0.17774981260299683 -0.4375 -0.9580279588699341 -1.8185913575052837e-07 -0.4375000298023224 -0.9375000596046448 -5.300384486872645e-07 -0.47849053144454956 -0.549359142780304 -0.13510751724243164 -0.47960299253463745 -0.519785463809967 -0.15032963454723358 -0.4482384920120239 -0.551858127117157 -0.1524345576763153 -0.4494059383869171 -0.5224014520645142 -0.16862696409225464 -0.4178272783756256 -0.5541520714759827 -0.1683083474636078 -0.41899463534355164 -0.5247119665145874 -0.18468113243579865 -0.3872070610523224 -0.5561597347259521 -0.1822749674320221 -0.3883332312107086 -0.5266765356063843 -0.19836778938770294 -0.35631924867630005 -0.557867169380188 -0.19402189552783966 -0.35738348960876465 -0.5283540487289429 -0.209863543510437 -0.3250814974308014 -0.5592665672302246 -0.20297428965568542 -0.32608562707901 -0.5297974944114685 -0.21895037591457367 -0.2934335768222809 -0.5603988766670227 -0.20902961492538452 -0.29437685012817383 -0.5310587286949158 -0.22551707923412323 -0.2613096833229065 -0.5613189935684204 -0.21223382651805878 -0.26217755675315857 -0.5322067737579346 -0.22968105971813202 -0.22869950532913208 -0.5621643662452698 -0.21340660750865936 -0.2294253408908844 -0.5333341956138611 -0.2318795621395111 -0.19566333293914795 -0.5630990266799927 -0.21407851576805115 -0.19616688787937164 -0.5345580577850342 -0.2333977222442627 -0.16227027773857117 -0.5640552043914795 -0.2146311104297638 -0.16250701248645782 -0.5358160138130188 -0.23491039872169495 -0.12853914499282837 -0.5647993087768555 -0.21440830826759338 -0.1285020112991333 -0.53687584400177 -0.23592570424079895 -0.09451714903116226 -0.565214216709137 -0.21331395208835602 -0.0941295325756073 -0.5375924110412598 -0.23613446950912476 -0.06025118753314018 -0.5654081106185913 -0.2121606022119522 -0.05934714898467064 -0.5380788445472717 -0.23620660603046417 -0.025758948177099228 -0.565536379814148 -0.2113642692565918 -0.024163920432329178 -0.5385070443153381 -0.23670944571495056 0.008886617608368397 -0.5657045841217041 -0.21116040647029877 0.01117787603288889 -0.5389177799224854 -0.23763301968574524 -0.47741472721099854 -0.5787423253059387 -0.11962708830833435 -0.44709038734436035 -0.5810654759407043 -0.13553297519683838 -0.4166446030139923 -0.5832492113113403 -0.15053366124629974 -0.3860394358634949 -0.5852426290512085 -0.1643495112657547 -0.35519683361053467 -0.5869590044021606 -0.17626573145389557 -0.32401323318481445 -0.5883213877677917 -0.18529637157917023 -0.2924215495586395 -0.5893180966377258 -0.19099004566669464 -0.26038283109664917 -0.5900074243545532 -0.19338151812553406 -0.2279379516839981 -0.5905539393424988 -0.19357827305793762 -0.1951349973678589 -0.5911436080932617 -0.1931459754705429 -0.16199707984924316 -0.591733992099762 -0.19238968193531036 -0.12854361534118652 -0.5921457409858704 -0.19083961844444275 -0.09487108886241913 -0.5923340916633606 -0.1888832300901413 -0.061080873012542725 -0.5923854112625122 -0.1872733235359192 -0.027208730578422546 -0.5923450589179993 -0.18582990765571594 0.006755457725375891 -0.5923116207122803 -0.1846928745508194 -0.47631552815437317 -0.6079169511795044 -0.10362952202558517 -0.44590628147125244 -0.6100320816040039 -0.1179952397942543 -0.41539323329925537 -0.6120254993438721 -0.13164228200912476 -0.3847458064556122 -0.6138704419136047 -0.14445506036281586 -0.35390010476112366 -0.6154999136924744 -0.155892014503479 -0.3227458596229553 -0.6167879104614258 -0.1647447794675827 -0.29120826721191406 -0.6176695227622986 -0.1701798290014267 -0.25928616523742676 -0.6181939840316772 -0.17224302887916565 -0.22703734040260315 -0.6185181736946106 -0.17199768126010895 -0.1944897323846817 -0.6187963485717773 -0.17072497308254242 -0.16163846850395203 -0.6190258264541626 -0.16874714195728302 -0.12851321697235107 -0.6191368103027344 -0.16618408262729645 -0.09521863609552383 -0.6191623210906982 -0.16382406651973724 -0.06186884641647339 -0.6191496849060059 -0.16216003894805908 -0.028502479195594788 -0.6190590858459473 -0.16063378751277924 0.004867194686084986 -0.6189324855804443 -0.15910623967647552 -0.4751454293727875 -0.6368716359138489 -0.08663592487573624 -0.44463303685188293 -0.6387287974357605 -0.09923123568296432 -0.41403254866600037 -0.6404910683631897 -0.11128359287977219 -0.3833002746105194 -0.6420907974243164 -0.12243840098381042 -0.3523973524570465 -0.6435056924819946 -0.13251827657222748 -0.3212428689002991 -0.6446499824523926 -0.14071038365364075 -0.28978168964385986 -0.6454501748085022 -0.1461561769247055 -0.25801873207092285 -0.6459136009216309 -0.14861805737018585 -0.22598616778850555 -0.6461224555969238 -0.1486206352710724 -0.19369789958000183 -0.6461633443832397 -0.14695149660110474 -0.16115331649780273 -0.6460896134376526 -0.14419743418693542 -0.12839657068252563 -0.6459606289863586 -0.14108747243881226 -0.09551458060741425 -0.6458430886268616 -0.13848327100276947 -0.06258773803710938 -0.645769476890564 -0.13679543137550354 -0.029670579358935356 -0.6456972360610962 -0.1355612725019455 0.0032067864667624235 -0.6456303000450134 -0.1344766914844513 -0.47386327385902405 -0.6656210422515869 -0.06842458993196487 -0.4432128071784973 -0.6671328544616699 -0.07868935167789459 -0.4124923348426819 -0.6685940623283386 -0.08869199454784393 -0.38165801763534546 -0.6699107885360718 -0.09791404008865356 -0.35068273544311523 -0.6710585951805115 -0.10625921189785004 -0.31954166293144226 -0.6720332503318787 -0.11362507939338684 -0.28819724917411804 -0.6727926135063171 -0.11943123489618301 -0.2566201686859131 -0.6732661724090576 -0.12283101677894592 -0.22480005025863647 -0.6734232902526855 -0.12347347289323807 -0.19275136291980743 -0.6733291149139404 -0.12194351106882095 -0.16051645576953888 -0.673090398311615 -0.11918958276510239 -0.12814201414585114 -0.672814667224884 -0.11611399054527283 -0.09567733108997345 -0.6725975871086121 -0.11354997754096985 -0.06317074596881866 -0.6724949479103088 -0.11202883720397949 -0.030669420957565308 -0.6724985241889954 -0.11143583059310913 0.0017837985651567578 -0.6725313663482666 -0.11105390638113022 -0.4724971354007721 -0.6942873597145081 -0.049669962376356125 -0.44169244170188904 -0.69541335105896 -0.057340703904628754 -0.41083088517189026 -0.6965122222900391 -0.06490430235862732 -0.3798925280570984 -0.697524905204773 -0.07208787649869919 -0.348869264125824 -0.6984337568283081 -0.07889078557491302 -0.3177599012851715 -0.699252724647522 -0.08547654002904892 -0.286533921957016 -0.6999567747116089 -0.09147422760725021 -0.2551308274269104 -0.700436532497406 -0.09571413695812225 -0.2235172986984253 -0.7006129026412964 -0.09736177325248718 -0.19171719253063202 -0.7005361914634705 -0.09682127088308334 -0.1597779542207718 -0.7003120183944702 -0.09497898072004318 -0.12775149941444397 -0.7000459432601929 -0.0927169993519783 -0.09566978365182877 -0.6998304724693298 -0.09074324369430542 -0.06355376541614532 -0.6997456550598145 -0.08966708183288574 -0.031428366899490356 -0.6997879147529602 -0.08948861062526703 0.0006765170255675912 -0.6998681426048279 -0.08950968086719513 -0.47124624252319336 -0.7232362031936646 -0.03292597085237503 -0.4402950704097748 -0.7239947319030762 -0.03811819106340408 -0.4093102216720581 -0.724753737449646 -0.04342413321137428 -0.37828561663627625 -0.7254823446273804 -0.04873327910900116 -0.34722068905830383 -0.7261652946472168 -0.054048776626586914 -0.31611543893814087 -0.7268074154853821 -0.05950319021940231 -0.2849549651145935 -0.7274007797241211 -0.06499797850847244 -0.2536933422088623 -0.7278763651847839 -0.0697387307882309 -0.22227995097637177 -0.7281373143196106 -0.0726485624909401 -0.19071578979492188 -0.7281835675239563 -0.07360853254795074 -0.15904304385185242 -0.7280950546264648 -0.073277547955513 -0.1273038685321808 -0.727956235408783 -0.07235229015350342 -0.09552060067653656 -0.7278383374214172 -0.07139089703559875 -0.06371018290519714 -0.7277787923812866 -0.07072995603084564 -0.031883396208286285 -0.727792501449585 -0.07048502564430237 -5.410541780292988e-05 -0.7278305292129517 -0.07030541449785233 -0.47029078006744385 -0.752750039100647 -0.020259033888578415 -0.4392260015010834 -0.7532210350036621 -0.023507099598646164 -0.40814709663391113 -0.7537094354629517 -0.02699616737663746 -0.3770522475242615 -0.7542023062705994 -0.030716072767972946 -0.34593725204467773 -0.7546772360801697 -0.03456985205411911 -0.3148057460784912 -0.7551340460777283 -0.03866330534219742 -0.2836531400680542 -0.7555778622627258 -0.04303547367453575 -0.2524621784687042 -0.7559874653816223 -0.04741781949996948 -0.22119610011577606 -0.7563056945800781 -0.05108868330717087 -0.18983136117458344 -0.7564927339553833 -0.05348664149641991 -0.1583760380744934 -0.7565650939941406 -0.05468800663948059 -0.1268528401851654 -0.7565762400627136 -0.05512123927474022 -0.09528253972530365 -0.7565492987632751 -0.055019255727529526 -0.06367883086204529 -0.7565191984176636 -0.05468207597732544 -0.03205661103129387 -0.7564957141876221 -0.054225072264671326 -0.00042717286851257086 -0.7564692497253418 -0.05362303555011749 -0.46962815523147583 -0.7828032374382019 -0.011491968296468258 -0.43848854303359985 -0.7830823063850403 -0.013421589508652687 -0.40734195709228516 -0.7833770513534546 -0.015562568791210651 -0.3761911392211914 -0.7836870551109314 -0.01799643784761429 -0.3450334370136261 -0.7840012907981873 -0.02066926099359989 -0.3138686716556549 -0.7843085527420044 -0.0235536340624094 -0.28270015120506287 -0.7846168875694275 -0.026742100715637207 -0.2515260875225067 -0.7849318385124207 -0.030241642147302628 -0.22033073008060455 -0.7852296233177185 -0.033738166093826294 -0.18908745050430298 -0.7854753732681274 -0.03672732785344124 -0.15777993202209473 -0.7856459617614746 -0.03886488080024719 -0.1264067143201828 -0.7857427000999451 -0.04012700915336609 -0.09498218446969986 -0.7857861518859863 -0.040686625987291336 -0.06352166831493378 -0.785785973072052 -0.04066932573914528 -0.032040342688560486 -0.7857630252838135 -0.04027407988905907 -0.0005521841812878847 -0.7857159376144409 -0.03956117853522301 -0.46919262409210205 -0.8132732510566711 -0.00575236463919282 -0.4380018711090088 -0.8134228587150574 -0.006778455339372158 -0.40680810809135437 -0.8135842084884644 -0.007958360947668552 -0.37561550736427307 -0.8137637376785278 -0.009410000406205654 -0.3444267511367798 -0.8139633536338806 -0.011190717108547688 -0.3132396340370178 -0.8141713738441467 -0.013218128122389317 -0.2820558249950409 -0.8143844604492188 -0.01549215242266655 -0.2508779466152191 -0.8146121501922607 -0.018079301342368126 -0.2196970134973526 -0.8148446083068848 -0.02083689160645008 -0.18850041925907135 -0.8150656819343567 -0.023520048707723618 -0.1572684496641159 -0.8152493238449097 -0.02577630616724491 -0.12598960101604462 -0.8153817057609558 -0.027393192052841187 -0.09466574341058731 -0.8154646754264832 -0.02835533767938614 -0.06330747157335281 -0.8155044317245483 -0.028732988983392715 -0.03192727640271187 -0.8155062794685364 -0.028602000325918198 -0.0005359364440664649 -0.8154714107513428 -0.028033331036567688 -0.4689272344112396 -0.8440555930137634 -0.0022882516495883465 -0.43770357966423035 -0.8441222310066223 -0.0027367158327251673 -0.40647977590560913 -0.8441979885101318 -0.0032857737969607115 -0.37526020407676697 -0.8442915081977844 -0.004055195488035679 -0.34404903650283813 -0.8444090485572815 -0.005140870809555054 -0.31284698843955994 -0.8445490598678589 -0.0065478794276714325 -0.2816518545150757 -0.8447026610374451 -0.008195300586521626 -0.2504625916481018 -0.8448655605316162 -0.010045766830444336 -0.21927499771118164 -0.845032811164856 -0.012032042257487774 -0.1880817711353302 -0.8451971411705017 -0.014022390358150005 -0.15687280893325806 -0.8453468084335327 -0.01584765315055847 -0.12563899159431458 -0.8454692363739014 -0.017326824367046356 -0.09437577426433563 -0.8455605506896973 -0.018367817625403404 -0.06308399140834808 -0.8456165790557861 -0.018923180177807808 -0.031769026070833206 -0.8456354141235352 -0.018994750455021858 -0.00043669488513842225 -0.845607340335846 -0.01852894015610218 -0.4687979519367218 -0.8750813007354736 -0.0006145610241219401 -0.4375566840171814 -0.8751034736633301 -0.0007608893793076277 -0.4063156843185425 -0.8751301765441895 -0.0009465857874602079 -0.37507888674736023 -0.8751689195632935 -0.0012693627504631877 -0.34384992718696594 -0.8752277493476868 -0.0018284022808074951 -0.3126313090324402 -0.8753105998039246 -0.002678107935935259 -0.2814221978187561 -0.8754144906997681 -0.003795746946707368 -0.25021836161613464 -0.8755291104316711 -0.005078503862023354 -0.21901696920394897 -0.8756486177444458 -0.00645802728831768 -0.1878131926059723 -0.8757642507553101 -0.007831047289073467 -0.15660202503204346 -0.8758701682090759 -0.00909641943871975 -0.12537913024425507 -0.8759629726409912 -0.010181562975049019 -0.09413917362689972 -0.8760340213775635 -0.010977261699736118 -0.06287967413663864 -0.8760783076286316 -0.011424709111452103 -0.03160042315721512 -0.8760913610458374 -0.011487922631204128 -0.00030481498106382787 -0.8760703802108765 -0.011162586510181427 -0.46875572204589844 -0.9062594771385193 -7.24748897482641e-05 -0.4375072717666626 -0.9062634110450745 -9.854900417849422e-05 -0.40625908970832825 -0.9062687158584595 -0.0001331484818365425 -0.3750127851963043 -0.9062792062759399 -0.00021943038154859096 -0.34377139806747437 -0.9063014984130859 -0.000434843881521374 -0.31253716349601746 -0.9063408970832825 -0.000844499038066715 -0.28131040930747986 -0.9063979387283325 -0.0014630702789872885 -0.2500896453857422 -0.9064695835113525 -0.0022565897088497877 -0.21887217462062836 -0.906549334526062 -0.0031526857055723667 -0.18765458464622498 -0.9066289663314819 -0.004057487938553095 -0.15643472969532013 -0.9067040085792542 -0.004914979916065931 -0.12520819902420044 -0.9067660570144653 -0.005619632545858622 -0.09397105872631073 -0.9068104028701782 -0.0061122155748307705 -0.06272167712450027 -0.9068354368209839 -0.006371000315994024 -0.03145919367671013 -0.9068384170532227 -0.006369594484567642 -0.00018507015192881227 -0.9068188667297363 -0.006118801888078451 -0.40625014901161194 -0.9375002980232239 -2.2384433577826712e-06 -0.37500038743019104 -0.9375008940696716 -7.018595169938635e-06 -0.3437519371509552 -0.9375050067901611 -4.7593330236850306e-05 -0.31250670552253723 -0.9375171661376953 -0.00017849000869318843 -0.2812662422657013 -0.9375411868095398 -0.0004388156230561435 -0.2500308156013489 -0.937577486038208 -0.0008370887953788042 -0.21879903972148895 -0.9376230835914612 -0.001340841525234282 -0.18756893277168274 -0.9376732707023621 -0.0018955018604174256 -0.15633738040924072 -0.9377202987670898 -0.002417290583252907 -0.12510228157043457 -0.9377592206001282 -0.0028484335634857416 -0.09386219829320908 -0.9377865195274353 -0.0031499459873884916 -0.06261491775512695 -0.9377977252006531 -0.0032744435593485832 -0.03136042132973671 -0.9377948641777039 -0.0032403641380369663 -9.951924585038796e-05 -0.9377800822257996 -0.0030718971975147724 -0.53125 -0.9580279588699341 0.0 -0.4375 -1.0 -0.17774981260299683 -0.4375 -0.9706065654754639 -0.010560071095824242 -0.40625 -1.0 -0.17774981260299683 -0.40625 -0.9706065654754639 -0.010560071095824242 -0.375 -1.0 -0.17774981260299683 -0.375 -0.9706065654754639 -0.010560071095824242 -0.34375 -1.0 -0.17774981260299683 -0.3437500298023224 -0.9706066250801086 -0.01056060940027237 -0.3125 -1.0 -0.17774981260299683 -0.3125006854534149 -0.9706085920333862 -0.010581154376268387 -0.2812502384185791 -1.0000005960464478 -0.17775684595108032 -0.281252920627594 -0.9706152677536011 -0.010651053860783577 -0.2500012516975403 -1.000003457069397 -0.17778751254081726 -0.25000765919685364 -0.9706287980079651 -0.010793659836053848 -0.21875333786010742 -1.0000090599060059 -0.1778492033481598 -0.21876487135887146 -0.9706491231918335 -0.011009485460817814 -0.18750642240047455 -1.0000172853469849 -0.1779409795999527 -0.18752381205558777 -0.9706742763519287 -0.011276314035058022 -0.1562601625919342 -1.0000274181365967 -0.1780519187450409 -0.15628309547901154 -0.9707003831863403 -0.011554908007383347 -0.1250138282775879 -1.0000373125076294 -0.17816075682640076 -0.12504121661186218 -0.9707233905792236 -0.011800842359662056 -0.09376668930053711 -1.0000450611114502 -0.17824618518352509 -0.09379692375659943 -0.9707398414611816 -0.011977221816778183 -0.06251818686723709 -1.000049114227295 -0.17829157412052155 -0.06254933029413223 -0.9707472324371338 -0.012057011015713215 -0.03126807138323784 -1.0000488758087158 -0.17828844487667084 -0.031298212707042694 -0.9707450866699219 -0.012034953571856022 -1.637959576328285e-05 -1.0000442266464233 -0.17823803424835205 -4.381605322123505e-05 -0.9707350730895996 -0.011926768347620964 -0.4062500596046448 -0.9580279588699341 -7.68028201036941e-07 -0.37500011920928955 -0.9580279588699341 -2.4081832634692546e-06 -0.3437506854534149 -0.9580280184745789 -1.6685380614944734e-05 -0.31250277161598206 -0.9580299854278564 -7.511791045544669e-05 -0.28125759959220886 -0.9580368995666504 -0.00021044682944193482 -0.25001588463783264 -0.9580512046813965 -0.0004409780667629093 -0.2187771052122116 -0.9580731987953186 -0.0007559347432106733 -0.18754005432128906 -0.9581007361412048 -0.0011219943407922983 -0.15630273520946503 -0.9581295251846313 -0.001484554959461093 -0.12506338953971863 -0.9581550359725952 -0.0017945293802767992 -0.09382066130638123 -0.9581733345985413 -0.0020142248831689358 -0.06257320940494537 -0.9581813812255859 -0.0021095150150358677 -0.03132089227437973 -0.9581791162490845 -0.0020832994487136602 -6.413734081434086e-05 -0.9581682085990906 -0.001954243052750826 -0.9375014901161194 -0.4375021457672119 -1.7456719433539547e-05 -0.9580279588699341 -0.4375007450580597 -5.989770670566941e-06 -0.480833500623703 -0.4900381565093994 -0.1649600863456726 -0.5107755661010742 -0.4870885908603668 -0.14396817982196808 -0.4822285771369934 -0.46011587977409363 -0.17841197550296783 -0.5120738744735718 -0.4570596218109131 -0.15688030421733856 -0.48370790481567383 -0.429918497800827 -0.18991583585739136 -0.5134724974632263 -0.4268033802509308 -0.16813990473747253 -0.48513466119766235 -0.3992764353752136 -0.19849331676959991 -0.5148582458496094 -0.3961736559867859 -0.1767890751361847 -0.486495703458786 -0.3681201934814453 -0.20400728285312653 -0.5161847472190857 -0.36507174372673035 -0.1824491024017334 -0.48779112100601196 -0.33640918135643005 -0.2064206749200821 -0.5174170732498169 -0.3334348797798157 -0.18489423394203186 -0.4889955520629883 -0.30411142110824585 -0.20556817948818207 -0.5185436010360718 -0.30124548077583313 -0.18410588800907135 -0.49012377858161926 -0.27123650908470154 -0.20149412751197815 -0.519625723361969 -0.2685863673686981 -0.18063810467720032 -0.49124228954315186 -0.23794257640838623 -0.19511264562606812 -0.5207130312919617 -0.2356247454881668 -0.1754215657711029 -0.49245572090148926 -0.20454375445842743 -0.1883889138698578 -0.5219088196754456 -0.2026156634092331 -0.1701676845550537 -0.49389252066612244 -0.17139077186584473 -0.18375328183174133 -0.5233262181282043 -0.16985291242599487 -0.1669428050518036 -0.4953809380531311 -0.13862071931362152 -0.18131527304649353 -0.5247677564620972 -0.1373981535434723 -0.16540108621120453 -0.49663951992988586 -0.10612845420837402 -0.17947237193584442 -0.5259353518486023 -0.10513750463724136 -0.16390454769134521 -0.49755990505218506 -0.07376575469970703 -0.1774113029241562 -0.5267673134803772 -0.07294973731040955 -0.1621285229921341 -0.4982028901576996 -0.0414130762219429 -0.17582686245441437 -0.5273650288581848 -0.04076407104730606 -0.16112379729747772 -0.4506785571575165 -0.49271684885025024 -0.1835871934890747 -0.4521218240261078 -0.4628407955169678 -0.1971784383058548 -0.45363283157348633 -0.4326646029949188 -0.20876413583755493 -0.4550752639770508 -0.4020180106163025 -0.21742162108421326 -0.45647576451301575 -0.3708403408527374 -0.2230967879295349 -0.45785602927207947 -0.33910495042800903 -0.22582976520061493 -0.4591742157936096 -0.30676597356796265 -0.22533942759037018 -0.46042361855506897 -0.27379676699638367 -0.22148409485816956 -0.4616507291793823 -0.24028050899505615 -0.2147434949874878 -0.46297508478164673 -0.20655374228954315 -0.20725029706954956 -0.46449217200279236 -0.17303434014320374 -0.2015562802553177 -0.46608325839042664 -0.13992634415626526 -0.19833087921142578 -0.4674655795097351 -0.1071704626083374 -0.19616226851940155 -0.46850770711898804 -0.07460513710975647 -0.1940215677022934 -0.4692172110080719 -0.042083028703927994 -0.19210222363471985 -0.42026326060295105 -0.4950141906738281 -0.19944559037685394 -0.42171239852905273 -0.46513625979423523 -0.21292895078659058 -0.42322489619255066 -0.4349633455276489 -0.2245626300573349 -0.4246869683265686 -0.4043424427509308 -0.23357051610946655 -0.4261440336704254 -0.37321987748146057 -0.2399018108844757 -0.4276217222213745 -0.3415330946445465 -0.24340619146823883 -0.42907604575157166 -0.30920812487602234 -0.2437199205160141 -0.4304899275302887 -0.2761887311935425 -0.24055634438991547 -0.4319227337837219 -0.24254833161830902 -0.23441705107688904 -0.4334588646888733 -0.20859546959400177 -0.2270832657814026 -0.43514734506607056 -0.1747807264328003 -0.2210347205400467 -0.4368509352207184 -0.14134272933006287 -0.21706342697143555 -0.4383271634578705 -0.10828540474176407 -0.21424680948257446 -0.4394427239894867 -0.07548046857118607 -0.21164463460445404 -0.4401853680610657 -0.04275358468294144 -0.20924966037273407 -0.38956546783447266 -0.496941477060318 -0.21283459663391113 -0.3909817337989807 -0.4670368432998657 -0.22611971199512482 -0.3924836218357086 -0.4368651211261749 -0.2378460019826889 -0.3939763307571411 -0.4062866270542145 -0.2473459541797638 -0.39548617601394653 -0.37524035573005676 -0.25451114773750305 -0.3970552086830139 -0.34365373849868774 -0.2592070698738098 -0.39868271350860596 -0.31141215562820435 -0.2610100209712982 -0.4003240764141083 -0.2784119248390198 -0.2593226730823517 -0.40202194452285767 -0.24471847712993622 -0.254518985748291 -0.4038037061691284 -0.2106352001428604 -0.24808108806610107 -0.40562739968299866 -0.17659881711006165 -0.2419763207435608 -0.40734949707984924 -0.14285671710968018 -0.23704756796360016 -0.40880489349365234 -0.10947145521640778 -0.23296569287776947 -0.40991032123565674 -0.07636263221502304 -0.22936542332172394 -0.4106294810771942 -0.04338175803422928 -0.22618339955806732 -0.35856273770332336 -0.4986077845096588 -0.2242957204580307 -0.35992687940597534 -0.46869269013404846 -0.23759327828884125 -0.36140087246894836 -0.43851202726364136 -0.24941498041152954 -0.3629169464111328 -0.4079563617706299 -0.25939908623695374 -0.3644699454307556 -0.37694844603538513 -0.26734286546707153 -0.36613139510154724 -0.3454294502735138 -0.2732846736907959 -0.3679421842098236 -0.3132879436016083 -0.27695232629776 -0.3698633909225464 -0.2803856432437897 -0.27750304341316223 -0.3718388080596924 -0.24674440920352936 -0.2747098207473755 -0.3737412989139557 -0.21261519193649292 -0.26919662952423096 -0.3755050003528595 -0.17841961979866028 -0.2627336382865906 -0.37708619236946106 -0.14440813660621643 -0.25664839148521423 -0.37839168310165405 -0.11065880954265594 -0.25107914209365845 -0.3794068694114685 -0.07719887793064117 -0.24627919495105743 -0.38005733489990234 -0.043890539556741714 -0.24212609231472015 -0.3272075057029724 -0.5000937581062317 -0.2337779849767685 -0.3285186290740967 -0.47020331025123596 -0.24749280512332916 -0.3299495577812195 -0.4400055408477783 -0.25958478450775146 -0.33145642280578613 -0.4094054698944092 -0.2698661983013153 -0.3330456018447876 -0.37836402654647827 -0.27840498089790344 -0.33479756116867065 -0.34684064984321594 -0.28540632128715515 -0.33678823709487915 -0.31475529074668884 -0.2907085418701172 -0.3389776349067688 -0.2819838225841522 -0.29354560375213623 -0.34112685918807983 -0.24846138060092926 -0.29263225197792053 -0.3429431915283203 -0.21436110138893127 -0.2876531481742859 -0.344423770904541 -0.18004751205444336 -0.28052374720573425 -0.345695823431015 -0.14579881727695465 -0.2733839750289917 -0.3467505872249603 -0.1116994172334671 -0.2667366862297058 -0.3475584089756012 -0.07784402370452881 -0.2608134150505066 -0.3480623960494995 -0.04416093975305557 -0.2557844817638397 -0.2954336404800415 -0.501453697681427 -0.24106454849243164 -0.2966805100440979 -0.47158199548721313 -0.25530582666397095 -0.29805436730384827 -0.44133132696151733 -0.2677432894706726 -0.29952093958854675 -0.4106403589248657 -0.2782958447933197 -0.30113181471824646 -0.37950775027275085 -0.28730887174606323 -0.30298057198524475 -0.3479498028755188 -0.2951480448246002 -0.3051348924636841 -0.31590384244918823 -0.30181699991226196 -0.30746808648109436 -0.283216655254364 -0.3062358498573303 -0.30956828594207764 -0.24975422024726868 -0.3061978220939636 -0.3111158609390259 -0.21564622223377228 -0.30119311809539795 -0.31220680475234985 -0.1812153458595276 -0.2934342920780182 -0.3130539655685425 -0.1467466801404953 -0.2853955924510956 -0.3137381672859192 -0.11234238743782043 -0.27788621187210083 -0.31424176692962646 -0.07811438292264938 -0.2711029350757599 -0.31449317932128906 -0.04405539110302925 -0.2654508054256439 -0.26314735412597656 -0.5027204155921936 -0.2459617555141449 -0.2643055021762848 -0.472847580909729 -0.2606791853904724 -0.26560845971107483 -0.44252917170524597 -0.2735188901424408 -0.26702603697776794 -0.4117484986782074 -0.28457796573638916 -0.26863646507263184 -0.3805543780326843 -0.29421085119247437 -0.2705613672733307 -0.34897518157958984 -0.302897572517395 -0.27280089259147644 -0.31692221760749817 -0.3105635941028595 -0.2750847339630127 -0.28420156240463257 -0.315581351518631 -0.27693241834640503 -0.2506834864616394 -0.3155394196510315 -0.27811670303344727 -0.216488316655159 -0.3103236258029938 -0.2788061201572418 -0.18190094828605652 -0.3022436499595642 -0.2792344391345978 -0.14720460772514343 -0.29373520612716675 -0.279502272605896 -0.11252609640359879 -0.28549739718437195 -0.27963483333587646 -0.0779709666967392 -0.27787381410598755 -0.279610812664032 -0.04356762766838074 -0.2720499634742737 -0.23025044798851013 -0.5040023326873779 -0.24885061383247375 -0.23127219080924988 -0.47416582703590393 -0.264204204082489 -0.232478067278862 -0.44382816553115845 -0.2777656614780426 -0.23384201526641846 -0.4130297601222992 -0.2897668182849884 -0.2354399561882019 -0.3818203806877136 -0.3003104031085968 -0.23735220730304718 -0.35019564628601074 -0.3097122311592102 -0.23953409492969513 -0.31802257895469666 -0.317715048789978 -0.24162602424621582 -0.28513678908348083 -0.32261431217193604 -0.24314601719379425 -0.2514590919017792 -0.3223946690559387 -0.24397210776805878 -0.21712683141231537 -0.3174092173576355 -0.24430589377880096 -0.18236766755580902 -0.3097507655620575 -0.2444002628326416 -0.14743472635746002 -0.3013751208782196 -0.24435096979141235 -0.11250556260347366 -0.292956680059433 -0.244223490357399 -0.07767625153064728 -0.2855282425880432 -0.24401818215847015 -0.04295209050178528 -0.2806670367717743 -0.19676098227500916 -0.5054253935813904 -0.25095945596694946 -0.19755057990550995 -0.47571542859077454 -0.2670534551143646 -0.19857211410999298 -0.44547584652900696 -0.2818206250667572 -0.19981345534324646 -0.4147586226463318 -0.2950885593891144 -0.20131005346775055 -0.38359513878822327 -0.30676525831222534 -0.20310920476913452 -0.3518880307674408 -0.3167254328727722 -0.20512306690216064 -0.319476842880249 -0.3245101273059845 -0.20699574053287506 -0.2862701117992401 -0.32884344458580017 -0.20826199650764465 -0.25232160091400146 -0.3285766541957855 -0.2088421732187271 -0.21779386699199677 -0.32443109154701233 -0.20897676050662994 -0.18286949396133423 -0.318109929561615 -0.2088748961687088 -0.14774629473686218 -0.3107924163341522 -0.20867635309696198 -0.11260458827018738 -0.3034875690937042 -0.20845185220241547 -0.07751597464084625 -0.2974736988544464 -0.20821523666381836 -0.04246647283434868 -0.2943771183490753 -0.16280291974544525 -0.5069224238395691 -0.25312843918800354 -0.16325148940086365 -0.47742602229118347 -0.2700165808200836 -0.16391971707344055 -0.4473925530910492 -0.28595197200775146 -0.1648654043674469 -0.4168621599674225 -0.3005507290363312 -0.16610750555992126 -0.3857916593551636 -0.3131989538669586 -0.1676548421382904 -0.3540104329586029 -0.32351526618003845 -0.16942353546619415 -0.32134562730789185 -0.33101686835289 -0.17111776769161224 -0.28779807686805725 -0.33520567417144775 -0.17231248319149017 -0.2535090446472168 -0.3354046046733856 -0.1728980988264084 -0.21869446337223053 -0.332366406917572 -0.1730455607175827 -0.18351566791534424 -0.3272949457168579 -0.17295412719249725 -0.1481899619102478 -0.32141610980033875 -0.17277522385120392 -0.11286024004220963 -0.31597232818603516 -0.17258770763874054 -0.07753036171197891 -0.3121265470981598 -0.17244398593902588 -0.042184848338365555 -0.3114417791366577 -0.1284572184085846 -0.508266806602478 -0.2551514208316803 -0.12848320603370667 -0.479032963514328 -0.2729478180408478 -0.12866921722888947 -0.4492310583591461 -0.2896784842014313 -0.12913942337036133 -0.4188704788684845 -0.3047948181629181 -0.12993291020393372 -0.387897253036499 -0.3178101181983948 -0.13104169070720673 -0.35614025592803955 -0.328514963388443 -0.13241088390350342 -0.3234140872955322 -0.33653825521469116 -0.1339084804058075 -0.2896909713745117 -0.34151652455329895 -0.13522328436374664 -0.25510355830192566 -0.3428092896938324 -0.13609188795089722 -0.21992041170597076 -0.34077751636505127 -0.13650429248809814 -0.1843809187412262 -0.3366335332393646 -0.1366376131772995 -0.14879710972309113 -0.3321528136730194 -0.13666073977947235 -0.11327677965164185 -0.32877013087272644 -0.1366863250732422 -0.07773328572511673 -0.3275007903575897 -0.13677851855754852 -0.04213244840502739 -0.32954174280166626 -0.09367776662111282 -0.5093134045600891 -0.2567123770713806 -0.09320643544197083 -0.48038750886917114 -0.27558502554893494 -0.09285343438386917 -0.45080122351646423 -0.29279613494873047 -0.09274756908416748 -0.42055830359458923 -0.3078572154045105 -0.09295042604207993 -0.3896373212337494 -0.3206072449684143 -0.0934751108288765 -0.35791799426078796 -0.33141016960144043 -0.0943392738699913 -0.32524365186691284 -0.3401702046394348 -0.09559118747711182 -0.29156655073165894 -0.34661656618118286 -0.0970623567700386 -0.25689753890037537 -0.34964174032211304 -0.09831241518259048 -0.2214202582836151 -0.349016010761261 -0.09915713965892792 -0.18558117747306824 -0.34631749987602234 -0.09973111003637314 -0.1497696042060852 -0.3435431718826294 -0.10019800066947937 -0.11403010040521622 -0.3421390950679779 -0.10063141584396362 -0.0782354548573494 -0.3432750701904297 -0.10102339088916779 -0.04234546050429344 -0.347769170999527 -0.05833936110138893 -0.510187029838562 -0.25843527913093567 -0.057310737669467926 -0.48159199953079224 -0.27842363715171814 -0.05639276280999184 -0.45219892263412476 -0.2958092987537384 -0.05567999184131622 -0.4220377802848816 -0.31051260232925415 -0.05522124096751213 -0.3911406099796295 -0.32281729578971863 -0.05507104471325874 -0.3594639003276825 -0.33362504839897156 -0.055382248014211655 -0.3269016146659851 -0.343127965927124 -0.05634409561753273 -0.2933782637119293 -0.35088974237442017 -0.05785373970866203 -0.25879356265068054 -0.35565438866615295 -0.05953872948884964 -0.22324331104755402 -0.3570915758609772 -0.061049070209264755 -0.1872289478778839 -0.3563977777957916 -0.062307409942150116 -0.15120379626750946 -0.3553584814071655 -0.06338886171579361 -0.11519218236207962 -0.35557955503463745 -0.06429877877235413 -0.07903420180082321 -0.3584311604499817 -0.0649537593126297 -0.042742256075143814 -0.364817351102829 -0.022491734474897385 -0.5109670162200928 -0.2603934705257416 -0.020863616839051247 -0.48265451192855835 -0.2812097668647766 -0.01935729570686817 -0.45345816016197205 -0.29873737692832947 -0.017993811517953873 -0.4234146773815155 -0.31321701407432556 -0.016817821189761162 -0.3926258683204651 -0.32554349303245544 -0.015972012653946877 -0.3610992729663849 -0.33686238527297974 -0.01573209837079048 -0.32873377203941345 -0.34729501605033875 -0.016330037266016006 -0.295401006937027 -0.35589948296546936 -0.017829040065407753 -0.26096799969673157 -0.36174845695495605 -0.020033691078424454 -0.22546502947807312 -0.36481863260269165 -0.022419212386012077 -0.18929892778396606 -0.3656744062900543 -0.024549124762415886 -0.15298202633857727 -0.36572229862213135 -0.026291027665138245 -0.11659637093544006 -0.36688828468322754 -0.027617763727903366 -0.07998630404472351 -0.3707696795463562 -0.02843906730413437 -0.04321005567908287 -0.3785097599029541 0.013473575003445148 -0.511610746383667 -0.2622685432434082 0.015655405819416046 -0.48348158597946167 -0.2835124135017395 0.017722904682159424 -0.45445385575294495 -0.3011539578437805 0.019709313288331032 -0.42457273602485657 -0.3156832158565521 0.02156948298215866 -0.3939598798751831 -0.3284057080745697 0.023077191784977913 -0.36265528202056885 -0.3405265808105469 0.023894354701042175 -0.3305546045303345 -0.3518200218677521 0.023674532771110535 -0.29748842120170593 -0.3609553277492523 0.022223901003599167 -0.26326876878738403 -0.36704400181770325 0.019646821543574333 -0.22784140706062317 -0.3704693019390106 0.016502780839800835 -0.19152726233005524 -0.371797651052475 0.013547019101679325 -0.1548682451248169 -0.37225642800331116 0.01119619607925415 -0.11803583055734634 -0.373829185962677 0.00953433383256197 -0.0809500589966774 -0.37844765186309814 0.008655901998281479 -0.04368162527680397 -0.3870674967765808 -0.540607750415802 -0.4841037392616272 -0.12208067625761032 -0.5704408288002014 -0.4813253581523895 -0.10106674581766129 -0.6003379821777344 -0.47884809970855713 -0.08184366673231125 -0.6303292512893677 -0.47668886184692383 -0.06473342329263687 -0.6604310274124146 -0.4748404026031494 -0.049806393682956696 -0.6906086802482605 -0.4732127785682678 -0.03644467890262604 -0.7208784818649292 -0.47178375720977783 -0.024655815213918686 -0.7513329982757568 -0.4706474840641022 -0.015333383344113827 -0.7820249199867249 -0.4698565602302551 -0.008910857141017914 -0.8129178285598755 -0.46934929490089417 -0.004828257020562887 -0.8439475893974304 -0.46903446316719055 -0.002294014673680067 -0.8750726580619812 -0.4688543677330017 -0.000843262707348913 -0.9062670469284058 -0.4687744081020355 -0.00019781383161898702 -0.5417525768280029 -0.4539050757884979 -0.13373515009880066 -0.5713968276977539 -0.45091745257377625 -0.1107163354754448 -0.6010997891426086 -0.44824016094207764 -0.08925428986549377 -0.6309113502502441 -0.445913702249527 -0.07016932964324951 -0.6608507037162781 -0.4439265727996826 -0.05362329259514809 -0.6908928155899048 -0.44218581914901733 -0.03898337110877037 -0.7210583686828613 -0.44067132472991943 -0.026190288364887238 -0.7514364123344421 -0.4394753575325012 -0.016154121607542038 -0.7820757031440735 -0.43864575028419495 -0.009289312176406384 -0.8129361271858215 -0.4381142258644104 -0.004961343016475439 -0.8439517617225647 -0.437788188457489 -0.002326113870367408 -0.8750728368759155 -0.4376046061515808 -0.0008450355380773544 -0.906266987323761 -0.43752431869506836 -0.0001971398014575243 -0.9706065654754639 -0.4375 -0.010560071095824242 -1.0 -0.4375 -0.17774981260299683 -0.9375011324882507 -0.4062516391277313 -1.3234289326646831e-05 -0.9580279588699341 -0.40625056624412537 -4.540913778328104e-06 -0.5430188179016113 -0.4235343635082245 -0.1443561464548111 -0.5724844336509705 -0.4203892946243286 -0.12000985443592072 -0.6019846200942993 -0.4175444543361664 -0.09661134332418442 -0.6315931081771851 -0.41507065296173096 -0.07556359469890594 -0.6613330841064453 -0.412940114736557 -0.05720920488238335 -0.6912012100219727 -0.41107675433158875 -0.041089486330747604 -0.7212361097335815 -0.40947890281677246 -0.02724657766520977 -0.7515372037887573 -0.40824979543685913 -0.016654012724757195 -0.7821251749992371 -0.40740251541137695 -0.009465612471103668 -0.8129515051841736 -0.4068591594696045 -0.0049568116664886475 -0.8439486622810364 -0.406526654958725 -0.002241534646600485 -0.8750675320625305 -0.4063463509082794 -0.0007791638490743935 -0.9062648415565491 -0.4062712490558624 -0.00017215161642525345 -0.9706065654754639 -0.40625 -0.010560071095824242 -1.0 -0.40625 -0.17774981260299683 -0.9375006556510925 -0.37500089406967163 -7.355607976933243e-06 -0.9580279588699341 -0.3750002980232239 -2.523798002584954e-06 -0.5443027019500732 -0.3928622007369995 -0.15278279781341553 -0.5736309289932251 -0.3896411955356598 -0.1278628557920456 -0.6029719710350037 -0.38671553134918213 -0.10339406132698059 -0.6323868036270142 -0.38414695858955383 -0.08076950162649155 -0.6619024276733398 -0.381887823343277 -0.06060006096959114 -0.6915546655654907 -0.3798929452896118 -0.04282436519861221 -0.721440851688385 -0.3782258629798889 -0.027985181659460068 -0.7516562938690186 -0.37698474526405334 -0.01695866324007511 -0.7821913957595825 -0.3761419653892517 -0.009578675031661987 -0.8129749894142151 -0.375592976808548 -0.0049000028520822525 -0.8439483642578125 -0.3752584755420685 -0.002118234056979418 -0.8750603795051575 -0.3750830292701721 -0.0006750054308213294 -0.906261146068573 -0.3750160038471222 -0.0001295507827308029 -0.9706065654754639 -0.375 -0.010560071095824242 -1.0 -0.375 -0.17774981260299683 -0.9375001788139343 -0.3437502682209015 -2.253752882097615e-06 -0.9580279588699341 -0.34375008940696716 -7.732780886726687e-07 -0.5455626845359802 -0.36179906129837036 -0.15856100618839264 -0.57478928565979 -0.35859760642051697 -0.13362427055835724 -0.6040141582489014 -0.3556913137435913 -0.10890939831733704 -0.6332692503929138 -0.35310181975364685 -0.0853552371263504 -0.6625615954399109 -0.3507518768310547 -0.06362898647785187 -0.6919801831245422 -0.3486482799053192 -0.04430041089653969 -0.721702516078949 -0.3469384014606476 -0.028624428436160088 -0.7518240213394165 -0.34570789337158203 -0.017303835600614548 -0.7822932004928589 -0.34487733244895935 -0.009757289662957191 -0.8130229711532593 -0.34432870149612427 -0.004915849771350622 -0.8439589142799377 -0.3439907729625702 -0.002021409571170807 -0.8750575184822083 -0.3438202738761902 -0.0005838192882947624 -0.9062576293945312 -0.3437604606151581 -8.542948489775881e-05 -0.9706065654754639 -0.34375 -0.010560071095824242 -1.0 -0.34375 -0.17774981260299683 -0.9375 -0.3125 0.0 -0.9580279588699341 -0.3125 0.0 -0.5467615723609924 -0.3302893340587616 -0.1614813208580017 -0.5759474635124207 -0.3272320032119751 -0.13719145953655243 -0.6050903797149658 -0.3244331479072571 -0.11280380189418793 -0.6342102289199829 -0.32188570499420166 -0.08885324001312256 -0.6633046865463257 -0.3195040822029114 -0.06606883555650711 -0.6925114393234253 -0.3173641860485077 -0.04572724923491478 -0.7220655083656311 -0.3156578540802002 -0.029508190229535103 -0.7520657181739807 -0.3144459128379822 -0.017911138013005257 -0.7824481129646301 -0.31362488865852356 -0.010148418135941029 -0.8131085634231567 -0.31307560205459595 -0.00510172126814723 -0.8439930081367493 -0.3127329349517822 -0.0020461834501475096 -0.8750648498535156 -0.3125636875629425 -0.0005552658112719655 -0.9062574505805969 -0.3125075399875641 -6.538700108649209e-05 -0.9706065654754639 -0.3125 -0.010560071095824242 -1.0 -0.3125 -0.17774981260299683 -0.9375 -0.28125 -1.2757706713273365e-07 -0.9580279588699341 -0.28125 -4.377231732632936e-08 -0.547879159450531 -0.2983243465423584 -0.16156908869743347 -0.5770658850669861 -0.29551517963409424 -0.13841554522514343 -0.6061614155769348 -0.29289713501930237 -0.11474568396806717 -0.6351854205131531 -0.2904558777809143 -0.09092352539300919 -0.6641482710838318 -0.2881486713886261 -0.06798101216554642 -0.693194568157196 -0.286079078912735 -0.047467462718486786 -0.7225717306137085 -0.28441929817199707 -0.030983220785856247 -0.7524130940437317 -0.28322145342826843 -0.019013231620192528 -0.7826673984527588 -0.2823959290981293 -0.010857492685317993 -0.8132399916648865 -0.2818402945995331 -0.00552627956494689 -0.8440601825714111 -0.28149232268333435 -0.00226994720287621 -0.8750903606414795 -0.28131845593452454 -0.0006453113164752722 -0.9062626957893372 -0.28125911951065063 -8.682974294060841e-05 -0.9706065654754639 -0.28125 -0.010560071095824242 -1.0 -0.28125 -0.17774981260299683 -0.9375011324882507 -0.25000065565109253 -6.646152996836463e-06 -0.9580279588699341 -0.2500002384185791 -2.280410399180255e-06 -0.5489682555198669 -0.26598310470581055 -0.15939441323280334 -0.5781567096710205 -0.26347869634628296 -0.13753148913383484 -0.6072136759757996 -0.2610878348350525 -0.11474508792161942 -0.6361950039863586 -0.25883424282073975 -0.09172139316797256 -0.6651192307472229 -0.25673460960388184 -0.06979016959667206 -0.6940757632255554 -0.25484055280685425 -0.05000324174761772 -0.7232590913772583 -0.25324419140815735 -0.03333340585231781 -0.7528835535049438 -0.2520409822463989 -0.02072679065167904 -0.7829661965370178 -0.2511945366859436 -0.011972440406680107 -0.8134222030639648 -0.2506273090839386 -0.006244546268135309 -0.8441643118858337 -0.25027233362197876 -0.002729480154812336 -0.8751380443572998 -0.25008660554885864 -0.0008816075278446078 -0.9062768816947937 -0.2500161826610565 -0.00016658198728691787 -0.9706065654754639 -0.25 -0.010560071095824242 -1.0 -0.25 -0.17774981260299683 -0.9375044107437134 -0.2187523990869522 -2.6037861971417442e-05 -0.9580279588699341 -0.21875081956386566 -8.934975994634442e-06 -0.5500600934028625 -0.23339185118675232 -0.1556590348482132 -0.5792484283447266 -0.23122522234916687 -0.13516655564308167 -0.60830157995224 -0.2291271835565567 -0.11368541419506073 -0.6372978091239929 -0.22716452181339264 -0.09230172634124756 -0.6662474274635315 -0.22535042464733124 -0.07214854657649994 -0.6951456069946289 -0.2236601561307907 -0.05343136191368103 -0.7241297960281372 -0.22213098406791687 -0.03660600259900093 -0.7534937858581543 -0.22090555727481842 -0.023147055879235268 -0.7833609580993652 -0.2200271189212799 -0.013603497296571732 -0.8136683702468872 -0.21944163739681244 -0.007342933677136898 -0.8443062901496887 -0.21907150745391846 -0.0034303157590329647 -0.875207781791687 -0.218866765499115 -0.001258546020835638 -0.9063012003898621 -0.21877814829349518 -0.00030626903753727674 -0.9706065654754639 -0.21875 -0.010560071095824242 -1.0 -0.21875 -0.17774981260299683 -0.937511682510376 -0.18750567734241486 -6.691437738481909e-05 -0.9580280184745789 -0.1875019520521164 -2.29671841225354e-05 -0.5512603521347046 -0.20077665150165558 -0.1519690454006195 -0.5804467797279358 -0.19897183775901794 -0.13291972875595093 -0.609516441822052 -0.19721274077892303 -0.1130785197019577 -0.6385518908500671 -0.19557341933250427 -0.09370425343513489 -0.6675102114677429 -0.1940295249223709 -0.07529646158218384 -0.6963330507278442 -0.19251511991024017 -0.05746953561902046 -0.72513347864151 -0.1910516321659088 -0.040527503937482834 -0.7542324066162109 -0.18980440497398376 -0.026218073442578316 -0.7838516235351562 -0.18888972699642181 -0.01576053723692894 -0.8139747381210327 -0.18827763199806213 -0.00879538431763649 -0.8444875478744507 -0.18788529932498932 -0.0043615964241325855 -0.8752975463867188 -0.1876543015241623 -0.0017493863124400377 -0.9063345193862915 -0.18754304945468903 -0.0004924236563965678 -0.9706065654754639 -0.1875 -0.010560071095824242 -1.0 -0.1875 -0.17774981260299683 -0.9375227689743042 -0.15626023709774017 -0.00012734408664982766 -0.9580287337303162 -0.1562536656856537 -4.5870267058489844e-05 -0.5526838302612305 -0.1683768779039383 -0.15012133121490479 -0.5818755626678467 -0.1669035404920578 -0.13237561285495758 -0.6109439134597778 -0.16545723378658295 -0.11407655477523804 -0.639954686164856 -0.16408632695674896 -0.0963071808218956 -0.6688613891601562 -0.1627504676580429 -0.07912818342447281 -0.6975826025009155 -0.16137202084064484 -0.06187238544225693 -0.7261982560157776 -0.15996700525283813 -0.044740237295627594 -0.75505131483078 -0.15871958434581757 -0.029725391417741776 -0.7844240665435791 -0.1577756702899933 -0.018380779772996902 -0.814339816570282 -0.15712875127792358 -0.01057201623916626 -0.8447005748748779 -0.15670400857925415 -0.005452321842312813 -0.8754048943519592 -0.15644313395023346 -0.0023181098513305187 -0.9063764810562134 -0.15630945563316345 -0.000719008210580796 -0.9706072211265564 -0.1562502235174179 -0.010563341900706291 -1.0 -0.15625 -0.17774981260299683 -0.9375370144844055 -0.1250154972076416 -0.00020317365124356002 -0.9580307006835938 -0.12500593066215515 -7.85712618380785e-05 -0.554123044013977 -0.136206716299057 -0.14954325556755066 -0.5833572149276733 -0.1350088268518448 -0.13308404386043549 -0.6124845743179321 -0.13383273780345917 -0.11652608215808868 -0.641478419303894 -0.13267531991004944 -0.10013718903064728 -0.6702706217765808 -0.13147974014282227 -0.08354776352643967 -0.6988347768783569 -0.1301940679550171 -0.06638051569461823 -0.7272779941558838 -0.12885721027851105 -0.04908935725688934 -0.7559052109718323 -0.1276296228170395 -0.03347264975309372 -0.7850297093391418 -0.1266624480485916 -0.0212000273168087 -0.8147332072257996 -0.1259777694940567 -0.012481633573770523 -0.8449326753616333 -0.12551766633987427 -0.0066085271537303925 -0.8755255341529846 -0.12522900104522705 -0.0029305112548172474 -0.9064261317253113 -0.1250758171081543 -0.0009772112825885415 -0.9706090688705444 -0.12500087916851044 -0.010573456063866615 -1.0 -0.125 -0.17774981260299683 -0.9375545382499695 -0.09377100318670273 -0.00029378512408584356 -0.958033561706543 -0.09375845640897751 -0.00011908759188372642 -0.5552726984024048 -0.10416103899478912 -0.14877721667289734 -0.5845856666564941 -0.10319332778453827 -0.13382971286773682 -0.613837718963623 -0.10224369913339615 -0.1191607415676117 -0.6429033279418945 -0.10126197338104248 -0.10420893877744675 -0.6716444492340088 -0.10017917305231094 -0.0881994292140007 -0.7000558376312256 -0.0989692360162735 -0.07093049585819244 -0.7283236384391785 -0.09770097583532333 -0.053392890840768814 -0.7567383646965027 -0.0965065211057663 -0.03719040006399155 -0.7856243848800659 -0.09552585333585739 -0.023978054523468018 -0.8151240348815918 -0.09480967372655869 -0.01434022095054388 -0.8451659679412842 -0.09431783109903336 -0.007721369154751301 -0.875653088092804 -0.09400924295186996 -0.0035518305376172066 -0.9064816832542419 -0.09384069591760635 -0.001254962058737874 -0.9706116914749146 -0.09375178068876266 -0.010587701573967934 -1.0 -0.09375 -0.17774981260299683 -0.9375737905502319 -0.0625259056687355 -0.00038971775211393833 -0.9580370187759399 -0.06251080334186554 -0.00016290435451082885 -0.5560945868492126 -0.07215343415737152 -0.1479097455739975 -0.5854853391647339 -0.07138591259717941 -0.1344822645187378 -0.6148484349250793 -0.07061752676963806 -0.12134116142988205 -0.6440022587776184 -0.06977695226669312 -0.1075173169374466 -0.6727858185768127 -0.068797767162323 -0.09218145906925201 -0.7011495232582092 -0.06767269968986511 -0.07514262944459915 -0.7292811870574951 -0.06647918373346329 -0.057424258440732956 -0.7574989795684814 -0.06532374024391174 -0.04060260206460953 -0.7861651182174683 -0.06434290111064911 -0.02647588774561882 -0.8154739737510681 -0.06360718607902527 -0.01594485528767109 -0.8453826904296875 -0.06310112029314041 -0.008714498952031136 -0.8757732510566711 -0.06278029829263687 -0.004111726302653551 -0.9065386652946472 -0.06260273605585098 -0.0015292976750060916 -0.9706149101257324 -0.06250271946191788 -0.010604147799313068 -1.0 -0.0625 -0.17774981260299683 -0.9375921487808228 -0.03127939626574516 -0.00047787465155124664 -0.9580411314964294 -0.03126262500882149 -0.00020582832803484052 -0.5567046999931335 -0.0401451513171196 -0.14788098633289337 -0.586138129234314 -0.039545152336359024 -0.1354852020740509 -0.615536093711853 -0.03890751674771309 -0.12307163327932358 -0.6447361707687378 -0.0381716825067997 -0.1098070964217186 -0.6735779047012329 -0.03729448840022087 -0.09497596323490143 -0.7019878029823303 -0.03628018870949745 -0.07844898849725723 -0.7300636172294617 -0.035170990973711014 -0.06076081097126007 -0.7581295371055603 -0.034063126891851425 -0.043412331491708755 -0.7866089940071106 -0.03309905529022217 -0.028475316241383553 -0.8157588839530945 -0.03236660733819008 -0.017209427431225777 -0.8455573320388794 -0.031862132251262665 -0.009481392800807953 -0.8758752942085266 -0.03154109790921211 -0.0045653884299099445 -0.9065898656845093 -0.03136051818728447 -0.0017667361535131931 -0.970618724822998 -0.03125360608100891 -0.010623282752931118 -1.0 -0.03125001862645149 -0.1777500957250595 0.5000021457672119 -0.9375022649765015 -3.375436062924564e-05 0.5000007152557373 -0.9580279588699341 -1.1582119441300165e-05 0.5312502980232239 -0.9580279588699341 -4.8871352191781625e-06 0.5312508940696716 -0.9375009536743164 -1.4243416444514878e-05 0.508495569229126 -0.5090171694755554 -0.07422824949026108 0.479585736989975 -0.5121394395828247 -0.09373993426561356 0.4770022928714752 -0.5409284234046936 -0.07744769752025604 0.5063060522079468 -0.5383540987968445 -0.060689546167850494 0.47487136721611023 -0.5699272751808167 -0.0627092495560646 0.5046421885490417 -0.567951500415802 -0.04925169795751572 0.4732251465320587 -0.5993000268936157 -0.05024474859237671 0.5034197568893433 -0.5978516340255737 -0.03985806554555893 0.4719904959201813 -0.6290687918663025 -0.039993662387132645 0.5025112628936768 -0.6280325055122375 -0.03205655515193939 0.4710618257522583 -0.6591785550117493 -0.031456440687179565 0.5018153190612793 -0.6584469079971313 -0.02532876841723919 0.47035107016563416 -0.6895471811294556 -0.024004271253943443 0.5012692213058472 -0.6890388131141663 -0.01922522485256195 0.46981045603752136 -0.7201184630393982 -0.017297664657235146 0.5008465051651001 -0.7197742462158203 -0.01365411002188921 0.469416081905365 -0.7508636116981506 -0.011533223092556 0.5005396008491516 -0.7506469488143921 -0.009023998863995075 0.46915507316589355 -0.7817692756652832 -0.00718329893425107 0.5003361105918884 -0.7816441655158997 -0.005633016582578421 0.4689905345439911 -0.8127985596656799 -0.004202167969197035 0.5002008080482483 -0.8127284049987793 -0.003297960152849555 0.4688819646835327 -0.8439069390296936 -0.002236609812825918 0.5001081824302673 -0.8438693284988403 -0.0017393395537510514 0.46881020069122314 -0.8750680685043335 -0.000985322636552155 0.5000469088554382 -0.8750503659248352 -0.0007404556963592768 0.46876996755599976 -0.9062714576721191 -0.00031567513360641897 0.5000143647193909 -0.9062653183937073 -0.00022553499729838222 0.4687536656856537 -0.9375038743019104 -5.746384704252705e-05 0.5 -0.9706065654754639 -0.010560071095824242 0.5 -1.0 -0.17774981260299683 0.53125 -1.0 -0.17774981260299683 0.53125 -0.9706065654754639 -0.010560071095824242 0.9375 -0.5 0.0 0.9580279588699341 -0.5 0.0 0.9580279588699341 -0.46875 0.0 0.9375 -0.46875 0.0 0.4510130286216736 -0.5157290101051331 -0.11509465426206589 0.4481044411659241 -0.5440571308135986 -0.09688221663236618 0.44546765089035034 -0.5724358558654785 -0.07900567352771759 0.4432920813560486 -0.6011706590652466 -0.06298323720693588 0.44162517786026 -0.6303979158401489 -0.04954387620091438 0.4403926134109497 -0.6601004600524902 -0.0385589674115181 0.4394766390323639 -0.6901747584342957 -0.029320478439331055 0.4387904107570648 -0.7205291986465454 -0.021211108192801476 0.4382955729961395 -0.7511181831359863 -0.014233607798814774 0.4379722476005554 -0.7819207906723022 -0.008906286209821701 0.4377751052379608 -0.8128846287727356 -0.005229644477367401 0.43765199184417725 -0.8439541459083557 -0.0028129403945058584 0.43757134675979614 -0.8750905394554138 -0.0012669196585193276 0.43752482533454895 -0.9062792062759399 -0.00041740608867257833 0.43750500679016113 -0.9375053644180298 -7.892165012890473e-05 0.4687500596046448 -0.9706066250801086 -0.010560824535787106 0.4375001788139343 -0.9706067442893982 -0.010562789626419544 0.4375 -1.0 -0.17774981260299683 0.46875 -1.0 -0.17774981260299683 0.4062559902667999 -0.9375075101852417 -0.00010549141734372824 0.4062522351741791 -0.9580283164978027 -3.8926464185351506e-05 0.43750184774398804 -0.9580281972885132 -2.8870626920252107e-05 0.42269229888916016 -0.5196347236633301 -0.13750945031642914 0.41949576139450073 -0.547574520111084 -0.11781083792448044 0.4163813591003418 -0.5753968954086304 -0.09733884036540985 0.413620263338089 -0.6034618020057678 -0.07782458513975143 0.4114362597465515 -0.6320618391036987 -0.060859229415655136 0.4098263382911682 -0.6612601280212402 -0.046918392181396484 0.4086533188819885 -0.6909539103507996 -0.03536126762628555 0.4077903926372528 -0.7210290431976318 -0.02547946386039257 0.4071758985519409 -0.7514176964759827 -0.017079217359423637 0.40678292512893677 -0.7820916175842285 -0.01068339217454195 0.4065530002117157 -0.8129846453666687 -0.006331147626042366 0.4064156711101532 -0.8440102934837341 -0.003448176896199584 0.40632912516593933 -0.8751193284988403 -0.0015966154169291258 0.40627822279930115 -0.9062900543212891 -0.000543721835128963 0.4062502384185791 -0.9706068634986877 -0.010564213618636131 0.40625 -1.0 -0.17774981260299683 0.37500643730163574 -0.9375116229057312 -0.00014895328786224127 0.375002384185791 -0.9580284953117371 -5.4871434258529916e-05 0.3943530023097992 -0.5235317945480347 -0.15924133360385895 0.39093533158302307 -0.5511720776557922 -0.13826285302639008 0.38741806149482727 -0.578528642654419 -0.11567262560129166 0.38410520553588867 -0.6059881448745728 -0.09321649372577667 0.38137704133987427 -0.6339668035507202 -0.07303816825151443 0.3793452978134155 -0.6626278162002563 -0.05615364387631416 0.37787529826164246 -0.6918945908546448 -0.04213066026568413 0.37680670619010925 -0.7216338515281677 -0.03015751950442791 0.37605687975883484 -0.7517757415771484 -0.02009672112762928 0.37558695673942566 -0.7822897434234619 -0.012522448785603046 0.37532246112823486 -0.8130936026573181 -0.007432746700942516 0.37517276406288147 -0.8440741300582886 -0.004123569466173649 0.37508270144462585 -0.8751543760299683 -0.001968841766938567 0.3750297725200653 -0.9063050746917725 -0.0007040339987725019 0.3750002384185791 -0.9706069827079773 -0.010565770789980888 0.375 -1.0 -0.17774981260299683 0.3437563478946686 -0.937518298625946 -0.00021633024152833968 0.343752384185791 -0.9580296277999878 -8.530136256013066e-05 0.36577990651130676 -0.5272302031517029 -0.17908038198947906 0.3621697425842285 -0.5546155571937561 -0.15681207180023193 0.3583473861217499 -0.581597626209259 -0.1324799507856369 0.35457462072372437 -0.6085302829742432 -0.10758811980485916 0.3513384163379669 -0.6359260082244873 -0.0846450924873352 0.3488853871822357 -0.6640797257423401 -0.06522060185670853 0.3471062481403351 -0.6929305195808411 -0.04900467395782471 0.3458216190338135 -0.7223293781280518 -0.03507193922996521 0.34493204951286316 -0.7522019743919373 -0.023320738226175308 0.3443831205368042 -0.7825254201889038 -0.014461854472756386 0.3440838158130646 -0.8132174015045166 -0.008554575964808464 0.3439232110977173 -0.8441404700279236 -0.004775316454470158 0.3438318967819214 -0.8751932382583618 -0.0023580382112413645 0.34377941489219666 -0.9063243269920349 -0.0008974309312179685 0.3437502980232239 -0.970608115196228 -0.010576867498457432 0.34375 -1.0 -0.17774981260299683 0.3125060200691223 -0.9375276565551758 -0.0003095726715400815 0.31250232458114624 -0.9580322504043579 -0.0001334834669250995 0.33688515424728394 -0.530716061592102 -0.19695943593978882 0.3330817222595215 -0.5578648447990417 -0.17338548600673676 0.32899945974349976 -0.5845056176185608 -0.1474081128835678 0.3248777687549591 -0.6109856367111206 -0.12047380208969116 0.32121747732162476 -0.6378556489944458 -0.09515531361103058 0.3183629810810089 -0.6655005812644958 -0.07333154231309891 0.3162890374660492 -0.6939592361450195 -0.05518678203225136 0.3148033022880554 -0.7230567932128906 -0.03971289098262787 0.31378814578056335 -0.7526830434799194 -0.026623204350471497 0.31316888332366943 -0.7828096151351929 -0.016586128622293472 0.31283777952194214 -0.8133688569068909 -0.009800172410905361 0.312666654586792 -0.8442168831825256 -0.00546672148630023 0.3125762939453125 -0.8752341866493225 -0.0027495925314724445 0.31252747774124146 -0.906346321105957 -0.001110785873606801 0.31250035762786865 -0.9706106185913086 -0.010601449757814407 0.3125 -1.0 -0.17774981260299683 0.2812555730342865 -0.9375388026237488 -0.00042001294787041843 0.28125235438346863 -0.9580360651016235 -0.00019590507145039737 0.3075285851955414 -0.5338095426559448 -0.2123013734817505 0.30356186628341675 -0.5608125329017639 -0.18776975572109222 0.2992754876613617 -0.5871970653533936 -0.1604747474193573 0.2948906123638153 -0.6132959127426147 -0.13182148337364197 0.2909146547317505 -0.6397029161453247 -0.10447949171066284 0.28771233558654785 -0.6668558716773987 -0.08037827163934708 0.2853681147098541 -0.6949207186698914 -0.06033416837453842 0.2837139666080475 -0.7237515449523926 -0.04363565891981125 0.2826087176799774 -0.7531840205192566 -0.029762929305434227 0.28194037079811096 -0.7831386923789978 -0.018893837928771973 0.2815819978713989 -0.8135544657707214 -0.011232485994696617 0.2814022898674011 -0.8443105816841125 -0.006260894704610109 0.2813152074813843 -0.8752803206443787 -0.0031745326705276966 0.2812735140323639 -0.9063710570335388 -0.0013476901222020388 0.28125062584877014 -0.9706143736839294 -0.010638698935508728 0.2812500298023224 -1.000000238418579 -0.17775264382362366 0.25000447034835815 -0.9375522136688232 -0.000557621126063168 0.2500022053718567 -0.9580405950546265 -0.00027157325530424714 0.2775197923183441 -0.5362316966056824 -0.22416692972183228 0.27342861890792847 -0.5631808042526245 -0.19906963407993317 0.26903173327445984 -0.589482307434082 -0.17119689285755157 0.2645201086997986 -0.6153903603553772 -0.14167644083499908 0.26033714413642883 -0.6414340734481812 -0.11271968483924866 0.25686565041542053 -0.6681296825408936 -0.08647933602333069 0.2542981207370758 -0.6958072781562805 -0.06460385024547577 0.2525242567062378 -0.7243890762329102 -0.046884115785360336 0.2513813078403473 -0.7536773681640625 -0.03265124559402466 0.2506904602050781 -0.783495306968689 -0.021295471116900444 0.2503148019313812 -0.8137717247009277 -0.012852178886532784 0.25012895464897156 -0.8444266319274902 -0.007209840230643749 0.25004836916923523 -0.8753393292427063 -0.0037090573459863663 0.25001639127731323 -0.9064010381698608 -0.0016439113533124328 0.2500009536743164 -0.9706186652183533 -0.010681882500648499 0.2500000596046448 -1.0000008344650269 -0.17775830626487732 0.21875131130218506 -0.9375699758529663 -0.0007450643461197615 0.21875092387199402 -0.9580464363098145 -0.00037206182605586946 0.24673612415790558 -0.5379066467285156 -0.23237521946430206 0.24255308508872986 -0.5648329257965088 -0.20694749057292938 0.23811548948287964 -0.591162919998169 -0.1790286898612976 0.23362791538238525 -0.6171002984046936 -0.14957642555236816 0.2293958216905594 -0.6429767608642578 -0.11981502920389175 0.2257622927427292 -0.6693129539489746 -0.09191390872001648 0.2230515331029892 -0.6966445446014404 -0.06850739568471909 0.2212318480014801 -0.7250135540962219 -0.050085414201021194 0.2200952023267746 -0.7541710138320923 -0.03556463122367859 0.219410240650177 -0.7838631272315979 -0.023757755756378174 0.21903188526630402 -0.8140112161636353 -0.014621353708207607 0.21884705126285553 -0.8445649743080139 -0.00833866000175476 0.21877558529376984 -0.8754134774208069 -0.0043868254870176315 0.21875543892383575 -0.9064406156539917 -0.002043395070359111 0.2187507003545761 -0.9706240296363831 -0.010736744850873947 0.21875011920928955 -1.0000014305114746 -0.17776477336883545 0.18749485909938812 -0.9375934600830078 -0.0010006821248680353 0.18749748170375824 -0.9580554366111755 -0.0005154911195859313 0.21511687338352203 -0.5389383435249329 -0.23740290105342865 0.21087968349456787 -0.5658406615257263 -0.2117992490530014 0.2064836323261261 -0.5922386050224304 -0.18409448862075806 0.20213337242603302 -0.6182998418807983 -0.15507997572422028 0.19799937307834625 -0.6441894173622131 -0.12527833878993988 0.19436874985694885 -0.6703571677207947 -0.09672107547521591 0.19164326786994934 -0.6974701881408691 -0.07266346365213394 0.18984520435333252 -0.7256642580032349 -0.05380997806787491 0.18874363601207733 -0.7546799778938293 -0.03884470462799072 0.1880882978439331 -0.7842438220977783 -0.026436474174261093 0.187727153301239 -0.8142657279968262 -0.01654832623898983 0.18755558133125305 -0.8447181582450867 -0.00960362609475851 0.18749767541885376 -0.8755038380622864 -0.005224799737334251 0.18749001622200012 -0.9064903855323792 -0.0025526457466185093 0.18749891221523285 -0.9706321358680725 -0.010821260511875153 0.1874999701976776 -1.0000022649765015 -0.17777475714683533 0.15623430907726288 -0.9376225471496582 -0.0013210175093263388 0.15624108910560608 -0.9580687284469604 -0.0007092098239809275 0.18262232840061188 -0.5394558310508728 -0.23981137573719025 0.17842906713485718 -0.5663305521011353 -0.2140592634677887 0.1741814911365509 -0.5927861928939819 -0.1865415722131729 0.1700555384159088 -0.61896812915802 -0.15795575082302094 0.16614755988121033 -0.6449752449989319 -0.12871670722961426 0.16270434856414795 -0.6711922287940979 -0.1007656380534172 0.16009582579135895 -0.6982403993606567 -0.07696881890296936 0.15837563574314117 -0.7263162732124329 -0.05799217149615288 0.15733075141906738 -0.7552023530006409 -0.04256225749850273 0.1567203551530838 -0.7846340537071228 -0.029413040727376938 0.1563938558101654 -0.8145328164100647 -0.018697071820497513 0.15625129640102386 -0.8448861241340637 -0.011053779162466526 0.15621423721313477 -0.8756036162376404 -0.006170079577714205 0.1562202125787735 -0.9065475463867188 -0.003146604634821415 0.1562449038028717 -0.9706441164016724 -0.010948428884148598 0.1562490314245224 -1.0000050067901611 -0.17780308425426483 0.12497013062238693 -0.9376556277275085 -0.001684221439063549 0.12498188763856888 -0.958086371421814 -0.0009470622753724456 0.14932851493358612 -0.5396095514297485 -0.24037764966487885 0.14532947540283203 -0.5664641857147217 -0.21447984874248505 0.1413370668888092 -0.5929485559463501 -0.1870734989643097 0.13751304149627686 -0.6192273497581482 -0.15898318588733673 0.13393573462963104 -0.6454034447669983 -0.13076888024806976 0.13080860674381256 -0.6717842817306519 -0.10399183630943298 0.12842389941215515 -0.6988713145256042 -0.08083396404981613 0.12683320045471191 -0.7268877625465393 -0.061945363879203796 0.12586170434951782 -0.7556745409965515 -0.04619294032454491 0.12530790269374847 -0.7850044965744019 -0.03246280923485756 0.125032439827919 -0.8148031234741211 -0.021044261753559113 0.12493142485618591 -0.8450660109519958 -0.012707357294857502 0.12492290884256363 -0.8757113218307495 -0.007226916030049324 0.12494539469480515 -0.9066095948219299 -0.0037993406876921654 0.12498858571052551 -0.9706602096557617 -0.011120331473648548 0.12499701231718063 -1.0000100135803223 -0.17785854637622833 0.09370297193527222 -0.9376906752586365 -0.002072174334898591 0.0937204360961914 -0.9581074714660645 -0.0012163512874394655 0.11543994396924973 -0.5395914316177368 -0.24029996991157532 0.11175281554460526 -0.5663917064666748 -0.2140294909477234 0.10809401422739029 -0.592869758605957 -0.18662987649440765 0.10463418811559677 -0.6192384958267212 -0.15919095277786255 0.10145634412765503 -0.6456032991409302 -0.13223329186439514 0.09872414171695709 -0.6721930503845215 -0.10679169744253159 0.09663140773773193 -0.6993584036827087 -0.08422589302062988 0.0952148512005806 -0.7273228764533997 -0.06519410014152527 0.09434791654348373 -0.7560354471206665 -0.04912905395030975 0.09386583417654037 -0.7853060960769653 -0.0351407453417778 0.09364987909793854 -0.8150531053543091 -0.0233955979347229 0.09359696507453918 -0.845245897769928 -0.014471742324531078 0.09362248331308365 -0.8758227229118347 -0.008367032743990421 0.09366573393344879 -0.9066706299781799 -0.004452558234333992 0.09373045712709427 -0.970679521560669 -0.011327119544148445 0.09374396502971649 -1.000017523765564 -0.17794165015220642 0.062434546649456024 -0.9377244710922241 -0.0024473571684211493 0.0624580942094326 -0.9581295847892761 -0.0014892608160153031 0.0810970887541771 -0.5394759774208069 -0.2397868037223816 0.07778529822826385 -0.5661777257919312 -0.21288378536701202 0.07453907281160355 -0.592641294002533 -0.1855042427778244 0.0715164840221405 -0.6190910935401917 -0.15877790749073029 0.06879539042711258 -0.645641028881073 -0.133130744099617 0.06650064885616302 -0.6724414229393005 -0.10902711004018784 0.0647246465086937 -0.6996962428092957 -0.08701635152101517 0.0635174810886383 -0.7276267409324646 -0.06775204837322235 0.06279051303863525 -0.7562692761421204 -0.051236893981695175 0.06240618973970413 -0.7855138778686523 -0.03715389594435692 0.062256406992673874 -0.8152516484260559 -0.025431634858250618 0.062252700328826904 -0.8454076647758484 -0.016170429065823555 0.062313925474882126 -0.8759281039237976 -0.00949496403336525 0.06238175928592682 -0.9067298769950867 -0.005100504960864782 0.06247163191437721 -0.9706997871398926 -0.011546090245246887 0.062490276992321014 -1.0000267028808594 -0.17804402112960815 0.031166424974799156 -0.9377549290657043 -0.002788530196994543 0.031196091324090958 -0.9581506252288818 -0.0017437066417187452 0.04632522538304329 -0.5392487049102783 -0.2387511283159256 0.043469566851854324 -0.5659264922142029 -0.21172267198562622 0.04072539135813713 -0.5924146771430969 -0.1846013367176056 0.03822755441069603 -0.6189385652542114 -0.1584656834602356 0.036032553762197495 -0.6456182599067688 -0.13371333479881287 0.03417607769370079 -0.6725327372550964 -0.11036860197782516 0.0327325277030468 -0.6998643279075623 -0.08883450925350189 0.031754009425640106 -0.7277969121932983 -0.06951790302991867 0.031193431466817856 -0.7564022541046143 -0.05267440155148506 0.03093232773244381 -0.7856410145759583 -0.03856612741947174 0.030859841033816338 -0.8153893351554871 -0.026984436437487602 0.030906403437256813 -0.8455314040184021 -0.017571868374943733 0.03100256435573101 -0.8760142922401428 -0.010468514636158943 0.03109661675989628 -0.9067815542221069 -0.005680514499545097 0.03121315687894821 -0.9707190990447998 -0.011754732578992844 0.031236590817570686 -1.0000362396240234 -0.1781495064496994 0.9375 -0.53125 0.0 0.9375 -0.5625 0.0 0.9580279588699341 -0.5625 0.0 0.9580279588699341 -0.53125 0.0 0.5360210537910461 -0.5363504886627197 -0.04696515202522278 0.5378106832504272 -0.5064737796783447 -0.05748281627893448 0.5660738348960876 -0.5348314046859741 -0.03579286113381386 0.5675278306007385 -0.5045226216316223 -0.043782081454992294 0.5963617563247681 -0.5336776971817017 -0.02636110596358776 0.5975492000579834 -0.5030632615089417 -0.032440561801195145 0.6268064379692078 -0.5327898859977722 -0.018090009689331055 0.6277685165405273 -0.5019633769989014 -0.022664202377200127 0.6574019193649292 -0.5321407318115234 -0.011330390349030495 0.6581487059593201 -0.5011512041091919 -0.01455426774919033 0.6881743669509888 -0.5317243933677673 -0.006583062931895256 0.6887170076370239 -0.5006147027015686 -0.008672868832945824 0.7191088199615479 -0.5314887762069702 -0.0035826796665787697 0.7194676399230957 -0.5003032088279724 -0.004827240016311407 0.7501673698425293 -0.5313640236854553 -0.001773447380401194 0.7503756284713745 -0.5001397132873535 -0.0024438779801130295 0.7813107371330261 -0.5312951803207397 -0.00069608842022717 0.7814098596572876 -0.500055730342865 -0.0010100076906383038 0.8125135898590088 -0.5312619209289551 -0.00017903276602737606 0.8125462532043457 -0.5000155568122864 -0.00028358257259242237 0.8437511920928955 -0.5312512516975403 -1.8302212993148714e-05 0.8437555432319641 -0.5000017881393433 -3.269216540502384e-05 0.875 -0.53125 0.0 0.875 -0.5 0.0 0.90625 -0.53125 0.0 0.90625 -0.5 0.0 0.9706065654754639 -0.5 -0.010560071095824242 1.0 -0.5 -0.17774981260299683 1.0 -0.46875 -0.17774981260299683 0.9706065654754639 -0.46875 -0.010560071095824242 0.46875131130218506 -0.9580280780792236 -2.0214280084474012e-05 0.534732460975647 -0.5664372444152832 -0.038348179310560226 0.5650680661201477 -0.5652757883071899 -0.029269041493535042 0.5955746173858643 -0.5643779635429382 -0.02140858583152294 0.626202404499054 -0.5636795163154602 -0.01447293907403946 0.6569754481315613 -0.5631833076477051 -0.008990290574729443 0.6879037022590637 -0.5628733038902283 -0.005248658359050751 0.7189592123031616 -0.5626981258392334 -0.002909505506977439 0.7500975131988525 -0.562597393989563 -0.0014439051738008857 0.7812861800193787 -0.5625381469726562 -0.0005622947355732322 0.8125091195106506 -0.5625097155570984 -0.00014318485045805573 0.8437508344650269 -0.5625008940696716 -1.2872957086074166e-05 0.875 -0.5625 0.0 0.90625 -0.5625 0.0 0.9706065654754639 -0.53125 -0.010560071095824242 0.9706065654754639 -0.5625 -0.010560071095824242 1.0 -0.5625 -0.17774981260299683 1.0 -0.53125 -0.17774981260299683 0.9375 -0.59375 0.0 0.9580279588699341 -0.59375 0.0 0.533824622631073 -0.5967324376106262 -0.03126208111643791 0.5643907785415649 -0.5958601236343384 -0.023890387266874313 0.5950667858123779 -0.5951672196388245 -0.017285583540797234 0.6258501410484314 -0.5946398377418518 -0.011595683172345161 0.6567594408988953 -0.5942768454551697 -0.007270051632076502 0.6877890825271606 -0.594050943851471 -0.004338300786912441 0.7189065217971802 -0.5939162969589233 -0.0024426435120403767 0.7500762939453125 -0.593831479549408 -0.0011997350957244635 0.7812785506248474 -0.593780517578125 -0.0004488308622967452 0.8125066161155701 -0.5937570333480835 -0.0001036871544783935 0.8437504172325134 -0.5937504172325134 -6.494297849712893e-06 0.875 -0.59375 0.0 0.90625 -0.59375 0.0 0.9706065654754639 -0.59375 -0.010560071095824242 1.0 -0.59375 -0.17774981260299683 0.9375 -0.625 0.0 0.9580279588699341 -0.625 0.0 0.5331616997718811 -0.6272196769714355 -0.025261394679546356 0.5638996362686157 -0.6265629529953003 -0.019144797697663307 0.5947189927101135 -0.6260468363761902 -0.013693890534341335 0.6256272792816162 -0.6256646513938904 -0.009172864258289337 0.6566356420516968 -0.6254072189331055 -0.005842786747962236 0.687727689743042 -0.6252422332763672 -0.003548702457919717 0.7188760638237 -0.6251346468925476 -0.0019822455942630768 0.7500591278076172 -0.6250631809234619 -0.0009301595273427665 0.7812703847885132 -0.625021755695343 -0.00032051862217485905 0.8125039935112 -0.6250042915344238 -6.275104533415288e-05 0.8437501192092896 -0.6250001192092896 -1.482880634284811e-06 0.875 -0.625 0.0 0.90625 -0.625 0.0 0.9706065654754639 -0.625 -0.010560071095824242 1.0 -0.625 -0.17774981260299683 0.9375 -0.65625 0.0 0.9580279588699341 -0.65625 0.0 0.532637894153595 -0.6578541398048401 -0.019819369539618492 0.5635160207748413 -0.6573750972747803 -0.014813084155321121 0.5944536328315735 -0.657005786895752 -0.01047833263874054 0.6254633069038391 -0.6567414999008179 -0.0070591215044260025 0.6565424799919128 -0.6565611362457275 -0.004556069150567055 0.687675952911377 -0.6564379334449768 -0.0027667181566357613 0.7188448905944824 -0.6563513875007629 -0.001492146635428071 0.7500413060188293 -0.6562941074371338 -0.0006497536087408662 0.7812625765800476 -0.6562634110450745 -0.00019764558237511665 0.812501847743988 -0.6562519669532776 -2.9131546398275532e-05 0.84375 -0.65625 0.0 0.875 -0.65625 0.0 0.90625 -0.65625 0.0 0.9706065654754639 -0.65625 -0.010560071095824242 1.0 -0.65625 -0.17774981260299683 0.9375 -0.6875 0.0 0.9580279588699341 -0.6875 0.0 0.5322214961051941 -0.6886168718338013 -0.014802760444581509 0.5632112622261047 -0.6882821917533875 -0.010893533006310463 0.5942482948303223 -0.6880338788032532 -0.0076917666010558605 0.6253350973129272 -0.6878570318222046 -0.005232645198702812 0.6564653515815735 -0.6877300143241882 -0.003385749412700534 0.6876274943351746 -0.687636137008667 -0.0020043656695634127 0.7188146114349365 -0.6875690221786499 -0.001016194117255509 0.7500252723693848 -0.6875269412994385 -0.00039699082844890654 0.781256377696991 -0.6875067949295044 -9.985840733861551e-05 0.8125004768371582 -0.687500536441803 -7.898930562078021e-06 0.84375 -0.6875 0.0 0.875 -0.6875 0.0 0.90625 -0.6875 0.0 0.9706065654754639 -0.6875 -0.010560071095824242 1.0 -0.6875 -0.17774981260299683 0.9375 -0.71875 0.0 0.9580279588699341 -0.71875 0.0 0.5319010019302368 -0.7194922566413879 -0.010365870781242847 0.5629826784133911 -0.719277024269104 -0.00760791776701808 0.5940948724746704 -0.7191191911697388 -0.005415103863924742 0.6252349615097046 -0.7190009951591492 -0.0036946225445717573 0.6563993692398071 -0.7189095616340637 -0.0023489007726311684 0.6875838041305542 -0.7188395261764526 -0.0013180999085307121 0.7187885046005249 -0.718791127204895 -0.000605450477451086 0.7500128149986267 -0.7187637090682983 -0.00020148490148130804 0.7812523245811462 -0.7187524437904358 -3.6248948163120076e-05 0.8125 -0.71875 0.0 0.84375 -0.71875 0.0 0.875 -0.71875 0.0 0.90625 -0.71875 0.0 0.9706065654754639 -0.71875 -0.010560071095824242 1.0 -0.71875 -0.17774981260299683 0.9375 -0.75 0.0 0.9580279588699341 -0.75 0.0 0.5316730737686157 -0.7504758834838867 -0.006855905055999756 0.5628197193145752 -0.7503460645675659 -0.0050699892453849316 0.5939802527427673 -0.750245988368988 -0.0036215365398675203 0.6251547932624817 -0.7501653432846069 -0.0024338834919035435 0.6563436388969421 -0.7501000165939331 -0.0014719620812684298 0.6875479817390442 -0.7500512003898621 -0.0007541015511378646 0.7187690734863281 -0.7500203251838684 -0.0002994784153997898 0.7500048875808716 -0.7500052452087402 -7.707423355896026e-05 0.7812504172325134 -0.7500004172325134 -6.2576709751738235e-06 0.8125 -0.75 0.0 0.84375 -0.75 0.0 0.875 -0.75 0.0 0.90625 -0.75 0.0 0.9706065654754639 -0.75 -0.010560071095824242 1.0 -0.75 -0.17774981260299683 0.9375 -0.78125 0.0 0.9580279588699341 -0.78125 0.0 0.5315178036689758 -0.7815454602241516 -0.004305307287722826 0.5627026557922363 -0.7814673781394958 -0.0031959260813891888 0.5938932299613953 -0.7814029455184937 -0.0022519254125654697 0.6250913739204407 -0.7813475728034973 -0.0014368394622579217 0.6563004851341248 -0.7813039422035217 -0.000793874729424715 0.6875224709510803 -0.7812740206718445 -0.0003532951814122498 0.7187570929527283 -0.7812575697898865 -0.00011129085760330781 0.750001072883606 -0.7812511324882507 -1.6643178241793066e-05 0.78125 -0.78125 0.0 0.8125 -0.78125 0.0 0.84375 -0.78125 0.0 0.875 -0.78125 0.0 0.90625 -0.78125 0.0 0.9706065654754639 -0.78125 -0.010560071095824242 1.0 -0.78125 -0.17774981260299683 0.9375 -0.8125 0.0 0.9580279588699341 -0.8125 0.0 0.5314082503318787 -0.8126715421676636 -0.002513750223442912 0.5626167058944702 -0.8126246333122253 -0.0018346678698435426 0.5938276052474976 -0.8125829100608826 -0.0012203410733491182 0.6250451803207397 -0.8125482201576233 -0.0007102699019014835 0.6562716364860535 -0.8125231266021729 -0.0003403462178539485 0.687507688999176 -0.812508225440979 -0.00012108452938264236 0.7187514901161194 -0.8125016093254089 -2.373352981521748e-05 0.75 -0.8125 0.0 0.78125 -0.8125 0.0 0.8125 -0.8125 0.0 0.84375 -0.8125 0.0 0.875 -0.8125 0.0 0.90625 -0.8125 0.0 0.9706065654754639 -0.8125 -0.010560071095824242 1.0 -0.8125 -0.17774981260299683 0.9375 -0.84375 0.0 0.9580279588699341 -0.84375 0.0 0.5313317179679871 -0.8438374400138855 -0.0012864144518971443 0.5625562071800232 -0.8438100218772888 -0.0008834754698909819 0.5937838554382324 -0.8437861204147339 -0.000532177509739995 0.625016987323761 -0.8437681198120117 -0.0002668730157893151 0.6562564373016357 -0.8437568545341492 -0.00010074902820633724 0.6875013709068298 -0.8437514901161194 -2.1996615032549016e-05 0.71875 -0.84375 -2.199849546968835e-07 0.75 -0.84375 0.0 0.78125 -0.84375 0.0 0.8125 -0.84375 0.0 0.84375 -0.84375 0.0 0.875 -0.84375 0.0 0.90625 -0.84375 0.0 0.9706065654754639 -0.84375 -0.010560071095824242 1.0 -0.84375 -0.17774981260299683 0.9375 -0.875 0.0 0.9580279588699341 -0.875 0.0 0.5312830209732056 -0.875035285949707 -0.0005193641991354525 0.5625203251838684 -0.8750216960906982 -0.0003193568263668567 0.5937603116035461 -0.8750110268592834 -0.00016231035988312215 0.6250039339065552 -0.8750041723251343 -6.157880125101656e-05 0.6562508344650269 -0.8750008344650269 -1.2720750419248361e-05 0.6875 -0.875 0.0 0.71875 -0.875 0.0 0.75 -0.875 0.0 0.78125 -0.875 0.0 0.8125 -0.875 0.0 0.84375 -0.875 0.0 0.875 -0.875 0.0 0.90625 -0.875 0.0 0.9706065654754639 -0.875 -0.010560071095824242 1.0 -0.875 -0.17774981260299683 0.9375 -0.90625 0.0 0.9580279588699341 -0.90625 0.0 0.5312588214874268 -0.9062594175338745 -0.00013895775191485882 0.5625044107437134 -0.9062547087669373 -6.899697473272681e-05 0.5937514901161194 -0.9062516093254089 -2.3688475266681053e-05 0.6250001788139343 -0.9062502384185791 -3.1727599889563862e-06 0.65625 -0.90625 0.0 0.6875 -0.90625 0.0 0.71875 -0.90625 0.0 0.75 -0.90625 0.0 0.78125 -0.90625 0.0 0.8125 -0.90625 0.0 0.84375 -0.90625 0.0 0.875 -0.90625 0.0 0.90625 -0.90625 0.0 0.9706065654754639 -0.90625 -0.010560071095824242 1.0 -0.90625 -0.17774981260299683 0.9375 -0.9375 0.0 0.9580279588699341 -0.9375 0.0 0.5625001788139343 -0.9375001788139343 -2.8277281671762466e-06 0.59375 -0.9375 0.0 0.625 -0.9375 0.0 0.65625 -0.9375 0.0 0.6875 -0.9375 0.0 0.71875 -0.9375 0.0 0.75 -0.9375 0.0 0.78125 -0.9375 0.0 0.8125 -0.9375 0.0 0.84375 -0.9375 0.0 0.875 -0.9375 0.0 0.90625 -0.9375 0.0 0.9706065654754639 -0.9375 -0.010560071095824242 1.0 -0.9375 -0.17774981260299683 0.9375 -0.9580279588699341 0.0 0.9580279588699341 -0.9580279588699341 0.0 0.5625 -1.0 -0.17774981260299683 0.5625 -0.9706065654754639 -0.010560071095824242 0.59375 -1.0 -0.17774981260299683 0.59375 -0.9706065654754639 -0.010560071095824242 0.625 -1.0 -0.17774981260299683 0.625 -0.9706065654754639 -0.010560071095824242 0.65625 -1.0 -0.17774981260299683 0.65625 -0.9706065654754639 -0.010560071095824242 0.6875 -1.0 -0.17774981260299683 0.6875 -0.9706065654754639 -0.010560071095824242 0.71875 -1.0 -0.17774981260299683 0.71875 -0.9706065654754639 -0.010560071095824242 0.75 -1.0 -0.17774981260299683 0.75 -0.9706065654754639 -0.010560071095824242 0.78125 -1.0 -0.17774981260299683 0.78125 -0.9706065654754639 -0.010560071095824242 0.8125 -1.0 -0.17774981260299683 0.8125 -0.9706065654754639 -0.010560071095824242 0.84375 -1.0 -0.17774981260299683 0.84375 -0.9706065654754639 -0.010560071095824242 0.875 -1.0 -0.17774981260299683 0.875 -0.9706065654754639 -0.010560071095824242 0.90625 -1.0 -0.17774981260299683 0.90625 -0.9706065654754639 -0.010560071095824242 0.9375 -1.0 -0.17774981260299683 0.9375 -0.9706065654754639 -0.010560071095824242 0.9706065654754639 -0.9580279588699341 -0.010560072958469391 1.0 -0.9580279588699341 -0.17774981260299683 0.5625000596046448 -0.9580279588699341 -9.70212909123802e-07 0.59375 -0.9580279588699341 0.0 0.625 -0.9580279588699341 0.0 0.65625 -0.9580279588699341 0.0 0.6875 -0.9580279588699341 0.0 0.71875 -0.9580279588699341 0.0 0.75 -0.9580279588699341 0.0 0.78125 -0.9580279588699341 0.0 0.8125 -0.9580279588699341 0.0 0.84375 -0.9580279588699341 0.0 0.875 -0.9580279588699341 0.0 0.90625 -0.9580279588699341 0.0 0.9580279588699341 -1.0 -0.17774981260299683 0.9580279588699341 -0.9706065654754639 -0.010560071095824242 0.9763891100883484 -0.9763891100883484 -0.08690228313207626 0.9794720411300659 -1.0 -0.17774981260299683 1.0 -1.0 -0.17774981260299683 1.0 -0.9794720411300659 -0.17774981260299683 0.9580279588699341 -0.4375 0.0 0.9375 -0.4375 0.0 0.5402436852455139 -0.4767611622810364 -0.07006441801786423 0.5112431645393372 -0.4797862768173218 -0.08930733054876328 0.5434585809707642 -0.4470929801464081 -0.08448480069637299 0.5145863890647888 -0.450439453125 -0.10502652078866959 0.5474610328674316 -0.4172910153865814 -0.09988802671432495 0.5186217427253723 -0.420795202255249 -0.12078246474266052 0.551974892616272 -0.38718751072883606 -0.1147267073392868 0.5233197212219238 -0.39076876640319824 -0.13603965938091278 0.5566847324371338 -0.35671550035476685 -0.12776073813438416 0.5285400152206421 -0.36037564277648926 -0.15037235617637634 0.5614530444145203 -0.32589128613471985 -0.13864628970623016 0.5340766906738281 -0.3296276926994324 -0.16318117082118988 0.5662640929222107 -0.29478180408477783 -0.14792342483997345 0.5396745204925537 -0.29856348037719727 -0.17413954436779022 0.5711485147476196 -0.26348647475242615 -0.15662552416324615 0.5452683568000793 -0.267255574464798 -0.183957040309906 0.5761784911155701 -0.2320685237646103 -0.1655915081501007 0.5507876873016357 -0.23574163019657135 -0.19332824647426605 0.5809857845306396 -0.20050197839736938 -0.17404797673225403 0.5557125210762024 -0.2039286494255066 -0.20101605355739594 0.5851191878318787 -0.16875560581684113 -0.18093717098236084 0.5596910119056702 -0.17179715633392334 -0.2061796337366104 0.5885197520256042 -0.1368550956249237 -0.18633294105529785 0.56288081407547 -0.13943366706371307 -0.20949339866638184 0.5910888314247131 -0.10478242486715317 -0.18989065289497375 0.5652067065238953 -0.10690566897392273 -0.210927352309227 0.5924429297447205 -0.07251144200563431 -0.1904083788394928 0.5662895441055298 -0.07422611862421036 -0.20945942401885986 0.5923354029655457 -0.04010075703263283 -0.18753835558891296 0.5658965110778809 -0.04139840975403786 -0.20455627143383026 0.5695974230766296 -0.4743433892726898 -0.0536426417529583 0.5724868774414062 -0.44425398111343384 -0.06567402184009552 0.5761899352073669 -0.41415008902549744 -0.07931440323591232 0.580298900604248 -0.38387423753738403 -0.09270864725112915 0.5843977332115173 -0.3533071279525757 -0.10412952303886414 0.5884407758712769 -0.32244107127189636 -0.11346636712551117 0.5925559401512146 -0.2913520634174347 -0.12168950587511063 0.5967987775802612 -0.26013028621673584 -0.12971417605876923 0.6012808084487915 -0.22884269058704376 -0.13828596472740173 0.6058672666549683 -0.19751115143299103 -0.14732593297958374 0.6100747585296631 -0.16608701646327972 -0.15566876530647278 0.6135935187339783 -0.13453401625156403 -0.16261842846870422 0.6162764430046082 -0.10281508415937424 -0.16769163310527802 0.6178494691848755 -0.07091319561004639 -0.17005719244480133 0.6180734038352966 -0.03889676183462143 -0.1693917214870453 0.5992810130119324 -0.4725261628627777 -0.039983127266168594 0.6017675399780273 -0.4420544505119324 -0.049436602741479874 0.6050254106521606 -0.41159918904304504 -0.060576535761356354 0.608619213104248 -0.381060928106308 -0.07177743315696716 0.6121228933334351 -0.35036036372184753 -0.08152184635400772 0.6155353784561157 -0.3194811940193176 -0.0897974744439125 0.6190557479858398 -0.2884579598903656 -0.09746681898832321 0.6227369904518127 -0.25734084844589233 -0.10511136054992676 0.6266244649887085 -0.22617371380329132 -0.11317344754934311 0.6307241320610046 -0.19498340785503387 -0.12189987301826477 0.6347448825836182 -0.16375935077667236 -0.1307341754436493 0.6382178664207458 -0.13244850933551788 -0.13855092227458954 0.6408956050872803 -0.10102955251932144 -0.14472705125808716 0.6425527334213257 -0.06948161870241165 -0.1485958695411682 0.642957866191864 -0.037810683250427246 -0.14962929487228394 0.6292002201080322 -0.47118303179740906 -0.028394455090165138 0.6312840580940247 -0.44044268131256104 -0.03570009768009186 0.6340891122817993 -0.4097229838371277 -0.04466446489095688 0.6372495889663696 -0.3789713382720947 -0.054107341915369034 0.6402789354324341 -0.34813228249549866 -0.06252402812242508 0.6431504487991333 -0.31720298528671265 -0.06984551250934601 0.6460584402084351 -0.28619447350502014 -0.07669545710086823 0.6491332054138184 -0.2551276683807373 -0.08359646052122116 0.6523817777633667 -0.2240227311849594 -0.09080229699611664 0.6557890176773071 -0.192901149392128 -0.09849897027015686 0.659227192401886 -0.1617748737335205 -0.10659018903970718 0.6623589396476746 -0.13062436878681183 -0.11434187740087509 0.6648374199867249 -0.09942686557769775 -0.12089455127716064 0.666353166103363 -0.06814289093017578 -0.12536321580410004 0.6666504740715027 -0.036735791712999344 -0.12703543901443481 0.6593057513237 -0.47020718455314636 -0.018853168934583664 0.6610071063041687 -0.4392995536327362 -0.024514714255928993 0.663363516330719 -0.40841764211654663 -0.0318060927093029 0.6661500334739685 -0.37752997875213623 -0.040011413395404816 0.6688700914382935 -0.3465951383113861 -0.04766876623034477 0.6713284850120544 -0.315597265958786 -0.0541691817343235 0.6736847162246704 -0.2845511734485626 -0.060014259070158005 0.6760920882225037 -0.2534727156162262 -0.06572699546813965 0.6786193251609802 -0.22237588465213776 -0.07164543867111206 0.6812377572059631 -0.19127605855464935 -0.07788025587797165 0.6838505864143372 -0.16017954051494598 -0.08436643332242966 0.6862604022026062 -0.12909039855003357 -0.09075777232646942 0.6881582736968994 -0.09798266738653183 -0.09627420455217361 0.6891977787017822 -0.06681877374649048 -0.09996210783720016 0.689103364944458 -0.03555213660001755 -0.10106266289949417 0.6896061897277832 -0.46954694390296936 -0.011728620156645775 0.6909295916557312 -0.43851858377456665 -0.01596563123166561 0.6928104758262634 -0.4075261354446411 -0.021702468395233154 0.6951776146888733 -0.37654760479927063 -0.028672730550169945 0.697650134563446 -0.34554895758628845 -0.03573508560657501 0.6998632550239563 -0.31450212001800537 -0.04178602620959282 0.7018287777900696 -0.2834165096282959 -0.046897824853658676 0.7036851644515991 -0.25230908393859863 -0.05153460428118706 0.7055136561393738 -0.22119389474391937 -0.05604645982384682 0.7073301076889038 -0.1900830715894699 -0.06059584394097328 0.7090712189674377 -0.15897656977176666 -0.06513404846191406 0.7105692625045776 -0.12786662578582764 -0.06933112442493439 0.7115960121154785 -0.09673908352851868 -0.07264619320631027 0.7118707895278931 -0.06556398421525955 -0.07431007921695709 0.711290180683136 -0.03432530164718628 -0.07410605251789093 0.7201133966445923 -0.4691482484340668 -0.006870966870337725 0.7210946083068848 -0.43802741169929504 -0.009878033772110939 0.7224848866462708 -0.40694016218185425 -0.0140314232558012 0.7243244647979736 -0.3758813738822937 -0.01943277195096016 0.7264370322227478 -0.34482935070991516 -0.025530889630317688 0.7284713387489319 -0.31375283002853394 -0.03125593811273575 0.7302205562591553 -0.28264591097831726 -0.03603774681687355 0.7317211031913757 -0.25151675939559937 -0.040019143372774124 0.733046293258667 -0.22038047015666962 -0.043486587703228 0.7342188954353333 -0.18924155831336975 -0.04656127095222473 0.735177755355835 -0.1580982655286789 -0.04916960373520851 0.7358330488204956 -0.12693972885608673 -0.05114268884062767 0.7360318303108215 -0.09575571864843369 -0.05214882269501686 0.7356587052345276 -0.06453543901443481 -0.05190384387969971 0.7347850203514099 -0.033284928649663925 -0.05069364234805107 0.7508091330528259 -0.4689343571662903 -0.0037295599468052387 0.751497745513916 -0.4377516508102417 -0.0057380301877856255 0.7524704337120056 -0.40659448504447937 -0.008570617996156216 0.7537628412246704 -0.3754633069038391 -0.012329752556979656 0.7553400993347168 -0.344350665807724 -0.01689988747239113 0.7570266723632812 -0.3132407069206238 -0.021752333268523216 0.7585776448249817 -0.28211620450019836 -0.02616443671286106 0.759854257106781 -0.2509705722332001 -0.029734142124652863 0.7608387470245361 -0.21980860829353333 -0.03244473412632942 0.7615392208099365 -0.18863476812839508 -0.03435125946998596 0.7619383335113525 -0.1574481874704361 -0.035464558750391006 0.7619703412055969 -0.12624244391918182 -0.035698194056749344 0.7616326808929443 -0.09501615911722183 -0.03513117879629135 0.7609634399414062 -0.06377238780260086 -0.03392805904150009 0.76011061668396 -0.032520417124032974 -0.032554805278778076 0.7816616296768188 -0.4688258767127991 -0.0017341345082968473 0.7821152210235596 -0.43761128187179565 -0.0030274351593106985 0.7827733159065247 -0.40641364455223083 -0.004916268866509199 0.7836256623268127 -0.37523314356803894 -0.007384744472801685 0.784668505191803 -0.34406861662864685 -0.010424461215734482 0.785831093788147 -0.3129125237464905 -0.013819600455462933 0.7869806289672852 -0.2817544937133789 -0.017166994512081146 0.7879642844200134 -0.2505837380886078 -0.020008960738778114 0.7886741161346436 -0.21939411759376526 -0.022027678787708282 0.7890600562095642 -0.18818573653697968 -0.0230950266122818 0.7891152501106262 -0.15696105360984802 -0.023239605128765106 0.7888598442077637 -0.12572365999221802 -0.022614048793911934 0.788370668888092 -0.09448004513978958 -0.021532759070396423 0.7877522110939026 -0.06323327124118805 -0.020343000069260597 0.7871232032775879 -0.03199048712849617 -0.019405268132686615 0.8126639127731323 -0.46877509355545044 -0.0006228343700058758 0.8129210472106934 -0.4375448524951935 -0.0013619756791740656 0.8133373856544495 -0.40632644295692444 -0.0025654505006968975 0.8138871788978577 -0.37511885166168213 -0.004168662242591381 0.8145378232002258 -0.3439200520515442 -0.006082146894186735 0.8152510523796082 -0.3127264082431793 -0.008189238607883453 0.8159582018852234 -0.28153160214424133 -0.010278024710714817 0.8165643215179443 -0.250328004360199 -0.012055724859237671 0.8169832825660706 -0.21911008656024933 -0.013264322653412819 0.8171625137329102 -0.18787609040737152 -0.01375893596559763 0.8170880079269409 -0.15662868320941925 -0.013526799157261848 0.8168020248413086 -0.12537436187267303 -0.012758028693497181 0.8163890242576599 -0.09412023425102234 -0.011778704822063446 0.8159431219100952 -0.06287139654159546 -0.010920487344264984 0.8155412673950195 -0.03162897378206253 -0.010413674637675285 0.8437913656234741 -0.4687548875808716 -0.00013707434118259698 0.8439019918441772 -0.43751391768455505 -0.00046054896665737033 0.8441194295883179 -0.40628138184547424 -0.0011005380656570196 0.8444439172744751 -0.37505704164505005 -0.0020592822693288326 0.8448423743247986 -0.34383833408355713 -0.003241006750613451 0.8452690839767456 -0.3126213550567627 -0.004508012905716896 0.8456748127937317 -0.2814021408557892 -0.005711593199521303 0.8460116982460022 -0.2501768171787262 -0.006707760971039534 0.84622722864151 -0.21894167363643646 -0.007338601164519787 0.8462880849838257 -0.1876954436302185 -0.0075089228339493275 0.8461909890174866 -0.1564391404390335 -0.00721381139010191 0.8459629416465759 -0.12517669796943665 -0.006565670482814312 0.8456646203994751 -0.0939142182469368 -0.005801161751151085 0.845360517501831 -0.06265676766633987 -0.005169332958757877 0.8451153635978699 -0.031407877802848816 -0.004888362251222134 0.8750033974647522 -0.46875032782554626 -1.0021715752372984e-05 0.875031590461731 -0.43750280141830444 -9.354413487017155e-05 0.8751119375228882 -0.4062594175338745 -0.0003318662056699395 0.875260055065155 -0.3750213384628296 -0.0007714662933722138 0.8754687905311584 -0.3437877297401428 -0.0013910883571952581 0.8757092356681824 -0.3125562369823456 -0.0021048339549452066 0.8759444355964661 -0.28132396936416626 -0.0028034497518092394 0.8761327266693115 -0.2500877380371094 -0.0033629504032433033 0.8762450218200684 -0.21884533762931824 -0.003696729661896825 0.8762655258178711 -0.18759579956531525 -0.003757141763344407 0.8761890530586243 -0.1563388556241989 -0.0035284385085105896 0.8760292530059814 -0.12507645785808563 -0.0030570614617317915 0.8758321404457092 -0.09381293505430222 -0.0025130710564553738 0.8756440281867981 -0.0625530555844307 -0.002082480350509286 0.8755133748054504 -0.03130069002509117 -0.0019462928175926208 0.90625 -0.46875 0.0 0.9062510132789612 -0.43750008940696716 -3.00594274449395e-06 0.9062651991844177 -0.40625131130218506 -4.516953413258307e-05 0.9063075184822083 -0.37500470876693726 -0.00017062740516848862 0.9063834547996521 -0.3437606692314148 -0.0003960803151130676 0.9064865112304688 -0.31251853704452515 -0.0007021870696917176 0.9065977931022644 -0.2812768220901489 -0.0010325658367946744 0.9066935181617737 -0.25003373622894287 -0.0013171883765608072 0.9067532420158386 -0.21878774464130402 -0.0014947981107980013 0.9067639112472534 -0.18753796815872192 -0.0015269671566784382 0.9067240357398987 -0.1562844216823578 -0.0014087010640650988 0.9066430926322937 -0.12502795457839966 -0.0011685271747410297 0.906541109085083 -0.09377030283212662 -0.0008737046155147254 0.9064506888389587 -0.06251434981822968 -0.0006514334818348289 0.9064026474952698 -0.031262874603271484 -0.0006279931985773146 0.9375 -0.40625 0.0 0.9375026226043701 -0.3750002086162567 -7.854088835301809e-06 0.9375159740447998 -0.3437512516975403 -4.728343992610462e-05 0.9375414848327637 -0.3125031590461731 -0.00012315198546275496 0.9375751614570618 -0.2812556326389313 -0.00022319555864669383 0.9376080632209778 -0.2500079274177551 -0.0003211226430721581 0.9376307725906372 -0.2187594324350357 -0.00038867496186867356 0.937636137008667 -0.18750964105129242 -0.0004047215625178069 0.9376230835914612 -0.1562584936618805 -0.00036603433545678854 0.937595784664154 -0.12500642240047455 -0.00028486354858614504 0.9375627636909485 -0.09375406801700592 -0.0001868188555818051 0.937536358833313 -0.0625024288892746 -0.00011794188321800902 0.9375304579734802 -0.031252823770046234 -0.0001441788481315598 1.0 -0.4375 -0.17774981260299683 0.9706065654754639 -0.4375 -0.010560071095824242 1.0 -0.40625 -0.17774981260299683 0.9706065654754639 -0.40625 -0.010560071095824242 1.0 -0.375 -0.17774981260299683 0.9706065654754639 -0.375 -0.010560071095824242 1.0 -0.34375 -0.17774981260299683 0.9706065654754639 -0.34375 -0.010560071095824242 1.0 -0.3125 -0.17774981260299683 0.9706070423126221 -0.3125 -0.010561704635620117 1.0 -0.28125 -0.17774981260299683 0.9706102609634399 -0.2812502384185791 -0.010571504011750221 1.0 -0.25 -0.17774981260299683 0.9706151485443115 -0.250000536441803 -0.010586345568299294 1.0 -0.21875 -0.17774981260299683 0.9706193804740906 -0.21875080466270447 -0.01059926301240921 1.0 -0.1875 -0.17774981260299683 0.97062087059021 -0.18750087916851044 -0.010603840462863445 1.0 -0.15625 -0.17774981260299683 0.9706190824508667 -0.1562507450580597 -0.010598575696349144 1.0 -0.125 -0.17774981260299683 0.9706151485443115 -0.1250005066394806 -0.010586582124233246 1.0 -0.09375 -0.17774981260299683 0.9706109762191772 -0.09375026077032089 -0.01057366468012333 1.0 -0.0625 -0.17774981260299683 0.9706076979637146 -0.06250006705522537 -0.010563614778220654 1.0 -0.03125 -0.17774981260299683 0.9706089496612549 -0.03125026822090149 -0.010574922896921635 0.9580279588699341 -0.40625 0.0 0.9580279588699341 -0.3750000596046448 -2.6950026494887425e-06 0.9580279588699341 -0.3437504172325134 -1.623145908524748e-05 0.9580286145210266 -0.31250110268592834 -4.3381187424529344e-05 0.9580320119857788 -0.2812521159648895 -8.424227416981012e-05 0.958037257194519 -0.2500030994415283 -0.00012772723857779056 0.9580418467521667 -0.21875379979610443 -0.0001595037610968575 0.9580433368682861 -0.18750393390655518 -0.00016804231563583016 0.9580414295196533 -0.15625345706939697 -0.0001512336457381025 0.9580371975898743 -0.12500256299972534 -0.00011536997772054747 0.9580326676368713 -0.09375157952308655 -7.312330126296729e-05 0.9580292105674744 -0.06250088661909103 -4.2834093619603664e-05 0.9580305218696594 -0.03125115856528282 -5.9258221881464124e-05 0.4825277626514435 -0.48329177498817444 -0.11033815890550613 0.4541141390800476 -0.4871935248374939 -0.13258224725723267 0.4259158968925476 -0.4913477897644043 -0.15564674139022827 0.39765340089797974 -0.4954356551170349 -0.17811425030231476 0.36919721961021423 -0.4993358552455902 -0.19906693696975708 0.3404718041419983 -0.50301194190979 -0.21813592314720154 0.31126222014427185 -0.5062035918235779 -0.2342596799135208 0.2813359200954437 -0.5086407661437988 -0.24642345309257507 0.250607430934906 -0.5103252530097961 -0.25479114055633545 0.21905465424060822 -0.5114074945449829 -0.26009801030158997 0.18660445511341095 -0.5120048522949219 -0.2628878057003021 0.15320920944213867 -0.5122292041778564 -0.2639024555683136 0.11902263760566711 -0.5122639536857605 -0.26432278752326965 0.08429614454507828 -0.5122235417366028 -0.26443564891815186 0.049115099012851715 -0.5120369791984558 -0.26376697421073914 0.485871821641922 -0.45416030287742615 -0.12638989090919495 0.4574577808380127 -0.4582524597644806 -0.1486997902393341 0.4292325973510742 -0.46254467964172363 -0.17174015939235687 0.40093162655830383 -0.4667557179927826 -0.19446831941604614 0.3725046217441559 -0.47082099318504333 -0.2162564992904663 0.3438678979873657 -0.4746483266353607 -0.23627115786075592 0.3147278130054474 -0.47791385650634766 -0.2529616057872772 0.28485438227653503 -0.480386883020401 -0.26548874378204346 0.2541658878326416 -0.4821004271507263 -0.2741132080554962 0.2226749211549759 -0.4832320809364319 -0.27968284487724304 0.1902862936258316 -0.4838968515396118 -0.28278109431266785 0.156866192817688 -0.4841943085193634 -0.28424930572509766 0.12245678156614304 -0.48427096009254456 -0.2851356565952301 0.08734682947397232 -0.48424118757247925 -0.28570014238357544 0.05175856500864029 -0.4840148985385895 -0.285201758146286 0.48976653814315796 -0.4246184527873993 -0.1416875571012497 0.4611942172050476 -0.42882949113845825 -0.1635179966688156 0.4328163266181946 -0.43320152163505554 -0.18606047332286835 0.4043756127357483 -0.4374709129333496 -0.2084764987230301 0.3758370280265808 -0.4416205585002899 -0.23036862909793854 0.3471509516239166 -0.4455389380455017 -0.25080883502960205 0.3180198669433594 -0.4489053189754486 -0.26815560460090637 0.2881716191768646 -0.4514780640602112 -0.28139954805374146 0.25753113627433777 -0.45329749584198 -0.29078003764152527 0.22608713805675507 -0.45449402928352356 -0.29679474234580994 0.1937299370765686 -0.4551808536052704 -0.3000063896179199 0.1603064388036728 -0.4555012583732605 -0.301622599363327 0.1257592737674713 -0.4555739462375641 -0.3026981055736542 0.09032516926527023 -0.45546916127204895 -0.30334681272506714 0.05431204289197922 -0.4551256000995636 -0.3028842806816101 0.4944269359111786 -0.39468029141426086 -0.15679281949996948 0.4655970335006714 -0.3989754319190979 -0.17788614332675934 0.43692153692245483 -0.4033976197242737 -0.19950883090496063 0.4082207679748535 -0.4076603055000305 -0.22091999650001526 0.3794745206832886 -0.4118143320083618 -0.24220715463161469 0.35063469409942627 -0.41579172015190125 -0.26270949840545654 0.3214239180088043 -0.41927051544189453 -0.2806972563266754 0.2915712893009186 -0.4220176935195923 -0.2950528860092163 0.2609545886516571 -0.42400360107421875 -0.3055795729160309 0.229514479637146 -0.42528700828552246 -0.31228891015052795 0.19712968170642853 -0.42597848176956177 -0.31569966673851013 0.16366533935070038 -0.42626720666885376 -0.3173760175704956 0.1290147453546524 -0.42625364661216736 -0.31825506687164307 0.09329819679260254 -0.42595890164375305 -0.31833192706108093 0.056841231882572174 -0.42541733384132385 -0.3175327777862549 0.499889612197876 -0.3643774390220642 -0.17183968424797058 0.4709095358848572 -0.3687525689601898 -0.1926313042640686 0.44181180000305176 -0.3731983006000519 -0.21295638382434845 0.4127362072467804 -0.3774507939815521 -0.23303985595703125 0.38370367884635925 -0.3815816342830658 -0.2533119022846222 0.3546225130558014 -0.38557010889053345 -0.2733847200870514 0.32524600625038147 -0.3891538977622986 -0.2917936146259308 0.2953140437602997 -0.3920925259590149 -0.3072780966758728 0.26463404297828674 -0.39425191283226013 -0.31893664598464966 0.23310762643814087 -0.3956228196620941 -0.3264521360397339 0.20062583684921265 -0.3963285982608795 -0.3305351436138153 0.16704054176807404 -0.3965526819229126 -0.3325888514518738 0.13221891224384308 -0.3963700830936432 -0.3331977427005768 0.09621703624725342 -0.39580339193344116 -0.332379013299942 0.05929521471261978 -0.3950013518333435 -0.3307340443134308 0.5060265064239502 -0.33371809124946594 -0.18637028336524963 0.47719064354896545 -0.33815935254096985 -0.20772136747837067 0.44771572947502136 -0.34263208508491516 -0.22704093158245087 0.4181070029735565 -0.34690532088279724 -0.24563632905483246 0.3886003792285919 -0.35100969672203064 -0.26451578736305237 0.35911139845848083 -0.3549612760543823 -0.2835470736026764 0.32944583892822266 -0.35858049988746643 -0.30174520611763 0.2993008494377136 -0.36163201928138733 -0.3177182674407959 0.26843971014022827 -0.36390915513038635 -0.3301858901977539 0.23671385645866394 -0.3653482496738434 -0.33864888548851013 0.20402061939239502 -0.36606350541114807 -0.3438170254230499 0.17019960284233093 -0.3661918640136719 -0.346561074256897 0.13511395454406738 -0.3658077120780945 -0.34724971652030945 0.09878472983837128 -0.3649824559688568 -0.34594887495040894 0.061387043446302414 -0.3639226257801056 -0.34354183077812195 0.5123948454856873 -0.3027026951313019 -0.19927562773227692 0.48403289914131165 -0.30716729164123535 -0.2219950407743454 0.4544486999511719 -0.31166183948516846 -0.2412141114473343 0.42424947023391724 -0.3159600496292114 -0.25843188166618347 0.39402201771736145 -0.3200332522392273 -0.2755197584629059 0.36381906270980835 -0.3238750398159027 -0.29268011450767517 0.33355218172073364 -0.3274068832397461 -0.3095453977584839 0.3030183017253876 -0.3304470479488373 -0.32526445388793945 0.27187827229499817 -0.3327692151069641 -0.33835381269454956 0.23987142741680145 -0.3342377543449402 -0.3478368818759918 0.20684048533439636 -0.33491912484169006 -0.35408157110214233 0.17264042794704437 -0.3349250555038452 -0.35762426257133484 0.13717307150363922 -0.33436527848243713 -0.3588414490222931 0.10047554224729538 -0.3333529233932495 -0.3577927052974701 0.06268825381994247 -0.3320847153663635 -0.35538193583488464 0.5186191201210022 -0.2713547348976135 -0.21018430590629578 0.49075475335121155 -0.27575021982192993 -0.2339903712272644 0.46133747696876526 -0.28020840883255005 -0.2537608742713928 0.43075844645500183 -0.284498006105423 -0.27021270990371704 0.39976000785827637 -0.28851020336151123 -0.2854664623737335 0.36858633160591125 -0.2921881079673767 -0.3002132773399353 0.3373681306838989 -0.2955341339111328 -0.31498050689697266 0.30611297488212585 -0.29845502972602844 -0.32978618144989014 0.2745041847229004 -0.30070924758911133 -0.3430901765823364 0.24212786555290222 -0.30215033888816833 -0.3534771800041199 0.2087065577507019 -0.3027624785900116 -0.3606264889240265 0.17402756214141846 -0.3026357889175415 -0.364888995885849 0.13804273307323456 -0.3019148111343384 -0.3666698932647705 0.10091371834278107 -0.3007503151893616 -0.36631229519844055 0.06280544400215149 -0.299288272857666 -0.3644614517688751 0.5244876146316528 -0.2397058606147766 -0.21960100531578064 0.49690672755241394 -0.24391242861747742 -0.24342750012874603 0.46773794293403625 -0.2482316941022873 -0.26357707381248474 0.437002569437027 -0.2524106800556183 -0.27959370613098145 0.4054597318172455 -0.25630441308021545 -0.29351016879081726 0.3734268546104431 -0.2598138451576233 -0.3063005805015564 0.3410816788673401 -0.26292625069618225 -0.3187897503376007 0.3087383508682251 -0.26561352610588074 -0.3318382203578949 0.276289165019989 -0.26767900586128235 -0.34441688656806946 0.24330423772335052 -0.26895880699157715 -0.3548440635204315 0.20937472581863403 -0.26943421363830566 -0.3625352382659912 0.17416007816791534 -0.2691582441329956 -0.36759626865386963 0.13760444521903992 -0.26828429102897644 -0.3703380823135376 0.09997927397489548 -0.26697438955307007 -0.3710939884185791 0.06153189018368721 -0.26530885696411133 -0.37015748023986816 0.5295512676239014 -0.2076738327741623 -0.22675268352031708 0.5021917223930359 -0.21163563430309296 -0.25029993057250977 0.47325822710990906 -0.21570393443107605 -0.27039074897766113 0.44250693917274475 -0.2196430265903473 -0.2859133183956146 0.4106065630912781 -0.22330066561698914 -0.29864001274108887 0.37807726860046387 -0.22661343216896057 -0.3103685975074768 0.3448387086391449 -0.22948044538497925 -0.32121846079826355 0.3112329840660095 -0.2318352907896042 -0.3319612145423889 0.277559757232666 -0.2335631251335144 -0.3426128625869751 0.2435762882232666 -0.2345363199710846 -0.3519465923309326 0.2088211476802826 -0.23474372923374176 -0.35958752036094666 0.1729235202074051 -0.23424950242042542 -0.36569491028785706 0.13578586280345917 -0.23323148488998413 -0.37017473578453064 0.09768341481685638 -0.23180730640888214 -0.3726777732372284 0.058942727744579315 -0.23000632226467133 -0.37292152643203735 0.5335014462471008 -0.1751919388771057 -0.2307378202676773 0.506335437297821 -0.1788727343082428 -0.2539632320404053 0.47767558693885803 -0.1826276183128357 -0.2739884555339813 0.4470810890197754 -0.18621324002742767 -0.2891342043876648 0.4150410294532776 -0.18952029943466187 -0.30091381072998047 0.38216158747673035 -0.19251415133476257 -0.311686635017395 0.3483913838863373 -0.19505687057971954 -0.32160454988479614 0.3137480616569519 -0.1969929188489914 -0.33043527603149414 0.27869465947151184 -0.1982455849647522 -0.3385809063911438 0.2433140128850937 -0.19877521693706512 -0.346090704202652 0.20732933282852173 -0.19861941039562225 -0.3533408045768738 0.17051656544208527 -0.19790737330913544 -0.3606637418270111 0.13283400237560272 -0.19681063294410706 -0.3673623502254486 0.09438063204288483 -0.1953788697719574 -0.37193578481674194 0.055501580238342285 -0.19360700249671936 -0.3736589550971985 0.5365288853645325 -0.1423335075378418 -0.23213492333889008 0.509375810623169 -0.14558222889900208 -0.2542452812194824 0.4809338450431824 -0.14897334575653076 -0.2740718424320221 0.45061084628105164 -0.1521475613117218 -0.2892138957977295 0.41872498393058777 -0.15499958395957947 -0.30079326033592224 0.3857259154319763 -0.15755075216293335 -0.31106969714164734 0.35151243209838867 -0.15966208279132843 -0.3202480375766754 0.31608352065086365 -0.1611081063747406 -0.32776713371276855 0.2798224687576294 -0.16181674599647522 -0.3340074419975281 0.24295614659786224 -0.1618650108575821 -0.3399031162261963 0.20557154715061188 -0.16140376031398773 -0.3468169569969177 0.16778609156608582 -0.16061316430568695 -0.355567067861557 0.1295853704214096 -0.1595485508441925 -0.36449798941612244 0.09089528769254684 -0.1582135707139969 -0.3709423243999481 0.052054740488529205 -0.15663428604602814 -0.373790979385376 0.538607120513916 -0.10924790054559708 -0.23121501505374908 0.5113028883934021 -0.11188992112874985 -0.2512970566749573 0.48298728466033936 -0.11473537981510162 -0.27030691504478455 0.4530867636203766 -0.11742832511663437 -0.2860061824321747 0.42167550325393677 -0.11977778375148773 -0.2986479699611664 0.38888317346572876 -0.12177705764770508 -0.3095429539680481 0.35441282391548157 -0.12333087623119354 -0.3185867369174957 0.31823989748954773 -0.12423037737607956 -0.3251391351222992 0.2809179723262787 -0.12444345653057098 -0.33017051219940186 0.24280674755573273 -0.1241469532251358 -0.33543673157691956 0.20421072840690613 -0.12359395623207092 -0.342941552400589 0.165554478764534 -0.12287596613168716 -0.3535347580909729 0.12689553201198578 -0.12192656844854355 -0.3644842207431793 0.08802362531423569 -0.12073487043380737 -0.3722201883792877 0.04929003864526749 -0.11941642314195633 -0.37548068165779114 0.5393698215484619 -0.07604323327541351 -0.22739379107952118 0.5118062496185303 -0.07804283499717712 -0.24514709413051605 0.48350006341934204 -0.08021362870931625 -0.2628786265850067 0.4541214108467102 -0.08232396841049194 -0.27945464849472046 0.42349106073379517 -0.0841216892004013 -0.2943018972873688 0.39131951332092285 -0.08551140874624252 -0.30741986632347107 0.3570016920566559 -0.08639927208423615 -0.31785106658935547 0.3203665316104889 -0.08667314052581787 -0.3247066140174866 0.28222569823265076 -0.08640606701374054 -0.32969680428504944 0.24322164058685303 -0.0858687311410904 -0.3354429006576538 0.20372632145881653 -0.08532202243804932 -0.3443727195262909 0.16435661911964417 -0.08474037796258926 -0.35684704780578613 0.12524646520614624 -0.08394672721624374 -0.3692571520805359 0.08613456040620804 -0.08294586837291718 -0.3775140643119812 0.04741271585226059 -0.08191519230604172 -0.3805884122848511 0.5387033224105835 -0.04273166134953499 -0.22048263251781464 0.5108761191368103 -0.04415411502122879 -0.23632480204105377 0.4825339913368225 -0.045711953192949295 -0.2530835270881653 0.4536089599132538 -0.047252994030714035 -0.27067896723747253 0.42369839549064636 -0.04849173501133919 -0.2880212962627411 0.3922780752182007 -0.04926421865820885 -0.3044017553329468 0.35855990648269653 -0.04946067929267883 -0.3184469938278198 0.32206815481185913 -0.04905097931623459 -0.3282857835292816 0.28368911147117615 -0.048208143562078476 -0.33541953563690186 0.24432602524757385 -0.04725760966539383 -0.34304526448249817 0.2043253779411316 -0.046502336859703064 -0.35334262251853943 0.16441327333450317 -0.04594368115067482 -0.3664919435977936 0.1248086467385292 -0.04537390172481537 -0.37878546118736267 0.08536731451749802 -0.04474234580993652 -0.3867679238319397 0.04653972387313843 -0.04417180269956589 -0.3897329568862915 0.9580279588699341 0.9661533832550049 -0.0030929739587008953 0.9675242304801941 0.9675242304801941 -0.014998355880379677 0.9678469896316528 0.9750325083732605 -0.048461198806762695 0.9661533832550049 0.9580279588699341 -0.003092973493039608 0.9750325083732605 0.9678469896316528 -0.048461202532052994 -0.9661533832550049 0.9580279588699341 -0.0030929739587008953 -0.9675242304801941 0.9675242304801941 -0.014998355880379677 -0.9750325083732605 0.9678469896316528 -0.048461198806762695 -0.9580279588699341 0.9661533832550049 -0.003092973493039608 -0.9678469896316528 0.9750325083732605 -0.048461202532052994 -0.9580279588699341 -0.9661533832550049 -0.0030929739587008953 -0.9675242304801941 -0.9675242304801941 -0.014998355880379677 -0.9678469896316528 -0.9750325083732605 -0.048461198806762695 -0.9661533832550049 -0.9580279588699341 -0.003092973493039608 -0.9750325083732605 -0.9678469896316528 -0.048461202532052994 0.9661533832550049 -0.9580279588699341 -0.0030929739587008953 0.9675242304801941 -0.9675242304801941 -0.014998355880379677 0.9750325083732605 -0.9678469896316528 -0.048461198806762695 0.9580279588699341 -0.9661533832550049 -0.003092973493039608 0.9678469896316528 -0.9750325083732605 -0.048461202532052994 0.9661927223205566 0.4687446057796478 -0.0033736559562385082 0.9661683440208435 0.4999978244304657 -0.0032071154564619064 0.9662314653396606 0.43748974800109863 -0.0036281223874539137 0.966281533241272 0.4062335789203644 -0.003951208665966988 0.9663368463516235 0.37497684359550476 -0.004303240217268467 0.9663901329040527 0.34372037649154663 -0.004639186896383762 0.9664351940155029 0.31246495246887207 -0.00492296414449811 0.9664625525474548 0.28121161460876465 -0.0050954148173332214 0.9664711952209473 0.24996057152748108 -0.005150459241122007 0.9664602875709534 0.21871189773082733 -0.005081219132989645 0.9664306640625 0.18746548891067505 -0.0048950063064694405 0.9663841724395752 0.15622109174728394 -0.004602531902492046 0.9663302898406982 0.12497762590646744 -0.004261460155248642 0.9662750959396362 0.09373435378074646 -0.003910631872713566 0.96622633934021 0.06249041482806206 -0.003594177309423685 0.9661891460418701 0.031245093792676926 -0.003349658567458391 0.9661662578582764 -1.928406845763675e-06 -0.0031938785687088966 0.53125 0.9661533832550049 -0.003093200270086527 0.5000001192092896 0.9661533832550049 -0.0030955206602811813 0.9661564826965332 0.5312494039535522 -0.003122474532574415 0.5625 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.5624999403953552 -0.003095509484410286 0.59375 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.59375 -0.00309298699721694 0.625 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.625 -0.003092973493039608 0.65625 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.65625 -0.003092973493039608 0.6875 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.6875 -0.003092973493039608 0.71875 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.71875 -0.003092973493039608 0.75 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.75 -0.003092973493039608 0.78125 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.78125 -0.003092973493039608 0.8125 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.8125 -0.003092973493039608 0.84375 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.84375 -0.003092973493039608 0.875 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.875 -0.003092973493039608 0.90625 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.90625 -0.003092973493039608 0.9375 0.9661533832550049 -0.003092973493039608 0.9661533832550049 0.9375 -0.003092973493039608 1.0 0.96875 -0.17774981260299683 0.96875 1.0 -0.17774981260299683 0.46875056624412537 0.9661537408828735 -0.003106412012130022 0.43750181794166565 0.9661555290222168 -0.003135259263217449 0.4062538146972656 0.9661585688591003 -0.003182884305715561 0.37500640749931335 0.9661628007888794 -0.003244243562221527 0.34375908970832825 0.9661670327186584 -0.003307323670014739 0.31251126527786255 0.9661707282066345 -0.003359428374096751 0.28126248717308044 0.9661728739738464 -0.0033881328999996185 0.25001248717308044 0.9661728143692017 -0.003387708682566881 0.21876122057437897 0.9661707282066345 -0.0033581997267901897 0.18750900030136108 0.9661670327186584 -0.00330553250387311 0.15625633299350739 0.9661626219749451 -0.0032423613592982292 0.12500374019145966 0.9661584496498108 -0.0031812412198632956 0.09375174343585968 0.9661553502082825 -0.0031341335270553827 0.06250054389238358 0.9661537408828735 -0.003105827607214451 0.03125010430812836 0.9661533832550049 -0.0030954040121287107 8.407567975154961e-09 0.9661533832550049 -0.0030931695364415646 -0.9661533832550049 0.46875 -0.003092973493039608 -0.9661533832550049 0.5 -0.003092973493039608 -0.9661533832550049 0.4375 -0.003092973493039608 -0.9661533832550049 0.40625 -0.003092973493039608 -0.9661533832550049 0.375 -0.003092973493039608 -0.9661533832550049 0.34375 -0.003092973493039608 -0.9661533832550049 0.3124999701976776 -0.003094170242547989 -0.9661533832550049 0.28124988079071045 -0.0030973965767771006 -0.9661545157432556 0.24999955296516418 -0.0031071645207703114 -0.9661568403244019 0.21874895691871643 -0.0031246934086084366 -0.9661601781845093 0.187498077750206 -0.0031479941681027412 -0.9661640524864197 0.15624694526195526 -0.0031747031025588512 -0.966168224811554 0.12499551475048065 -0.003202653955668211 -0.9661715030670166 0.09374415129423141 -0.0032250462099909782 -0.9661731123924255 0.062493085861206055 -0.0032373154535889626 -0.9661723971366882 0.031242618337273598 -0.0032357280142605305 -0.9661696553230286 -7.1463068707089406e-06 -0.003221001010388136 -0.46875 0.9661533832550049 -0.003092973493039608 -0.5 0.9661533832550049 -0.003092973493039608 -0.4375 0.9661533832550049 -0.003092973493039608 -0.40625 0.9661533832550049 -0.003092973493039608 -0.375 0.9661533832550049 -0.003092973493039608 -0.34375 0.9661533832550049 -0.003092973493039608 -0.3125 0.9661533832550049 -0.003092973493039608 -0.28125 0.9661533832550049 -0.003092973493039608 -0.25 0.9661533832550049 -0.003092973493039608 -0.2187500149011612 0.9661533832550049 -0.003093118779361248 -0.1875000298023224 0.9661533832550049 -0.0030933129601180553 -0.1562500298023224 0.9661533832550049 -0.0030934056267142296 -0.1250000298023224 0.9661533832550049 -0.0030933539383113384 -0.0937500149011612 0.9661533832550049 -0.0030931788496673107 -0.0625 0.9661533832550049 -0.0030929967761039734 -0.03125 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.53125 -0.003092973493039608 -0.53125 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.5625 -0.003092973493039608 -0.5625 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.59375 -0.003092973493039608 -0.59375 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.625 -0.003092973493039608 -0.625 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.65625 -0.003092973493039608 -0.65625 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.6875 -0.003092973493039608 -0.6875 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.71875 -0.003092973493039608 -0.71875 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.75 -0.003092973493039608 -0.75 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.78125 -0.003092973493039608 -0.78125 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.8125 -0.003092973493039608 -0.8125 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.84375 -0.003092973493039608 -0.84375 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.875 -0.003092973493039608 -0.875 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.90625 -0.003092973493039608 -0.90625 0.9661533832550049 -0.003092973493039608 -0.9661533832550049 0.9375 -0.003092973493039608 -0.9375 0.9661533832550049 -0.003092973493039608 -0.96875 1.0 -0.17774981260299683 -1.0 0.96875 -0.17774981260299683 -0.53125 -0.9661533832550049 -0.003092973493039608 -0.5 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.5312501192092896 -0.003093862906098366 -0.9661533832550049 -0.5000001788139343 -0.0030944389291107655 -0.5625 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.5625000596046448 -0.0030933073721826077 -0.59375 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.59375 -0.003092973493039608 -0.625 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.625 -0.003092973493039608 -0.65625 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.65625 -0.003092973493039608 -0.6875 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.6875 -0.003092973493039608 -0.71875 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.71875 -0.003092973493039608 -0.75 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.75 -0.003092973493039608 -0.78125 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.78125 -0.003092973493039608 -0.8125 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.8125 -0.003092973493039608 -0.84375 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.84375 -0.003092973493039608 -0.875 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.875 -0.003092973493039608 -0.90625 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.90625 -0.003092973493039608 -0.9375 -0.9661533832550049 -0.003092973493039608 -0.9661533832550049 -0.9375 -0.003092973493039608 -1.0 -0.96875 -0.17774981260299683 -0.96875 -1.0 -0.17774981260299683 -0.46875 -0.9661533832550049 -0.003092973493039608 -0.4375 -0.9661533832550049 -0.003093026578426361 -0.4062500298023224 -0.9661533832550049 -0.003093198873102665 -0.3750000298023224 -0.9661533832550049 -0.0030936789698898792 -0.3437502086162567 -0.9661534428596497 -0.003098241053521633 -0.31250131130218506 -0.9661553502082825 -0.003129884134978056 -0.2812543511390686 -0.9661619663238525 -0.0032189483754336834 -0.25001025199890137 -0.9661754369735718 -0.0033872995991259813 -0.21876876056194305 -0.9661960601806641 -0.003632156178355217 -0.18752902746200562 -0.9662215709686279 -0.003928074613213539 -0.1562894582748413 -0.9662480354309082 -0.004231334663927555 -0.12504842877388 -0.9662714600563049 -0.004496126435697079 -0.09380467236042023 -0.9662882685661316 -0.0046852887608110905 -0.06255713850259781 -0.9662958383560181 -0.004769667983055115 -0.031305648386478424 -0.9662936925888062 -0.0047463830560445786 -5.0489492423366755e-05 -0.9662835597991943 -0.004632031079381704 -0.9661533832550049 -0.4687502086162567 -0.003094776999205351 -0.9661533832550049 -0.4375002086162567 -0.0030947276391088963 -0.9661533832550049 -0.4062501788139343 -0.003094303887337446 -0.9661533832550049 -0.37500008940696716 -0.0030937129631638527 -0.9661533832550049 -0.3437500298023224 -0.0030931998044252396 -0.9661533832550049 -0.3125 -0.003092973493039608 -0.9661533832550049 -0.28125 -0.0030929865315556526 -0.9661533832550049 -0.2500000596046448 -0.0030936417169868946 -0.9661533832550049 -0.2187502384185791 -0.0030955905094742775 -0.9661534428596497 -0.18750056624412537 -0.0030997004359960556 -0.9661540389060974 -0.1562512367963791 -0.003108720760792494 -0.9661559462547302 -0.12500238418579102 -0.003125449176877737 -0.9661586284637451 -0.09375378489494324 -0.003147389041259885 -0.9661619663238525 -0.06250515580177307 -0.0031718506943434477 -0.9661659002304077 -0.03125634044408798 -0.003197950776666403 0.4687504172325134 -0.9661533832550049 -0.0030994275584816933 0.5000002384185791 -0.9661533832550049 -0.003096365835517645 0.43750065565109253 -0.9661535024642944 -0.0031033530831336975 0.40625083446502686 -0.966153621673584 -0.0031073056161403656 0.37500089406967163 -0.9661538004875183 -0.003113077487796545 0.343750923871994 -0.966154932975769 -0.0031298398971557617 0.3125009536743164 -0.9661574363708496 -0.003161341417580843 0.28125113248825073 -0.9661610722541809 -0.003205972956493497 0.25000134110450745 -0.9661653637886047 -0.003258683020249009 0.21875077486038208 -0.9661707282066345 -0.0033269189298152924 0.18749846518039703 -0.9661790132522583 -0.0034287008456885815 0.1562436819076538 -0.9661911725997925 -0.0035753732081502676 0.12498640269041061 -0.9662075042724609 -0.003766605630517006 0.09372716397047043 -0.9662270545959473 -0.003991725388914347 0.06246717646718025 -0.9662476778030396 -0.0042265369556844234 0.03120754286646843 -0.9662672281265259 -0.004448653664439917 0.9661533832550049 -0.53125 -0.003092973493039608 0.9661533832550049 -0.5 -0.003092973493039608 0.5312500596046448 -0.9661533832550049 -0.0030944054014980793 0.9661533832550049 -0.5625 -0.003092973493039608 0.5625 -0.9661533832550049 -0.003093258012086153 0.9661533832550049 -0.59375 -0.003092973493039608 0.59375 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.625 -0.003092973493039608 0.625 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.65625 -0.003092973493039608 0.65625 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.6875 -0.003092973493039608 0.6875 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.71875 -0.003092973493039608 0.71875 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.75 -0.003092973493039608 0.75 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.78125 -0.003092973493039608 0.78125 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.8125 -0.003092973493039608 0.8125 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.84375 -0.003092973493039608 0.84375 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.875 -0.003092973493039608 0.875 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.90625 -0.003092973493039608 0.90625 -0.9661533832550049 -0.003092973493039608 0.9661533832550049 -0.9375 -0.003092973493039608 0.9375 -0.9661533832550049 -0.003092973493039608 0.96875 -1.0 -0.17774981260299683 1.0 -0.96875 -0.17774981260299683 0.9661533832550049 -0.46875 -0.003092973493039608 0.9661533832550049 -0.4375 -0.003092973493039608 0.9661533832550049 -0.40625 -0.003092973493039608 0.9661533832550049 -0.3750000298023224 -0.003093763254582882 0.9661533832550049 -0.34375011920928955 -0.0030977274291217327 0.9661538600921631 -0.31250032782554626 -0.0031068341340869665 0.9661571979522705 -0.28125080466270447 -0.0031257234513759613 0.9661622643470764 -0.25000131130218506 -0.0031489443499594927 0.966166615486145 -0.2187516987323761 -0.0031673768535256386 0.9661681652069092 -0.18750180304050446 -0.0031731119379401207 0.9661663174629211 -0.15625156462192535 -0.003164470661431551 0.9661622047424316 -0.12500111758708954 -0.0031454935669898987 0.9661579728126526 -0.09375065565109253 -0.0031239939853549004 0.9661545753479004 -0.06250031292438507 -0.003108022501692176 0.9661557674407959 -0.03125053644180298 -0.0031208277214318514 + + + + + + + + + + -0.35227516293525696 -0.2378612607717514 0.905148446559906 -0.42326119542121887 -0.2838526666164398 0.8603472709655762 -0.47169408202171326 -0.29908138513565063 0.8294625878334045 -0.39286476373672485 -0.25696584582328796 0.8829309940338135 -0.5151829719543457 -0.30680257081985474 0.8002563714981079 -0.4357737898826599 -0.26538896560668945 0.8600115776062012 -0.5524155497550964 -0.31431013345718384 0.7720267176628113 -0.47819453477859497 -0.2772911787033081 0.8333079218864441 -0.5792108178138733 -0.3331095278263092 0.7439802289009094 -0.5138706564903259 -0.30491042137145996 0.8018128275871277 -0.5959044098854065 -0.3642384111881256 0.7156590223312378 -0.5412762761116028 -0.3421735167503357 0.7680287957191467 -0.6069826483726501 -0.395733505487442 0.6891384720802307 -0.5637684464454651 -0.37662893533706665 0.7350382804870605 -0.6130863428115845 -0.41798150539398193 0.670339047908783 -0.5818659067153931 -0.4061708450317383 0.7045503258705139 -0.6125370264053345 -0.4213385283946991 0.6687520742416382 -0.5928831100463867 -0.42362743616104126 0.6848353743553162 -0.6065859198570251 -0.3892330825328827 0.6931974291801453 -0.5951719880104065 -0.4107486307621002 0.6906644105911255 -0.5927609801292419 -0.3183996081352234 0.7397381663322449 -0.5861995220184326 -0.3586840331554413 0.7264015674591064 -0.5643177628517151 -0.2461317777633667 0.7879878878593445 -0.5617237091064453 -0.2950529456138611 0.772911787033081 -0.5253456234931946 -0.206427201628685 0.825434148311615 -0.5266884565353394 -0.2526322305202484 0.8116092681884766 -0.48735007643699646 -0.18750572204589844 0.8528092503547668 -0.491622656583786 -0.22528763115406036 0.8411206603050232 -0.45820489525794983 -0.18872645497322083 0.868556797504425 -0.46357616782188416 -0.21155430376529694 0.860408365726471 -0.443189799785614 -0.2221747487783432 0.868434727191925 -0.4521622359752655 -0.2213507443666458 0.8640094995498657 -0.44962918758392334 -0.24909207224845886 0.8577532172203064 -0.4683065414428711 -0.2230597883462906 0.8549150228500366 -0.47987303137779236 -0.33924373984336853 0.809045672416687 -0.5320901870727539 -0.34531694650650024 0.773033857345581 -0.574419379234314 -0.34525591135025024 0.7421491146087646 -0.6062501668930054 -0.34354686737060547 0.7172154784202576 -0.6262703537940979 -0.35254982113838196 0.695303201675415 -0.635670006275177 -0.37723928689956665 0.6734519600868225 -0.6378979086875916 -0.4030579626560211 0.6562089920043945 -0.634693443775177 -0.41496017575263977 0.651875376701355 -0.6271248459815979 -0.4054994285106659 0.6650288105010986 -0.6191900372505188 -0.36060670018196106 0.6975005269050598 -0.6088747978210449 -0.2778710424900055 0.7429730892181396 -0.5860774517059326 -0.1981261670589447 0.7856074571609497 -0.5516830682754517 -0.16006958484649658 0.8185369372367859 -0.5175634026527405 -0.1518906205892563 0.8420361876487732 -0.491592139005661 -0.1676381677389145 0.8545182943344116 -0.47300636768341064 -0.21601000428199768 0.8541520237922668 -0.46534621715545654 -0.2602007985115051 0.8460035920143127 -0.5237891674041748 -0.3976256549358368 0.7533189058303833 -0.5772576332092285 -0.39280372858047485 0.7158421277999878 -0.6194341778755188 -0.3797723352909088 0.6870326995849609 -0.6488234996795654 -0.365123450756073 0.6675924062728882 -0.6645100116729736 -0.3637501001358032 0.652729868888855 -0.6675618886947632 -0.3801080286502838 0.6401867866516113 -0.6624652743339539 -0.3979003131389618 0.634632408618927 -0.6545915007591248 -0.40067750215530396 0.6410107612609863 -0.6469008326530457 -0.38370922207832336 0.6589556336402893 -0.6432996392250061 -0.334635466337204 0.6885891556739807 -0.6422315239906311 -0.24909207224845886 0.7248756289482117 -0.6330454349517822 -0.16345714032649994 0.7566453814506531 -0.6109195351600647 -0.12164677679538727 0.7822809815406799 -0.5835444331169128 -0.12073121964931488 0.8030335307121277 -0.5587633848190308 -0.14590899646282196 0.8163701295852661 -0.5339823365211487 -0.1978820115327835 0.8219855427742004 -0.5077669620513916 -0.24851222336292267 0.8248542547225952 -0.5515304803848267 -0.45554977655410767 0.6987518072128296 -0.6047242879867554 -0.43983274698257446 0.6639301776885986 -0.6473585963249207 -0.412762850522995 0.6407055854797363 -0.6778160929679871 -0.38428908586502075 0.6267586350440979 -0.6940824389457703 -0.36988434195518494 0.617572546005249 -0.6963713765144348 -0.3735465407371521 0.6127506494522095 -0.6893520951271057 -0.3815424144268036 0.6157719492912292 -0.6792199611663818 -0.3789788484573364 0.6284676790237427 -0.670613706111908 -0.36158329248428345 0.6476638317108154 -0.669545590877533 -0.317178875207901 0.6716208457946777 -0.6771752238273621 -0.2388683706521988 0.695913553237915 -0.6838282346725464 -0.1517990678548813 0.713644802570343 -0.6776635050773621 -0.09680470824241638 0.7289345860481262 -0.6568803787231445 -0.08890041708946228 0.748710572719574 -0.6270638108253479 -0.11352885514497757 0.7706229090690613 -0.5891598463058472 -0.16061891615390778 0.791863739490509 -0.5415204167366028 -0.20856349170207977 0.8143864274024963 -0.5587939023971558 -0.5115817785263062 0.652668833732605 -0.6107974648475647 -0.4863734841346741 0.6247444152832031 -0.6550797820091248 -0.44819483160972595 0.6082338690757751 -0.6896572709083557 -0.40797144174575806 0.5982543230056763 -0.7118442058563232 -0.3793145418167114 0.5910825133323669 -0.7208471894264221 -0.3660084903240204 0.5885189175605774 -0.7180700302124023 -0.3577379584312439 0.5969725847244263 -0.7055574059486389 -0.34635457396507263 0.6182134747505188 -0.6878566741943359 -0.33124789595603943 0.6458327174186707 -0.6761375665664673 -0.3009124994277954 0.6725058555603027 -0.6803185939788818 -0.24170659482479095 0.6918851137161255 -0.69576096534729 -0.16171757876873016 0.6997894048690796 -0.7061372995376587 -0.08990752696990967 0.7023224830627441 -0.6976531147956848 -0.05609302222728729 0.7142246961593628 -0.6670125722885132 -0.062349315732717514 0.7423932552337646 -0.6161991953849792 -0.09656056761741638 0.7816095352172852 -0.5486312508583069 -0.13892024755477905 0.8243964910507202 -0.5447859168052673 -0.5651722550392151 0.6194646954536438 -0.5969115495681763 -0.5339213013648987 0.598803699016571 -0.6449171304702759 -0.48844873905181885 0.5877254605293274 -0.6849879622459412 -0.43946653604507446 0.5810418725013733 -0.713553249835968 -0.3981139659881592 0.5764335989952087 -0.7285988926887512 -0.3638111650943756 0.5802484154701233 -0.7287514805793762 -0.33091220259666443 0.599475085735321 -0.7141636610031128 -0.3024994730949402 0.6311838030815125 -0.6879787445068359 -0.28327280282974243 0.6681112051010132 -0.6590166687965393 -0.26725059747695923 0.7029938697814941 -0.6433911919593811 -0.23673208057880402 0.7279580235481262 -0.6509903073310852 -0.17847225069999695 0.7377849817276001 -0.669820249080658 -0.09918515384197235 0.7358317971229553 -0.6762291193008423 -0.030487991869449615 0.7360454201698303 -0.6552323698997498 0.0007324442267417908 0.7553941607475281 -0.6027100682258606 -0.007477034814655781 0.7979064583778381 -0.521683394908905 -0.040101319551467896 0.8521683216094971 -0.5124362707138062 -0.6161991953849792 0.5980406999588013 -0.5638599991798401 -0.5833918452262878 0.5845515131950378 -0.6139103174209595 -0.5346232652664185 0.5807061791419983 -0.6572465896606445 -0.48017823696136475 0.5808587670326233 -0.6892605423927307 -0.42548906803131104 0.5863521099090576 -0.7066560983657837 -0.3645130693912506 0.6064027547836304 -0.7065645456314087 -0.3036591708660126 0.6391491293907166 -0.6920682191848755 -0.25806450843811035 0.6740623116493225 -0.6682943105697632 -0.22769859433174133 0.7081515192985535 -0.635364830493927 -0.21097445487976074 0.7427899837493896 -0.599597156047821 -0.20139163732528687 0.7744987607002258 -0.5790581703186035 -0.1748100221157074 0.7962889671325684 -0.5816217660903931 -0.10641804337501526 0.8064516186714172 -0.5884883999824524 -0.01196325570344925 0.808374285697937 -0.574114203453064 0.0635395348072052 0.8162785768508911 -0.5243995189666748 0.09607227146625519 0.8460035920143127 -0.4372997283935547 0.08221686631441116 0.8955045938491821 -0.4603717029094696 -0.6641132831573486 0.5890377759933472 -0.5058748126029968 -0.633838951587677 0.5850703716278076 -0.5535447001457214 -0.5863215923309326 0.5914182066917419 -0.5977050065994263 -0.5284585356712341 0.6028321385383606 -0.6331675052642822 -0.45719778537750244 0.6245002746582031 -0.6553850173950195 -0.3668324947357178 0.6602069139480591 -0.6595050096511841 -0.28083133697509766 0.6972258687019348 -0.6493728160858154 -0.2233649641275406 0.7268898487091064 -0.6324961185455322 -0.1835688352584839 0.7524643540382385 -0.6083254218101501 -0.15305031836032867 0.7787713408470154 -0.5720999836921692 -0.14038515090942383 0.808038592338562 -0.5298013091087341 -0.13260293006896973 0.8376720547676086 -0.49745169281959534 -0.08621478825807571 0.8631855249404907 -0.4772484600543976 0.01348918117582798 0.8786584138870239 -0.4506057798862457 0.12222663313150406 0.8842738270759583 -0.39909055829048157 0.19504378736019135 0.8959013819694519 -0.3186437487602234 0.20392468571662903 0.9256569147109985 -0.38456374406814575 -0.7070833444595337 0.5933713912963867 -0.4216132164001465 -0.6815698742866516 0.5980406999588013 -0.46507155895233154 -0.6380504965782166 0.6136051416397095 -0.5092318654060364 -0.5772576332092285 0.6382641196250916 -0.5495467782020569 -0.4907376170158386 0.6761070489883423 -0.5814996957778931 -0.3785210847854614 0.7201147675514221 -0.5980406999588013 -0.27326273918151855 0.7534104585647583 -0.5983763933181763 -0.20245979726314545 0.7751701474189758 -0.5868098735809326 -0.1518601030111313 0.7953428626060486 -0.5653248429298401 -0.10583819448947906 0.8180181384086609 -0.5323954224586487 -0.07553330808877945 0.843104362487793 -0.48875391483306885 -0.06503494083881378 0.869960606098175 -0.44157230854034424 -0.03360087797045708 0.8965727686882019 -0.3970153033733368 0.05645924061536789 0.9160435795783997 -0.35221412777900696 0.1750236451625824 0.9194006323814392 -0.3015228807926178 0.2681661546230316 0.9149448871612549 -0.24225592613220215 0.2932523488998413 0.9248023629188538 -0.2924283444881439 -0.7419354915618896 0.6033204197883606 -0.3239845037460327 -0.7212439179420471 0.6122012734413147 -0.3633228540420532 -0.6817834973335266 0.634907066822052 -0.4054078757762909 -0.6186102032661438 0.6729636788368225 -0.44700461626052856 -0.5243995189666748 0.7246620059013367 -0.4852137863636017 -0.4035157263278961 0.7756889462471008 -0.5133823752403259 -0.287026584148407 0.808709979057312 -0.5261390805244446 -0.1983092725276947 0.82692950963974 -0.521317183971405 -0.1270180344581604 0.843836784362793 -0.4987029731273651 -0.06103701889514923 0.8645893931388855 -0.461317777633667 -0.01275673694908619 0.887112021446228 -0.41636401414871216 0.005890072323381901 0.9091768860816956 -0.3717459738254547 0.03015228733420372 0.9278237223625183 -0.33127841353416443 0.10696737468242645 0.9374370574951172 -0.2936185896396637 0.21668142080307007 0.9310281872749329 -0.2598040699958801 0.3081759214401245 0.9151280522346497 -0.2307504564523697 0.3397625684738159 0.9117404818534851 -0.20090334117412567 -0.7674489617347717 0.6087527275085449 -0.2302316427230835 -0.7503890991210938 0.6195562481880188 -0.2641376852989197 -0.713003933429718 0.6494644284248352 -0.29850155115127563 -0.6479690074920654 0.7007049918174744 -0.3318582773208618 -0.5525681376457214 0.7645191550254822 -0.3660390079021454 -0.43372905254364014 0.8233283758163452 -0.3973204791545868 -0.31394389271736145 0.862269937992096 -0.41731008887290955 -0.20795312523841858 0.8846095204353333 -0.4190801680088043 -0.11020233482122421 0.9012115597724915 -0.40046387910842896 -0.01892147585749626 0.9161046147346497 -0.365062415599823 0.04678487405180931 0.9297769069671631 -0.32151249051094055 0.0709555372595787 0.9442121386528015 -0.28049561381340027 0.08648945391178131 0.9559312462806702 -0.251930296421051 0.14511550962924957 0.9567857980728149 -0.23908200860023499 0.23612171411514282 0.9418317079544067 -0.23972289264202118 0.31464582681655884 0.9184240102767944 -0.24909207224845886 0.34568315744400024 0.904660165309906 -0.1188085600733757 -0.7858515977859497 0.6068605780601501 -0.14618365466594696 -0.7703176736831665 0.6206549406051636 -0.17242957651615143 -0.7319864630699158 0.6591082215309143 -0.19421979784965515 -0.6636860370635986 0.7223120927810669 -0.21277505159378052 -0.5691396594047546 0.7942137122154236 -0.23413801193237305 -0.45719778537750244 0.8579668402671814 -0.25766777992248535 -0.33906063437461853 0.904782235622406 -0.27457502484321594 -0.22025208175182343 0.9359721541404724 -0.2771691083908081 -0.09982604533433914 0.9555955529212952 -0.2641682028770447 0.013061922043561935 0.964384913444519 -0.23960082232952118 0.09317301213741302 0.9663686156272888 -0.20935697853565216 0.12231818586587906 0.9701223969459534 -0.18137149512767792 0.12854395806789398 0.9749442934989929 -0.16830958425998688 0.16290780901908875 0.9721671342849731 -0.17972350120544434 0.22690512239933014 0.9571520090103149 -0.21109652519226074 0.28946805000305176 0.9335917234420776 -0.24903103709220886 0.32053589820861816 0.9139072895050049 -0.03900265693664551 -0.7988219857215881 0.600268542766571 -0.0632343515753746 -0.7833796143531799 0.6183050274848938 -0.08355967700481415 -0.7419965267181396 0.6651204228401184 -0.09671315550804138 -0.6683553457260132 0.7374798059463501 -0.10223700851202011 -0.5719473958015442 0.8138676285743713 -0.10486160218715668 -0.46421703696250916 0.8794518709182739 -0.10846278071403503 -0.3487044870853424 0.9309061169624329 -0.1110568568110466 -0.22342601418495178 0.9683523178100586 -0.10852381587028503 -0.09048738330602646 0.9899594187736511 -0.10086367279291153 0.03253272920846939 0.9943540692329407 -0.09121982753276825 0.11828973889350891 0.9887691736221313 -0.08169805258512497 0.14963224530220032 0.9853510856628418 -0.07705923914909363 0.14749595522880554 0.9860225319862366 -0.08841212093830109 0.15683461725711823 0.9836421012878418 -0.12131107598543167 0.19397564232349396 0.9734488725662231 -0.16406750679016113 0.24762718379497528 0.9548326134681702 -0.20142215490341187 0.2865993082523346 0.9366130828857422 0.04858546704053879 -0.8055970668792725 0.5904415845870972 0.02706991881132126 -0.790612518787384 0.6116519570350647 0.009094515815377235 -0.747306764125824 0.6643879413604736 -0.001831110566854477 -0.6681722402572632 0.7439497113227844 -0.0013733329251408577 -0.5644398331642151 0.82546466588974 0.010742515325546265 -0.4520706832408905 0.8919034600257874 0.027985472232103348 -0.33637499809265137 0.9412823915481567 0.04306161776185036 -0.21176794171333313 0.9763481616973877 0.05258339270949364 -0.0795312374830246 0.9954222440719604 0.055207982659339905 0.0399487279355526 0.9976500868797302 0.051271095871925354 0.12170781195163727 0.9912106394767761 0.04156620800495148 0.14911343157291412 0.9879146814346313 0.021607104688882828 0.1357463300228119 0.9904782176017761 -0.014038514345884323 0.12460707128047943 0.9920957088470459 -0.05871761217713356 0.14899136126041412 0.9870601296424866 -0.095583975315094 0.20969267189502716 0.9730521440505981 -0.11618396639823914 0.26419875025749207 0.9574266672134399 0.13324381411075592 -0.8060548901557922 0.5766167044639587 0.11520737409591675 -0.7923520803451538 0.599078357219696 0.10257270932197571 -0.748954713344574 0.6546220183372498 0.09680470824241638 -0.6662495732307434 0.7393719553947449 0.10019226372241974 -0.5529953837394714 0.82711261510849 0.11532944440841675 -0.4293038845062256 0.8957487940788269 0.13925595581531525 -0.3085726499557495 0.9409161806106567 0.16318246722221375 -0.18805505335330963 0.9684743881225586 0.17783135175704956 -0.06680501997470856 0.981780469417572 0.17893001437187195 0.03891110047698021 0.983062207698822 0.1670583188533783 0.10837122797966003 0.9799493551254272 0.1427350640296936 0.12350840866565704 0.981994092464447 0.10461744666099548 0.09585864096879959 0.9898678660392761 0.05883968621492386 0.07641834765672684 0.9953306913375854 0.021637622267007828 0.10907315462827682 0.9937742352485657 0.0037537766620516777 0.18808557093143463 0.982116162776947 0.00045777764171361923 0.25647756457328796 0.9665212035179138 0.20056764781475067 -0.8022705912590027 0.5622425079345703 0.19217506051063538 -0.7884762287139893 0.5842158198356628 0.19220557808876038 -0.7444685101509094 0.6393627524375916 0.1992248296737671 -0.6601153612136841 0.7242347598075867 0.20957060158252716 -0.5409100651741028 0.8145390152931213 0.2230292707681656 -0.40739157795906067 0.8855860829353333 0.24088259041309357 -0.2792443633079529 0.9295022487640381 0.2607501447200775 -0.16061891615390778 0.9519333243370056 0.27524644136428833 -0.05218665301799774 0.9599291682243347 0.2762535512447357 0.033631399273872375 0.9604785442352295 0.25827813148498535 0.08047731220722198 0.9627063870429993 0.2211676388978958 0.07599108666181564 0.9722586870193481 0.1752067655324936 0.041749320924282074 0.9836115837097168 0.13983580470085144 0.03506576642394066 0.9895321726799011 0.12826929986476898 0.09161656349897385 0.9874874353408813 0.1349833607673645 0.18619342148303986 0.9731742143630981 0.14392529428005219 0.2555009722709656 0.9560227990150452 -0.29856258630752563 -0.2210760861635208 0.9284035563468933 -0.26728111505508423 -0.20444349944591522 0.9416486024856567 -0.20941801369190216 -0.191320538520813 0.9588915705680847 -0.18518631160259247 -0.18045595288276672 0.9659718871116638 -0.1428571492433548 -0.1670888364315033 0.9755241274833679 -0.12344737350940704 -0.16144292056560516 0.9790948033332825 -0.09772026538848877 -0.14868617057800293 0.9840388298034668 -0.08301034569740295 -0.14569535851478577 0.9858089089393616 -0.06930753588676453 -0.1359294354915619 0.9882808923721313 -0.05856502056121826 -0.13281655311584473 0.9893795847892761 -0.05682546645402908 -0.1273232251405716 0.9902035593986511 -0.0473952442407608 -0.12131107598543167 0.9914548397064209 -0.05810724198818207 -0.1194799616932869 0.9911190867424011 -0.04660176485776901 -0.10858485847711563 0.9929807186126709 -0.06512650102376938 -0.10827967524528503 0.9919736385345459 -0.04925687611103058 -0.09289833903312683 0.9944456219673157 -0.06826990842819214 -0.09161656349897385 0.9934385418891907 -0.04901272803544998 -0.07486190646886826 0.9959715604782104 -0.0636310949921608 -0.0714133083820343 0.9953917264938354 -0.04440443217754364 -0.05685598403215408 0.9973754286766052 -0.053498946130275726 -0.05178990960121155 0.9971923232078552 -0.03717154264450073 -0.04110843315720558 0.9984435439109802 -0.04184087738394737 -0.03564561903476715 0.9984740614891052 -0.029084138572216034 -0.028260139748454094 0.999176025390625 -0.030640583485364914 -0.023285623639822006 0.999237060546875 -0.02063051238656044 -0.017883846536278725 0.999603271484375 -0.0199591051787138 -0.014374217949807644 0.99969482421875 -0.012329477816820145 -0.010193182155489922 0.999847412109375 0.9370098114013672 -0.0007324442267417908 0.3492538332939148 0.9848933219909668 0.0 0.17313151061534882 0.9848933219909668 0.0 0.17313151061534882 0.9371623992919922 -0.00030518509447574615 0.3488265573978424 -0.00198370311409235 -0.002868739888072014 0.999969482421875 -0.0006103701889514923 0.17990660667419434 0.9836726188659668 -0.001342814415693283 0.17838068306446075 0.9839472770690918 -0.003418073058128357 -0.005798516795039177 0.999969482421875 -0.33726003766059875 -0.22388377785682678 0.9143955707550049 -0.24130985140800476 -0.18585772812366486 0.9524521827697754 -0.1668446958065033 -0.15536972880363464 0.9736319780349731 -0.11413922905921936 -0.13379314541816711 0.9844050407409668 -0.079439677298069 -0.12012085318565369 0.9895626902580261 -0.062868133187294 -0.11279641091823578 0.9916074275970459 -0.0636921301484108 -0.10950040817260742 0.9919126033782959 -0.07486190646886826 -0.10605181753635406 0.9915158748626709 -0.08462782949209213 -0.09723196923732758 0.9916379451751709 -0.08417005091905594 -0.08096560835838318 0.9931333065032959 -0.07309182733297348 -0.060701314359903336 0.9954527616500854 -0.05728324130177498 -0.04193243384361267 0.9974669814109802 -0.04208502545952797 -0.027497176080942154 0.9987182021141052 -0.02865688130259514 -0.017639698460698128 0.999420166015625 0.9367961883544922 -0.0012512588873505592 0.3498336672782898 0.9365520477294922 -0.0017090365290641785 0.3504440486431122 0.9848628044128418 -3.0518509447574615e-05 0.17316202819347382 0.9848628044128418 -3.0518509447574615e-05 0.17316202819347382 -0.03781243413686752 -0.019257180392742157 0.99908447265625 0.15369121730327606 -0.013122959062457085 0.9880062341690063 0.16080202162265778 -0.011658070608973503 0.9869075417518616 -0.3811761736869812 -0.23471786081790924 0.8941923379898071 -0.28046509623527527 -0.1910763829946518 0.9406415224075317 -0.19650867581367493 -0.15329447388648987 0.9684133529663086 -0.1342814415693283 -0.12521743774414062 0.982970654964447 -0.09186071157455444 -0.10635700821876526 0.9900509715080261 -0.06909390538930893 -0.0951872318983078 0.9930417537689209 -0.06585894525051117 -0.09045685827732086 0.9937132000923157 -0.07721182703971863 -0.08999908715486526 0.9929196834564209 -0.09305093437433243 -0.08868678659200668 0.9916989803314209 -0.10080263763666153 -0.08047731220722198 0.9916379451751709 -0.09329508244991302 -0.06430249661207199 0.9935300946235657 -0.07480086386203766 -0.045533616095781326 0.9961546659469604 -0.05478072538971901 -0.029847102239727974 0.9980468153953552 0.9363383650779724 -0.0020142216235399246 0.3510544002056122 0.9848628044128418 -6.103701889514923e-05 0.17316202819347382 -0.04696798697113991 -0.01904354989528656 0.9986876845359802 0.14691610634326935 -0.013122959062457085 0.9890438318252563 -0.42472609877586365 -0.26670125126838684 0.8651081919670105 -0.3249305784702301 -0.2209845334291458 0.9195227026939392 -0.23435163497924805 -0.1754814237356186 0.9561754465103149 -0.16278572380542755 -0.13672292232513428 0.9771111011505127 -0.1115756705403328 -0.10724204033613205 0.9879451990127563 -0.08078249543905258 -0.0870998278260231 0.9928891658782959 -0.07049775868654251 -0.07583849877119064 0.9945982098579407 -0.07730338722467422 -0.07205419987440109 0.9943845868110657 -0.09451582282781601 -0.07235938310623169 0.9928586483001709 -0.11023285984992981 -0.07025361061096191 0.9913938045501709 -0.11032441258430481 -0.06042664870619774 0.9920346736907959 -0.09244056791067123 -0.044801171869039536 0.9946897625923157 -0.06811731308698654 -0.029633473604917526 0.9972228407859802 0.9361247420310974 -0.002075258642435074 0.35163426399230957 0.9848628044128418 -6.103701889514923e-05 0.17316202819347382 -0.0554826483130455 -0.016937773674726486 0.9982909560203552 0.14087343215942383 -0.011719107627868652 0.9899289011955261 -0.46433910727500916 -0.3091525137424469 0.8299203515052795 -0.3715933561325073 -0.26532793045043945 0.8896450400352478 -0.28055664896965027 -0.21558275818824768 0.9353007674217224 -0.20297861099243164 -0.1667531430721283 0.964873194694519 -0.1429792195558548 -0.12430188804864883 0.981872022151947 -0.10208441317081451 -0.09179967641830444 0.9905087351799011 -0.08206427097320557 -0.07046724110841751 0.9941099286079407 -0.08090456575155258 -0.05945005640387535 0.9949339032173157 -0.09445478767156601 -0.056062500923871994 0.9939268231391907 -0.11386455595493317 -0.055055391043424606 0.9919431209564209 -0.12201300263404846 -0.04998932033777237 0.9912412166595459 -0.10779137909412384 -0.03888057917356491 0.9934080243110657 -0.08075197786092758 -0.02624591812491417 0.9963682889938354 0.9359416365623474 -0.0018616290763020515 0.35212257504463196 0.9848628044128418 -6.103701889514923e-05 0.17319254577159882 -0.06250190734863281 -0.012512588873505592 0.9979552626609802 0.13605152070522308 -0.008636738173663616 0.9906613230705261 -0.4994659125804901 -0.34723961353302 0.7936643362045288 -0.41669973731040955 -0.3078096807003021 0.8553117513656616 -0.33103427290916443 -0.2595294117927551 0.9071931838989258 -0.2533646523952484 -0.2061525285243988 0.9451277256011963 -0.18726158142089844 -0.15356913208961487 0.9702139496803284 -0.1358378827571869 -0.10821863263845444 0.9847712516784668 -0.10370189696550369 -0.07452619820833206 0.9917905330657959 -0.09167760610580444 -0.053559985011816025 0.9943235516548157 -0.09775078296661377 -0.043336283415555954 0.9942625164985657 -0.11584825813770294 -0.0394299142062664 0.9924619197845459 -0.12915432453155518 -0.03573717549443245 0.9909664988517761 -0.1192663311958313 -0.02850428782403469 0.9924314022064209 -0.09103671461343765 -0.019501328468322754 0.9956358671188354 0.9357890486717224 -0.0013733329251408577 0.35245826840400696 0.9848628044128418 -3.0518509447574615e-05 0.17319254577159882 -0.06711020320653915 -0.0064699240028858185 0.9977111220359802 0.13284707069396973 -0.004394665360450745 0.9911190867424011 -0.5299233794212341 -0.3815118968486786 0.7573473453521729 -0.4585406184196472 -0.34568315744400024 0.8186590075492859 -0.3818475902080536 -0.299478143453598 0.8743247985839844 -0.3093051016330719 -0.2452772557735443 0.9187597036361694 -0.24204230308532715 -0.18717001378536224 0.9520248770713806 -0.1823786199092865 -0.13165685534477234 0.9743644595146179 -0.13721121847629547 -0.08581805229187012 0.9867854714393616 -0.11175878345966339 -0.05371257662773132 0.9922788143157959 -0.10724204033613205 -0.03482161834836006 0.9935911297798157 -0.12009033560752869 -0.02536088228225708 0.9924314022064209 -0.1341288536787033 -0.020142216235399246 0.9907528758049011 -0.1266518086194992 -0.015259254723787308 0.9918210506439209 -0.09784234315156937 -0.010223700664937496 0.9951170086860657 0.9356974959373474 -0.0006714072078466415 0.35276344418525696 0.9848628044128418 0.0 0.17319254577159882 -0.06863612681627274 0.0003662221133708954 0.9976195693016052 0.13174840807914734 0.0002441480755805969 0.9912717342376709 -0.5540635585784912 -0.41047394275665283 0.7242042422294617 -0.49723806977272034 -0.3809015154838562 0.7795037627220154 -0.43308815360069275 -0.33564257621765137 0.8364818096160889 -0.36851099133491516 -0.2793053984642029 0.886654257774353 -0.3039033114910126 -0.21726126968860626 0.9275795817375183 -0.23941770195960999 -0.15494246780872345 0.9584643244743347 -0.1822870522737503 -0.09952086210250854 0.9781792759895325 -0.1421246975660324 -0.05688650161027908 0.9881893396377563 -0.12460707128047943 -0.02862636186182499 0.9917905330657959 -0.12891018390655518 -0.01235999632626772 0.9915769100189209 -0.13901181519031525 -0.004181035794317722 0.9902645945549011 -0.13028351962566376 -0.0007019257172942162 0.9914548397064209 -0.10037537664175034 0.00030518509447574615 0.9949339032173157 0.9356669783592224 3.0518509447574615e-05 0.35285499691963196 0.9848628044128418 0.0 0.17319254577159882 -0.06680501997470856 0.007202368229627609 0.9977111220359802 0.13309122622013092 0.004913480021059513 0.9910885691642761 -0.5696890354156494 -0.41694387793540955 0.7082125544548035 -0.5303201675415039 -0.40217292308807373 0.7462996244430542 -0.4842371940612793 -0.3642384111881256 0.7954954504966736 -0.43177586793899536 -0.30710774660110474 0.8480788469314575 -0.3716239035129547 -0.23993651568889618 0.8968169093132019 -0.3041474521160126 -0.17151401937007904 0.9370403289794922 -0.23664052784442902 -0.10904263705015182 0.965422511100769 -0.1818292737007141 -0.05844294652342796 0.981566846370697 -0.1500595062971115 -0.02224799245595932 0.9884029626846313 -0.1430097371339798 0.0005493331700563431 0.9897152781486511 -0.14456617832183838 0.011780144646763802 0.9894101023674011 -0.13034455478191376 0.0138248847797513 0.9913632869720459 -0.09842219203710556 0.010834070853888988 0.9950559735298157 0.9356974959373474 0.0007629627361893654 0.35273292660713196 0.9848628044128418 0.0 0.17319254577159882 -0.06195257604122162 0.01309244055300951 0.9979857802391052 0.13650929927825928 0.00906399730592966 0.9905697703361511 -0.573442816734314 -0.3870662450790405 0.7220069169998169 -0.5524765849113464 -0.39405500888824463 0.7344584465026855 -0.5294961333274841 -0.3729361891746521 0.7619251012802124 -0.49662771821022034 -0.3233130872249603 0.8054749965667725 -0.4448378086090088 -0.2543412446975708 0.8586993217468262 -0.3750419616699219 -0.17999817430973053 0.9093295335769653 -0.29737234115600586 -0.1116672232747078 0.9481795430183411 -0.22855311632156372 -0.0554216131567955 0.9719229936599731 -0.1825312077999115 -0.01309244055300951 0.983092725276947 -0.16180913150310516 0.014831995591521263 0.9866939187049866 -0.1500900238752365 0.0276497695595026 0.9882808923721313 -0.1264381855726242 0.027161473408341408 0.9915769100189209 -0.09213537722826004 0.0199591051787138 0.9955443143844604 0.9358195662498474 0.001434369944036007 0.35242775082588196 0.9848628044128418 3.0518509447574615e-05 0.17319254577159882 -0.05484176054596901 0.017212439328432083 0.9983214735984802 0.14148381352424622 0.01196325570344925 0.9898373484611511 -0.5611743330955505 -0.33555102348327637 0.7566148638725281 -0.5588549375534058 -0.35932493209838867 0.747337281703949 -0.5614184737205505 -0.3567918837070465 0.7466353178024292 -0.5554368495941162 -0.32163456082344055 0.7668080925941467 -0.5192724466323853 -0.25849178433418274 0.8145390152931213 -0.4499954283237457 -0.1824091374874115 0.8741722106933594 -0.36268195509910583 -0.10910367220640182 0.9254738092422485 -0.28064820170402527 -0.047212135046720505 0.9586169123649597 -0.22037415206432343 0.00027466658502817154 0.9754020571708679 -0.1828669011592865 0.03091524913907051 0.982634961605072 -0.15326395630836487 0.04214606061577797 0.9872737526893616 -0.11807611584663391 0.03741569072008133 0.9922788143157959 -0.08224738389253616 0.026367992162704468 0.9962462186813354 0.9359416365623474 0.0019226660951972008 0.35206151008605957 0.9848628044128418 6.103701889514923e-05 0.17319254577159882 -0.046327099204063416 0.01916562393307686 0.9987182021141052 0.14758750796318054 0.013214514590799809 0.9889522790908813 -0.5366985201835632 -0.2919095456600189 0.791650116443634 -0.5511642694473267 -0.3189794719219208 0.7709891200065613 -0.5783867835998535 -0.3254493772983551 0.748008668422699 -0.6022217273712158 -0.3020416796207428 0.7389446496963501 -0.5881832242012024 -0.24839015305042267 0.7695852518081665 -0.5250099301338196 -0.17581713199615479 0.8326975107192993 -0.431043416261673 -0.10040589421987534 0.8966948390007019 -0.33655813336372375 -0.034424878656864166 0.9410077333450317 -0.2607501447200775 0.01580858789384365 0.965269923210144 -0.20236822962760925 0.04544205963611603 0.9782403111457825 -0.1517075151205063 0.05221717059612274 0.9870296120643616 -0.10568559914827347 0.04300057888031006 0.9934385418891907 -0.07010101526975632 0.029511399567127228 0.9971007108688354 0.9361247420310974 0.002075258642435074 0.35157322883605957 0.9848628044128418 6.103701889514923e-05 0.17316202819347382 -0.03714102506637573 0.01919614151120186 0.999114990234375 0.15445417165756226 0.01303140353411436 0.9878841638565063 -0.5098727345466614 -0.2593157887458801 0.8202154636383057 -0.5380107760429382 -0.28366953134536743 0.7937253713607788 -0.5869319438934326 -0.28998687863349915 0.7558824419975281 -0.6379589438438416 -0.2700583040714264 0.7211218476295471 -0.6476638317108154 -0.2230903059244156 0.7284768223762512 -0.5954466462135315 -0.15613269805908203 0.7880489230155945 -0.4982451796531677 -0.08285775035619736 0.8630329370498657 -0.39170506596565247 -0.01818903163075447 0.9198889136314392 -0.29807427525520325 0.028321176767349243 0.9541001319885254 -0.21658986806869507 0.05182042717933655 0.9748527407646179 -0.14566484093666077 0.05365154147148132 0.9878536462783813 -0.09155552834272385 0.04275643080472946 0.9948728680610657 -0.05737479776144028 0.02941984310746193 0.9978942275047302 0.9363383650779724 0.0020142216235399246 0.3509933650493622 0.9848628044128418 6.103701889514923e-05 0.17316202819347382 -0.028077028691768646 0.017273476347327232 0.99945068359375 0.16159550845623016 0.011383404023945332 0.9867854714393616 -0.48753318190574646 -0.23355814814567566 0.8412732481956482 -0.5275124311447144 -0.24945829808712006 0.8120670318603516 -0.5949888825416565 -0.25061801075935364 0.7636341452598572 -0.6675618886947632 -0.2296822965145111 0.7081820368766785 -0.6969817280769348 -0.18649861216545105 0.6923733949661255 -0.6564836502075195 -0.1265602558851242 0.7436140179634094 -0.557451069355011 -0.06097598373889923 0.8279366493225098 -0.4383068382740021 -0.005584887228906155 0.8988006114959717 -0.3261513113975525 0.029969176277518272 0.9448225498199463 -0.22443312406539917 0.04519791156053543 0.9734183549880981 -0.13876765966415405 0.04504531994462013 0.9892879724502563 -0.0792260468006134 0.03671376779675484 0.9961546659469604 -0.04589983820915222 0.02621540054678917 0.9985961318016052 0.9365825653076172 0.0016785180196166039 0.3503830134868622 0.9848628044128418 3.0518509447574615e-05 0.17316202819347382 -0.0199591051787138 0.013458662666380405 0.99969482421875 0.16824854910373688 0.008545182645320892 0.9856868386268616 -0.48112431168556213 -0.21707816421985626 0.8493301272392273 -0.5298318266868591 -0.20975372195243835 0.8217414021492004 -0.6085696220397949 -0.19718009233474731 0.7685781717300415 -0.6932889819145203 -0.17572557926177979 0.6988738775253296 -0.7345499992370605 -0.1423688530921936 0.6634113788604736 -0.7025055885314941 -0.09756767749786377 0.7049470543861389 -0.6021912097930908 -0.04821924492716789 0.7968688011169434 -0.47141942381858826 -0.007568590342998505 0.8818628787994385 -0.34391307830810547 0.016876734793186188 0.938840925693512 -0.22904141247272491 0.0276497695595026 0.9730216264724731 -0.1349223256111145 0.029663991183042526 0.9903866648674011 -0.0714133083820343 0.026459548622369766 0.9970701932907104 -0.037018951028585434 0.020264290273189545 0.99908447265625 0.9368267059326172 0.0011597033590078354 0.3497726321220398 0.9848628044128418 3.0518509447574615e-05 0.17316202819347382 -0.0138248847797513 0.008362071588635445 0.999847412109375 0.17346720397472382 0.00515762809664011 0.9848017692565918 -0.503921627998352 -0.18845179677009583 0.842921257019043 -0.5547044277191162 -0.1517990678548813 0.8180486559867859 -0.6302987933158875 -0.12170781195163727 0.7667165398597717 -0.712607204914093 -0.10263374447822571 0.6939908862113953 -0.7563707232475281 -0.08929716050624847 0.6479690074920654 -0.7286904454231262 -0.07272560894489288 0.6809290051460266 -0.6295968294143677 -0.049592576920986176 0.7753227353096008 -0.4933927357196808 -0.024842066690325737 0.869411289691925 -0.3568529188632965 -0.005523850210011005 0.9341105222702026 -0.23474837839603424 0.006256294436752796 0.9720145463943481 -0.1358073651790619 0.012268440797924995 0.9906308054924011 -0.06872768700122833 0.013977477326989174 0.9975280165672302 -0.0316171757876873 0.012115848250687122 0.999420166015625 0.9370098114013672 0.0006408886983990669 0.3492538332939148 0.9848933219909668 0.0 0.17313151061534882 -0.0008545182645320892 -0.0010681478306651115 0.999969482421875 -0.0002136295661330223 -0.0002441480755805969 0.999969482421875 0.0 0.18082216382026672 0.9834895133972168 -0.00015259254723787308 0.18063905835151672 0.9835200309753418 -0.23926511406898499 -0.17282631993293762 0.9554429650306702 -0.3111362159252167 -0.20850245654582977 0.9271828532218933 -0.21021148562431335 -0.14108707010746002 0.9674062132835388 -0.2685323655605316 -0.17801447212696075 0.9466536641120911 -0.17999817430973053 -0.11587878316640854 0.9768059253692627 -0.22782067954540253 -0.1507004052400589 0.9619433879852295 -0.1499374359846115 -0.09399700909852982 0.9841914176940918 -0.191351056098938 -0.1262550801038742 0.9733573198318481 -0.12079226225614548 -0.07419049739837646 0.9898983836174011 -0.1576281040906906 -0.10513626784086227 0.981872022151947 -0.09344767779111862 -0.058351390063762665 0.9938963055610657 -0.12485121935606003 -0.0877101942896843 0.9882808923721313 -0.06955168396234512 -0.04681539535522461 0.9964598417282104 -0.09378337860107422 -0.07254249602556229 0.9929196834564209 -0.050355538725852966 -0.03823969140648842 0.9979857802391052 -0.06714072078466415 -0.05844294652342796 0.9960020780563354 -0.03576769307255745 -0.03097628802061081 0.9988707900047302 -0.04666280001401901 -0.04586932063102722 0.9978331923484802 -0.024353770539164543 -0.0238959938287735 0.9993896484375 -0.0318002849817276 -0.035279396921396255 0.9988402724266052 -0.014984588138759136 -0.016418958082795143 0.999725341796875 -0.02059999480843544 -0.02554399147629738 0.99945068359375 -0.007782219909131527 -0.009369182400405407 0.999908447265625 -0.01184118166565895 -0.016174810007214546 0.999786376953125 -0.0031128879636526108 -0.004028443247079849 0.999969482421875 -0.00555436871945858 -0.008178960531949997 0.99993896484375 -3.0518509447574615e-05 0.9372844696044922 0.3485213816165924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9848933219909668 0.17313151061534882 -0.00012207403779029846 0.9372234344482422 0.3486739695072174 0.1675771325826645 -0.008941923268139362 0.9858089089393616 -0.16541032493114471 -0.14917448163032532 0.9748527407646179 -0.14560380578041077 -0.11560411751270294 0.982543408870697 -0.12433240562677383 -0.08957182615995407 0.9881588220596313 -0.10266426205635071 -0.06836146116256714 0.9923398494720459 -0.08224738389253616 -0.05008087307214737 0.9953306913375854 -0.0640278309583664 -0.036835841834545135 0.9972533583641052 -0.04861598461866379 -0.028992583975195885 0.9983825087547302 -0.036042358726263046 -0.024292733520269394 0.9990233778953552 -0.02554399147629738 -0.0198370311409235 0.99945068359375 -0.01654103212058544 -0.014557329006493092 0.999755859375 -0.00918607134371996 -0.009033478796482086 0.999908447265625 -0.0040894802659749985 -0.004425183869898319 0.999969482421875 -0.0012817773967981339 -0.0014648884534835815 0.999969482421875 0.0 0.9373149871826172 0.3484298288822174 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.10763878375291824 -0.13208410143852234 0.9853510856628418 -0.09314249455928802 -0.09790337830781937 0.9908139109611511 -0.0788598284125328 -0.0713827908039093 0.9942930340766907 -0.06521805375814438 -0.05105746537446976 0.9965513944625854 -0.052858058363199234 -0.034516435116529465 0.9979857802391052 -0.04199346899986267 -0.023285623639822006 0.9988402724266052 -0.03244117647409439 -0.01757866144180298 0.999298095703125 -0.0238044373691082 -0.014496291987597942 0.999603271484375 -0.01593066193163395 -0.011261329986155033 0.999786376953125 -0.009277626872062683 -0.007446516305208206 0.999908447265625 -0.004394665360450745 -0.0039674062281847 0.999969482421875 -0.0015259254723787308 -0.0015259254723787308 0.999969482421875 -0.00030518509447574615 -0.00033570360392332077 0.999969482421875 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.06997894495725632 -0.11844233423471451 0.9904782176017761 -0.05868709459900856 -0.08529923111200333 0.9945982098579407 -0.048860132694244385 -0.05963316559791565 0.9970091581344604 -0.04028443247079849 -0.04040650650858879 0.9983519911766052 -0.03265480697154999 -0.025116734206676483 0.9991455078125 -0.025727104395627975 -0.014923551119863987 0.999542236328125 -0.019257180392742157 -0.00991851557046175 0.999755859375 -0.01315347757190466 -0.0074159977957606316 0.9998779296875 -0.007843256928026676 -0.00515762809664011 0.99993896484375 -0.003875850699841976 -0.0028992583975195885 0.999969482421875 -0.001434369944036007 -0.0012207403779029846 0.999969482421875 -0.00033570360392332077 -0.00030518509447574615 0.999969482421875 -3.0518509447574615e-05 -3.0518509447574615e-05 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.0473952442407608 -0.10675374418497086 0.9931333065032959 -0.037690360099077225 -0.07571642100811005 0.9963988065719604 -0.03009125031530857 -0.05163731798529625 0.9981994032859802 -0.0238044373691082 -0.03341776877641678 0.9991455078125 -0.01828058809041977 -0.01889095827937126 0.9996337890625 -0.013336588628590107 -0.009308145381510258 0.999847412109375 -0.009002960287034512 -0.004699850454926491 0.99993896484375 -0.005371257662773132 -0.002868739888072014 0.999969482421875 -0.0026551103219389915 -0.0016785180196166039 0.999969482421875 -0.0009765923023223877 -0.0007324442267417908 0.999969482421875 -0.0002136295661330223 -0.0001831110566854477 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.036011841148138046 -0.095583975315094 0.9947507977485657 -0.02615436166524887 -0.06720175594091415 0.9973754286766052 -0.01889095827937126 -0.04516739398241043 0.9987792372703552 -0.013336588628590107 -0.027954954653978348 0.99951171875 -0.008758812211453915 -0.014252143912017345 0.999847412109375 -0.005218665115535259 -0.005493331700563431 0.999969482421875 -0.0028077028691768646 -0.001739555038511753 0.999969482421875 -0.0013122959062457085 -0.0007019257172942162 0.999969482421875 -0.00045777764171361923 -0.00030518509447574615 0.999969482421875 -9.155552834272385e-05 -6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.032990507781505585 -0.08343760669231415 0.9959410429000854 -0.021851252764463425 -0.058412425220012665 0.9980468153953552 -0.013977477326989174 -0.03881954401731491 0.9991455078125 -0.008209479041397572 -0.02298043668270111 0.99969482421875 -0.0040894802659749985 -0.010528885759413242 0.999908447265625 -0.00158696249127388 -0.00317392498254776 0.999969482421875 -0.00045777764171361923 -0.0004882961511611938 0.999969482421875 -9.155552834272385e-05 -6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.03329569473862648 -0.06982634961605072 0.9969786405563354 -0.021179845556616783 -0.048890650272369385 0.9985656142234802 -0.01269569993019104 -0.0320139154791832 0.9993896484375 -0.0066225165501236916 -0.017944883555173874 0.999786376953125 -0.002624591812491417 -0.0074159977957606316 0.99993896484375 -0.0006714072078466415 -0.001831110566854477 0.999969482421875 -6.103701889514923e-05 -0.00012207403779029846 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.03256325051188469 -0.0556657612323761 0.9978942275047302 -0.02053895592689514 -0.03900265693664551 0.9990233778953552 -0.011932737194001675 -0.024842066690325737 0.999603271484375 -0.005798516795039177 -0.012909329496324062 0.9998779296875 -0.0020447401329874992 -0.004730368964374065 0.999969482421875 -0.0004272591322660446 -0.0009155552834272385 0.999969482421875 0.0 -3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.02941984310746193 -0.042359691113233566 0.9986571669578552 -0.01837214268743992 -0.02935880608856678 0.9993896484375 -0.010132145136594772 -0.017670217901468277 0.999786376953125 -0.004455702379345894 -0.00827051606029272 0.99993896484375 -0.001342814415693283 -0.002533036284148693 0.999969482421875 -0.0002136295661330223 -0.00033570360392332077 0.999969482421875 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.02453688159584999 -0.030579546466469765 0.99920654296875 -0.014770958572626114 -0.020325327292084694 0.999664306640625 -0.007446516305208206 -0.011139255948364735 0.999908447265625 -0.0028382213786244392 -0.0044862208887934685 0.999969482421875 -0.0006714072078466415 -0.0010681478306651115 0.999969482421875 -6.103701889514923e-05 -6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.018646810203790665 -0.020386364310979843 0.999603271484375 -0.010345774702727795 -0.012451551854610443 0.999847412109375 -0.004547257907688618 -0.005920590832829475 0.999969482421875 -0.0014038514345884323 -0.0018921475857496262 0.999969482421875 -0.0002136295661330223 -0.00030518509447574615 0.999969482421875 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.012176885269582272 -0.011871700175106525 0.999847412109375 -0.005920590832829475 -0.00634784996509552 0.99993896484375 -0.002136295661330223 -0.002471999265253544 0.999969482421875 -0.00045777764171361923 -0.0005493331700563431 0.999969482421875 -3.0518509447574615e-05 -3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 -0.006378368474543095 -0.00595110934227705 0.99993896484375 -0.002533036284148693 -0.002624591812491417 0.999969482421875 -0.0006714072078466415 -0.0007324442267417908 0.999969482421875 -6.103701889514923e-05 -6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.18085268139839172 0.0 0.9834895133972168 0.22827845811843872 0.22827845811843872 0.9464400410652161 0.17328409850597382 -0.005798516795039177 0.9848322868347168 0.9848933219909668 0.0 0.17313151061534882 0.9372844696044922 -6.103701889514923e-05 0.3485518991947174 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3484298288822174 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.18866541981697083 0.9323099255561829 0.3084505796432495 0.06039613112807274 0.982421338558197 0.17658010125160217 0.17737357318401337 -0.002929776906967163 0.9841303825378418 0.17972350120544434 -0.0010071108117699623 0.9837031364440918 0.18066957592964172 -0.00015259254723787308 0.9835200309753418 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.982421338558197 0.06039613112807274 0.17658010125160217 0.9323099255561829 0.18869593739509583 0.3084505796432495 0.6880397796630859 0.6880397796630859 0.2305673360824585 0.8040406703948975 0.522171676158905 0.2842799127101898 0.6636860370635986 0.6636860370635986 0.34498122334480286 0.522171676158905 0.8040406703948975 0.2842799127101898 -0.0021973326802253723 0.17612232267856598 0.9843440055847168 -0.004730368964374065 -0.009674367494881153 0.99993896484375 -0.36899930238723755 -0.2598956227302551 0.8923307061195374 -0.41813409328460693 -0.3237403631210327 0.8487197756767273 -0.4603411853313446 -0.39194920659065247 0.7965025901794434 -0.48872339725494385 -0.4587847590446472 0.7420270442962646 -0.4982451796531677 -0.5225684642791748 0.6918240785598755 -0.48744162917137146 -0.5820184946060181 0.6508377194404602 -0.4588152766227722 -0.635486900806427 0.6209601163864136 -0.4138309955596924 -0.6825464367866516 0.6023437976837158 -0.3487044870853424 -0.7230445146560669 0.5962706208229065 -0.2640766501426697 -0.7556077837944031 0.599383533000946 -0.1742606908082962 -0.7790765166282654 0.6021912097930908 -0.09222693741321564 -0.7951292395591736 0.599353015422821 -0.014587847515940666 -0.8056275844573975 0.5922116637229919 0.06952116638422012 -0.8098697066307068 0.5824457406997681 0.1509140282869339 -0.8073671460151672 0.5703909397125244 0.20957060158252716 -0.8010498285293579 0.5606555342674255 -0.3118381202220917 -0.2294076383113861 0.921994686126709 -0.3503219783306122 -0.2947477698326111 0.8890041708946228 -0.3884701132774353 -0.36875516176223755 0.844447135925293 -0.41734060645103455 -0.4442884624004364 0.7927182912826538 -0.4288155734539032 -0.5166783928871155 0.7410199046134949 -0.4215521812438965 -0.5836970210075378 0.6939298510551453 -0.3979308307170868 -0.6430554986000061 0.6542558073997498 -0.35953855514526367 -0.6937467455863953 0.6240119338035583 -0.3041169345378876 -0.7360759377479553 0.6046937704086304 -0.2301705926656723 -0.7692495584487915 0.5960264801979065 -0.14691610634326935 -0.791863739490509 0.5927304625511169 -0.06808679550886154 -0.8054139614105225 0.5887325406074524 0.005645924247801304 -0.8124942779541016 0.5829035043716431 0.08410900831222534 -0.8127384185791016 0.5764946341514587 0.158879354596138 -0.8052003383636475 0.5712759494781494 0.206549271941185 -0.7929319143295288 0.5731986165046692 -0.25870540738105774 -0.19565416872501373 0.9459211826324463 -0.2842188775539398 -0.2533646523952484 0.9246497750282288 -0.31339457631111145 -0.3238624334335327 0.8926663994789124 -0.3394879102706909 -0.40253913402557373 0.8500930666923523 -0.35239723324775696 -0.4822229743003845 0.8020264506340027 -0.3486739695072174 -0.557054340839386 0.7536851167678833 -0.33008819818496704 -0.6240425109863281 0.7082125544548035 -0.29798272252082825 -0.6817224621772766 0.6681417226791382 -0.25125887989997864 -0.7293618321418762 0.6362804174423218 -0.1896725296974182 -0.765831470489502 0.6143986582756042 -0.11847285181283951 -0.7900631427764893 0.6014282703399658 -0.047151096165180206 -0.8032776713371277 0.5937070846557617 0.02059999480843544 -0.808313250541687 0.5883663296699524 0.08960234373807907 -0.8050172328948975 0.5863826274871826 0.1513412892818451 -0.791741669178009 0.5917539000511169 0.18494217097759247 -0.7712942957878113 0.6089663505554199 -0.2145451158285141 -0.16360972821712494 0.9628894925117493 -0.22779014706611633 -0.20914334058761597 0.9509567618370056 -0.24390393495559692 -0.26734215021133423 0.9321878552436829 -0.2616962194442749 -0.33787041902542114 0.904049813747406 -0.27335429191589355 -0.41496017575263977 0.8677632808685303 -0.27304911613464355 -0.491439551115036 0.82699054479599 -0.2592852711677551 -0.5624866485595703 0.7850581407546997 -0.23334452509880066 -0.6256294250488281 0.7443769574165344 -0.19544053077697754 -0.6787011027336121 0.7079073190689087 -0.14593951404094696 -0.7197484970092773 0.6786705851554871 -0.0876491591334343 -0.748008668422699 0.6578570008277893 -0.02606280706822872 -0.7641224265098572 0.6444898843765259 0.033753469586372375 -0.7697683572769165 0.6373790502548218 0.08941923081874847 -0.764946460723877 0.6378368735313416 0.13144321739673615 -0.748283326625824 0.6501968502998352 0.14856410026550293 -0.7216406464576721 0.6761070489883423 -0.17850276827812195 -0.13849300146102905 0.9741203188896179 -0.18433180451393127 -0.17392498254776 0.9673146605491638 -0.18787194788455963 -0.21674245595932007 0.9579454660415649 -0.19437238574028015 -0.2705160677433014 0.9428693652153015 -0.20050661265850067 -0.3333231508731842 0.921231746673584 -0.20038452744483948 -0.40018922090530396 0.8942228555679321 -0.1900692731142044 -0.46604815125465393 0.8640705347061157 -0.16953031718730927 -0.5267494916915894 0.8329111337661743 -0.13962218165397644 -0.5796990990638733 0.8027283549308777 -0.10061952471733093 -0.6226386427879333 0.7759941220283508 -0.05334635451436043 -0.6539506316184998 0.7546311616897583 -0.0013733329251408577 -0.6733604073524475 0.7392803430557251 0.04904324561357498 -0.6814478039741516 0.730216383934021 0.08880886435508728 -0.6777855753898621 0.729850172996521 0.10827967524528503 -0.6617938876152039 0.7418134212493896 0.10803551971912384 -0.634968101978302 0.764915943145752 -0.14600054919719696 -0.12012085318565369 0.981933057308197 -0.1512802541255951 -0.1509445458650589 0.9768669605255127 -0.14780114591121674 -0.1819818764925003 0.9721060991287231 -0.14441359043121338 -0.21842096745967865 0.965086817741394 -0.1427960991859436 -0.2625507414340973 0.9542832970619202 -0.13910336792469025 -0.31247901916503906 0.939664900302887 -0.12958158552646637 -0.3643909990787506 0.922177791595459 -0.11243018507957458 -0.41459396481513977 0.9030121564865112 -0.08789330720901489 -0.4604022204875946 0.8833277225494385 -0.05642872303724289 -0.4996185302734375 0.8643757700920105 -0.018036440014839172 -0.5301064848899841 0.8477126359939575 0.024750512093305588 -0.5502792596817017 0.8345896601676941 0.0638447254896164 -0.5586413145065308 0.826898992061615 0.08676411956548691 -0.5544297695159912 0.8276619911193848 0.0873439759016037 -0.539201021194458 0.8376110196113586 0.07419049739837646 -0.5165257453918457 0.8530228734016418 -0.11398663371801376 -0.1034272313117981 0.9880672693252563 -0.12250129878520966 -0.13370159268379211 0.983397901058197 -0.1192663311958313 -0.16028320789337158 0.9798272848129272 -0.1110263392329216 -0.18576616048812866 0.9762871265411377 -0.1028168573975563 -0.2144535630941391 0.9712820649147034 -0.09430219233036041 -0.24781030416488647 0.964201807975769 -0.08310189843177795 -0.2843409478664398 0.9550767540931702 -0.06689657270908356 -0.32160404324531555 0.9444868564605713 -0.04504531994462013 -0.3571276068687439 0.9329508543014526 -0.018402662128210068 -0.3888973593711853 0.921079158782959 0.012848292477428913 -0.4143497943878174 0.9100009202957153 0.04525895044207573 -0.4299447536468506 0.9016999006271362 0.07003998011350632 -0.43223366141319275 0.8990142345428467 0.07788323611021042 -0.4219183921813965 0.9032562971115112 0.06814783066511154 -0.4046143889427185 0.9119235873222351 0.05063020810484886 -0.38599810004234314 0.921079158782959 -0.08346812427043915 -0.08481093496084213 0.9928891658782959 -0.09384441375732422 -0.11386455595493317 0.9890438318252563 -0.09451582282781601 -0.14084291458129883 0.9855037331581116 -0.0872218981385231 -0.16391491889953613 0.982604444026947 -0.07629626989364624 -0.18521682918071747 0.9797052145004272 -0.06411939114332199 -0.20764793455600739 0.9760735034942627 -0.050447095185518265 -0.23227638006210327 0.9713125824928284 -0.03387554734945297 -0.25788140296936035 0.965544581413269 -0.01348918117582798 -0.28266242146492004 0.9591051936149597 0.009430219419300556 -0.30430006980895996 0.9525132179260254 0.03326517343521118 -0.3194372355937958 0.9469893574714661 0.053437910974025726 -0.3240455389022827 0.9445173740386963 0.0637226477265358 -0.3165074586868286 0.9464095234870911 0.06161687150597572 -0.300180047750473 0.9518722891807556 0.04983672499656677 -0.28180792927742004 0.9581591486930847 0.03473006188869476 -0.26657918095588684 0.9631641507148743 -0.05777153745293617 -0.06573686748743057 0.9961546659469604 -0.06646931171417236 -0.08981597423553467 0.9937132000923157 -0.06946012377738953 -0.11526840925216675 0.9908749461174011 -0.06558427959680557 -0.13879817724227905 0.9881283044815063 -0.05612353980541229 -0.1590624749660492 0.9856563210487366 -0.043366800993680954 -0.17703787982463837 0.983214795589447 -0.028748435899615288 -0.19397564232349396 0.9805597066879272 -0.012421033345162868 -0.20996734499931335 0.9775994420051575 0.0056764427572488785 -0.22357860207557678 0.9746391177177429 0.0238959938287735 -0.23252052068710327 0.9722892045974731 0.0394299142062664 -0.23444318771362305 0.9713125824928284 0.048738058656454086 -0.22800378501415253 0.9724112749099731 0.04983672499656677 -0.2147892713546753 0.9753715395927429 0.043916136026382446 -0.1986449807882309 0.9790642857551575 0.03424176573753357 -0.1836298704147339 0.982390820980072 0.023438215255737305 -0.17203283309936523 0.9848017692565918 -0.03869746997952461 -0.04937894642353058 0.9980162978172302 -0.04422131925821304 -0.06662190705537796 0.9967955350875854 -0.04672383889555931 -0.08618427067995071 0.9951781034469604 -0.044923245906829834 -0.10602129995822906 0.9933164715766907 -0.03833124786615372 -0.12411877512931824 0.9915158748626709 -0.02786339819431305 -0.13922543823719025 0.9898373484611511 -0.015045625157654285 -0.1510360985994339 0.9884029626846313 -0.0010681478306651115 -0.1593371331691742 0.9872127175331116 0.012939848005771637 -0.16333505511283875 0.9864802956581116 0.02548295632004738 -0.16205328702926636 0.9864192605018616 0.03430280461907387 -0.15543076395988464 0.9872432351112366 0.037629321217536926 -0.14474928379058838 0.9887386560440063 0.03576769307255745 -0.13235877454280853 0.9905392527580261 0.03018280491232872 -0.12057863175868988 0.9922177791595459 0.02294991910457611 -0.1106295958161354 0.9935911297798157 0.015045625157654285 -0.10257270932197571 0.9945982098579407 -0.02526932582259178 -0.036072880029678345 0.9990233778953552 -0.02850428782403469 -0.047975096851587296 0.9984130263328552 -0.029786065220832825 -0.06103701889514923 0.9976806044578552 -0.02847376838326454 -0.07455671578645706 0.9967955350875854 -0.023987548425793648 -0.0872218981385231 0.9958800077438354 -0.01660206913948059 -0.09759819507598877 0.9950559735298157 -0.007232886739075184 -0.10467848926782608 0.9944761395454407 0.00277718435972929 -0.10779137909412384 0.9941404461860657 0.01235999632626772 -0.10675374418497086 0.9942014813423157 0.020172733813524246 -0.10180974751710892 0.9945982098579407 0.025147251784801483 -0.09369182586669922 0.9952696561813354 0.026642657816410065 -0.08401745557785034 0.9960936307907104 0.024903103709220886 -0.07446516305208206 0.9968870878219604 0.020874660462141037 -0.06607257574796677 0.9975890517234802 0.015289773233234882 -0.059053316712379456 0.9981078505516052 0.009033478796482086 -0.053437910974025726 0.9985045790672302 -0.01541184727102518 -0.024292733520269394 0.99957275390625 -0.017731253057718277 -0.03305154666304588 0.999267578125 -0.018524736166000366 -0.04199346899986267 0.9989318251609802 -0.01745658740401268 -0.05075228214263916 0.9985350966453552 -0.014465773478150368 -0.05856502056121826 0.9981688857078552 -0.009613330475986004 -0.06463820487260818 0.9978331923484802 -0.003479110077023506 -0.06826990842819214 0.9976500868797302 0.002868739888072014 -0.06891079246997833 0.9975890517234802 0.008972441777586937 -0.06656087189912796 0.9977111220359802 0.0138248847797513 -0.06173894554376602 0.9979857802391052 0.01678518019616604 -0.055085908621549606 0.9983214735984802 0.017731253057718277 -0.0474562831223011 0.9986876845359802 0.01660206913948059 -0.0397961363196373 0.999053955078125 0.013733329251408577 -0.03274635970592499 0.999359130859375 0.00952177494764328 -0.02688680589199066 0.99957275390625 0.004943998530507088 -0.022644734010100365 0.999725341796875 -0.008026367984712124 -0.013733329251408577 0.999847412109375 -0.009949034079909325 -0.020142216235399246 0.999725341796875 -0.01077303383499384 -0.026734214276075363 0.99957275390625 -0.01031525619328022 -0.032898955047130585 0.9993896484375 -0.008575701154768467 -0.03811761736869812 0.99920654296875 -0.00555436871945858 -0.04196295142173767 0.99908447265625 -0.0018616290763020515 -0.043977171182632446 0.9990233778953552 0.0019226660951972008 -0.043977171182632446 0.9990233778953552 0.005615405738353729 -0.04199346899986267 0.99908447265625 0.008575701154768467 -0.03817865625023842 0.99920654296875 0.01025421917438507 -0.03305154666304588 0.9993896484375 0.01065095979720354 -0.02706991881132126 0.99957275390625 0.009704886004328728 -0.02075258642435074 0.999725341796875 0.0076601458713412285 -0.014831995591521263 0.999847412109375 0.004943998530507088 -0.010040589608252048 0.999908447265625 0.002227851189672947 -0.006958220154047012 0.999969482421875 -0.00555436871945858 -0.014007995836436749 0.9998779296875 -0.005615405738353729 -0.01831110566854477 0.999786376953125 -0.004791405983269215 -0.02206488326191902 0.999725341796875 -0.00317392498254776 -0.024781029671430588 0.999664306640625 -0.0010681478306651115 -0.02615436166524887 0.9996337890625 0.0011291848495602608 -0.02612384408712387 0.9996337890625 0.0032349620014429092 -0.02471999265253544 0.999664306640625 0.004821924492716789 -0.021973326802253723 0.999725341796875 0.005615405738353729 -0.01818903163075447 0.99981689453125 0.00555436871945858 -0.01388592179864645 0.9998779296875 0.004699850454926491 -0.009552293457090855 0.99993896484375 0.0033570360392332077 -0.005737479776144028 0.999969482421875 0.0018921475857496262 -0.0028992583975195885 0.999969482421875 0.0007019257172942162 -0.0012512588873505592 0.999969482421875 -3.0518509447574615e-05 0.9848628044128418 0.17316202819347382 -0.0002441480755805969 0.9371318817138672 0.3489181101322174 -6.103701889514923e-05 0.9848628044128418 0.17316202819347382 -0.0003662221133708954 0.9370403289794922 0.3491927981376648 -6.103701889514923e-05 0.9848628044128418 0.17319254577159882 -0.00045777764171361923 0.9369182586669922 0.3494674563407898 -6.103701889514923e-05 0.9848628044128418 0.17322306334972382 -0.0004272591322660446 0.9368267059326172 0.3497115969657898 -6.103701889514923e-05 0.9848628044128418 0.17322306334972382 -0.00030518509447574615 0.9367656707763672 0.3498947024345398 0.0 0.9848628044128418 0.17325358092784882 -9.155552834272385e-05 0.9367351531982422 0.3500167727470398 0.0 0.9848628044128418 0.17325358092784882 9.155552834272385e-05 0.9367351531982422 0.3500167727470398 6.103701889514923e-05 0.9848628044128418 0.17322306334972382 0.00030518509447574615 0.9367656707763672 0.3498947024345398 6.103701889514923e-05 0.9848628044128418 0.17322306334972382 0.0004272591322660446 0.9368267059326172 0.3497115969657898 6.103701889514923e-05 0.9848628044128418 0.17319254577159882 0.00045777764171361923 0.9369182586669922 0.3494674563407898 6.103701889514923e-05 0.9848628044128418 0.17316202819347382 0.0003662221133708954 0.9370403289794922 0.3491927981376648 3.0518509447574615e-05 0.9848628044128418 0.17316202819347382 0.0002441480755805969 0.9371318817138672 0.3488875925540924 0.0 0.9848933219909668 0.17313151061534882 0.00012207403779029846 0.9372234344482422 0.3486739695072174 0.0 0.9848933219909668 0.17313151061534882 3.0518509447574615e-05 0.9372844696044922 0.3485213816165924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3484298288822174 -0.0028382213786244392 0.17331461608409882 0.9848322868347168 -0.0030518509447574615 0.17041535675525665 0.9853510856628418 -0.0027161473408341408 0.16776025295257568 0.9858089089393616 -0.0018616290763020515 0.1658070683479309 0.9861446022987366 -0.0006408886983990669 0.16473890841007233 0.9863277077674866 0.0006714072078466415 0.16473890841007233 0.9863277077674866 0.0018921475857496262 0.1658375859260559 0.9861446022987366 0.0027161473408341408 0.16785180568695068 0.9857783913612366 0.0030518509447574615 0.17050690948963165 0.9853510856628418 0.0028077028691768646 0.17340616881847382 0.9848322868347168 0.0021668141707777977 0.17618335783481598 0.9843440055847168 0.001342814415693283 0.17844171822071075 0.9839472770690918 0.0006103701889514923 0.17993712425231934 0.9836726188659668 0.00015259254723787308 0.18063905835151672 0.9835200309753418 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.0 1.0 0.31360819935798645 -0.33707693219184875 0.887691855430603 0.28058716654777527 -0.2927030324935913 0.9140903949737549 0.3257240653038025 -0.3408307135105133 0.8818628787994385 0.34534746408462524 -0.3749809265136719 0.8602862358093262 0.35923337936401367 -0.3629261255264282 0.8597674369812012 0.3672597408294678 -0.382793664932251 0.8476821184158325 0.3785516023635864 -0.36008790135383606 0.8526566624641418 0.3785821199417114 -0.3663441836833954 0.8499709963798523 0.38517409563064575 -0.35215309262275696 0.8529923558235168 0.3796502649784088 -0.3508102595806122 0.8560136556625366 0.38511306047439575 -0.34354686737060547 0.8565325140953064 0.3754386901855469 -0.3394268751144409 0.8624531030654907 0.3821527659893036 -0.32233649492263794 0.8660237193107605 0.3706778287887573 -0.3150425851345062 0.8736838698387146 0.3747978210449219 -0.2855616807937622 0.8820154666900635 0.365489661693573 -0.27341532707214355 0.8897366523742676 0.36164432764053345 -0.24109622836112976 0.9005706906318665 0.3587755858898163 -0.22595904767513275 0.9056367874145508 0.34504225850105286 -0.19745475053787231 0.9175695180892944 0.35120701789855957 -0.1822260171175003 0.9183629751205444 0.32923367619514465 -0.16501358151435852 0.9296853542327881 0.3426923453807831 -0.1519821733236313 0.9270607829093933 0.3191625773906708 -0.14514602720737457 0.9364909529685974 0.3344218134880066 -0.13769951462745667 0.9322794079780579 0.3186437487602234 -0.12399670481681824 0.939695417881012 0.33136996626853943 -0.126194030046463 0.9349955916404724 0.32895901799201965 -0.09625537693500519 0.939420759677887 0.33933529257774353 -0.110812708735466 0.9341105222702026 0.34730064868927 -0.06527908891439438 0.9354533553123474 0.35932493209838867 -0.08816797286272049 0.9290139675140381 0.3668630123138428 -0.028901029378175735 0.9298074245452881 0.38523513078689575 -0.051240578293800354 0.921384334564209 0.38380077481269836 0.004852443002164364 0.9233985543251038 0.40946683287620544 -0.01513718068599701 0.9121677279472351 0.23233741521835327 -0.23990599811077118 0.9425641894340515 0.2861110270023346 -0.2946562170982361 0.9117404818534851 0.3323770761489868 -0.33112582564353943 0.8830835819244385 0.364970862865448 -0.34403514862060547 0.8651081919670105 0.38337352871894836 -0.34604936838150024 0.8562883138656616 0.39149144291877747 -0.3429059684276581 0.8538773655891418 0.39255958795547485 -0.32816553115844727 0.8591570854187012 0.38590654730796814 -0.299874871969223 0.8724021315574646 0.3715018033981323 -0.2615131139755249 0.8908047676086426 0.35346537828445435 -0.21814630925655365 0.9096347093582153 0.33848080039024353 -0.17941831052303314 0.9237037301063538 0.3318582773208618 -0.1496932953596115 0.9313638806343079 0.3344523310661316 -0.1191442608833313 0.9348124861717224 0.34369945526123047 -0.08310189843177795 0.9353618025779724 0.3563951551914215 -0.048036135733127594 0.9330729246139526 0.36899930238723755 -0.013916440308094025 0.9293191432952881 0.3794976770877838 0.01818903163075447 0.9249855279922485 0.18030335009098053 -0.18628498911857605 0.965788722038269 0.23444318771362305 -0.24073000252246857 0.9418317079544067 0.28791162371635437 -0.286935031414032 0.9136326313018799 0.3326517641544342 -0.31446272134780884 0.8890652060508728 0.365215003490448 -0.32819604873657227 0.8711203336715698 0.3863338232040405 -0.3338114619255066 0.8597979545593262 0.3979003131389618 -0.32776880264282227 0.8568682074546814 0.40049439668655396 -0.3089388608932495 0.8626056909561157 0.39481794834136963 -0.2781457006931305 0.8756370544433594 0.38401439785957336 -0.23612171411514282 0.8926053643226624 0.3739127814769745 -0.1910153478384018 0.9075594544410706 0.36927396059036255 -0.1519516557455063 0.9167760014533997 0.37003692984580994 -0.11542100459337234 0.921781063079834 0.3735160231590271 -0.07586901634931564 0.9244971871376038 0.3794366419315338 -0.03747672960162163 0.9244361519813538 0.3879512846469879 -0.003265480510890484 0.921658992767334 0.395977646112442 0.026703696697950363 0.9178441762924194 0.13364055752754211 -0.13809625804424286 0.9813531637191772 0.1823480874300003 -0.18631550669670105 0.965391993522644 0.23633533716201782 -0.23468734323978424 0.9428693652153015 0.28809472918510437 -0.27237769961357117 0.9180272817611694 0.3317362070083618 -0.29703664779663086 0.8953520059585571 0.3665883243083954 -0.3117770850658417 0.8765831589698792 0.39310893416404724 -0.31476789712905884 0.8638874292373657 0.4112369120121002 -0.30481886863708496 0.8590350151062012 0.4209723174571991 -0.28241828083992004 0.861964762210846 0.42274239659309387 -0.2460097074508667 0.8721885085105896 0.4189886152744293 -0.20014038681983948 0.8856166005134583 0.4143497943878174 -0.15579698979854584 0.8966643214225769 0.4120914340019226 -0.11566515266895294 0.903744637966156 0.4122440218925476 -0.07425153255462646 0.9080172181129456 0.41508224606513977 -0.0317392498254776 0.9092074632644653 0.4210943877696991 0.005401776172220707 0.9069795608520508 0.4286935031414032 0.03433332219719887 0.9027680158615112 0.0950956791639328 -0.09762871265411377 0.9906613230705261 0.13635669648647308 -0.13693654537200928 0.9811395406723022 0.18607135117053986 -0.18073061108589172 0.965758204460144 0.23975341022014618 -0.221900075674057 0.9450972080230713 0.29102450609207153 -0.2542496919631958 0.922299861907959 0.33655813336372375 -0.2762230336666107 0.9002044796943665 0.37571337819099426 -0.287057101726532 0.8811303973197937 0.40797144174575806 -0.2851954698562622 0.8672749996185303 0.43272194266319275 -0.2710959315299988 0.8597674369812012 0.44895780086517334 -0.24396497011184692 0.8595538139343262 0.45616015791893005 -0.20438246428966522 0.8660847544670105 0.45731985569000244 -0.1598559468984604 0.8747825622558594 0.45799127221107483 -0.11642811447381973 0.8812829852104187 0.460615873336792 -0.07296975702047348 0.8845790028572083 0.46375927329063416 -0.02862636186182499 0.8854640126228333 0.4668416380882263 0.010742515325546265 0.8842433094978333 0.47212132811546326 0.042329173535108566 0.8804895281791687 0.0635395348072052 -0.06491287052631378 0.9958494901657104 0.09704886376857758 -0.0949736014008522 0.9907223582267761 0.13965269923210144 -0.13055817782878876 0.981536328792572 0.1900692731142044 -0.16837061941623688 0.9671925902366638 0.24439221620559692 -0.20294809341430664 0.9481795430183411 0.29776909947395325 -0.2297433316707611 0.9265419244766235 0.34708699584007263 -0.2464369684457779 0.904843270778656 0.3908810615539551 -0.251625120639801 0.8853724598884583 0.4280526041984558 -0.2449415624141693 0.869899570941925 0.45811334252357483 -0.22666096687316895 0.8594927787780762 0.48017823696136475 -0.19614246487617493 0.8549455404281616 0.4942777752876282 -0.15637683868408203 0.8550981283187866 0.503036618232727 -0.11297952383756638 0.8568071722984314 0.5089877247810364 -0.06955168396234512 0.8579363226890564 0.5121310949325562 -0.027314066886901855 0.8584551811218262 0.5129246115684509 0.01184118166565895 0.8583330512046814 0.5144810080528259 0.0476699098944664 0.8561357259750366 0.03906369209289551 -0.0398266538977623 0.9984130263328552 0.06424146145582199 -0.061433758586645126 0.9960325956344604 0.09784234315156937 -0.08798485994338989 0.9912717342376709 0.14044618606567383 -0.11813715100288391 0.983001172542572 0.1907712072134018 -0.14896084368228912 0.9702444672584534 0.2455214112997055 -0.17630542814731598 0.9532151222229004 0.3008209466934204 -0.19617298245429993 0.9332560300827026 0.35358744859695435 -0.20639668405056 0.9123203158378601 0.40165409445762634 -0.2059999406337738 0.8923001885414124 0.443403422832489 -0.19479964673519135 0.8748741149902344 0.4779503643512726 -0.17264321446418762 0.861232340335846 0.504104733467102 -0.14117862284183502 0.8519852161407471 0.52128666639328 -0.10391552746295929 0.8470107316970825 0.5307168960571289 -0.06497390568256378 0.8450270295143127 0.5345317125320435 -0.02691732533276081 0.844691276550293 0.5348979234695435 0.010467848740518093 0.8448439240455627 0.5331888794898987 0.0475173182785511 0.844630241394043 0.021942809224128723 -0.02209540084004402 0.99951171875 0.039307840168476105 -0.03665272891521454 0.9985350966453552 0.0635395348072052 -0.05490279942750931 0.9964598417282104 0.095736563205719 -0.07647938281297684 0.9924619197845459 0.13608203828334808 -0.10010071098804474 0.9855952858924866 0.1835383176803589 -0.12323374301195145 0.9752494692802429 0.23554185032844543 -0.1424298882484436 0.9613635540008545 0.28888821601867676 -0.15475936233997345 0.9447615146636963 0.3407391607761383 -0.158635213971138 0.9266639947891235 0.3885006308555603 -0.15356913208961487 0.9085360169410706 0.4297616481781006 -0.13919492065906525 0.8921170830726624 0.46269112825393677 -0.11694692820310593 0.8787499666213989 0.4864650368690491 -0.08905301243066788 0.8691366314888 0.5014496445655823 -0.05774101987481117 0.8632160425186157 0.5090487599372864 -0.025177769362926483 0.8603472709655762 0.5104830861091614 0.00827051606029272 0.8598284721374512 0.5058442950248718 0.041596729308366776 0.861598551273346 0.011139255948364735 -0.01077303383499384 0.9998779296875 0.02209540084004402 -0.019684437662363052 0.999542236328125 0.03833124786615372 -0.031434066593647 0.9987487196922302 0.06048768758773804 -0.045625172555446625 0.9971007108688354 0.08929716050624847 -0.06179998070001602 0.9940794110298157 0.12479018419981003 -0.07864619791507721 0.9890438318252563 0.1659596562385559 -0.09399700909852982 0.981627881526947 0.21063874661922455 -0.10541093349456787 0.9718314409255981 0.2562639117240906 -0.110965296626091 0.9602038860321045 0.300271600484848 -0.11008026450872421 0.9474471211433411 0.3402508497238159 -0.10232856124639511 0.9347209334373474 0.3741569221019745 -0.08816797286272049 0.9231544137001038 0.40079957246780396 -0.06897182762622833 0.9135410785675049 0.4195379614830017 -0.04593035578727722 0.9065523147583008 0.430249959230423 -0.02053895592689514 0.9024323225021362 0.43287453055381775 0.005920590832829475 0.9013947248458862 0.4268013536930084 0.0316171757876873 0.903775155544281 0.0048829615116119385 -0.004333628341555595 0.999969482421875 0.011017181910574436 -0.009033478796482086 0.9998779296875 0.020935697481036186 -0.01593066193163395 0.9996337890625 0.035248879343271255 -0.02465895563364029 0.999053955078125 0.054383985698223114 -0.03485213965177536 0.9978942275047302 0.07858516275882721 -0.04593035578727722 0.9958189725875854 0.10748618841171265 -0.056703388690948486 0.9925839900970459 0.14001892507076263 -0.06549271941184998 0.9879757165908813 0.1744132786989212 -0.07092501223087311 0.982085645198822 0.20865504443645477 -0.07199316471815109 0.9753105044364929 0.24103519320487976 -0.06830042600631714 0.9680776596069336 0.269783616065979 -0.059968870133161545 0.9610278606414795 0.2933744192123413 -0.0475783571600914 0.9548020958900452 0.3106784224510193 -0.032074954360723495 0.9499496221542358 0.32084110379219055 -0.014374217949807644 0.9469893574714661 0.3233130872249603 0.003814813680946827 0.9462568759918213 0.3179418444633484 0.021057771518826485 0.9478743672370911 0.0015259254723787308 -0.0012512588873505592 0.999969482421875 0.004272591322660446 -0.0032349620014429092 0.999969482421875 0.00946073792874813 -0.0066225165501236916 0.999908447265625 0.017731253057718277 -0.011413922533392906 0.999755859375 0.02938932552933693 -0.01730399578809738 0.9993896484375 0.04470961540937424 -0.023987548425793648 0.9986876845359802 0.0636310949921608 -0.03085421398282051 0.9974669814109802 0.08545182645320892 -0.036988433450460434 0.9956358671188354 0.10913418978452682 -0.04138309881091118 0.9931333065032959 0.13342691957950592 -0.04303109645843506 0.9901120066642761 0.15683461725711823 -0.04153569042682648 0.9867244362831116 0.17789238691329956 -0.037018951028585434 0.983336865901947 0.19525742530822754 -0.029725028201937675 0.9802850484848022 0.20804467797279358 -0.020081179216504097 0.9779046177864075 0.21558275818824768 -0.009033478796482086 0.9764091968536377 0.21732230484485626 0.0021973326802253723 0.9760735034942627 0.2135685235261917 0.012939848005771637 0.9768364429473877 0.0002441480755805969 -0.0001831110566854477 0.999969482421875 0.001037629321217537 -0.0007629627361893654 0.999969482421875 0.0029908139258623123 -0.0019531846046447754 0.999969482421875 0.00674459058791399 -0.004058961756527424 0.99993896484375 0.01275673694908619 -0.0070192571729421616 0.9998779296875 0.021179845556616783 -0.010528885759413242 0.99969482421875 0.032166510820388794 -0.014404736459255219 0.999359130859375 0.045533616095781326 -0.01825006864964962 0.9987792372703552 0.060670796781778336 -0.02130191959440708 0.9979247450828552 0.07654042541980743 -0.02298043668270111 0.9967955350875854 0.09204382449388504 -0.022705771028995514 0.9954832792282104 0.10617389529943466 -0.02069154940545559 0.9941099286079407 0.11795403808355331 -0.016998808830976486 0.9928586483001709 0.1265907734632492 -0.011535996571183205 0.9918820858001709 0.13156528770923615 -0.005218665115535259 0.9912717342376709 0.13284707069396973 0.0012207403779029846 0.9911190867424011 0.13052766025066376 0.007599108852446079 0.9913938045501709 0.0 0.0 1.0 6.103701889514923e-05 -6.103701889514923e-05 1.0 0.00045777764171361923 -0.00030518509447574615 0.999969482421875 0.0014954069629311562 -0.0008850367739796638 0.999969482421875 0.0036927396431565285 -0.00198370311409235 0.999969482421875 0.007324442267417908 -0.0035096285864710808 0.99993896484375 0.012451551854610443 -0.005340739153325558 0.9998779296875 0.01913510635495186 -0.0072634052485227585 0.999786376953125 0.027222510427236557 -0.00906399730592966 0.99957275390625 0.03625598922371864 -0.01037629321217537 0.999267578125 0.04538102447986603 -0.01071199681609869 0.9989013075828552 0.05392620712518692 -0.010071108117699623 0.9984740614891052 0.06128116697072983 -0.008484145626425743 0.9980773329734802 0.06686605513095856 -0.005890072323381901 0.9977416396141052 0.07013153284788132 -0.0026551103219389915 0.9975280165672302 0.0710470899939537 0.0007324442267417908 0.9974669814109802 0.06955168396234512 0.004119998775422573 0.9975585341453552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 9.155552834272385e-05 -6.103701889514923e-05 1.0 0.00045777764171361923 -0.00027466658502817154 0.999969482421875 0.0013733329251408577 -0.0007324442267417908 0.999969482421875 0.003021332435309887 -0.0014038514345884323 0.999969482421875 0.005462813191115856 -0.002227851189672947 0.999969482421875 0.00866725668311119 -0.0030518509447574615 0.99993896484375 0.012604144401848316 -0.003814813680946827 0.999908447265625 0.016937773674726486 -0.004211554303765297 0.999847412109375 0.021240882575511932 -0.004181035794317722 0.999755859375 0.025055695325136185 -0.0036011841148138046 0.999664306640625 0.028077028691768646 -0.002533036284148693 0.99957275390625 0.029938656836748123 -0.0010986663401126862 0.999542236328125 0.030426952987909317 0.0004882961511611938 0.99951171875 0.02945036068558693 0.0020142216235399246 0.999542236328125 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3484298288822174 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3484603464603424 -0.9848933219909668 0.0 0.17313151061534882 -0.9372844696044922 0.0 0.3485518991947174 -0.9848933219909668 0.0 0.17313151061534882 -0.9372234344482422 -6.103701889514923e-05 0.3486739695072174 -0.9848933219909668 0.0 0.17313151061534882 -0.9371623992919922 -9.155552834272385e-05 0.3488570749759674 -0.9848933219909668 0.0 0.17313151061534882 -0.9371013641357422 -9.155552834272385e-05 0.3490401804447174 -0.9848933219909668 0.0 0.17313151061534882 -0.9370098114013672 -0.00012207403779029846 0.3492538332939148 -0.9848933219909668 0.0 0.17313151061534882 -0.9369487762451172 -0.00012207403779029846 0.3494369387626648 -0.9848933219909668 0.0 0.17313151061534882 -0.9368877410888672 -6.103701889514923e-05 0.3495895266532898 -0.9848933219909668 0.0 0.17313151061534882 -0.9368572235107422 0.0 0.3496810793876648 -0.9848933219909668 0.0 0.17313151061534882 -0.9368267059326172 3.0518509447574615e-05 0.3497115969657898 -0.9848933219909668 0.0 0.17313151061534882 -0.9368572235107422 9.155552834272385e-05 0.3496505618095398 -0.9373149871826172 0.0 0.3483993113040924 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9848933219909668 0.0 0.17313151061534882 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18076112866401672 -6.103701889514923e-05 0.9835200309753418 -0.18036438524723053 -0.00030518509447574615 0.9835810661315918 -0.17947936058044434 -0.0006408886983990669 0.9837336540222168 -0.17813654243946075 -0.0010071108117699623 0.9839777946472168 -0.17639698088169098 -0.0013733329251408577 0.9843134880065918 -0.1742912083864212 -0.0016174810007214546 0.9846796989440918 -0.17203283309936523 -0.0017090365290641785 0.9850764274597168 -0.16992706060409546 -0.0015259254723787308 0.9854426980018616 -0.16824854910373688 -0.001037629321217537 0.9857173562049866 -0.1672719568014145 -0.00039674062281847 0.9859004616737366 -0.1670583188533783 0.00033570360392332077 0.9859309792518616 -0.1676992028951645 0.0009765923023223877 0.9858089089393616 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.34678182005882263 -0.3980834484100342 0.8492385745048523 0.3271279036998749 -0.36921292543411255 0.869838535785675 0.33585619926452637 -0.413190096616745 0.8464003205299377 0.3250221312046051 -0.3903012275695801 0.861384928226471 0.3184606432914734 -0.42298653721809387 0.8482924699783325 0.31205177307128906 -0.4044923186302185 0.8596148490905762 0.2945646643638611 -0.430768758058548 0.8530228734016418 0.28824731707572937 -0.41663870215415955 0.862147867679596 0.27442243695259094 -0.43995481729507446 0.8550370931625366 0.2623371183872223 -0.430463582277298 0.8636127710342407 0.2783593237400055 -0.4542374908924103 0.8462477326393127 0.2543412446975708 -0.4497512876987457 0.8561357259750366 0.31205177307128906 -0.4765770435333252 0.8218634724617004 0.27219459414482117 -0.47816401720046997 0.8349864482879639 0.36140018701553345 -0.5078279972076416 0.7819452285766602 0.30549028515815735 -0.5170751214027405 0.7995544075965881 0.40690329670906067 -0.5476546287536621 0.731070876121521 0.33719900250434875 -0.5653858780860901 0.7527084946632385 0.4374523162841797 -0.5936765670776367 0.6753746271133423 0.3584093749523163 -0.6194341778755188 0.6984161138534546 0.443189799785614 -0.6419263482093811 0.6256904602050781 0.3658253848552704 -0.6723837852478027 0.6434522271156311 0.4203924536705017 -0.6880092620849609 0.5914792418479919 0.3561815321445465 -0.7173680663108826 0.598742663860321 0.3795281946659088 -0.7265236377716064 0.5727713704109192 0.3330484926700592 -0.7514572739601135 0.5695059299468994 0.32767724990844727 -0.7556688189506531 0.5670338869094849 0.299661248922348 -0.7760246396064758 0.5549180507659912 0.2638325095176697 -0.7765740156173706 0.5720999836921692 0.2548905909061432 -0.7928708791732788 0.5534531474113464 0.36130863428115845 -0.395275741815567 0.844508171081543 0.34510329365730286 -0.4035462439060211 0.8473464250564575 0.3244117498397827 -0.40858179330825806 0.8530839085578918 0.3016754686832428 -0.41346475481987 0.8590655326843262 0.28815576434135437 -0.4222540855407715 0.8594317436218262 0.3030487895011902 -0.4366283118724823 0.8470412492752075 0.3505661189556122 -0.45658743381500244 0.8176824450492859 0.4136173725128174 -0.4822534918785095 0.7722098231315613 0.47050386667251587 -0.5138401389122009 0.7173070311546326 0.5072481632232666 -0.5497298836708069 0.6636860370635986 0.5121005773544312 -0.5894955396652222 0.6246528625488281 0.4830774962902069 -0.6321604251861572 0.6057618856430054 0.430921345949173 -0.6722311973571777 0.6019775867462158 0.3638722002506256 -0.7053132653236389 0.6083559393882751 0.28168582916259766 -0.730094313621521 0.6225470900535583 0.36948758363723755 -0.36829736828804016 0.8531144261360168 0.3504135310649872 -0.36832788586616516 0.861110270023346 0.32886746525764465 -0.3672597408294678 0.870021641254425 0.31217384338378906 -0.3707083463668823 0.8746910095214844 0.3079317510128021 -0.383251428604126 0.8707846403121948 0.33130893111228943 -0.40183719992637634 0.8536637425422668 0.3889889121055603 -0.4223456382751465 0.8186895251274109 0.46284371614456177 -0.4452345371246338 0.766502857208252 0.5258644223213196 -0.47105318307876587 0.7081820368766785 0.5626697540283203 -0.4980010390281677 0.6598101854324341 0.5656605958938599 -0.5272377729415894 0.634022057056427 0.5343791246414185 -0.5605334639549255 0.6325876712799072 0.4775536358356476 -0.5938596725463867 0.6474807262420654 0.40061646699905396 -0.6229133009910583 0.6718955039978027 0.3041474521160126 -0.6457411646842957 0.7003387808799744 0.36835840344429016 -0.34586626291275024 0.8629413843154907 0.34684285521507263 -0.33860287070274353 0.8746604919433594 0.3271889388561249 -0.33075961470603943 0.8851588368415833 0.32197028398513794 -0.32941678166389465 0.887569785118103 0.33097323775291443 -0.3406170904636383 0.8800012469291687 0.36216315627098083 -0.36097294092178345 0.8593401908874512 0.4264046251773834 -0.382366418838501 0.8196966648101807 0.5072176456451416 -0.40162357687950134 0.7624744176864624 0.5720389485359192 -0.4200872778892517 0.7044587731361389 0.6050294637680054 -0.4382152855396271 0.6647236347198486 0.6039002537727356 -0.45664846897125244 0.653218150138855 0.5702688694000244 -0.4763023853302002 0.669209897518158 0.5104525685310364 -0.49488815665245056 0.7031769752502441 0.4276863932609558 -0.5113071203231812 0.7453840970993042 0.3233741223812103 -0.5269325971603394 0.7859736680984497 0.36133915185928345 -0.3324381113052368 0.8711203336715698 0.33750420808792114 -0.3238929510116577 0.8838160037994385 0.3198034465312958 -0.31479841470718384 0.8936430215835571 0.3245948553085327 -0.3084200620651245 0.8941313028335571 0.34815514087677 -0.3107089400291443 0.8844264149665833 0.3907284736633301 -0.3243201971054077 0.861445963382721 0.4602191150188446 -0.3423566520214081 0.8191167712211609 0.5427106618881226 -0.3553880453109741 0.7609790563583374 0.6064027547836304 -0.3635975122451782 0.7071443796157837 0.635029137134552 -0.3709524869918823 0.6775719523429871 0.6280099153518677 -0.37751397490501404 0.6804711818695068 0.5893429517745972 -0.3811761736869812 0.712271511554718 0.5256202816963196 -0.3816950023174286 0.7602465748786926 0.44053468108177185 -0.38361766934394836 0.8116092681884766 0.33588671684265137 -0.39176610112190247 0.8565325140953064 0.3555711507797241 -0.3084200620651245 0.8822596073150635 0.3322855234146118 -0.30481886863708496 0.8925443291664124 0.3154087960720062 -0.3037507236003876 0.8990142345428467 0.32212287187576294 -0.3013397753238678 0.8974272608757019 0.35410627722740173 -0.29792168736457825 0.886471152305603 0.40995514392852783 -0.300057977437973 0.861323893070221 0.4862819314002991 -0.3082369565963745 0.8175908923149109 0.5665456056594849 -0.31275367736816406 0.7623523473739624 0.6265144944190979 -0.3092135488986969 0.7154148817062378 0.6510818600654602 -0.3020416796207428 0.696279764175415 0.6375621557235718 -0.2925809621810913 0.712637722492218 0.5917844176292419 -0.2783288061618805 0.7564927935600281 0.5252845883369446 -0.2622760832309723 0.809442400932312 0.4425489008426666 -0.2539750337600708 0.8600115776062012 0.34446242451667786 -0.2595294117927551 0.9021881818771362 0.35352641344070435 -0.26651814579963684 0.8966338038444519 0.33637499809265137 -0.26758629083633423 0.9028900861740112 0.3231910169124603 -0.2771385908126831 0.904812753200531 0.3261818289756775 -0.28821679949760437 0.9002655148506165 0.3553575277328491 -0.2925809621810913 0.887722373008728 0.41807305812835693 -0.29129916429519653 0.860408365726471 0.5007476806640625 -0.28916287422180176 0.8158513307571411 0.5775017738342285 -0.28278452157974243 0.765831470489502 0.6311838030815125 -0.26618245244026184 0.7284768223762512 0.6508377194404602 -0.24054689705371857 0.7200842499732971 0.6309701800346375 -0.20960111916065216 0.7469404935836792 0.5790276527404785 -0.17563402652740479 0.7961363792419434 0.5136875510215759 -0.14584796130657196 0.8454847931861877 0.43980222940444946 -0.13220618665218353 0.8882717490196228 0.35343486070632935 -0.13901181519031525 0.9250465631484985 0.35392314195632935 -0.22022156417369843 0.9089632630348206 0.34607988595962524 -0.22443312406539917 0.9109469652175903 0.3414716124534607 -0.2389599233865738 0.9089632630348206 0.34461501240730286 -0.2611468732357025 0.9016693830490112 0.3657948672771454 -0.28183844685554504 0.886959433555603 0.42292550206184387 -0.29096347093582153 0.8581499457359314 0.503891110420227 -0.2859584391117096 0.8150272965431213 0.5753654837608337 -0.2683797776699066 0.772576093673706 0.6209906339645386 -0.2374339997768402 0.7469710111618042 0.634205162525177 -0.19449445605278015 0.748252809047699 0.6092715263366699 -0.14612261950969696 0.7793511748313904 0.5546739101409912 -0.09927671402692795 0.826105535030365 0.4943693280220032 -0.061403241008520126 0.8670613765716553 0.43345439434051514 -0.040772728621959686 0.9002349972724915 0.36051514744758606 -0.040131840854883194 0.9318826794624329 0.3573107123374939 -0.17893001437187195 0.9166539311408997 0.35923337936401367 -0.18799401819705963 0.9140903949737549 0.3635975122451782 -0.20670185983181 0.9083223938941956 0.3727225661277771 -0.23349711298942566 0.8980681896209717 0.3903317451477051 -0.2641071677207947 0.8819544315338135 0.43305763602256775 -0.2843714654445648 0.8553117513656616 0.4996795654296875 -0.28019043803215027 0.8196051120758057 0.5616626739501953 -0.251960813999176 0.7880489230155945 0.599688708782196 -0.20886868238449097 0.7724539637565613 0.6080507636070251 -0.16006958484649658 0.7775505781173706 0.5820490121841431 -0.11374248564243317 0.8051393032073975 0.5287942290306091 -0.07333597540855408 0.8455458283424377 0.47141942381858826 -0.03631702810525894 0.8811303973197937 0.41834771633148193 -0.002533036284148693 0.9082613587379456 0.3559373617172241 0.021607104688882828 0.9342325925827026 0.36188849806785583 -0.14828944206237793 0.9203161597251892 0.37617114186286926 -0.1592150628566742 0.9127475619316101 0.3890194296836853 -0.1828669011592865 0.9028595685958862 0.4036072790622711 -0.2135074883699417 0.8896450400352478 0.4194464087486267 -0.24411755800247192 0.8743247985839844 0.4449598789215088 -0.2611773908138275 0.8565935492515564 0.48878443241119385 -0.24951933324337006 0.8359324932098389 0.5380718111991882 -0.20984527468681335 0.8163396120071411 0.5728629231452942 -0.1594897359609604 0.8039491176605225 0.5833613276481628 -0.11566515266895294 0.8039186000823975 0.5636158585548401 -0.08801537752151489 0.8213140964508057 0.5140842795372009 -0.07300027459859848 0.8546098470687866 0.4505752623081207 -0.052766501903533936 0.8911404609680176 0.3903927803039551 -0.013336588628590107 0.9205297827720642 0.33054596185684204 0.03720206394791603 0.9430219531059265 0.3640553057193756 -0.13357952237129211 0.921720027923584 0.39320048689842224 -0.14160588383674622 0.9084444642066956 0.41673025488853455 -0.16422009468078613 0.8940397500991821 0.43375957012176514 -0.19397564232349396 0.8798791170120239 0.4421521723270416 -0.21762749552726746 0.8701131939888 0.44740134477615356 -0.22070986032485962 0.8666646480560303 0.4663533568382263 -0.19363994896411896 0.8631244897842407 0.504806637763977 -0.14389477670192719 0.8511307239532471 0.5433515310287476 -0.09295938163995743 0.8343150019645691 0.5645313858985901 -0.05801568552851677 0.8233283758163452 0.5593432188034058 -0.04684591293334961 0.8275704383850098 0.5169530510902405 -0.054475538432598114 0.8542435765266418 0.44169437885284424 -0.05893124267458916 0.8951994180679321 0.35911130905151367 -0.03662221133708954 0.9325540661811829 0.28788110613822937 0.015289773233234882 0.9575182199478149 0.3659474551677704 -0.1278725564479828 0.921781063079834 0.40708640217781067 -0.1356547772884369 0.9032257795333862 0.44087037444114685 -0.15311136841773987 0.8843958973884583 0.45765557885169983 -0.1742301732301712 0.8718832731246948 0.4526505470275879 -0.18509475886821747 0.8722495436668396 0.43385112285614014 -0.17169713973999023 0.8844569325447083 0.4300668239593506 -0.13031403720378876 0.8933072686195374 0.46455276012420654 -0.07657094299793243 0.8821985721588135 0.5143589377403259 -0.03231910243630409 0.8569292426109314 0.5500351190567017 -0.007080294191837311 0.8350780010223389 0.5607776045799255 -0.0008545182645320892 0.8279366493225098 0.5290078520774841 -0.010467848740518093 0.8485366106033325 0.44880521297454834 -0.02536088228225708 0.8932462334632874 0.34430983662605286 -0.02841273322701454 0.9384136199951172 0.24979400634765625 -0.00555436871945858 0.9682607650756836 0.3742789924144745 -0.12427137047052383 0.9189122915267944 0.4199346899986267 -0.13751640915870667 0.8970610499382019 0.45731985569000244 -0.1507614403963089 0.8764000535011292 0.4696798622608185 -0.1598254293203354 0.86822110414505 0.44920194149017334 -0.15619373321533203 0.8796349763870239 0.4059877395629883 -0.12997832894325256 0.904568612575531 0.38358715176582336 -0.08059938251972198 0.9199499487876892 0.4209112823009491 -0.025116734206676483 0.9067354202270508 0.48738059401512146 0.0159001424908638 0.8730124831199646 0.5367900729179382 0.03817865625023842 0.842829704284668 0.556810200214386 0.05005035549402237 0.8290963172912598 0.5352030992507935 0.05413983762264252 0.842951774597168 0.4620502293109894 0.046357616782188416 0.8856166005134583 0.35279396176338196 0.029938656836748123 0.9352092146873474 0.2382580041885376 0.020142216235399246 0.9709768891334534 0.39338359236717224 -0.11270485818386078 0.9124118685722351 0.4363231360912323 -0.1340678185224533 0.8897366523742676 0.4675130546092987 -0.14706869423389435 0.8716391324996948 0.4699545204639435 -0.14783166348934174 0.8702048063278198 0.4351329207420349 -0.1348612904548645 0.8901944160461426 0.3715018033981323 -0.10498367249965668 0.922452449798584 0.3324381113052368 -0.0556047260761261 0.9414654970169067 0.3711966276168823 0.0046388134360313416 0.9285256266593933 0.45487838983535767 0.05636768788099289 0.8887295126914978 0.5176854729652405 0.08984649181365967 0.8507950305938721 0.5411542057991028 0.11420026421546936 0.8330942988395691 0.5271157026290894 0.1340678185224533 0.8391064405441284 0.4700155556201935 0.13968321681022644 0.8715170621871948 0.3730887770652771 0.12500381469726562 0.9193090796470642 0.252357542514801 0.10162663459777832 0.9622486233711243 0.4207892119884491 -0.0790124237537384 0.903683602809906 0.45817437767982483 -0.10486160218715668 0.8826258182525635 0.4773094952106476 -0.12073121964931488 0.8703879117965698 0.4663838744163513 -0.12332529574632645 0.8759117126464844 0.4200872778892517 -0.11502426117658615 0.9001434445381165 0.3422040343284607 -0.09646900743246078 0.9346293807029724 0.2839747369289398 -0.05948057398200035 0.9569689035415649 0.31305888295173645 0.0 0.9497054815292358 0.40818506479263306 0.06628620624542236 0.9104586839675903 0.4864345192909241 0.11999878287315369 0.8654133677482605 0.5148777961730957 0.16049684584140778 0.8420972228050232 0.5073397159576416 0.19290749728679657 0.8398388624191284 0.4680013358592987 0.21204259991645813 0.8578752875328064 0.3899044692516327 0.21198156476020813 0.8960844874382019 0.27350687980651855 0.1985534280538559 0.9411298036575317 0.44770652055740356 -0.0394299142062664 0.8932767510414124 0.48023927211761475 -0.062196724116802216 0.8749046325683594 0.48921170830726624 -0.07864619791507721 0.86858731508255 0.4686727523803711 -0.08890041708946228 0.8788720369338989 0.41642504930496216 -0.09662160277366638 0.903988778591156 0.32966095209121704 -0.10122989863157272 0.938627302646637 0.24933622777462006 -0.08932767808437347 0.964262843132019 0.25675222277641296 -0.048097170889377594 0.965269923210144 0.35261085629463196 0.014099551364779472 0.9356364607810974 0.4445936381816864 0.07815790176391602 0.8922696709632874 0.4824976325035095 0.1350749284029007 0.8653828501701355 0.4825891852378845 0.1826532781124115 0.8565630316734314 0.45686209201812744 0.21845148503780365 0.862269937992096 0.39378032088279724 0.24130985140800476 0.886928915977478 0.2851954698562622 0.2525101602077484 0.9245887398719788 0.29810479283332825 -0.32929471135139465 0.8959013819694519 0.2713400721549988 -0.287362277507782 0.9185765981674194 0.2561723589897156 -0.28849145770072937 0.922544002532959 0.22055727243423462 -0.2373424470424652 0.9460432529449463 0.20422986149787903 -0.23914304375648499 0.9492477178573608 0.1674855798482895 -0.18555253744125366 0.9682302474975586 0.1512192189693451 -0.18079164624214172 0.9718009233474731 0.11951048672199249 -0.13351847231388092 0.9837946891784668 0.10574663430452347 -0.1270180344581604 0.9862361550331116 0.08084353059530258 -0.09018219262361526 0.9926145076751709 0.07037568092346191 -0.0869472324848175 0.9937132000923157 0.051149021834135056 -0.05880916863679886 0.9969481229782104 0.043153174221515656 -0.056794945150613785 0.9974364638328552 0.02868739888072014 -0.035248879343271255 0.9989623427391052 0.022675253450870514 -0.0316782146692276 0.999237060546875 0.013061922043561935 -0.017120882868766785 0.999755859375 0.009338663890957832 -0.013367107138037682 0.999847412109375 0.004303109832108021 -0.005737479776144028 0.999969482421875 0.0025940733030438423 -0.0036317026242613792 0.999969482421875 0.0008239997550845146 -0.0010071108117699623 0.999969482421875 0.0003662221133708954 -0.00045777764171361923 0.999969482421875 3.0518509447574615e-05 -3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.3077486455440521 -0.35914182662963867 0.8810693621635437 0.2779015600681305 -0.33143100142478943 0.9016083478927612 0.23328348994255066 -0.2924283444881439 0.9273659586906433 0.18008972704410553 -0.23364970088005066 0.9554734826087952 0.12918485701084137 -0.17047639191150665 0.9768364429473877 0.08795434236526489 -0.11993774026632309 0.9888607263565063 0.056794945150613785 -0.08209478855133057 0.9949949383735657 0.03308206424117088 -0.05047761648893356 0.9981688857078552 0.0160222165286541 -0.024994660168886185 0.999542236328125 0.0058290353044867516 -0.008880886249244213 0.99993896484375 0.001342814415693283 -0.0018921475857496262 0.999969482421875 0.00012207403779029846 -0.00015259254723787308 1.0 0.0 0.0 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 0.3014313280582428 -0.3790704011917114 0.8748741149902344 0.28186896443367004 -0.3628040552139282 0.8881801962852478 0.24872584640979767 -0.33866390585899353 0.9074068665504456 0.20178838074207306 -0.287606418132782 0.9362162947654724 0.14951017498970032 -0.21970275044441223 0.964018702507019 0.1033051535487175 -0.1579332798719406 0.982024610042572 0.06814783066511154 -0.11026337742805481 0.9915463924407959 0.04220709949731827 -0.0719016045331955 0.9964903593063354 0.02291940152645111 -0.0399487279355526 0.9989318251609802 0.0099795525893569 -0.017090365290641785 0.999786376953125 0.0031128879636526108 -0.005005035549402237 0.999969482421875 0.0005493331700563431 -0.00079348124563694 0.999969482421875 3.0518509447574615e-05 -3.0518509447574615e-05 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 0.2790307402610779 -0.39436018466949463 0.8755455017089844 0.26560258865356445 -0.38386180996894836 0.8843348622322083 0.24433118104934692 -0.3727836012840271 0.8951383829116821 0.20975372195243835 -0.33564257621765137 0.9183324575424194 0.16321298480033875 -0.2707602083683014 0.9486984014511108 0.11551255732774734 -0.20044556260108948 0.9728385210037231 0.07675404846668243 -0.14139226078987122 0.9869685769081116 0.04864650219678879 -0.0947294533252716 0.9942930340766907 0.028351694345474243 -0.056642353534698486 0.9979857802391052 0.014038514345884323 -0.027619250118732452 0.99951171875 0.005340739153325558 -0.010040589608252048 0.999908447265625 0.001342814415693283 -0.0023194067180156708 0.999969482421875 0.00015259254723787308 -0.0002136295661330223 1.0 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 0.18085268139839172 0.9834895133972168 0.24835963547229767 -0.41013824939727783 0.8775292038917542 0.23407696187496185 -0.39960935711860657 0.886257529258728 0.21961119771003723 -0.39457380771636963 0.8922086358070374 0.1984313428401947 -0.3711966276168823 0.9070711135864258 0.16425061225891113 -0.316934734582901 0.9340800046920776 0.12146367132663727 -0.24460585415363312 0.9619739651679993 0.08182012289762497 -0.1752372831106186 0.9811090230941772 0.052034057676792145 -0.1185644119977951 0.9915769100189209 0.031342510133981705 -0.07367168366909027 0.9967650175094604 0.016907254233956337 -0.039307840168476105 0.999053955078125 0.0074159977957606316 -0.01654103212058544 0.99981689453125 0.0023194067180156708 -0.0048829615116119385 0.999969482421875 0.0004272591322660446 -0.0007629627361893654 0.999969482421875 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 6.103701889514923e-05 -0.00012207403779029846 1.0 0.0 0.18085268139839172 0.9834895133972168 0.22837001085281372 -0.43180638551712036 0.8725547194480896 0.20404675602912903 -0.41740164160728455 0.8854945302009583 0.18607135117053986 -0.40998566150665283 0.8928800225257874 0.17126987874507904 -0.39341410994529724 0.9032562971115112 0.1499679535627365 -0.35178685188293457 0.9239478707313538 0.11774040758609772 -0.2850123643875122 0.9512314200401306 0.08203375339508057 -0.20972320437431335 0.9743034243583679 0.05249183624982834 -0.1430707722902298 0.9883114099502563 0.0318918414413929 -0.09030427038669586 0.9953917264938354 0.018066957592964172 -0.05087435618042946 0.9985350966453552 0.008758812211453915 -0.0237739197909832 0.999664306640625 0.0032349620014429092 -0.00827051606029272 0.99993896484375 0.0007629627361893654 -0.001739555038511753 0.999969482421875 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.00015259254723787308 -0.0003662221133708954 0.999969482421875 0.0 0.18085268139839172 0.9834895133972168 0.2301095575094223 -0.46382030844688416 0.8554948568344116 0.1901608258485794 -0.4445326030254364 0.8753318786621094 0.1597949117422104 -0.4282967746257782 0.8893703818321228 0.14087343215942383 -0.40867334604263306 0.9016999006271362 0.12543107569217682 -0.3744620978832245 0.9186986684799194 0.10379344969987869 -0.3167210817337036 0.9428083300590515 0.07586901634931564 -0.24127933382987976 0.9674672484397888 0.049592576920986176 -0.1668752133846283 0.9847102165222168 0.03027436137199402 -0.10620441287755966 0.9938657879829407 0.01742606982588768 -0.061586350202560425 0.9979247450828552 0.008941923268139362 -0.03082369454205036 0.999481201171875 0.003662221133708954 -0.012024292722344398 0.999908447265625 0.001037629321217537 -0.003082369454205036 0.999969482421875 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0001831110566854477 -0.0007019257172942162 0.999969482421875 0.0 0.18082216382026672 0.9834895133972168 0.2472304403781891 -0.5072176456451416 0.825556218624115 0.19180883467197418 -0.4837794005870819 0.8538773655891418 0.14731284976005554 -0.45567187666893005 0.8778343796730042 0.11825922131538391 -0.42576372623443604 0.8970610499382019 0.10003967583179474 -0.3905148506164551 0.9151280522346497 0.08359019458293915 -0.33887752890586853 0.9371013641357422 0.0636005699634552 -0.26673176884651184 0.9616382122039795 0.04281746968626976 -0.18799401819705963 0.9812310934066772 0.026367992162704468 -0.12060914933681488 0.9923398494720459 0.015198217704892159 -0.0710776075720787 0.9973449110984802 0.00799584947526455 -0.036988433450460434 0.999267578125 0.0035401470959186554 -0.015594958327710629 0.999847412109375 0.0011291848495602608 -0.004577776417136192 0.999969482421875 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0001831110566854477 -0.0010681478306651115 0.999969482421875 0.0 0.18079164624214172 0.9834895133972168 0.26633504033088684 -0.5593737363815308 0.7849360704421997 0.20050661265850067 -0.5319375991821289 0.8226569294929504 0.14615313708782196 -0.4923856258392334 0.8579973578453064 0.10663167387247086 -0.4500564634799957 0.886593222618103 0.08053834736347198 -0.40733054280281067 0.9096957445144653 0.063020721077919 -0.35496076941490173 0.9327372312545776 0.047975096851587296 -0.2851649522781372 0.9572435617446899 0.032929472625255585 -0.20484024286270142 0.9782097935676575 0.020294807851314545 -0.13254188001155853 0.9909359812736511 0.011658070608973503 -0.0787987932562828 0.9967955350875854 0.006195257417857647 -0.04193243384361267 0.99908447265625 0.0028077028691768646 -0.018494216725230217 0.99981689453125 0.0009765923023223877 -0.005920590832829475 0.999969482421875 0.0 0.9373149871826172 0.3484298288822174 0.0 0.9848933219909668 0.17313151061534882 0.00012207403779029846 -0.0013733329251408577 0.999969482421875 0.0 0.18076112866401672 0.9835200309753418 0.28070923686027527 -0.6149479746818542 0.7368693947792053 0.21158482134342194 -0.5828729867935181 0.7845088243484497 0.15268410742282867 -0.5351115465164185 0.8308358788490295 0.10440382361412048 -0.4828943610191345 0.869411289691925 0.06878872215747833 -0.4295480251312256 0.9003875851631165 0.046418651938438416 -0.36976227164268494 0.9279457926750183 0.03253272920846939 -0.29825738072395325 0.9539170265197754 0.021759696304798126 -0.21701711416244507 0.9758903980255127 0.013061922043561935 -0.14142277836799622 0.9898373484611511 0.007202368229627609 -0.08426160365343094 0.9963988065719604 0.003723258152604103 -0.04535050690174103 0.9989623427391052 0.0016785180196166039 -0.02050843834877014 0.999786376953125 0.0005798516795039177 -0.0068666646257042885 0.999969482421875 0.0 0.9373149871826172 0.3484298288822174 0.0 0.9848933219909668 0.17313151061534882 0.0 -0.0014954069629311562 0.999969482421875 0.0 0.18073061108589172 0.9835200309753418 0.29145175218582153 -0.6674093008041382 0.6852626204490662 0.22507400810718536 -0.6317026019096375 0.7417829036712646 0.16473890841007233 -0.5807061791419983 0.7972350120544434 0.10968352109193802 -0.5229346752166748 0.8452406525611877 0.06555375456809998 -0.45823541283607483 0.886379599571228 0.036988433450460434 -0.3868831396102905 0.921353816986084 0.020874660462141037 -0.3092135488986969 0.9507431387901306 0.011597033590078354 -0.22534868121147156 0.9741813540458679 0.005859553813934326 -0.14722129702568054 0.9890743494033813 0.0025635547935962677 -0.0874965637922287 0.9961546659469604 0.0010071108117699623 -0.047090061008930206 0.9988707900047302 0.0003662221133708954 -0.02145451307296753 0.999755859375 9.155552834272385e-05 -0.007293923757970333 0.999969482421875 0.0 0.9373149871826172 0.3484298288822174 0.0 0.9848933219909668 0.17313151061534882 -9.155552834272385e-05 -0.001434369944036007 0.999969482421875 0.0 0.18073061108589172 0.9835200309753418 0.29728078842163086 -0.7113864421844482 0.6367992162704468 0.23929563164710999 -0.6766258478164673 0.69631028175354 0.17828913033008575 -0.6272774338722229 0.7580797672271729 0.1188390776515007 -0.5670949220657349 0.8150272965431213 0.06964323669672012 -0.4919583797454834 0.8677937984466553 0.03588976711034775 -0.40800195932388306 0.9122592806816101 0.0159916989505291 -0.32123783230781555 0.9468367695808411 0.005706961266696453 -0.23191015422344208 0.9726859331130981 0.0009155552834272385 -0.1508529931306839 0.9885250329971313 -0.001037629321217537 -0.08902249485254288 0.9960020780563354 -0.001342814415693283 -0.0473952442407608 0.9988707900047302 -0.0008545182645320892 -0.02133243903517723 0.999755859375 -0.0003662221133708954 -0.007171849720180035 0.999969482421875 0.0 0.9373149871826172 0.3484298288822174 0.0 0.9848933219909668 0.17313151061534882 -0.0001831110566854477 -0.00119022186845541 0.999969482421875 0.0 0.18079164624214172 0.9834895133972168 0.2920010983943939 -0.7457503080368042 0.598803699016571 0.2449720799922943 -0.7172459959983826 0.65227210521698 0.18710897862911224 -0.6729331612586975 0.7156285047531128 0.1280861794948578 -0.6110416054725647 0.7811517715454102 0.07837153226137161 -0.5280007123947144 0.8456068634986877 0.04138309881091118 -0.43311870098114014 0.9003570675849915 0.017944883555173874 -0.33561205863952637 0.9418011903762817 0.005890072323381901 -0.2387157827615738 0.9710684418678284 0.0005188146606087685 -0.15393535792827606 0.9880672693252563 -0.0017700735479593277 -0.09015167504549026 0.9959105253219604 -0.002288888208568096 -0.047090061008930206 0.9988707900047302 -0.0016479995101690292 -0.02053895592689514 0.999786376953125 -0.0007324442267417908 -0.006591998040676117 0.999969482421875 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 -0.00015259254723787308 -0.0008545182645320892 0.999969482421875 0.0 0.18082216382026672 0.9834895133972168 0.27433088421821594 -0.7720572352409363 0.5732291340827942 0.2388683706521988 -0.7513962388038635 0.6150700449943542 0.1901608258485794 -0.713522732257843 0.6743064522743225 0.13718070089817047 -0.651753306388855 0.7459028959274292 0.08877834677696228 -0.5646534562110901 0.8204901218414307 0.04998932033777237 -0.461104154586792 0.885921835899353 0.02471999265253544 -0.35169529914855957 0.9357585310935974 0.011719107627868652 -0.2464064508676529 0.9690847396850586 0.00515762809664011 -0.1579943299293518 0.9873958826065063 0.0012512588873505592 -0.09231849014759064 0.9956969022750854 -0.0007629627361893654 -0.0474868007004261 0.9988402724266052 -0.0011291848495602608 -0.01986755058169365 0.999786376953125 -0.0006408886983990669 -0.005859553813934326 0.999969482421875 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 3.0518509447574615e-05 -0.0007324442267417908 0.999969482421875 0.0 0.18082216382026672 0.9834895133972168 0.2471083700656891 -0.790429413318634 0.5604419112205505 0.22742393612861633 -0.7763298153877258 0.5878475308418274 0.19177831709384918 -0.7459334135055542 0.6377758383750916 0.14603106677532196 -0.6886807084083557 0.7101657390594482 0.09903256595134735 -0.6011536121368408 0.7929624319076538 0.06030457466840744 -0.48969998955726624 0.869777500629425 0.035309914499521255 -0.36844995617866516 0.9289529323577881 0.02154606766998768 -0.2553178369998932 0.9665822386741638 0.013275551609694958 -0.16382336616516113 0.9863887429237366 0.007293923757970333 -0.09640797227621078 0.9953001737594604 0.0032349620014429092 -0.049531541764736176 0.9987487196922302 0.0010986663401126862 -0.020355846732854843 0.999786376953125 0.0002441480755805969 -0.005706961266696453 0.999969482421875 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.22876673936843872 -0.23670156300067902 0.9442426562309265 0.17914365231990814 -0.18451490998268127 0.9663380980491638 0.13254188001155853 -0.13733328878879547 0.981597363948822 0.09356974810361862 -0.09787286072969437 0.9907833933830261 0.06262397766113281 -0.06588946282863617 0.9958494901657104 0.03839228302240372 -0.04101687669754028 0.9984130263328552 0.021179845556616783 -0.02307199314236641 0.999481201171875 0.010498367249965668 -0.011474959552288055 0.9998779296875 0.004669331945478916 -0.0048829615116119385 0.999969482421875 0.0016785180196166039 -0.0016174810007214546 0.999969482421875 0.0003662221133708954 -0.00033570360392332077 0.999969482421875 0.0 0.0 1.0 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.17627491056919098 -0.18485061824321747 0.9667958617210388 0.13165685534477234 -0.13733328878879547 0.981719434261322 0.09292886406183243 -0.09756767749786377 0.9908749461174011 0.06167790666222572 -0.06564531475305557 0.9959105253219604 0.037720877677202225 -0.040864285081624985 0.9984435439109802 0.020416881889104843 -0.022827845066785812 0.99951171875 0.009643848985433578 -0.011230811476707458 0.9998779296875 0.003997924737632275 -0.00476088747382164 0.999969482421875 0.0014648884534835815 -0.0016479995101690292 0.999969482421875 0.0003662221133708954 -0.0003662221133708954 0.999969482421875 3.0518509447574615e-05 -3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.1281472146511078 -0.13708914816379547 0.982207715511322 0.09152501076459885 -0.09653004258871078 0.9910885691642761 0.06088442727923393 -0.06421094387769699 0.9960631132125854 0.036988433450460434 -0.0394299142062664 0.9985350966453552 0.01980651170015335 -0.021637622267007828 0.999542236328125 0.008941923268139362 -0.010284737683832645 0.9998779296875 0.003326517529785633 -0.0040894802659749985 0.999969482421875 0.001037629321217537 -0.0013122959062457085 0.999969482421875 0.0002441480755805969 -0.00030518509447574615 0.999969482421875 3.0518509447574615e-05 -3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.08783227205276489 -0.09384441375732422 0.9916989803314209 0.05932798236608505 -0.06195257604122162 0.9963072538375854 0.03625598922371864 -0.03747672960162163 0.9986266493797302 0.019409772008657455 -0.020081179216504097 0.999603271484375 0.008606219664216042 -0.009094515815377235 0.999908447265625 0.0029602954164147377 -0.0032959990203380585 0.999969482421875 0.0007324442267417908 -0.0008850367739796638 0.999969482421875 0.00012207403779029846 -0.00015259254723787308 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.05642872303724289 -0.059846796095371246 0.9965819120407104 0.03506576642394066 -0.036133915185928345 0.9987182021141052 0.01901303231716156 -0.01913510635495186 0.9996337890625 0.008545182645320892 -0.008423108607530594 0.999908447265625 0.0028992583975195885 -0.002868739888072014 0.999969482421875 0.0006408886983990669 -0.0006408886983990669 0.999969482421875 6.103701889514923e-05 -6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.032837916165590286 -0.03592028468847275 0.9988097548484802 0.01812799461185932 -0.01913510635495186 0.9996337890625 0.00833155307918787 -0.008484145626425743 0.999908447265625 0.0029602954164147377 -0.0028992583975195885 0.999969482421875 0.0007019257172942162 -0.0006714072078466415 0.999969482421875 6.103701889514923e-05 -6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.016174810007214546 -0.01901303231716156 0.999664306640625 0.007507553324103355 -0.008545182645320892 0.999908447265625 0.0027466658502817154 -0.0029908139258623123 0.999969482421875 0.0006714072078466415 -0.0007019257172942162 0.999969482421875 6.103701889514923e-05 -6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.0060731833800673485 -0.007629627361893654 0.99993896484375 0.0021668141707777977 -0.002624591812491417 0.999969482421875 0.0005188146606087685 -0.0006103701889514923 0.999969482421875 6.103701889514923e-05 -6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.001434369944036007 -0.001831110566854477 0.999969482421875 0.00030518509447574615 -0.0003662221133708954 0.999969482421875 3.0518509447574615e-05 -3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.00012207403779029846 -0.00015259254723787308 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 -0.18085268139839172 0.0 0.9834895133972168 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0 0.18085268139839172 0.9834895133972168 -0.22827845811843872 0.22827845811843872 0.9464400410652161 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 0.0 0.9848933219909668 0.17313151061534882 0.0 0.9373149871826172 0.3483993113040924 -0.9323099255561829 0.18866541981697083 0.3084505796432495 -0.982421338558197 0.06039613112807274 0.17658010125160217 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 0.0 0.18085268139839172 0.9834895133972168 -0.06039613112807274 0.982421338558197 0.17658010125160217 -0.18869593739509583 0.9323099255561829 0.3084505796432495 -0.6880397796630859 0.6880397796630859 0.2305673360824585 -0.522171676158905 0.8040406703948975 0.2842799127101898 -0.6636860370635986 0.6636860370635986 0.34498122334480286 -0.8040406703948975 0.522171676158905 0.2842799127101898 0.00015259254723787308 0.0008239997550845146 0.999969482421875 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0001831110566854477 0.0011597033590078354 0.999969482421875 0.5379497408866882 0.36152225732803345 0.7614978551864624 0.5346537828445435 0.317209392786026 0.7832575440406799 0.490951269865036 0.3259376883506775 0.807886004447937 0.5008697509765625 0.3727530837059021 0.7811212539672852 0.4438917338848114 0.3422345519065857 0.8281197547912598 0.45710623264312744 0.3894467055797577 0.7995849251747131 0.39417707920074463 0.3672597408294678 0.8424329161643982 0.40739157795906067 0.41508224606513977 0.8134403228759766 0.3404034674167633 0.3966795802116394 0.8524734973907471 0.35126805305480957 0.44755393266677856 0.8223517537117004 0.28058716654777527 0.4142277240753174 0.8658100962638855 0.28830835223197937 0.47163304686546326 0.8333079218864441 0.21619312465190887 0.39463484287261963 0.8930020928382874 0.2213812619447708 0.45728933811187744 0.861293375492096 0.15341654419898987 0.33027130365371704 0.9313028454780579 0.15720084309577942 0.3891414999961853 0.9076510071754456 0.09997864067554474 0.2448805272579193 0.964354395866394 0.1027558222413063 0.2916043698787689 0.9509872794151306 0.06018250063061714 0.1669362485408783 0.9840998649597168 0.06183049827814102 0.19998779892921448 0.9778130650520325 0.032837916165590286 0.10467848926782608 0.9939573407173157 0.033845026046037674 0.1266823261976242 0.9913632869720459 0.015198217704892159 0.055879391729831696 0.9982909560203552 0.0159611813724041 0.06936857104301453 0.9974364638328552 0.005371257662773132 0.022400585934519768 0.999725341796875 0.005798516795039177 0.028931546956300735 0.999542236328125 0.0012207403779029846 0.005584887228906155 0.999969482421875 0.0013733329251408577 0.007629627361893654 0.999969482421875 0.00012207403779029846 0.0005188146606087685 0.999969482421875 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 -0.9373149871826172 0.0 0.3484603464603424 -0.9848933219909668 0.0 0.17313151061534882 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3484298288822174 0.5105136036872864 0.2684713304042816 0.8168584108352661 0.46555987000465393 0.2779015600681305 0.8402355909347534 0.4203924536705017 0.29572436213493347 0.8577532172203064 0.3741874396800995 0.32081055641174316 0.87005215883255 0.3242591619491577 0.34665974974632263 0.8801233172416687 0.26804405450820923 0.3568834364414215 0.8948332071304321 0.20651875436306 0.3321024179458618 0.9203466773033142 0.14581744372844696 0.27207252383232117 0.9511398673057556 0.09448530524969101 0.19953002035617828 0.9753105044364929 0.056611835956573486 0.1351054459810257 0.9891964197158813 0.030487991869449615 0.08322397619485855 0.9960325956344604 0.013763847760856152 0.04297006130218506 0.9989623427391052 0.004699850454926491 0.016418958082795143 0.999847412109375 0.001037629321217537 0.0037537766620516777 0.999969482421875 9.155552834272385e-05 0.00027466658502817154 0.999969482421875 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9848933219909668 0.17313151061534882 6.103701889514923e-05 0.00012207403779029846 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.4753868281841278 0.21985533833503723 0.8518326282501221 0.43336284160614014 0.23258155584335327 0.8706625699996948 0.39237648248672485 0.2526017129421234 0.8844264149665833 0.3503524959087372 0.2771996259689331 0.8946195840835571 0.3040253818035126 0.29801324009895325 0.904812753200531 0.25025177001953125 0.299844354391098 0.9205603003501892 0.1905575692653656 0.2704855501651764 0.9436628222465515 0.13272500038146973 0.21631519496440887 0.9672536253929138 0.08511612564325333 0.15695668756961823 0.9839167594909668 0.050325021147727966 0.10525833815336227 0.9931638240814209 0.026581622660160065 0.0632648691534996 0.9976195693016052 0.011688589118421078 0.031311988830566406 0.999420166015625 0.0038453321903944016 0.01116977445781231 0.999908447265625 0.0007629627361893654 0.0022583696991205215 0.999969482421875 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 3.0518509447574615e-05 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.4344309866428375 0.17603075504302979 0.8833277225494385 0.3978697955608368 0.19248023629188538 0.8970000147819519 0.36204108595848083 0.2138126790523529 0.9072847962379456 0.3237403631210327 0.23599962890148163 0.9162266850471497 0.2788171172142029 0.24958036839962006 0.9273049235343933 0.22537919878959656 0.24265266954898834 0.9435407519340515 0.16772973537445068 0.21118807792663574 0.9629200100898743 0.11468856036663055 0.16516616940498352 0.9795526266098022 0.07266457378864288 0.1186864823102951 0.9902645945549011 0.042420729994773865 0.07855464518070221 0.9960020780563354 0.021942809224128723 0.045716725289821625 0.9986876845359802 0.009277626872062683 0.02130191959440708 0.999725341796875 0.0028382213786244392 0.0068666646257042885 0.999969482421875 0.0004882961511611938 0.0011597033590078354 0.999969482421875 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.395580917596817 0.13861507177352905 0.9078951478004456 0.3638722002506256 0.15726187825202942 0.9180577993392944 0.33066806197166443 0.17777031660079956 0.9268471598625183 0.2922147214412689 0.19461654126644135 0.9363383650779724 0.2456129640340805 0.19956053793430328 0.9485763311386108 0.19254127144813538 0.18631550669670105 0.9634082913398743 0.13959166407585144 0.15695668756961823 0.9776604771614075 0.09396649152040482 0.12079226225614548 0.9881893396377563 0.05899227783083916 0.08612323552370071 0.9945066571235657 0.03396710008382797 0.055879391729831696 0.9978331923484802 0.016968291252851486 0.03088473156094551 0.999359130859375 0.006653035059571266 0.01315347757190466 0.9998779296875 0.0018005920574069023 0.003662221133708954 0.999969482421875 0.0002441480755805969 0.00045777764171361923 0.999969482421875 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.3570360541343689 0.10553300380706787 0.9280983805656433 0.3260292410850525 0.12387462705373764 0.9371929168701172 0.29108554124832153 0.14078187942504883 0.9462568759918213 0.24997711181640625 0.1508224755525589 0.9564195871353149 0.20297861099243164 0.14914394915103912 0.9677419066429138 0.15421003103256226 0.1345255970954895 0.9788201451301575 0.10956145077943802 0.1109958216547966 0.9877315759658813 0.07321390509605408 0.08468886464834213 0.9936826825141907 0.045594654977321625 0.05960264801979065 0.9971618056297302 0.02542191743850708 0.03720206394791603 0.9989623427391052 0.011810663156211376 0.01898251287639141 0.999725341796875 0.004150517284870148 0.007110812701284885 0.99993896484375 0.0009155552834272385 0.00158696249127388 0.999969482421875 9.155552834272385e-05 0.00012207403779029846 1.0 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.3020111620426178 0.07467879354953766 0.9503464102745056 0.2713095545768738 0.09030427038669586 0.9582201838493347 0.23606066405773163 0.10238959640264511 0.9663075804710388 0.19650867581367493 0.10745567083358765 0.9745780825614929 0.15521714091300964 0.1035798192024231 0.982421338558197 0.11590930074453354 0.09161656349897385 0.9890133142471313 0.08182012289762497 0.07498397678136826 0.9938047528266907 0.05420087277889252 0.056672871112823486 0.9969176054000854 0.03277687728404999 0.038544878363609314 0.9986876845359802 0.017151402309536934 0.022400585934519768 0.99957275390625 0.007171849720180035 0.010193182155489922 0.999908447265625 0.002136295661330223 0.00317392498254776 0.999969482421875 0.0003662221133708954 0.0005188146606087685 0.999969482421875 0.0 0.0 1.0 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.22739341855049133 0.0475478395819664 0.9726248979568481 0.20181889832019806 0.05948057398200035 0.9775994420051575 0.17279580235481262 0.06778161227703094 0.982604444026947 0.14178898930549622 0.07071138918399811 0.9873653650283813 0.110904261469841 0.06769005209207535 0.9915158748626709 0.08236945420503616 0.05948057398200035 0.9948118329048157 0.057649463415145874 0.048158206045627594 0.9971618056297302 0.03711050748825073 0.035279396921396255 0.9986876845359802 0.021088290959596634 0.022492140531539917 0.99951171875 0.0099795525893569 0.011719107627868652 0.9998779296875 0.00357066560536623 0.004516739398241043 0.999969482421875 0.0008239997550845146 0.0010681478306651115 0.999969482421875 6.103701889514923e-05 9.155552834272385e-05 1.0 0.0 0.0 1.0 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.15384380519390106 0.027527695521712303 0.9877010583877563 0.13681447505950928 0.036072880029678345 0.9899289011955261 0.11725211143493652 0.04196295142173767 0.9921872615814209 0.09625537693500519 0.04412976652383804 0.9943540692329407 0.07510605454444885 0.04205450415611267 0.9962767362594604 0.055085908621549606 0.03646961972117424 0.9978026747703552 0.03726309910416603 0.02856532484292984 0.9988707900047302 0.022522659972310066 0.019562363624572754 0.999542236328125 0.01156651508063078 0.011230811476707458 0.999847412109375 0.004669331945478916 0.004974517039954662 0.999969482421875 0.0013122959062457085 0.0014954069629311562 0.999969482421875 0.0001831110566854477 0.0002136295661330223 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.09823907911777496 0.015198217704892159 0.9950254559516907 0.08813745528459549 0.020966216921806335 0.9958800077438354 0.07574693858623505 0.024842066690325737 0.9967955350875854 0.06170842796564102 0.02606280706822872 0.9977416396141052 0.047090061008930206 0.024292733520269394 0.9985656142234802 0.03314310312271118 0.020172733813524246 0.999237060546875 0.020905178040266037 0.01474044006317854 0.999664306640625 0.011322367005050182 0.00906399730592966 0.9998779296875 0.004943998530507088 0.004425183869898319 0.999969482421875 0.0015564439818263054 0.0015259254723787308 0.999969482421875 0.00027466658502817154 0.00030518509447574615 0.999969482421875 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.059236425906419754 0.008087405003607273 0.9981994032859802 0.05291909724473953 0.011535996571183205 0.9985045790672302 0.04467909783124924 0.01355021819472313 0.9989013075828552 0.03518784046173096 0.013733329251408577 0.999267578125 0.02542191743850708 0.012176885269582272 0.99957275390625 0.016418958082795143 0.009338663890957832 0.99981689453125 0.009155552834272385 0.0060731833800673485 0.99993896484375 0.004181035794317722 0.0031434064731001854 0.999969482421875 0.0014038514345884323 0.00119022186845541 0.999969482421875 0.00027466658502817154 0.00027466658502817154 0.999969482421875 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.03082369454205036 0.003814813680946827 0.99951171875 0.02685628831386566 0.005493331700563431 0.999603271484375 0.021668141707777977 0.006195257417857647 0.999725341796875 0.01593066193163395 0.005890072323381901 0.999847412109375 0.010437330231070518 0.00476088747382164 0.999908447265625 0.005890072323381901 0.0032349620014429092 0.999969482421875 0.0027161473408341408 0.001739555038511753 0.999969482421875 0.0009155552834272385 0.0007019257172942162 0.999969482421875 0.0001831110566854477 0.00015259254723787308 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.01184118166565895 0.0013733329251408577 0.999908447265625 0.0098574785515666 0.0019531846046447754 0.99993896484375 0.007385479286313057 0.002075258642435074 0.999969482421875 0.0048829615116119385 0.0017700735479593277 0.999969482421875 0.0027466658502817154 0.0012512588873505592 0.999969482421875 0.0012207403779029846 0.0007019257172942162 0.999969482421875 0.00039674062281847 0.00027466658502817154 0.999969482421875 6.103701889514923e-05 6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 0.0 1.0 0.0 -0.18085268139839172 0.9834895133972168 0.002685628831386566 0.00033570360392332077 0.999969482421875 0.002075258642435074 0.00045777764171361923 0.999969482421875 0.0013733329251408577 0.0004272591322660446 0.999969482421875 0.0007324442267417908 0.00030518509447574615 0.999969482421875 0.00030518509447574615 0.00015259254723787308 1.0 6.103701889514923e-05 6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 -0.18085268139839172 0.0 0.9834895133972168 -0.22827845811843872 -0.22827845811843872 0.9464400410652161 0.0030518509447574615 9.155552834272385e-05 0.999969482421875 -0.18036438524723053 0.0 0.9835810661315918 -0.18045595288276672 6.103701889514923e-05 0.9835810661315918 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3484298288822174 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 -0.9373149871826172 0.0 0.3483993113040924 -0.18866541981697083 -0.9323099255561829 0.3084505796432495 -0.06039613112807274 -0.982421338558197 0.17658010125160217 -0.18057802319526672 6.103701889514923e-05 0.9835505485534668 -0.18073061108589172 6.103701889514923e-05 0.9835200309753418 -0.9373149871826172 0.0 0.3484603464603424 -0.9848933219909668 0.0 0.17313151061534882 -0.18082216382026672 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.18085268139839172 0.0 0.9834895133972168 -0.982421338558197 -0.06039613112807274 0.17658010125160217 -0.9323099255561829 -0.18869593739509583 0.3084505796432495 -0.6880397796630859 -0.6880397796630859 0.2305673360824585 -0.8040406703948975 -0.522171676158905 0.2842799127101898 -0.6636860370635986 -0.6636860370635986 0.34498122334480286 -0.522171676158905 -0.8040406703948975 0.2842799127101898 0.0 -0.18082216382026672 0.9834895133972168 0.0002441480755805969 0.00158696249127388 0.999969482421875 0.4861903786659241 0.41499069333076477 0.7689749002456665 0.5138706564903259 0.3981139659881592 0.7598803639411926 0.4533524513244629 0.44813379645347595 0.7704702615737915 0.4699545204639435 0.42292550206184387 0.7747429013252258 0.4113589823246002 0.4684286117553711 0.7818536758422852 0.41721853613853455 0.4349192678928375 0.7979369759559631 0.36130863428115845 0.4778588116168976 0.8006531000137329 0.36213263869285583 0.43928343057632446 0.8221076130867004 0.29807427525520325 0.4841151237487793 0.8226569294929504 0.3022247850894928 0.4449293613433838 0.843012809753418 0.221472829580307 0.4941251873970032 0.8406933546066284 0.23413801193237305 0.45759454369544983 0.8577532172203064 0.14084291458129883 0.5106661915779114 0.8481398820877075 0.16290780901908875 0.4767906665802002 0.8637653589248657 0.07266457378864288 0.5325480103492737 0.843256950378418 0.09988708049058914 0.4987334907054901 0.860957682132721 0.03781243413686752 0.556260883808136 0.8301339745521545 0.06430249661207199 0.5196996927261353 0.8519241809844971 0.029511399567127228 0.5803094506263733 0.8138371109962463 0.056001465767621994 0.539017915725708 0.8404186964035034 0.018036440014839172 0.6055787801742554 0.7955564856529236 0.04837183654308319 0.5598620772361755 0.827143132686615 -0.0028992583975195885 0.6307260394096375 0.7759636044502258 0.02938932552933693 0.5850398540496826 0.8104495406150818 -0.015228736214339733 0.652180552482605 0.7578661441802979 0.015564439818263054 0.6131778955459595 0.7897579669952393 -0.01348918117582798 0.670003354549408 0.7422101497650146 0.01654103212058544 0.6411938667297363 0.7671743035316467 -0.005096591077744961 0.6870021820068359 0.7266151905059814 0.02307199314236641 0.6655476689338684 0.7459639310836792 0.00787377543747425 0.7018341422080994 0.712271511554718 0.027527695521712303 0.6825769543647766 0.730246901512146 0.4499954283237457 0.43366801738739014 0.7806329727172852 0.42570269107818604 0.47172459959983826 0.7721487879753113 0.39356669783592224 0.5012055039405823 0.7706229090690613 0.35172581672668457 0.521439254283905 0.7773979902267456 0.29071933031082153 0.5354167222976685 0.7929319143295288 0.20969267189502716 0.5477156639099121 0.8099307417869568 0.12125004082918167 0.5610522627830505 0.8188115954399109 0.047822505235672 0.5759453177452087 0.8160649538040161 0.010406811721622944 0.5934629440307617 0.8047730922698975 -0.001831110566854477 0.6153752207756042 0.7882015705108643 -0.01547288428992033 0.6398510932922363 0.7683339715003967 -0.03088473156094551 0.6608783006668091 0.7498092651367188 -0.03399761766195297 0.6741538643836975 0.7377849817276001 -0.029786065220832825 0.6817529797554016 0.730948805809021 -0.024842066690325737 0.6894741654396057 0.7238380312919617 -0.01037629321217537 0.6989654302597046 0.7150486707687378 0.4060182571411133 0.460982084274292 0.7890560626983643 0.3877376616001129 0.5019379258155823 0.773064374923706 0.36045411229133606 0.5380107760429382 0.7619556188583374 0.3250221312046051 0.5693227648735046 0.7550889849662781 0.2712790369987488 0.5945310592651367 0.7568895816802979 0.19507431983947754 0.6121097207069397 0.766289234161377 0.10882900655269623 0.6216620206832886 0.7756584286689758 0.035279396921396255 0.6256599426269531 0.7792901396751404 -0.008178960531949997 0.6310922503471375 0.7756279110908508 -0.029786065220832825 0.6438795328140259 0.7645191550254822 -0.04516739398241043 0.6612140536308289 0.748802125453949 -0.051332131028175354 0.6758018732070923 0.7352824211120605 -0.043366800993680954 0.6839197874069214 0.7282326817512512 -0.034485913813114166 0.6864833235740662 0.7263100147247314 -0.0315866582095623 0.6864528059959412 0.7264626026153564 -0.020874660462141037 0.6874294281005859 0.7259132862091064 0.35230568051338196 0.49729910492897034 0.7928098440170288 0.33872494101524353 0.5430768728256226 0.7683034539222717 0.31318095326423645 0.5840937495231628 0.748802125453949 0.28092288970947266 0.6208380460739136 0.7318338751792908 0.2381359338760376 0.6508682370185852 0.7208471894264221 0.17880794405937195 0.669270932674408 0.7211523652076721 0.10745567083358765 0.6738181710243225 0.731009840965271 0.038514360785484314 0.6688436269760132 0.7423932552337646 -0.013519699685275555 0.6641438007354736 0.747459352016449 -0.046510208398103714 0.6663106083869934 0.7441938519477844 -0.0638142004609108 0.6730857491493225 0.7367778420448303 -0.0635090172290802 0.6797082424163818 0.730674147605896 -0.048005614429712296 0.6837061643600464 0.7281411290168762 -0.032105471938848495 0.6830652952194214 0.729636549949646 -0.02526932582259178 0.6770531535148621 0.7354655861854553 -0.020142216235399246 0.670430600643158 0.7416608333587646 0.28901028633117676 0.5273293256759644 0.7989745736122131 0.2789391875267029 0.5787529945373535 0.766289234161377 0.25739312171936035 0.6235236525535583 0.7381817102432251 0.2302621603012085 0.6603289842605591 0.7147740125656128 0.20136111974716187 0.6876125335693359 0.6975615620613098 0.16547136008739471 0.7026276588439941 0.6920071840286255 0.11520737409591675 0.7045503258705139 0.7002166509628296 0.05301064997911453 0.6968596577644348 0.7152012586593628 -0.005493331700563431 0.6860560774803162 0.7275002002716064 -0.046510208398103714 0.6768090128898621 0.7346415519714355 -0.06622516363859177 0.669972836971283 0.7394024729728699 -0.06512650102376938 0.6650288105010986 0.7439497113227844 -0.0474257618188858 0.6612445712089539 0.748649537563324 -0.025147251784801483 0.6561479568481445 0.7541733980178833 -0.01263466291129589 0.6481215953826904 0.7614063024520874 -0.013519699685275555 0.6407361030578613 0.7676015496253967 0.2221442312002182 0.5176854729652405 0.82619708776474 0.21649830043315887 0.5724967122077942 0.790765106678009 0.20307016372680664 0.6188543438911438 0.7587816715240479 0.18613238632678986 0.6549882292747498 0.7323221564292908 0.17142246663570404 0.6806542873382568 0.712240993976593 0.15546128153800964 0.69618821144104 0.7007965445518494 0.12503433227539062 0.7012237906455994 0.7018341422080994 0.07373271882534027 0.69551682472229 0.7146824598312378 0.016388438642024994 0.6804406642913818 0.7325968146324158 -0.027161473408341408 0.6603289842605591 0.7504501342773438 -0.04977568984031677 0.6394848227500916 0.7671743035316467 -0.05243080109357834 0.6208990812301636 0.7820978164672852 -0.03866695240139961 0.6070131659507751 0.7937253713607788 -0.01757866144180298 0.598803699016571 0.8006836175918579 -0.004516739398241043 0.5949888825416565 0.8037049174308777 -0.010010071098804474 0.5939207077026367 0.8044373989105225 0.1591845452785492 0.44688254594802856 0.8802759051322937 0.1592150628566742 0.5005950927734375 0.8508865833282471 0.15573595464229584 0.5468306541442871 0.8226264119148254 0.1500900238752365 0.5841853022575378 0.7976012229919434 0.14609210193157196 0.6136966943740845 0.7758720517158508 0.1427045464515686 0.6363414525985718 0.7580492496490479 0.12921537458896637 0.6502578854560852 0.748619019985199 0.0954008623957634 0.6512344479560852 0.7528305649757385 0.048707541078329086 0.6369823217391968 0.7693105936050415 0.007690664380788803 0.6115909218788147 0.791100800037384 -0.01748710498213768 0.5821100473403931 0.8128910064697266 -0.02682577073574066 0.5548264980316162 0.8315073251724243 -0.023499252274632454 0.5352641344070435 0.844325065612793 -0.013183996081352234 0.5269631147384644 0.8497573733329773 -0.006561479531228542 0.5286416411399841 0.8488113284111023 -0.013763847760856152 0.5342875719070435 0.8451490998268127 0.10525833815336227 0.33857235312461853 0.9349955916404724 0.10910367220640182 0.38435012102127075 0.9166844487190247 0.11316263675689697 0.4267403185367584 0.8972441554069519 0.11572618782520294 0.46415600180625916 0.8781396150588989 0.11810663342475891 0.49699392914772034 0.8596453666687012 0.12164677679538727 0.5262611508369446 0.8415479063987732 0.12112796306610107 0.5499130487442017 0.82638019323349 0.10724204033613205 0.5623645782470703 0.8198797702789307 0.07846308499574661 0.5585497617721558 0.825739324092865 0.04544205963611603 0.539780855178833 0.8405407667160034 0.01904354989528656 0.5137791037559509 0.8576921820640564 0.0019531846046447754 0.48881497979164124 0.8723716139793396 -0.00714133121073246 0.47068697214126587 0.8822596073150635 -0.010437330231070518 0.4623859226703644 0.886593222618103 -0.013000885024666786 0.46308785676956177 0.886196494102478 -0.02075258642435074 0.4677266776561737 0.8836023807525635 0.0639057606458664 0.23380230367183685 0.9701529145240784 0.06833094358444214 0.2682577073574066 0.9609057903289795 0.07522812485694885 0.3028046488761902 0.9500716924667358 0.08233893662691116 0.33573412895202637 0.9383220672607422 0.08844263851642609 0.3660695254802704 0.9263588190078735 0.0949125662446022 0.39469587802886963 0.9138767719268799 0.10138248652219772 0.4214606285095215 0.9011505246162415 0.10177922993898392 0.443006694316864 0.8907132148742676 0.09054841846227646 0.4542069733142853 0.886257529258728 0.06952116638422012 0.4525894820690155 0.8889736533164978 0.045686207711696625 0.44141972064971924 0.8961150050163269 0.024445325136184692 0.4268318712711334 0.903988778591156 0.007477034814655781 0.41340371966362 0.9104892015457153 -0.005005035549402237 0.4038209319114685 0.9147922992706299 -0.014770958572626114 0.39899900555610657 0.9168065190315247 -0.02465895563364029 0.3979918956756592 0.9170202016830444 0.03503524884581566 0.14929655194282532 0.9881588220596313 0.03830073028802872 0.17316202819347382 0.9841303825378418 0.044862210750579834 0.1984008252620697 0.9790642857551575 0.05368205904960632 0.22406689822673798 0.9730826616287231 0.062257759273052216 0.24860377609729767 0.9665822386741638 0.06994841992855072 0.2717978358268738 0.9597765803337097 0.07794427126646042 0.2949308753013611 0.9522995948791504 0.08362071216106415 0.3181554675102234 0.9443036913871765 0.08239997923374176 0.33863338828086853 0.9372844696044922 0.07238990068435669 0.35245826840400696 0.9330118894577026 0.0555131696164608 0.3576464056968689 0.9321878552436829 0.03653065487742424 0.3556016683578491 0.9338968992233276 0.018616290763020515 0.3493759036064148 0.9367656707763672 0.0028382213786244392 0.3418378233909607 0.939725935459137 -0.01104770042002201 0.33548998832702637 0.9419537782669067 -0.02447584457695484 0.3318277597427368 0.9429914355278015 0.016449477523565292 0.08316294103860855 0.9963988065719604 0.01831110566854477 0.09775078296661377 0.9950254559516907 0.023316141217947006 0.11392559856176376 0.9931943416595459 0.031495101749897 0.13199254870414734 0.9907223582267761 0.04095584154129028 0.1510971337556839 0.9876400232315063 0.049562059342861176 0.16995757818222046 0.9841914176940918 0.05691701918840408 0.18890957534313202 0.9803155660629272 0.062379833310842514 0.20899075269699097 0.9758903980255127 0.0639667958021164 0.2297738641500473 0.9711294770240784 0.06006042659282684 0.24887844920158386 0.9666432738304138 0.05053865164518356 0.2634052634239197 0.9633472561836243 0.03738517314195633 0.2718283534049988 0.9616076946258545 0.022736288607120514 0.27481916546821594 0.9612109661102295 0.00799584947526455 0.27417829632759094 0.9616382122039795 -0.00674459058791399 0.2714926600456238 0.9624012112617493 -0.02145451307296753 0.26752525568008423 0.9632862210273743 0.0060731833800673485 0.03564561903476715 0.99932861328125 0.006927701644599438 0.04284798726439476 0.999053955078125 0.009887997061014175 0.05148472636938095 0.9985961318016052 0.0157780684530735 0.06262397766113281 0.9978942275047302 0.02386547438800335 0.07647938281297684 0.9967650175094604 0.032227545976638794 0.09219641983509064 0.9952086210250854 0.03900265693664551 0.10873744636774063 0.9932859539985657 0.04351939260959625 0.12570573389530182 0.9910885691642761 0.04519791156053543 0.1429487019777298 0.9886776208877563 0.04342783987522125 0.1597338765859604 0.9861751198768616 0.03820917382836342 0.1746879518032074 0.9838557243347168 0.029847102239727974 0.18671223521232605 0.981933057308197 0.019287697970867157 0.19519639015197754 0.9805597066879272 0.007629627361893654 0.19989623129367828 0.9797662496566772 -0.004608294926583767 0.20075075328350067 0.9796136617660522 -0.016479995101690292 0.19730216264724731 0.9801934957504272 0.0015259254723787308 0.0098574785515666 0.99993896484375 0.0018005920574069023 0.012329477816820145 0.999908447265625 0.003021332435309887 0.015686513856053352 0.999847412109375 0.006134220398962498 0.021088290959596634 0.999755859375 0.011352885514497757 0.02941984310746193 0.999481201171875 0.017731253057718277 0.040772728621959686 0.9989928603172302 0.023621326312422752 0.05413983762264252 0.9982299208641052 0.0278939176350832 0.06823939085006714 0.9972533583641052 0.029755547642707825 0.08212530612945557 0.9961546659469604 0.029053620994091034 0.0952177494764328 0.9950254559516907 0.025788139551877975 0.10705892741680145 0.9938963055610657 0.020081179216504097 0.11725211143493652 0.9928891658782959 0.012726218439638615 0.12509536743164062 0.9920346736907959 0.004455702379345894 0.13000884652137756 0.9914853572845459 -0.0038453321903944016 0.13141269981861115 0.9913022518157959 -0.011383404023945332 0.12891018390655518 0.9915769100189209 0.0005188146606087685 0.0023194067180156708 0.999969482421875 0.0016174810007214546 0.004028443247079849 0.999969482421875 0.004150517284870148 0.007629627361893654 0.99993896484375 0.008026367984712124 0.0138248847797513 0.999847412109375 0.012390514835715294 0.022431105375289917 0.999664306640625 0.016205329447984695 0.03259376809000969 0.99932861328125 0.018433179706335068 0.043244726955890656 0.9988707900047302 0.018646810203790665 0.053437910974025726 0.9983825087547302 0.01660206913948059 0.06250190734863281 0.9978942275047302 0.012817773967981339 0.06979583203792572 0.9974669814109802 0.007690664380788803 0.07489242404699326 0.9971312880516052 0.0020142216235399246 0.07766960561275482 0.9969481229782104 -0.0032349620014429092 0.07797478884458542 0.9969481229782104 -0.007751701399683952 0.07580797374248505 0.9970701932907104 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3484298288822174 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3484603464603424 0.0 -0.9848933219909668 0.17313151061534882 9.155552834272385e-05 -0.9372539520263672 0.3486129343509674 6.103701889514923e-05 -0.9848628044128418 0.17316202819347382 0.00039674062281847 -0.9371013641357422 0.3490096628665924 0.00015259254723787308 -0.9848628044128418 0.17319254577159882 0.0009155552834272385 -0.9368877410888672 0.3495895266532898 0.00027466658502817154 -0.9848628044128418 0.17322306334972382 0.0015259254723787308 -0.9366130828857422 0.3502914607524872 0.00039674062281847 -0.9848628044128418 0.17331461608409882 0.0020447401329874992 -0.9363383650779724 0.35108494758605957 0.0004882961511611938 -0.9848322868347168 0.17337565124034882 0.002288888208568096 -0.9360331892967224 0.35181736946105957 0.00045777764171361923 -0.9848322868347168 0.17346720397472382 0.0021973326802253723 -0.9358195662498474 0.35242775082588196 0.00039674062281847 -0.9848017692565918 0.17352823913097382 0.0017700735479593277 -0.9356364607810974 0.35291603207588196 0.0002441480755805969 -0.9848017692565918 0.17355875670909882 0.0010681478306651115 -0.9355143904685974 0.35322123765945435 6.103701889514923e-05 -0.9848017692565918 0.17355875670909882 0.0002441480755805969 -0.9354533553123474 0.35337382555007935 -9.155552834272385e-05 -0.9848017692565918 0.17355875670909882 -0.0005188146606087685 -0.9354533553123474 0.35334330797195435 -0.00027466658502817154 -0.9848017692565918 0.17352823913097382 -0.0011597033590078354 -0.9355143904685974 0.35322123765945435 3.0518509447574615e-05 -0.18076112866401672 0.9835200309753418 0.00030518509447574615 -0.18039490282535553 0.9835810661315918 0.0013733329251408577 -0.17899106442928314 0.9838252067565918 0.0035401470959186554 -0.17572557926177979 0.9844050407409668 0.0064699240028858185 -0.17035432159900665 0.9853510856628418 0.00946073792874813 -0.16324350237846375 0.9865108132362366 0.011627552099525928 -0.15518662333488464 0.9877926111221313 0.012329477816820145 -0.14719076454639435 0.9890133142471313 0.011261329986155033 -0.14023254811763763 0.9900509715080261 0.008819849230349064 -0.1348918080329895 0.9908139109611511 0.005218665115535259 -0.13141269981861115 0.9913022518157959 0.0011291848495602608 -0.12991729378700256 0.9915158748626709 -0.002533036284148693 -0.13022248446941376 0.9914548397064209 -0.005615405738353729 -0.13199254870414734 0.9912106394767761 0.0030518509447574615 -0.00012207403779029846 0.999969482421875 -0.18036438524723053 -3.0518509447574615e-05 0.9835810661315918 0.5323954224586487 0.37638476490974426 0.7581713199615479 0.5667897462844849 0.34803307056427 0.7466963529586792 0.5452741980552673 0.3416547179222107 0.765434741973877 0.5877864956855774 0.32062745094299316 0.7427289485931396 0.5556199550628662 0.2839442193508148 0.7813959121704102 0.6025574207305908 0.2705465853214264 0.7507858276367188 0.5626392364501953 0.20902127027511597 0.7998291254043579 0.6107059121131897 0.20276497304439545 0.765434741973877 0.5664845705032349 0.12887966632843018 0.8138981461524963 0.6121402382850647 0.1268654465675354 0.7804803848266602 0.5683156847953796 0.04519791156053543 0.8215582966804504 0.6072573065757751 0.04699850454926491 0.7930845022201538 0.5659352540969849 -0.037659838795661926 0.8235725164413452 0.5945005416870117 -0.028015991672873497 0.8035828471183777 0.556016743183136 -0.10638752579689026 0.8243049383163452 0.5730765461921692 -0.08606219291687012 0.8149357438087463 0.539841890335083 -0.13956114649772644 0.8301034569740295 0.5466475486755371 -0.1115146353840828 0.8298898339271545 0.522415816783905 -0.1192052960395813 0.844294548034668 0.520767867565155 -0.08780175447463989 0.8491470217704773 0.5051423907279968 -0.06726279854774475 0.8603777885437012 0.49696341156959534 -0.04058961570262909 0.8667867183685303 0.4906460642814636 -0.035401470959186554 0.8706015348434448 0.4773705303668976 -0.0199591051787138 0.8784447908401489 0.4825891852378845 -0.035431988537311554 0.8751182556152344 0.46266061067581177 -0.02682577073574066 0.886104941368103 0.4771569073200226 -0.03628650680184364 0.8780480623245239 0.44810327887535095 -0.02468947321176529 0.8936125040054321 0.4669331908226013 -0.0276497695595026 0.8838465809822083 0.430310994386673 -0.009155552834272385 0.9026154279708862 0.47810298204421997 0.39481794834136963 0.7845088243484497 0.4842982292175293 0.3571886420249939 0.7986388802528381 0.4929349720478058 0.29657888412475586 0.8179265856742859 0.503524899482727 0.21961119771003723 0.8355662822723389 0.5150303840637207 0.13950011134147644 0.8457289338111877 0.5261390805244446 0.0555742047727108 0.8485671281814575 0.5341654419898987 -0.031373027712106705 0.8447828888893127 0.5371562838554382 -0.10821863263845444 0.8364818096160889 0.5366985201835632 -0.14957121014595032 0.8303781151771545 0.5350505113601685 -0.1355937421321869 0.8338267207145691 0.5296792387962341 -0.08514664322137833 0.843867301940918 0.5200659036636353 -0.04684591293334961 0.8528092503547668 0.5114597082138062 -0.0398876927793026 0.8583635687828064 0.5050203204154968 -0.04202398657798767 0.862056314945221 0.49607837200164795 -0.04187139496207237 0.8672444820404053 0.41746267676353455 0.4038209319114685 0.8139896988868713 0.4190801680088043 0.3672902584075928 0.8303170800209045 0.4270760118961334 0.3097018301486969 0.8494827151298523 0.4419385492801666 0.2371593415737152 0.8651081919670105 0.4619281589984894 0.16086305677890778 0.8721885085105896 0.4849086105823517 0.0790124237537384 0.8709677457809448 0.5071260929107666 -0.00906399730592966 0.861812174320221 0.5255287289619446 -0.08966337889432907 0.8460035920143127 0.5409100651741028 -0.13711966574192047 0.8297982811927795 0.5530564188957214 -0.13361003994941711 0.8223212361335754 0.555833637714386 -0.0951261967420578 0.825800359249115 0.5460371971130371 -0.06189153715968132 0.8354442119598389 0.5300149321556091 -0.05258339270949364 0.8463392853736877 0.5148167610168457 -0.053498946130275726 0.8555864095687866 0.5016937851905823 -0.055848874151706696 0.8632160425186157 0.36149173974990845 0.40769675374031067 0.8384960293769836 0.3632618188858032 0.3734549880027771 0.8535416722297668 0.3712576627731323 0.32224494218826294 0.8707846403121948 0.3872493803501129 0.25803399085998535 0.8850978016853333 0.4109012186527252 0.1895504593849182 0.8917203545570374 0.4424268305301666 0.11539048701524734 0.8893093466758728 0.47975096106529236 0.031250953674316406 0.8768272995948792 0.5161290168762207 -0.051271095871925354 0.8549455404281616 0.5445722937583923 -0.10815759748220444 0.8316904306411743 0.5605944991111755 -0.12356944382190704 0.8187810778617859 0.5608996748924255 -0.10702840983867645 0.8209173679351807 0.5451521277427673 -0.08792382478713989 0.8336741328239441 0.521073043346405 -0.0795007199048996 0.8497573733329773 0.4978484511375427 -0.07614368200302124 0.8638874292373657 0.47972044348716736 -0.07342753559350967 0.8743247985839844 0.3084200620651245 0.4141972064971924 0.8563188314437866 0.3162022829055786 0.3801995813846588 0.8691366314888 0.3257545828819275 0.3333231508731842 0.8847315907478333 0.3396404981613159 0.2771385908126831 0.8987700939178467 0.36109501123428345 0.21878719329833984 0.9064912796020508 0.39329203963279724 0.1575365513563156 0.9057893753051758 0.4371166229248047 0.08429212123155594 0.8954130411148071 0.4841761589050293 0.0001831110566854477 0.8749351501464844 0.5178075432777405 -0.07675404846668243 0.8520157337188721 0.5284585356712341 -0.12274544686079025 0.8400219678878784 0.5196691751480103 -0.13162633776664734 0.844141960144043 0.4986419379711151 -0.12518692016601562 0.8576921820640564 0.47254860401153564 -0.11700796335935593 0.8734702467918396 0.44746237993240356 -0.10736411809921265 0.8878139853477478 0.4273201823234558 -0.09585864096879959 0.8989837169647217 0.24921414256095886 0.4278694987297058 0.8687704205513 0.2634052634239197 0.39115574955940247 0.8818017840385437 0.27475813031196594 0.34357738494873047 0.8980071544647217 0.2861415445804596 0.2922452390193939 0.9125034213066101 0.3032624423503876 0.24384288489818573 0.921170711517334 0.33121737837791443 0.19672231376171112 0.922788143157959 0.3715628385543823 0.13666188716888428 0.9182714223861694 0.4141056537628174 0.04846339300274849 0.9089022278785706 0.43906980752944946 -0.05743583291769028 0.8966032862663269 0.4386120140552521 -0.13827936351299286 0.8879360556602478 0.4219489097595215 -0.16824854910373688 0.8908352851867676 0.39902952313423157 -0.1672109067440033 0.9015473127365112 0.3751029968261719 -0.15723136067390442 0.9135105609893799 0.35279396176338196 -0.14136174321174622 0.9249244928359985 0.33561205863952637 -0.1193273738026619 0.9343851804733276 0.1831720918416977 0.4456617832183838 0.8762474656105042 0.1989196389913559 0.4044312834739685 0.8926358819007874 0.21121861040592194 0.35431990027427673 0.9109164476394653 0.22373118996620178 0.30545976758003235 0.9255348443984985 0.24054689705371857 0.26499220728874207 0.9337443113327026 0.26520586013793945 0.22916348278522491 0.9365520477294922 0.29602953791618347 0.17642749845981598 0.938718855381012 0.32163456082344055 0.07745597511529922 0.9436628222465515 0.32886746525764465 -0.0554216131567955 0.9427167773246765 0.3187047839164734 -0.16052736341953278 0.9341410398483276 0.3018890917301178 -0.20233771204948425 0.9316080212593079 0.28284555673599243 -0.20322275161743164 0.9373760223388672 0.2620319128036499 -0.19180883467197418 0.9457991123199463 0.24359874427318573 -0.16931669414043427 0.9549546837806702 0.23648792505264282 -0.13168737292289734 0.9626453518867493 0.12179937213659286 0.46308785676956177 0.8778648972511292 0.13879817724227905 0.41825616359710693 0.8976409435272217 0.15555284917354584 0.36826685070991516 0.9165928959846497 0.1748710572719574 0.32203131914138794 0.9304177761077881 0.19611194729804993 0.2854396104812622 0.9381084442138672 0.21707816421985626 0.2532730996608734 0.9427167773246765 0.23368023335933685 0.19718009233474731 0.9520859122276306 0.24021118879318237 0.08438368141651154 0.9670094847679138 0.23584704101085663 -0.062349315732717514 0.9697561264038086 0.22849208116531372 -0.173833429813385 0.9578844308853149 0.22367015480995178 -0.21893978118896484 0.9497359991073608 0.21741385757923126 -0.2230903059244156 0.9502242803573608 0.20816674828529358 -0.21185949444770813 0.9548631310462952 0.20432141423225403 -0.17944884300231934 0.9623096585273743 0.21832941472530365 -0.1189001128077507 0.9685964584350586 0.08545182645320892 0.47978147864341736 0.8731955885887146 0.10608233511447906 0.4357432723045349 0.8937650918960571 0.13129062950611115 0.3898129165172577 0.9114658236503601 0.1597033590078354 0.34589678049087524 0.9245582222938538 0.18518631160259247 0.30677205324172974 0.9335612058639526 0.20041504502296448 0.26691487431526184 0.9426252245903015 0.20203253626823425 0.1991637945175171 0.9588915705680847 0.19464705884456635 0.07840204983949661 0.9777215123176575 0.1894894242286682 -0.06439405679702759 0.9797662496566772 0.19626453518867493 -0.1673635095357895 0.9661244750022888 0.21207311749458313 -0.21182897686958313 0.9540085792541504 0.22742393612861633 -0.22031311690807343 0.9485152959823608 0.24250008165836334 -0.2071901559829712 0.9477522969245911 0.26545000076293945 -0.16205328702926636 0.9503769278526306 0.3021332323551178 -0.079378642141819 0.9499191045761108 0.07705923914909363 0.49681082367897034 0.8644062876701355 0.10013122856616974 0.45805230736732483 0.8832361698150635 0.12991729378700256 0.41846978664398193 0.8988616466522217 0.16190069913864136 0.3747367858886719 0.9128696322441101 0.18671223521232605 0.3269753158092499 0.9263893365859985 0.19638660550117493 0.2710043787956238 0.9423199892044067 0.1910763829946518 0.1902218759059906 0.9629505276679993 0.1822565346956253 0.0718405693769455 0.9806207418441772 0.18424023687839508 -0.054414503276348114 0.9813531637191772 0.20288705825805664 -0.1425824761390686 0.9687490463256836 0.23178808391094208 -0.18448439240455627 0.9551072716712952 0.26459547877311707 -0.19363994896411896 0.9447004795074463 0.3024689555168152 -0.1743827611207962 0.9370403289794922 0.34708699584007263 -0.1187169998884201 0.9302651882171631 0.3963744044303894 -0.02307199314236641 0.9177831411361694 0.07382427155971527 0.5159153938293457 0.8534196019172668 0.09814752638339996 0.48130741715431213 0.8710287809371948 0.12314218282699585 0.4458449184894562 0.886562705039978 0.14575639367103577 0.39994508028030396 0.904843270778656 0.16174809634685516 0.3429975211620331 0.9252907037734985 0.16943876445293427 0.27359843254089355 0.9467757344245911 0.17206335067749023 0.18643757700920105 0.9672536253929138 0.17761772871017456 0.07727286219596863 0.9810479879379272 0.19220557808876038 -0.03274635970592499 0.9808038473129272 0.2150334119796753 -0.1109958216547966 0.9702444672584534 0.24387340247631073 -0.14929655194282532 0.9582201838493347 0.28144168853759766 -0.1518906205892563 0.9474471211433411 0.33011871576309204 -0.12253181636333466 0.9359416365623474 0.38602861762046814 -0.05887020379304886 0.9205908179283142 0.44007691740989685 0.04028443247079849 0.8970305323600769 0.06097598373889923 0.539445161819458 0.8397778272628784 0.0871608629822731 0.5028229355812073 0.8599505424499512 0.10415967553853989 0.46348461508750916 0.8799402117729187 0.1113620400428772 0.4122440218925476 0.904232919216156 0.11368145048618317 0.35135960578918457 0.9292886257171631 0.1187475174665451 0.28125858306884766 0.9522385597229004 0.13241980969905853 0.19971312582492828 0.9708548188209534 0.15616321563720703 0.10211493074893951 0.982421338558197 0.18524734675884247 -0.0005188146606087685 0.982665479183197 0.2147282361984253 -0.07770012319087982 0.9735709428787231 0.2471999228000641 -0.11172826588153839 0.9624927639961243 0.28849145770072937 -0.1034882664680481 0.9518417716026306 0.3402508497238159 -0.06186101958155632 0.9382915496826172 0.3974425494670868 0.008453627116978168 0.9175695180892944 0.44804224371910095 0.1029999703168869 0.8880276083946228 0.05139316990971565 0.5671864748001099 0.8219550251960754 0.0790124237537384 0.521744430065155 0.8494216799736023 0.09012115746736526 0.47032076120376587 0.8778648972511292 0.0871913805603981 0.4106875956058502 0.9075899720191956 0.08029419928789139 0.3507492244243622 0.9329813718795776 0.08133182674646378 0.29145175218582153 0.9530930519104004 0.09744559973478317 0.22550126910209656 0.9693288803100586 0.1278115212917328 0.14142277836799622 0.981658399105072 0.1662037968635559 0.04306161776185036 0.9851374626159668 0.20740379393100739 -0.03503524884581566 0.9775994420051575 0.25077059864997864 -0.06659138947725296 0.965727686882019 0.29660940170288086 -0.05221717059612274 0.9535508155822754 0.34479811787605286 -0.0028382213786244392 0.938657820224762 0.39307838678359985 0.0714438334107399 0.9166844487190247 0.43305763602256775 0.15726187825202942 0.887508749961853 0.05175939202308655 0.5951109528541565 0.8019348978996277 0.07696767896413803 0.5372478365898132 0.8398693799972534 0.08490249514579773 0.47093111276626587 0.8780480623245239 0.08105716109275818 0.4037293493747711 0.9112522006034851 0.07715079188346863 0.3482467234134674 0.9342020750045776 0.08285775035619736 0.3033539950847626 0.9492477178573608 0.09994811564683914 0.2527848184108734 0.9623096585273743 0.12509536743164062 0.18060854077339172 0.9755546450614929 0.1579638123512268 0.09121982753276825 0.983214795589447 0.1987365335226059 0.016388438642024994 0.9798883199691772 0.24170659482479095 -0.017761772498488426 0.9701529145240784 0.28174686431884766 -0.006317331455647945 0.9594408869743347 0.3186742663383484 0.043977171182632446 0.9468367695808411 0.35319072008132935 0.12085329741239548 0.9277016520500183 0.3808709979057312 0.20023193955421448 0.9026764631271362 0.05090487375855446 0.617786169052124 0.7846614122390747 0.06927701830863953 0.5490890145301819 0.8328500986099243 0.07611316442489624 0.47157201170921326 0.8785058259963989 0.07773064076900482 0.40144047141075134 0.9125644564628601 0.08349864184856415 0.35361796617507935 0.9316385388374329 0.09778130054473877 0.32038331031799316 0.9421979188919067 0.11612293124198914 0.2762230336666107 0.9540390968322754 0.13245032727718353 0.2072817087173462 0.9692373275756836 0.14847254753112793 0.126132994890213 0.9808038473129272 0.16937772929668427 0.056642353534698486 0.9839167594909668 0.19373150169849396 0.017731253057718277 0.9808648824691772 0.21744437515735626 0.02310251072049141 0.9757683277130127 0.24036377668380737 0.07351908832788467 0.9678640365600586 0.2631305754184723 0.15512558817863464 0.9521775245666504 0.28080081939697266 0.23157444596290588 0.9313943982124329 0.044038210064172745 0.6322214603424072 0.773491621017456 0.05462813377380371 0.557298481464386 0.8284859657287598 0.06006042659282684 0.4748374819755554 0.8779870271682739 0.06543168425559998 0.40693381428718567 0.9110995531082153 0.07644886523485184 0.36783960461616516 0.9267250299453735 0.09286782145500183 0.3409222662448883 0.9354838728904724 0.10739463567733765 0.2939237654209137 0.9497359991073608 0.11301004141569138 0.21799370646476746 0.9693593978881836 0.11026337742805481 0.1351664811372757 0.9846491813659668 0.10516678541898727 0.06671345978975296 0.9921872615814209 0.1033051535487175 0.02627643570303917 0.9942930340766907 0.10739463567733765 0.031128879636526108 0.9937132000923157 0.11810663342475891 0.0868861973285675 0.9891659021377563 0.13299965858459473 0.17569506168365479 0.9754020571708679 0.14383374154567719 0.25009918212890625 0.9574571847915649 0.5728629231452942 0.3102206587791443 0.7586596012115479 0.5540940761566162 0.2640156149864197 0.7894527912139893 0.5188452005386353 0.2137211263179779 0.8276925086975098 0.47325053811073303 0.1658375859260559 0.8651387095451355 0.4286324679851532 0.12408825755119324 0.8948942422866821 0.3867915868759155 0.08850367367267609 0.9178746938705444 0.32914212346076965 0.05847346410155296 0.9424421191215515 0.24893948435783386 0.03469954431056976 0.9678640365600586 0.1676992028951645 0.01828058809041977 0.9856563210487366 0.10586871206760406 0.00872829370200634 0.9943235516548157 0.0634784996509552 0.0038453321903944016 0.9979552626609802 0.03317362070083618 0.0014954069629311562 0.999420166015625 0.012939848005771637 0.0004882961511611938 0.999908447265625 0.6034730076789856 0.2925504446029663 0.7417218685150146 0.5931272506713867 0.2545854151248932 0.7637562155723572 0.5611743330955505 0.20847193896770477 0.8009887933731079 0.5138706564903259 0.16006958484649658 0.8427686095237732 0.46470534801483154 0.11410870403051376 0.8780480623245239 0.41743215918540955 0.07431256771087646 0.9056367874145508 0.35349589586257935 0.04385509714484215 0.9343851804733276 0.26621297001838684 0.023194067180156708 0.9636219143867493 0.17844171822071075 0.010345774702727795 0.9838862419128418 0.1115146353840828 0.003082369454205036 0.9937437176704407 0.06582842767238617 -0.00015259254723787308 0.9978026747703552 0.033753469586372375 -0.0008239997550845146 0.999420166015625 0.013000885024666786 -0.00045777764171361923 0.999908447265625 -0.9373149871826172 0.0 0.3484603464603424 -0.9848933219909668 0.0 0.17313151061534882 0.0026551103219389915 -0.00033570360392332077 0.999969482421875 -0.18048647046089172 -6.103701889514923e-05 0.9835505485534668 0.6255073547363281 0.2533036172389984 0.7379375696182251 0.6232795119285583 0.22882778942584991 0.747734010219574 0.5974303483963013 0.19510483741760254 0.7777947187423706 0.5532090067863464 0.15305031836032867 0.8188421130180359 0.503219723701477 0.10650959610939026 0.8575395941734314 0.44947659969329834 0.0636921301484108 0.8909878730773926 0.3754386901855469 0.032898955047130585 0.9262367486953735 0.2793969511985779 0.015167699195444584 0.9600207805633545 0.18652912974357605 0.00555436871945858 0.982421338558197 0.11597033590078354 -6.103701889514923e-05 0.9932249188423157 0.06701864302158356 -0.0025635547935962677 0.9977416396141052 0.03308206424117088 -0.0024414807558059692 0.999420166015625 0.012115848250687122 -0.0012512588873505592 0.999908447265625 -0.9373149871826172 0.0 0.3484298288822174 -0.9848933219909668 0.0 0.17313151061534882 0.0020447401329874992 -0.0004272591322660446 0.999969482421875 -0.18063905835151672 -6.103701889514923e-05 0.9835200309753418 0.6381725668907166 0.19592882692813873 0.7444990277290344 0.6414380073547363 0.18582721054553986 0.7442854046821594 0.6228217482566833 0.16855372488498688 0.7639393210411072 0.5867793560028076 0.13873714208602905 0.7977538108825684 0.5407879948616028 0.09723196923732758 0.8354747295379639 0.48106327652931213 0.055879391729831696 0.8748741149902344 0.39457380771636963 0.027314066886901855 0.9184240102767944 0.28922390937805176 0.012726218439638615 0.9571520090103149 0.19278542697429657 0.005218665115535259 0.9812005758285522 0.12009033560752869 0.00012207403779029846 0.9927365779876709 0.06811731308698654 -0.0026551103219389915 0.9976500868797302 0.0320139154791832 -0.00277718435972929 0.999481201171875 0.01071199681609869 -0.0014954069629311562 0.99993896484375 -0.9373149871826172 0.0 0.3484298288822174 -0.9848933219909668 0.0 0.17313151061534882 0.001434369944036007 -0.00030518509447574615 0.999969482421875 -0.18076112866401672 -3.0518509447574615e-05 0.9835200309753418 0.6407055854797363 0.13003936409950256 0.7566453814506531 0.6471449732780457 0.1342204064130783 0.7504196166992188 0.6360667943954468 0.13193151354789734 0.7602160573005676 0.6112857460975647 0.11517685651779175 0.7829523682594299 0.5723441243171692 0.08429212123155594 0.8156377077102661 0.5080111026763916 0.05172887444496155 0.8597674369812012 0.41016876697540283 0.02932828664779663 0.9115268588066101 0.29731130599975586 0.01730399578809738 0.9546189904212952 0.1987975686788559 0.0098574785515666 0.9799798727035522 0.12488174438476562 0.003875850699841976 0.9921567440032959 0.07013153284788132 -0.00015259254723787308 0.9975280165672302 0.031464584171772 -0.0014648884534835815 0.999481201171875 0.009552293457090855 -0.0010071108117699623 0.99993896484375 -0.9373149871826172 0.0 0.3484298288822174 -0.9848933219909668 0.0 0.17313151061534882 0.00119022186845541 0.0 0.999969482421875 -0.18082216382026672 0.0 0.9834895133972168 0.6323740482330322 0.06042664870619774 0.7722708582878113 0.6414074897766113 0.07818841934204102 0.7631763815879822 0.6388439536094666 0.08844263851642609 0.7642139792442322 0.6249885559082031 0.08484145998954773 0.7759941220283508 0.5922726988792419 0.07061982899904251 0.8026062846183777 0.5258949398994446 0.054292429238557816 0.8487808108329773 0.42255929112434387 0.04068117216229439 0.9053926467895508 0.30640584230422974 0.029175695031881332 0.9514450430870056 0.20657978951931 0.01901303231716156 0.9782097935676575 0.13113804161548615 0.010681478306651115 0.9913022518157959 0.07373271882534027 0.004791405983269215 0.9972533583641052 0.03244117647409439 0.0014954069629311562 0.99945068359375 0.009338663890957832 0.0002441480755805969 0.99993896484375 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0016174810007214546 0.00045777764171361923 0.999969482421875 -0.18079164624214172 3.0518509447574615e-05 0.9834895133972168 0.6137577295303345 -0.004303109832108021 0.7894527912139893 0.6264839768409729 0.022675253450870514 0.7790765166282654 0.6324961185455322 0.042359691113233566 0.773369550704956 0.6255073547363281 0.05453657731413841 0.7782829999923706 0.5961180329322815 0.0634174644947052 0.8003479242324829 0.5329447388648987 0.06732383370399475 0.843440055847168 0.43385112285614014 0.06134220212697983 0.8988616466522217 0.3196508586406708 0.047059543430805206 0.9463484883308411 0.21814630925655365 0.0316476933658123 0.9753715395927429 0.13946959376335144 0.01974547654390335 0.9900204539299011 0.079409159719944 0.01156651508063078 0.9967650175094604 0.03582873195409775 0.005798516795039177 0.99932861328125 0.010895107872784138 0.002136295661330223 0.999908447265625 -0.9373149871826172 0.0 0.3483993113040924 -0.9848933219909668 0.0 0.17313151061534882 0.0028992583975195885 0.0010986663401126862 0.999969482421875 -0.18054750561714172 0.0001831110566854477 0.9835505485534668 0.5882442593574524 -0.054414503276348114 0.8068178296089172 0.6056398153305054 -0.021637622267007828 0.7954038977622986 0.617053747177124 0.007965330965816975 0.7868587374687195 0.6107669472694397 0.038575395941734314 0.790856659412384 0.5831782221794128 0.06985686719417572 0.809320330619812 0.5309915542602539 0.08944974839687347 0.8426160216331482 0.4466078579425812 0.0871608629822731 0.8904385566711426 0.33881649374961853 0.06854457408189774 0.9383220672607422 0.23450422286987305 0.047273170202970505 0.9709463715553284 0.1508529931306839 0.03097628802061081 0.9880672693252563 0.0877407118678093 0.019348734989762306 0.9959410429000854 0.04205450415611267 0.010528885759413242 0.999053955078125 0.014557329006493092 0.004303109832108021 0.9998779296875 -0.9373149871826172 0.0 0.3484298288822174 -0.9848933219909668 0.0 0.17313151061534882 0.005066072568297386 0.0018616290763020515 0.999969482421875 -0.17993712425231934 0.0004272591322660446 0.9836726188659668 0.5605639815330505 -0.07501449435949326 0.8246711492538452 0.5812860727310181 -0.03717154264450073 0.8128299713134766 0.5923032164573669 0.0026551103219389915 0.8056886196136475 0.5827509164810181 0.047059543430805206 0.8112735152244568 0.5593432188034058 0.08850367367267609 0.8241828680038452 0.5243995189666748 0.11206396669149399 0.844019889831543 0.460860013961792 0.11023285984992981 0.8805810809135437 0.3628345727920532 0.08963286131620407 0.9275185465812683 0.2558061480522156 0.06421094387769699 0.964568018913269 0.1663563996553421 0.043153174221515656 0.9851069450378418 0.09964293241500854 0.027191992849111557 0.9946287274360657 0.051179539412260056 0.014923551119863987 0.9985656142234802 0.020172733813524246 0.00634784996509552 0.999755859375 -0.9372844696044922 0.0 0.3484908640384674 -0.9848933219909668 0.0 0.17313151061534882 0.008026367984712124 0.0025940733030438423 0.99993896484375 -0.17880794405937195 0.0007324442267417908 0.9838557243347168 0.5344096422195435 -0.050416577607393265 0.843684196472168 0.5551011562347412 -0.011535996571183205 0.8316904306411743 0.5614489912986755 0.030396435409784317 0.82692950963974 0.5493331551551819 0.07428205013275146 0.8322702646255493 0.5343180894851685 0.1105380430817604 0.8380077481269836 0.5181737542152405 0.12842188775539398 0.8455458283424377 0.4749290347099304 0.12500381469726562 0.8710898160934448 0.3881649076938629 0.10550248622894287 0.9154942631721497 0.28092288970947266 0.0792260468006134 0.9564195871353149 0.18655964732170105 0.054292429238557816 0.9809259176254272 0.11551255732774734 0.03396710008382797 0.9927060604095459 0.063081756234169 0.018433179706335068 0.9978331923484802 0.027314066886901855 0.00799584947526455 0.99957275390625 -0.9372539520263672 0.0 0.3486129343509674 -0.9848933219909668 0.0 0.17313151061534882 0.01156651508063078 0.0032349620014429092 0.999908447265625 -0.17722098529338837 0.0010681478306651115 0.9841609001159668 0.5090487599372864 -0.008453627116978168 0.860683023929596 0.5261695981025696 0.02871791645884514 0.8498489260673523 0.5283669829368591 0.06997894495725632 0.8460951447486877 0.5195165872573853 0.10693685710430145 0.8477126359939575 0.5162816047668457 0.13031403720378876 0.8464308381080627 0.5156102180480957 0.13791313767433167 0.8456373810768127 0.48771628737449646 0.13196203112602234 0.8629413843154907 0.4120914340019226 0.11447492986917496 0.903897225856781 0.3081759214401245 0.08886989951133728 0.9471419453620911 0.21082186698913574 0.06161687150597572 0.9755546450614929 0.1347087025642395 0.03817865625023842 0.9901425242424011 0.07684560865163803 0.02066102996468544 0.9968260526657104 0.035431988537311554 0.009216589853167534 0.99932861328125 -0.9371929168701172 6.103701889514923e-05 0.3487655222415924 -0.9848933219909668 0.0 0.17313151061534882 0.01553392130881548 0.0037537766620516777 0.999847412109375 -0.1753288358449936 0.0013733329251408577 0.9844965934753418 0.4831995666027069 0.005218665115535259 0.8754844665527344 0.4919583797454834 0.04379406198859215 0.8695028424263 0.4927823841571808 0.08923612534999847 0.8655354380607605 0.49510177969932556 0.12524795532226562 0.8597369194030762 0.5070650577545166 0.14142277836799622 0.8501846194267273 0.5175939202308655 0.14154484868049622 0.843806266784668 0.4994964301586151 0.13306069374084473 0.8560136556625366 0.4346446096897125 0.11624500155448914 0.8930631279945374 0.33637499809265137 0.09088411927223206 0.9373149871826172 0.2371898591518402 0.062959685921669 0.9693899154663086 0.15536972880363464 0.03897213563323021 0.9870601296424866 0.09115878492593765 0.02142399363219738 0.9955748319625854 0.044007688760757446 0.0099795525893569 0.9989623427391052 -0.9371318817138672 9.155552834272385e-05 0.3489486277103424 -0.9848933219909668 0.0 0.17313151061534882 0.019684437662363052 0.004028443247079849 0.999786376953125 -0.17319254577159882 0.0015564439818263054 0.9848628044128418 0.45570239424705505 -0.0033570360392332077 0.8901028633117676 0.4528641700744629 0.03643909841775894 0.8908047676086426 0.45530563592910767 0.08145390450954437 0.886562705039978 0.47245705127716064 0.11642811447381973 0.8735923171043396 0.5010223984718323 0.13351847231388092 0.8550370931625366 0.521439254283905 0.1352580338716507 0.8424634337425232 0.5110934972763062 0.1270790696144104 0.8500625491142273 0.45652636885643005 0.11017181724309921 0.8828394412994385 0.3643909990787506 0.08523819595575333 0.9273049235343933 0.2631916403770447 0.058412425220012665 0.9629505276679993 0.1750541627407074 0.03622547164559364 0.9838862419128418 0.10461744666099548 0.020416881889104843 0.9942930340766907 0.05240027979016304 0.0099795525893569 0.9985656142234802 -0.9370403289794922 9.155552834272385e-05 0.3491622805595398 -0.9848933219909668 0.0 0.17313151061534882 0.0237128809094429 0.003875850699841976 0.99969482421875 -0.17099520564079285 0.00158696249127388 0.9852595329284668 0.4271675646305084 -0.0001831110566854477 0.904141366481781 0.41666921973228455 0.03308206424117088 0.9084444642066956 0.42353588342666626 0.06515701860189438 0.903500497341156 0.4521012008190155 0.08990752696990967 0.887386679649353 0.4923245906829834 0.10638752579689026 0.8638569116592407 0.522293746471405 0.11398663371801376 0.8450880646705627 0.52165287733078 0.11047700047492981 0.8459425568580627 0.4772789776325226 0.0954313799738884 0.8735312819480896 0.3905148506164551 0.07257301360368729 0.9177221059799194 0.2865382730960846 0.04892117157578468 0.9567857980728149 0.19193090498447418 0.03030487895011902 0.9809259176254272 0.11612293124198914 0.01751762442290783 0.9930722713470459 0.059816278517246246 0.008972441777586937 0.9981383681297302 -0.9369792938232422 0.00012207403779029846 0.3493453860282898 -0.9848933219909668 0.0 0.17313151061534882 0.02713095396757126 0.00317392498254776 0.999603271484375 -0.16907253861427307 0.0014038514345884323 0.9855952858924866 0.40238654613494873 0.01315347757190466 0.9153416752815247 0.39252907037734985 0.033783990889787674 0.9190954566001892 0.4049195945262909 0.048890650272369385 0.9130222201347351 0.4378185272216797 0.060792870819568634 0.8969694972038269 0.48136845231056213 0.07290872186422348 0.8734397292137146 0.5186315774917603 0.08227790147066116 0.8510086536407471 0.5291604399681091 0.08246101438999176 0.844477653503418 0.4945829510688782 0.0717795342206955 0.8661457896232605 0.4121829867362976 0.05426190793514252 0.9094516038894653 0.30527666211128235 0.03622547164559364 0.9515671133995056 0.20493179559707642 0.022400585934519768 0.9785149693489075 0.12485121935606003 0.01315347757190466 0.9920651912689209 0.06567583233118057 0.006988738663494587 0.9978026747703552 -0.9369182586669922 0.00012207403779029846 0.3495284914970398 -0.9848933219909668 0.0 0.17313151061534882 -0.0010986663401126862 0.0036011841148138046 0.999969482421875 -0.00030518509447574615 -0.17984557151794434 0.9836726188659668 -0.0002136295661330223 -0.18036438524723053 0.9835810661315918 -0.0009155552834272385 0.002288888208568096 0.999969482421875 -0.504837155342102 0.40861231088638306 0.7603381276130676 -0.5458845496177673 0.4506057798862457 0.7063204050064087 -0.4993133246898651 0.4376354217529297 0.747734010219574 -0.4454481601715088 0.3731192946434021 0.8138371109962463 -0.43269142508506775 0.4030274450778961 0.8064211010932922 -0.3735770881175995 0.3257545828819275 0.868495762348175 -0.35459455847740173 0.35306864976882935 0.8657795786857605 -0.3013397753238678 0.2768944501876831 0.9124118685722351 -0.2784508764743805 0.3010956048965454 0.9120151400566101 -0.2385021448135376 0.23679311573505402 0.9418011903762817 -0.2142094224691391 0.25904110074043274 0.9418011903762817 -0.18854334950447083 0.20889919996261597 0.9595629572868347 -0.16339610517024994 0.22919400036334991 0.9595324397087097 -0.14795373380184174 0.18829920887947083 0.9708853363990784 -0.12164677679538727 0.20096439123153687 0.9719840288162231 -0.1111789271235466 0.16370128095149994 0.9801934957504272 -0.08517716079950333 0.16254158318042755 0.983001172542572 -0.07690664380788803 0.12933744490146637 0.9885860681533813 -0.05496383458375931 0.11801507323980331 0.9914853572845459 -0.048677023500204086 0.09289833903312683 0.9944761395454407 -0.032959990203380585 0.0798364207148552 0.9962462186813354 -0.028931546956300735 0.0632343515753746 0.9975585341453552 -0.018463697284460068 0.051973022520542145 0.9984740614891052 -0.016266364604234695 0.04141361638903618 0.9989928603172302 -0.009277626872062683 0.03106784261763096 0.99945068359375 -0.008239997550845146 0.024414807558059692 0.999664306640625 -0.003814813680946827 0.01501510664820671 0.9998779296875 -0.0034485915675759315 0.011383404023945332 0.999908447265625 -0.00119022186845541 0.005066072568297386 0.999969482421875 0.0 -0.9372844696044922 0.3485213816165924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3484603464603424 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 0.0 0.0 1.0 -0.5701162815093994 0.4780113995075226 0.6681417226791382 -0.5323954224586487 0.48869287967681885 0.6911221742630005 -0.4758140742778778 0.4755699336528778 0.7398602366447449 -0.40229499340057373 0.4348582327365875 0.8056275844573975 -0.32163456082344055 0.37745290994644165 0.86834317445755 -0.2464064508676529 0.32175663113594055 0.9141819477081299 -0.1834772825241089 0.2790002226829529 0.9425641894340515 -0.13254188001155853 0.24280525743961334 0.9609668254852295 -0.09112826734781265 0.1980040967464447 0.9759514331817627 -0.05890072137117386 0.14474928379058838 0.9877010583877563 -0.036011841148138046 0.09784234315156937 0.9945371747016907 -0.02072206884622574 0.0637226477265358 0.9977416396141052 -0.01065095979720354 0.038544878363609314 0.999176025390625 -0.004455702379345894 0.01919614151120186 0.999786376953125 -0.001342814415693283 0.006714072078466415 0.999969482421875 0.0 -0.9372539520263672 0.3485824167728424 0.0 -0.9372539520263672 0.3486434519290924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9848933219909668 0.17313151061534882 -0.0018005920574069023 0.008758812211453915 0.99993896484375 -0.0005188146606087685 -0.17783135175704956 0.9840388298034668 -0.0003662221133708954 -0.17862483859062195 0.9838862419128418 -0.5703604221343994 0.5022431015968323 0.6499221920967102 -0.5346232652664185 0.5317544937133789 0.6567888259887695 -0.4848780632019043 0.539475679397583 0.6883144378662109 -0.4216437339782715 0.5129856467247009 0.747672975063324 -0.3483687937259674 0.45704519748687744 0.8183538317680359 -0.27311015129089355 0.39259010553359985 0.8782006502151489 -0.20389416813850403 0.33802300691604614 0.9187597036361694 -0.14471876621246338 0.2915738523006439 0.9455244541168213 -0.09692678600549698 0.2371288239955902 0.9666127562522888 -0.061372723430395126 0.17288735508918762 0.983001172542572 -0.03750724717974663 0.11627551913261414 0.9924924373626709 -0.02218695729970932 0.07586901634931564 0.9968565702438354 -0.012024292722344398 0.04663228243589401 0.9988097548484802 -0.005371257662773132 0.023987548425793648 0.99969482421875 0.0 -0.9372234344482422 0.3487044870853424 0.0 -0.9848933219909668 0.17313151061534882 -0.002471999265253544 0.011261329986155033 0.999908447265625 -0.0008850367739796638 -0.17664113640785217 0.9842524528503418 -0.5426496267318726 0.5317239761352539 0.6501968502998352 -0.504684567451477 0.573625922203064 0.6451307535171509 -0.45783868432044983 0.5960569977760315 0.6595660448074341 -0.4035157263278961 0.5821405649185181 0.7058625817298889 -0.3425092399120331 0.5307779312133789 0.7751701474189758 -0.2772911787033081 0.4622333347797394 0.8422498106956482 -0.21274453401565552 0.39982298016548157 0.8915371894836426 -0.15326395630836487 0.34473708271980286 0.9260841608047485 -0.1027253046631813 0.27988526225090027 0.9544969201087952 -0.06421094387769699 0.20319223403930664 0.9770195484161377 -0.03839228302240372 0.1353495866060257 0.9900509715080261 -0.022644734010100365 0.08777123689651489 0.9958800077438354 -0.012848292477428913 0.05465865135192871 0.9984130263328552 -0.006317331455647945 0.029145177453756332 0.999542236328125 -6.103701889514923e-05 -0.9371623992919922 0.3488265573978424 0.0 -0.9848933219909668 0.17313151061534882 -0.0032044434919953346 0.014130069874227047 0.9998779296875 -0.001434369944036007 -0.1750236451625824 0.9845576286315918 -0.4999542236328125 0.5652943253517151 0.6560564041137695 -0.4585101008415222 0.6134220361709595 0.6429944634437561 -0.4121829867362976 0.6443983316421509 0.6440626382827759 -0.3633838891983032 0.6396068930625916 0.6773583292961121 -0.3116550147533417 0.5937986373901367 0.7417829036712646 -0.25650808215141296 0.5239417552947998 0.8121891021728516 -0.20154424011707306 0.45603808760643005 0.8668172359466553 -0.1505783200263977 0.39484846591949463 0.9063081741333008 -0.10547196865081787 0.32233649492263794 0.9407025575637817 -0.06811731308698654 0.23517563939094543 0.9695425033569336 -0.040803246200084686 0.15601062774658203 0.9869075417518616 -0.023468732833862305 0.10003967583179474 0.9946897625923157 -0.013306070119142532 0.062349315732717514 0.9979552626609802 -0.0070192571729421616 0.03424176573753357 0.999359130859375 -0.00015259254723787308 -0.9371013641357422 0.3490096628665924 0.0 -0.9848628044128418 0.17316202819347382 -0.003875850699841976 0.017181921750307083 0.99981689453125 -0.0019531846046447754 -0.17313151061534882 0.9848933219909668 -0.4459059536457062 0.599200427532196 0.6648762226104736 -0.4062623977661133 0.6489760875701904 0.6432080864906311 -0.36246833205223083 0.6839503049850464 0.6330759525299072 -0.3185827136039734 0.6850489974021912 0.6551102995872498 -0.27323222160339355 0.6457106471061707 0.713003933429718 -0.22382274270057678 0.5770134329795837 0.7854548692703247 -0.17557299137115479 0.503128170967102 0.8461561799049377 -0.1352275162935257 0.4349497854709625 0.8902249336242676 -0.10202337801456451 0.3579210638999939 0.9281594157218933 -0.0718405693769455 0.26584672927856445 0.9613330364227295 -0.04535050690174103 0.17859432101249695 0.982848584651947 -0.026032287627458572 0.11392559856176376 0.9931333065032959 -0.01434369944036007 0.07028412818908691 0.9974059462547302 -0.007690664380788803 0.039216283708810806 0.999176025390625 -0.0002441480755805969 -0.9370403289794922 0.3491927981376648 -3.0518509447574615e-05 -0.9848628044128418 0.17316202819347382 -0.004669331945478916 0.02053895592689514 0.999755859375 -0.0024414807558059692 -0.17090365290641785 0.9852595329284668 -0.36991485953330994 0.6294747591018677 0.6832789182662964 -0.3397625684738159 0.6788232326507568 0.6509597897529602 -0.30689412355422974 0.7144383192062378 0.6287423372268677 -0.27350687980651855 0.7193822860717773 0.6384472250938416 -0.23566393554210663 0.6876125335693359 0.6867275238037109 -0.1909543126821518 0.6228827834129333 0.7586290836334229 -0.14722129702568054 0.5424360036849976 0.827082097530365 -0.11526840925216675 0.46345409750938416 0.8785668611526489 -0.09424115717411041 0.3821832835674286 0.9192480444908142 -0.07373271882534027 0.2917569577693939 0.9536118507385254 -0.050447095185518265 0.20203253626823425 0.9780572056770325 -0.03018280491232872 0.12982574105262756 0.9910580515861511 -0.016846217215061188 0.079317606985569 0.9967039823532104 -0.00912503432482481 0.04452650621533394 0.9989623427391052 -0.00033570360392332077 -0.9369487762451172 0.3494064211845398 -3.0518509447574615e-05 -0.9848628044128418 0.17316202819347382 -0.0060731833800673485 0.024750512093305588 0.999664306640625 -0.0031434064731001854 -0.16806542873382568 0.9857478737831116 -0.27570420503616333 0.6510208249092102 0.7071748971939087 -0.25669118762016296 0.6995757818222046 0.6668294072151184 -0.23999756574630737 0.7334818840026855 0.6358836889266968 -0.22415845096111298 0.7419354915618896 0.6318552494049072 -0.1994079351425171 0.7193822860717773 0.6653340458869934 -0.16357921063899994 0.6609088182449341 0.7323831915855408 -0.1275673657655716 0.574633002281189 0.808374285697937 -0.1035493016242981 0.4828333258628845 0.869533360004425 -0.08996856212615967 0.3971984088420868 0.9132969379425049 -0.07516708970069885 0.31241798400878906 0.9469588398933411 -0.05499435216188431 0.22470778226852417 0.9728690385818481 -0.03521835803985596 0.14694662392139435 0.9884945154190063 -0.020905178040266037 0.08978545665740967 0.9957274198532104 -0.011749626137316227 0.05096591264009476 0.9986266493797302 -0.00039674062281847 -0.9368267059326172 0.3497115969657898 -6.103701889514923e-05 -0.9848628044128418 0.17319254577159882 -0.008148442022502422 0.03024384379386902 0.999481201171875 -0.004333628341555595 -0.16425061225891113 0.9863887429237366 -0.1827448308467865 0.6626788973808289 0.7262489795684814 -0.17166662216186523 0.7094637751579285 0.6834925413131714 -0.16791284084320068 0.7401043772697449 0.6511428952217102 -0.1676076501607895 0.7520371079444885 0.6374400854110718 -0.1594592183828354 0.7393109202384949 0.6541642546653748 -0.14111758768558502 0.6877651214599609 0.712057888507843 -0.12121951580047607 0.5977355241775513 0.7924436330795288 -0.10675374418497086 0.49681082367897034 0.861232340335846 -0.0950651541352272 0.40952786803245544 0.9073153138160706 -0.0795922726392746 0.33094272017478943 0.940275251865387 -0.05960264801979065 0.2463148832321167 0.9673451781272888 -0.040162358433008194 0.16434217989444733 0.9855647683143616 -0.02545243687927723 0.10132145136594772 0.9945066571235657 -0.01513718068599701 0.05887020379304886 0.9981383681297302 -0.0005798516795039177 -0.9366741180419922 0.3501083254814148 -9.155552834272385e-05 -0.9848628044128418 0.17322306334972382 -0.01037629321217537 0.036927394568920135 0.999237060546875 -0.005890072323381901 -0.1594286859035492 0.9871821999549866 -0.1031830832362175 0.6680806875228882 0.7368693947792053 -0.09649952501058578 0.7111423015594482 0.6963713765144348 -0.09866634011268616 0.7379070520401001 0.6676229238510132 -0.10641804337501526 0.7516708970069885 0.6508377194404602 -0.11358989030122757 0.7457197904586792 0.6564836502075195 -0.11832026392221451 0.6994231939315796 0.7047944664955139 -0.12015137076377869 0.6097598075866699 0.7833796143531799 -0.11661122739315033 0.5077974796295166 0.8535111546516418 -0.10559403896331787 0.42365795373916626 0.8996246457099915 -0.0874050110578537 0.3508102595806122 0.9323404431343079 -0.06555375456809998 0.2681661546230316 0.9611194133758545 -0.04522842913866043 0.1821344643831253 0.982207715511322 -0.029663991183042526 0.11377300322055817 0.9930417537689209 -0.01831110566854477 0.06802576035261154 0.9974974989891052 -0.0008850367739796638 -0.9364909529685974 0.3506271541118622 -0.00015259254723787308 -0.9848628044128418 0.17325358092784882 -0.012207403779029846 0.04431287571787834 0.9989318251609802 -0.0074159977957606316 -0.15402691066265106 0.9880367517471313 -0.042451247572898865 0.670857846736908 0.7403180003166199 -0.037659838795661926 0.7090670466423035 0.7040925025939941 -0.04104739427566528 0.7317118048667908 0.6803491115570068 -0.05258339270949364 0.7441022992134094 0.6659749150276184 -0.0715353861451149 0.7392193078994751 0.669606626033783 -0.09405804425477982 0.696157693862915 0.7116611003875732 -0.1116061881184578 0.6115298867225647 0.7832880616188049 -0.11688589304685593 0.5157628059387207 0.8486892580986023 -0.10916470736265182 0.4386425316333771 0.8919950127601624 -0.09228797256946564 0.3715018033981323 0.9237952828407288 -0.0713522732257843 0.29032257199287415 0.9542527794837952 -0.05069124326109886 0.20096439123153687 0.9782708287239075 -0.03350932151079178 0.1276894509792328 0.9912412166595459 -0.02078310400247574 0.07818841934204102 0.9967039823532104 -0.0012512588873505592 -0.9362773299217224 0.35117650032043457 -0.0002441480755805969 -0.9848628044128418 0.17328409850597382 -0.013275551609694958 0.051850948482751846 0.9985350966453552 -0.008575701154768467 -0.14853358268737793 0.9888607263565063 -0.008239997550845146 0.6743674874305725 0.7383342981338501 -0.0024109622463583946 0.7076326608657837 0.7065340280532837 -0.004943998530507088 0.7251197695732117 0.6885586380958557 -0.01919614151120186 0.7322306036949158 0.6807764172554016 -0.04516739398241043 0.7239906191825867 0.6883144378662109 -0.07504501193761826 0.6834315061569214 0.7261269092559814 -0.09637745469808578 0.6075014472007751 0.7884151935577393 -0.1027253046631813 0.52128666639328 0.8471328020095825 -0.09768974781036377 0.4510330557823181 0.887112021446228 -0.0870082676410675 0.3882870078086853 0.9173864126205444 -0.07251197844743729 0.3098239004611969 0.9479964375495911 -0.05456709489226341 0.22043518722057343 0.9738456606864929 -0.03650013729929924 0.143528550863266 0.9889522790908813 -0.02230903133749962 0.08929716050624847 0.9957274198532104 -0.00158696249127388 -0.9360942244529724 0.35169529914855957 -0.00033570360392332077 -0.9848322868347168 0.17334513366222382 -0.01348918117582798 0.059083834290504456 0.9981383681297302 -0.00906399730592966 -0.143406480550766 0.9895932078361511 0.007171849720180035 0.6806237697601318 0.7325662970542908 0.016479995101690292 0.7090060114860535 0.7049775719642639 0.015625476837158203 0.7190160751342773 0.69478440284729 -6.103701889514923e-05 0.7178869247436523 0.696157693862915 -0.028839990496635437 0.7043367028236389 0.7092501521110535 -0.06009094417095184 0.6672567129135132 0.7423627376556396 -0.0794702023267746 0.6030762791633606 0.7936948537826538 -0.08215582370758057 0.5272377729415894 0.8456984162330627 -0.07654042541980743 0.4599444568157196 0.8846095204353333 -0.0716269388794899 0.3974120318889618 0.9148228168487549 -0.06585894525051117 0.3230384290218353 0.9440595507621765 -0.05374309420585632 0.2383190393447876 0.9696645736694336 -0.03717154264450073 0.16049684584140778 0.9863277077674866 -0.022583696991205215 0.10113833844661713 0.9945982098579407 -0.0017700735479593277 -0.9359111189842224 0.35218361020088196 -0.00039674062281847 -0.9848322868347168 0.17340616881847382 -0.012787255458533764 0.06582842767238617 0.9977416396141052 -0.008758812211453915 -0.13885921239852905 0.9902645945549011 0.01907406747341156 0.6876735687255859 0.7257606983184814 0.025696584954857826 0.7113559246063232 0.7023530006408691 0.022827845066785812 0.713248074054718 0.7004913687705994 0.007843256928026676 0.7033905982971191 0.7107455730438232 -0.01663258671760559 0.6845606565475464 0.7287514805793762 -0.04196295142173767 0.65141761302948 0.7575304508209229 -0.057679980993270874 0.599261462688446 0.7984557747840881 -0.05954161286354065 0.5337992310523987 0.843501091003418 -0.05462813377380371 0.4665669798851013 0.8827784061431885 -0.05298013240098953 0.39976194500923157 0.9150669574737549 -0.05310220643877983 0.32898953557014465 0.9428083300590515 -0.04687643051147461 0.252265989780426 0.9664906859397888 -0.03402813896536827 0.17645801603794098 0.9837031364440918 -0.021118808537721634 0.11273537576198578 0.9933775067329407 -0.0018005920574069023 -0.9357585310935974 0.35261085629463196 -0.00039674062281847 -0.9848322868347168 0.17346720397472382 -0.010956144891679287 0.0716269388794899 0.9973449110984802 -0.007690664380788803 -0.1350138783454895 0.9907833933830261 0.02688680589199066 0.6898403763771057 0.7234107255935669 0.021240882575511932 0.7101962566375732 0.7036652565002441 0.011139255948364735 0.7072054147720337 0.7069002389907837 -0.0017700735479593277 0.6926175951957703 0.7212744355201721 -0.014252143912017345 0.6717123985290527 0.7406536936759949 -0.024323251098394394 0.6410412788391113 0.7670827507972717 -0.031403545290231705 0.5956297516822815 0.8026062846183777 -0.03466902673244476 0.5370036959648132 0.842829704284668 -0.035401470959186554 0.4697714149951935 0.8820459842681885 -0.036927394568920135 0.39896848797798157 0.9161961674690247 -0.038514360785484314 0.33051544427871704 0.9429914355278015 -0.035309914499521255 0.2616046667098999 0.964506983757019 -0.026703696697950363 0.18912319839000702 0.981566846370697 -0.01733451336622238 0.12244026362895966 0.9923093318939209 -0.00158696249127388 -0.9356059432029724 0.35294654965400696 -0.0003662221133708954 -0.9848017692565918 0.17349772155284882 0.0 0.0 1.0 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 0.18085268139839172 0.0 0.9834895133972168 -0.382519006729126 0.3019501268863678 0.8731955885887146 -0.44752341508865356 0.3501388728618622 0.8228400349617004 -0.3256935477256775 0.23612171411514282 0.9154942631721497 -0.38544878363609314 0.2845850884914398 0.8777123093605042 -0.28266242146492004 0.18115787208080292 0.9419537782669067 -0.3332010805606842 0.2233344465494156 0.9160130620002747 -0.24100467562675476 0.1345561146736145 0.9611194133758545 -0.2852259874343872 0.17090365290641785 0.9430829882621765 -0.18585772812366486 0.09329508244991302 0.9781182408332825 -0.22528763115406036 0.125919371843338 0.9660939574241638 -0.1263466328382492 0.05877865105867386 0.9902340769767761 -0.1584520936012268 0.0872829407453537 0.9834895133972168 -0.079287089407444 0.033722952008247375 0.9962767362594604 -0.10235907882452011 0.05630664899945259 0.9931333065032959 -0.048036135733127594 0.017700735479593277 0.9986876845359802 -0.0632953867316246 0.033661916851997375 0.9974059462547302 -0.026673177257180214 0.008209479041397572 0.999603271484375 -0.03634754568338394 0.01815851405262947 0.9991455078125 -0.011535996571183205 0.0029908139258623123 0.999908447265625 -0.016968291252851486 0.008239997550845146 0.99981689453125 -0.0031128879636526108 0.0007019257172942162 0.999969482421875 -0.0054322946816682816 0.0027466658502817154 0.999969482421875 -0.00030518509447574615 6.103701889514923e-05 0.999969482421875 -0.0008545182645320892 0.0005493331700563431 0.999969482421875 0.0 0.0 1.0 -3.0518509447574615e-05 3.0518509447574615e-05 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 -0.00033570360392332077 -0.17923520505428314 0.9837946891784668 -0.3164464235305786 0.2540665864944458 0.9139378070831299 -0.2717368006706238 0.19519639015197754 0.9423505067825317 -0.2378612607717514 0.14777062833309174 0.9599596858024597 -0.19992674887180328 0.10602129995822906 0.9740287661552429 -0.1496932953596115 0.06857509166002274 0.9863277077674866 -0.09961241483688354 0.039368875324726105 0.9942319989204407 -0.06256294250488281 0.02063051238656044 0.9978026747703552 -0.038422804325819016 0.010193182155489922 0.99920654296875 -0.021210364997386932 0.004577776417136192 0.999755859375 -0.008880886249244213 0.0016174810007214546 0.99993896484375 -0.0022583696991205215 0.0003662221133708954 0.999969482421875 -0.0001831110566854477 3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.25748467445373535 0.2141178548336029 0.9422284364700317 -0.22559282183647156 0.16522720456123352 0.9600818157196045 -0.1977294236421585 0.12442396581172943 0.9723197221755981 -0.16183964908123016 0.08667256683111191 0.983001172542572 -0.11810663342475891 0.05368205904960632 0.9915463924407959 -0.0787682756781578 0.03012176975607872 0.9964293241500854 -0.05096591264009476 0.016327403485774994 0.9985350966453552 -0.0320444330573082 0.00878933072090149 0.999420166015625 -0.01745658740401268 0.004303109832108021 0.99981689453125 -0.006988738663494587 0.0016479995101690292 0.999969482421875 -0.0016479995101690292 0.00039674062281847 0.999969482421875 -9.155552834272385e-05 3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.20908230543136597 0.18674275279045105 0.9598681330680847 -0.18613238632678986 0.14645832777023315 0.9715262055397034 -0.16049684584140778 0.10962248593568802 0.9808954000473022 -0.1271706223487854 0.07489242404699326 0.9890438318252563 -0.09164708107709885 0.046418651938438416 0.9946897625923157 -0.06268502026796341 0.027344584465026855 0.9976500868797302 -0.04208502545952797 0.016113772988319397 0.9989623427391052 -0.026490066200494766 0.009216589853167534 0.999603271484375 -0.013794366270303726 0.0044862208887934685 0.9998779296875 -0.005096591077744961 0.0016174810007214546 0.999969482421875 -0.0010071108117699623 0.00033570360392332077 0.999969482421875 -3.0518509447574615e-05 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.16934721171855927 0.16873684525489807 0.9709768891334534 -0.1499069184064865 0.13254188001155853 0.9797662496566772 -0.12509536743164062 0.09732352942228317 0.9873348474502563 -0.09646900743246078 0.06573686748743057 0.9931333065032959 -0.07007049769163132 0.041779838502407074 0.9966429471969604 -0.049592576920986176 0.02612384408712387 0.9984130263328552 -0.03390606492757797 0.016052735969424248 0.999267578125 -0.02069154940545559 0.009002960287034512 0.999725341796875 -0.0099795525893569 0.004119998775422573 0.99993896484375 -0.0032349620014429092 0.0013122959062457085 0.999969482421875 -0.0004882961511611938 0.0002136295661330223 0.999969482421875 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.13321329653263092 0.1517380326986313 0.9793999791145325 -0.11450544744729996 0.11627551913261414 0.9865718483924866 -0.09237952530384064 0.08322397619485855 0.9922177791595459 -0.07074190676212311 0.05627613142132759 0.9958800077438354 -0.052705466747283936 0.03704947233200073 0.9978942275047302 -0.03830073028802872 0.024018067866563797 0.9989623427391052 -0.025849178433418274 0.014709921553730965 0.999542236328125 -0.014801477082073689 0.007782219909131527 0.999847412109375 -0.006378368474543095 0.00317392498254776 0.999969482421875 -0.0017090365290641785 0.0008545182645320892 0.999969482421875 -0.00015259254723787308 9.155552834272385e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.09784234315156937 0.1281777322292328 0.9869075417518616 -0.08133182674646378 0.0950956791639328 0.9921262264251709 -0.06479079276323318 0.06735435128211975 0.9956053495407104 -0.05053865164518356 0.046510208398103714 0.9976195693016052 -0.03875850886106491 0.0316171757876873 0.9987182021141052 -0.028168585151433945 0.02056947536766529 0.9993896484375 -0.018097475171089172 0.012024292722344398 0.999755859375 -0.009399700909852982 0.005798516795039177 0.999908447265625 -0.0034485915675759315 0.0020447401329874992 0.999969482421875 -0.0007019257172942162 0.0004272591322660446 0.999969482421875 -3.0518509447574615e-05 3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.06582842767238617 0.09863582253456116 0.9929196834564209 -0.05410931631922722 0.07251197844743729 0.9958800077438354 -0.043946653604507446 0.05218665301799774 0.9976500868797302 -0.035401470959186554 0.03704947233200073 0.9986571669578552 -0.027344584465026855 0.02539139986038208 0.999298095703125 -0.01910458691418171 0.01593066193163395 0.999664306640625 -0.011230811476707458 0.008545182645320892 0.9998779296875 -0.005066072568297386 0.0036011841148138046 0.999969482421875 -0.0014648884534835815 0.0010071108117699623 0.999969482421875 -0.0001831110566854477 0.00012207403779029846 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.04132205992937088 0.07086397707462311 0.9966124296188354 -0.03466902673244476 0.05304116755723953 0.9979857802391052 -0.029206212610006332 0.039155248552560806 0.9987792372703552 -0.0238349549472332 0.027985472232103348 0.999298095703125 -0.017761772498488426 0.018494216725230217 0.999664306640625 -0.011413922533392906 0.010681478306651115 0.999847412109375 -0.005890072323381901 0.0050355540588498116 0.999969482421875 -0.002136295661330223 0.001739555038511753 0.999969482421875 -0.0004272591322660446 0.00033570360392332077 0.999969482421875 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.024964140728116035 0.04913479834794998 0.9984740614891052 -0.021637622267007828 0.037568286061286926 0.999053955078125 -0.018524736166000366 0.02774132415652275 0.999420166015625 -0.01461836602538824 0.01904354989528656 0.99969482421875 -0.010040589608252048 0.01156651508063078 0.9998779296875 -0.005645924247801304 0.005859553813934326 0.99993896484375 -0.00238044373691082 0.0022583696991205215 0.999969482421875 -0.0006103701889514923 0.0005493331700563431 0.999969482421875 -6.103701889514923e-05 6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.014404736459255219 0.03231910243630409 0.999359130859375 -0.01263466291129589 0.024384289979934692 0.999603271484375 -0.010467848740518093 0.017151402309536934 0.999786376953125 -0.007568590342998505 0.010742515325546265 0.999908447265625 -0.004547257907688618 0.0056764427572488785 0.999969482421875 -0.0021057771518826485 0.0023499252274632454 0.999969482421875 -0.0006408886983990669 0.0006714072078466415 0.999969482421875 -9.155552834272385e-05 9.155552834272385e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.0074159977957606316 0.018524736166000366 0.999786376953125 -0.006317331455647945 0.01315347757190466 0.9998779296875 -0.004791405983269215 0.008362071588635445 0.99993896484375 -0.0029908139258623123 0.004547257907688618 0.999969482421875 -0.0014648884534835815 0.0019226660951972008 0.999969482421875 -0.0004882961511611938 0.0005798516795039177 0.999969482421875 -6.103701889514923e-05 6.103701889514923e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.0030518509447574615 0.008117923513054848 0.99993896484375 -0.00238044373691082 0.005188146606087685 0.999969482421875 -0.0015564439818263054 0.0028077028691768646 0.999969482421875 -0.0007629627361893654 0.00119022186845541 0.999969482421875 -0.0002441480755805969 0.00033570360392332077 0.999969482421875 -3.0518509447574615e-05 3.0518509447574615e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 0.0 1.0 0.18085268139839172 0.0 0.9834895133972168 -0.0005798516795039177 0.00119022186845541 0.999969482421875 -0.00027466658502817154 0.00045777764171361923 0.999969482421875 -9.155552834272385e-05 9.155552834272385e-05 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.0 -0.18085268139839172 0.9834895133972168 0.22827845811843872 -0.22827845811843872 0.9464400410652161 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3484298288822174 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.0 -0.9848933219909668 0.17313151061534882 0.0 -0.9373149871826172 0.3483993113040924 0.9323099255561829 -0.18866541981697083 0.3084505796432495 0.982421338558197 -0.06039613112807274 0.17658010125160217 -9.155552834272385e-05 -0.18070009350776672 0.9835200309753418 0.0 -0.18082216382026672 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.0 -0.18085268139839172 0.9834895133972168 0.06039613112807274 -0.982421338558197 0.17658010125160217 0.18869593739509583 -0.9323099255561829 0.3084505796432495 0.6880397796630859 -0.6880397796630859 0.2305673360824585 0.522171676158905 -0.8040406703948975 0.2842799127101898 0.6636860370635986 -0.6636860370635986 0.34498122334480286 0.8040406703948975 -0.522171676158905 0.2842799127101898 0.18085268139839172 0.0 0.9834895133972168 -0.0001831110566854477 0.00015259254723787308 0.999969482421875 -0.5006866455078125 0.39243751764297485 0.7715384364128113 -0.5430158376693726 0.4291817843914032 0.7217322587966919 -0.5359660387039185 0.4223151206970215 0.730979323387146 -0.5594042539596558 0.43910032510757446 0.7029938697814941 -0.5599841475486755 0.4288460910320282 0.7088229060173035 -0.5638599991798401 0.44047364592552185 0.6985381841659546 -0.5865657329559326 0.40681174397468567 0.7002777457237244 -0.5727713704109192 0.430982381105423 0.6972258687019348 -0.6220282316207886 0.3665883243083954 0.6918240785598755 -0.5974913835525513 0.40845972299575806 0.6900234818458557 -0.6598712205886841 0.3260292410850525 0.6769310832023621 -0.635181725025177 0.3743095099925995 0.6755577325820923 -0.6903896927833557 0.3003326654434204 0.6581316590309143 -0.6720175743103027 0.3401898145675659 0.6577349305152893 -0.7100131511688232 0.2937406599521637 0.6399731636047363 -0.6964018940925598 0.3179723620414734 0.6433301568031311 -0.7193517684936523 0.2865077555179596 0.6327707767486572 -0.7079073190689087 0.28922390937805176 0.6443372964859009 -0.7175511717796326 0.2561113238334656 0.6476638317108154 -0.7078768014907837 0.23386333882808685 0.6664631962776184 -0.7025055885314941 0.21097445487976074 0.6796472072601318 -0.6923733949661255 0.17047639191150665 0.7010712027549744 -0.6778160929679871 0.1590624749660492 0.7177953720092773 -0.6618244051933289 0.10950040817260742 0.7415997982025146 -0.6465346217155457 0.08362071216106415 0.7582628726959229 -0.6195257306098938 0.029175695031881332 0.7844172716140747 -0.6047853231430054 -0.017975401133298874 0.7961363792419434 -0.5674306750297546 -0.07501449435949326 0.8199713230133057 -0.5521714091300964 -0.11957152187824249 0.8250983953475952 -0.5118564367294312 -0.17249061167240143 0.8415479063987732 -0.4448683261871338 0.33732107281684875 0.8296151757240295 -0.49717703461647034 0.3821222484111786 0.7789544463157654 -0.5425275564193726 0.3963133692741394 0.7406536936759949 -0.5859248638153076 0.37037262320518494 0.7207251191139221 -0.6264534592628479 0.3242896795272827 0.7087618708610535 -0.6585283875465393 0.287392795085907 0.695486307144165 -0.6804406642913818 0.2715231776237488 0.6806237697601318 -0.69490647315979 0.27399519085884094 0.6648151874542236 -0.7040925025939941 0.28171634674072266 0.65178382396698 -0.7066255807876587 0.27335429191589355 0.652607798576355 -0.7006134390830994 0.24283577501773834 0.6709189414978027 -0.6879482269287109 0.19574572145938873 0.6988433599472046 -0.669301450252533 0.1265297383069992 0.7321085333824158 -0.6393627524375916 0.03411969542503357 0.7681203484535217 -0.5970946550369263 -0.06625568121671677 0.7994018197059631 -0.3886837363243103 0.27472761273384094 0.8794213533401489 -0.4448683261871338 0.3256935477256775 0.8342539668083191 -0.4977568984031677 0.3490706980228424 0.7939389944076538 -0.5460066795349121 0.32963043451309204 0.7701956033706665 -0.5858333110809326 0.28925442695617676 0.7570116519927979 -0.6147953867912292 0.2603228986263275 0.7444379925727844 -0.635547935962677 0.25144198536872864 0.729941725730896 -0.652424693107605 0.25659963488578796 0.713034451007843 -0.6684163808822632 0.2683797776699066 0.6936551928520203 -0.6826685667037964 0.27249976992607117 0.6779991984367371 -0.6919156312942505 0.2548600733280182 0.6754661798477173 -0.6941739916801453 0.2149723768234253 0.6869106292724609 -0.6895352005958557 0.15387432277202606 0.7076936960220337 -0.6768700480461121 0.07089449465274811 0.7326578497886658 -0.6557207107543945 -0.02688680589199066 0.7544785737991333 -0.3332621157169342 0.21665090322494507 0.9175695180892944 -0.38361766934394836 0.26770836114883423 0.8838160037994385 -0.43125706911087036 0.300088495016098 0.8508255481719971 -0.47221291065216064 0.2927030324935913 0.8314462900161743 -0.5054780840873718 0.2608416974544525 0.8224433064460754 -0.5337076783180237 0.23581652343273163 0.8120975494384766 -0.5606555342674255 0.22818689048290253 0.7959837913513184 -0.5878780484199524 0.23221534490585327 0.7748649716377258 -0.6161686778068542 0.24188970029354095 0.7495040893554688 -0.6454359292984009 0.24900051951408386 0.7220374345779419 -0.6729941964149475 0.24091310799121857 0.6992706060409546 -0.695120096206665 0.21045564115047455 0.6873683929443359 -0.7108676433563232 0.15634632110595703 0.6856898665428162 -0.7205114960670471 0.0791344940662384 0.6888943314552307 -0.7218848466873169 -0.013122959062457085 0.6918545961380005 -0.26773887872695923 0.1667531430721283 0.9489425420761108 -0.31308940052986145 0.2154606729745865 0.9249244928359985 -0.3568834364414215 0.2552873194217682 0.8985564708709717 -0.39255958795547485 0.2618182897567749 0.8816491961479187 -0.4189580976963043 0.2377086728811264 0.8763085007667542 -0.4426404535770416 0.21073031425476074 0.8715475797653198 -0.47062593698501587 0.1979125291109085 0.8598284721374512 -0.504684567451477 0.19733268022537231 0.8404186964035034 -0.5438398122787476 0.20261238515377045 0.8143253922462463 -0.5869014263153076 0.2069154977798462 0.7827387452125549 -0.6320078372955322 0.20123904943466187 0.748344361782074 -0.6758018732070923 0.17636646330356598 0.7156590223312378 -0.7146824598312378 0.1270485520362854 0.6877956390380859 -0.7444379925727844 0.05624561384320259 0.6652730107307434 -0.7596057057380676 -0.021759696304798126 0.6499832272529602 -0.19556260108947754 0.12308114767074585 0.9729300737380981 -0.2384411096572876 0.1668446958065033 0.9566942453384399 -0.2845850884914398 0.20966215431690216 0.9354228377342224 -0.3250831663608551 0.2300790399312973 0.9172338247299194 -0.35288551449775696 0.21796318888664246 0.9099093675613403 -0.3716544210910797 0.1905880868434906 0.9085665345191956 -0.39204075932502747 0.16949979960918427 0.904171884059906 -0.4211249053478241 0.1597033590078354 0.8928189873695374 -0.4603106677532196 0.15671254694461823 0.8738059401512146 -0.5087435245513916 0.15369121730327606 0.8470717668533325 -0.5641956925392151 0.1432538777589798 0.8130741119384766 -0.6221198439598083 0.11792352050542831 0.773979902267456 -0.6751915216445923 0.07290872186422348 0.7340006828308105 -0.7144383192062378 0.01467940304428339 0.6995147466659546 -0.7329325079917908 -0.03820917382836342 0.6791894435882568 -0.13199254870414734 0.08569597452878952 0.9875179529190063 -0.16965238749980927 0.12125004082918167 0.9779961705207825 -0.21576586365699768 0.16016113758087158 0.9631946682929993 -0.2638935446739197 0.18918423354625702 0.9457991123199463 -0.3027130961418152 0.19312113523483276 0.9332865476608276 -0.3270058333873749 0.1743827611207962 0.9287698268890381 -0.34382152557373047 0.14944913983345032 0.9270302653312683 -0.3644215166568756 0.12927640974521637 0.922208309173584 -0.395489364862442 0.11429181694984436 0.9113132357597351 -0.4385204613208771 0.09973448514938354 0.8931546807289124 -0.491103857755661 0.08035523444414139 0.8673665523529053 -0.5469222068786621 0.05230872333049774 0.8355357646942139 -0.5959349274635315 0.014709921553730965 0.8028809428215027 -0.6281014680862427 -0.02386547438800335 0.7777336835861206 -0.6389355063438416 -0.047181613743305206 0.7677846550941467 -0.08508560061454773 0.05612353980541229 0.9947813153266907 -0.11420026421546936 0.08279671519994736 0.9899899363517761 -0.15247046947479248 0.11264381557703018 0.981841504573822 -0.1991637945175171 0.14050722122192383 0.9698172211647034 -0.2468031793832779 0.15533921122550964 0.9565111398696899 -0.2856837809085846 0.1503646969795227 0.9464400410652161 -0.31333354115486145 0.13058869540691376 0.9406110048294067 -0.33613085746765137 0.10556352138519287 0.9358500838279724 -0.36228522658348083 0.08035523444414139 0.9285866618156433 -0.395489364862442 0.055085908621549606 0.9168065190315247 -0.43400371074676514 0.02841273322701454 0.9004486203193665 -0.47157201170921326 0.001037629321217537 0.8818017840385437 -0.4995269775390625 -0.024292733520269394 0.8659321665763855 -0.5114597082138062 -0.04150517284870148 0.8582720160484314 -0.5076448917388916 -0.04150517284870148 0.860530436038971 -0.05160680040717125 0.03427228704094887 0.9980468153953552 -0.07272560894489288 0.05389568954706192 0.9958800077438354 -0.10058900713920593 0.07470931112766266 0.9920957088470459 -0.13672292232513428 0.0948820486664772 0.9860225319862366 -0.17996765673160553 0.10980559885501862 0.9775078296661377 -0.22458571195602417 0.11301004141569138 0.9678640365600586 -0.2641071677207947 0.10208441317081451 0.9590441584587097 -0.29618212580680847 0.08035523444414139 0.9517197012901306 -0.3229773938655853 0.05307168886065483 0.9448835849761963 -0.34702596068382263 0.024292733520269394 0.9375286102294922 -0.36802271008491516 -0.0028077028691768646 0.9297769069671631 -0.382854700088501 -0.024201177060604095 0.9234595894813538 -0.3880428373813629 -0.03643909841775894 0.9208959937095642 -0.382580041885376 -0.037751395255327225 0.9231238961219788 -0.37018951773643494 -0.026642657816410065 0.9285561442375183 -0.027161473408341408 0.018616290763020515 0.99945068359375 -0.04275643080472946 0.03265480697154999 0.9985350966453552 -0.0632953867316246 0.047273170202970505 0.9968565702438354 -0.08883938193321228 0.06036560982465744 0.9942014813423157 -0.11984618753194809 0.07003998011350632 0.9902951121330261 -0.15497298538684845 0.07330545783042908 0.9851679801940918 -0.1904354989528656 0.06750693917274475 0.9793694615364075 -0.221594899892807 0.05243080109357834 0.9736930727958679 -0.2454603761434555 0.03082369454205036 0.9689016342163086 -0.2609942853450775 0.006836146116256714 0.965300440788269 -0.2684713304042816 -0.014557329006493092 0.9631641507148743 -0.2688375413417816 -0.028382213786244392 0.9627369046211243 -0.2634052634239197 -0.0319833979010582 0.964140772819519 -0.2540971040725708 -0.025910213589668274 0.9667958617210388 -0.24353770911693573 -0.012573625892400742 0.9697867035865784 -0.011139255948364735 0.008148442022502422 0.9998779296875 -0.021729178726673126 0.016907254233956337 0.999603271484375 -0.037018951028585434 0.02710043638944626 0.9989318251609802 -0.055909909307956696 0.036103397607803345 0.9977721571922302 -0.07730338722467422 0.04199346899986267 0.9960936307907104 -0.10028382390737534 0.04345835745334625 0.9939878582954407 -0.12314218282699585 0.0394299142062664 0.9915769100189209 -0.1431928426027298 0.029663991183042526 0.9892269372940063 -0.1577806919813156 0.015442365780472755 0.9873348474502563 -0.16522720456123352 -0.0006103701889514923 0.9862361550331116 -0.16571550071239471 -0.014984588138759136 0.9860530495643616 -0.16116824746131897 -0.023438215255737305 0.9866328835487366 -0.15417951345443726 -0.0236823633313179 0.9877315759658813 -0.14688558876514435 -0.016235847026109695 0.9890133142471313 -0.14038515090942383 -0.00357066560536623 0.9900814890861511 -0.0030518509447574615 0.002471999265253544 0.999969482421875 -0.008453627116978168 0.0066225165501236916 0.99993896484375 -0.017975401133298874 0.012573625892400742 0.999755859375 -0.03106784261763096 0.018646810203790665 0.99932861328125 -0.04629657790064812 0.02294991910457611 0.9986571669578552 -0.06179998070001602 0.024201177060604095 0.9977721571922302 -0.07602160423994064 0.021820735186338425 0.9968565702438354 -0.0875270813703537 0.0159001424908638 0.9960325956344604 -0.0949125662446022 0.007385479286313057 0.9954527616500854 -0.09723196923732758 -0.002227851189672947 0.9952391386032104 -0.09457685798406601 -0.01110873743891716 0.9954527616500854 -0.08841212093830109 -0.016357921063899994 0.9959410429000854 -0.08102664351463318 -0.01593066193163395 0.9965819120407104 -0.07452619820833206 -0.009552293457090855 0.9971618056297302 -0.07016205042600632 0.0012512588873505592 0.9975280165672302 -0.0004272591322660446 0.00039674062281847 0.999969482421875 -0.0021057771518826485 0.0016479995101690292 0.999969482421875 -0.006103701889514923 0.0040894802659749985 0.999969482421875 -0.012878810986876488 0.0072634052485227585 0.9998779296875 -0.021912289783358574 0.010132145136594772 0.99969482421875 -0.0319223627448082 0.01156651508063078 0.999420166015625 -0.04135258123278618 0.010895107872784138 0.99908447265625 -0.048677023500204086 0.008056886494159698 0.9987792372703552 -0.05298013240098953 0.0036317026242613792 0.9985656142234802 -0.05365154147148132 -0.0014648884534835815 0.9985350966453552 -0.05063020810484886 -0.0062257759273052216 0.9986876845359802 -0.044801171869039536 -0.00918607134371996 0.9989318251609802 -0.03805658221244812 -0.008819849230349064 0.99920654296875 -0.03259376809000969 -0.0044862208887934685 0.99945068359375 -0.03015228733420372 0.0031434064731001854 0.99951171875 -0.001037629321217537 0.0007324442267417908 0.999969482421875 -0.0031128879636526108 0.001831110566854477 0.999969482421875 -0.006653035059571266 0.0032044434919953346 0.999969482421875 -0.011322367005050182 0.0042420728132128716 0.999908447265625 -0.016235847026109695 0.004394665360450745 0.999847412109375 -0.020386364310979843 0.003479110077023506 0.999755859375 -0.02294991910457611 0.0016785180196166039 0.999725341796875 -0.023377178236842155 -0.0005493331700563431 0.999725341796875 -0.021637622267007828 -0.002624591812491417 0.999755859375 -0.01818903163075447 -0.003906369209289551 0.99981689453125 -0.014099551364779472 -0.0036927396431565285 0.9998779296875 -0.01110873743891716 -0.0013733329251408577 0.999908447265625 -0.01077303383499384 0.0029602954164147377 0.999908447265625 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3483993113040924 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3484298288822174 0.9848933219909668 0.0 0.17313151061534882 0.9373149871826172 0.0 0.3484603464603424 0.9848933219909668 0.0 0.17313151061534882 0.9372539520263672 0.0 0.3485824167728424 0.9848933219909668 0.0 0.17313151061534882 0.9371929168701172 3.0518509447574615e-05 0.3487655222415924 0.9848933219909668 0.0 0.17313151061534882 0.9371013641357422 6.103701889514923e-05 0.3489791452884674 0.9848933219909668 -3.0518509447574615e-05 0.17310097813606262 0.9370403289794922 6.103701889514923e-05 0.3491927981376648 0.9848933219909668 0.0 0.17310097813606262 0.9369792938232422 3.0518509447574615e-05 0.3493148684501648 0.9848933219909668 0.0 0.17310097813606262 0.9369792938232422 0.0 0.3493148684501648 0.9848933219909668 0.0 0.17310097813606262 0.9370098114013672 -3.0518509447574615e-05 0.3492538332939148 0.9848933219909668 0.0 0.17310097813606262 0.9370708465576172 -6.103701889514923e-05 0.3491012156009674 0.9848933219909668 0.0 0.17313151061534882 0.9371318817138672 -3.0518509447574615e-05 0.3488875925540924 0.9848933219909668 0.0 0.17313151061534882 0.9371623992919922 0.0 0.3487960398197174 0.9848933219909668 0.0 0.17313151061534882 0.9371318817138672 0.0002441480755805969 0.3489181101322174 0.18079164624214172 3.0518509447574615e-05 0.9834895133972168 0.18039490282535553 0.00033570360392332077 0.9835810661315918 0.17923520505428314 0.0008239997550845146 0.9837946891784668 0.17725150287151337 0.001342814415693283 0.9841609001159668 0.1748100221157074 0.00158696249127388 0.9845881462097168 0.17258216440677643 0.0013733329251408577 0.9849848747253418 0.17114779353141785 0.0007324442267417908 0.9852290153503418 0.17081210017204285 -0.00015259254723787308 0.9852900505065918 0.17169713973999023 -0.0009765923023223877 0.9851374626159668 0.17355875670909882 -0.0014648884534835815 0.9848017692565918 0.17569506168365479 -0.001342814415693283 0.9844355583190918 0.17700734734535217 -0.00027466658502817154 0.9841914176940918 0.17645801603794098 0.00198370311409235 0.9842829704284668 -0.5716727375984192 0.44709616899490356 0.6879177093505859 -0.5918149352073669 0.45472580194473267 0.6655171513557434 -0.5935544967651367 0.46360668540000916 0.6577959656715393 -0.5723746418952942 0.48152104020118713 0.6636860370635986 -0.5363323092460632 0.5086214542388916 0.6734824776649475 -0.48109379410743713 0.5404828190803528 0.6902065873146057 -0.3968321681022644 0.5702993869781494 0.7191991806030273 -0.2943510115146637 0.5914487242698669 0.7506637573242188 -0.19687490165233612 0.6031983494758606 0.772881269454956 -0.11532944440841675 0.6097598075866699 0.7841120362281799 -0.053407393395900726 0.6150090098381042 0.7866756319999695 -0.01916562393307686 0.6214789152145386 0.7831659913063049 -0.005401776172220707 0.6295052766799927 0.7769402265548706 0.009430219419300556 0.6364330053329468 0.7712332606315613 0.02938932552933693 0.6382336020469666 0.7692800760269165 -0.5799737572669983 0.4379405975341797 0.6868801116943359 -0.599902331829071 0.4300363063812256 0.6746421456336975 -0.6048768758773804 0.42530596256256104 0.6731773018836975 -0.5923032164573669 0.4293038845062256 0.6817834973335266 -0.5652943253517151 0.443830668926239 0.69527268409729 -0.5119174718856812 0.4680013358592987 0.7203283905982971 -0.42338329553604126 0.49650561809539795 0.7577440738677979 -0.3154087960720062 0.521378219127655 0.7928708791732788 -0.2132633477449417 0.538254976272583 0.8153324723243713 -0.1278420388698578 0.5470747947692871 0.8272347450256348 -0.06442457437515259 0.5511032342910767 0.8319040536880493 -0.03015228733420372 0.5553758144378662 0.8310495018959045 -0.015594958327710629 0.5604724287986755 0.8279976844787598 0.002929776906967163 0.5632801055908203 0.826227605342865 0.031220436096191406 0.5620899200439453 0.826471745967865 -0.5761894583702087 0.4343089163303375 0.6923428773880005 -0.5949583649635315 0.4186224043369293 0.6861171126365662 -0.6023437976837158 0.40217292308807373 0.6894741654396057 -0.5971862077713013 0.3899655044078827 0.7008880972862244 -0.5800653100013733 0.3870357275009155 0.7167271971702576 -0.5340738892555237 0.39915159344673157 0.7452315092086792 -0.44969022274017334 0.42497023940086365 0.7855769395828247 -0.3425092399120331 0.45576342940330505 0.8215582966804504 -0.23499251902103424 0.48146000504493713 0.844355583190918 -0.13989683985710144 0.49525436758995056 0.8573870062828064 -0.0711996853351593 0.4986419379711151 0.8638569116592407 -0.03555406257510185 0.4982756972312927 0.8662679195404053 -0.01757866144180298 0.49513229727745056 0.868617832660675 0.004119998775422573 0.48811304569244385 0.8727378249168396 0.034485913813114166 0.48042237758636475 0.8763390183448792 -0.5709097385406494 0.4374217987060547 0.694753885269165 -0.5804010033607483 0.42564165592193604 0.6942045092582703 -0.5857112407684326 0.40244758129119873 0.7035126686096191 -0.5855891704559326 0.37730032205581665 0.7174291014671326 -0.5784478187561035 0.35956907272338867 0.7321695685386658 -0.5448164343833923 0.3584398925304413 0.7580492496490479 -0.47325053811073303 0.37717825174331665 0.7960753440856934 -0.3734855055809021 0.40849024057388306 0.8328195810317993 -0.2617267370223999 0.4384594261646271 0.8597674369812012 -0.15512558817863464 0.45701467990875244 0.8757896423339844 -0.07791375368833542 0.46485793590545654 0.8819239139556885 -0.03570665419101715 0.46507155895233154 0.8845179677009583 -0.008545182645320892 0.45536667108535767 0.8902554512023926 0.01666310615837574 0.4369640052318573 0.8992888927459717 0.04303109645843506 0.4188970625400543 0.9069795608520508 -0.5769523978233337 0.4365672767162323 0.6902676224708557 -0.5649891495704651 0.44041261076927185 0.6976836323738098 -0.5592516660690308 0.4206061065196991 0.7143467664718628 -0.5610522627830505 0.3893856704235077 0.730430006980896 -0.5627307891845703 0.36017945408821106 0.7440107464790344 -0.5433515310287476 0.34382152557373047 0.765831470489502 -0.48930326104164124 0.34748375415802 0.7998596429824829 -0.40140995383262634 0.36777856945991516 0.8388012051582336 -0.28965118527412415 0.39268165826797485 0.8728598952293396 -0.17728202044963837 0.4138004779815674 0.8929105401039124 -0.09225745499134064 0.4293344020843506 0.8984038829803467 -0.037537768483161926 0.4359568953514099 0.8991668224334717 0.004608294926583767 0.4285103976726532 0.903500497341156 0.03668324649333954 0.40916165709495544 0.9117099642753601 0.05865657329559326 0.3869746923446655 0.9201940894126892 -0.600573718547821 0.41843926906585693 0.6812952160835266 -0.5613574385643005 0.4420911371707916 0.6995757818222046 -0.5330362915992737 0.4356212019920349 0.7253028750419617 -0.5286721587181091 0.4050721824169159 0.7459028959274292 -0.5344096422195435 0.364818274974823 0.7624133825302124 -0.5271157026290894 0.32792139053344727 0.7839594483375549 -0.491622656583786 0.30652791261672974 0.8150272965431213 -0.4199957251548767 0.30616170167922974 0.8543046116828918 -0.3161717653274536 0.32114627957344055 0.8926663994789124 -0.2057557851076126 0.3424787223339081 0.9166844487190247 -0.11542100459337234 0.3630787134170532 0.9245582222938538 -0.047242652624845505 0.37641528248786926 0.9252296686172485 0.009674367494881153 0.3788567781448364 0.9253822565078735 0.05093539133667946 0.3720816671848297 0.9267860651016235 0.07470931112766266 0.35914182662963867 0.9302651882171631 -0.6335642337799072 0.3821527659893036 0.6726889610290527 -0.575090765953064 0.4141056537628174 0.7054963707923889 -0.5187841653823853 0.4215216636657715 0.7437360882759094 -0.49504074454307556 0.3981139659881592 0.7722708582878113 -0.4937894940376282 0.3510238826274872 0.7955564856529236 -0.491286963224411 0.2936185896396637 0.8199713230133057 -0.47361674904823303 0.24481947720050812 0.8460035920143127 -0.42429882287979126 0.2210760861635208 0.8781090974807739 -0.33750420808792114 0.22363963723182678 0.9143345355987549 -0.23471786081790924 0.24146243929862976 0.9415570497512817 -0.14142277836799622 0.2620929479598999 0.9546189904212952 -0.0640888661146164 0.2783898413181305 0.9583117365837097 0.0013733329251408577 0.29001739621162415 0.9569994211196899 0.04947050288319588 0.29877620935440063 0.9530320167541504 0.08102664351463318 0.3017975389957428 0.9498885869979858 -0.6593219041824341 0.3415936827659607 0.669759213924408 -0.5955381989479065 0.36213263869285583 0.7170323729515076 -0.5182653069496155 0.3711050748825073 0.7704702615737915 -0.4669026732444763 0.3550218343734741 0.8098697066307068 -0.4462721645832062 0.3113193213939667 0.8389538526535034 -0.4375133514404297 0.24817651510238647 0.8642536401748657 -0.43241676688194275 0.1827448308467865 0.8829309940338135 -0.40784937143325806 0.1357158124446869 0.9028900861740112 -0.34424877166748047 0.11642811447381973 0.9316080212593079 -0.2548295557498932 0.1194189265370369 0.9595629572868347 -0.16431164741516113 0.13373211026191711 0.9772942066192627 -0.08499404788017273 0.1519211381673813 0.9847102165222168 -0.018402662128210068 0.17273476719856262 0.9847712516784668 0.032258063554763794 0.19522690773010254 0.9802240133285522 0.07348857074975967 0.21295815706253052 0.9742729067802429 -0.6722006797790527 0.2921536862850189 0.6802575588226318 -0.6099123954772949 0.29633471369743347 0.7349467277526855 -0.521378219127655 0.29630419611930847 0.8001953363418579 -0.4445020854473114 0.2793359160423279 0.8511002063751221 -0.40284430980682373 0.24289681017398834 0.8824121952056885 -0.3808709979057312 0.191503643989563 0.904568612575531 -0.3747978210449219 0.1280556619167328 0.9182103872299194 -0.3658864200115204 0.0635090172290802 0.9284645915031433 -0.3246558904647827 0.014893032610416412 0.9456770420074463 -0.2553178369998932 -0.00878933072090149 0.9667958617210388 -0.18042543530464172 -0.007507553324103355 0.9835505485534668 -0.11172826588153839 0.014587847515940666 0.9936216473579407 -0.05078279972076416 0.05047761648893356 0.9974059462547302 0.0021973326802253723 0.08941923081874847 0.9959715604782104 0.05459761247038841 0.12033448368310928 0.9912106394767761 -0.6758629083633423 0.21863460540771484 0.7038178443908691 -0.616443395614624 0.21274453401565552 0.7580797672271729 -0.52067631483078 0.2063051164150238 0.8284249305725098 -0.42307808995246887 0.18668171763420105 0.886623740196228 -0.3666798770427704 0.15457625687122345 0.9173864126205444 -0.335367888212204 0.11642811447381973 0.9348430037498474 -0.3155308663845062 0.06732383370399475 0.9465010762214661 -0.3034455478191376 0.002075258642435074 0.9528183937072754 -0.2769249677658081 -0.06479079276323318 0.9586779475212097 -0.23346659541130066 -0.11020233482122421 0.9660634398460388 -0.1893673539161682 -0.12076174467802048 0.9744254946708679 -0.14642781019210815 -0.09604174643754959 0.9845271110534668 -0.09643848985433578 -0.0475783571600914 0.9941709637641907 -0.03799554333090782 0.005005035549402237 0.999237060546875 0.028962064534425735 0.046327099204063416 0.9985045790672302 -0.6672567129135132 0.13608203828334808 0.7322611212730408 -0.6149784922599792 0.11661122739315033 0.7798699736595154 -0.5166783928871155 0.10534989833831787 0.8496353030204773 -0.4052552878856659 0.09045685827732086 0.9096957445144653 -0.33796197175979614 0.06912442296743393 0.938596785068512 -0.3021942675113678 0.04269539564847946 0.9522690773010254 -0.26773887872695923 0.007080294191837311 0.9634388089179993 -0.23938718438148499 -0.04467909783124924 0.9698782563209534 -0.21713919937610626 -0.10571611672639847 0.9703665375709534 -0.20081178843975067 -0.15268410742282867 0.9676503539085388 -0.19580675661563873 -0.16559343039989471 0.9665517210960388 -0.18634602427482605 -0.14029358327388763 0.9724112749099731 -0.14789269864559174 -0.08948026597499847 0.9849238395690918 -0.08093509078025818 -0.03497420996427536 0.9960936307907104 0.0036011841148138046 0.0066225165501236916 0.999969482421875 -0.6410107612609863 0.05801568552851677 0.765312671661377 -0.599810779094696 0.01901303231716156 0.7998901605606079 -0.5110019445419312 -0.0008545182645320892 0.8595538139343262 -0.40086060762405396 -0.004394665360450745 0.9161046147346497 -0.32767724990844727 -0.0012512588873505592 0.9447615146636963 -0.2839137017726898 -0.005188146606087685 0.9588305354118347 -0.23541978001594543 -0.025757621973752975 0.9715262055397034 -0.1904049813747406 -0.06213568523526192 0.9797052145004272 -0.16803491115570068 -0.10373241454362869 0.9802850484848022 -0.1754203885793686 -0.13272500038146973 0.9754936099052429 -0.20792260766029358 -0.13345743715763092 0.9689931869506836 -0.22800378501415253 -0.1034882664680481 0.9681386947631836 -0.19492171704769135 -0.055970944464206696 0.9792168736457825 -0.11532944440841675 -0.01077303383499384 0.9932554364204407 -0.01223792228847742 0.019257180392742157 0.999725341796875 -0.5961790680885315 -0.03088473156094551 0.8022095561027527 -0.5662404298782349 -0.08243049681186676 0.8200628757476807 -0.5025482773780823 -0.10791344940662384 0.8577532172203064 -0.41682180762290955 -0.09762871265411377 0.903714120388031 -0.3494979739189148 -0.06283760815858841 0.9348124861717224 -0.2935270369052887 -0.03085421398282051 0.9554429650306702 -0.22470778226852417 -0.02148503065109253 0.9741813540458679 -0.16360972821712494 -0.03308206424117088 0.9859614968299866 -0.1426740288734436 -0.048738058656454086 0.9885555505752563 -0.17044587433338165 -0.05093539133667946 0.9840388298034668 -0.2306588888168335 -0.0320139154791832 0.9724723100662231 -0.26673176884651184 0.003418073058128357 0.9637439846992493 -0.22888882458209991 0.043183691799640656 0.9724723100662231 -0.13296914100646973 0.07309182733297348 0.9884029626846313 -0.013977477326989174 0.0868861973285675 0.9960936307907104 -0.538865327835083 -0.13229773938655853 0.8319040536880493 -0.52055424451828 -0.17990660667419434 0.8346201777458191 -0.4927213490009308 -0.19962157309055328 0.8469496965408325 -0.44923245906829834 -0.17795342206954956 0.8754844665527344 -0.40269172191619873 -0.12134159356355667 0.9072237014770508 -0.3427838981151581 -0.052766501903533936 0.9379253387451172 -0.2539750337600708 0.005859553813934326 0.9671620726585388 -0.17246009409427643 0.04544205963611603 0.9839472770690918 -0.14764854311943054 0.07303079217672348 0.9863277077674866 -0.18472853302955627 0.09961241483688354 0.9776909947395325 -0.2538529634475708 0.1266212910413742 0.9588915705680847 -0.28891873359680176 0.1502426266670227 0.9454634189605713 -0.24109622836112976 0.16870632767677307 0.9556871056556702 -0.1341593712568283 0.18024231493473053 0.9744254946708679 -0.0064699240028858185 0.1833246797323227 0.983001172542572 -0.4839930534362793 -0.21781060099601746 0.8474990129470825 -0.48118534684181213 -0.24881741404533386 0.8405407667160034 -0.4917142391204834 -0.252357542514801 0.8333689570426941 -0.4919278621673584 -0.21967223286628723 0.8424329161643982 -0.47343364357948303 -0.15350809693336487 0.8673055171966553 -0.4263741075992584 -0.06207464635372162 0.9024018049240112 -0.3331705629825592 0.043214209377765656 0.9418622255325317 -0.2300790399312973 0.1421857327222824 0.9627063870429993 -0.18454542756080627 0.21692556142807007 0.9585558772087097 -0.20633564889431 0.2634968161582947 0.9423199892044067 -0.25907161831855774 0.28131961822509766 0.9239478707313538 -0.28055664896965027 0.2761314809322357 0.9192175269126892 -0.22901089489459991 0.2638325095176697 0.9369792938232422 -0.1269264817237854 0.25730153918266296 0.9579454660415649 -0.00039674062281847 0.2562333941459656 0.9666127562522888 0.24808496236801147 0.670094907283783 0.6995757818222046 0.6683553457260132 0.6683858633041382 0.3263649344444275 0.42564165592193604 0.8847621083259583 0.1896420121192932 0.670094907283783 0.24811547994613647 0.6995757818222046 0.8847621083259583 0.42564165592193604 0.1896420121192932 -0.670094907283783 0.24808496236801147 0.6995757818222046 -0.6683858633041382 0.6683553457260132 0.3263649344444275 -0.8847621083259583 0.42567217350006104 0.1896420121192932 -0.24808496236801147 0.670094907283783 0.6995757818222046 -0.42564165592193604 0.8847621083259583 0.1896420121192932 -0.24808496236801147 -0.670094907283783 0.6995757818222046 -0.6683553457260132 -0.6683858633041382 0.3263649344444275 -0.42564165592193604 -0.8847621083259583 0.1896420121192932 -0.670094907283783 -0.24811547994613647 0.6995757818222046 -0.8847621083259583 -0.42564165592193604 0.1896420121192932 0.670094907283783 -0.24808496236801147 0.6995757818222046 0.6683858633041382 -0.6683553457260132 0.3263649344444275 0.8847621083259583 -0.42567217350006104 0.1896420121192932 0.24808496236801147 -0.670094907283783 0.6995757818222046 0.42564165592193604 -0.8847621083259583 0.1896420121192932 0.6371043920516968 -0.0048829615116119385 0.7707144618034363 0.6395763754844666 -0.0029602954164147377 0.7687002420425415 0.634205162525177 -0.006591998040676117 0.773094892501831 0.6312143206596375 -0.0076601458713412285 0.7755363583564758 0.6283761262893677 -0.007782219909131527 0.7778557538986206 0.6258430480957031 -0.0070192571729421616 0.7799004912376404 0.6238593459129333 -0.005188146606087685 0.7814874649047852 0.6224860548973083 -0.0025940733030438423 0.7826166749000549 0.6220282316207886 0.00015259254723787308 0.7829828858375549 0.6225776076316833 0.0028992583975195885 0.7825251221656799 0.6240425109863281 0.0054322946816682816 0.7813348770141602 0.6260872483253479 0.007171849720180035 0.7796868681907654 0.6286507844924927 0.007843256928026676 0.7776116132736206 0.6315500140190125 0.007599108852446079 0.7752922177314758 0.634571373462677 0.006439405493438244 0.772820234298706 0.6374095678329468 0.0046388134360313416 0.7705007791519165 0.6396679878234863 0.002685628831386566 0.7686392068862915 -3.0518509447574615e-05 0.6428723931312561 0.765953540802002 -0.0002136295661330223 0.6425366997718811 0.766228199005127 0.6413769721984863 -0.0013733329251408577 0.7672048211097717 0.0 0.6429639458656311 0.765861988067627 0.6424451470375061 -0.00039674062281847 0.766289234161377 0.0 0.6429639458656311 0.765861988067627 0.6428723931312561 -3.0518509447574615e-05 0.765923023223877 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.9515060782432556 0.2377697080373764 0.19507431983947754 0.2377697080373764 0.9515060782432556 0.19507431983947754 -0.0005493331700563431 0.6418653130531311 0.7667775750160217 -0.0010071108117699623 0.6408886909484863 0.7676015496253967 -0.0014038514345884323 0.6396985054016113 0.7685781717300415 -0.00158696249127388 0.6384472250938416 0.7696157693862915 -0.001434369944036007 0.6373485326766968 0.7705618739128113 -0.0010071108117699623 0.6364940404891968 0.7712332606315613 -0.00033570360392332077 0.6360362768173218 0.7716299891471863 0.0003662221133708954 0.6360667943954468 0.7715994715690613 0.0010071108117699623 0.6365245580673218 0.7712332606315613 0.0014648884534835815 0.6373790502548218 0.7705312967300415 0.00158696249127388 0.6385082602500916 0.7695852518081665 0.0014038514345884323 0.6397290229797363 0.7685781717300415 0.0010071108117699623 0.6409192085266113 0.7675710320472717 0.0005493331700563431 0.6418958306312561 0.7667470574378967 0.0001831110566854477 0.6425672173500061 0.766197681427002 3.0518509447574615e-05 0.6428723931312561 0.765953540802002 -0.6429639458656311 0.0 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 -0.6429334282875061 0.0 0.765892505645752 -0.6427503228187561 -6.103701889514923e-05 0.766045093536377 -0.6423535943031311 -0.0001831110566854477 0.766380786895752 -0.6417737603187561 -0.0003662221133708954 0.7668386101722717 -0.6410412788391113 -0.0005188146606087685 0.7674794793128967 -0.6401562690734863 -0.0006408886983990669 0.7682119011878967 -0.6391796469688416 -0.0007019257172942162 0.7690359354019165 -0.6382946372032166 -0.0006408886983990669 0.7697683572769165 -0.6375926733016968 -0.0004272591322660446 0.7703481912612915 -0.6371654272079468 -0.00015259254723787308 0.7707144618034363 -0.6370738744735718 0.00015259254723787308 0.7707754969596863 -0.6373485326766968 0.0004272591322660446 0.7705618739128113 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429334282875061 0.765892505645752 0.0 0.6429334282875061 0.765892505645752 0.0 0.6429029107093811 0.765923023223877 0.0 0.6429334282875061 0.765892505645752 0.0 0.6429334282875061 0.765892505645752 0.0 0.6429639458656311 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 0.6429639458656311 0.765861988067627 -0.2377697080373764 0.9515060782432556 0.19507431983947754 -0.9515060782432556 0.2377697080373764 0.19507431983947754 0.0 -0.6429639458656311 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6428418755531311 0.0 0.765953540802002 -0.6427808403968811 0.0 0.766014575958252 0.0 -0.6429639458656311 0.765861988067627 -0.6429029107093811 0.0 0.765923023223877 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 -0.6429639458656311 0.0 0.765861988067627 -0.9515060782432556 -0.2377697080373764 0.19507431983947754 -0.2377697080373764 -0.9515060782432556 0.19507431983947754 0.0 -0.6429639458656311 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.0 -0.6429334282875061 0.765892505645752 9.155552834272385e-05 -0.6427503228187561 0.766045093536377 0.0005188146606087685 -0.6421094536781311 0.766563892364502 0.0016174810007214546 -0.6406750679016113 0.7677846550941467 0.0032959990203380585 -0.6383251547813416 0.7697378396987915 0.00515762809664011 -0.635242760181427 0.7722708582878113 0.006653035059571266 -0.6317941546440125 0.7750785946846008 0.007324442267417908 -0.6283761262893677 0.7778557538986206 0.006897183135151863 -0.6254158020019531 0.7802361845970154 0.005493331700563431 -0.6231574416160583 0.7820367813110352 0.0032959990203380585 -0.6216925382614136 0.7832270264625549 0.0007324442267417908 -0.6210516691207886 0.7837458252906799 -0.0016479995101690292 -0.6211432218551636 0.7836542725563049 -0.00357066560536623 -0.6219061613082886 0.7830744385719299 -0.6427503228187561 0.0 0.766045093536377 -0.6427503228187561 0.0 0.766045093536377 -0.6428113579750061 0.0 0.766014575958252 -0.6428723931312561 0.0 0.765953540802002 -0.6429334282875061 0.0 0.765892505645752 -0.6429639458656311 0.0 0.765861988067627 -0.6429334282875061 0.0 0.765892505645752 -0.6428418755531311 3.0518509447574615e-05 0.765984058380127 -0.6425672173500061 9.155552834272385e-05 0.766197681427002 -0.6420789361000061 0.0002136295661330223 0.766594409942627 -0.6414074897766113 0.0003662221133708954 0.7671743035316467 -0.6405835151672363 0.0005188146606087685 0.7678456902503967 -0.6396679878234863 0.0006103701889514923 0.7686086893081665 -0.6387524008750916 0.0006408886983990669 0.7694021463394165 -0.6379284262657166 0.0006103701889514923 0.7700735330581665 -9.155552834272385e-05 -0.6422925591468811 0.766441822052002 -9.155552834272385e-05 -0.6425366997718811 0.766228199005127 -0.00012207403779029846 -0.6420179009437561 0.7666555047035217 -0.00015259254723787308 -0.6416516900062561 0.7669606804847717 -0.00033570360392332077 -0.6411328315734863 0.7673879265785217 -0.0006408886983990669 -0.6404614448547363 0.7679677605628967 -0.0009765923023223877 -0.6396374106407166 0.7686697244644165 -0.0012207403779029846 -0.6386608481407166 0.7694631814956665 -0.0015564439818263054 -0.6374400854110718 0.7704702615737915 -0.0021668141707777977 -0.6357616186141968 0.7718741297721863 -0.0031128879636526108 -0.6336557865142822 0.773583173751831 -0.004181035794317722 -0.6313058733940125 0.7755058407783508 -0.005066072568297386 -0.6289254426956177 0.7773979902267456 -0.00555436871945858 -0.6267281174659729 0.7791680693626404 -0.005493331700563431 -0.6248054504394531 0.7807245254516602 -0.0048829615116119385 -0.6231574416160583 0.7820672988891602 0.6429639458656311 0.0 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 -6.103701889514923e-05 -0.6427503228187561 0.766045093536377 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429029107093811 0.765923023223877 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.0 -0.6429639458656311 0.765861988067627 0.2377697080373764 -0.9515060782432556 0.19507431983947754 0.9515060782432556 -0.2377697080373764 0.19507431983947754 0.6429639458656311 0.0 0.765861988067627 0.6429639458656311 0.0 0.765861988067627 0.6429334282875061 0.0 0.765892505645752 0.6427808403968811 9.155552834272385e-05 0.766045093536377 0.6422620415687561 0.0002136295661330223 0.766441822052002 0.6414074897766113 0.00039674062281847 0.7671743035316467 0.6403698921203613 0.0005493331700563431 0.7680287957191467 0.6394237875938416 0.0005188146606087685 0.7688223123550415 0.6388134360313416 0.00027466658502817154 0.7693105936050415 0.6386913657188416 -3.0518509447574615e-05 0.7694326639175415 0.6390575766563416 -0.00033570360392332077 0.7691274881362915 0.6398510932922363 -0.0005188146606087685 0.7684865593910217 0.6407361030578613 -0.0004882961511611938 0.7677236199378967 0.6412854194641113 -3.0518509447574615e-05 0.7672658562660217 0.6409802436828613 0.0010071108117699623 0.7675405144691467 + + + + + + + + + + + + + + +

0 1 2 3

+

3 2 4 5

+

5 4 6 7

+

7 6 8 9

+

9 8 10 11

+

11 10 12 13

+

13 12 14 15

+

15 14 16 17

+

17 16 18 19

+

19 18 20 21

+

21 20 22 23

+

23 22 24 25

+

25 24 26 27

+

27 26 28 29

+

29 28 30 31

+

31 30 32 33

+

1 34 35 2

+

2 35 36 4

+

4 36 37 6

+

6 37 38 8

+

8 38 39 10

+

10 39 40 12

+

12 40 41 14

+

14 41 42 16

+

16 42 43 18

+

18 43 44 20

+

20 44 45 22

+

22 45 46 24

+

24 46 47 26

+

26 47 48 28

+

28 48 49 30

+

30 49 50 32

+

34 51 52 35

+

35 52 53 36

+

36 53 54 37

+

37 54 55 38

+

38 55 56 39

+

39 56 57 40

+

40 57 58 41

+

41 58 59 42

+

42 59 60 43

+

43 60 61 44

+

44 61 62 45

+

45 62 63 46

+

46 63 64 47

+

47 64 65 48

+

48 65 66 49

+

49 66 67 50

+

51 68 69 52

+

52 69 70 53

+

53 70 71 54

+

54 71 72 55

+

55 72 73 56

+

56 73 74 57

+

57 74 75 58

+

58 75 76 59

+

59 76 77 60

+

60 77 78 61

+

61 78 79 62

+

62 79 80 63

+

63 80 81 64

+

64 81 82 65

+

65 82 83 66

+

66 83 84 67

+

68 85 86 69

+

69 86 87 70

+

70 87 88 71

+

71 88 89 72

+

72 89 90 73

+

73 90 91 74

+

74 91 92 75

+

75 92 93 76

+

76 93 94 77

+

77 94 95 78

+

78 95 96 79

+

79 96 97 80

+

80 97 98 81

+

81 98 99 82

+

82 99 100 83

+

83 100 101 84

+

85 102 103 86

+

86 103 104 87

+

87 104 105 88

+

88 105 106 89

+

89 106 107 90

+

90 107 108 91

+

91 108 109 92

+

92 109 110 93

+

93 110 111 94

+

94 111 112 95

+

95 112 113 96

+

96 113 114 97

+

97 114 115 98

+

98 115 116 99

+

99 116 117 100

+

100 117 118 101

+

102 119 120 103

+

103 120 121 104

+

104 121 122 105

+

105 122 123 106

+

106 123 124 107

+

107 124 125 108

+

108 125 126 109

+

109 126 127 110

+

110 127 128 111

+

111 128 129 112

+

112 129 130 113

+

113 130 131 114

+

114 131 132 115

+

115 132 133 116

+

116 133 134 117

+

117 134 135 118

+

119 136 137 120

+

120 137 138 121

+

121 138 139 122

+

122 139 140 123

+

123 140 141 124

+

124 141 142 125

+

125 142 143 126

+

126 143 144 127

+

127 144 145 128

+

128 145 146 129

+

129 146 147 130

+

130 147 148 131

+

131 148 149 132

+

132 149 150 133

+

133 150 151 134

+

134 151 152 135

+

136 153 154 137

+

137 154 155 138

+

138 155 156 139

+

139 156 157 140

+

140 157 158 141

+

141 158 159 142

+

142 159 160 143

+

143 160 161 144

+

144 161 162 145

+

145 162 163 146

+

146 163 164 147

+

147 164 165 148

+

148 165 166 149

+

149 166 167 150

+

150 167 168 151

+

151 168 169 152

+

153 170 171 154

+

154 171 172 155

+

155 172 173 156

+

156 173 174 157

+

157 174 175 158

+

158 175 176 159

+

159 176 177 160

+

160 177 178 161

+

161 178 179 162

+

162 179 180 163

+

163 180 181 164

+

164 181 182 165

+

165 182 183 166

+

166 183 184 167

+

167 184 185 168

+

168 185 186 169

+

170 187 188 171

+

171 188 189 172

+

172 189 190 173

+

173 190 191 174

+

174 191 192 175

+

175 192 193 176

+

176 193 194 177

+

177 194 195 178

+

178 195 196 179

+

179 196 197 180

+

180 197 198 181

+

181 198 199 182

+

182 199 200 183

+

183 200 201 184

+

184 201 202 185

+

185 202 203 186

+

187 204 205 188

+

188 205 206 189

+

189 206 207 190

+

190 207 208 191

+

191 208 209 192

+

192 209 210 193

+

193 210 211 194

+

194 211 212 195

+

195 212 213 196

+

196 213 214 197

+

197 214 215 198

+

198 215 216 199

+

199 216 217 200

+

200 217 218 201

+

201 218 219 202

+

202 219 220 203

+

204 221 222 205

+

205 222 223 206

+

206 223 224 207

+

207 224 225 208

+

208 225 226 209

+

209 226 227 210

+

210 227 228 211

+

211 228 229 212

+

212 229 230 213

+

213 230 231 214

+

214 231 232 215

+

215 232 233 216

+

216 233 234 217

+

217 234 235 218

+

218 235 236 219

+

219 236 237 220

+

221 238 239 222

+

222 239 240 223

+

223 240 241 224

+

224 241 242 225

+

225 242 243 226

+

226 243 244 227

+

227 244 245 228

+

228 245 246 229

+

229 246 247 230

+

230 247 248 231

+

231 248 249 232

+

232 249 250 233

+

233 250 251 234

+

234 251 252 235

+

235 252 253 236

+

236 253 254 237

+

238 255 256 239

+

239 256 257 240

+

240 257 258 241

+

241 258 259 242

+

242 259 260 243

+

243 260 261 244

+

244 261 262 245

+

245 262 263 246

+

246 263 264 247

+

247 264 265 248

+

248 265 266 249

+

249 266 267 250

+

250 267 268 251

+

251 268 269 252

+

252 269 270 253

+

253 270 271 254

+

255 272 273 256

+

256 273 274 257

+

257 274 275 258

+

258 275 276 259

+

259 276 277 260

+

260 277 278 261

+

261 278 279 262

+

262 279 280 263

+

263 280 281 264

+

264 281 282 265

+

265 282 283 266

+

266 283 284 267

+

267 284 285 268

+

268 285 286 269

+

269 286 287 270

+

270 287 288 271

+

0 3 289 290

+

290 289 291 292

+

292 291 293 294

+

294 293 295 296

+

296 295 297 298

+

298 297 299 300

+

300 299 301 302

+

302 301 303 304

+

304 303 305 306

+

306 305 307 308

+

308 307 309 310

+

310 309 311 312

+

312 311 313 314

+

314 313 315 316

+

317 318 319 320

+

321 322 323 324

+

3 5 325 289

+

289 325 326 291

+

291 326 327 293

+

293 327 328 295

+

295 328 329 297

+

297 329 330 299

+

299 330 331 301

+

301 331 332 303

+

303 332 333 305

+

305 333 334 307

+

307 334 335 309

+

309 335 336 311

+

311 336 337 313

+

313 337 338 315

+

339 340 341 342

+

338 343 344 345

+

5 7 346 325

+

325 346 347 326

+

326 347 348 327

+

327 348 349 328

+

328 349 350 329

+

329 350 351 330

+

330 351 352 331

+

331 352 353 332

+

332 353 354 333

+

333 354 355 334

+

334 355 356 335

+

335 356 357 336

+

336 357 358 337

+

337 358 343 338

+

340 359 360 341

+

343 361 362 344

+

7 9 363 346

+

346 363 364 347

+

347 364 365 348

+

348 365 366 349

+

349 366 367 350

+

350 367 368 351

+

351 368 369 352

+

352 369 370 353

+

353 370 371 354

+

354 371 372 355

+

355 372 373 356

+

356 373 374 357

+

357 374 375 358

+

358 375 361 343

+

359 376 377 360

+

361 378 379 362

+

9 11 380 363

+

363 380 381 364

+

364 381 382 365

+

365 382 383 366

+

366 383 384 367

+

367 384 385 368

+

368 385 386 369

+

369 386 387 370

+

370 387 388 371

+

371 388 389 372

+

372 389 390 373

+

373 390 391 374

+

374 391 392 375

+

375 392 378 361

+

376 393 394 377

+

378 395 396 379

+

11 13 397 380

+

380 397 398 381

+

381 398 399 382

+

382 399 400 383

+

383 400 401 384

+

384 401 402 385

+

385 402 403 386

+

386 403 404 387

+

387 404 405 388

+

388 405 406 389

+

389 406 407 390

+

390 407 408 391

+

391 408 409 392

+

392 409 395 378

+

393 410 411 394

+

395 412 413 396

+

13 15 414 397

+

397 414 415 398

+

398 415 416 399

+

399 416 417 400

+

400 417 418 401

+

401 418 419 402

+

402 419 420 403

+

403 420 421 404

+

404 421 422 405

+

405 422 423 406

+

406 423 424 407

+

407 424 425 408

+

408 425 426 409

+

409 426 412 395

+

410 427 428 411

+

412 429 430 413

+

15 17 431 414

+

414 431 432 415

+

415 432 433 416

+

416 433 434 417

+

417 434 435 418

+

418 435 436 419

+

419 436 437 420

+

420 437 438 421

+

421 438 439 422

+

422 439 440 423

+

423 440 441 424

+

424 441 442 425

+

425 442 443 426

+

426 443 429 412

+

427 444 445 428

+

429 446 447 430

+

17 19 448 431

+

431 448 449 432

+

432 449 450 433

+

433 450 451 434

+

434 451 452 435

+

435 452 453 436

+

436 453 454 437

+

437 454 455 438

+

438 455 456 439

+

439 456 457 440

+

440 457 458 441

+

441 458 459 442

+

442 459 460 443

+

443 460 446 429

+

444 461 462 445

+

446 463 464 447

+

19 21 465 448

+

448 465 466 449

+

449 466 467 450

+

450 467 468 451

+

451 468 469 452

+

452 469 470 453

+

453 470 471 454

+

454 471 472 455

+

455 472 473 456

+

456 473 474 457

+

457 474 475 458

+

458 475 476 459

+

459 476 477 460

+

460 477 463 446

+

461 478 479 462

+

463 480 481 464

+

21 23 482 465

+

465 482 483 466

+

466 483 484 467

+

467 484 485 468

+

468 485 486 469

+

469 486 487 470

+

470 487 488 471

+

471 488 489 472

+

472 489 490 473

+

473 490 491 474

+

474 491 492 475

+

475 492 493 476

+

476 493 494 477

+

477 494 480 463

+

478 495 496 479

+

480 497 498 481

+

23 25 499 482

+

482 499 500 483

+

483 500 501 484

+

484 501 502 485

+

485 502 503 486

+

486 503 504 487

+

487 504 505 488

+

488 505 506 489

+

489 506 507 490

+

490 507 508 491

+

491 508 509 492

+

492 509 510 493

+

493 510 511 494

+

494 511 497 480

+

495 512 513 496

+

497 514 515 498

+

25 27 516 499

+

499 516 517 500

+

500 517 518 501

+

501 518 519 502

+

502 519 520 503

+

503 520 521 504

+

504 521 522 505

+

505 522 523 506

+

506 523 524 507

+

507 524 525 508

+

508 525 526 509

+

509 526 527 510

+

510 527 528 511

+

511 528 514 497

+

512 529 530 513

+

514 531 532 515

+

27 29 533 516

+

516 533 534 517

+

517 534 535 518

+

518 535 536 519

+

519 536 537 520

+

520 537 538 521

+

521 538 539 522

+

522 539 540 523

+

523 540 541 524

+

524 541 542 525

+

525 542 543 526

+

526 543 544 527

+

527 544 545 528

+

528 545 531 514

+

529 546 547 530

+

531 548 549 532

+

29 31 550 533

+

533 550 551 534

+

534 551 552 535

+

535 552 553 536

+

536 553 554 537

+

537 554 555 538

+

538 555 556 539

+

539 556 557 540

+

540 557 558 541

+

541 558 559 542

+

542 559 560 543

+

543 560 561 544

+

544 561 562 545

+

545 562 548 531

+

546 563 564 547

+

548 565 566 549

+

31 33 567 550

+

550 567 568 551

+

551 568 569 552

+

552 569 570 553

+

553 570 571 554

+

554 571 572 555

+

555 572 573 556

+

556 573 574 557

+

557 574 575 558

+

558 575 576 559

+

559 576 577 560

+

560 577 578 561

+

561 578 579 562

+

562 579 565 548

+

563 580 581 564

+

582 583 584 585

+

0 290 586 587

+

587 586 588 589

+

589 588 590 591

+

591 590 592 593

+

593 592 594 595

+

595 594 596 597

+

597 596 598 599

+

599 598 600 601

+

601 600 602 603

+

603 602 604 605

+

605 604 606 607

+

607 606 608 609

+

609 608 610 611

+

611 610 582 321

+

612 613 614 615

+

315 338 345 616

+

290 292 617 586

+

586 617 618 588

+

588 618 619 590

+

590 619 620 592

+

592 620 621 594

+

594 621 622 596

+

596 622 623 598

+

598 623 624 600

+

600 624 625 602

+

602 625 626 604

+

604 626 627 606

+

606 627 628 608

+

608 628 629 610

+

610 629 583 582

+

630 631 632 633

+

583 634 635 584

+

292 294 636 617

+

617 636 637 618

+

618 637 638 619

+

619 638 639 620

+

620 639 640 621

+

621 640 641 622

+

622 641 642 623

+

623 642 643 624

+

624 643 644 625

+

625 644 645 626

+

626 645 646 627

+

627 646 647 628

+

628 647 648 629

+

629 648 634 583

+

631 649 650 632

+

634 651 652 635

+

294 296 653 636

+

636 653 654 637

+

637 654 655 638

+

638 655 656 639

+

639 656 657 640

+

640 657 658 641

+

641 658 659 642

+

642 659 660 643

+

643 660 661 644

+

644 661 662 645

+

645 662 663 646

+

646 663 664 647

+

647 664 665 648

+

648 665 651 634

+

649 666 667 650

+

651 668 669 652

+

296 298 670 653

+

653 670 671 654

+

654 671 672 655

+

655 672 673 656

+

656 673 674 657

+

657 674 675 658

+

658 675 676 659

+

659 676 677 660

+

660 677 678 661

+

661 678 679 662

+

662 679 680 663

+

663 680 681 664

+

664 681 682 665

+

665 682 668 651

+

666 683 684 667

+

668 685 686 669

+

298 300 687 670

+

670 687 688 671

+

671 688 689 672

+

672 689 690 673

+

673 690 691 674

+

674 691 692 675

+

675 692 693 676

+

676 693 694 677

+

677 694 695 678

+

678 695 696 679

+

679 696 697 680

+

680 697 698 681

+

681 698 699 682

+

682 699 685 668

+

683 700 701 684

+

685 702 703 686

+

300 302 704 687

+

687 704 705 688

+

688 705 706 689

+

689 706 707 690

+

690 707 708 691

+

691 708 709 692

+

692 709 710 693

+

693 710 711 694

+

694 711 712 695

+

695 712 713 696

+

696 713 714 697

+

697 714 715 698

+

698 715 716 699

+

699 716 702 685

+

700 717 718 701

+

702 719 720 703

+

302 304 721 704

+

704 721 722 705

+

705 722 723 706

+

706 723 724 707

+

707 724 725 708

+

708 725 726 709

+

709 726 727 710

+

710 727 728 711

+

711 728 729 712

+

712 729 730 713

+

713 730 731 714

+

714 731 732 715

+

715 732 733 716

+

716 733 719 702

+

717 734 735 718

+

719 736 737 720

+

304 306 738 721

+

721 738 739 722

+

722 739 740 723

+

723 740 741 724

+

724 741 742 725

+

725 742 743 726

+

726 743 744 727

+

727 744 745 728

+

728 745 746 729

+

729 746 747 730

+

730 747 748 731

+

731 748 749 732

+

732 749 750 733

+

733 750 736 719

+

734 751 752 735

+

736 753 754 737

+

306 308 755 738

+

738 755 756 739

+

739 756 757 740

+

740 757 758 741

+

741 758 759 742

+

742 759 760 743

+

743 760 761 744

+

744 761 762 745

+

745 762 763 746

+

746 763 764 747

+

747 764 765 748

+

748 765 766 749

+

749 766 767 750

+

750 767 753 736

+

751 768 769 752

+

753 770 771 754

+

308 310 772 755

+

755 772 773 756

+

756 773 774 757

+

757 774 775 758

+

758 775 776 759

+

759 776 777 760

+

760 777 778 761

+

761 778 779 762

+

762 779 780 763

+

763 780 781 764

+

764 781 782 765

+

765 782 783 766

+

766 783 784 767

+

767 784 770 753

+

768 785 786 769

+

770 787 788 771

+

310 312 789 772

+

772 789 790 773

+

773 790 791 774

+

774 791 792 775

+

775 792 793 776

+

776 793 794 777

+

777 794 795 778

+

778 795 796 779

+

779 796 797 780

+

780 797 798 781

+

781 798 799 782

+

782 799 800 783

+

783 800 801 784

+

784 801 787 770

+

785 802 803 786

+

787 804 805 788

+

312 314 806 789

+

789 806 807 790

+

790 807 808 791

+

791 808 809 792

+

792 809 810 793

+

793 810 811 794

+

794 811 812 795

+

795 812 813 796

+

796 813 814 797

+

797 814 815 798

+

798 815 816 799

+

799 816 817 800

+

800 817 818 801

+

801 818 804 787

+

802 819 820 803

+

804 821 822 805

+

314 316 823 806

+

806 823 824 807

+

807 824 825 808

+

808 825 826 809

+

809 826 827 810

+

810 827 828 811

+

811 828 829 812

+

812 829 830 813

+

813 830 831 814

+

814 831 832 815

+

815 832 833 816

+

816 833 834 817

+

817 834 835 818

+

818 835 821 804

+

819 836 837 820

+

821 838 839 822

+

316 315 616 840

+

320 319 841 842

+

842 841 843 844

+

844 843 845 846

+

846 845 847 848

+

848 847 849 850

+

850 849 851 852

+

852 851 853 854

+

854 853 855 856

+

856 855 857 858

+

858 857 859 860

+

860 859 861 862

+

862 861 863 864

+

864 863 865 866

+

836 867 868 837

+

823 869 870 824

+

317 339 342 318

+

824 870 871 825

+

825 871 872 826

+

826 872 873 827

+

827 873 874 828

+

828 874 875 829

+

829 875 876 830

+

830 876 877 831

+

831 877 878 832

+

832 878 879 833

+

833 879 880 834

+

834 880 881 835

+

835 881 838 821

+

866 865 882 883

+

884 885 886 887

+

324 323 888 889

+

0 587 890 1

+

1 890 891 34

+

34 891 892 51

+

51 892 893 68

+

68 893 894 85

+

85 894 895 102

+

102 895 896 119

+

119 896 897 136

+

136 897 898 153

+

153 898 899 170

+

170 899 900 187

+

187 900 901 204

+

204 901 902 221

+

221 902 903 238

+

238 903 904 255

+

255 904 905 272

+

587 589 906 890

+

890 906 907 891

+

891 907 908 892

+

892 908 909 893

+

893 909 910 894

+

894 910 911 895

+

895 911 912 896

+

896 912 913 897

+

897 913 914 898

+

898 914 915 899

+

899 915 916 900

+

900 916 917 901

+

901 917 918 902

+

902 918 919 903

+

903 919 920 904

+

904 920 921 905

+

589 591 922 906

+

906 922 923 907

+

907 923 924 908

+

908 924 925 909

+

909 925 926 910

+

910 926 927 911

+

911 927 928 912

+

912 928 929 913

+

913 929 930 914

+

914 930 931 915

+

915 931 932 916

+

916 932 933 917

+

917 933 934 918

+

918 934 935 919

+

919 935 936 920

+

920 936 937 921

+

591 593 938 922

+

922 938 939 923

+

923 939 940 924

+

924 940 941 925

+

925 941 942 926

+

926 942 943 927

+

927 943 944 928

+

928 944 945 929

+

929 945 946 930

+

930 946 947 931

+

931 947 948 932

+

932 948 949 933

+

933 949 950 934

+

934 950 951 935

+

935 951 952 936

+

936 952 953 937

+

593 595 954 938

+

938 954 955 939

+

939 955 956 940

+

940 956 957 941

+

941 957 958 942

+

942 958 959 943

+

943 959 960 944

+

944 960 961 945

+

945 961 962 946

+

946 962 963 947

+

947 963 964 948

+

948 964 965 949

+

949 965 966 950

+

950 966 967 951

+

951 967 968 952

+

952 968 969 953

+

595 597 970 954

+

954 970 971 955

+

955 971 972 956

+

956 972 973 957

+

957 973 974 958

+

958 974 975 959

+

959 975 976 960

+

960 976 977 961

+

961 977 978 962

+

962 978 979 963

+

963 979 980 964

+

964 980 981 965

+

965 981 982 966

+

966 982 983 967

+

967 983 984 968

+

968 984 985 969

+

597 599 986 970

+

970 986 987 971

+

971 987 988 972

+

972 988 989 973

+

973 989 990 974

+

974 990 991 975

+

975 991 992 976

+

976 992 993 977

+

977 993 994 978

+

978 994 995 979

+

979 995 996 980

+

980 996 997 981

+

981 997 998 982

+

982 998 999 983

+

983 999 1000 984

+

984 1000 1001 985

+

599 601 1002 986

+

986 1002 1003 987

+

987 1003 1004 988

+

988 1004 1005 989

+

989 1005 1006 990

+

990 1006 1007 991

+

991 1007 1008 992

+

992 1008 1009 993

+

993 1009 1010 994

+

994 1010 1011 995

+

995 1011 1012 996

+

996 1012 1013 997

+

997 1013 1014 998

+

998 1014 1015 999

+

999 1015 1016 1000

+

1000 1016 1017 1001

+

601 603 1018 1002

+

1002 1018 1019 1003

+

1003 1019 1020 1004

+

1004 1020 1021 1005

+

1005 1021 1022 1006

+

1006 1022 1023 1007

+

1007 1023 1024 1008

+

1008 1024 1025 1009

+

1009 1025 1026 1010

+

1010 1026 1027 1011

+

1011 1027 1028 1012

+

1012 1028 1029 1013

+

1013 1029 1030 1014

+

1014 1030 1031 1015

+

1015 1031 1032 1016

+

1016 1032 1033 1017

+

603 605 1034 1018

+

1018 1034 1035 1019

+

1019 1035 1036 1020

+

1020 1036 1037 1021

+

1021 1037 1038 1022

+

1022 1038 1039 1023

+

1023 1039 1040 1024

+

1024 1040 1041 1025

+

1025 1041 1042 1026

+

1026 1042 1043 1027

+

1027 1043 1044 1028

+

1028 1044 1045 1029

+

1029 1045 1046 1030

+

1030 1046 1047 1031

+

1031 1047 1048 1032

+

1032 1048 1049 1033

+

605 607 1050 1034

+

1034 1050 1051 1035

+

1035 1051 1052 1036

+

1036 1052 1053 1037

+

1037 1053 1054 1038

+

1038 1054 1055 1039

+

1039 1055 1056 1040

+

1040 1056 1057 1041

+

1041 1057 1058 1042

+

1042 1058 1059 1043

+

1043 1059 1060 1044

+

1044 1060 1061 1045

+

1045 1061 1062 1046

+

1046 1062 1063 1047

+

1047 1063 1064 1048

+

1048 1064 1065 1049

+

607 609 1066 1050

+

1050 1066 1067 1051

+

1051 1067 1068 1052

+

1052 1068 1069 1053

+

1053 1069 1070 1054

+

1054 1070 1071 1055

+

1055 1071 1072 1056

+

1056 1072 1073 1057

+

1057 1073 1074 1058

+

1058 1074 1075 1059

+

1059 1075 1076 1060

+

1060 1076 1077 1061

+

1061 1077 1078 1062

+

1062 1078 1079 1063

+

1063 1079 1080 1064

+

1064 1080 1081 1065

+

609 611 1082 1066

+

1066 1082 1083 1067

+

1067 1083 1084 1068

+

1068 1084 1085 1069

+

1069 1085 1086 1070

+

1070 1086 1087 1071

+

1071 1087 1088 1072

+

1072 1088 1089 1073

+

1073 1089 1090 1074

+

1074 1090 1091 1075

+

1075 1091 1092 1076

+

1076 1092 1093 1077

+

1077 1093 1094 1078

+

1078 1094 1095 1079

+

1079 1095 1096 1080

+

1080 1096 1097 1081

+

611 321 324 1082

+

1082 324 889 1083

+

1083 889 1098 1084

+

1084 1098 1099 1085

+

1085 1099 1100 1086

+

1086 1100 1101 1087

+

1087 1101 1102 1088

+

1088 1102 1103 1089

+

1089 1103 1104 1090

+

1090 1104 1105 1091

+

1091 1105 1106 1092

+

1092 1106 1107 1093

+

1093 1107 1108 1094

+

1094 1108 1109 1095

+

1095 1109 1110 1096

+

1096 1110 1111 1097

+

321 582 585 322

+

615 614 1112 1113

+

1113 1112 1114 1115

+

1115 1114 1116 1117

+

1117 1116 1118 1119

+

1119 1118 1120 1121

+

1121 1120 1122 1123

+

1123 1122 1124 1125

+

1125 1124 1126 1127

+

1127 1126 1128 1129

+

1129 1128 1130 1131

+

1131 1130 1132 1133

+

1133 1132 1134 1135

+

1135 1134 1136 1137

+

1137 1136 1138 1139

+

1139 1138 1140 1141

+

612 630 633 613

+

889 888 1142 1098

+

1098 1142 1143 1099

+

1099 1143 1144 1100

+

1100 1144 1145 1101

+

1101 1145 1146 1102

+

1102 1146 1147 1103

+

1103 1147 1148 1104

+

1104 1148 1149 1105

+

1105 1149 1150 1106

+

1106 1150 1151 1107

+

1107 1151 1152 1108

+

1108 1152 1153 1109

+

1109 1153 1154 1110

+

1110 1154 1155 1111

+

1156 1157 1158 1159

+

1160 1161 1162 1163

+

1163 1162 1164 1165

+

1165 1164 1166 1167

+

1167 1166 1168 1169

+

1169 1168 1170 1171

+

1171 1170 1172 1173

+

1173 1172 1174 1175

+

1175 1174 1176 1177

+

1177 1176 1178 1179

+

1179 1178 1180 1181

+

1181 1180 1182 1183

+

1183 1182 1184 1185

+

1185 1184 1186 1187

+

1187 1186 1188 1189

+

1189 1188 1190 1191

+

1191 1190 1192 1193

+

1161 1194 1195 1162

+

1162 1195 1196 1164

+

1164 1196 1197 1166

+

1166 1197 1198 1168

+

1168 1198 1199 1170

+

1170 1199 1200 1172

+

1172 1200 1201 1174

+

1174 1201 1202 1176

+

1176 1202 1203 1178

+

1178 1203 1204 1180

+

1180 1204 1205 1182

+

1182 1205 1206 1184

+

1184 1206 1207 1186

+

1186 1207 1208 1188

+

1188 1208 1209 1190

+

1190 1209 1210 1192

+

1194 1211 1212 1195

+

1195 1212 1213 1196

+

1196 1213 1214 1197

+

1197 1214 1215 1198

+

1198 1215 1216 1199

+

1199 1216 1217 1200

+

1200 1217 1218 1201

+

1201 1218 1219 1202

+

1202 1219 1220 1203

+

1203 1220 1221 1204

+

1204 1221 1222 1205

+

1205 1222 1223 1206

+

1206 1223 1224 1207

+

1207 1224 1225 1208

+

1208 1225 1226 1209

+

1209 1226 1227 1210

+

1211 1228 1229 1212

+

1212 1229 1230 1213

+

1213 1230 1231 1214

+

1214 1231 1232 1215

+

1215 1232 1233 1216

+

1216 1233 1234 1217

+

1217 1234 1235 1218

+

1218 1235 1236 1219

+

1219 1236 1237 1220

+

1220 1237 1238 1221

+

1221 1238 1239 1222

+

1222 1239 1240 1223

+

1223 1240 1241 1224

+

1224 1241 1242 1225

+

1225 1242 1243 1226

+

1226 1243 1244 1227

+

1228 1245 1246 1229

+

1229 1246 1247 1230

+

1230 1247 1248 1231

+

1231 1248 1249 1232

+

1232 1249 1250 1233

+

1233 1250 1251 1234

+

1234 1251 1252 1235

+

1235 1252 1253 1236

+

1236 1253 1254 1237

+

1237 1254 1255 1238

+

1238 1255 1256 1239

+

1239 1256 1257 1240

+

1240 1257 1258 1241

+

1241 1258 1259 1242

+

1242 1259 1260 1243

+

1243 1260 1261 1244

+

1245 1262 1263 1246

+

1246 1263 1264 1247

+

1247 1264 1265 1248

+

1248 1265 1266 1249

+

1249 1266 1267 1250

+

1250 1267 1268 1251

+

1251 1268 1269 1252

+

1252 1269 1270 1253

+

1253 1270 1271 1254

+

1254 1271 1272 1255

+

1255 1272 1273 1256

+

1256 1273 1274 1257

+

1257 1274 1275 1258

+

1258 1275 1276 1259

+

1259 1276 1277 1260

+

1260 1277 1278 1261

+

1262 1279 1280 1263

+

1263 1280 1281 1264

+

1264 1281 1282 1265

+

1265 1282 1283 1266

+

1266 1283 1284 1267

+

1267 1284 1285 1268

+

1268 1285 1286 1269

+

1269 1286 1287 1270

+

1270 1287 1288 1271

+

1271 1288 1289 1272

+

1272 1289 1290 1273

+

1273 1290 1291 1274

+

1274 1291 1292 1275

+

1275 1292 1293 1276

+

1276 1293 1294 1277

+

1277 1294 1295 1278

+

1279 1296 1297 1280

+

1280 1297 1298 1281

+

1281 1298 1299 1282

+

1282 1299 1300 1283

+

1283 1300 1301 1284

+

1284 1301 1302 1285

+

1285 1302 1303 1286

+

1286 1303 1304 1287

+

1287 1304 1305 1288

+

1288 1305 1306 1289

+

1289 1306 1307 1290

+

1290 1307 1308 1291

+

1291 1308 1309 1292

+

1292 1309 1310 1293

+

1293 1310 1311 1294

+

1294 1311 1312 1295

+

1296 1313 1314 1297

+

1297 1314 1315 1298

+

1298 1315 1316 1299

+

1299 1316 1317 1300

+

1300 1317 1318 1301

+

1301 1318 1319 1302

+

1302 1319 1320 1303

+

1303 1320 1321 1304

+

1304 1321 1322 1305

+

1305 1322 1323 1306

+

1306 1323 1324 1307

+

1307 1324 1325 1308

+

1308 1325 1326 1309

+

1309 1326 1327 1310

+

1310 1327 1328 1311

+

1311 1328 1329 1312

+

1313 1330 1331 1314

+

1314 1331 1332 1315

+

1315 1332 1333 1316

+

1316 1333 1334 1317

+

1317 1334 1335 1318

+

1318 1335 1336 1319

+

1319 1336 1337 1320

+

1320 1337 1338 1321

+

1321 1338 1339 1322

+

1322 1339 1340 1323

+

1323 1340 1341 1324

+

1324 1341 1342 1325

+

1325 1342 1343 1326

+

1326 1343 1344 1327

+

1327 1344 1345 1328

+

1328 1345 1346 1329

+

1330 1347 1348 1331

+

1331 1348 1349 1332

+

1332 1349 1350 1333

+

1333 1350 1351 1334

+

1334 1351 1352 1335

+

1335 1352 1353 1336

+

1336 1353 1354 1337

+

1337 1354 1355 1338

+

1338 1355 1356 1339

+

1339 1356 1357 1340

+

1340 1357 1358 1341

+

1341 1358 1359 1342

+

1342 1359 1360 1343

+

1343 1360 1361 1344

+

1344 1361 1362 1345

+

1345 1362 1363 1346

+

1347 1364 1365 1348

+

1348 1365 1366 1349

+

1349 1366 1367 1350

+

1350 1367 1368 1351

+

1351 1368 1369 1352

+

1352 1369 1370 1353

+

1353 1370 1371 1354

+

1354 1371 1372 1355

+

1355 1372 1373 1356

+

1356 1373 1374 1357

+

1357 1374 1375 1358

+

1358 1375 1376 1359

+

1359 1376 1377 1360

+

1360 1377 1378 1361

+

1361 1378 1379 1362

+

1362 1379 1380 1363

+

1364 1381 1382 1365

+

1365 1382 1383 1366

+

1366 1383 1384 1367

+

1367 1384 1385 1368

+

1368 1385 1386 1369

+

1369 1386 1387 1370

+

1370 1387 1388 1371

+

1371 1388 1389 1372

+

1372 1389 1390 1373

+

1373 1390 1391 1374

+

1374 1391 1392 1375

+

1375 1392 1393 1376

+

1376 1393 1394 1377

+

1377 1394 1395 1378

+

1378 1395 1396 1379

+

1379 1396 1397 1380

+

1381 1398 1399 1382

+

1382 1399 1400 1383

+

1383 1400 1401 1384

+

1384 1401 1402 1385

+

1385 1402 1403 1386

+

1386 1403 1404 1387

+

1387 1404 1405 1388

+

1388 1405 1406 1389

+

1389 1406 1407 1390

+

1390 1407 1408 1391

+

1391 1408 1409 1392

+

1392 1409 1410 1393

+

1393 1410 1411 1394

+

1394 1411 1412 1395

+

1395 1412 1413 1396

+

1396 1413 1414 1397

+

1398 1415 1416 1417

+

1418 1419 1420 1421

+

1421 1420 1422 1423

+

1423 1422 1424 1425

+

1425 1424 1426 1427

+

1427 1426 1428 1429

+

1429 1428 1430 1431

+

1431 1430 1432 1433

+

1433 1432 1434 1435

+

1435 1434 1436 1437

+

1437 1436 1438 1439

+

1439 1438 1440 1441

+

1441 1440 1442 1443

+

1443 1442 1444 1445

+

1445 1444 1446 1447

+

1447 1446 1448 1449

+

1450 1451 1452 1453

+

1400 1454 1455 1401

+

1401 1455 1456 1402

+

1402 1456 1457 1403

+

1403 1457 1458 1404

+

1404 1458 1459 1405

+

1405 1459 1460 1406

+

1406 1460 1461 1407

+

1407 1461 1462 1408

+

1408 1462 1463 1409

+

1409 1463 1464 1410

+

1410 1464 1465 1411

+

1411 1465 1466 1412

+

1412 1466 1467 1413

+

1413 1467 1468 1414

+

1469 1470 1471 1472

+

1160 1163 1473 1474

+

1474 1473 1475 1476

+

1476 1475 1477 1478

+

1478 1477 1479 1480

+

1480 1479 1481 1482

+

1482 1481 1483 1484

+

1484 1483 1485 1486

+

1486 1485 1487 1488

+

1488 1487 1489 1490

+

1490 1489 1491 1492

+

1492 1491 1493 1494

+

1494 1493 1495 1496

+

1496 1495 1497 1498

+

1498 1497 1499 1500

+

1500 1499 1501 1502

+

1502 1501 273 272

+

1163 1165 1503 1473

+

1473 1503 1504 1475

+

1475 1504 1505 1477

+

1477 1505 1506 1479

+

1479 1506 1507 1481

+

1481 1507 1508 1483

+

1483 1508 1509 1485

+

1485 1509 1510 1487

+

1487 1510 1511 1489

+

1489 1511 1512 1491

+

1491 1512 1513 1493

+

1493 1513 1514 1495

+

1495 1514 1515 1497

+

1497 1515 1516 1499

+

1499 1516 1517 1501

+

1501 1517 274 273

+

1165 1167 1518 1503

+

1503 1518 1519 1504

+

1504 1519 1520 1505

+

1505 1520 1521 1506

+

1506 1521 1522 1507

+

1507 1522 1523 1508

+

1508 1523 1524 1509

+

1509 1524 1525 1510

+

1510 1525 1526 1511

+

1511 1526 1527 1512

+

1512 1527 1528 1513

+

1513 1528 1529 1514

+

1514 1529 1530 1515

+

1515 1530 1531 1516

+

1516 1531 1532 1517

+

1517 1532 275 274

+

1167 1169 1533 1518

+

1518 1533 1534 1519

+

1519 1534 1535 1520

+

1520 1535 1536 1521

+

1521 1536 1537 1522

+

1522 1537 1538 1523

+

1523 1538 1539 1524

+

1524 1539 1540 1525

+

1525 1540 1541 1526

+

1526 1541 1542 1527

+

1527 1542 1543 1528

+

1528 1543 1544 1529

+

1529 1544 1545 1530

+

1530 1545 1546 1531

+

1531 1546 1547 1532

+

1532 1547 276 275

+

1169 1171 1548 1533

+

1533 1548 1549 1534

+

1534 1549 1550 1535

+

1535 1550 1551 1536

+

1536 1551 1552 1537

+

1537 1552 1553 1538

+

1538 1553 1554 1539

+

1539 1554 1555 1540

+

1540 1555 1556 1541

+

1541 1556 1557 1542

+

1542 1557 1558 1543

+

1543 1558 1559 1544

+

1544 1559 1560 1545

+

1545 1560 1561 1546

+

1546 1561 1562 1547

+

1547 1562 277 276

+

1171 1173 1563 1548

+

1548 1563 1564 1549

+

1549 1564 1565 1550

+

1550 1565 1566 1551

+

1551 1566 1567 1552

+

1552 1567 1568 1553

+

1553 1568 1569 1554

+

1554 1569 1570 1555

+

1555 1570 1571 1556

+

1556 1571 1572 1557

+

1557 1572 1573 1558

+

1558 1573 1574 1559

+

1559 1574 1575 1560

+

1560 1575 1576 1561

+

1561 1576 1577 1562

+

1562 1577 278 277

+

1173 1175 1578 1563

+

1563 1578 1579 1564

+

1564 1579 1580 1565

+

1565 1580 1581 1566

+

1566 1581 1582 1567

+

1567 1582 1583 1568

+

1568 1583 1584 1569

+

1569 1584 1585 1570

+

1570 1585 1586 1571

+

1571 1586 1587 1572

+

1572 1587 1588 1573

+

1573 1588 1589 1574

+

1574 1589 1590 1575

+

1575 1590 1591 1576

+

1576 1591 1592 1577

+

1577 1592 279 278

+

1175 1177 1593 1578

+

1578 1593 1594 1579

+

1579 1594 1595 1580

+

1580 1595 1596 1581

+

1581 1596 1597 1582

+

1582 1597 1598 1583

+

1583 1598 1599 1584

+

1584 1599 1600 1585

+

1585 1600 1601 1586

+

1586 1601 1602 1587

+

1587 1602 1603 1588

+

1588 1603 1604 1589

+

1589 1604 1605 1590

+

1590 1605 1606 1591

+

1591 1606 1607 1592

+

1592 1607 280 279

+

1177 1179 1608 1593

+

1593 1608 1609 1594

+

1594 1609 1610 1595

+

1595 1610 1611 1596

+

1596 1611 1612 1597

+

1597 1612 1613 1598

+

1598 1613 1614 1599

+

1599 1614 1615 1600

+

1600 1615 1616 1601

+

1601 1616 1617 1602

+

1602 1617 1618 1603

+

1603 1618 1619 1604

+

1604 1619 1620 1605

+

1605 1620 1621 1606

+

1606 1621 1622 1607

+

1607 1622 281 280

+

1179 1181 1623 1608

+

1608 1623 1624 1609

+

1609 1624 1625 1610

+

1610 1625 1626 1611

+

1611 1626 1627 1612

+

1612 1627 1628 1613

+

1613 1628 1629 1614

+

1614 1629 1630 1615

+

1615 1630 1631 1616

+

1616 1631 1632 1617

+

1617 1632 1633 1618

+

1618 1633 1634 1619

+

1619 1634 1635 1620

+

1620 1635 1636 1621

+

1621 1636 1637 1622

+

1622 1637 282 281

+

1181 1183 1638 1623

+

1623 1638 1639 1624

+

1624 1639 1640 1625

+

1625 1640 1641 1626

+

1626 1641 1642 1627

+

1627 1642 1643 1628

+

1628 1643 1644 1629

+

1629 1644 1645 1630

+

1630 1645 1646 1631

+

1631 1646 1647 1632

+

1632 1647 1648 1633

+

1633 1648 1649 1634

+

1634 1649 1650 1635

+

1635 1650 1651 1636

+

1636 1651 1652 1637

+

1637 1652 283 282

+

1183 1185 1653 1638

+

1638 1653 1654 1639

+

1639 1654 1655 1640

+

1640 1655 1656 1641

+

1641 1656 1657 1642

+

1642 1657 1658 1643

+

1643 1658 1659 1644

+

1644 1659 1660 1645

+

1645 1660 1661 1646

+

1646 1661 1662 1647

+

1647 1662 1663 1648

+

1648 1663 1664 1649

+

1649 1664 1665 1650

+

1650 1665 1666 1651

+

1651 1666 1667 1652

+

1652 1667 284 283

+

1185 1187 1668 1653

+

1653 1668 1669 1654

+

1654 1669 1670 1655

+

1655 1670 1671 1656

+

1656 1671 1672 1657

+

1657 1672 1673 1658

+

1658 1673 1674 1659

+

1659 1674 1675 1660

+

1660 1675 1676 1661

+

1661 1676 1677 1662

+

1662 1677 1678 1663

+

1663 1678 1679 1664

+

1664 1679 1680 1665

+

1665 1680 1681 1666

+

1666 1681 1682 1667

+

1667 1682 285 284

+

1187 1189 1683 1668

+

1668 1683 1684 1669

+

1669 1684 1685 1670

+

1670 1685 1686 1671

+

1671 1686 1687 1672

+

1672 1687 1688 1673

+

1673 1688 1689 1674

+

1674 1689 1690 1675

+

1675 1690 1691 1676

+

1676 1691 1692 1677

+

1677 1692 1693 1678

+

1678 1693 1694 1679

+

1679 1694 1695 1680

+

1680 1695 1696 1681

+

1681 1696 1697 1682

+

1682 1697 286 285

+

1189 1191 1698 1683

+

1683 1698 1699 1684

+

1684 1699 1700 1685

+

1685 1700 1701 1686

+

1686 1701 1702 1687

+

1687 1702 1703 1688

+

1688 1703 1704 1689

+

1689 1704 1705 1690

+

1690 1705 1706 1691

+

1691 1706 1707 1692

+

1692 1707 1708 1693

+

1693 1708 1709 1694

+

1694 1709 1710 1695

+

1695 1710 1711 1696

+

1696 1711 1712 1697

+

1697 1712 287 286

+

1191 1193 1713 1698

+

1698 1713 1714 1699

+

1699 1714 1715 1700

+

1700 1715 1716 1701

+

1701 1716 1717 1702

+

1702 1717 1718 1703

+

1703 1718 1719 1704

+

1704 1719 1720 1705

+

1705 1720 1721 1706

+

1706 1721 1722 1707

+

1707 1722 1723 1708

+

1708 1723 1724 1709

+

1709 1724 1725 1710

+

1710 1725 1726 1711

+

1711 1726 1727 1712

+

1712 1727 288 287

+

1160 1474 1728 1729

+

1729 1728 1730 1731

+

1731 1730 1732 1733

+

1733 1732 1734 1735

+

1735 1734 1736 1737

+

1737 1736 1738 1739

+

1739 1738 1740 1741

+

1741 1740 1742 1743

+

1743 1742 1744 1745

+

1745 1744 1746 1747

+

1747 1746 1748 1749

+

1749 1748 1750 1751

+

1751 1750 1752 1753

+

1753 1752 1469 1156

+

1754 1755 1756 1757

+

1450 1453 1419 1418

+

1474 1476 1758 1728

+

1728 1758 1759 1730

+

1730 1759 1760 1732

+

1732 1760 1761 1734

+

1734 1761 1762 1736

+

1736 1762 1763 1738

+

1738 1763 1764 1740

+

1740 1764 1765 1742

+

1742 1765 1766 1744

+

1744 1766 1767 1746

+

1746 1767 1768 1748

+

1748 1768 1769 1750

+

1750 1769 1770 1752

+

1752 1770 1470 1469

+

1771 1772 1773 1774

+

1470 1775 1776 1471

+

1476 1478 1777 1758

+

1758 1777 1778 1759

+

1759 1778 1779 1760

+

1760 1779 1780 1761

+

1761 1780 1781 1762

+

1762 1781 1782 1763

+

1763 1782 1783 1764

+

1764 1783 1784 1765

+

1765 1784 1785 1766

+

1766 1785 1786 1767

+

1767 1786 1787 1768

+

1768 1787 1788 1769

+

1769 1788 1789 1770

+

1770 1789 1775 1470

+

1772 1790 1791 1773

+

1775 1792 1793 1776

+

1478 1480 1794 1777

+

1777 1794 1795 1778

+

1778 1795 1796 1779

+

1779 1796 1797 1780

+

1780 1797 1798 1781

+

1781 1798 1799 1782

+

1782 1799 1800 1783

+

1783 1800 1801 1784

+

1784 1801 1802 1785

+

1785 1802 1803 1786

+

1786 1803 1804 1787

+

1787 1804 1805 1788

+

1788 1805 1806 1789

+

1789 1806 1792 1775

+

1790 1807 1808 1791

+

1792 1809 1810 1793

+

1480 1482 1811 1794

+

1794 1811 1812 1795

+

1795 1812 1813 1796

+

1796 1813 1814 1797

+

1797 1814 1815 1798

+

1798 1815 1816 1799

+

1799 1816 1817 1800

+

1800 1817 1818 1801

+

1801 1818 1819 1802

+

1802 1819 1820 1803

+

1803 1820 1821 1804

+

1804 1821 1822 1805

+

1805 1822 1823 1806

+

1806 1823 1809 1792

+

1807 1824 1825 1808

+

1809 1826 1827 1810

+

1482 1484 1828 1811

+

1811 1828 1829 1812

+

1812 1829 1830 1813

+

1813 1830 1831 1814

+

1814 1831 1832 1815

+

1815 1832 1833 1816

+

1816 1833 1834 1817

+

1817 1834 1835 1818

+

1818 1835 1836 1819

+

1819 1836 1837 1820

+

1820 1837 1838 1821

+

1821 1838 1839 1822

+

1822 1839 1840 1823

+

1823 1840 1826 1809

+

1824 1841 1842 1825

+

1826 1843 1844 1827

+

1484 1486 1845 1828

+

1828 1845 1846 1829

+

1829 1846 1847 1830

+

1830 1847 1848 1831

+

1831 1848 1849 1832

+

1832 1849 1850 1833

+

1833 1850 1851 1834

+

1834 1851 1852 1835

+

1835 1852 1853 1836

+

1836 1853 1854 1837

+

1837 1854 1855 1838

+

1838 1855 1856 1839

+

1839 1856 1857 1840

+

1840 1857 1843 1826

+

1841 1858 1859 1842

+

1843 1860 1861 1844

+

1486 1488 1862 1845

+

1845 1862 1863 1846

+

1846 1863 1864 1847

+

1847 1864 1865 1848

+

1848 1865 1866 1849

+

1849 1866 1867 1850

+

1850 1867 1868 1851

+

1851 1868 1869 1852

+

1852 1869 1870 1853

+

1853 1870 1871 1854

+

1854 1871 1872 1855

+

1855 1872 1873 1856

+

1856 1873 1874 1857

+

1857 1874 1860 1843

+

1858 1875 1876 1859

+

1860 1877 1878 1861

+

1488 1490 1879 1862

+

1862 1879 1880 1863

+

1863 1880 1881 1864

+

1864 1881 1882 1865

+

1865 1882 1883 1866

+

1866 1883 1884 1867

+

1867 1884 1885 1868

+

1868 1885 1886 1869

+

1869 1886 1887 1870

+

1870 1887 1888 1871

+

1871 1888 1889 1872

+

1872 1889 1890 1873

+

1873 1890 1891 1874

+

1874 1891 1877 1860

+

1875 1892 1893 1876

+

1877 1894 1895 1878

+

1490 1492 1896 1879

+

1879 1896 1897 1880

+

1880 1897 1898 1881

+

1881 1898 1899 1882

+

1882 1899 1900 1883

+

1883 1900 1901 1884

+

1884 1901 1902 1885

+

1885 1902 1903 1886

+

1886 1903 1904 1887

+

1887 1904 1905 1888

+

1888 1905 1906 1889

+

1889 1906 1907 1890

+

1890 1907 1908 1891

+

1891 1908 1894 1877

+

1892 1909 1910 1893

+

1894 1911 1912 1895

+

1492 1494 1913 1896

+

1896 1913 1914 1897

+

1897 1914 1915 1898

+

1898 1915 1916 1899

+

1899 1916 1917 1900

+

1900 1917 1918 1901

+

1901 1918 1919 1902

+

1902 1919 1920 1903

+

1903 1920 1921 1904

+

1904 1921 1922 1905

+

1905 1922 1923 1906

+

1906 1923 1924 1907

+

1907 1924 1925 1908

+

1908 1925 1911 1894

+

1909 1926 1927 1910

+

1911 1928 1929 1912

+

1494 1496 1930 1913

+

1913 1930 1931 1914

+

1914 1931 1932 1915

+

1915 1932 1933 1916

+

1916 1933 1934 1917

+

1917 1934 1935 1918

+

1918 1935 1936 1919

+

1919 1936 1937 1920

+

1920 1937 1938 1921

+

1921 1938 1939 1922

+

1922 1939 1940 1923

+

1923 1940 1941 1924

+

1924 1941 1942 1925

+

1925 1942 1928 1911

+

1926 1943 1944 1927

+

1928 1945 1946 1929

+

1496 1498 1947 1930

+

1930 1947 1948 1931

+

1931 1948 1949 1932

+

1932 1949 1950 1933

+

1933 1950 1951 1934

+

1934 1951 1952 1935

+

1935 1952 1953 1936

+

1936 1953 1954 1937

+

1937 1954 1955 1938

+

1938 1955 1956 1939

+

1939 1956 1957 1940

+

1940 1957 1958 1941

+

1941 1958 1959 1942

+

1942 1959 1945 1928

+

1943 1960 1961 1944

+

1945 1962 1963 1946

+

1498 1500 1964 1947

+

1947 1964 1965 1948

+

1948 1965 1966 1949

+

1949 1966 1967 1950

+

1950 1967 1968 1951

+

1951 1968 1969 1952

+

1952 1969 1970 1953

+

1953 1970 1971 1954

+

1954 1971 1972 1955

+

1955 1972 1973 1956

+

1956 1973 1974 1957

+

1957 1974 1975 1958

+

1958 1975 1976 1959

+

1959 1976 1962 1945

+

1960 1977 1978 1961

+

1962 1979 1980 1963

+

1500 1502 1981 1964

+

1964 1981 1982 1965

+

1965 1982 1983 1966

+

1966 1983 1984 1967

+

1967 1984 1985 1968

+

1968 1985 1986 1969

+

1969 1986 1987 1970

+

1970 1987 1988 1971

+

1971 1988 1989 1972

+

1972 1989 1990 1973

+

1973 1990 1991 1974

+

1974 1991 1992 1975

+

1975 1992 1993 1976

+

1976 1993 1979 1962

+

1977 1994 1995 1978

+

1979 1111 1155 1980

+

1502 272 905 1981

+

1981 905 921 1982

+

1982 921 937 1983

+

1983 937 953 1984

+

1984 953 969 1985

+

1985 969 985 1986

+

1986 985 1001 1987

+

1987 1001 1017 1988

+

1988 1017 1033 1989

+

1989 1033 1049 1990

+

1990 1049 1065 1991

+

1991 1065 1081 1992

+

1992 1081 1097 1993

+

1993 1097 1111 1979

+

1994 1141 1140 1995

+

1415 1996 1997 1416

+

1160 1729 1998 1161

+

1161 1998 1999 1194

+

1194 1999 2000 1211

+

1211 2000 2001 1228

+

1228 2001 2002 1245

+

1245 2002 2003 1262

+

1262 2003 2004 1279

+

1279 2004 2005 1296

+

1296 2005 2006 1313

+

1313 2006 2007 1330

+

1330 2007 2008 1347

+

1347 2008 2009 1364

+

1364 2009 2010 1381

+

1381 2010 1415 1398

+

1399 2011 1454 1400

+

1398 1417 2011 1399

+

1729 1731 2012 1998

+

1998 2012 2013 1999

+

1999 2013 2014 2000

+

2000 2014 2015 2001

+

2001 2015 2016 2002

+

2002 2016 2017 2003

+

2003 2017 2018 2004

+

2004 2018 2019 2005

+

2005 2019 2020 2006

+

2006 2020 2021 2007

+

2007 2021 2022 2008

+

2008 2022 2023 2009

+

2009 2023 2024 2010

+

2010 2024 1996 1415

+

1451 2025 2026 1452

+

1996 2027 2028 1997

+

1731 1733 2029 2012

+

2012 2029 2030 2013

+

2013 2030 2031 2014

+

2014 2031 2032 2015

+

2015 2032 2033 2016

+

2016 2033 2034 2017

+

2017 2034 2035 2018

+

2018 2035 2036 2019

+

2019 2036 2037 2020

+

2020 2037 2038 2021

+

2021 2038 2039 2022

+

2022 2039 2040 2023

+

2023 2040 2041 2024

+

2024 2041 2027 1996

+

2025 2042 2043 2026

+

2027 2044 2045 2028

+

1733 1735 2046 2029

+

2029 2046 2047 2030

+

2030 2047 2048 2031

+

2031 2048 2049 2032

+

2032 2049 2050 2033

+

2033 2050 2051 2034

+

2034 2051 2052 2035

+

2035 2052 2053 2036

+

2036 2053 2054 2037

+

2037 2054 2055 2038

+

2038 2055 2056 2039

+

2039 2056 2057 2040

+

2040 2057 2058 2041

+

2041 2058 2044 2027

+

2042 2059 2060 2043

+

2044 2061 2062 2045

+

1735 1737 2063 2046

+

2046 2063 2064 2047

+

2047 2064 2065 2048

+

2048 2065 2066 2049

+

2049 2066 2067 2050

+

2050 2067 2068 2051

+

2051 2068 2069 2052

+

2052 2069 2070 2053

+

2053 2070 2071 2054

+

2054 2071 2072 2055

+

2055 2072 2073 2056

+

2056 2073 2074 2057

+

2057 2074 2075 2058

+

2058 2075 2061 2044

+

2059 2076 2077 2060

+

2061 2078 2079 2062

+

1737 1739 2080 2063

+

2063 2080 2081 2064

+

2064 2081 2082 2065

+

2065 2082 2083 2066

+

2066 2083 2084 2067

+

2067 2084 2085 2068

+

2068 2085 2086 2069

+

2069 2086 2087 2070

+

2070 2087 2088 2071

+

2071 2088 2089 2072

+

2072 2089 2090 2073

+

2073 2090 2091 2074

+

2074 2091 2092 2075

+

2075 2092 2078 2061

+

2076 2093 2094 2077

+

2078 2095 2096 2079

+

1739 1741 2097 2080

+

2080 2097 2098 2081

+

2081 2098 2099 2082

+

2082 2099 2100 2083

+

2083 2100 2101 2084

+

2084 2101 2102 2085

+

2085 2102 2103 2086

+

2086 2103 2104 2087

+

2087 2104 2105 2088

+

2088 2105 2106 2089

+

2089 2106 2107 2090

+

2090 2107 2108 2091

+

2091 2108 2109 2092

+

2092 2109 2095 2078

+

2093 2110 2111 2094

+

2095 2112 2113 2096

+

1741 1743 2114 2097

+

2097 2114 2115 2098

+

2098 2115 2116 2099

+

2099 2116 2117 2100

+

2100 2117 2118 2101

+

2101 2118 2119 2102

+

2102 2119 2120 2103

+

2103 2120 2121 2104

+

2104 2121 2122 2105

+

2105 2122 2123 2106

+

2106 2123 2124 2107

+

2107 2124 2125 2108

+

2108 2125 2126 2109

+

2109 2126 2112 2095

+

2110 2127 2128 2111

+

2112 2129 2130 2113

+

1743 1745 2131 2114

+

2114 2131 2132 2115

+

2115 2132 2133 2116

+

2116 2133 2134 2117

+

2117 2134 2135 2118

+

2118 2135 2136 2119

+

2119 2136 2137 2120

+

2120 2137 2138 2121

+

2121 2138 2139 2122

+

2122 2139 2140 2123

+

2123 2140 2141 2124

+

2124 2141 2142 2125

+

2125 2142 2143 2126

+

2126 2143 2129 2112

+

2127 2144 2145 2128

+

2129 2146 2147 2130

+

1745 1747 2148 2131

+

2131 2148 2149 2132

+

2132 2149 2150 2133

+

2133 2150 2151 2134

+

2134 2151 2152 2135

+

2135 2152 2153 2136

+

2136 2153 2154 2137

+

2137 2154 2155 2138

+

2138 2155 2156 2139

+

2139 2156 2157 2140

+

2140 2157 2158 2141

+

2141 2158 2159 2142

+

2142 2159 2160 2143

+

2143 2160 2146 2129

+

2144 2161 2162 2145

+

2146 2163 2164 2147

+

1747 1749 2165 2148

+

2148 2165 2166 2149

+

2149 2166 2167 2150

+

2150 2167 2168 2151

+

2151 2168 2169 2152

+

2152 2169 2170 2153

+

2153 2170 2171 2154

+

2154 2171 2172 2155

+

2155 2172 2173 2156

+

2156 2173 2174 2157

+

2157 2174 2175 2158

+

2158 2175 2176 2159

+

2159 2176 2177 2160

+

2160 2177 2163 2146

+

2161 2178 2179 2162

+

2163 2180 2181 2164

+

1749 1751 2182 2165

+

2165 2182 2183 2166

+

2166 2183 2184 2167

+

2167 2184 2185 2168

+

2168 2185 2186 2169

+

2169 2186 2187 2170

+

2170 2187 2188 2171

+

2171 2188 2189 2172

+

2172 2189 2190 2173

+

2173 2190 2191 2174

+

2174 2191 2192 2175

+

2175 2192 2193 2176

+

2176 2193 2194 2177

+

2177 2194 2180 2163

+

2178 2195 2196 2179

+

2180 2197 2198 2181

+

1751 1753 2199 2182

+

2182 2199 2200 2183

+

2183 2200 2201 2184

+

2184 2201 2202 2185

+

2185 2202 2203 2186

+

2186 2203 2204 2187

+

2187 2204 2205 2188

+

2188 2205 2206 2189

+

2189 2206 2207 2190

+

2190 2207 2208 2191

+

2191 2208 2209 2192

+

2192 2209 2210 2193

+

2193 2210 2211 2194

+

2194 2211 2197 2180

+

2195 2212 2213 2196

+

2197 2214 2215 2198

+

1753 1156 1159 2199

+

2199 1159 2216 2200

+

2200 2216 2217 2201

+

2201 2217 2218 2202

+

2202 2218 2219 2203

+

2203 2219 2220 2204

+

2204 2220 2221 2205

+

2205 2221 2222 2206

+

2206 2222 2223 2207

+

2207 2223 2224 2208

+

2208 2224 2225 2209

+

2209 2225 2226 2210

+

2210 2226 2227 2211

+

2211 2227 2214 2197

+

2212 2228 2229 2213

+

2214 2230 2231 2215

+

1156 1469 1472 1157

+

1757 1756 2232 2233

+

2233 2232 2234 2235

+

2235 2234 2236 2237

+

2237 2236 2238 2239

+

2239 2238 2240 2241

+

2241 2240 2242 2243

+

2243 2242 2244 2245

+

2245 2244 2246 2247

+

2247 2246 2248 2249

+

2249 2248 2250 2251

+

2251 2250 2252 2253

+

2253 2252 2254 2255

+

2255 2254 2256 2257

+

2228 2258 2259 2229

+

1159 1158 2260 2216

+

1754 1771 1774 1755

+

2216 2260 2261 2217

+

2217 2261 2262 2218

+

2218 2262 2263 2219

+

2219 2263 2264 2220

+

2220 2264 2265 2221

+

2221 2265 2266 2222

+

2222 2266 2267 2223

+

2223 2267 2268 2224

+

2224 2268 2269 2225

+

2225 2269 2270 2226

+

2226 2270 2271 2227

+

2227 2271 2230 2214

+

2257 2256 2272 2273

+

2274 2275 2276 2277

+

2278 2279 2280 2281

+

2282 2283 2284 2285

+

2285 2284 2286 2287

+

2287 2286 2288 2289

+

2289 2288 2290 2291

+

2291 2290 2292 2293

+

2293 2292 2294 2295

+

2295 2294 2296 2297

+

2297 2296 2298 2299

+

2299 2298 2300 2301

+

2301 2300 2302 2303

+

2303 2302 2304 2305

+

2305 2304 2306 2307

+

2307 2306 2308 2309

+

2309 2308 2310 2278

+

2311 2312 2313 2314

+

2315 2316 2317 2318

+

2283 2319 2320 2284

+

2284 2320 2321 2286

+

2286 2321 2322 2288

+

2288 2322 2323 2290

+

2290 2323 2324 2292

+

2292 2324 2325 2294

+

2294 2325 2326 2296

+

2296 2326 2327 2298

+

2298 2327 2328 2300

+

2300 2328 2329 2302

+

2302 2329 2330 2304

+

2304 2330 2331 2306

+

2306 2331 2332 2308

+

2308 2332 2333 2310

+

2334 2335 2336 2337

+

2333 2338 2339 2340

+

2319 2341 2342 2320

+

2320 2342 2343 2321

+

2321 2343 2344 2322

+

2322 2344 2345 2323

+

2323 2345 2346 2324

+

2324 2346 2347 2325

+

2325 2347 2348 2326

+

2326 2348 2349 2327

+

2327 2349 2350 2328

+

2328 2350 2351 2329

+

2329 2351 2352 2330

+

2330 2352 2353 2331

+

2331 2353 2354 2332

+

2332 2354 2338 2333

+

2335 2355 2356 2336

+

2338 2357 2358 2339

+

2341 2359 2360 2342

+

2342 2360 2361 2343

+

2343 2361 2362 2344

+

2344 2362 2363 2345

+

2345 2363 2364 2346

+

2346 2364 2365 2347

+

2347 2365 2366 2348

+

2348 2366 2367 2349

+

2349 2367 2368 2350

+

2350 2368 2369 2351

+

2351 2369 2370 2352

+

2352 2370 2371 2353

+

2353 2371 2372 2354

+

2354 2372 2357 2338

+

2355 2373 2374 2356

+

2357 2375 2376 2358

+

2359 2377 2378 2360

+

2360 2378 2379 2361

+

2361 2379 2380 2362

+

2362 2380 2381 2363

+

2363 2381 2382 2364

+

2364 2382 2383 2365

+

2365 2383 2384 2366

+

2366 2384 2385 2367

+

2367 2385 2386 2368

+

2368 2386 2387 2369

+

2369 2387 2388 2370

+

2370 2388 2389 2371

+

2371 2389 2390 2372

+

2372 2390 2375 2357

+

2373 2391 2392 2374

+

2375 2393 2394 2376

+

2377 2395 2396 2378

+

2378 2396 2397 2379

+

2379 2397 2398 2380

+

2380 2398 2399 2381

+

2381 2399 2400 2382

+

2382 2400 2401 2383

+

2383 2401 2402 2384

+

2384 2402 2403 2385

+

2385 2403 2404 2386

+

2386 2404 2405 2387

+

2387 2405 2406 2388

+

2388 2406 2407 2389

+

2389 2407 2408 2390

+

2390 2408 2393 2375

+

2391 2409 2410 2392

+

2393 2411 2412 2394

+

2395 2413 2414 2396

+

2396 2414 2415 2397

+

2397 2415 2416 2398

+

2398 2416 2417 2399

+

2399 2417 2418 2400

+

2400 2418 2419 2401

+

2401 2419 2420 2402

+

2402 2420 2421 2403

+

2403 2421 2422 2404

+

2404 2422 2423 2405

+

2405 2423 2424 2406

+

2406 2424 2425 2407

+

2407 2425 2426 2408

+

2408 2426 2411 2393

+

2409 2427 2428 2410

+

2411 2429 2430 2412

+

2413 2431 2432 2414

+

2414 2432 2433 2415

+

2415 2433 2434 2416

+

2416 2434 2435 2417

+

2417 2435 2436 2418

+

2418 2436 2437 2419

+

2419 2437 2438 2420

+

2420 2438 2439 2421

+

2421 2439 2440 2422

+

2422 2440 2441 2423

+

2423 2441 2442 2424

+

2424 2442 2443 2425

+

2425 2443 2444 2426

+

2426 2444 2429 2411

+

2427 2445 2446 2428

+

2429 2447 2448 2430

+

2431 2449 2450 2432

+

2432 2450 2451 2433

+

2433 2451 2452 2434

+

2434 2452 2453 2435

+

2435 2453 2454 2436

+

2436 2454 2455 2437

+

2437 2455 2456 2438

+

2438 2456 2457 2439

+

2439 2457 2458 2440

+

2440 2458 2459 2441

+

2441 2459 2460 2442

+

2442 2460 2461 2443

+

2443 2461 2462 2444

+

2444 2462 2447 2429

+

2445 2463 2464 2446

+

2447 2465 2466 2448

+

2449 2467 2468 2450

+

2450 2468 2469 2451

+

2451 2469 2470 2452

+

2452 2470 2471 2453

+

2453 2471 2472 2454

+

2454 2472 2473 2455

+

2455 2473 2474 2456

+

2456 2474 2475 2457

+

2457 2475 2476 2458

+

2458 2476 2477 2459

+

2459 2477 2478 2460

+

2460 2478 2479 2461

+

2461 2479 2480 2462

+

2462 2480 2465 2447

+

2463 2481 2482 2464

+

2465 2483 2484 2466

+

2467 2485 2486 2468

+

2468 2486 2487 2469

+

2469 2487 2488 2470

+

2470 2488 2489 2471

+

2471 2489 2490 2472

+

2472 2490 2491 2473

+

2473 2491 2492 2474

+

2474 2492 2493 2475

+

2475 2493 2494 2476

+

2476 2494 2495 2477

+

2477 2495 2496 2478

+

2478 2496 2497 2479

+

2479 2497 2498 2480

+

2480 2498 2483 2465

+

2481 2499 2500 2482

+

2483 2501 2502 2484

+

2485 2503 2504 2486

+

2486 2504 2505 2487

+

2487 2505 2506 2488

+

2488 2506 2507 2489

+

2489 2507 2508 2490

+

2490 2508 2509 2491

+

2491 2509 2510 2492

+

2492 2510 2511 2493

+

2493 2511 2512 2494

+

2494 2512 2513 2495

+

2495 2513 2514 2496

+

2496 2514 2515 2497

+

2497 2515 2516 2498

+

2498 2516 2501 2483

+

2499 2517 2518 2500

+

2501 2519 2520 2502

+

2503 2521 2522 2504

+

2504 2522 2523 2505

+

2505 2523 2524 2506

+

2506 2524 2525 2507

+

2507 2525 2526 2508

+

2508 2526 2527 2509

+

2509 2527 2528 2510

+

2510 2528 2529 2511

+

2511 2529 2530 2512

+

2512 2530 2531 2513

+

2513 2531 2532 2514

+

2514 2532 2533 2515

+

2515 2533 2534 2516

+

2516 2534 2519 2501

+

2517 2535 2536 2518

+

2519 2537 2538 2520

+

2521 2539 2540 2522

+

2522 2540 2541 2523

+

2523 2541 2542 2524

+

2524 2542 2543 2525

+

2525 2543 2544 2526

+

2526 2544 2545 2527

+

2527 2545 2546 2528

+

2528 2546 2547 2529

+

2529 2547 2548 2530

+

2530 2548 2549 2531

+

2531 2549 2550 2532

+

2532 2550 2551 2533

+

2533 2551 2552 2534

+

2534 2552 2537 2519

+

2535 2553 2554 2536

+

2537 2555 2556 2538

+

2539 2557 2558 2559

+

2318 2317 2560 2561

+

2561 2560 2562 2563

+

2563 2562 2564 2565

+

2565 2564 2566 2567

+

2567 2566 2568 2569

+

2569 2568 2570 2571

+

2571 2570 2572 2573

+

2573 2572 2574 2575

+

2575 2574 2576 2577

+

2577 2576 2578 2579

+

2579 2578 2580 2581

+

2581 2580 2582 2583

+

2583 2582 2584 2585

+

2553 2586 2587 2554

+

2540 2588 2589 2541

+

2315 2590 2591 2316

+

2541 2589 2592 2542

+

2542 2592 2593 2543

+

2543 2593 2594 2544

+

2544 2594 2595 2545

+

2545 2595 2596 2546

+

2546 2596 2597 2547

+

2547 2597 2598 2548

+

2548 2598 2599 2549

+

2549 2599 2600 2550

+

2550 2600 2601 2551

+

2551 2601 2602 2552

+

2552 2602 2555 2537

+

2585 2584 2603 2604

+

2605 2606 2607 2608

+

2281 2280 2609 2610

+

2282 2285 2611 2612

+

2612 2611 2613 2614

+

2614 2613 2615 2616

+

2616 2615 2617 2618

+

2618 2617 2619 2620

+

2620 2619 2621 2622

+

2622 2621 2623 2624

+

2624 2623 2625 2626

+

2626 2625 2627 2628

+

2628 2627 2629 2630

+

2630 2629 2631 2632

+

2632 2631 2633 2634

+

2634 2633 2635 2636

+

2636 2635 2637 2638

+

2638 2637 2639 2640

+

2640 2639 2641 2642

+

2285 2287 2643 2611

+

2611 2643 2644 2613

+

2613 2644 2645 2615

+

2615 2645 2646 2617

+

2617 2646 2647 2619

+

2619 2647 2648 2621

+

2621 2648 2649 2623

+

2623 2649 2650 2625

+

2625 2650 2651 2627

+

2627 2651 2652 2629

+

2629 2652 2653 2631

+

2631 2653 2654 2633

+

2633 2654 2655 2635

+

2635 2655 2656 2637

+

2637 2656 2657 2639

+

2639 2657 2658 2641

+

2287 2289 2659 2643

+

2643 2659 2660 2644

+

2644 2660 2661 2645

+

2645 2661 2662 2646

+

2646 2662 2663 2647

+

2647 2663 2664 2648

+

2648 2664 2665 2649

+

2649 2665 2666 2650

+

2650 2666 2667 2651

+

2651 2667 2668 2652

+

2652 2668 2669 2653

+

2653 2669 2670 2654

+

2654 2670 2671 2655

+

2655 2671 2672 2656

+

2656 2672 2673 2657

+

2657 2673 2674 2658

+

2289 2291 2675 2659

+

2659 2675 2676 2660

+

2660 2676 2677 2661

+

2661 2677 2678 2662

+

2662 2678 2679 2663

+

2663 2679 2680 2664

+

2664 2680 2681 2665

+

2665 2681 2682 2666

+

2666 2682 2683 2667

+

2667 2683 2684 2668

+

2668 2684 2685 2669

+

2669 2685 2686 2670

+

2670 2686 2687 2671

+

2671 2687 2688 2672

+

2672 2688 2689 2673

+

2673 2689 2690 2674

+

2291 2293 2691 2675

+

2675 2691 2692 2676

+

2676 2692 2693 2677

+

2677 2693 2694 2678

+

2678 2694 2695 2679

+

2679 2695 2696 2680

+

2680 2696 2697 2681

+

2681 2697 2698 2682

+

2682 2698 2699 2683

+

2683 2699 2700 2684

+

2684 2700 2701 2685

+

2685 2701 2702 2686

+

2686 2702 2703 2687

+

2687 2703 2704 2688

+

2688 2704 2705 2689

+

2689 2705 2706 2690

+

2293 2295 2707 2691

+

2691 2707 2708 2692

+

2692 2708 2709 2693

+

2693 2709 2710 2694

+

2694 2710 2711 2695

+

2695 2711 2712 2696

+

2696 2712 2713 2697

+

2697 2713 2714 2698

+

2698 2714 2715 2699

+

2699 2715 2716 2700

+

2700 2716 2717 2701

+

2701 2717 2718 2702

+

2702 2718 2719 2703

+

2703 2719 2720 2704

+

2704 2720 2721 2705

+

2705 2721 2722 2706

+

2295 2297 2723 2707

+

2707 2723 2724 2708

+

2708 2724 2725 2709

+

2709 2725 2726 2710

+

2710 2726 2727 2711

+

2711 2727 2728 2712

+

2712 2728 2729 2713

+

2713 2729 2730 2714

+

2714 2730 2731 2715

+

2715 2731 2732 2716

+

2716 2732 2733 2717

+

2717 2733 2734 2718

+

2718 2734 2735 2719

+

2719 2735 2736 2720

+

2720 2736 2737 2721

+

2721 2737 2738 2722

+

2297 2299 2739 2723

+

2723 2739 2740 2724

+

2724 2740 2741 2725

+

2725 2741 2742 2726

+

2726 2742 2743 2727

+

2727 2743 2744 2728

+

2728 2744 2745 2729

+

2729 2745 2746 2730

+

2730 2746 2747 2731

+

2731 2747 2748 2732

+

2732 2748 2749 2733

+

2733 2749 2750 2734

+

2734 2750 2751 2735

+

2735 2751 2752 2736

+

2736 2752 2753 2737

+

2737 2753 2754 2738

+

2299 2301 2755 2739

+

2739 2755 2756 2740

+

2740 2756 2757 2741

+

2741 2757 2758 2742

+

2742 2758 2759 2743

+

2743 2759 2760 2744

+

2744 2760 2761 2745

+

2745 2761 2762 2746

+

2746 2762 2763 2747

+

2747 2763 2764 2748

+

2748 2764 2765 2749

+

2749 2765 2766 2750

+

2750 2766 2767 2751

+

2751 2767 2768 2752

+

2752 2768 2769 2753

+

2753 2769 2770 2754

+

2301 2303 2771 2755

+

2755 2771 2772 2756

+

2756 2772 2773 2757

+

2757 2773 2774 2758

+

2758 2774 2775 2759

+

2759 2775 2776 2760

+

2760 2776 2777 2761

+

2761 2777 2778 2762

+

2762 2778 2779 2763

+

2763 2779 2780 2764

+

2764 2780 2781 2765

+

2765 2781 2782 2766

+

2766 2782 2783 2767

+

2767 2783 2784 2768

+

2768 2784 2785 2769

+

2769 2785 2786 2770

+

2303 2305 2787 2771

+

2771 2787 2788 2772

+

2772 2788 2789 2773

+

2773 2789 2790 2774

+

2774 2790 2791 2775

+

2775 2791 2792 2776

+

2776 2792 2793 2777

+

2777 2793 2794 2778

+

2778 2794 2795 2779

+

2779 2795 2796 2780

+

2780 2796 2797 2781

+

2781 2797 2798 2782

+

2782 2798 2799 2783

+

2783 2799 2800 2784

+

2784 2800 2801 2785

+

2785 2801 2802 2786

+

2305 2307 2803 2787

+

2787 2803 2804 2788

+

2788 2804 2805 2789

+

2789 2805 2806 2790

+

2790 2806 2807 2791

+

2791 2807 2808 2792

+

2792 2808 2809 2793

+

2793 2809 2810 2794

+

2794 2810 2811 2795

+

2795 2811 2812 2796

+

2796 2812 2813 2797

+

2797 2813 2814 2798

+

2798 2814 2815 2799

+

2799 2815 2816 2800

+

2800 2816 2817 2801

+

2801 2817 2818 2802

+

2307 2309 2819 2803

+

2803 2819 2820 2804

+

2804 2820 2821 2805

+

2805 2821 2822 2806

+

2806 2822 2823 2807

+

2807 2823 2824 2808

+

2808 2824 2825 2809

+

2809 2825 2826 2810

+

2810 2826 2827 2811

+

2811 2827 2828 2812

+

2812 2828 2829 2813

+

2813 2829 2830 2814

+

2814 2830 2831 2815

+

2815 2831 2832 2816

+

2816 2832 2833 2817

+

2817 2833 2834 2818

+

2309 2278 2281 2819

+

2819 2281 2610 2820

+

2820 2610 2835 2821

+

2821 2835 2836 2822

+

2822 2836 2837 2823

+

2823 2837 2838 2824

+

2824 2838 2839 2825

+

2825 2839 2840 2826

+

2826 2840 2841 2827

+

2827 2841 2842 2828

+

2828 2842 2843 2829

+

2829 2843 2844 2830

+

2830 2844 2845 2831

+

2831 2845 2846 2832

+

2832 2846 2847 2833

+

2833 2847 2848 2834

+

2278 2310 2849 2279

+

2314 2313 2850 2851

+

2851 2850 2852 2853

+

2853 2852 2854 2855

+

2855 2854 2856 2857

+

2857 2856 2858 2859

+

2859 2858 2860 2861

+

2861 2860 2862 2863

+

2863 2862 2864 2865

+

2865 2864 2866 2867

+

2867 2866 2868 2869

+

2869 2868 2870 2871

+

2871 2870 2872 2873

+

2873 2872 2874 2875

+

2875 2874 2876 2877

+

2877 2876 2878 2879

+

2311 2334 2337 2312

+

2610 2609 2880 2835

+

2835 2880 2881 2836

+

2836 2881 2882 2837

+

2837 2882 2883 2838

+

2838 2883 2884 2839

+

2839 2884 2885 2840

+

2840 2885 2886 2841

+

2841 2886 2887 2842

+

2842 2887 2888 2843

+

2843 2888 2889 2844

+

2844 2889 2890 2845

+

2845 2890 2891 2846

+

2846 2891 2892 2847

+

2847 2892 2893 2848

+

2557 2894 2895 2558

+

2282 2612 2896 2897

+

2897 2896 2898 2899

+

2899 2898 2900 2901

+

2901 2900 2902 2903

+

2903 2902 2904 2905

+

2905 2904 2906 2907

+

2907 2906 2908 2909

+

2909 2908 2910 2911

+

2911 2910 2912 2913

+

2913 2912 2914 2915

+

2915 2914 2916 2917

+

2917 2916 2918 2919

+

2919 2918 2920 2921

+

2921 2920 2922 2923

+

2923 2922 2924 2925

+

2925 2924 1713 1193

+

2612 2614 2926 2896

+

2896 2926 2927 2898

+

2898 2927 2928 2900

+

2900 2928 2929 2902

+

2902 2929 2930 2904

+

2904 2930 2931 2906

+

2906 2931 2932 2908

+

2908 2932 2933 2910

+

2910 2933 2934 2912

+

2912 2934 2935 2914

+

2914 2935 2936 2916

+

2916 2936 2937 2918

+

2918 2937 2938 2920

+

2920 2938 2939 2922

+

2922 2939 2940 2924

+

2924 2940 1714 1713

+

2614 2616 2941 2926

+

2926 2941 2942 2927

+

2927 2942 2943 2928

+

2928 2943 2944 2929

+

2929 2944 2945 2930

+

2930 2945 2946 2931

+

2931 2946 2947 2932

+

2932 2947 2948 2933

+

2933 2948 2949 2934

+

2934 2949 2950 2935

+

2935 2950 2951 2936

+

2936 2951 2952 2937

+

2937 2952 2953 2938

+

2938 2953 2954 2939

+

2939 2954 2955 2940

+

2940 2955 1715 1714

+

2616 2618 2956 2941

+

2941 2956 2957 2942

+

2942 2957 2958 2943

+

2943 2958 2959 2944

+

2944 2959 2960 2945

+

2945 2960 2961 2946

+

2946 2961 2962 2947

+

2947 2962 2963 2948

+

2948 2963 2964 2949

+

2949 2964 2965 2950

+

2950 2965 2966 2951

+

2951 2966 2967 2952

+

2952 2967 2968 2953

+

2953 2968 2969 2954

+

2954 2969 2970 2955

+

2955 2970 1716 1715

+

2618 2620 2971 2956

+

2956 2971 2972 2957

+

2957 2972 2973 2958

+

2958 2973 2974 2959

+

2959 2974 2975 2960

+

2960 2975 2976 2961

+

2961 2976 2977 2962

+

2962 2977 2978 2963

+

2963 2978 2979 2964

+

2964 2979 2980 2965

+

2965 2980 2981 2966

+

2966 2981 2982 2967

+

2967 2982 2983 2968

+

2968 2983 2984 2969

+

2969 2984 2985 2970

+

2970 2985 1717 1716

+

2620 2622 2986 2971

+

2971 2986 2987 2972

+

2972 2987 2988 2973

+

2973 2988 2989 2974

+

2974 2989 2990 2975

+

2975 2990 2991 2976

+

2976 2991 2992 2977

+

2977 2992 2993 2978

+

2978 2993 2994 2979

+

2979 2994 2995 2980

+

2980 2995 2996 2981

+

2981 2996 2997 2982

+

2982 2997 2998 2983

+

2983 2998 2999 2984

+

2984 2999 3000 2985

+

2985 3000 1718 1717

+

2622 2624 3001 2986

+

2986 3001 3002 2987

+

2987 3002 3003 2988

+

2988 3003 3004 2989

+

2989 3004 3005 2990

+

2990 3005 3006 2991

+

2991 3006 3007 2992

+

2992 3007 3008 2993

+

2993 3008 3009 2994

+

2994 3009 3010 2995

+

2995 3010 3011 2996

+

2996 3011 3012 2997

+

2997 3012 3013 2998

+

2998 3013 3014 2999

+

2999 3014 3015 3000

+

3000 3015 1719 1718

+

2624 2626 3016 3001

+

3001 3016 3017 3002

+

3002 3017 3018 3003

+

3003 3018 3019 3004

+

3004 3019 3020 3005

+

3005 3020 3021 3006

+

3006 3021 3022 3007

+

3007 3022 3023 3008

+

3008 3023 3024 3009

+

3009 3024 3025 3010

+

3010 3025 3026 3011

+

3011 3026 3027 3012

+

3012 3027 3028 3013

+

3013 3028 3029 3014

+

3014 3029 3030 3015

+

3015 3030 1720 1719

+

2626 2628 3031 3016

+

3016 3031 3032 3017

+

3017 3032 3033 3018

+

3018 3033 3034 3019

+

3019 3034 3035 3020

+

3020 3035 3036 3021

+

3021 3036 3037 3022

+

3022 3037 3038 3023

+

3023 3038 3039 3024

+

3024 3039 3040 3025

+

3025 3040 3041 3026

+

3026 3041 3042 3027

+

3027 3042 3043 3028

+

3028 3043 3044 3029

+

3029 3044 3045 3030

+

3030 3045 1721 1720

+

2628 2630 3046 3031

+

3031 3046 3047 3032

+

3032 3047 3048 3033

+

3033 3048 3049 3034

+

3034 3049 3050 3035

+

3035 3050 3051 3036

+

3036 3051 3052 3037

+

3037 3052 3053 3038

+

3038 3053 3054 3039

+

3039 3054 3055 3040

+

3040 3055 3056 3041

+

3041 3056 3057 3042

+

3042 3057 3058 3043

+

3043 3058 3059 3044

+

3044 3059 3060 3045

+

3045 3060 1722 1721

+

2630 2632 3061 3046

+

3046 3061 3062 3047

+

3047 3062 3063 3048

+

3048 3063 3064 3049

+

3049 3064 3065 3050

+

3050 3065 3066 3051

+

3051 3066 3067 3052

+

3052 3067 3068 3053

+

3053 3068 3069 3054

+

3054 3069 3070 3055

+

3055 3070 3071 3056

+

3056 3071 3072 3057

+

3057 3072 3073 3058

+

3058 3073 3074 3059

+

3059 3074 3075 3060

+

3060 3075 1723 1722

+

2632 2634 3076 3061

+

3061 3076 3077 3062

+

3062 3077 3078 3063

+

3063 3078 3079 3064

+

3064 3079 3080 3065

+

3065 3080 3081 3066

+

3066 3081 3082 3067

+

3067 3082 3083 3068

+

3068 3083 3084 3069

+

3069 3084 3085 3070

+

3070 3085 3086 3071

+

3071 3086 3087 3072

+

3072 3087 3088 3073

+

3073 3088 3089 3074

+

3074 3089 3090 3075

+

3075 3090 1724 1723

+

2634 2636 3091 3076

+

3076 3091 3092 3077

+

3077 3092 3093 3078

+

3078 3093 3094 3079

+

3079 3094 3095 3080

+

3080 3095 3096 3081

+

3081 3096 3097 3082

+

3082 3097 3098 3083

+

3083 3098 3099 3084

+

3084 3099 3100 3085

+

3085 3100 3101 3086

+

3086 3101 3102 3087

+

3087 3102 3103 3088

+

3088 3103 3104 3089

+

3089 3104 3105 3090

+

3090 3105 1725 1724

+

2636 2638 3106 3091

+

3091 3106 3107 3092

+

3092 3107 3108 3093

+

3093 3108 3109 3094

+

3094 3109 3110 3095

+

3095 3110 3111 3096

+

3096 3111 3112 3097

+

3097 3112 3113 3098

+

3098 3113 3114 3099

+

3099 3114 3115 3100

+

3100 3115 3116 3101

+

3101 3116 3117 3102

+

3102 3117 3118 3103

+

3103 3118 3119 3104

+

3104 3119 3120 3105

+

3105 3120 1726 1725

+

2638 2640 3121 3106

+

3106 3121 3122 3107

+

3107 3122 3123 3108

+

3108 3123 3124 3109

+

3109 3124 3125 3110

+

3110 3125 3126 3111

+

3111 3126 3127 3112

+

3112 3127 3128 3113

+

3113 3128 3129 3114

+

3114 3129 3130 3115

+

3115 3130 3131 3116

+

3116 3131 3132 3117

+

3117 3132 3133 3118

+

3118 3133 3134 3119

+

3119 3134 3135 3120

+

3120 3135 1727 1726

+

2640 2642 3136 3121

+

3121 3136 3137 3122

+

3122 3137 3138 3123

+

3123 3138 3139 3124

+

3124 3139 3140 3125

+

3125 3140 3141 3126

+

3126 3141 3142 3127

+

3127 3142 3143 3128

+

3128 3143 3144 3129

+

3129 3144 3145 3130

+

3130 3145 3146 3131

+

3131 3146 3147 3132

+

3132 3147 3148 3133

+

3133 3148 3149 3134

+

3134 3149 3150 3135

+

3135 3150 288 1727

+

2282 2897 3151 2283

+

2283 3151 3152 2319

+

2319 3152 3153 2341

+

2341 3153 3154 2359

+

2359 3154 3155 2377

+

2377 3155 3156 2395

+

2395 3156 3157 2413

+

2413 3157 3158 2431

+

2431 3158 3159 2449

+

2449 3159 3160 2467

+

2467 3160 3161 2485

+

2485 3161 3162 2503

+

2503 3162 3163 2521

+

2521 3163 2557 2539

+

2310 2333 2340 2849

+

2539 2559 2588 2540

+

2897 2899 3164 3151

+

3151 3164 3165 3152

+

3152 3165 3166 3153

+

3153 3166 3167 3154

+

3154 3167 3168 3155

+

3155 3168 3169 3156

+

3156 3169 3170 3157

+

3157 3170 3171 3158

+

3158 3171 3172 3159

+

3159 3172 3173 3160

+

3160 3173 3174 3161

+

3161 3174 3175 3162

+

3162 3175 3176 3163

+

3163 3176 2894 2557

+

2590 3177 3178 2591

+

2894 3179 3180 2895

+

2899 2901 3181 3164

+

3164 3181 3182 3165

+

3165 3182 3183 3166

+

3166 3183 3184 3167

+

3167 3184 3185 3168

+

3168 3185 3186 3169

+

3169 3186 3187 3170

+

3170 3187 3188 3171

+

3171 3188 3189 3172

+

3172 3189 3190 3173

+

3173 3190 3191 3174

+

3174 3191 3192 3175

+

3175 3192 3193 3176

+

3176 3193 3179 2894

+

3177 3194 3195 3178

+

3179 3196 3197 3180

+

2901 2903 3198 3181

+

3181 3198 3199 3182

+

3182 3199 3200 3183

+

3183 3200 3201 3184

+

3184 3201 3202 3185

+

3185 3202 3203 3186

+

3186 3203 3204 3187

+

3187 3204 3205 3188

+

3188 3205 3206 3189

+

3189 3206 3207 3190

+

3190 3207 3208 3191

+

3191 3208 3209 3192

+

3192 3209 3210 3193

+

3193 3210 3196 3179

+

3194 3211 3212 3195

+

3196 3213 3214 3197

+

2903 2905 3215 3198

+

3198 3215 3216 3199

+

3199 3216 3217 3200

+

3200 3217 3218 3201

+

3201 3218 3219 3202

+

3202 3219 3220 3203

+

3203 3220 3221 3204

+

3204 3221 3222 3205

+

3205 3222 3223 3206

+

3206 3223 3224 3207

+

3207 3224 3225 3208

+

3208 3225 3226 3209

+

3209 3226 3227 3210

+

3210 3227 3213 3196

+

3211 3228 3229 3212

+

3213 3230 3231 3214

+

2905 2907 3232 3215

+

3215 3232 3233 3216

+

3216 3233 3234 3217

+

3217 3234 3235 3218

+

3218 3235 3236 3219

+

3219 3236 3237 3220

+

3220 3237 3238 3221

+

3221 3238 3239 3222

+

3222 3239 3240 3223

+

3223 3240 3241 3224

+

3224 3241 3242 3225

+

3225 3242 3243 3226

+

3226 3243 3244 3227

+

3227 3244 3230 3213

+

3228 3245 3246 3229

+

3230 3247 3248 3231

+

2907 2909 3249 3232

+

3232 3249 3250 3233

+

3233 3250 3251 3234

+

3234 3251 3252 3235

+

3235 3252 3253 3236

+

3236 3253 3254 3237

+

3237 3254 3255 3238

+

3238 3255 3256 3239

+

3239 3256 3257 3240

+

3240 3257 3258 3241

+

3241 3258 3259 3242

+

3242 3259 3260 3243

+

3243 3260 3261 3244

+

3244 3261 3247 3230

+

3245 3262 3263 3246

+

3247 3264 3265 3248

+

2909 2911 3266 3249

+

3249 3266 3267 3250

+

3250 3267 3268 3251

+

3251 3268 3269 3252

+

3252 3269 3270 3253

+

3253 3270 3271 3254

+

3254 3271 3272 3255

+

3255 3272 3273 3256

+

3256 3273 3274 3257

+

3257 3274 3275 3258

+

3258 3275 3276 3259

+

3259 3276 3277 3260

+

3260 3277 3278 3261

+

3261 3278 3264 3247

+

3262 3279 3280 3263

+

3264 3281 3282 3265

+

2911 2913 3283 3266

+

3266 3283 3284 3267

+

3267 3284 3285 3268

+

3268 3285 3286 3269

+

3269 3286 3287 3270

+

3270 3287 3288 3271

+

3271 3288 3289 3272

+

3272 3289 3290 3273

+

3273 3290 3291 3274

+

3274 3291 3292 3275

+

3275 3292 3293 3276

+

3276 3293 3294 3277

+

3277 3294 3295 3278

+

3278 3295 3281 3264

+

3279 3296 3297 3280

+

3281 3298 3299 3282

+

2913 2915 3300 3283

+

3283 3300 3301 3284

+

3284 3301 3302 3285

+

3285 3302 3303 3286

+

3286 3303 3304 3287

+

3287 3304 3305 3288

+

3288 3305 3306 3289

+

3289 3306 3307 3290

+

3290 3307 3308 3291

+

3291 3308 3309 3292

+

3292 3309 3310 3293

+

3293 3310 3311 3294

+

3294 3311 3312 3295

+

3295 3312 3298 3281

+

3296 3313 3314 3297

+

3298 3315 3316 3299

+

2915 2917 3317 3300

+

3300 3317 3318 3301

+

3301 3318 3319 3302

+

3302 3319 3320 3303

+

3303 3320 3321 3304

+

3304 3321 3322 3305

+

3305 3322 3323 3306

+

3306 3323 3324 3307

+

3307 3324 3325 3308

+

3308 3325 3326 3309

+

3309 3326 3327 3310

+

3310 3327 3328 3311

+

3311 3328 3329 3312

+

3312 3329 3315 3298

+

3313 3330 3331 3314

+

3315 3332 3333 3316

+

2917 2919 3334 3317

+

3317 3334 3335 3318

+

3318 3335 3336 3319

+

3319 3336 3337 3320

+

3320 3337 3338 3321

+

3321 3338 3339 3322

+

3322 3339 3340 3323

+

3323 3340 3341 3324

+

3324 3341 3342 3325

+

3325 3342 3343 3326

+

3326 3343 3344 3327

+

3327 3344 3345 3328

+

3328 3345 3346 3329

+

3329 3346 3332 3315

+

3330 3347 3348 3331

+

3332 3349 3350 3333

+

2919 2921 3351 3334

+

3334 3351 3352 3335

+

3335 3352 3353 3336

+

3336 3353 3354 3337

+

3337 3354 3355 3338

+

3338 3355 3356 3339

+

3339 3356 3357 3340

+

3340 3357 3358 3341

+

3341 3358 3359 3342

+

3342 3359 3360 3343

+

3343 3360 3361 3344

+

3344 3361 3362 3345

+

3345 3362 3363 3346

+

3346 3363 3349 3332

+

3347 3364 3365 3348

+

3349 3366 3367 3350

+

2921 2923 3368 3351

+

3351 3368 3369 3352

+

3352 3369 3370 3353

+

3353 3370 3371 3354

+

3354 3371 3372 3355

+

3355 3372 3373 3356

+

3356 3373 3374 3357

+

3357 3374 3375 3358

+

3358 3375 3376 3359

+

3359 3376 3377 3360

+

3360 3377 3378 3361

+

3361 3378 3379 3362

+

3362 3379 3380 3363

+

3363 3380 3366 3349

+

3364 3381 3382 3365

+

3366 3383 3384 3367

+

2923 2925 3385 3368

+

3368 3385 3386 3369

+

3369 3386 3387 3370

+

3370 3387 3388 3371

+

3371 3388 3389 3372

+

3372 3389 3390 3373

+

3373 3390 3391 3374

+

3374 3391 3392 3375

+

3375 3392 3393 3376

+

3376 3393 3394 3377

+

3377 3394 3395 3378

+

3378 3395 3396 3379

+

3379 3396 3397 3380

+

3380 3397 3383 3366

+

3381 3398 3399 3382

+

3383 1414 1468 3384

+

2925 1193 1192 3385

+

3385 1192 1210 3386

+

3386 1210 1227 3387

+

3387 1227 1244 3388

+

3388 1244 1261 3389

+

3389 1261 1278 3390

+

3390 1278 1295 3391

+

3391 1295 1312 3392

+

3392 1312 1329 3393

+

3393 1329 1346 3394

+

3394 1346 1363 3395

+

3395 1363 1380 3396

+

3396 1380 1397 3397

+

3397 1397 1414 3383

+

3398 1449 1448 3399

+

3400 3401 3402 3403

+

3404 3405 3406 3407

+

3407 3406 3408 3409

+

3409 3408 3410 3411

+

3411 3410 3412 3413

+

3413 3412 3414 3415

+

3415 3414 3416 3417

+

3417 3416 3418 3419

+

3419 3418 3420 3421

+

3421 3420 3422 3423

+

3423 3422 3424 3425

+

3425 3424 3426 3427

+

3427 3426 3428 3429

+

3429 3428 3430 3431

+

3431 3430 3432 3400

+

3433 3434 3435 3436

+

3437 3438 3439 3440

+

3405 3441 3442 3406

+

3406 3442 3443 3408

+

3408 3443 3444 3410

+

3410 3444 3445 3412

+

3412 3445 3446 3414

+

3414 3446 3447 3416

+

3416 3447 3448 3418

+

3418 3448 3449 3420

+

3420 3449 3450 3422

+

3422 3450 3451 3424

+

3424 3451 3452 3426

+

3426 3452 3453 3428

+

3428 3453 3454 3430

+

3430 3454 3455 3432

+

3456 3457 3458 3459

+

3455 3460 3461 3462

+

3441 3463 3464 3442

+

3442 3464 3465 3443

+

3443 3465 3466 3444

+

3444 3466 3467 3445

+

3445 3467 3468 3446

+

3446 3468 3469 3447

+

3447 3469 3470 3448

+

3448 3470 3471 3449

+

3449 3471 3472 3450

+

3450 3472 3473 3451

+

3451 3473 3474 3452

+

3452 3474 3475 3453

+

3453 3475 3476 3454

+

3454 3476 3460 3455

+

3457 3477 3478 3458

+

3460 3479 3480 3461

+

3463 3481 3482 3464

+

3464 3482 3483 3465

+

3465 3483 3484 3466

+

3466 3484 3485 3467

+

3467 3485 3486 3468

+

3468 3486 3487 3469

+

3469 3487 3488 3470

+

3470 3488 3489 3471

+

3471 3489 3490 3472

+

3472 3490 3491 3473

+

3473 3491 3492 3474

+

3474 3492 3493 3475

+

3475 3493 3494 3476

+

3476 3494 3479 3460

+

3477 3495 3496 3478

+

3479 3497 3498 3480

+

3481 3499 3500 3482

+

3482 3500 3501 3483

+

3483 3501 3502 3484

+

3484 3502 3503 3485

+

3485 3503 3504 3486

+

3486 3504 3505 3487

+

3487 3505 3506 3488

+

3488 3506 3507 3489

+

3489 3507 3508 3490

+

3490 3508 3509 3491

+

3491 3509 3510 3492

+

3492 3510 3511 3493

+

3493 3511 3512 3494

+

3494 3512 3497 3479

+

3495 3513 3514 3496

+

3497 3515 3516 3498

+

3499 3517 3518 3500

+

3500 3518 3519 3501

+

3501 3519 3520 3502

+

3502 3520 3521 3503

+

3503 3521 3522 3504

+

3504 3522 3523 3505

+

3505 3523 3524 3506

+

3506 3524 3525 3507

+

3507 3525 3526 3508

+

3508 3526 3527 3509

+

3509 3527 3528 3510

+

3510 3528 3529 3511

+

3511 3529 3530 3512

+

3512 3530 3515 3497

+

3513 3531 3532 3514

+

3515 3533 3534 3516

+

3517 3535 3536 3518

+

3518 3536 3537 3519

+

3519 3537 3538 3520

+

3520 3538 3539 3521

+

3521 3539 3540 3522

+

3522 3540 3541 3523

+

3523 3541 3542 3524

+

3524 3542 3543 3525

+

3525 3543 3544 3526

+

3526 3544 3545 3527

+

3527 3545 3546 3528

+

3528 3546 3547 3529

+

3529 3547 3548 3530

+

3530 3548 3533 3515

+

3531 3549 3550 3532

+

3533 3551 3552 3534

+

3535 3553 3554 3536

+

3536 3554 3555 3537

+

3537 3555 3556 3538

+

3538 3556 3557 3539

+

3539 3557 3558 3540

+

3540 3558 3559 3541

+

3541 3559 3560 3542

+

3542 3560 3561 3543

+

3543 3561 3562 3544

+

3544 3562 3563 3545

+

3545 3563 3564 3546

+

3546 3564 3565 3547

+

3547 3565 3566 3548

+

3548 3566 3551 3533

+

3549 3567 3568 3550

+

3551 3569 3570 3552

+

3553 3571 3572 3554

+

3554 3572 3573 3555

+

3555 3573 3574 3556

+

3556 3574 3575 3557

+

3557 3575 3576 3558

+

3558 3576 3577 3559

+

3559 3577 3578 3560

+

3560 3578 3579 3561

+

3561 3579 3580 3562

+

3562 3580 3581 3563

+

3563 3581 3582 3564

+

3564 3582 3583 3565

+

3565 3583 3584 3566

+

3566 3584 3569 3551

+

3567 3585 3586 3568

+

3569 3587 3588 3570

+

3571 3589 3590 3572

+

3572 3590 3591 3573

+

3573 3591 3592 3574

+

3574 3592 3593 3575

+

3575 3593 3594 3576

+

3576 3594 3595 3577

+

3577 3595 3596 3578

+

3578 3596 3597 3579

+

3579 3597 3598 3580

+

3580 3598 3599 3581

+

3581 3599 3600 3582

+

3582 3600 3601 3583

+

3583 3601 3602 3584

+

3584 3602 3587 3569

+

3585 3603 3604 3586

+

3587 3605 3606 3588

+

3589 3607 3608 3590

+

3590 3608 3609 3591

+

3591 3609 3610 3592

+

3592 3610 3611 3593

+

3593 3611 3612 3594

+

3594 3612 3613 3595

+

3595 3613 3614 3596

+

3596 3614 3615 3597

+

3597 3615 3616 3598

+

3598 3616 3617 3599

+

3599 3617 3618 3600

+

3600 3618 3619 3601

+

3601 3619 3620 3602

+

3602 3620 3605 3587

+

3603 3621 3622 3604

+

3605 3623 3624 3606

+

3607 3625 3626 3608

+

3608 3626 3627 3609

+

3609 3627 3628 3610

+

3610 3628 3629 3611

+

3611 3629 3630 3612

+

3612 3630 3631 3613

+

3613 3631 3632 3614

+

3614 3632 3633 3615

+

3615 3633 3634 3616

+

3616 3634 3635 3617

+

3617 3635 3636 3618

+

3618 3636 3637 3619

+

3619 3637 3638 3620

+

3620 3638 3623 3605

+

3621 3639 3640 3622

+

3623 3641 3642 3624

+

3625 3643 3644 3626

+

3626 3644 3645 3627

+

3627 3645 3646 3628

+

3628 3646 3647 3629

+

3629 3647 3648 3630

+

3630 3648 3649 3631

+

3631 3649 3650 3632

+

3632 3650 3651 3633

+

3633 3651 3652 3634

+

3634 3652 3653 3635

+

3635 3653 3654 3636

+

3636 3654 3655 3637

+

3637 3655 3656 3638

+

3638 3656 3641 3623

+

3639 3657 3658 3640

+

3641 3659 3660 3642

+

3643 3661 3662 3644

+

3644 3662 3663 3645

+

3645 3663 3664 3646

+

3646 3664 3665 3647

+

3647 3665 3666 3648

+

3648 3666 3667 3649

+

3649 3667 3668 3650

+

3650 3668 3669 3651

+

3651 3669 3670 3652

+

3652 3670 3671 3653

+

3653 3671 3672 3654

+

3654 3672 3673 3655

+

3655 3673 3674 3656

+

3656 3674 3659 3641

+

3657 3675 3676 3658

+

3659 3677 3678 3660

+

3661 3679 3680 3662

+

3662 3680 3681 3663

+

3663 3681 3682 3664

+

3664 3682 3683 3665

+

3665 3683 3684 3666

+

3666 3684 3685 3667

+

3667 3685 3686 3668

+

3668 3686 3687 3669

+

3669 3687 3688 3670

+

3670 3688 3689 3671

+

3671 3689 3690 3672

+

3672 3690 3691 3673

+

3673 3691 3692 3674

+

3674 3692 3677 3659

+

3675 3693 3694 3676

+

3677 2848 2893 3678

+

3679 2642 2641 3680

+

3680 2641 2658 3681

+

3681 2658 2674 3682

+

3682 2674 2690 3683

+

3683 2690 2706 3684

+

3684 2706 2722 3685

+

3685 2722 2738 3686

+

3686 2738 2754 3687

+

3687 2754 2770 3688

+

3688 2770 2786 3689

+

3689 2786 2802 3690

+

3690 2802 2818 3691

+

3691 2818 2834 3692

+

3692 2834 2848 3677

+

3693 2879 2878 3694

+

3695 3696 3697 3698

+

3404 3407 3699 3700

+

3700 3699 3701 3702

+

3702 3701 3703 3704

+

3704 3703 3705 3706

+

3706 3705 3707 3708

+

3708 3707 3709 3710

+

3710 3709 3711 3712

+

3712 3711 3713 3714

+

3714 3713 3715 3716

+

3716 3715 3717 3718

+

3718 3717 3719 3720

+

3720 3719 3721 3722

+

3722 3721 3723 3724

+

3724 3723 3695 3437

+

3725 3726 3727 3728

+

3432 3455 3462 3729

+

3407 3409 3730 3699

+

3699 3730 3731 3701

+

3701 3731 3732 3703

+

3703 3732 3733 3705

+

3705 3733 3734 3707

+

3707 3734 3735 3709

+

3709 3735 3736 3711

+

3711 3736 3737 3713

+

3713 3737 3738 3715

+

3715 3738 3739 3717

+

3717 3739 3740 3719

+

3719 3740 3741 3721

+

3721 3741 3742 3723

+

3723 3742 3696 3695

+

3743 3744 3745 3746

+

3696 3747 3748 3697

+

3409 3411 3749 3730

+

3730 3749 3750 3731

+

3731 3750 3751 3732

+

3732 3751 3752 3733

+

3733 3752 3753 3734

+

3734 3753 3754 3735

+

3735 3754 3755 3736

+

3736 3755 3756 3737

+

3737 3756 3757 3738

+

3738 3757 3758 3739

+

3739 3758 3759 3740

+

3740 3759 3760 3741

+

3741 3760 3761 3742

+

3742 3761 3747 3696

+

3744 3762 3763 3745

+

3747 3764 3765 3748

+

3411 3413 3766 3749

+

3749 3766 3767 3750

+

3750 3767 3768 3751

+

3751 3768 3769 3752

+

3752 3769 3770 3753

+

3753 3770 3771 3754

+

3754 3771 3772 3755

+

3755 3772 3773 3756

+

3756 3773 3774 3757

+

3757 3774 3775 3758

+

3758 3775 3776 3759

+

3759 3776 3777 3760

+

3760 3777 3778 3761

+

3761 3778 3764 3747

+

3762 3779 3780 3763

+

3764 3781 3782 3765

+

3413 3415 3783 3766

+

3766 3783 3784 3767

+

3767 3784 3785 3768

+

3768 3785 3786 3769

+

3769 3786 3787 3770

+

3770 3787 3788 3771

+

3771 3788 3789 3772

+

3772 3789 3790 3773

+

3773 3790 3791 3774

+

3774 3791 3792 3775

+

3775 3792 3793 3776

+

3776 3793 3794 3777

+

3777 3794 3795 3778

+

3778 3795 3781 3764

+

3779 3796 3797 3780

+

3781 3798 3799 3782

+

3415 3417 3800 3783

+

3783 3800 3801 3784

+

3784 3801 3802 3785

+

3785 3802 3803 3786

+

3786 3803 3804 3787

+

3787 3804 3805 3788

+

3788 3805 3806 3789

+

3789 3806 3807 3790

+

3790 3807 3808 3791

+

3791 3808 3809 3792

+

3792 3809 3810 3793

+

3793 3810 3811 3794

+

3794 3811 3812 3795

+

3795 3812 3798 3781

+

3796 3813 3814 3797

+

3798 3815 3816 3799

+

3417 3419 3817 3800

+

3800 3817 3818 3801

+

3801 3818 3819 3802

+

3802 3819 3820 3803

+

3803 3820 3821 3804

+

3804 3821 3822 3805

+

3805 3822 3823 3806

+

3806 3823 3824 3807

+

3807 3824 3825 3808

+

3808 3825 3826 3809

+

3809 3826 3827 3810

+

3810 3827 3828 3811

+

3811 3828 3829 3812

+

3812 3829 3815 3798

+

3813 3830 3831 3814

+

3815 3832 3833 3816

+

3419 3421 3834 3817

+

3817 3834 3835 3818

+

3818 3835 3836 3819

+

3819 3836 3837 3820

+

3820 3837 3838 3821

+

3821 3838 3839 3822

+

3822 3839 3840 3823

+

3823 3840 3841 3824

+

3824 3841 3842 3825

+

3825 3842 3843 3826

+

3826 3843 3844 3827

+

3827 3844 3845 3828

+

3828 3845 3846 3829

+

3829 3846 3832 3815

+

3830 3847 3848 3831

+

3832 3849 3850 3833

+

3421 3423 3851 3834

+

3834 3851 3852 3835

+

3835 3852 3853 3836

+

3836 3853 3854 3837

+

3837 3854 3855 3838

+

3838 3855 3856 3839

+

3839 3856 3857 3840

+

3840 3857 3858 3841

+

3841 3858 3859 3842

+

3842 3859 3860 3843

+

3843 3860 3861 3844

+

3844 3861 3862 3845

+

3845 3862 3863 3846

+

3846 3863 3849 3832

+

3847 3864 3865 3848

+

3849 3866 3867 3850

+

3423 3425 3868 3851

+

3851 3868 3869 3852

+

3852 3869 3870 3853

+

3853 3870 3871 3854

+

3854 3871 3872 3855

+

3855 3872 3873 3856

+

3856 3873 3874 3857

+

3857 3874 3875 3858

+

3858 3875 3876 3859

+

3859 3876 3877 3860

+

3860 3877 3878 3861

+

3861 3878 3879 3862

+

3862 3879 3880 3863

+

3863 3880 3866 3849

+

3864 3881 3882 3865

+

3866 3883 3884 3867

+

3425 3427 3885 3868

+

3868 3885 3886 3869

+

3869 3886 3887 3870

+

3870 3887 3888 3871

+

3871 3888 3889 3872

+

3872 3889 3890 3873

+

3873 3890 3891 3874

+

3874 3891 3892 3875

+

3875 3892 3893 3876

+

3876 3893 3894 3877

+

3877 3894 3895 3878

+

3878 3895 3896 3879

+

3879 3896 3897 3880

+

3880 3897 3883 3866

+

3881 3898 3899 3882

+

3883 3900 3901 3884

+

3427 3429 3902 3885

+

3885 3902 3903 3886

+

3886 3903 3904 3887

+

3887 3904 3905 3888

+

3888 3905 3906 3889

+

3889 3906 3907 3890

+

3890 3907 3908 3891

+

3891 3908 3909 3892

+

3892 3909 3910 3893

+

3893 3910 3911 3894

+

3894 3911 3912 3895

+

3895 3912 3913 3896

+

3896 3913 3914 3897

+

3897 3914 3900 3883

+

3898 3915 3916 3899

+

3900 3917 3918 3901

+

3429 3431 3919 3902

+

3902 3919 3920 3903

+

3903 3920 3921 3904

+

3904 3921 3922 3905

+

3905 3922 3923 3906

+

3906 3923 3924 3907

+

3907 3924 3925 3908

+

3908 3925 3926 3909

+

3909 3926 3927 3910

+

3910 3927 3928 3911

+

3911 3928 3929 3912

+

3912 3929 3930 3913

+

3913 3930 3931 3914

+

3914 3931 3917 3900

+

3915 3932 3933 3916

+

3917 3934 3935 3918

+

3431 3400 3403 3919

+

3919 3403 3936 3920

+

3920 3936 3937 3921

+

3921 3937 3938 3922

+

3922 3938 3939 3923

+

3923 3939 3940 3924

+

3924 3940 3941 3925

+

3925 3941 3942 3926

+

3926 3942 3943 3927

+

3927 3943 3944 3928

+

3928 3944 3945 3929

+

3929 3945 3946 3930

+

3930 3946 3947 3931

+

3931 3947 3934 3917

+

3932 3948 3949 3933

+

3934 3950 3951 3935

+

3400 3432 3729 3401

+

3436 3435 3952 3953

+

3953 3952 3954 3955

+

3955 3954 3956 3957

+

3957 3956 3958 3959

+

3959 3958 3960 3961

+

3961 3960 3962 3963

+

3963 3962 3964 3965

+

3965 3964 3966 3967

+

3967 3966 3968 3969

+

3969 3968 3970 3971

+

3971 3970 3972 3973

+

3973 3972 3974 3975

+

3975 3974 3976 3977

+

3948 3978 3979 3949

+

3403 3402 3980 3936

+

3433 3456 3459 3434

+

3936 3980 3981 3937

+

3937 3981 3982 3938

+

3938 3982 3983 3939

+

3939 3983 3984 3940

+

3940 3984 3985 3941

+

3941 3985 3986 3942

+

3942 3986 3987 3943

+

3943 3987 3988 3944

+

3944 3988 3989 3945

+

3945 3989 3990 3946

+

3946 3990 3991 3947

+

3947 3991 3950 3934

+

3977 3976 3992 3993

+

3994 3995 3996 3997

+

3440 3439 3998 3999

+

3404 3700 4000 4001

+

4001 4000 4002 4003

+

4003 4002 4004 4005

+

4005 4004 4006 4007

+

4007 4006 4008 4009

+

4009 4008 4010 4011

+

4011 4010 4012 4013

+

4013 4012 4014 4015

+

4015 4014 4016 4017

+

4017 4016 4018 4019

+

4019 4018 4020 4021

+

4021 4020 4022 4023

+

4023 4022 4024 4025

+

4025 4024 4026 4027

+

4027 4026 4028 4029

+

4029 4028 567 33

+

3700 3702 4030 4000

+

4000 4030 4031 4002

+

4002 4031 4032 4004

+

4004 4032 4033 4006

+

4006 4033 4034 4008

+

4008 4034 4035 4010

+

4010 4035 4036 4012

+

4012 4036 4037 4014

+

4014 4037 4038 4016

+

4016 4038 4039 4018

+

4018 4039 4040 4020

+

4020 4040 4041 4022

+

4022 4041 4042 4024

+

4024 4042 4043 4026

+

4026 4043 4044 4028

+

4028 4044 568 567

+

3702 3704 4045 4030

+

4030 4045 4046 4031

+

4031 4046 4047 4032

+

4032 4047 4048 4033

+

4033 4048 4049 4034

+

4034 4049 4050 4035

+

4035 4050 4051 4036

+

4036 4051 4052 4037

+

4037 4052 4053 4038

+

4038 4053 4054 4039

+

4039 4054 4055 4040

+

4040 4055 4056 4041

+

4041 4056 4057 4042

+

4042 4057 4058 4043

+

4043 4058 4059 4044

+

4044 4059 569 568

+

3704 3706 4060 4045

+

4045 4060 4061 4046

+

4046 4061 4062 4047

+

4047 4062 4063 4048

+

4048 4063 4064 4049

+

4049 4064 4065 4050

+

4050 4065 4066 4051

+

4051 4066 4067 4052

+

4052 4067 4068 4053

+

4053 4068 4069 4054

+

4054 4069 4070 4055

+

4055 4070 4071 4056

+

4056 4071 4072 4057

+

4057 4072 4073 4058

+

4058 4073 4074 4059

+

4059 4074 570 569

+

3706 3708 4075 4060

+

4060 4075 4076 4061

+

4061 4076 4077 4062

+

4062 4077 4078 4063

+

4063 4078 4079 4064

+

4064 4079 4080 4065

+

4065 4080 4081 4066

+

4066 4081 4082 4067

+

4067 4082 4083 4068

+

4068 4083 4084 4069

+

4069 4084 4085 4070

+

4070 4085 4086 4071

+

4071 4086 4087 4072

+

4072 4087 4088 4073

+

4073 4088 4089 4074

+

4074 4089 571 570

+

3708 3710 4090 4075

+

4075 4090 4091 4076

+

4076 4091 4092 4077

+

4077 4092 4093 4078

+

4078 4093 4094 4079

+

4079 4094 4095 4080

+

4080 4095 4096 4081

+

4081 4096 4097 4082

+

4082 4097 4098 4083

+

4083 4098 4099 4084

+

4084 4099 4100 4085

+

4085 4100 4101 4086

+

4086 4101 4102 4087

+

4087 4102 4103 4088

+

4088 4103 4104 4089

+

4089 4104 572 571

+

3710 3712 4105 4090

+

4090 4105 4106 4091

+

4091 4106 4107 4092

+

4092 4107 4108 4093

+

4093 4108 4109 4094

+

4094 4109 4110 4095

+

4095 4110 4111 4096

+

4096 4111 4112 4097

+

4097 4112 4113 4098

+

4098 4113 4114 4099

+

4099 4114 4115 4100

+

4100 4115 4116 4101

+

4101 4116 4117 4102

+

4102 4117 4118 4103

+

4103 4118 4119 4104

+

4104 4119 573 572

+

3712 3714 4120 4105

+

4105 4120 4121 4106

+

4106 4121 4122 4107

+

4107 4122 4123 4108

+

4108 4123 4124 4109

+

4109 4124 4125 4110

+

4110 4125 4126 4111

+

4111 4126 4127 4112

+

4112 4127 4128 4113

+

4113 4128 4129 4114

+

4114 4129 4130 4115

+

4115 4130 4131 4116

+

4116 4131 4132 4117

+

4117 4132 4133 4118

+

4118 4133 4134 4119

+

4119 4134 574 573

+

3714 3716 4135 4120

+

4120 4135 4136 4121

+

4121 4136 4137 4122

+

4122 4137 4138 4123

+

4123 4138 4139 4124

+

4124 4139 4140 4125

+

4125 4140 4141 4126

+

4126 4141 4142 4127

+

4127 4142 4143 4128

+

4128 4143 4144 4129

+

4129 4144 4145 4130

+

4130 4145 4146 4131

+

4131 4146 4147 4132

+

4132 4147 4148 4133

+

4133 4148 4149 4134

+

4134 4149 575 574

+

3716 3718 4150 4135

+

4135 4150 4151 4136

+

4136 4151 4152 4137

+

4137 4152 4153 4138

+

4138 4153 4154 4139

+

4139 4154 4155 4140

+

4140 4155 4156 4141

+

4141 4156 4157 4142

+

4142 4157 4158 4143

+

4143 4158 4159 4144

+

4144 4159 4160 4145

+

4145 4160 4161 4146

+

4146 4161 4162 4147

+

4147 4162 4163 4148

+

4148 4163 4164 4149

+

4149 4164 576 575

+

3718 3720 4165 4150

+

4150 4165 4166 4151

+

4151 4166 4167 4152

+

4152 4167 4168 4153

+

4153 4168 4169 4154

+

4154 4169 4170 4155

+

4155 4170 4171 4156

+

4156 4171 4172 4157

+

4157 4172 4173 4158

+

4158 4173 4174 4159

+

4159 4174 4175 4160

+

4160 4175 4176 4161

+

4161 4176 4177 4162

+

4162 4177 4178 4163

+

4163 4178 4179 4164

+

4164 4179 577 576

+

3720 3722 4180 4165

+

4165 4180 4181 4166

+

4166 4181 4182 4167

+

4167 4182 4183 4168

+

4168 4183 4184 4169

+

4169 4184 4185 4170

+

4170 4185 4186 4171

+

4171 4186 4187 4172

+

4172 4187 4188 4173

+

4173 4188 4189 4174

+

4174 4189 4190 4175

+

4175 4190 4191 4176

+

4176 4191 4192 4177

+

4177 4192 4193 4178

+

4178 4193 4194 4179

+

4179 4194 578 577

+

3722 3724 4195 4180

+

4180 4195 4196 4181

+

4181 4196 4197 4182

+

4182 4197 4198 4183

+

4183 4198 4199 4184

+

4184 4199 4200 4185

+

4185 4200 4201 4186

+

4186 4201 4202 4187

+

4187 4202 4203 4188

+

4188 4203 4204 4189

+

4189 4204 4205 4190

+

4190 4205 4206 4191

+

4191 4206 4207 4192

+

4192 4207 4208 4193

+

4193 4208 4209 4194

+

4194 4209 579 578

+

3724 3437 3440 4195

+

4195 3440 3999 4196

+

4196 3999 4210 4197

+

4197 4210 4211 4198

+

4198 4211 4212 4199

+

4199 4212 4213 4200

+

4200 4213 4214 4201

+

4201 4214 4215 4202

+

4202 4215 4216 4203

+

4203 4216 4217 4204

+

4204 4217 4218 4205

+

4205 4218 4219 4206

+

4206 4219 4220 4207

+

4207 4220 4221 4208

+

4208 4221 4222 4209

+

4209 4222 565 579

+

3437 3695 3698 3438

+

3728 3727 4223 4224

+

4224 4223 4225 4226

+

4226 4225 4227 4228

+

4228 4227 4229 4230

+

4230 4229 4231 4232

+

4232 4231 4233 4234

+

4234 4233 4235 4236

+

4236 4235 4237 4238

+

4238 4237 4239 4240

+

4240 4239 4241 4242

+

4242 4241 4243 4244

+

4244 4243 4245 4246

+

4246 4245 4247 4248

+

4248 4247 4249 4250

+

4250 4249 581 580

+

3725 3743 3746 3726

+

3999 3998 4251 4210

+

4210 4251 4252 4211

+

4211 4252 4253 4212

+

4212 4253 4254 4213

+

4213 4254 4255 4214

+

4214 4255 4256 4215

+

4215 4256 4257 4216

+

4216 4257 4258 4217

+

4217 4258 4259 4218

+

4218 4259 4260 4219

+

4219 4260 4261 4220

+

4220 4261 4262 4221

+

4221 4262 4263 4222

+

4222 4263 566 565

+

3404 4001 4264 3405

+

3405 4264 4265 3441

+

3441 4265 4266 3463

+

3463 4266 4267 3481

+

3481 4267 4268 3499

+

3499 4268 4269 3517

+

3517 4269 4270 3535

+

3535 4270 4271 3553

+

3553 4271 4272 3571

+

3571 4272 4273 3589

+

3589 4273 4274 3607

+

3607 4274 4275 3625

+

3625 4275 4276 3643

+

3643 4276 4277 3661

+

3661 4277 4278 3679

+

3679 4278 3136 2642

+

4001 4003 4279 4264

+

4264 4279 4280 4265

+

4265 4280 4281 4266

+

4266 4281 4282 4267

+

4267 4282 4283 4268

+

4268 4283 4284 4269

+

4269 4284 4285 4270

+

4270 4285 4286 4271

+

4271 4286 4287 4272

+

4272 4287 4288 4273

+

4273 4288 4289 4274

+

4274 4289 4290 4275

+

4275 4290 4291 4276

+

4276 4291 4292 4277

+

4277 4292 4293 4278

+

4278 4293 3137 3136

+

4003 4005 4294 4279

+

4279 4294 4295 4280

+

4280 4295 4296 4281

+

4281 4296 4297 4282

+

4282 4297 4298 4283

+

4283 4298 4299 4284

+

4284 4299 4300 4285

+

4285 4300 4301 4286

+

4286 4301 4302 4287

+

4287 4302 4303 4288

+

4288 4303 4304 4289

+

4289 4304 4305 4290

+

4290 4305 4306 4291

+

4291 4306 4307 4292

+

4292 4307 4308 4293

+

4293 4308 3138 3137

+

4005 4007 4309 4294

+

4294 4309 4310 4295

+

4295 4310 4311 4296

+

4296 4311 4312 4297

+

4297 4312 4313 4298

+

4298 4313 4314 4299

+

4299 4314 4315 4300

+

4300 4315 4316 4301

+

4301 4316 4317 4302

+

4302 4317 4318 4303

+

4303 4318 4319 4304

+

4304 4319 4320 4305

+

4305 4320 4321 4306

+

4306 4321 4322 4307

+

4307 4322 4323 4308

+

4308 4323 3139 3138

+

4007 4009 4324 4309

+

4309 4324 4325 4310

+

4310 4325 4326 4311

+

4311 4326 4327 4312

+

4312 4327 4328 4313

+

4313 4328 4329 4314

+

4314 4329 4330 4315

+

4315 4330 4331 4316

+

4316 4331 4332 4317

+

4317 4332 4333 4318

+

4318 4333 4334 4319

+

4319 4334 4335 4320

+

4320 4335 4336 4321

+

4321 4336 4337 4322

+

4322 4337 4338 4323

+

4323 4338 3140 3139

+

4009 4011 4339 4324

+

4324 4339 4340 4325

+

4325 4340 4341 4326

+

4326 4341 4342 4327

+

4327 4342 4343 4328

+

4328 4343 4344 4329

+

4329 4344 4345 4330

+

4330 4345 4346 4331

+

4331 4346 4347 4332

+

4332 4347 4348 4333

+

4333 4348 4349 4334

+

4334 4349 4350 4335

+

4335 4350 4351 4336

+

4336 4351 4352 4337

+

4337 4352 4353 4338

+

4338 4353 3141 3140

+

4011 4013 4354 4339

+

4339 4354 4355 4340

+

4340 4355 4356 4341

+

4341 4356 4357 4342

+

4342 4357 4358 4343

+

4343 4358 4359 4344

+

4344 4359 4360 4345

+

4345 4360 4361 4346

+

4346 4361 4362 4347

+

4347 4362 4363 4348

+

4348 4363 4364 4349

+

4349 4364 4365 4350

+

4350 4365 4366 4351

+

4351 4366 4367 4352

+

4352 4367 4368 4353

+

4353 4368 3142 3141

+

4013 4015 4369 4354

+

4354 4369 4370 4355

+

4355 4370 4371 4356

+

4356 4371 4372 4357

+

4357 4372 4373 4358

+

4358 4373 4374 4359

+

4359 4374 4375 4360

+

4360 4375 4376 4361

+

4361 4376 4377 4362

+

4362 4377 4378 4363

+

4363 4378 4379 4364

+

4364 4379 4380 4365

+

4365 4380 4381 4366

+

4366 4381 4382 4367

+

4367 4382 4383 4368

+

4368 4383 3143 3142

+

4015 4017 4384 4369

+

4369 4384 4385 4370

+

4370 4385 4386 4371

+

4371 4386 4387 4372

+

4372 4387 4388 4373

+

4373 4388 4389 4374

+

4374 4389 4390 4375

+

4375 4390 4391 4376

+

4376 4391 4392 4377

+

4377 4392 4393 4378

+

4378 4393 4394 4379

+

4379 4394 4395 4380

+

4380 4395 4396 4381

+

4381 4396 4397 4382

+

4382 4397 4398 4383

+

4383 4398 3144 3143

+

4017 4019 4399 4384

+

4384 4399 4400 4385

+

4385 4400 4401 4386

+

4386 4401 4402 4387

+

4387 4402 4403 4388

+

4388 4403 4404 4389

+

4389 4404 4405 4390

+

4390 4405 4406 4391

+

4391 4406 4407 4392

+

4392 4407 4408 4393

+

4393 4408 4409 4394

+

4394 4409 4410 4395

+

4395 4410 4411 4396

+

4396 4411 4412 4397

+

4397 4412 4413 4398

+

4398 4413 3145 3144

+

4019 4021 4414 4399

+

4399 4414 4415 4400

+

4400 4415 4416 4401

+

4401 4416 4417 4402

+

4402 4417 4418 4403

+

4403 4418 4419 4404

+

4404 4419 4420 4405

+

4405 4420 4421 4406

+

4406 4421 4422 4407

+

4407 4422 4423 4408

+

4408 4423 4424 4409

+

4409 4424 4425 4410

+

4410 4425 4426 4411

+

4411 4426 4427 4412

+

4412 4427 4428 4413

+

4413 4428 3146 3145

+

4021 4023 4429 4414

+

4414 4429 4430 4415

+

4415 4430 4431 4416

+

4416 4431 4432 4417

+

4417 4432 4433 4418

+

4418 4433 4434 4419

+

4419 4434 4435 4420

+

4420 4435 4436 4421

+

4421 4436 4437 4422

+

4422 4437 4438 4423

+

4423 4438 4439 4424

+

4424 4439 4440 4425

+

4425 4440 4441 4426

+

4426 4441 4442 4427

+

4427 4442 4443 4428

+

4428 4443 3147 3146

+

4023 4025 4444 4429

+

4429 4444 4445 4430

+

4430 4445 4446 4431

+

4431 4446 4447 4432

+

4432 4447 4448 4433

+

4433 4448 4449 4434

+

4434 4449 4450 4435

+

4435 4450 4451 4436

+

4436 4451 4452 4437

+

4437 4452 4453 4438

+

4438 4453 4454 4439

+

4439 4454 4455 4440

+

4440 4455 4456 4441

+

4441 4456 4457 4442

+

4442 4457 4458 4443

+

4443 4458 3148 3147

+

4025 4027 4459 4444

+

4444 4459 4460 4445

+

4445 4460 4461 4446

+

4446 4461 4462 4447

+

4447 4462 4463 4448

+

4448 4463 4464 4449

+

4449 4464 4465 4450

+

4450 4465 4466 4451

+

4451 4466 4467 4452

+

4452 4467 4468 4453

+

4453 4468 4469 4454

+

4454 4469 4470 4455

+

4455 4470 4471 4456

+

4456 4471 4472 4457

+

4457 4472 4473 4458

+

4458 4473 3149 3148

+

4027 4029 4474 4459

+

4459 4474 4475 4460

+

4460 4475 4476 4461

+

4461 4476 4477 4462

+

4462 4477 4478 4463

+

4463 4478 4479 4464

+

4464 4479 4480 4465

+

4465 4480 4481 4466

+

4466 4481 4482 4467

+

4467 4482 4483 4468

+

4468 4483 4484 4469

+

4469 4484 4485 4470

+

4470 4485 4486 4471

+

4471 4486 4487 4472

+

4472 4487 4488 4473

+

4473 4488 3150 3149

+

4029 33 32 4474

+

4474 32 50 4475

+

4475 50 67 4476

+

4476 67 84 4477

+

4477 84 101 4478

+

4478 101 118 4479

+

4479 118 135 4480

+

4480 135 152 4481

+

4481 152 169 4482

+

4482 169 186 4483

+

4483 186 203 4484

+

4484 203 220 4485

+

4485 220 237 4486

+

4486 237 254 4487

+

4487 254 271 4488

+

4488 271 288 3150

+

867 4489 4490 4491

+

839 4492 4490 4489

+

883 4493 4490 4492

+

884 4491 4490 4493

+

2258 4494 4495 4496

+

2231 4497 4495 4494

+

2273 4498 4495 4497

+

2274 4496 4495 4498

+

2586 4499 4500 4501

+

2556 4502 4500 4499

+

2604 4503 4500 4502

+

2605 4501 4500 4503

+

3978 4504 4505 4506

+

3951 4507 4505 4504

+

3993 4508 4505 4507

+

3994 4506 4505 4508

+

840 616 4509 4510

+

4510 4509 339 317

+

616 345 4511 4509

+

4509 4511 340 339

+

345 344 4512 4511

+

4511 4512 359 340

+

344 362 4513 4512

+

4512 4513 376 359

+

362 379 4514 4513

+

4513 4514 393 376

+

379 396 4515 4514

+

4514 4515 410 393

+

396 413 4516 4515

+

4515 4516 427 410

+

413 430 4517 4516

+

4516 4517 444 427

+

430 447 4518 4517

+

4517 4518 461 444

+

447 464 4519 4518

+

4518 4519 478 461

+

464 481 4520 4519

+

4519 4520 495 478

+

481 498 4521 4520

+

4520 4521 512 495

+

498 515 4522 4521

+

4521 4522 529 512

+

515 532 4523 4522

+

4522 4523 546 529

+

532 549 4524 4523

+

4523 4524 563 546

+

549 566 4525 4524

+

4524 4525 580 563

+

322 585 4526 4527

+

4527 4526 630 612

+

317 320 4528 4510

+

4510 4528 869 840

+

585 584 4529 4526

+

4526 4529 631 630

+

320 842 4530 4528

+

4528 4530 870 869

+

584 635 4531 4529

+

4529 4531 649 631

+

842 844 4532 4530

+

4530 4532 871 870

+

635 652 4533 4531

+

4531 4533 666 649

+

844 846 4534 4532

+

4532 4534 872 871

+

652 669 4535 4533

+

4533 4535 683 666

+

846 848 4536 4534

+

4534 4536 873 872

+

669 686 4537 4535

+

4535 4537 700 683

+

848 850 4538 4536

+

4536 4538 874 873

+

686 703 4539 4537

+

4537 4539 717 700

+

850 852 4540 4538

+

4538 4540 875 874

+

703 720 4541 4539

+

4539 4541 734 717

+

852 854 4542 4540

+

4540 4542 876 875

+

720 737 4543 4541

+

4541 4543 751 734

+

854 856 4544 4542

+

4542 4544 877 876

+

737 754 4545 4543

+

4543 4545 768 751

+

856 858 4546 4544

+

4544 4546 878 877

+

754 771 4547 4545

+

4545 4547 785 768

+

858 860 4548 4546

+

4546 4548 879 878

+

771 788 4549 4547

+

4547 4549 802 785

+

860 862 4550 4548

+

4548 4550 880 879

+

788 805 4551 4549

+

4549 4551 819 802

+

862 864 4552 4550

+

4550 4552 881 880

+

805 822 4553 4551

+

4551 4553 836 819

+

864 866 4554 4552

+

4552 4554 838 881

+

822 839 4489 4553

+

4553 4489 867 836

+

866 883 4492 4554

+

4554 4492 839 838

+

883 882 4555 4493

+

4493 4555 885 884

+

884 887 4556 4491

+

4491 4556 868 867

+

612 615 4557 4527

+

4527 4557 323 322

+

615 1113 4558 4557

+

4557 4558 888 323

+

1113 1115 4559 4558

+

4558 4559 1142 888

+

1115 1117 4560 4559

+

4559 4560 1143 1142

+

1117 1119 4561 4560

+

4560 4561 1144 1143

+

1119 1121 4562 4561

+

4561 4562 1145 1144

+

1121 1123 4563 4562

+

4562 4563 1146 1145

+

1123 1125 4564 4563

+

4563 4564 1147 1146

+

1125 1127 4565 4564

+

4564 4565 1148 1147

+

1127 1129 4566 4565

+

4565 4566 1149 1148

+

1129 1131 4567 4566

+

4566 4567 1150 1149

+

1131 1133 4568 4567

+

4567 4568 1151 1150

+

1133 1135 4569 4568

+

4568 4569 1152 1151

+

1135 1137 4570 4569

+

4569 4570 1153 1152

+

1137 1139 4571 4570

+

4570 4571 1154 1153

+

1139 1141 4572 4571

+

4571 4572 1155 1154

+

1450 1418 4573 4574

+

4574 4573 2011 1417

+

1418 1421 4575 4573

+

4573 4575 1454 2011

+

1421 1423 4576 4575

+

4575 4576 1455 1454

+

1423 1425 4577 4576

+

4576 4577 1456 1455

+

1425 1427 4578 4577

+

4577 4578 1457 1456

+

1427 1429 4579 4578

+

4578 4579 1458 1457

+

1429 1431 4580 4579

+

4579 4580 1459 1458

+

1431 1433 4581 4580

+

4580 4581 1460 1459

+

1433 1435 4582 4581

+

4581 4582 1461 1460

+

1435 1437 4583 4582

+

4582 4583 1462 1461

+

1437 1439 4584 4583

+

4583 4584 1463 1462

+

1439 1441 4585 4584

+

4584 4585 1464 1463

+

1441 1443 4586 4585

+

4585 4586 1465 1464

+

1443 1445 4587 4586

+

4586 4587 1466 1465

+

1445 1447 4588 4587

+

4587 4588 1467 1466

+

1447 1449 4589 4588

+

4588 4589 1468 1467

+

1157 1472 4590 4591

+

4591 4590 1771 1754

+

1472 1471 4592 4590

+

4590 4592 1772 1771

+

1471 1776 4593 4592

+

4592 4593 1790 1772

+

1776 1793 4594 4593

+

4593 4594 1807 1790

+

1793 1810 4595 4594

+

4594 4595 1824 1807

+

1810 1827 4596 4595

+

4595 4596 1841 1824

+

1827 1844 4597 4596

+

4596 4597 1858 1841

+

1844 1861 4598 4597

+

4597 4598 1875 1858

+

1861 1878 4599 4598

+

4598 4599 1892 1875

+

1878 1895 4600 4599

+

4599 4600 1909 1892

+

1895 1912 4601 4600

+

4600 4601 1926 1909

+

1912 1929 4602 4601

+

4601 4602 1943 1926

+

1929 1946 4603 4602

+

4602 4603 1960 1943

+

1946 1963 4604 4603

+

4603 4604 1977 1960

+

1963 1980 4605 4604

+

4604 4605 1994 1977

+

1980 1155 4572 4605

+

4605 4572 1141 1994

+

1417 1416 4606 4574

+

4574 4606 1451 1450

+

1754 1757 4607 4591

+

4591 4607 1158 1157

+

1416 1997 4608 4606

+

4606 4608 2025 1451

+

1757 2233 4609 4607

+

4607 4609 2260 1158

+

1997 2028 4610 4608

+

4608 4610 2042 2025

+

2233 2235 4611 4609

+

4609 4611 2261 2260

+

2028 2045 4612 4610

+

4610 4612 2059 2042

+

2235 2237 4613 4611

+

4611 4613 2262 2261

+

2045 2062 4614 4612

+

4612 4614 2076 2059

+

2237 2239 4615 4613

+

4613 4615 2263 2262

+

2062 2079 4616 4614

+

4614 4616 2093 2076

+

2239 2241 4617 4615

+

4615 4617 2264 2263

+

2079 2096 4618 4616

+

4616 4618 2110 2093

+

2241 2243 4619 4617

+

4617 4619 2265 2264

+

2096 2113 4620 4618

+

4618 4620 2127 2110

+

2243 2245 4621 4619

+

4619 4621 2266 2265

+

2113 2130 4622 4620

+

4620 4622 2144 2127

+

2245 2247 4623 4621

+

4621 4623 2267 2266

+

2130 2147 4624 4622

+

4622 4624 2161 2144

+

2247 2249 4625 4623

+

4623 4625 2268 2267

+

2147 2164 4626 4624

+

4624 4626 2178 2161

+

2249 2251 4627 4625

+

4625 4627 2269 2268

+

2164 2181 4628 4626

+

4626 4628 2195 2178

+

2251 2253 4629 4627

+

4627 4629 2270 2269

+

2181 2198 4630 4628

+

4628 4630 2212 2195

+

2253 2255 4631 4629

+

4629 4631 2271 2270

+

2198 2215 4632 4630

+

4630 4632 2228 2212

+

2255 2257 4633 4631

+

4631 4633 2230 2271

+

2215 2231 4494 4632

+

4632 4494 2258 2228

+

2257 2273 4497 4633

+

4633 4497 2231 2230

+

2273 2272 4634 4498

+

4498 4634 2275 2274

+

2274 2277 4635 4496

+

4496 4635 2259 2258

+

2279 2849 4636 4637

+

4637 4636 2334 2311

+

2315 2318 4638 4639

+

4639 4638 2588 2559

+

2849 2340 4640 4636

+

4636 4640 2335 2334

+

2318 2561 4641 4638

+

4638 4641 2589 2588

+

2340 2339 4642 4640

+

4640 4642 2355 2335

+

2561 2563 4643 4641

+

4641 4643 2592 2589

+

2339 2358 4644 4642

+

4642 4644 2373 2355

+

2563 2565 4645 4643

+

4643 4645 2593 2592

+

2358 2376 4646 4644

+

4644 4646 2391 2373

+

2565 2567 4647 4645

+

4645 4647 2594 2593

+

2376 2394 4648 4646

+

4646 4648 2409 2391

+

2567 2569 4649 4647

+

4647 4649 2595 2594

+

2394 2412 4650 4648

+

4648 4650 2427 2409

+

2569 2571 4651 4649

+

4649 4651 2596 2595

+

2412 2430 4652 4650

+

4650 4652 2445 2427

+

2571 2573 4653 4651

+

4651 4653 2597 2596

+

2430 2448 4654 4652

+

4652 4654 2463 2445

+

2573 2575 4655 4653

+

4653 4655 2598 2597

+

2448 2466 4656 4654

+

4654 4656 2481 2463

+

2575 2577 4657 4655

+

4655 4657 2599 2598

+

2466 2484 4658 4656

+

4656 4658 2499 2481

+

2577 2579 4659 4657

+

4657 4659 2600 2599

+

2484 2502 4660 4658

+

4658 4660 2517 2499

+

2579 2581 4661 4659

+

4659 4661 2601 2600

+

2502 2520 4662 4660

+

4660 4662 2535 2517

+

2581 2583 4663 4661

+

4661 4663 2602 2601

+

2520 2538 4664 4662

+

4662 4664 2553 2535

+

2583 2585 4665 4663

+

4663 4665 2555 2602

+

2538 2556 4499 4664

+

4664 4499 2586 2553

+

2585 2604 4502 4665

+

4665 4502 2556 2555

+

2604 2603 4666 4503

+

4503 4666 2606 2605

+

2605 2608 4667 4501

+

4501 4667 2587 2586

+

2311 2314 4668 4637

+

4637 4668 2280 2279

+

2314 2851 4669 4668

+

4668 4669 2609 2280

+

2851 2853 4670 4669

+

4669 4670 2880 2609

+

2853 2855 4671 4670

+

4670 4671 2881 2880

+

2855 2857 4672 4671

+

4671 4672 2882 2881

+

2857 2859 4673 4672

+

4672 4673 2883 2882

+

2859 2861 4674 4673

+

4673 4674 2884 2883

+

2861 2863 4675 4674

+

4674 4675 2885 2884

+

2863 2865 4676 4675

+

4675 4676 2886 2885

+

2865 2867 4677 4676

+

4676 4677 2887 2886

+

2867 2869 4678 4677

+

4677 4678 2888 2887

+

2869 2871 4679 4678

+

4678 4679 2889 2888

+

2871 2873 4680 4679

+

4679 4680 2890 2889

+

2873 2875 4681 4680

+

4680 4681 2891 2890

+

2875 2877 4682 4681

+

4681 4682 2892 2891

+

2877 2879 4683 4682

+

4682 4683 2893 2892

+

2559 2558 4684 4639

+

4639 4684 2590 2315

+

2558 2895 4685 4684

+

4684 4685 3177 2590

+

2895 3180 4686 4685

+

4685 4686 3194 3177

+

3180 3197 4687 4686

+

4686 4687 3211 3194

+

3197 3214 4688 4687

+

4687 4688 3228 3211

+

3214 3231 4689 4688

+

4688 4689 3245 3228

+

3231 3248 4690 4689

+

4689 4690 3262 3245

+

3248 3265 4691 4690

+

4690 4691 3279 3262

+

3265 3282 4692 4691

+

4691 4692 3296 3279

+

3282 3299 4693 4692

+

4692 4693 3313 3296

+

3299 3316 4694 4693

+

4693 4694 3330 3313

+

3316 3333 4695 4694

+

4694 4695 3347 3330

+

3333 3350 4696 4695

+

4695 4696 3364 3347

+

3350 3367 4697 4696

+

4696 4697 3381 3364

+

3367 3384 4698 4697

+

4697 4698 3398 3381

+

3384 1468 4589 4698

+

4698 4589 1449 3398

+

3401 3729 4699 4700

+

4700 4699 3456 3433

+

3729 3462 4701 4699

+

4699 4701 3457 3456

+

3462 3461 4702 4701

+

4701 4702 3477 3457

+

3461 3480 4703 4702

+

4702 4703 3495 3477

+

3480 3498 4704 4703

+

4703 4704 3513 3495

+

3498 3516 4705 4704

+

4704 4705 3531 3513

+

3516 3534 4706 4705

+

4705 4706 3549 3531

+

3534 3552 4707 4706

+

4706 4707 3567 3549

+

3552 3570 4708 4707

+

4707 4708 3585 3567

+

3570 3588 4709 4708

+

4708 4709 3603 3585

+

3588 3606 4710 4709

+

4709 4710 3621 3603

+

3606 3624 4711 4710

+

4710 4711 3639 3621

+

3624 3642 4712 4711

+

4711 4712 3657 3639

+

3642 3660 4713 4712

+

4712 4713 3675 3657

+

3660 3678 4714 4713

+

4713 4714 3693 3675

+

3678 2893 4683 4714

+

4714 4683 2879 3693

+

3438 3698 4715 4716

+

4716 4715 3743 3725

+

3433 3436 4717 4700

+

4700 4717 3402 3401

+

3698 3697 4718 4715

+

4715 4718 3744 3743

+

3436 3953 4719 4717

+

4717 4719 3980 3402

+

3697 3748 4720 4718

+

4718 4720 3762 3744

+

3953 3955 4721 4719

+

4719 4721 3981 3980

+

3748 3765 4722 4720

+

4720 4722 3779 3762

+

3955 3957 4723 4721

+

4721 4723 3982 3981

+

3765 3782 4724 4722

+

4722 4724 3796 3779

+

3957 3959 4725 4723

+

4723 4725 3983 3982

+

3782 3799 4726 4724

+

4724 4726 3813 3796

+

3959 3961 4727 4725

+

4725 4727 3984 3983

+

3799 3816 4728 4726

+

4726 4728 3830 3813

+

3961 3963 4729 4727

+

4727 4729 3985 3984

+

3816 3833 4730 4728

+

4728 4730 3847 3830

+

3963 3965 4731 4729

+

4729 4731 3986 3985

+

3833 3850 4732 4730

+

4730 4732 3864 3847

+

3965 3967 4733 4731

+

4731 4733 3987 3986

+

3850 3867 4734 4732

+

4732 4734 3881 3864

+

3967 3969 4735 4733

+

4733 4735 3988 3987

+

3867 3884 4736 4734

+

4734 4736 3898 3881

+

3969 3971 4737 4735

+

4735 4737 3989 3988

+

3884 3901 4738 4736

+

4736 4738 3915 3898

+

3971 3973 4739 4737

+

4737 4739 3990 3989

+

3901 3918 4740 4738

+

4738 4740 3932 3915

+

3973 3975 4741 4739

+

4739 4741 3991 3990

+

3918 3935 4742 4740

+

4740 4742 3948 3932

+

3975 3977 4743 4741

+

4741 4743 3950 3991

+

3935 3951 4504 4742

+

4742 4504 3978 3948

+

3977 3993 4507 4743

+

4743 4507 3951 3950

+

3993 3992 4744 4508

+

4508 4744 3995 3994

+

3994 3997 4745 4506

+

4506 4745 3979 3978

+

3725 3728 4746 4716

+

4716 4746 3439 3438

+

3728 4224 4747 4746

+

4746 4747 3998 3439

+

4224 4226 4748 4747

+

4747 4748 4251 3998

+

4226 4228 4749 4748

+

4748 4749 4252 4251

+

4228 4230 4750 4749

+

4749 4750 4253 4252

+

4230 4232 4751 4750

+

4750 4751 4254 4253

+

4232 4234 4752 4751

+

4751 4752 4255 4254

+

4234 4236 4753 4752

+

4752 4753 4256 4255

+

4236 4238 4754 4753

+

4753 4754 4257 4256

+

4238 4240 4755 4754

+

4754 4755 4258 4257

+

4240 4242 4756 4755

+

4755 4756 4259 4258

+

4242 4244 4757 4756

+

4756 4757 4260 4259

+

4244 4246 4758 4757

+

4757 4758 4261 4260

+

4246 4248 4759 4758

+

4758 4759 4262 4261

+

4248 4250 4760 4759

+

4759 4760 4263 4262

+

4250 580 4525 4760

+

4760 4525 566 4263

+

316 840 869 823

+
+
+
+
+ + + + 15.0 0.0 0.0 0.0 0.0 15.0 0.0 0.0 0.0 0.0 15.0 0.0 0.0 0.0 0.0 1.0 + + + + + + + + +
diff --git a/assets/maujoe.basic_water_material/models/terrain.dae.import b/assets/maujoe.basic_water_material/models/terrain.dae.import new file mode 100644 index 0000000..96b81f9 --- /dev/null +++ b/assets/maujoe.basic_water_material/models/terrain.dae.import @@ -0,0 +1,1063 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/terrain.dae-ebf2cc6a6fa856ed4da5ab4b12fa12af.scn" + +[deps] + +source_file="res://assets/maujoe.basic_water_material/models/terrain.dae" +dest_files=[ "res://.import/terrain.dae-ebf2cc6a6fa856ed4da5ab4b12fa12af.scn" ] + +[params] + +nodes/root_type="Spatial" +nodes/root_name="Scene Root" +nodes/root_scale=1.0 +nodes/custom_script="" +nodes/storage=0 +materials/location=1 +materials/storage=1 +materials/keep_on_reimport=true +meshes/compress=true +meshes/ensure_tangents=true +meshes/storage=0 +meshes/light_baking=0 +meshes/lightmap_texel_size=0.1 +skins/use_named_skins=true +external_files/store_in_subdir=false +animation/import=true +animation/fps=15 +animation/filter_script="" +animation/storage=false +animation/keep_custom_tracks=false +animation/optimizer/enabled=true +animation/optimizer/max_linear_error=0.05 +animation/optimizer/max_angular_error=0.01 +animation/optimizer/max_angle=22 +animation/optimizer/remove_unused_tracks=true +animation/clips/amount=0 +animation/clip_1/name="" +animation/clip_1/start_frame=0 +animation/clip_1/end_frame=0 +animation/clip_1/loops=false +animation/clip_2/name="" +animation/clip_2/start_frame=0 +animation/clip_2/end_frame=0 +animation/clip_2/loops=false +animation/clip_3/name="" +animation/clip_3/start_frame=0 +animation/clip_3/end_frame=0 +animation/clip_3/loops=false +animation/clip_4/name="" +animation/clip_4/start_frame=0 +animation/clip_4/end_frame=0 +animation/clip_4/loops=false +animation/clip_5/name="" +animation/clip_5/start_frame=0 +animation/clip_5/end_frame=0 +animation/clip_5/loops=false +animation/clip_6/name="" +animation/clip_6/start_frame=0 +animation/clip_6/end_frame=0 +animation/clip_6/loops=false +animation/clip_7/name="" +animation/clip_7/start_frame=0 +animation/clip_7/end_frame=0 +animation/clip_7/loops=false +animation/clip_8/name="" +animation/clip_8/start_frame=0 +animation/clip_8/end_frame=0 +animation/clip_8/loops=false +animation/clip_9/name="" +animation/clip_9/start_frame=0 +animation/clip_9/end_frame=0 +animation/clip_9/loops=false +animation/clip_10/name="" +animation/clip_10/start_frame=0 +animation/clip_10/end_frame=0 +animation/clip_10/loops=false +animation/clip_11/name="" +animation/clip_11/start_frame=0 +animation/clip_11/end_frame=0 +animation/clip_11/loops=false +animation/clip_12/name="" +animation/clip_12/start_frame=0 +animation/clip_12/end_frame=0 +animation/clip_12/loops=false +animation/clip_13/name="" +animation/clip_13/start_frame=0 +animation/clip_13/end_frame=0 +animation/clip_13/loops=false +animation/clip_14/name="" +animation/clip_14/start_frame=0 +animation/clip_14/end_frame=0 +animation/clip_14/loops=false +animation/clip_15/name="" +animation/clip_15/start_frame=0 +animation/clip_15/end_frame=0 +animation/clip_15/loops=false +animation/clip_16/name="" +animation/clip_16/start_frame=0 +animation/clip_16/end_frame=0 +animation/clip_16/loops=false +animation/clip_17/name="" +animation/clip_17/start_frame=0 +animation/clip_17/end_frame=0 +animation/clip_17/loops=false +animation/clip_18/name="" +animation/clip_18/start_frame=0 +animation/clip_18/end_frame=0 +animation/clip_18/loops=false +animation/clip_19/name="" +animation/clip_19/start_frame=0 +animation/clip_19/end_frame=0 +animation/clip_19/loops=false +animation/clip_20/name="" +animation/clip_20/start_frame=0 +animation/clip_20/end_frame=0 +animation/clip_20/loops=false +animation/clip_21/name="" +animation/clip_21/start_frame=0 +animation/clip_21/end_frame=0 +animation/clip_21/loops=false +animation/clip_22/name="" +animation/clip_22/start_frame=0 +animation/clip_22/end_frame=0 +animation/clip_22/loops=false +animation/clip_23/name="" +animation/clip_23/start_frame=0 +animation/clip_23/end_frame=0 +animation/clip_23/loops=false +animation/clip_24/name="" +animation/clip_24/start_frame=0 +animation/clip_24/end_frame=0 +animation/clip_24/loops=false +animation/clip_25/name="" +animation/clip_25/start_frame=0 +animation/clip_25/end_frame=0 +animation/clip_25/loops=false +animation/clip_26/name="" +animation/clip_26/start_frame=0 +animation/clip_26/end_frame=0 +animation/clip_26/loops=false +animation/clip_27/name="" +animation/clip_27/start_frame=0 +animation/clip_27/end_frame=0 +animation/clip_27/loops=false +animation/clip_28/name="" +animation/clip_28/start_frame=0 +animation/clip_28/end_frame=0 +animation/clip_28/loops=false +animation/clip_29/name="" +animation/clip_29/start_frame=0 +animation/clip_29/end_frame=0 +animation/clip_29/loops=false +animation/clip_30/name="" +animation/clip_30/start_frame=0 +animation/clip_30/end_frame=0 +animation/clip_30/loops=false +animation/clip_31/name="" +animation/clip_31/start_frame=0 +animation/clip_31/end_frame=0 +animation/clip_31/loops=false +animation/clip_32/name="" +animation/clip_32/start_frame=0 +animation/clip_32/end_frame=0 +animation/clip_32/loops=false +animation/clip_33/name="" +animation/clip_33/start_frame=0 +animation/clip_33/end_frame=0 +animation/clip_33/loops=false +animation/clip_34/name="" +animation/clip_34/start_frame=0 +animation/clip_34/end_frame=0 +animation/clip_34/loops=false +animation/clip_35/name="" +animation/clip_35/start_frame=0 +animation/clip_35/end_frame=0 +animation/clip_35/loops=false +animation/clip_36/name="" +animation/clip_36/start_frame=0 +animation/clip_36/end_frame=0 +animation/clip_36/loops=false +animation/clip_37/name="" +animation/clip_37/start_frame=0 +animation/clip_37/end_frame=0 +animation/clip_37/loops=false +animation/clip_38/name="" +animation/clip_38/start_frame=0 +animation/clip_38/end_frame=0 +animation/clip_38/loops=false +animation/clip_39/name="" +animation/clip_39/start_frame=0 +animation/clip_39/end_frame=0 +animation/clip_39/loops=false +animation/clip_40/name="" +animation/clip_40/start_frame=0 +animation/clip_40/end_frame=0 +animation/clip_40/loops=false +animation/clip_41/name="" +animation/clip_41/start_frame=0 +animation/clip_41/end_frame=0 +animation/clip_41/loops=false +animation/clip_42/name="" +animation/clip_42/start_frame=0 +animation/clip_42/end_frame=0 +animation/clip_42/loops=false +animation/clip_43/name="" +animation/clip_43/start_frame=0 +animation/clip_43/end_frame=0 +animation/clip_43/loops=false +animation/clip_44/name="" +animation/clip_44/start_frame=0 +animation/clip_44/end_frame=0 +animation/clip_44/loops=false +animation/clip_45/name="" +animation/clip_45/start_frame=0 +animation/clip_45/end_frame=0 +animation/clip_45/loops=false +animation/clip_46/name="" +animation/clip_46/start_frame=0 +animation/clip_46/end_frame=0 +animation/clip_46/loops=false +animation/clip_47/name="" +animation/clip_47/start_frame=0 +animation/clip_47/end_frame=0 +animation/clip_47/loops=false +animation/clip_48/name="" +animation/clip_48/start_frame=0 +animation/clip_48/end_frame=0 +animation/clip_48/loops=false +animation/clip_49/name="" +animation/clip_49/start_frame=0 +animation/clip_49/end_frame=0 +animation/clip_49/loops=false +animation/clip_50/name="" +animation/clip_50/start_frame=0 +animation/clip_50/end_frame=0 +animation/clip_50/loops=false +animation/clip_51/name="" +animation/clip_51/start_frame=0 +animation/clip_51/end_frame=0 +animation/clip_51/loops=false +animation/clip_52/name="" +animation/clip_52/start_frame=0 +animation/clip_52/end_frame=0 +animation/clip_52/loops=false +animation/clip_53/name="" +animation/clip_53/start_frame=0 +animation/clip_53/end_frame=0 +animation/clip_53/loops=false +animation/clip_54/name="" +animation/clip_54/start_frame=0 +animation/clip_54/end_frame=0 +animation/clip_54/loops=false +animation/clip_55/name="" +animation/clip_55/start_frame=0 +animation/clip_55/end_frame=0 +animation/clip_55/loops=false +animation/clip_56/name="" +animation/clip_56/start_frame=0 +animation/clip_56/end_frame=0 +animation/clip_56/loops=false +animation/clip_57/name="" +animation/clip_57/start_frame=0 +animation/clip_57/end_frame=0 +animation/clip_57/loops=false +animation/clip_58/name="" +animation/clip_58/start_frame=0 +animation/clip_58/end_frame=0 +animation/clip_58/loops=false +animation/clip_59/name="" +animation/clip_59/start_frame=0 +animation/clip_59/end_frame=0 +animation/clip_59/loops=false +animation/clip_60/name="" +animation/clip_60/start_frame=0 +animation/clip_60/end_frame=0 +animation/clip_60/loops=false +animation/clip_61/name="" +animation/clip_61/start_frame=0 +animation/clip_61/end_frame=0 +animation/clip_61/loops=false +animation/clip_62/name="" +animation/clip_62/start_frame=0 +animation/clip_62/end_frame=0 +animation/clip_62/loops=false +animation/clip_63/name="" +animation/clip_63/start_frame=0 +animation/clip_63/end_frame=0 +animation/clip_63/loops=false +animation/clip_64/name="" +animation/clip_64/start_frame=0 +animation/clip_64/end_frame=0 +animation/clip_64/loops=false +animation/clip_65/name="" +animation/clip_65/start_frame=0 +animation/clip_65/end_frame=0 +animation/clip_65/loops=false +animation/clip_66/name="" +animation/clip_66/start_frame=0 +animation/clip_66/end_frame=0 +animation/clip_66/loops=false +animation/clip_67/name="" +animation/clip_67/start_frame=0 +animation/clip_67/end_frame=0 +animation/clip_67/loops=false +animation/clip_68/name="" +animation/clip_68/start_frame=0 +animation/clip_68/end_frame=0 +animation/clip_68/loops=false +animation/clip_69/name="" +animation/clip_69/start_frame=0 +animation/clip_69/end_frame=0 +animation/clip_69/loops=false +animation/clip_70/name="" +animation/clip_70/start_frame=0 +animation/clip_70/end_frame=0 +animation/clip_70/loops=false +animation/clip_71/name="" +animation/clip_71/start_frame=0 +animation/clip_71/end_frame=0 +animation/clip_71/loops=false +animation/clip_72/name="" +animation/clip_72/start_frame=0 +animation/clip_72/end_frame=0 +animation/clip_72/loops=false +animation/clip_73/name="" +animation/clip_73/start_frame=0 +animation/clip_73/end_frame=0 +animation/clip_73/loops=false +animation/clip_74/name="" +animation/clip_74/start_frame=0 +animation/clip_74/end_frame=0 +animation/clip_74/loops=false +animation/clip_75/name="" +animation/clip_75/start_frame=0 +animation/clip_75/end_frame=0 +animation/clip_75/loops=false +animation/clip_76/name="" +animation/clip_76/start_frame=0 +animation/clip_76/end_frame=0 +animation/clip_76/loops=false +animation/clip_77/name="" +animation/clip_77/start_frame=0 +animation/clip_77/end_frame=0 +animation/clip_77/loops=false +animation/clip_78/name="" +animation/clip_78/start_frame=0 +animation/clip_78/end_frame=0 +animation/clip_78/loops=false +animation/clip_79/name="" +animation/clip_79/start_frame=0 +animation/clip_79/end_frame=0 +animation/clip_79/loops=false +animation/clip_80/name="" +animation/clip_80/start_frame=0 +animation/clip_80/end_frame=0 +animation/clip_80/loops=false +animation/clip_81/name="" +animation/clip_81/start_frame=0 +animation/clip_81/end_frame=0 +animation/clip_81/loops=false +animation/clip_82/name="" +animation/clip_82/start_frame=0 +animation/clip_82/end_frame=0 +animation/clip_82/loops=false +animation/clip_83/name="" +animation/clip_83/start_frame=0 +animation/clip_83/end_frame=0 +animation/clip_83/loops=false +animation/clip_84/name="" +animation/clip_84/start_frame=0 +animation/clip_84/end_frame=0 +animation/clip_84/loops=false +animation/clip_85/name="" +animation/clip_85/start_frame=0 +animation/clip_85/end_frame=0 +animation/clip_85/loops=false +animation/clip_86/name="" +animation/clip_86/start_frame=0 +animation/clip_86/end_frame=0 +animation/clip_86/loops=false +animation/clip_87/name="" +animation/clip_87/start_frame=0 +animation/clip_87/end_frame=0 +animation/clip_87/loops=false +animation/clip_88/name="" +animation/clip_88/start_frame=0 +animation/clip_88/end_frame=0 +animation/clip_88/loops=false +animation/clip_89/name="" +animation/clip_89/start_frame=0 +animation/clip_89/end_frame=0 +animation/clip_89/loops=false +animation/clip_90/name="" +animation/clip_90/start_frame=0 +animation/clip_90/end_frame=0 +animation/clip_90/loops=false +animation/clip_91/name="" +animation/clip_91/start_frame=0 +animation/clip_91/end_frame=0 +animation/clip_91/loops=false +animation/clip_92/name="" +animation/clip_92/start_frame=0 +animation/clip_92/end_frame=0 +animation/clip_92/loops=false +animation/clip_93/name="" +animation/clip_93/start_frame=0 +animation/clip_93/end_frame=0 +animation/clip_93/loops=false +animation/clip_94/name="" +animation/clip_94/start_frame=0 +animation/clip_94/end_frame=0 +animation/clip_94/loops=false +animation/clip_95/name="" +animation/clip_95/start_frame=0 +animation/clip_95/end_frame=0 +animation/clip_95/loops=false +animation/clip_96/name="" +animation/clip_96/start_frame=0 +animation/clip_96/end_frame=0 +animation/clip_96/loops=false +animation/clip_97/name="" +animation/clip_97/start_frame=0 +animation/clip_97/end_frame=0 +animation/clip_97/loops=false +animation/clip_98/name="" +animation/clip_98/start_frame=0 +animation/clip_98/end_frame=0 +animation/clip_98/loops=false +animation/clip_99/name="" +animation/clip_99/start_frame=0 +animation/clip_99/end_frame=0 +animation/clip_99/loops=false +animation/clip_100/name="" +animation/clip_100/start_frame=0 +animation/clip_100/end_frame=0 +animation/clip_100/loops=false +animation/clip_101/name="" +animation/clip_101/start_frame=0 +animation/clip_101/end_frame=0 +animation/clip_101/loops=false +animation/clip_102/name="" +animation/clip_102/start_frame=0 +animation/clip_102/end_frame=0 +animation/clip_102/loops=false +animation/clip_103/name="" +animation/clip_103/start_frame=0 +animation/clip_103/end_frame=0 +animation/clip_103/loops=false +animation/clip_104/name="" +animation/clip_104/start_frame=0 +animation/clip_104/end_frame=0 +animation/clip_104/loops=false +animation/clip_105/name="" +animation/clip_105/start_frame=0 +animation/clip_105/end_frame=0 +animation/clip_105/loops=false +animation/clip_106/name="" +animation/clip_106/start_frame=0 +animation/clip_106/end_frame=0 +animation/clip_106/loops=false +animation/clip_107/name="" +animation/clip_107/start_frame=0 +animation/clip_107/end_frame=0 +animation/clip_107/loops=false +animation/clip_108/name="" +animation/clip_108/start_frame=0 +animation/clip_108/end_frame=0 +animation/clip_108/loops=false +animation/clip_109/name="" +animation/clip_109/start_frame=0 +animation/clip_109/end_frame=0 +animation/clip_109/loops=false +animation/clip_110/name="" +animation/clip_110/start_frame=0 +animation/clip_110/end_frame=0 +animation/clip_110/loops=false +animation/clip_111/name="" +animation/clip_111/start_frame=0 +animation/clip_111/end_frame=0 +animation/clip_111/loops=false +animation/clip_112/name="" +animation/clip_112/start_frame=0 +animation/clip_112/end_frame=0 +animation/clip_112/loops=false +animation/clip_113/name="" +animation/clip_113/start_frame=0 +animation/clip_113/end_frame=0 +animation/clip_113/loops=false +animation/clip_114/name="" +animation/clip_114/start_frame=0 +animation/clip_114/end_frame=0 +animation/clip_114/loops=false +animation/clip_115/name="" +animation/clip_115/start_frame=0 +animation/clip_115/end_frame=0 +animation/clip_115/loops=false +animation/clip_116/name="" +animation/clip_116/start_frame=0 +animation/clip_116/end_frame=0 +animation/clip_116/loops=false +animation/clip_117/name="" +animation/clip_117/start_frame=0 +animation/clip_117/end_frame=0 +animation/clip_117/loops=false +animation/clip_118/name="" +animation/clip_118/start_frame=0 +animation/clip_118/end_frame=0 +animation/clip_118/loops=false +animation/clip_119/name="" +animation/clip_119/start_frame=0 +animation/clip_119/end_frame=0 +animation/clip_119/loops=false +animation/clip_120/name="" +animation/clip_120/start_frame=0 +animation/clip_120/end_frame=0 +animation/clip_120/loops=false +animation/clip_121/name="" +animation/clip_121/start_frame=0 +animation/clip_121/end_frame=0 +animation/clip_121/loops=false +animation/clip_122/name="" +animation/clip_122/start_frame=0 +animation/clip_122/end_frame=0 +animation/clip_122/loops=false +animation/clip_123/name="" +animation/clip_123/start_frame=0 +animation/clip_123/end_frame=0 +animation/clip_123/loops=false +animation/clip_124/name="" +animation/clip_124/start_frame=0 +animation/clip_124/end_frame=0 +animation/clip_124/loops=false +animation/clip_125/name="" +animation/clip_125/start_frame=0 +animation/clip_125/end_frame=0 +animation/clip_125/loops=false +animation/clip_126/name="" +animation/clip_126/start_frame=0 +animation/clip_126/end_frame=0 +animation/clip_126/loops=false +animation/clip_127/name="" +animation/clip_127/start_frame=0 +animation/clip_127/end_frame=0 +animation/clip_127/loops=false +animation/clip_128/name="" +animation/clip_128/start_frame=0 +animation/clip_128/end_frame=0 +animation/clip_128/loops=false +animation/clip_129/name="" +animation/clip_129/start_frame=0 +animation/clip_129/end_frame=0 +animation/clip_129/loops=false +animation/clip_130/name="" +animation/clip_130/start_frame=0 +animation/clip_130/end_frame=0 +animation/clip_130/loops=false +animation/clip_131/name="" +animation/clip_131/start_frame=0 +animation/clip_131/end_frame=0 +animation/clip_131/loops=false +animation/clip_132/name="" +animation/clip_132/start_frame=0 +animation/clip_132/end_frame=0 +animation/clip_132/loops=false +animation/clip_133/name="" +animation/clip_133/start_frame=0 +animation/clip_133/end_frame=0 +animation/clip_133/loops=false +animation/clip_134/name="" +animation/clip_134/start_frame=0 +animation/clip_134/end_frame=0 +animation/clip_134/loops=false +animation/clip_135/name="" +animation/clip_135/start_frame=0 +animation/clip_135/end_frame=0 +animation/clip_135/loops=false +animation/clip_136/name="" +animation/clip_136/start_frame=0 +animation/clip_136/end_frame=0 +animation/clip_136/loops=false +animation/clip_137/name="" +animation/clip_137/start_frame=0 +animation/clip_137/end_frame=0 +animation/clip_137/loops=false +animation/clip_138/name="" +animation/clip_138/start_frame=0 +animation/clip_138/end_frame=0 +animation/clip_138/loops=false +animation/clip_139/name="" +animation/clip_139/start_frame=0 +animation/clip_139/end_frame=0 +animation/clip_139/loops=false +animation/clip_140/name="" +animation/clip_140/start_frame=0 +animation/clip_140/end_frame=0 +animation/clip_140/loops=false +animation/clip_141/name="" +animation/clip_141/start_frame=0 +animation/clip_141/end_frame=0 +animation/clip_141/loops=false +animation/clip_142/name="" +animation/clip_142/start_frame=0 +animation/clip_142/end_frame=0 +animation/clip_142/loops=false +animation/clip_143/name="" +animation/clip_143/start_frame=0 +animation/clip_143/end_frame=0 +animation/clip_143/loops=false +animation/clip_144/name="" +animation/clip_144/start_frame=0 +animation/clip_144/end_frame=0 +animation/clip_144/loops=false +animation/clip_145/name="" +animation/clip_145/start_frame=0 +animation/clip_145/end_frame=0 +animation/clip_145/loops=false +animation/clip_146/name="" +animation/clip_146/start_frame=0 +animation/clip_146/end_frame=0 +animation/clip_146/loops=false +animation/clip_147/name="" +animation/clip_147/start_frame=0 +animation/clip_147/end_frame=0 +animation/clip_147/loops=false +animation/clip_148/name="" +animation/clip_148/start_frame=0 +animation/clip_148/end_frame=0 +animation/clip_148/loops=false +animation/clip_149/name="" +animation/clip_149/start_frame=0 +animation/clip_149/end_frame=0 +animation/clip_149/loops=false +animation/clip_150/name="" +animation/clip_150/start_frame=0 +animation/clip_150/end_frame=0 +animation/clip_150/loops=false +animation/clip_151/name="" +animation/clip_151/start_frame=0 +animation/clip_151/end_frame=0 +animation/clip_151/loops=false +animation/clip_152/name="" +animation/clip_152/start_frame=0 +animation/clip_152/end_frame=0 +animation/clip_152/loops=false +animation/clip_153/name="" +animation/clip_153/start_frame=0 +animation/clip_153/end_frame=0 +animation/clip_153/loops=false +animation/clip_154/name="" +animation/clip_154/start_frame=0 +animation/clip_154/end_frame=0 +animation/clip_154/loops=false +animation/clip_155/name="" +animation/clip_155/start_frame=0 +animation/clip_155/end_frame=0 +animation/clip_155/loops=false +animation/clip_156/name="" +animation/clip_156/start_frame=0 +animation/clip_156/end_frame=0 +animation/clip_156/loops=false +animation/clip_157/name="" +animation/clip_157/start_frame=0 +animation/clip_157/end_frame=0 +animation/clip_157/loops=false +animation/clip_158/name="" +animation/clip_158/start_frame=0 +animation/clip_158/end_frame=0 +animation/clip_158/loops=false +animation/clip_159/name="" +animation/clip_159/start_frame=0 +animation/clip_159/end_frame=0 +animation/clip_159/loops=false +animation/clip_160/name="" +animation/clip_160/start_frame=0 +animation/clip_160/end_frame=0 +animation/clip_160/loops=false +animation/clip_161/name="" +animation/clip_161/start_frame=0 +animation/clip_161/end_frame=0 +animation/clip_161/loops=false +animation/clip_162/name="" +animation/clip_162/start_frame=0 +animation/clip_162/end_frame=0 +animation/clip_162/loops=false +animation/clip_163/name="" +animation/clip_163/start_frame=0 +animation/clip_163/end_frame=0 +animation/clip_163/loops=false +animation/clip_164/name="" +animation/clip_164/start_frame=0 +animation/clip_164/end_frame=0 +animation/clip_164/loops=false +animation/clip_165/name="" +animation/clip_165/start_frame=0 +animation/clip_165/end_frame=0 +animation/clip_165/loops=false +animation/clip_166/name="" +animation/clip_166/start_frame=0 +animation/clip_166/end_frame=0 +animation/clip_166/loops=false +animation/clip_167/name="" +animation/clip_167/start_frame=0 +animation/clip_167/end_frame=0 +animation/clip_167/loops=false +animation/clip_168/name="" +animation/clip_168/start_frame=0 +animation/clip_168/end_frame=0 +animation/clip_168/loops=false +animation/clip_169/name="" +animation/clip_169/start_frame=0 +animation/clip_169/end_frame=0 +animation/clip_169/loops=false +animation/clip_170/name="" +animation/clip_170/start_frame=0 +animation/clip_170/end_frame=0 +animation/clip_170/loops=false +animation/clip_171/name="" +animation/clip_171/start_frame=0 +animation/clip_171/end_frame=0 +animation/clip_171/loops=false +animation/clip_172/name="" +animation/clip_172/start_frame=0 +animation/clip_172/end_frame=0 +animation/clip_172/loops=false +animation/clip_173/name="" +animation/clip_173/start_frame=0 +animation/clip_173/end_frame=0 +animation/clip_173/loops=false +animation/clip_174/name="" +animation/clip_174/start_frame=0 +animation/clip_174/end_frame=0 +animation/clip_174/loops=false +animation/clip_175/name="" +animation/clip_175/start_frame=0 +animation/clip_175/end_frame=0 +animation/clip_175/loops=false +animation/clip_176/name="" +animation/clip_176/start_frame=0 +animation/clip_176/end_frame=0 +animation/clip_176/loops=false +animation/clip_177/name="" +animation/clip_177/start_frame=0 +animation/clip_177/end_frame=0 +animation/clip_177/loops=false +animation/clip_178/name="" +animation/clip_178/start_frame=0 +animation/clip_178/end_frame=0 +animation/clip_178/loops=false +animation/clip_179/name="" +animation/clip_179/start_frame=0 +animation/clip_179/end_frame=0 +animation/clip_179/loops=false +animation/clip_180/name="" +animation/clip_180/start_frame=0 +animation/clip_180/end_frame=0 +animation/clip_180/loops=false +animation/clip_181/name="" +animation/clip_181/start_frame=0 +animation/clip_181/end_frame=0 +animation/clip_181/loops=false +animation/clip_182/name="" +animation/clip_182/start_frame=0 +animation/clip_182/end_frame=0 +animation/clip_182/loops=false +animation/clip_183/name="" +animation/clip_183/start_frame=0 +animation/clip_183/end_frame=0 +animation/clip_183/loops=false +animation/clip_184/name="" +animation/clip_184/start_frame=0 +animation/clip_184/end_frame=0 +animation/clip_184/loops=false +animation/clip_185/name="" +animation/clip_185/start_frame=0 +animation/clip_185/end_frame=0 +animation/clip_185/loops=false +animation/clip_186/name="" +animation/clip_186/start_frame=0 +animation/clip_186/end_frame=0 +animation/clip_186/loops=false +animation/clip_187/name="" +animation/clip_187/start_frame=0 +animation/clip_187/end_frame=0 +animation/clip_187/loops=false +animation/clip_188/name="" +animation/clip_188/start_frame=0 +animation/clip_188/end_frame=0 +animation/clip_188/loops=false +animation/clip_189/name="" +animation/clip_189/start_frame=0 +animation/clip_189/end_frame=0 +animation/clip_189/loops=false +animation/clip_190/name="" +animation/clip_190/start_frame=0 +animation/clip_190/end_frame=0 +animation/clip_190/loops=false +animation/clip_191/name="" +animation/clip_191/start_frame=0 +animation/clip_191/end_frame=0 +animation/clip_191/loops=false +animation/clip_192/name="" +animation/clip_192/start_frame=0 +animation/clip_192/end_frame=0 +animation/clip_192/loops=false +animation/clip_193/name="" +animation/clip_193/start_frame=0 +animation/clip_193/end_frame=0 +animation/clip_193/loops=false +animation/clip_194/name="" +animation/clip_194/start_frame=0 +animation/clip_194/end_frame=0 +animation/clip_194/loops=false +animation/clip_195/name="" +animation/clip_195/start_frame=0 +animation/clip_195/end_frame=0 +animation/clip_195/loops=false +animation/clip_196/name="" +animation/clip_196/start_frame=0 +animation/clip_196/end_frame=0 +animation/clip_196/loops=false +animation/clip_197/name="" +animation/clip_197/start_frame=0 +animation/clip_197/end_frame=0 +animation/clip_197/loops=false +animation/clip_198/name="" +animation/clip_198/start_frame=0 +animation/clip_198/end_frame=0 +animation/clip_198/loops=false +animation/clip_199/name="" +animation/clip_199/start_frame=0 +animation/clip_199/end_frame=0 +animation/clip_199/loops=false +animation/clip_200/name="" +animation/clip_200/start_frame=0 +animation/clip_200/end_frame=0 +animation/clip_200/loops=false +animation/clip_201/name="" +animation/clip_201/start_frame=0 +animation/clip_201/end_frame=0 +animation/clip_201/loops=false +animation/clip_202/name="" +animation/clip_202/start_frame=0 +animation/clip_202/end_frame=0 +animation/clip_202/loops=false +animation/clip_203/name="" +animation/clip_203/start_frame=0 +animation/clip_203/end_frame=0 +animation/clip_203/loops=false +animation/clip_204/name="" +animation/clip_204/start_frame=0 +animation/clip_204/end_frame=0 +animation/clip_204/loops=false +animation/clip_205/name="" +animation/clip_205/start_frame=0 +animation/clip_205/end_frame=0 +animation/clip_205/loops=false +animation/clip_206/name="" +animation/clip_206/start_frame=0 +animation/clip_206/end_frame=0 +animation/clip_206/loops=false +animation/clip_207/name="" +animation/clip_207/start_frame=0 +animation/clip_207/end_frame=0 +animation/clip_207/loops=false +animation/clip_208/name="" +animation/clip_208/start_frame=0 +animation/clip_208/end_frame=0 +animation/clip_208/loops=false +animation/clip_209/name="" +animation/clip_209/start_frame=0 +animation/clip_209/end_frame=0 +animation/clip_209/loops=false +animation/clip_210/name="" +animation/clip_210/start_frame=0 +animation/clip_210/end_frame=0 +animation/clip_210/loops=false +animation/clip_211/name="" +animation/clip_211/start_frame=0 +animation/clip_211/end_frame=0 +animation/clip_211/loops=false +animation/clip_212/name="" +animation/clip_212/start_frame=0 +animation/clip_212/end_frame=0 +animation/clip_212/loops=false +animation/clip_213/name="" +animation/clip_213/start_frame=0 +animation/clip_213/end_frame=0 +animation/clip_213/loops=false +animation/clip_214/name="" +animation/clip_214/start_frame=0 +animation/clip_214/end_frame=0 +animation/clip_214/loops=false +animation/clip_215/name="" +animation/clip_215/start_frame=0 +animation/clip_215/end_frame=0 +animation/clip_215/loops=false +animation/clip_216/name="" +animation/clip_216/start_frame=0 +animation/clip_216/end_frame=0 +animation/clip_216/loops=false +animation/clip_217/name="" +animation/clip_217/start_frame=0 +animation/clip_217/end_frame=0 +animation/clip_217/loops=false +animation/clip_218/name="" +animation/clip_218/start_frame=0 +animation/clip_218/end_frame=0 +animation/clip_218/loops=false +animation/clip_219/name="" +animation/clip_219/start_frame=0 +animation/clip_219/end_frame=0 +animation/clip_219/loops=false +animation/clip_220/name="" +animation/clip_220/start_frame=0 +animation/clip_220/end_frame=0 +animation/clip_220/loops=false +animation/clip_221/name="" +animation/clip_221/start_frame=0 +animation/clip_221/end_frame=0 +animation/clip_221/loops=false +animation/clip_222/name="" +animation/clip_222/start_frame=0 +animation/clip_222/end_frame=0 +animation/clip_222/loops=false +animation/clip_223/name="" +animation/clip_223/start_frame=0 +animation/clip_223/end_frame=0 +animation/clip_223/loops=false +animation/clip_224/name="" +animation/clip_224/start_frame=0 +animation/clip_224/end_frame=0 +animation/clip_224/loops=false +animation/clip_225/name="" +animation/clip_225/start_frame=0 +animation/clip_225/end_frame=0 +animation/clip_225/loops=false +animation/clip_226/name="" +animation/clip_226/start_frame=0 +animation/clip_226/end_frame=0 +animation/clip_226/loops=false +animation/clip_227/name="" +animation/clip_227/start_frame=0 +animation/clip_227/end_frame=0 +animation/clip_227/loops=false +animation/clip_228/name="" +animation/clip_228/start_frame=0 +animation/clip_228/end_frame=0 +animation/clip_228/loops=false +animation/clip_229/name="" +animation/clip_229/start_frame=0 +animation/clip_229/end_frame=0 +animation/clip_229/loops=false +animation/clip_230/name="" +animation/clip_230/start_frame=0 +animation/clip_230/end_frame=0 +animation/clip_230/loops=false +animation/clip_231/name="" +animation/clip_231/start_frame=0 +animation/clip_231/end_frame=0 +animation/clip_231/loops=false +animation/clip_232/name="" +animation/clip_232/start_frame=0 +animation/clip_232/end_frame=0 +animation/clip_232/loops=false +animation/clip_233/name="" +animation/clip_233/start_frame=0 +animation/clip_233/end_frame=0 +animation/clip_233/loops=false +animation/clip_234/name="" +animation/clip_234/start_frame=0 +animation/clip_234/end_frame=0 +animation/clip_234/loops=false +animation/clip_235/name="" +animation/clip_235/start_frame=0 +animation/clip_235/end_frame=0 +animation/clip_235/loops=false +animation/clip_236/name="" +animation/clip_236/start_frame=0 +animation/clip_236/end_frame=0 +animation/clip_236/loops=false +animation/clip_237/name="" +animation/clip_237/start_frame=0 +animation/clip_237/end_frame=0 +animation/clip_237/loops=false +animation/clip_238/name="" +animation/clip_238/start_frame=0 +animation/clip_238/end_frame=0 +animation/clip_238/loops=false +animation/clip_239/name="" +animation/clip_239/start_frame=0 +animation/clip_239/end_frame=0 +animation/clip_239/loops=false +animation/clip_240/name="" +animation/clip_240/start_frame=0 +animation/clip_240/end_frame=0 +animation/clip_240/loops=false +animation/clip_241/name="" +animation/clip_241/start_frame=0 +animation/clip_241/end_frame=0 +animation/clip_241/loops=false +animation/clip_242/name="" +animation/clip_242/start_frame=0 +animation/clip_242/end_frame=0 +animation/clip_242/loops=false +animation/clip_243/name="" +animation/clip_243/start_frame=0 +animation/clip_243/end_frame=0 +animation/clip_243/loops=false +animation/clip_244/name="" +animation/clip_244/start_frame=0 +animation/clip_244/end_frame=0 +animation/clip_244/loops=false +animation/clip_245/name="" +animation/clip_245/start_frame=0 +animation/clip_245/end_frame=0 +animation/clip_245/loops=false +animation/clip_246/name="" +animation/clip_246/start_frame=0 +animation/clip_246/end_frame=0 +animation/clip_246/loops=false +animation/clip_247/name="" +animation/clip_247/start_frame=0 +animation/clip_247/end_frame=0 +animation/clip_247/loops=false +animation/clip_248/name="" +animation/clip_248/start_frame=0 +animation/clip_248/end_frame=0 +animation/clip_248/loops=false +animation/clip_249/name="" +animation/clip_249/start_frame=0 +animation/clip_249/end_frame=0 +animation/clip_249/loops=false +animation/clip_250/name="" +animation/clip_250/start_frame=0 +animation/clip_250/end_frame=0 +animation/clip_250/loops=false +animation/clip_251/name="" +animation/clip_251/start_frame=0 +animation/clip_251/end_frame=0 +animation/clip_251/loops=false +animation/clip_252/name="" +animation/clip_252/start_frame=0 +animation/clip_252/end_frame=0 +animation/clip_252/loops=false +animation/clip_253/name="" +animation/clip_253/start_frame=0 +animation/clip_253/end_frame=0 +animation/clip_253/loops=false +animation/clip_254/name="" +animation/clip_254/start_frame=0 +animation/clip_254/end_frame=0 +animation/clip_254/loops=false +animation/clip_255/name="" +animation/clip_255/start_frame=0 +animation/clip_255/end_frame=0 +animation/clip_255/loops=false +animation/clip_256/name="" +animation/clip_256/start_frame=0 +animation/clip_256/end_frame=0 +animation/clip_256/loops=false diff --git a/assets/maujoe.basic_water_material/models/terrain.tscn b/assets/maujoe.basic_water_material/models/terrain.tscn new file mode 100644 index 0000000..f4d45be --- /dev/null +++ b/assets/maujoe.basic_water_material/models/terrain.tscn @@ -0,0 +1,146 @@ +[gd_scene load_steps=6 format=2] + +[ext_resource path="res://assets/maujoe.basic_water_material/models/terrain.dae" type="PackedScene" id=1] +[ext_resource path="res://assets/maujoe.basic_water_material/textures/dirt.png" type="Texture" id=2] + + +[sub_resource type="SpatialMaterial" id=1] + +render_priority = 0 +flags_transparent = false +flags_unshaded = false +flags_vertex_lighting = false +flags_no_depth_test = false +flags_use_point_size = false +flags_world_triplanar = false +flags_fixed_size = false +flags_albedo_tex_force_srgb = false +vertex_color_use_as_albedo = false +vertex_color_is_srgb = false +params_diffuse_mode = 0 +params_specular_mode = 0 +params_blend_mode = 0 +params_cull_mode = 0 +params_depth_draw_mode = 0 +params_line_width = 1.0 +params_point_size = 1.0 +params_billboard_mode = 0 +params_grow = false +params_use_alpha_scissor = false +albedo_color = Color( 1, 1, 1, 1 ) +albedo_texture = ExtResource( 2 ) +metallic = 0.0 +metallic_specular = 0.5 +metallic_texture_channel = 0 +roughness = 1.0 +roughness_texture_channel = 0 +emission_enabled = false +normal_enabled = false +rim_enabled = false +clearcoat_enabled = false +anisotropy_enabled = false +ao_enabled = false +depth_enabled = false +subsurf_scatter_enabled = false +transmission_enabled = false +refraction_enabled = false +detail_enabled = false +uv1_scale = Vector3( 2, 2, 2 ) +uv1_offset = Vector3( 0, 0, 0 ) +uv1_triplanar = true +uv1_triplanar_sharpness = 1.0 +uv2_scale = Vector3( 1, 1, 1 ) +uv2_offset = Vector3( 0, 0, 0 ) +uv2_triplanar = false +uv2_triplanar_sharpness = 1.0 +proximity_fade_enable = false +distance_fade_enable = false +_sections_unfolded = [ "Roughness", "UV1" ] + +[sub_resource type="CubeMesh" id=2] + +size = Vector3( 2, 2, 2 ) +subdivide_width = 0 +subdivide_height = 0 +subdivide_depth = 0 + +[sub_resource type="CylinderMesh" id=3] + +top_radius = 1.0 +bottom_radius = 1.0 +height = 2.0 +radial_segments = 64 +rings = 4 + +[node name="terrain" index="0" instance=ExtResource( 1 )] + +[node name="Plane" parent="." index="0"] + +material/0 = SubResource( 1 ) +_sections_unfolded = [ "material" ] + +[node name="MeshInstance" type="MeshInstance" parent="." index="2"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.611577, 2.08371 ) +layers = 1 +material_override = null +cast_shadow = 1 +extra_cull_margin = 0.0 +use_in_baked_light = false +lod_min_distance = 0.0 +lod_min_hysteresis = 0.0 +lod_max_distance = 0.0 +lod_max_hysteresis = 0.0 +mesh = SubResource( 2 ) +skeleton = NodePath("..") +material/0 = null + +[node name="MeshInstance2" type="MeshInstance" parent="." index="3"] + +transform = Transform( 0.865298, 0.433177, -0.252223, -0.501257, 0.747774, -0.435402, 0, 0.503182, 0.864181, -2.51833, -4.75691, -3.43013 ) +layers = 1 +material_override = null +cast_shadow = 1 +extra_cull_margin = 0.0 +use_in_baked_light = false +lod_min_distance = 0.0 +lod_min_hysteresis = 0.0 +lod_max_distance = 0.0 +lod_max_hysteresis = 0.0 +mesh = SubResource( 2 ) +skeleton = NodePath("..") +material/0 = null + +[node name="MeshInstance3" type="MeshInstance" parent="." index="4"] + +transform = Transform( -0.200505, -0.335063, -0.920614, 0.579423, 0.717171, -0.387214, 0.789979, -0.611064, 0.0503473, -4.13883, -4.1162, 4.76208 ) +layers = 1 +material_override = null +cast_shadow = 1 +extra_cull_margin = 0.0 +use_in_baked_light = false +lod_min_distance = 0.0 +lod_min_hysteresis = 0.0 +lod_max_distance = 0.0 +lod_max_hysteresis = 0.0 +mesh = SubResource( 2 ) +skeleton = NodePath("..") +material/0 = null + +[node name="MeshInstance4" type="MeshInstance" parent="." index="5"] + +transform = Transform( -0.935291, -0.0302122, -0.352587, 0.317867, -0.50963, -0.799524, -0.155533, -0.859863, 0.486256, 2.44717, -5.55065, -1.09404 ) +layers = 1 +material_override = null +cast_shadow = 1 +extra_cull_margin = 0.0 +use_in_baked_light = false +lod_min_distance = 0.0 +lod_min_hysteresis = 0.0 +lod_max_distance = 0.0 +lod_max_hysteresis = 0.0 +mesh = SubResource( 3 ) +skeleton = NodePath("..") +material/0 = null + + diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material.jpg b/assets/maujoe.basic_water_material/screenshots/basic_water_material.jpg new file mode 100644 index 0000000..3e74248 Binary files /dev/null and b/assets/maujoe.basic_water_material/screenshots/basic_water_material.jpg differ diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material.jpg.import b/assets/maujoe.basic_water_material/screenshots/basic_water_material.jpg.import new file mode 100644 index 0000000..289dfa7 --- /dev/null +++ b/assets/maujoe.basic_water_material/screenshots/basic_water_material.jpg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/basic_water_material.jpg-de524e8fcab79b2b9c9cdcb882945294.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/screenshots/basic_water_material.jpg" +dest_files=[ "res://.import/basic_water_material.jpg-de524e8fcab79b2b9c9cdcb882945294.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_1.jpg b/assets/maujoe.basic_water_material/screenshots/basic_water_material_1.jpg new file mode 100644 index 0000000..0d998fb Binary files /dev/null and b/assets/maujoe.basic_water_material/screenshots/basic_water_material_1.jpg differ diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_1.jpg.import b/assets/maujoe.basic_water_material/screenshots/basic_water_material_1.jpg.import new file mode 100644 index 0000000..c614791 --- /dev/null +++ b/assets/maujoe.basic_water_material/screenshots/basic_water_material_1.jpg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/basic_water_material_1.jpg-25100a1cb77e2417c01fa5507b8f1672.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/screenshots/basic_water_material_1.jpg" +dest_files=[ "res://.import/basic_water_material_1.jpg-25100a1cb77e2417c01fa5507b8f1672.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_2.jpg b/assets/maujoe.basic_water_material/screenshots/basic_water_material_2.jpg new file mode 100644 index 0000000..156ea30 Binary files /dev/null and b/assets/maujoe.basic_water_material/screenshots/basic_water_material_2.jpg differ diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_2.jpg.import b/assets/maujoe.basic_water_material/screenshots/basic_water_material_2.jpg.import new file mode 100644 index 0000000..566b678 --- /dev/null +++ b/assets/maujoe.basic_water_material/screenshots/basic_water_material_2.jpg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/basic_water_material_2.jpg-c2ef2cff07f0225e579abd8a197b794b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/screenshots/basic_water_material_2.jpg" +dest_files=[ "res://.import/basic_water_material_2.jpg-c2ef2cff07f0225e579abd8a197b794b.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_3.jpg b/assets/maujoe.basic_water_material/screenshots/basic_water_material_3.jpg new file mode 100644 index 0000000..d52d746 Binary files /dev/null and b/assets/maujoe.basic_water_material/screenshots/basic_water_material_3.jpg differ diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_3.jpg.import b/assets/maujoe.basic_water_material/screenshots/basic_water_material_3.jpg.import new file mode 100644 index 0000000..a6ba871 --- /dev/null +++ b/assets/maujoe.basic_water_material/screenshots/basic_water_material_3.jpg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/basic_water_material_3.jpg-c587e71eb08a08a02a297d3334efe204.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/screenshots/basic_water_material_3.jpg" +dest_files=[ "res://.import/basic_water_material_3.jpg-c587e71eb08a08a02a297d3334efe204.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_5.jpg b/assets/maujoe.basic_water_material/screenshots/basic_water_material_5.jpg new file mode 100644 index 0000000..3d3c25c Binary files /dev/null and b/assets/maujoe.basic_water_material/screenshots/basic_water_material_5.jpg differ diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_5.jpg.import b/assets/maujoe.basic_water_material/screenshots/basic_water_material_5.jpg.import new file mode 100644 index 0000000..7bb42bf --- /dev/null +++ b/assets/maujoe.basic_water_material/screenshots/basic_water_material_5.jpg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/basic_water_material_5.jpg-3946231ae011bce7b7162b46d1a9c1f8.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/screenshots/basic_water_material_5.jpg" +dest_files=[ "res://.import/basic_water_material_5.jpg-3946231ae011bce7b7162b46d1a9c1f8.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_6.jpg b/assets/maujoe.basic_water_material/screenshots/basic_water_material_6.jpg new file mode 100644 index 0000000..66f4924 Binary files /dev/null and b/assets/maujoe.basic_water_material/screenshots/basic_water_material_6.jpg differ diff --git a/assets/maujoe.basic_water_material/screenshots/basic_water_material_6.jpg.import b/assets/maujoe.basic_water_material/screenshots/basic_water_material_6.jpg.import new file mode 100644 index 0000000..5c148fd --- /dev/null +++ b/assets/maujoe.basic_water_material/screenshots/basic_water_material_6.jpg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/basic_water_material_6.jpg-393328d6fd88acbcc143143455f51c0b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/screenshots/basic_water_material_6.jpg" +dest_files=[ "res://.import/basic_water_material_6.jpg-393328d6fd88acbcc143143455f51c0b.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/textures/cloud_layers_1k.hdr b/assets/maujoe.basic_water_material/textures/cloud_layers_1k.hdr new file mode 100644 index 0000000..c81240c Binary files /dev/null and b/assets/maujoe.basic_water_material/textures/cloud_layers_1k.hdr differ diff --git a/assets/maujoe.basic_water_material/textures/cloud_layers_1k.hdr.import b/assets/maujoe.basic_water_material/textures/cloud_layers_1k.hdr.import new file mode 100644 index 0000000..b033f12 --- /dev/null +++ b/assets/maujoe.basic_water_material/textures/cloud_layers_1k.hdr.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/cloud_layers_1k.hdr-120b64acaa244e4436c31186a305491a.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/textures/cloud_layers_1k.hdr" +dest_files=[ "res://.import/cloud_layers_1k.hdr-120b64acaa244e4436c31186a305491a.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/textures/dirt.png b/assets/maujoe.basic_water_material/textures/dirt.png new file mode 100644 index 0000000..0beec0b Binary files /dev/null and b/assets/maujoe.basic_water_material/textures/dirt.png differ diff --git a/assets/maujoe.basic_water_material/textures/dirt.png.import b/assets/maujoe.basic_water_material/textures/dirt.png.import new file mode 100644 index 0000000..7bbc1b0 --- /dev/null +++ b/assets/maujoe.basic_water_material/textures/dirt.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="StreamTexture" +path.s3tc="res://.import/dirt.png-2f6f9f55b644c74cdd0f99e41507ea61.s3tc.stex" +path.etc2="res://.import/dirt.png-2f6f9f55b644c74cdd0f99e41507ea61.etc2.stex" +metadata={ +"imported_formats": [ "s3tc", "etc2" ], +"vram_texture": true +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/textures/dirt.png" +dest_files=[ "res://.import/dirt.png-2f6f9f55b644c74cdd0f99e41507ea61.s3tc.stex", "res://.import/dirt.png-2f6f9f55b644c74cdd0f99e41507ea61.etc2.stex" ] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=true +flags/filter=true +flags/mipmaps=true +flags/anisotropic=false +flags/srgb=1 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/textures/water_normal_1.png b/assets/maujoe.basic_water_material/textures/water_normal_1.png new file mode 100644 index 0000000..bc45a1a Binary files /dev/null and b/assets/maujoe.basic_water_material/textures/water_normal_1.png differ diff --git a/assets/maujoe.basic_water_material/textures/water_normal_1.png.import b/assets/maujoe.basic_water_material/textures/water_normal_1.png.import new file mode 100644 index 0000000..b92b0e9 --- /dev/null +++ b/assets/maujoe.basic_water_material/textures/water_normal_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/water_normal_1.png-7e3a5f6b654ae6d69802a802595bdf49.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/textures/water_normal_1.png" +dest_files=[ "res://.import/water_normal_1.png-7e3a5f6b654ae6d69802a802595bdf49.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/assets/maujoe.basic_water_material/textures/water_normal_2.png b/assets/maujoe.basic_water_material/textures/water_normal_2.png new file mode 100644 index 0000000..b344a5f Binary files /dev/null and b/assets/maujoe.basic_water_material/textures/water_normal_2.png differ diff --git a/assets/maujoe.basic_water_material/textures/water_normal_2.png.import b/assets/maujoe.basic_water_material/textures/water_normal_2.png.import new file mode 100644 index 0000000..08d1e11 --- /dev/null +++ b/assets/maujoe.basic_water_material/textures/water_normal_2.png.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="StreamTexture" +path.s3tc="res://.import/water_normal_2.png-4dc8dd7a6821e4087592d9c95e1f0755.s3tc.stex" +path.etc2="res://.import/water_normal_2.png-4dc8dd7a6821e4087592d9c95e1f0755.etc2.stex" +metadata={ +"imported_formats": [ "s3tc", "etc2" ], +"vram_texture": true +} + +[deps] + +source_file="res://assets/maujoe.basic_water_material/textures/water_normal_2.png" +dest_files=[ "res://.import/water_normal_2.png-4dc8dd7a6821e4087592d9c95e1f0755.s3tc.stex", "res://.import/water_normal_2.png-4dc8dd7a6821e4087592d9c95e1f0755.etc2.stex" ] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=1 +flags/repeat=true +flags/filter=true +flags/mipmaps=true +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/default.gti b/default.gti new file mode 100644 index 0000000..d94c3f8 Binary files /dev/null and b/default.gti differ diff --git a/default_env.tres b/default_env.tres new file mode 100644 index 0000000..a8c0a97 --- /dev/null +++ b/default_env.tres @@ -0,0 +1,10 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] +radiance_size = 5 +ground_bottom_color = Color( 0.862745, 0.858824, 0.858824, 1 ) +ground_horizon_color = Color( 1, 1, 1, 1 ) + +[resource] +background_mode = 2 +background_sky = SubResource( 1 ) diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..c98fbb6 Binary files /dev/null and b/icon.png differ diff --git a/icon.png.import b/icon.png.import new file mode 100644 index 0000000..96cbf46 --- /dev/null +++ b/icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.png" +dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/player/Player.tscn b/player/Player.tscn new file mode 100644 index 0000000..9e8945b --- /dev/null +++ b/player/Player.tscn @@ -0,0 +1,29 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://player/player_controller.gd" type="Script" id=1] +[ext_resource path="res://default_env.tres" type="Environment" id=2] + +[sub_resource type="CapsuleShape" id=1] +radius = 0.6 +height = 1.5 + +[node name="Player" type="KinematicBody" groups=[ +"Player", +]] +collision_layer = 2 +collision_mask = 3 +script = ExtResource( 1 ) +head_path = NodePath("Head") +cam_path = NodePath("Head/Camera") + +[node name="Collision" type="CollisionShape" parent="."] +transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0 ) +shape = SubResource( 1 ) + +[node name="Head" type="Spatial" parent="."] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0 ) + +[node name="Camera" type="Camera" parent="Head"] +environment = ExtResource( 2 ) +fov = 80.0 +far = 10000.0 diff --git a/player/player_controller.gd b/player/player_controller.gd new file mode 100644 index 0000000..7b10202 --- /dev/null +++ b/player/player_controller.gd @@ -0,0 +1,170 @@ +extends KinematicBody + +###################-VARIABLES-#################### + +# Camera +export var mouse_sensitivity := 10.0 +export var head_path: NodePath +export var cam_path: NodePath +export var FOV := 80.0 +var mouse_axis := Vector2() +onready var head: Spatial = get_node(head_path) +onready var cam: Camera = get_node(cam_path) +# Move +var velocity := Vector3() +var direction := Vector3() +var move_axis := Vector2() +var can_sprint := true +var sprinting := false +# Walk +const FLOOR_NORMAL := Vector3(0, 1, 0) +export var gravity := 30.0 +export var walk_speed := 10 +export var sprint_speed := 16 +export var acceleration := 8 +export var deacceleration := 10 +export(float, 0.0, 1.0, 0.05) var air_control := 0.3 +export var jump_height := 10 +# Fly +export var fly_speed := 1000 +export var fly_accel := 4 +var flying := true +# Slopes +export var floor_max_angle := 45.0 + +################################################## + +# Called when the node enters the scene tree +func _ready() -> void: + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + cam.fov = FOV + + +# Called every frame. 'delta' is the elapsed time since the previous frame +func _process(_delta: float) -> void: + move_axis.x = Input.get_action_strength("move_forward") - Input.get_action_strength("move_backward") + move_axis.y = Input.get_action_strength("move_right") - Input.get_action_strength("move_left") + + camera_rotation() + + +# Called every physics tick. 'delta' is constant +func _physics_process(delta: float) -> void: + if flying: + fly(delta) + else: + walk(delta) + + +# Called when there is an input event +func _input(event: InputEvent) -> void: + if event is InputEventMouseMotion: + mouse_axis = event.relative + + +func walk(delta: float) -> void: + # Input + direction = Vector3() + var aim: Basis = get_global_transform().basis + if move_axis.x >= 0.5: + direction -= aim.z + if move_axis.x <= -0.5: + direction += aim.z + if move_axis.y <= -0.5: + direction -= aim.x + if move_axis.y >= 0.5: + direction += aim.x + direction.y = 0 + direction = direction.normalized() + + # Jump + var _snap: Vector3 + if is_on_floor(): + _snap = Vector3(0, -1, 0) + if Input.is_action_just_pressed("move_jump"): + _snap = Vector3(0, 0, 0) + velocity.y = jump_height + + # Apply Gravity + velocity.y -= gravity * delta + + # Sprint + var _speed: int + if (Input.is_action_pressed("move_sprint") and can_sprint and move_axis.x == 1): + _speed = sprint_speed + cam.set_fov(lerp(cam.fov, FOV * 1.2, delta * 8)) + sprinting = true + else: + _speed = walk_speed + cam.set_fov(lerp(cam.fov, FOV, delta * 8)) + sprinting = false + + # Acceleration and Deacceleration + # where would the player go + var _temp_vel: Vector3 = velocity + _temp_vel.y = 0 + var _target: Vector3 = direction * _speed + var _temp_accel: float + if direction.dot(_temp_vel) > 0: + _temp_accel = acceleration + else: + _temp_accel = deacceleration + if not is_on_floor(): + _temp_accel *= air_control + # interpolation + _temp_vel = _temp_vel.linear_interpolate(_target, _temp_accel * delta) + velocity.x = _temp_vel.x + velocity.z = _temp_vel.z + # clamping (to stop on slopes) + if direction.dot(velocity) == 0: + var _vel_clamp := 0.25 + if velocity.x < _vel_clamp and velocity.x > -_vel_clamp: + velocity.x = 0 + if velocity.z < _vel_clamp and velocity.z > -_vel_clamp: + velocity.z = 0 + + # Move + velocity.y = move_and_slide_with_snap(velocity, _snap, FLOOR_NORMAL, + true, 4, deg2rad(floor_max_angle)).y + + +func fly(delta: float) -> void: + # Input + direction = Vector3() + var aim = head.get_global_transform().basis + if move_axis.x == 1: + direction -= aim.z + if move_axis.x == -1: + direction += aim.z + if move_axis.y == -1: + direction -= aim.x + if move_axis.y == 1: + direction += aim.x + direction = direction.normalized() + + # Acceleration and Deacceleration + var target: Vector3 = direction * fly_speed + velocity = velocity.linear_interpolate(target, fly_accel * delta) + + # Move + velocity = move_and_slide(velocity) + + +func camera_rotation() -> void: + if Input.get_mouse_mode() != Input.MOUSE_MODE_CAPTURED: + return + if mouse_axis.length() > 0: + var _smoothness := 80 + # Get mouse delta + var horizontal: float = -(mouse_axis.x * mouse_sensitivity) / _smoothness + var vertical: float = -(mouse_axis.y * mouse_sensitivity) / _smoothness + + mouse_axis = Vector2() + + rotate_y(deg2rad(horizontal)) + head.rotate_x(deg2rad(vertical)) + + # Clamp mouse rotation + var temp_rot: Vector3 = head.rotation_degrees + temp_rot.x = clamp(temp_rot.x, -90, 90) + head.rotation_degrees = temp_rot diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..8687eb9 --- /dev/null +++ b/project.godot @@ -0,0 +1,68 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=4 + +_global_script_classes=[ ] +_global_script_class_icons={ + +} + +[application] + +config/name="GiantsEdit" +run/main_scene="res://3d.tscn" +config/icon="res://icon.png" + +[display] + +window/size/resizable=false +window/stretch/mode="viewport" +window/stretch/aspect="expand" + +[input] + +move_forward={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":90,"unicode":0,"echo":false,"script":null) + ] +} +move_backward={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"unicode":0,"echo":false,"script":null) + ] +} +move_left={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":81,"unicode":0,"echo":false,"script":null) + ] +} +move_right={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null) + ] +} +move_sprint={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777237,"unicode":0,"echo":false,"script":null) + ] +} +move_jump={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"unicode":0,"echo":false,"script":null) + ] +} +mouse_input={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":true,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777244,"unicode":0,"echo":false,"script":null) + ] +} + +[rendering] + +environment/default_environment="res://default_env.tres"