From 6148031f31bf7e9691935c309a4de4d8b4f59e06 Mon Sep 17 00:00:00 2001 From: Kenneth Dodrill Date: Wed, 2 Jun 2021 15:00:09 -0500 Subject: [PATCH] Fix dialogue replaying on pause --- project.godot | 4 + src/DialogueSystem.gd | 30 +- src/Player.gd | 2 +- src/Speaker.gd | 7 - src/Speaker3D.gd | 7 - src/UI/MainScreen.tscn | 34 +- src/UI/Version.tscn | 4 +- src/World.gd | 4 - src/World.tscn | 986 ++++++++++++++++++++++++++++++++++++----- 9 files changed, 892 insertions(+), 186 deletions(-) diff --git a/project.godot b/project.godot index f9ce343..0eb9c38 100644 --- a/project.godot +++ b/project.godot @@ -79,6 +79,9 @@ config/description="a short adventure game about two brothers reminiscing over s run/main_scene="res://src/World.tscn" config/icon="res://icon.png" config/windows_native_icon="res://exports/windows/icon.ico" +config/name_ru="Мой брат живет в каньоне" +config/name_zh="《我的哥哥住在峡谷中》" +config/name_de="Mein Bruder lebt in einer Schlucht" [autoload] @@ -184,6 +187,7 @@ translations=PoolStringArray( "res://assets/ui/translations.en.translation", "re translation_remaps={ "res://assets/ui/fonts/dialogue.tres": PoolStringArray( "res://assets/ui/fonts/chinese.tres:zh" ), "res://assets/ui/fonts/options-ui.tres": PoolStringArray( "res://assets/ui/fonts/chinese-options.tres:zh" ), +"res://assets/ui/fonts/small-ui.tres": PoolStringArray( "res://assets/ui/fonts/chinese-small.tres:zh" ), "res://assets/ui/fonts/ui.tres": PoolStringArray( "res://assets/ui/fonts/chinese.tres:zh" ) } diff --git a/src/DialogueSystem.gd b/src/DialogueSystem.gd index 07d89a5..bb88649 100644 --- a/src/DialogueSystem.gd +++ b/src/DialogueSystem.gd @@ -11,12 +11,12 @@ var dialogue_file_path: String var dialogue: Array var dialogue_time_left: float = 0.0 -var subtitles +var subtitles: bool var file_checker = File.new() var speaker - + func check_dialogue_loaded(): return !dialogue.empty() @@ -53,16 +53,18 @@ func start_dialogue(): yield(timer, "timeout") continue if dialogue[i]["type"] == "static": - dialogue_label.set_character_name("radio") - dialogue_label.set_dialogue_text("*static*") + if subtitles: + dialogue_label.set_character_name("radio") + dialogue_label.set_dialogue_text("*static*") speaker = radio.get_speaker() speaker.speak(static_sound) start_timer(static_sound.get_length()) yield(timer, "timeout") continue - dialogue_label.set_character_name(dialogue[i]["name"]) - dialogue_label.set_dialogue_text(dialogue[i]["text"]) + if subtitles: + dialogue_label.set_character_name(dialogue[i]["name"]) + dialogue_label.set_dialogue_text(dialogue[i]["text"]) match dialogue[i]["name"]: "jake": @@ -92,22 +94,6 @@ func start_dialogue(): tom_counter = tom_counter + 1 unload_dialogue() - -func pause_dialogue(): - if dialogue.size() <= 0 || speaker == null: - return - - dialogue_time_left = timer.get_time_left() - print(dialogue_time_left) - timer.stop() - speaker.pause_speech() - -func resume_dialogue(): - if dialogue.size() <= 0 || speaker == null: - return - - timer.start(dialogue_time_left) - speaker.resume_speech() func start_timer(time: float): timer.set_wait_time(time) diff --git a/src/Player.gd b/src/Player.gd index 21a7810..983772d 100644 --- a/src/Player.gd +++ b/src/Player.gd @@ -117,7 +117,7 @@ func camera_rotation(axis_vector: Vector2, x_sensitivity: float, y_sensitivity: rotate_y(deg2rad(horizontal)) head.rotate_x(deg2rad(vertical)) head.rotation_degrees.x = clamp(head.rotation_degrees.x, -90, 90) - + func get_mouth(): return mouth diff --git a/src/Speaker.gd b/src/Speaker.gd index 58ed662..4b001b4 100644 --- a/src/Speaker.gd +++ b/src/Speaker.gd @@ -5,10 +5,3 @@ var speech_playback_position: float = 0.0 func speak(sound: AudioStream): stream = sound play() - -func pause_speech(): - speech_playback_position = get_playback_position() - stop() - -func resume_speech(): - play(speech_playback_position) diff --git a/src/Speaker3D.gd b/src/Speaker3D.gd index a849f86..1788097 100644 --- a/src/Speaker3D.gd +++ b/src/Speaker3D.gd @@ -5,10 +5,3 @@ var speech_playback_position: float = 0.0 func speak(sound: AudioStream): stream = sound play() - -func pause_speech(): - speech_playback_position = get_playback_position() - stop() - -func resume_speech(): - play(speech_playback_position) diff --git a/src/UI/MainScreen.tscn b/src/UI/MainScreen.tscn index 88fc060..3273b73 100644 --- a/src/UI/MainScreen.tscn +++ b/src/UI/MainScreen.tscn @@ -1,22 +1,14 @@ -[gd_scene load_steps=10 format=2] +[gd_scene load_steps=9 format=2] [ext_resource path="res://assets/ui/ui.tres" type="Theme" id=1] [ext_resource path="res://src/UI/MenuOptions.gd" type="Script" id=2] [ext_resource path="res://src/UI/Version.tscn" type="PackedScene" id=3] +[ext_resource path="res://assets/ui/small-ui.tres" type="Theme" id=4] [ext_resource path="res://assets/logo/logo-lg.png" type="Texture" id=6] [ext_resource path="res://src/UI/QuitButton.tscn" type="PackedScene" id=7] [ext_resource path="res://src/UI/OptionsButton.tscn" type="PackedScene" id=8] [ext_resource path="res://src/UI/StartButton.tscn" type="PackedScene" id=9] -[sub_resource type="DynamicFontData" id=1] -font_path = "res://assets/ui/fonts/raw/Manrope-Regular.otf" - -[sub_resource type="DynamicFont" id=2] -size = 40 -use_mipmaps = true -use_filter = true -font_data = SubResource( 1 ) - [node name="MainScreen" type="CanvasLayer"] layer = -1 @@ -48,14 +40,14 @@ texture = ExtResource( 6 ) [node name="Desc" type="Label" parent="MainMenu/HBoxContainer/VBoxContainer"] margin_top = 535.0 margin_right = 1024.0 -margin_bottom = 590.0 -custom_fonts/font = SubResource( 2 ) +margin_bottom = 570.0 +theme = ExtResource( 4 ) text = "SUBTITLE" [node name="MenuOptions" type="VBoxContainer" parent="MainMenu/HBoxContainer/VBoxContainer"] -margin_top = 594.0 +margin_top = 574.0 margin_right = 1024.0 -margin_bottom = 924.0 +margin_bottom = 971.0 size_flags_vertical = 3 custom_constants/separation = -10 alignment = 2 @@ -65,22 +57,22 @@ __meta__ = { } [node name="StartButton" parent="MainMenu/HBoxContainer/VBoxContainer/MenuOptions" instance=ExtResource( 9 )] -margin_top = 104.0 +margin_top = 171.0 margin_right = 1024.0 -margin_bottom = 186.0 +margin_bottom = 253.0 [node name="OptionsButton" parent="MainMenu/HBoxContainer/VBoxContainer/MenuOptions" instance=ExtResource( 8 )] -margin_top = 176.0 +margin_top = 243.0 margin_right = 1024.0 -margin_bottom = 258.0 +margin_bottom = 325.0 [node name="QuitButton" parent="MainMenu/HBoxContainer/VBoxContainer/MenuOptions" instance=ExtResource( 7 )] -margin_top = 248.0 +margin_top = 315.0 margin_right = 1024.0 -margin_bottom = 330.0 +margin_bottom = 397.0 [node name="Version" parent="MainMenu/HBoxContainer/VBoxContainer" instance=ExtResource( 3 )] -margin_top = 928.0 +margin_top = 975.0 [node name="Camera" type="Camera" parent="."] transform = Transform( 0.716918, -0.0540583, -0.695058, -0.00482284, 0.996581, -0.0824838, 0.697141, 0.0624863, 0.714206, -6.00211, 187.071, 7.36768 ) diff --git a/src/UI/Version.tscn b/src/UI/Version.tscn index 0e8751a..0a499cb 100644 --- a/src/UI/Version.tscn +++ b/src/UI/Version.tscn @@ -1,13 +1,13 @@ [gd_scene load_steps=3 format=2] -[ext_resource path="res://assets/ui/fonts/ui.tres" type="DynamicFont" id=1] [ext_resource path="res://src/UI/Version.gd" type="Script" id=2] +[ext_resource path="res://assets/ui/small-ui.tres" type="Theme" id=3] [node name="Version" type="Label"] margin_top = 969.0 margin_right = 1024.0 margin_bottom = 1010.0 -custom_fonts/font = ExtResource( 1 ) +theme = ExtResource( 3 ) text = "VERSION" script = ExtResource( 2 ) __meta__ = { diff --git a/src/World.gd b/src/World.gd index 108b269..d804850 100644 --- a/src/World.gd +++ b/src/World.gd @@ -16,8 +16,6 @@ func _ready() -> void: initialize_steam() func _process(_delta) -> void: - print(TranslationServer.get_locale()) - if get_tree().is_paused() || Input.get_mouse_mode() != Input.MOUSE_MODE_CAPTURED: return @@ -26,7 +24,6 @@ func _process(_delta) -> void: func pause() -> void: get_tree().paused = true - dialogue_system.pause_dialogue() Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) pause_menu.show() @@ -35,7 +32,6 @@ func resume() -> void: pause_menu.hide() pause_menu.release_focus() get_tree().paused = false - dialogue_system.resume_dialogue() func initialize_steam() -> void: var INIT: Dictionary = Steam.steamInit(false) diff --git a/src/World.tscn b/src/World.tscn index 4b7ca17..7be75d8 100644 --- a/src/World.tscn +++ b/src/World.tscn @@ -35,13 +35,13 @@ [ext_resource path="res://src/DialogueActivator.tscn" type="PackedScene" id=41] [ext_resource path="res://assets/final_models/fence/fence-lod.tscn" type="PackedScene" id=44] -[sub_resource type="Curve3D" id=2] +[sub_resource type="Curve3D" id=1] _data = { "points": PoolVector3Array( 0, 0, 0, 0, 0, 0, 1.04861, -2.08176, -219.88, 0, 0, 0, 0, 0, 0, 154.368, -80.5602, -225.999, 0, 0, 0, 0, 0, 0, 225.958, -76.3604, -218.583, 0, 0, 0, 0, 0, 0, 331.066, -39.662, -162.966, 0, 0, 0, 0, 0, 0, 333.059, -38.5608, -116.869, 0, 0, 0, 0, 0, 0, 255.153, -28.3988, -3.6998, 0, 0, 0, 0, 0, 0, 174.949, -33.3669, 64.2451, 0, 0, 0, 0, 0, 0, -0.556724, -0.453506, 67.7665 ), "tilts": PoolRealArray( 0, 0, 0, 0, 0, 0, 0, 0 ) } -[sub_resource type="ArrayMesh" id=1] +[sub_resource type="ArrayMesh" id=46] resource_name = "GrassClump" surfaces/0 = { "aabb": AABB( -0.114488, 0.000832707, -0.0987036, 0.175503, 0.258602, 0.127365 ), @@ -59,7 +59,7 @@ surfaces/0 = { [sub_resource type="MultiMesh" id=3] transform_format = 1 instance_count = 2681 -mesh = SubResource( 1 ) +mesh = SubResource( 46 ) transform_array = PoolVector3Array( -0.245211, 0.0478398, -1.17603, 0.0550761, 1.20043, 0.0373486, 1.17571, -0.0462564, -0.247026, 66.2206, -73.7081, -119.902, -1.47889, -0.0271189, 0.342852, -0.0272365, 1.51811, 0.00259475, -0.342842, -0.00362284, -1.47914, 54.4108, -72.8489, -88.1318, -1.29143, -0.129106, 0.907704, -0.0981011, 1.57847, 0.0849387, -0.911576, 0.0130358, -1.29509, 234.729, -75.8488, -201.927, 1.2401, 0.0352617, -0.781035, -0.0298372, 1.46556, 0.0187919, 0.781261, 0, 1.24046, 75.1678, -1.42134, 65.4841, 0.812699, 0.124484, -0.701144, -0.178625, 1.06553, -0.0178669, 0.689342, 0.129344, 0.821983, 212.125, -32.8976, -53.3927, -0.831696, 0.139849, 0.873107, 0.201674, 1.19705, 0.000373021, -0.860931, 0.145309, -0.843371, 204.652, -32.4042, -50.2638, -0.162531, -0.114268, -1.07723, 0.0165635, 1.0889, -0.118004, 1.08315, -0.0337978, -0.159839, 217.587, -76.8755, -180.596, 1.38264, -0.00144386, 1.20092, 0.00224704, 1.83136, -0.000385217, -1.20092, 0.00176433, 1.38264, 155.663, -25.8925, -90.7399, -0.440311, 0.544001, 1.11652, 0.352033, 1.19069, -0.441311, -1.19106, 0.150817, -0.54319, 148.454, -16.9546, 43.2797, 1.3186, 0.00420999, 0.758513, -0.00432968, 1.5212, -0.000916414, -0.758513, -0.00136453, 1.31861, 167.134, -75.9171, -161.613, -1.10254, 0.00334277, 0.567659, 0.00317259, 1.24009, -0.00114054, -0.56766, 0.000438242, -1.10255, 191.701, -25.9323, -73.8529, -0.100912, -0.148274, -1.73152, -0.0435381, 1.73411, -0.145958, 1.73731, 0.0348452, -0.104234, 231.215, -73.9951, -133.917, 0.592179, 0, -0.990773, 0, 1.15426, 0, 0.990773, 0, 0.592179, 31.5046, -0.453506, 27.1892, -1.4392, 0.0424423, -0.222676, 0.0423559, 1.45632, 0.00382209, 0.222692, -0.00269802, -1.43982, 312.873, -38.7926, -156.157, -0.936385, -0.00677938, 1.35689, -0.000339894, 1.64862, 0.00800239, -1.3569, 0.00426542, -0.936375, 118.599, -75.8713, -164.175, -0.160086, 0.100631, 1.88784, 0.0363735, 1.89441, -0.0978967, -1.89017, 0.0279323, -0.161772, 19.9925, -71.7691, -108.561, -1.12063, 0.00422044, 0.229027, 0.00204148, 1.14374, -0.0110876, -0.229057, -0.0104542, -1.12058, 106.873, -25.8479, -38.1684, 1.00076, 0.0114404, -1.29653, 0.106849, 1.63151, 0.0968708, 1.29217, -0.14377, 0.99613, 105.32, -77.9951, -180.001, -0.085251, 1.04256, 0.567279, -0.0828511, 0.562126, -1.04554, -1.18401, -0.114401, 0.0323167, 13.0304, -66.143, -85.3909, -0.163316, 0.21699, -1.08102, 0.0185543, 1.0932, 0.216632, 1.10242, 0.0137465, -0.163791, 258.086, -34.3767, -84.8109, 0.0444152, -0.0767807, -1.21024, 0.0829423, 1.20841, -0.0736205, 1.20984, -0.0800258, 0.0494773, 240.369, -73.7471, -156.433, 1.45933, 0.0353793, -0.179262, -0.0351153, 1.4703, 0.00431353, 0.179314, 0, 1.45975, 45.3396, -0.703552, 36.837, -0.398997, 0.077849, 1.62851, 0.195466, 1.66676, -0.031787, -1.61861, 0.18209, -0.405276, 182.566, -30.461, -60.8802, 0.542254, -0.00413923, 0.848042, 0.00442395, 1.00658, 0.0020843, -0.84804, 0.0026043, 0.542266, 126.162, -75.8212, -171.485, 0.56703, 0, 1.21789, 0, 1.34342, 0, -1.21789, 0, 0.56703, 26.2363, -0.453506, -69.1548, -0.399715, 0.0203948, 1.35689, -0.343206, 1.36702, -0.12165, -1.31292, -0.363556, -0.3813, 139.462, -74.03, -107.281, 0.74605, 0.0185292, 1.02985, 0.00777433, 1.27147, -0.0285086, -1.02999, 0.0230184, 0.745736, 308.746, -39.076, -92.488, 0.994126, 0.00456105, -1.31445, -0.00157221, 1.64805, 0.00452954, 1.31446, -0.00147831, 0.994127, 157.467, -75.8977, -170.071, -0.5007, -0.0154391, -1.59176, 0.283898, 1.64103, -0.105219, 1.56631, -0.302375, -0.489763, 33.1444, -74.5649, -84.1637, 1.58107, -0.165836, 0.00576283, 0.165575, 1.58032, 0.0499234, -0.0109364, -0.0490505, 1.58896, 216.818, -76.7825, -175, 0.934789, 0.0283265, -0.715514, -0.0224935, 1.1772, 0.0172172, 0.715721, 0, 0.93506, 42.3796, -0.632309, 14.1071, 1.69797, 0.391227, 0.512597, -0.373105, 1.77365, -0.117791, -0.525934, 0.0048197, 1.73847, 276.28, -38.3987, -61.6594, -1.38759, 0.0619984, 0.705973, 0.028012, 1.55571, -0.0815641, -0.708136, -0.0599464, -1.38658, 54.5398, -73.8188, -134.856, -1.79208, 0.20784, -0.00361356, 0.205886, 1.77902, 0.217818, 0.028657, 0.215955, -1.79089, 188.965, -32.6373, -33.2466, -0.832816, -0.0867307, -0.884122, -0.0822567, 1.2142, -0.0416272, 0.88455, 0.0312535, -0.836284, 46.0532, -6.27989, -10.0842, -0.156371, 0.0272749, 1.88525, -0.482408, 1.82818, -0.0664621, -1.82269, -0.4862, -0.144147, 141.291, -73.6654, -105.808, -0.0548926, 0.151358, 1.84035, -0.0810944, 1.83919, -0.153681, -1.84479, -0.0853522, -0.0480051, 259.001, -72.7998, -139.735, 0.790734, 0.00378429, 1.33808, 0.0520267, 1.55299, -0.0351371, -1.33707, 0.0626663, 0.789962, 309.128, -39.022, -94.3105, -0.0860671, 0.0255086, 1.05659, 0.002071, 1.06009, -0.0254244, -1.0569, 0, -0.086092, 37.2135, -0.508011, 28.0156, -0.0836899, 0.058248, -1.99692, 0.0061401, 1.99867, 0.0580417, 1.99776, -0.00370277, -0.0838332, 297.299, -38.3234, -147.868, 1.23514, -0.118331, 0.624831, 0.118166, 1.38391, 0.0284997, -0.624862, 0.0278084, 1.24047, 210.849, -75.1538, -162.914, -1.12046, 0.00837674, -1.55398, -0.0618454, 1.91403, 0.0549097, 1.55277, 0.0822785, -1.11914, 167.427, -35.9978, -3.10567, -0.0575912, 0.106263, -1.60036, -0.0588848, 1.60018, 0.10837, 1.60281, 0.0626063, -0.0535221, 34.3869, -71.8581, -129.576, 0.648581, 0.0332726, 1.54844, -0.0315082, 1.67867, -0.0228733, -1.54848, -0.020221, 0.649031, 287.282, -74.3494, -168.897, -0.182054, 0, -1.94159, 0, 1.9501, 0, 1.94159, 0, -0.182054, 13.6692, -0.453506, 28.9736, 0.753303, 0.111708, 1.06045, -0.0289821, 1.30005, -0.116359, -1.06593, 0.0435974, 0.752599, 201.527, -35.8233, 7.75128, 0.764265, -0.00581035, 1.29941, 0.00118601, 1.5075, 0.00604328, -1.29942, -0.00204148, 0.764263, 113.659, -25.9612, -54.3803, 1.01431, 0.111911, 1.13796, 0.0607427, 1.51374, -0.203009, -1.14183, 0.17994, 1.00007, 71.909, -73.5861, -173.188, 0.912188, 0.150388, -0.835462, -0.107838, 1.23696, 0.104918, 0.842012, -0.00450245, 0.918529, 37.41, -71.8757, -145.601, -1.17312, 0.0108624, 0.515657, 0.0782063, 1.27014, 0.151163, -0.509807, 0.169849, -1.16339, 285.095, -40.6528, -78.6531, 1.47665, 0.00418935, 0.333042, -0.00438544, 1.51374, 0.000402868, -0.333039, -0.00135784, 1.47666, 170.724, -75.9416, -177.622, -0.829271, 0.215854, -1.80334, 0.0901828, 1.98487, 0.196112, 1.81397, 0, -0.83416, 117.978, -4.17555, 37.7415, -1.63999, -0.00640807, 0.273107, -0.00669086, 1.66258, -0.00116829, -0.2731, -0.00225149, -1.64001, 119.2, -25.9399, -54.4208, 0.940919, 0.0556558, 1.58886, -0.0796403, 1.8456, -0.0174864, -1.58784, -0.0595884, 0.942402, 89.8512, -74.9185, -129.551, 0.128628, 0.256928, 1.15768, -0.0251507, 1.16479, -0.255713, -1.18558, 0.00316521, 0.131025, 281.617, -39.5669, -65.0168, 1.07434, 0.035414, -1.00611, -0.0258489, 1.47189, 0.0242071, 1.0064, 0, 1.07465, 59.7355, -1.04999, 52.5559, -1.60476, -0.173458, 0.399551, -0.180702, 1.65295, -0.00817038, -0.396327, -0.051305, -1.61408, 222.665, -76.0186, -170.158, -1.17038, 0.212175, -1.23727, 0.175561, 1.70264, 0.12591, 1.243, -0.0407004, -1.18278, 6.72867, -3.34062, -134.89, -0.926099, 0.0501842, -0.555286, -0.0176607, 1.07341, 0.126464, 0.55727, 0.117417, -0.918795, 180.089, -30.0885, -63.2278, -1.2299, 0.130517, 0.72584, 0.139743, 1.4271, -0.0198253, -0.72412, 0.0537274, -1.23664, 206.794, -35.6535, -9.71624, -0.785663, 0, 1.67756, 0, 1.85242, 0, -1.67756, 0, -0.785663, 4.96602, -0.453506, 55.913, -1.68349, 0.15571, 0.447829, 0.127933, 1.73988, -0.124024, -0.456541, -0.0866226, -1.68612, 268.921, -74.1793, -150.757, -1.24595, 0, -0.793424, 0, 1.47713, 0, 0.793424, 0, -1.24595, 12.6414, -0.453506, 15.3793, -1.07732, 0, 0.441321, 0, 1.16421, 0, -0.441321, 0, -1.07732, 15.7053, -0.453506, 35.8205, -0.2089, 0.0042947, 1.53769, -0.000801183, 1.55181, -0.00444299, -1.53769, -0.00139199, -0.208897, 176.838, -75.9339, -150.276, 0.0462005, 0.557439, 1.86841, -0.0018234, 1.86895, -0.557554, -1.94979, 0.0114607, 0.0447935, 0.167992, -1.8765, -212.165, 1.66282, 0.111148, -0.201667, -0.118156, 1.67373, -0.0517789, 0.197642, 0.0654839, 1.66573, 28.2665, -71.0444, -139.985, 1.56621, 0.042469, -0.813618, -0.0376872, 1.76493, 0.0195778, 0.813854, 0, 1.56666, 40.3766, -0.584122, 36.2077, -0.947922, 0.0261489, -0.805883, -0.0219447, 1.24251, 0.0661289, 0.806009, 0.064582, -0.945974, 193.499, -30.9962, -58.1, -1.07492, 0.0396382, 0.403214, 0.0303071, 1.14789, -0.0320492, -0.404023, -0.0193517, -1.07517, 80.4187, -73.6635, -91.4776, -1.58118, 0.0461589, 0.837983, 0.013863, 1.78859, -0.0723634, -0.839139, -0.0574283, -1.5802, 103.237, -75.7674, -145.179, 1.74306, 0.125719, -0.462883, -0.155173, 1.79863, -0.0958218, 0.453858, 0.132118, 1.74496, 156.877, -35.253, -13.7217, 0.870974, 1.3096, 1.09772, -1.68969, 0.476255, 0.772491, 0.254883, -1.31786, 1.37, 3.41765, -5.67334, -219.705, -1.91619, 0.455571, -0.00258194, 0.454006, 1.90862, -0.17429, -0.0378115, -0.170159, -1.96187, 155.302, -42.2441, -106.661, 1.72295, -0.460808, 0.312887, 0.35436, 1.69162, 0.540031, -0.429733, -0.452616, 1.69978, 279.231, -44.2341, -111.858, -0.0165255, 0.204276, -1.47525, 0.00228812, 1.47534, 0.204263, 1.48933, 0, -0.0166832, 139.492, -11.7596, 31.0395, 1.0233, 0.076252, 0.325031, -0.0331832, 1.06597, -0.145605, -0.332202, 0.128404, 1.01575, 153.999, -30.8819, -44.1503, 0.193311, 1.25635, 1.07072, -0.570687, 1.06243, -1.14358, -1.54892, -0.234646, 0.554972, 17.9621, -73.3054, -84.0457, 0.756284, 0.00473565, -1.80009, 0.00192844, 1.9525, 0.00594683, 1.80009, -0.00408133, 0.756275, 157.342, -25.8864, -81.4042, -0.176531, 0.0184231, -1.25201, -0.020093, 1.26419, 0.0214353, 1.25199, 0.0228865, -0.17619, 289.857, -38.692, -98.4951, 1.09932, 0, 0.147708, 0, 1.1092, 0, -0.147708, 0, 1.09932, 27.2685, -0.453506, -26.5543, -1.25849, 0.0109006, -0.264334, -0.0244636, 1.27461, 0.169033, 0.263425, 0.170446, -1.24714, 283.262, -38.7257, -92.9472, -0.665956, 0.154896, -1.55854, 0.00194076, 1.69366, 0.167495, 1.56622, 0.0637629, -0.662899, 213.285, -36.0644, -14.5701, -0.218055, 0.136852, 1.48147, 0.0758814, 1.49637, -0.12706, -1.48584, 0.0563353, -0.223902, 194.138, -35.1219, 6.90631, -0.11908, 0.385475, 1.20529, -1.1079, 0.553212, -0.286386, -0.611457, -1.07743, 0.284173, 162.889, -24.9404, 2.19268, -0.731093, -0.155374, -1.66399, -0.0960378, 1.81715, -0.12748, 1.66847, 0.0365138, -0.736469, 229.936, -74.0637, -135.947, 1.40869, 0.115157, 0.627347, -0.140116, 1.53967, 0.0320019, -0.622249, -0.0859969, 1.41303, 107.539, -80.4308, -216.715, 1.161, 0.0472071, -1.58167, -0.027934, 1.96204, 0.0380552, 1.58212, 0, 1.16134, 89.8021, -1.77351, 34.6643, -0.42977, 0.0394147, -1.58062, 0.0103414, 1.638, 0.0380339, 1.58107, 0, -0.429894, 37.0003, -0.502869, 6.86725, 0.7187, 0.155017, 0.888751, -0.162891, 1.13991, -0.0671008, -0.887341, -0.0837009, 0.73216, 188.289, -57.1819, -121.787, 0.340088, -0.0268823, 1.42262, 0.0185555, 1.46265, 0.0232029, -1.42276, 0.01265, 0.340358, 76.3521, -5.66893, -8.49716, -0.281232, -0.34525, -1.28278, 0.271703, 1.26854, -0.400985, 1.30035, -0.339726, -0.193648, 271.547, -44.6331, -105.533, -1.74656, 0.0510224, -0.378087, 0.0543522, 1.78689, -0.00993984, 0.377622, -0.0212057, -1.74728, 188.127, -53.6393, -110.664, -0.452559, 0.0350741, 0.90949, 0.000283445, 1.01572, -0.0390298, -0.910166, -0.0171234, -0.452235, 82.1799, -73.8149, -96.8526, -0.735557, -0.0046471, 0.955331, -0.00412878, 1.20569, 0.00268601, -0.955333, -0.00163277, -0.735567, 108.801, -25.9817, -55.7495, 1.53052, -0.0113293, -0.253012, 0.0317525, 1.54614, 0.122844, 0.251267, -0.126375, 1.52562, 141.373, -77.8174, -178.93, 1.07321, 0.0392821, 0.377718, -0.0434195, 1.13758, 0.00506155, -0.377265, -0.0191778, 1.07392, 71.3899, -73.7604, -115.717, 1.79135, 0.0434018, -0.210705, -0.0431046, 1.8037, 0.00507013, 0.210766, 0, 1.79187, 53.186, -0.892365, 4.18799, -1.78184, -0.192289, -0.360319, -0.141867, 1.80375, -0.261039, 0.382987, -0.226478, -1.77308, 69.8589, -79.3202, -191.558, 0.927971, 0.0860433, 0.377798, -0.0669381, 1.00137, -0.0636429, -0.381647, 0.033581, 0.929776, 228.834, -37.374, -15.9752, 0.202731, 0, -1.54515, 0, 1.55839, 0, 1.54515, 0, 0.202731, 8.77409, -0.453506, 22.742, 0.698294, -0.036148, -1.60268, 0.12249, 1.74422, 0.0140286, 1.59841, -0.117872, 0.699088, 112.471, -80.0864, -206.133, -0.710888, -0.00477809, 1.57332, -0.00382944, 1.72647, 0.0035129, -1.57333, -0.00204328, -0.710895, 136.601, -25.9202, -78.3242, 1.10815, 0.412371, -0.894469, -0.337306, 1.42388, 0.238557, 0.925391, 0.0251933, 1.15808, 211.058, -77.7682, -199.501, -0.00486725, -0.0929499, 1.08729, 0.0215072, 1.08708, 0.0930284, -1.09104, 0.0218438, -0.00301667, 219.034, -74.6685, -152.237, 0.643159, -0.0064359, 1.49742, 0.00742226, 1.6297, 0.00381646, -1.49742, 0.00531362, 0.64318, 215.504, -25.8867, -87.4721, -0.15727, 0.152597, 1.84957, -0.0731159, 1.85425, -0.1592, -1.85441, -0.0860509, -0.150583, 261.362, -73.5134, -150.924, -1.17269, 0.105541, -0.367655, 0.0882838, 1.22829, 0.0710047, 0.372176, 0.0411908, -1.17529, 220.757, -36.7957, -12.5256, -0.0883696, 0.582788, -1.03115, -0.183075, 1.01487, 0.589276, 1.17021, 0.202782, 0.0143218, 156.301, -24.4783, 61.1774, 1.06006, 0.0369762, 0.701084, -0.0168799, 1.27067, -0.0414942, -0.701855, 0.0252875, 1.05989, 141.856, -80.317, -202.11, 1.0655, 0.0338796, 0.920598, -0.0256362, 1.40812, -0.0221498, -0.920865, 0, 1.06581, 62.8008, -1.12375, 56.5094, 0.69941, 0.0797161, -0.877909, -0.154571, 1.1144, -0.0219539, 0.867864, 0.134237, 0.703596, 143.672, -33.3212, -17.7671, -0.793163, 0.0316933, -1.38853, 0.032447, 1.59899, 0.0179624, 1.38851, -0.0192612, -0.793593, 288.178, -74.3089, -164.06, -1.8345, 0.00528624, 0.532003, 0.00459985, 1.91009, -0.00311791, -0.532009, -0.00171336, -1.83451, 192.711, -75.9901, -163.435, 1.51531, -0.0961625, 1.26238, 0.12797, 1.97044, -0.00351117, -1.25955, 0.0845074, 1.51835, 51.4198, -6.02173, -5.70633, -1.55907, 0.0408166, -0.270718, 0.0488847, 1.58158, -0.0430703, 0.269378, -0.0507817, -1.55901, 90.4375, -75.5133, -147.553, -0.0422898, 0.321249, 1.07626, 0.0195, 1.07707, -0.320725, -1.12301, 0.00660477, -0.0460983, 2.41727, -2.76477, -176.715, -1.21916, 0.658581, 0.790461, 0.657272, 1.44147, -0.187241, -0.79155, 0.182583, -1.37296, 158.556, -16.8284, 5.84668, 0.769069, -0.00129997, -1.45851, -0.000798783, 1.64885, -0.00189082, 1.45851, 0.0015885, 0.769068, 166.219, -25.8851, -89.5173, 1.24728, 0, 1.55586, 0, 1.99409, 0, -1.55586, 0, 1.24728, 17.4427, -0.453506, -63.6942, -0.529073, 0.124635, 1.01665, 0.0575364, 1.14608, -0.11056, -1.02265, 0, -0.532193, 120.081, -4.40431, 24.528, 1.05432, 0.0426427, -1.01458, -0.028846, 1.4632, 0.0315223, 1.01506, -0.00271076, 1.05471, 308.29, -38.6572, -155.163, 1.06014, 0.154523, -0.348722, -0.146786, 1.11602, 0.048284, 0.352049, 0, 1.07025, 141.392, -12.0226, 19.4087, 1.0994, 0.0311265, -0.992355, -0.0745962, 1.47903, -0.036251, 0.990037, 0.0768757, 1.09924, 162.036, -31.1184, -43.0091, 0.285893, -0.0839367, -1.6976, -0.0588988, 1.71992, -0.0949597, 1.69865, 0.0737634, 0.282423, 54.5284, -6.02335, -2.13138, -0.3087, 0.0304296, 0.961251, -0.0217341, 1.00908, -0.0389234, -0.961487, -0.0325798, -0.307745, 81.2111, -74.8605, -135.824, 1.31306, 0.3142, 0.14973, -0.324611, 1.31635, 0.0843931, -0.125574, -0.117356, 1.34749, 158.107, -43.0174, -107.825, 0.00338922, -0.00994415, -1.36162, 0.110951, 1.3571, -0.00963496, 1.35713, -0.110924, 0.00418813, 157.304, -77.9785, -182.328, -0.0236176, 0.0453518, -1.58823, 0.0195288, 1.5883, 0.0450632, 1.58876, -0.0188489, -0.0241637, 183.768, -53.5831, -116.415, -0.916712, 0.116808, -0.559763, 0.0996919, 1.0741, 0.0608739, 0.563063, 0, -0.922117, 111.293, -3.44861, 24.1645, 1.28284, 0.0304644, 0.674854, 0.00811237, 1.44757, -0.0807674, -0.675493, 0.0752403, 1.28066, 169.497, -32.7912, -13.8477, -1.14689, 0.00233249, -0.431901, 0.00199344, 1.22552, 0.00132495, 0.431903, 0.000537404, -1.14689, 160.594, -75.8949, -152.854, -1.25104, 0.180206, -0.358893, 0.173219, 1.3015, 0.0496922, 0.362317, 0, -1.26298, 130.833, -10.5606, 43.9028, -1.29475, -0.0967134, 0.550151, -0.117881, 1.40484, -0.0304635, -0.546008, -0.0739625, -1.298, 81.2541, -72.7583, -68.0438, 1.69488, -0.136383, 1.03098, 0.0620257, 1.98107, 0.160099, -1.03811, -0.1043, 1.6928, 98.8272, -72.0079, -76.7708, -0.391409, 0.207826, 1.3361, 0.294124, 1.37073, -0.12705, -1.31979, 0.243842, -0.42456, 322.493, -39.6895, -153.883, 1.29017, 0.146266, -0.380073, -0.140305, 1.34499, 0.0413327, 0.382313, 0, 1.29777, 123.254, -4.74931, 57.7607, 0.507231, 0.379882, -1.3829, 0.822416, 1.12464, 0.61059, 1.17489, -0.951251, 0.169627, 155.576, -23.2144, -5.01135, -0.853719, -0.000984278, 0.910911, 0.000204491, 1.24844, 0.00154064, -0.910912, 0.00120274, -0.853718, 172.268, -25.8856, -84.0645, -0.79978, 1.62252, 0.396701, 1.26023, 0.874826, -1.03735, -1.09625, -0.178041, -1.48193, 12.1836, -63.7278, -81.2408, 1.02925, -0.0104436, 0.992767, -0.0733854, 1.42526, 0.0910755, -0.990106, -0.116495, 1.02527, 134.375, -77.9676, -180.139, -1.58331, 0, 0.291649, 0, 1.60995, 0, -0.291649, 0, -1.58331, 23.3749, -0.453506, -71.6885, -0.395784, 0.035934, -1.3733, 0.356415, 1.3829, -0.0665332, 1.32673, -0.360786, -0.391803, 169.474, -78.5246, -187.035, 0.102092, 0.0475318, -1.83991, 0.0564331, 1.84179, 0.0507117, 1.83965, -0.0591363, 0.10055, 96.0013, -75.8798, -154.496, -1.47345, 0.180908, -1.32185, 0.0846282, 1.97808, 0.176385, 1.33149, 0.0744708, -1.474, 200.253, -35.0654, -9.44929, 1.05254, 0, -1.59413, 0, 1.91026, 0, 1.59413, 0, 1.05254, 16.863, -0.453506, 56.0216, 1.82688, -0.160548, -0.43533, 0.147366, 1.87766, -0.0740434, 0.439967, 0.0377297, 1.83243, 201.744, -75.9457, -162.248, 1.49847, 0.00286943, -0.166035, -0.00292479, 1.50764, -0.000341086, 0.166035, 0.000661116, 1.49847, 143.468, -75.8576, -162.164, 1.04429, 0.0354394, -0.540376, -0.014013, 1.17521, 0.049993, 0.541355, -0.0379436, 1.0437, 86.7008, -74.5084, -119.792, -0.365345, -0.00263549, 0.952087, -0.0023378, 1.01978, 0.00192577, -0.952088, -0.00149269, -0.36535, 133.429, -25.8738, -39.3477, -0.340158, 0.223341, -1.55596, 0.0305928, 1.59261, 0.221914, 1.57161, 0.0173381, -0.34109, 241.754, -32.102, -82.8203, 1.99078, 0, 0.184419, 0, 1.99931, 0, -0.184419, 0, 1.99078, 1.37815, -0.453506, 56.208, -0.0969472, -0.00661984, 1.53853, -0.608726, 1.41596, -0.0322651, -1.413, -0.609544, -0.0916599, 329.655, -40.9449, -141.848, -0.389687, 0, -1.37384, 0, 1.42803, 0, 1.37384, 0, -0.389687, 31.4291, -0.453506, 23.4098, 1.13542, -0.0824922, 0.0733893, 0.0783932, 1.13626, 0.0643586, -0.0777526, -0.0590132, 1.13659, 107.03, -71.6999, -82.4001, 1.01934, 0.0224057, 1.15133, 0.00599212, 1.53748, -0.0352256, -1.15153, 0.027834, 1.01898, 283.213, -38.6427, -95.8697, -0.0817275, 1.48043, 1.07345, -0.106771, 1.06883, -1.48218, -1.82553, -0.12879, 0.0386312, 45.2441, -9.61429, -27.2173, -0.248981, -0.125817, -1.5327, -0.0436661, 1.55261, -0.120358, 1.53723, 0.0237246, -0.251666, 237.183, -73.2711, -145.916, 1.91907, -0.0353569, 0.48443, 0.0331253, 1.97927, 0.0132341, -0.484588, -0.00472336, 1.91935, 48.6533, -72.9627, -92.6826, -1.16377, -0.085384, -0.18045, -0.0748783, 1.17609, -0.0735845, 0.185056, -0.061082, -1.16457, 121.187, -70.6263, -81.5177, -1.89587, 0.322456, 0.19394, 0.342907, 1.89073, 0.208468, -0.154935, 0.238886, -1.91176, 36.2511, -71.6569, -146.669, 1.19191, -0.110973, 0.397697, 0.175378, 1.236, -0.180721, -0.373791, 0.22606, 1.18334, 98.2779, -17.5163, -27.7212, 1.19592, -0.425922, 1.09065, 0.0125132, 1.56356, 0.596883, -1.17079, -0.41835, 1.12043, 279.83, -44.0887, -111.924, 1.00218, 0.178807, -0.335279, -0.210856, 1.04844, -0.071126, 0.316107, 0.132466, 1.01552, 58.0965, -72.7402, -167.583, -1.42029, 0.0349529, 0.304585, 0.0341759, 1.45258, -0.00732913, -0.304673, 0, -1.4207, 50.9859, -0.839432, 32.3095, -1.04657, 0, 0.112259, 0, 1.05257, 0, -0.112259, 0, -1.04657, 17.4504, -0.453506, -23.9328, -1.20735, 0.112464, 1.02469, 0.207984, 1.5722, 0.072504, -1.00964, 0.189383, -1.21041, 140.839, -33.378, -15.6132, -1.46055, 0.0357986, -0.283836, 0.0351411, 1.48787, 0.00682915, 0.283918, 0, -1.46097, 68.5255, -1.26151, 55.35, -0.104243, 0.0357429, -1.02998, 0.0209702, 1.03509, 0.033798, 1.03038, -0.01745, -0.10489, 65.8412, -73.1306, -89.7251, 1.94686, 0.0899119, -0.298196, -0.120884, 1.95782, -0.198901, 0.28704, 0.214687, 1.93875, 222.032, -30.4606, -77.6595, 1.06984, -0.00328197, -0.684225, 0.00376639, 1.26993, -0.000202315, 0.684222, -0.00185885, 1.06985, 131.199, -25.8941, -49.1349, -0.621967, 0.0409846, -0.819976, 0.056348, 1.02841, 0.0086618, 0.819064, -0.0396281, -0.623256, 50.8548, -73.1646, -121.691, -0.976994, 0.491589, 1.44692, 0.279444, 1.74587, -0.40447, -1.50238, 0.0050548, -1.01616, 236.819, -29.625, -30.0918, -0.00794653, 0.0377891, -1.29664, 0.00263478, 1.29666, 0.0377736, 1.29719, -0.00240222, -0.0080199, 302.445, -38.4657, -143.727, -0.549081, 0.140045, 1.46742, -0.0242399, 1.56484, -0.158413, -1.47389, -0.0779079, -0.544066, 278.386, -74.429, -138.759, -0.480996, 0.0152991, -1.93607, -0.0399647, 1.99442, 0.025689, 1.93572, 0.0449782, -0.480553, 218.88, -30.7875, -69.7781, 1.50596, -0.109907, -0.858686, 0.152124, 1.72978, 0.0453909, 0.852221, -0.114553, 1.50928, 241.353, -74.2849, -165.497, 0.738179, 0.0494964, 1.77124, -0.0758916, 1.91792, -0.0219668, -1.7703, -0.0615807, 0.739511, 90.7694, -75.8645, -158.225, -0.364702, -0.127234, -1.81445, 0.0705832, 1.84818, -0.143787, 1.81754, -0.0973038, -0.358499, 85.1415, -72.0168, -59.0433, 0.86611, -0.0808106, -0.759635, 0.118486, 1.1487, 0.0128942, 0.754676, -0.0876066, 0.869776, 144.156, -39.8641, -98.9167, -0.516466, 0.00543997, 1.89657, -0.000271904, 1.96563, -0.00571211, -1.89658, -0.00176319, -0.516463, 174.266, -75.9355, -160.041, -1.01657, 0.0450127, 1.57031, 0.0244615, 1.87064, -0.0377859, -1.57077, 0, -1.01687, 86.6691, -1.69812, 9.2059, -0.358171, 0.00210891, -1.04856, 0.000221886, 1.10805, 0.00215276, 1.04857, 0.000485892, -0.358171, 126.319, -75.8201, -171.78, 0.174006, -0.0526719, -1.44911, 0.166322, 1.4506, -0.0327545, 1.4405, -0.161126, 0.178829, 243.156, -32.0391, -28.6148, -1.45717, -0.393164, 0.330032, -0.45863, 1.4433, -0.305561, -0.23056, -0.386175, -1.47802, 281.608, -44.6583, -115.863, -0.906896, 0.484112, -1.43881, 0.188361, 1.69894, 0.452911, 1.50634, 0.0790163, -0.922874, 177.333, -32.6251, 33.4979, 0.918319, 0.233846, 1.41743, -0.12715, 1.68891, -0.196257, -1.43095, 0, 0.92708, 132.169, -10.7456, 7.97791, -1.92334, 0.00548311, 0.475394, 0.00489649, 1.98122, -0.00304093, -0.475401, -0.00177717, -1.92335, 196.762, -76.0121, -175.316, -0.686584, 0.055195, -1.80713, 0.0410548, 1.93303, 0.0434423, 1.80751, -0.0229399, -0.687427, 185.997, -53.6113, -113.427, 0.859098, -0.151883, 1.64633, 0.083904, 1.85694, 0.12753, -1.65119, 0.0153356, 0.863049, 222.101, -76.9389, -195.002, -0.187702, 0.00917544, -1.49735, -0.217421, 1.49291, 0.0364033, 1.48151, 0.220256, -0.184367, 176.956, -77.8022, -178.641, -0.721261, 0.22221, -1.43366, 0.0998656, 1.60487, 0.198504, 1.44734, 0, -0.728141, 135.352, -11.1864, 6.11335, 1.5676, 0.117054, 0.294517, -0.115122, 1.59502, -0.0211843, -0.295278, -0.000435708, 1.57182, 187.085, -34.2169, -11.226, 0.878215, 0.0164968, 0.733408, -0.200752, 1.10574, 0.215518, -0.70559, -0.29407, 0.851519, 113.139, -72.7272, -103.859, 0.748986, -0.125852, -1.54965, 0.0813601, 1.72091, -0.100437, 1.55262, -0.0294674, 0.752816, 206.679, -52.9477, -116.981, -0.545526, -0.00646043, 0.858257, -0.0349874, 1.01627, -0.0145889, -0.857568, -0.0373526, -0.545369, 161.489, -25.9289, -94.6408, -1.61696, -0.0168173, 0.830134, -0.165147, 1.78751, -0.285466, -0.813714, -0.329366, -1.59165, 38.0968, -74.1159, -81.98, -0.746562, -0.10039, -0.906472, -0.0820859, 1.17409, -0.0624229, 0.908312, 0.0235922, -0.75069, 207.749, -75.6665, -150.59, -0.0143218, 1.38863, -0.0388651, -0.184841, 0.0366167, 1.37641, 1.37682, 0.0193605, 0.184382, 13.2162, -67.1172, -162.917, -1.16361, 0.570671, 0.480819, 0.589574, 1.24906, -0.0556694, -0.457444, 0.158211, -1.29482, 143.318, -14.316, 40.9755, 0.150121, 0.203715, 1.86722, -0.0163256, 1.87325, -0.203059, -1.87823, 0, 0.151006, 104.153, -2.67207, 25.3299, 1.08469, 0.140227, 0.534177, -0.0600802, 1.20028, -0.193088, -0.548998, 0.145702, 1.07654, 210.428, -32.8585, -52.0808, -1.04867, 0.00442015, 1.49048, -0.000572109, 1.82242, -0.00580708, -1.49049, -0.00380943, -1.04866, 165.985, -25.8819, -69.1943, 1.04972, -0.0903154, -0.119358, 0.0873124, 1.05627, -0.0313672, 0.121572, 0.0212247, 1.05313, 204.224, -75.8399, -156.962, -1.47968, 0.00223552, 1.00934, 0.0534221, 1.78881, 0.074354, -1.00793, 0.0915283, -1.47781, 268.494, -74.2582, -156.947, -0.815575, 0.0431223, 1.59595, 0.0196229, 1.79227, -0.0383989, -1.59641, 0, -0.815811, 77.879, -1.48659, 46.7916, -0.0788717, 0.0366439, 1.52081, 0.00189786, 1.52285, -0.0365947, -1.52125, 0, -0.0788945, 63.1353, -1.13179, 31.2112, -0.698353, 0.0313406, 1.09941, 0.0168042, 1.30245, -0.0264546, -1.09972, 0, -0.698555, 45.2378, -0.701111, 41.1512, -1.77025, 0.045726, 0.0938201, 0.0426266, 1.77182, -0.0592477, -0.0952683, -0.0568898, -1.76985, 110.77, -74.9404, -113.366, 1.5296, 0, 0.213576, 0, 1.54444, 0, -0.213576, 0, 1.5296, 13.4582, -0.453506, 37.1708, 0.195055, 0.0205838, -1.41426, 0.360805, 1.37969, 0.069843, 1.36762, -0.366926, 0.183282, 111.439, -73.2636, -105.972, 1.0124, -0.00463097, 0.493258, 0.00543931, 1.12616, -0.000591013, -0.49325, 0.00291369, 1.01241, 117.454, -75.87, -166.492, -0.344878, 0, 1.60776, 0, 1.64434, 0, -1.60776, 0, -0.344878, 3.12747, -0.453506, 32.1247, 1.59647, 0.0881905, 0.408912, -0.0792133, 1.64782, -0.0461227, -0.410746, 0.0249898, 1.59824, 42.0088, -73.0505, -101.4, 1.28907, 0, 1.03389, 0, 1.65246, 0, -1.03389, 0, 1.28907, 24.2849, -0.453506, -74.3997, 0.280423, -0.0220286, 1.02778, -0.0635277, 1.06293, 0.0401149, -1.02606, -0.0718311, 0.278412, 111.263, -79.9107, -203.163, -0.356367, 0.382788, -1.23295, 0.0983978, 1.28339, 0.370009, 1.28724, 0.00786999, -0.369619, 4.36403, -3.33479, -178.445, 0.4214, -0.238905, -1.71124, 0.145697, 1.76004, -0.20984, 1.72168, -0.0904681, 0.436601, 198.926, -77.2411, -198.305, 0.629753, -0.0870797, -0.858462, 0.0443923, 1.06464, -0.0754288, 0.861725, 0.00879241, 0.631254, 220.975, -76.867, -214.853, -1.32864, 0.126756, -0.782426, 0.1455, 1.54025, 0.00245142, 0.779158, -0.0714791, -1.33468, 264.273, -73.2647, -140.404, 1.11015, -0.469396, -0.788966, 0.303685, 1.3561, -0.379496, 0.866358, 0.126131, 1.14401, 126.745, -14.0792, -28.575, 0.0156983, 0.0041577, 1.50223, -0.00139096, 1.50231, -0.00414339, -1.50223, -0.00134758, 0.015702, 184.273, -75.9477, -142.615, -1.51808, 0.176219, -0.0640271, 0.167012, 1.50836, 0.191535, 0.085203, 0.1831, -1.51623, 213.525, -32.8017, -55.529, 0.979984, 0.0388003, -1.69475, 0.000995968, 1.95755, 0.0453928, 1.6952, -0.0235804, 0.9797, 271.843, -74.0637, -170.583, -0.792646, 0.0744704, -0.686479, -0.0264154, 1.04106, 0.143437, 0.690001, 0.125404, -0.783108, 153.049, -31.8566, -35.4946, 1.15214, -0.0300948, -0.134888, 0.0193412, 1.15652, -0.0928294, 0.136844, 0.0899204, 1.14879, 314.638, -38.2545, -121.729, 1.08306, 0.0706114, -1.40393, 0.0110024, 1.77183, 0.0976027, 1.40566, -0.0682743, 1.08096, 69.9997, -74.7277, -142.454, -1.19757, 0.739062, -0.536972, 0.540554, 1.287, 0.565814, 0.736446, 0.257158, -1.2885, 158.004, -23.6319, 52.0481, 0.84037, 1.15044, 0.684976, -0.53747, 1.03056, -1.07145, -1.2263, 0.336702, 0.939004, 169.692, -27.3165, 35.5414, -1.72953, 0.0119082, 0.425304, -0.117814, 1.69738, -0.526623, -0.408834, -0.539509, -1.64745, 23.8702, -80.2126, -147.912, -0.935178, 0.0102498, 1.15353, 0.184565, 1.46716, 0.136593, -1.13871, 0.229384, -0.925206, 179.579, -77.6845, -179.54, 1.6243, 0.158384, -0.0842339, -0.160809, 1.62564, -0.0442438, 0.079506, 0.0522653, 1.63141, 259.775, -34.569, -62.9262, 1.07871, 0.289187, -1.05543, -0.165192, 1.50803, 0.244365, 1.08179, -0.0580822, 1.08973, 242.184, -32.0199, -60.4501, -0.0217719, 0.538414, -0.955881, -0.202925, 0.937595, 0.532736, 1.07816, 0.187342, 0.0809664, 153.027, -20.205, 49.1996, -1.29096, 0.0020593, -0.880379, 0.00356101, 1.56257, -0.00156672, 0.880374, -0.00330071, -1.29096, 157.63, -39.4743, -97.021, 0.108123, 0.26081, 1.21074, 0.194144, 1.19676, -0.275135, -1.22321, 0.213, 0.0633529, 40.9675, -6.83665, -31.1945, 0.588173, -0.118362, 1.34631, 0.00136285, 1.46833, 0.128494, -1.3515, -0.0500304, 0.586043, 237.656, -75.4652, -182.839, 0.730376, 0.849929, -1.32084, -0.700331, 1.48007, 0.565132, 1.40589, 0.295734, 0.967706, 161.629, -25.5135, 51.0472, -1.56945, -0.24173, -0.846546, -0.16862, 1.78085, -0.195908, 0.864084, -0.0915377, -1.57582, 186.485, -79.9301, -217.762, -1.82835, 0.0387208, 0.688474, 0.0279399, 1.95354, -0.035671, -0.688996, -0.023532, -1.82841, 284.162, -74.2589, -166.516, -1.72778, -0.0071052, 0.0166984, -0.00706164, 1.72785, 0.00453891, -0.0167169, 0.00447042, -1.72778, 129.353, -75.8547, -153.499, 0.58883, 0.094835, -1.15031, -0.0428973, 1.29226, 0.084579, 1.15342, -0.000353002, 0.59039, 210.531, -35.9412, -24.2452, 1.18197, 0, -0.15426, 0, 1.19199, 0, 0.15426, 0, 1.18197, 3.54423, -0.453506, -35.6903, -0.173314, 0.00417301, 1.49785, -0.000863932, 1.50784, -0.00430082, -1.49785, -0.00135254, -0.173311, 194.034, -75.9755, -143.182, 1.06541, 0.00211631, 0.318276, -0.00188819, 1.11194, -0.00107296, -0.318278, 0.000487596, 1.06541, 168.062, -75.9119, -147.237, -1.21639, 0.129604, 1.28347, 0.0206888, 1.76581, -0.158702, -1.28983, -0.0939005, -1.21294, 224.485, -60.0672, -120.347, -1.0616, -0.108121, 1.02929, -0.0952827, 1.47845, 0.0570274, -1.03056, -0.0253156, -1.06557, 197.253, -53.6122, -115.535, -0.927632, 0.0361211, 1.44684, 0.094587, 1.71636, 0.0177942, -1.44419, 0.089211, -0.928165, 187.236, -31.2893, -49.9252, 1.92517, 0.0463799, 0.0940107, -0.0463247, 1.92746, -0.00226215, -0.094038, 0, 1.92572, 57.5952, -0.998474, 25.1073, -0.92046, 0.0590625, -1.16295, 0.0814424, 1.48204, 0.0108074, 1.1616, -0.0571077, -0.922289, 55.021, -73.7166, -131.706, -1.87517, -0.157088, 0.415399, -0.149922, 1.92057, 0.0495115, -0.418039, 0.0158611, -1.88109, 244.536, -75.0386, -202.901, 1.09861, -0.00888026, 0.609761, 0.0168994, 1.25634, -0.0121509, -0.609591, 0.0188248, 1.09858, 229.213, -25.8088, -89.8692, -1.91543, 0.0558926, -0.147542, 0.0527796, 1.92072, 0.0424192, 0.148684, 0.0382242, -1.91578, 148.204, -80.2747, -213.518, -1.29464, -0.196742, -0.655954, -0.141289, 1.44942, -0.155869, 0.67009, -0.0745017, -1.30019, 189.451, -79.3183, -213.694, 0.517295, 0.228676, -1.76118, -0.0220131, 1.83505, 0.231802, 1.77582, -0.0438656, 0.515901, 2.22445, -2.68597, -130.985, -1.87755, 0.0756356, 0.286671, 0.0636668, 1.8979, -0.0837593, -0.289564, -0.0731323, -1.87721, 53.7396, -73.7409, -133.662, -1.109, 0.0599853, -1.33739, 0.0608406, 1.73713, 0.0274642, 1.33735, -0.0292853, -1.11028, 74.4445, -73.4647, -91.9244, -0.597761, 0.559877, 1.77944, 0.18967, 1.87712, -0.526897, -1.85577, 0.0115109, -0.627025, 2.74259, -3.04094, -147.502, -0.849048, 1.25237, -0.527935, 0.896363, 0.0480888, -1.32749, -1.0216, -0.998642, -0.725992, 135.567, -16.1437, -15.2088, 0.726403, 0, 0.743306, 0, 1.03931, 0, -0.743306, 0, 0.726403, 17.195, -0.453506, 13.1315, -1.10074, 0.136959, -1.15404, 0.0556546, 1.59392, 0.136079, 1.1608, 0.0534525, -1.10085, 218.958, -36.654, -12.1421, 1.83543, 0.012914, 0.36296, 0.0435507, 1.84852, -0.285998, -0.360569, 0.289007, 1.81306, 180.209, -77.6364, -179.876, 0.617573, -0.0244021, -1.89479, -0.0638927, 1.99148, -0.046472, 1.89387, 0.075143, 0.616306, 175.971, -45.4009, -104.638, -0.0121072, 0.98405, -1.38647, 1.66422, 0.290536, 0.191676, 0.347856, -1.35574, -0.965278, 271.827, -70.8025, -133.58, 1.32438, -0.096037, -0.0244747, 0.0971641, 1.32282, 0.0670994, 0.0195257, -0.0687029, 1.32616, 117.844, -71.0359, -84.7311, -0.100235, 0.0186823, 1.18827, -0.0839139, 1.1894, -0.0257785, -1.18545, -0.0857732, -0.0986487, 96.7163, -79.5038, -199.66, -0.932489, -0.11966, 0.929196, -0.124745, 1.3152, 0.044182, -0.928527, -0.056522, -0.939096, 107.472, -71.3365, -75.7207, 0.821106, 0.210643, 0.93576, -0.0188714, 1.23512, -0.26147, -0.95899, 0.156052, 0.806362, 39.9269, -71.4999, -152.874, -0.00416991, 0.0269704, -1.3608, 0.0164767, 1.36071, 0.0269181, 1.36097, -0.0163909, -0.00449528, 283.737, -74.2427, -165.877, -0.964592, 0.11993, -1.09448, 0.13012, 1.45731, 0.0450102, 1.09331, -0.0676299, -0.970977, 257.561, -73.5175, -157.754, -0.382371, 0, -1.71271, 0, 1.75488, 0, 1.71271, 0, -0.382371, 3.58084, -0.453506, 44.0672, -0.85986, -0.0766504, 0.709755, -0.0964357, 1.11341, 0.00341231, -0.707339, -0.0586191, -0.863263, 89.2518, -73.8408, -99.063, 0.00738577, -0.136621, -1.30252, 0.0414047, 1.30192, -0.136323, 1.30901, -0.0404094, 0.0116611, 237.539, -73.9894, -155.069, -0.574786, -0.107095, 1.11312, -0.0266827, 1.25251, 0.106728, -1.11794, 0.025168, -0.574854, 202.707, -75.9932, -155.787, 1.53266, 0.00673221, 0.146913, -0.000385695, 1.53826, -0.0664662, -0.147067, 0.0661255, 1.53123, 166.583, -35.5285, -13.9354, -1.23517, 0.139295, -0.339121, 0.134324, 1.28088, 0.0368792, 0.34112, 0, -1.24245, 124.048, -4.83572, 29.6519, 1.0877, -0.10551, 0.966789, 0.0284791, 1.4533, 0.126564, -0.972112, -0.0754794, 1.08545, 116.871, -71.478, -91.8829, 1.48033, -0.0274155, 0.0230691, 0.0275393, 1.48048, -0.00775662, -0.0229212, 0.00818339, 1.48056, 257.072, -31.6466, -95.1434, -1.03311, 0.00473193, -1.36239, 0.00408124, 1.7098, 0.00284375, 1.36239, -0.0015337, -1.03311, 151.608, -75.8793, -167.751, 0.041822, 0, -1.28682, 0, 1.2875, 0, 1.28682, 0, 0.041822, 3.47911, -0.453506, 33.5384, 1.04956, 0.124617, -0.459911, -0.114139, 1.14591, 0.050015, 0.462622, 0, 1.05575, 122.983, -4.71986, 3.64913, -1.49604, -0.00144571, 1.06034, -0.000157965, 1.8337, 0.00227726, -1.06034, 0.00176658, -1.49604, 170.12, -25.8909, -80.5098, 0.132473, 0, -1.14229, 0, 1.14995, 0, 1.14229, 0, 0.132473, 14.7052, -0.453506, 23.259, -1.19707, 0.0566779, -0.239037, 0.0292643, 1.21349, 0.141177, 0.243915, 0.132571, -1.19007, 170.928, -30.3273, -57.1288, -1.27231, 0.0306375, 0.0518349, 0.0306121, 1.27337, -0.00124716, -0.0518499, 0, -1.27268, 81.8174, -1.58136, 48.4544, -0.546721, -0.00631413, 1.54429, -0.00419853, 1.63821, 0.00521174, -1.54429, -0.00221848, -0.546733, 116.384, -25.9604, -61.5685, -1.47796, 0.00290949, 0.390541, 0.0029842, 1.52868, -9.52012e-05, -0.39054, 0.000670345, -1.47796, 150.087, -75.8714, -159.894, -1.22241, 0.00243071, 0.369838, 0.00248874, 1.27713, -0.00016786, -0.369838, 0.000560036, -1.22241, 167.306, -75.9179, -130.494, 1.07412, 0.501298, -1.29275, -0.328632, 1.68072, 0.378691, 1.34703, 0.0103065, 1.12323, 0.803455, -2.09827, -206.908, 1.69754, 0, -0.661736, 0, 1.82196, 0, 0.661736, 0, 1.69754, 19.625, -0.453506, -67.0509, -1.77768, -0.13204, 0.395682, -0.149289, 1.81873, -0.0637951, -0.389501, -0.0944587, -1.78144, 109.605, -72.5545, -102.453, 0.829386, 0.155499, 0.757228, -0.114837, 1.12307, -0.104846, -0.764452, 0, 0.837299, 147.14, -12.8185, 17.0514, 1.57809, 0.221508, -0.262654, -0.218503, 1.5998, 0.036367, 0.265159, 0, 1.59315, 140.839, -11.9461, 23.9742, 0.550232, 0.0374801, -1.45718, -0.01324, 1.5576, 0.0350636, 1.4576, 0, 0.550391, 48.7691, -0.786072, 42.8286, -1.30589, 0.49269, 1.01163, 0.395958, 1.65186, -0.293365, -1.05326, 0.0101295, -1.36456, 2.95392, -2.78856, -198.938, -0.340156, 0.422971, 1.88716, 0.0802818, 1.91756, -0.415315, -1.93231, 0.00521077, -0.349463, 280.484, -39.3143, -66.0167, -1.21665, 0.0348616, -0.786866, 0.0292729, 1.44893, 0.0189322, 0.787094, 0, -1.21701, 97.089, -1.94885, 66.7809, -1.43983, 0.171025, 0.318554, 0.204415, 1.4639, 0.137994, -0.29823, 0.177702, -1.44337, 193.298, -33.5466, -29.9256, 0.523402, 0.0371233, -1.19021, -0.000813499, 1.30012, 0.0401937, 1.19079, -0.015429, 0.523175, 182.937, -53.5277, -113.744, -0.95445, -0.157718, 1.55301, 0.134883, 1.80517, 0.266222, -1.55516, 0.253363, -0.930041, 120.425, -14.3082, -33.9295, 1.30118, -0.102886, -0.681301, 0.142814, 1.4645, 0.0515908, 0.674063, -0.111677, 1.30422, 148.319, -40.1861, -106.976, -0.619899, 0.113051, -1.41025, 0.0458788, 1.54048, 0.103324, 1.41403, -0.000420809, -0.621594, 182.423, -33.8745, -10.3971, -0.30279, 0.065132, 1.60728, -0.0498878, 1.63434, -0.0756267, -1.60782, -0.0629763, -0.30034, 61.2088, -74.6099, -148.489, 1.24518, 0.00900006, -0.331159, 0.0204058, 1.28349, 0.111609, 0.330652, -0.113102, 1.2402, 103.678, -79.0494, -192.095, -0.860937, -0.0839384, 0.800362, -0.0408094, 1.17511, 0.0793419, -0.803716, 0.0302473, -0.861373, 49.4337, -6.13419, -6.36306, 0.601095, 0.045716, -1.17979, -0.000852229, 1.3239, 0.0508661, 1.18068, -0.0223189, 0.600681, 79.936, -73.8111, -101.224, 0.558554, 0.0331826, 1.15886, -0.0516019, 1.28578, -0.0119454, -1.15818, -0.0412839, 0.559411, 95.1441, -75.6553, -148.194, 0.315164, 0.151401, -1.73459, -0.0854014, 1.762, 0.138277, 1.73909, 0.059089, 0.321139, 215.187, -36.6028, -4.00635, -1.64973, -0.129844, 0.696938, -0.155691, 1.78849, -0.0353288, -0.691623, -0.0928879, -1.65445, 132.633, -70.3769, -92.7165, -1.74703, -0.162164, -0.937533, -0.150652, 1.98263, -0.0622021, 0.939452, 0.0163736, -1.75344, 224.817, -76.5929, -209.997, 1.42249, -0.135182, 0.690705, 0.135506, 1.58099, 0.0303524, -0.690641, 0.0317685, 1.42857, 207.397, -75.9772, -136.628, 0.914229, 0.0152503, 0.509566, -0.00409422, 1.04648, -0.0239735, -0.509778, 0.0189451, 0.914042, 285.067, -38.7193, -93.1293, 0.527811, 0.0286004, -1.06496, -0.0127005, 1.18858, 0.0256257, 1.06527, 0, 0.527964, 48.5344, -0.780426, 17.0148, -0.61904, 0.00394121, -1.50243, 0.00464196, 1.62496, 0.00235002, 1.50242, -0.00339666, -0.619048, 156.525, -25.8539, -66.8107, 0.43068, 0, 1.18597, 0, 1.26175, 0, -1.18597, 0, 0.43068, 17.4251, -0.453506, -9.26344, -1.18498, 0.101336, -0.83173, 0.0990278, 1.44747, 0.0352689, 0.832008, -0.0279555, -1.18878, 219.604, -59.8083, -124.008, -0.952257, 0.0478157, 0.525641, 0.055843, 1.08732, 0.00225656, -0.524849, 0.0289343, -0.953454, 230.272, -30.9941, -65.5224, 1.45084, 0.111606, -0.455933, -0.106348, 1.52079, 0.0338569, 0.457188, -0.00041543, 1.45473, 201.592, -35.2844, -21.5938, 0.52508, 0.264139, 0.901561, -0.198799, 1.04068, -0.189113, -0.918183, -0.0742678, 0.556519, 118.91, -1.89305, 0.42587, 0.440928, 0.0029549, -1.48861, -0.00149198, 1.55254, 0.00263987, 1.48861, 0.000680806, 0.44093, 163.247, -75.9028, -146.74, 0.7906, -0.100632, -1.23191, 0.119198, 1.46175, -0.0429094, 1.23025, -0.076959, 0.795823, 85.4273, -72.1373, -61.7064, -0.833579, 0.000709612, 1.12675, -0.0189034, 1.40137, -0.0148674, -1.1266, -0.024039, -0.833446, 15.5077, -0.264343, -5.53249, -0.725179, 0, -1.60058, 0, 1.75719, 0, 1.60058, 0, -0.725179, 10.4719, -0.453506, 41.8483, 1.76082, 0.00545752, 0.887813, -0.00566951, 1.97197, -0.000877587, -0.887812, -0.00176888, 1.76082, 150.544, -75.8746, -165.874, 1.79853, -0.0428459, -0.291958, 0.0368027, 1.82176, -0.0406353, 0.292781, 0.0342038, 1.79858, 77.9646, -79.7979, -220.927, -1.12016, 0, -0.576074, 0, 1.25961, 0, 0.576074, 0, -1.12016, 9.10894, -0.453506, 15.1568, -0.15497, -0.0693922, -0.997405, 0.0419238, 1.00798, -0.0766415, 0.998937, -0.0530684, -0.151516, 86.2924, -71.9631, -59.5297, 1.96359, 0.0575194, -0.199163, -0.0568565, 1.97366, 0.00944362, 0.199354, -0.00365645, 1.96441, 296.236, -38.2952, -149.371, -0.361378, 0.0360824, -1.35138, 0.0526989, 1.39814, 0.0232386, 1.35083, -0.0448917, -0.362431, 102.052, -75.5393, -139.029, 0.105241, 0.388394, -1.93751, 0.816099, 1.75851, 0.396841, 1.79966, -0.820153, -0.0666553, 125.058, -3.94193, -2.07566, 0.401689, 0.0279279, 1.73679, -0.131216, 1.77802, 0.00175703, -1.73205, -0.128221, 0.402655, 96.7586, -79.4118, -198.375, -1.05651, 0.135211, 0.492945, 0.181438, 1.15735, 0.0714143, -0.477867, 0.140491, -1.06273, 189.723, -32.6942, -33.5073, -0.633929, 0.0124891, -1.6883, -0.0392994, 1.80279, 0.0280923, 1.68789, 0.0466653, -0.63343, 95.9751, -1.18106, -1.49096, 1.62681, 0, 0.764253, 0, 1.79738, 0, -0.764253, 0, 1.62681, 3.69555, -0.453506, -29.9845, 1.62763, 0, -0.149197, 0, 1.63446, 0, 0.149197, 0, 1.62763, 17.2461, -0.453506, -9.43989, 1.16821, -0.0106455, -0.871794, 0.0795253, 1.45281, 0.0888245, 0.868225, -0.118747, 1.16488, 120.627, -77.9367, -178.529, -1.09611, 0.158296, -0.283437, 0.195661, 1.11855, -0.131964, 0.259058, -0.175042, -1.09959, 277.304, -51.8985, -128.823, -1.3547, 0.00385519, -0.324433, 0.00404019, 1.393, -0.000317295, 0.324431, -0.00124953, -1.3547, 156.129, -75.8982, -174.787, -0.360364, 0, 1.48429, 0, 1.52741, 0, -1.48429, 0, -0.360364, 6.57783, -0.453506, -22.6655, 0.873257, 0.00125051, -0.491224, -0.0261902, 1.00063, -0.0440114, 0.490527, 0.0511993, 0.872148, 286.456, -74.9306, -144.244, -0.287952, -0.142835, -1.74942, 0.0365817, 1.77193, -0.150694, 1.75486, -0.0603752, -0.283918, 241.644, -75.0852, -181.12, -0.168236, 0, -0.999299, 0, 1.01336, 0, 0.999299, 0, -0.168236, 33.2427, -0.453506, -43.1454, 1.1658, 0.12703, 0.0731918, -0.12678, 1.1681, -0.00795956, -0.0736233, 0, 1.17268, 110.484, -3.3606, 58.6663, -1.71088, 0, 0.0658402, 0, 1.71215, 0, -0.0658402, 0, -1.71088, 24.9845, -0.453506, -37.0056, -0.896109, 0.441774, -0.383347, 0.350061, 0.966936, 0.29601, 0.46859, 0.122476, -0.954229, 153.221, -17.8103, 32.8418, 0.302431, 0.103749, -1.12063, 0.0289463, 1.15928, 0.11514, 1.12505, -0.0577166, 0.29828, 282.031, -74.8197, -140.054, -1.1023, 1.28668, -0.766913, 1.00667, 1.34145, 0.803679, 1.10919, 0.0612276, -1.49154, 16.1779, -73.3104, -125.211, 0.269689, 0.0357021, 1.45915, -0.00648877, 1.48387, -0.0351075, -1.45958, 0, 0.269767, 77.2058, -1.4704, 53.2216, -0.176833, 0.326993, 1.01376, -0.69412, 0.744121, -0.361095, -0.807983, -0.710822, 0.0883399, 146.292, -15.1028, 0.798584, 1.08013, 0.0472829, 1.48106, -0.0753919, 1.83214, -0.00350815, -1.47989, -0.0588267, 1.08116, 93.6269, -74.607, -116.764, -0.0749178, 0.0549243, 1.82076, -0.0565254, 1.82135, -0.057268, -1.82071, -0.0588053, -0.0731419, 87.1357, -74.5847, -121.749, 1.5628, 0.0687014, -0.0046206, -0.0687998, 1.56225, -0.0414095, 0.00279588, 0.0415726, 1.56376, 235.67, -31.4736, -56.4252, -1.12502, 0.352397, 0.917112, 0.171285, 1.44325, -0.344449, -0.96744, -0.154272, -1.12748, 58.3172, -21.4828, -35.2817, -1.86468, -0.0468015, 0.69587, -0.0307736, 1.98994, 0.0513736, -0.696762, 0.0373615, -1.86456, 84.2633, -79.8333, -211.155, -1.60089, -0.111441, 0.254605, -0.123323, 1.61876, -0.0668868, -0.249067, -0.0852254, -1.60337, 101.146, -72.41, -87.4406, -1.74778, 0.00359572, -0.717275, 0.00301196, 1.88924, 0.00213159, 0.717278, 0.000828452, -1.74778, 192.244, -75.9675, -127.575, 0.786602, 0.00156092, -0.972304, -0.0506655, 1.24901, -0.0389837, 0.970985, 0.0639084, 0.785637, 296.1, -74.7604, -147.805, 0.3501, 0.149461, 1.42208, -0.00699664, 1.46425, -0.15217, -1.4299, 0.0294297, 0.348931, 63.0244, -22.6479, -44.2222, 1.73749, 0.189025, -0.0486146, -0.188951, 1.73817, 0.00528681, 0.0489012, 0, 1.74773, 109.949, -3.30246, 10.0773, -0.95596, 0.0746785, 1.17652, 0.0552589, 1.5159, -0.0513206, -1.1776, 0.0105107, -0.957498, 2.59498, -0.105301, 0.240209, -0.0420356, 0.00518802, -1.92418, -0.000566687, 1.92464, 0.00520163, 1.92419, 0.000680157, -0.0420339, 200.747, -25.957, -73.7228, 1.56269, 0.0026558, -0.732734, -0.00404683, 1.72594, -0.0023749, 0.732728, 0.00386829, 1.56269, 198.783, -25.9394, -83.5268, -0.104391, 0, 1.33128, 0, 1.33537, 0, -1.33128, 0, -0.104391, 18.0135, -0.453506, -57.2794, -0.908138, -0.0754138, -1.05836, -0.0965112, 1.39318, -0.0164589, 1.05665, 0.0624345, -0.911116, 42.1521, -8.14862, -13.8047, 1.29527, 0.167129, 1.45247, -0.0623118, 1.94503, -0.168237, -1.46073, 0.0652271, 1.29513, 220.643, -36.8974, -9.2003, -1.40719, 0.0598111, 1.01035, 0.0315375, 1.73209, -0.0586124, -1.01163, -0.0292002, -1.40724, 77.9053, -73.6064, -93.2387, 0.806662, 0, -1.52364, 0, 1.724, 0, 1.52364, 0, 0.806662, 5.85765, -0.453506, -30.4632, -1.93566, -0.134351, 0.26892, -0.14706, 1.95155, -0.0835466, -0.262186, -0.102746, -1.93852, 87.6238, -72.4525, -70.5662, -1.86972, -0.0726372, 0.656873, -0.0733755, 1.9817, 0.0102809, -0.656791, -0.0146115, -1.8711, 296.879, -38.2612, -128.06, 0.935145, -0.0957799, -0.734126, 0.100375, 1.18819, -0.0271612, 0.733512, -0.0404853, 0.939645, 237.011, -75.4632, -181.255, 1.04926, 0.0257349, 0.207065, -0.0252479, 1.06949, -0.00498254, -0.207125, 0, 1.04956, 59.9863, -1.05603, 28.0277, 0.890402, 0.158241, 1.15087, -0.0968308, 1.4551, -0.125157, -1.15766, 0, 0.895652, 128.766, -5.34871, 34.5766, -1.10493, 0.171494, 0.909548, 0.0158866, 1.41972, -0.248386, -0.925438, -0.180383, -1.09022, 165.343, -54.1916, -123.013, 0.281199, 0.109075, 0.962771, -0.0305802, 1.003, -0.104701, -0.968447, 0, 0.282856, 116.603, -4.02603, 42.8303, 0.0980183, 0.156371, -1.02885, 0.0573997, 1.03102, 0.162169, 1.03908, -0.071705, 0.0880948, 72.4282, -7.15887, -12.8938, -1.24513, 1.42247, 0.496662, 1.48081, 1.27425, 0.062866, -0.278034, 0.41632, -1.8894, 174.022, -31.5493, 33.6994, -1.67326, 0.307975, -0.992746, 0.191075, 1.94044, 0.27992, 1.02171, 0.14148, -1.67818, 236.214, -30.9968, -85.9388, 0.556205, 0.226412, 1.87131, 0.162977, 1.93799, -0.282921, -1.87789, 0.235252, 0.5297, 201.318, -34.6349, -28.6788, 1.06529, -0.0733258, -0.450341, 0.0972092, 1.15404, 0.0420456, 0.445796, -0.0764249, 1.06698, 223.48, -76.2136, -177.472, -1.21194, -0.153493, -1.43288, -0.110994, 1.87662, -0.107148, 1.43679, 0.0154982, -1.21692, 217.797, -77.2009, -205.903, -1.09396, 0.172567, 0.322665, 0.142477, 1.1378, -0.125465, -0.337035, -0.0791316, -1.10036, 94.0752, -10.5128, -13.9123, -1.84488, 0.00351459, 0.0799183, 0.00354634, 1.84661, 0.000656897, -0.0799169, 0.00080976, -1.84489, 162.349, -75.9101, -126.361, 0.199787, -0.151333, 1.75893, 0.0525415, 1.76988, 0.146307, -1.76465, 0.0355641, 0.203496, 221.518, -74.5271, -148.703, 0.103944, -0.125133, -1.8172, 0.102902, 1.81766, -0.119278, 1.8186, -0.0956968, 0.110614, 93.3969, -72.1575, -72.5104, -1.20132, -0.190824, -1.3459, 0.04253, 1.79, -0.291751, 1.3587, -0.224752, -1.18088, 74.9138, -79.5181, -197.426, -1.21606, 0.0432196, -1.32184, 0.0292618, 1.79612, 0.0318069, 1.32222, 0, -1.21642, 55.3868, -0.945328, 20.6294, 0.895501, -0.0942064, -0.579531, -0.0268713, 1.04926, -0.212086, 0.586523, 0.191906, 0.87511, 100.505, -17.1156, -28.8184, 0.429914, -0.00111973, -1.35361, -0.000965114, 1.42024, -0.00148137, 1.35361, 0.00136825, 0.429913, 170.239, -25.8782, -93.1134, 1.02211, -0.00428978, -1.30787, 0.00455591, 1.65989, -0.00188391, 1.30787, -0.00242965, 1.02212, 124.452, -25.934, -64.312, -0.233887, 0.00469414, -1.67994, 0.00215421, 1.69614, 0.0044395, 1.67994, -0.00152145, -0.233892, 140.894, -75.8524, -171.091, -1.57668, 0.0244993, 0.633571, -0.140885, 1.64214, -0.4141, -0.618194, -0.436723, -1.52153, 141.485, -75.6879, -113.402, 1.40637, 0.0445922, 1.20709, -0.0338375, 1.85336, -0.0290429, -1.20744, 0, 1.40677, 90.1611, -1.78215, 30.7488, -1.14561, -0.100857, -0.504799, -0.0749945, 1.25117, -0.0797828, 0.509284, -0.0426312, -1.14727, 252.426, -74.4238, -187.218, 1.05011, 0.300883, -0.121026, -0.304428, 1.05591, -0.0163129, 0.111811, 0.0491098, 1.09224, 178.023, -32.8103, 33.2543, -1.61067, -0.175515, 1.16408, 0.0703158, 1.95486, 0.392038, -1.17513, 0.357537, -1.57206, 107.674, -15.395, -34.707, -1.62243, 0.176639, -0.0775657, 0.176438, 1.62428, 0.00843522, 0.078023, 0, -1.63199, 118.929, -4.27898, 29.9583, -0.834971, 0.0459111, -0.560591, -0.0232796, 0.99971, 0.116548, 0.561986, 0.109624, -0.82807, 215.18, -30.6254, -73.2872, -0.816752, -0.00750775, -1.63287, -0.0075833, 1.82574, -0.00460142, 1.63287, 0.00472369, -0.816773, 124.743, -75.9223, -134.742, 0.35603, 1.45417, 0.35908, -1.35185, 0.470895, -0.566613, -0.645008, -0.184266, 1.38575, 47.8445, -16.3686, -29.2542, -1.53311, 0, 0.919426, 0, 1.78767, 0, -0.919426, 0, -1.53311, 16.4469, -0.453506, 59.762, 1.21869, 0, -0.181551, 0, 1.23214, 0, 0.181551, 0, 1.21869, 19.5355, -0.453506, 59.6412, -0.125115, 0.0895268, -1.2135, 0.00951417, 1.21993, 0.0890204, 1.21676, -0.000333244, -0.125476, 188.826, -34.3431, -5.30818, 0.382247, 0.0273668, 0.989718, -0.0416269, 1.06042, -0.0132448, -0.989221, -0.0340482, 0.382996, 112.708, -75.2701, -122.078, -0.93009, 0.0386189, 1.30815, 0.0223781, 1.60509, -0.0314744, -1.30853, 0, -0.930359, 75.342, -1.42552, 52.7712, -1.38207, 0.12462, -0.183603, 0.132548, 1.39249, -0.0526066, 0.177964, -0.0693272, -1.38668, 274.227, -73.8946, -135.502, 0.410815, 0.00244319, 0.915501, 0.0359128, 1.00263, -0.018791, -0.9148, 0.0404582, 0.410393, 297.405, -38.5443, -105.441, 0.557818, 1.11794, -0.893748, -0.967358, 1.00145, 0.64889, 1.05489, 0.327191, 1.06766, 182.057, -31.5891, 6.36897, 1.00343, 0, 1.11331, 0, 1.49877, 0, -1.11331, 0, 1.00343, 34.6319, -0.453506, -7.61135, 1.43985, 0.0347732, 0.124856, -0.0346432, 1.44526, -0.00300405, -0.124892, 0, 1.44027, 90.1399, -1.78163, 26.5566, 1.24429, 0.00350602, -1.35834, -0.00296387, 1.84211, 0.00203965, 1.35835, 0.000807786, 1.2443, 150.944, -75.8841, -135.098, 0.726729, -0.0223358, 1.01747, 0.0105535, 1.25035, 0.0199101, -1.01766, -0.00298385, 0.726799, 56.7349, -72.7876, -79.8272, -1.82117, 0.0303621, 0.662741, -0.0192177, 1.93299, -0.141365, -0.663158, -0.139397, -1.81593, 85.4321, -78.4839, -187.975, -0.502059, 0.190734, -1.44636, 0.0973601, 1.53058, 0.168045, 1.45563, -0.0365874, -0.510101, 8.77605, -2.90445, -105.97, 1.52171, 0.116864, -0.469328, -0.111545, 1.59244, 0.0348593, 0.47062, -0.000435002, 1.52579, 175.609, -33.3728, -4.0829, 1.26621, -0.0349205, -0.775928, 0.0151998, 1.48478, -0.0420183, 0.776565, 0.027877, 1.26599, 90.6736, -79.7282, -208.721, 0.414064, -0.0945246, 1.09781, -0.00416626, 1.17262, 0.102537, -1.10186, -0.0399548, 0.412152, 253.648, -74.2951, -186.331, 1.74971, 0.0036723, 0.813248, -0.00297355, 1.92947, -0.0023151, -0.813251, 0.000846096, 1.74972, 137.992, -75.8571, -139.457, 1.10504, -0.0135252, 1.09732, 0.00372384, 1.55729, 0.0154447, -1.09739, -0.00833504, 1.10502, 250.243, -44.6885, -109.58, -1.59047, -0.00499773, 1.10004, -0.00572054, 1.93382, 0.00051486, -1.10003, -0.00283062, -1.59048, 129.4, -25.886, -40.4611, 0.457852, 0.051555, -1.74666, 0.00766372, 1.80555, 0.0553019, 1.7474, -0.0214271, 0.457415, 183.194, -53.5834, -117.821, -0.898678, 0, -0.710276, 0, 1.14548, 0, 0.710276, 0, -0.898678, 27.3826, -0.453506, -52.7418, -1.29528, 0.055443, -0.949153, 0.0607235, 1.60559, 0.0109197, 0.94883, -0.0270677, -1.29642, 54.9228, -73.0347, -106.401, 0.529807, -0.275197, 0.903, -0.106996, 1.01132, 0.370984, -0.93792, -0.270821, 0.467761, 268.421, -45.1783, -104.393, -1.628, -0.170914, 0.0697697, -0.172852, 1.62871, -0.0434687, -0.0648212, -0.0505525, -1.63637, 207.822, -77.8467, -178.873, -0.938121, -0.00397581, 0.428923, -0.00419665, 1.03153, 0.000382767, -0.428921, -0.00139691, -0.93813, 108.339, -25.9875, -58.7035, -0.37061, 0.128837, -1.17448, 0.180735, 1.2226, 0.0770842, 1.16762, -0.148351, -0.384719, 205.896, -76.7352, -199.024, -1.80454, 0.0188328, -0.591895, 0.0144012, 1.8991, 0.0165194, 0.592019, 0.0112077, -1.80456, 256.491, -44.6991, -100.516, -1.05415, 0.0254513, 0.0880256, 0.0253631, 1.05782, -0.00211791, -0.088051, 0, -1.05446, 96.3752, -1.93169, 37.196, -0.679079, 0.0920229, -0.773809, 0.0992544, 1.02825, 0.0351785, 0.772914, -0.0511931, -0.684382, 259.494, -73.657, -157.213, -0.41806, 0.0319757, -1.16703, 0.0482423, 1.23901, 0.0166663, 1.16647, -0.0397824, -0.41895, 123.203, -75.9061, -133.453, 1.24247, -0.1107, -0.536809, 0.0971694, 1.35343, -0.0541987, 0.539423, 0.0111773, 1.24621, 221.42, -76.9759, -197.257, -1.06623, -0.11249, -0.1156, -0.108175, 1.07197, -0.045379, 0.119648, -0.0332721, -1.07119, 226.498, -75.5375, -167.616, 1.24011, 0.0295736, 0.664949, 0.00849495, 1.40524, -0.078341, -0.665552, 0.0730403, 1.23799, 185.801, -31.8174, -39.1828, 1.81651, 0.0627187, 0.0115059, -0.0629025, 1.81629, 0.0302402, -0.0104539, -0.0306197, 1.81734, 76.2364, -73.2591, -76.0557, -1.59644, -0.0352656, -0.693964, -0.0145723, 1.74018, -0.0549086, 0.694706, -0.0445381, -1.59588, 124.513, -15.5486, -12.1013, -1.82031, 0.536853, 0.493668, 0.541423, 1.88402, -0.0524382, -0.488651, 0.0876246, -1.8971, 177.92, -33.5079, 48.8869, -0.672998, 0.0400077, -1.52035, 0.0161941, 1.66264, 0.0365837, 1.52079, 0, -0.673193, 47.301, -0.750748, 38.8173, -1.37121, -0.0131134, 0.35844, -0.0774324, 1.39382, -0.245225, -0.350222, -0.256825, -1.34917, 25.5296, -73.8986, -80.1592, -0.722226, 0.0210948, 0.78181, 0.00489434, 1.06427, -0.0241948, -0.782079, -0.0128201, -0.722129, 276.876, -74.0807, -163.717, 1.57593, -0.0410251, -0.130512, 0.0306419, 1.57656, -0.125578, 0.133332, 0.122579, 1.57145, 306.164, -37.9767, -128.139, -0.769226, 0.0329274, 1.01875, -0.012873, 1.27589, -0.0509582, -1.0192, -0.0409664, -0.768242, 104.036, -75.016, -121.134, 0.978267, 0.00297644, 1.22011, -0.00132687, 1.56386, -0.00275116, -1.22011, 0.000685771, 0.978267, 186.492, -75.9521, -137.064, -0.684768, 0.0767581, 0.862291, 0.110929, 1.09816, -0.00966215, -0.858564, 0.0806649, -0.688989, 157.117, -35.7972, -6.54183, -1.71124, -0.00135744, 0.189968, -0.00116614, 1.72175, 0.00179838, -0.189969, 0.00165873, -1.71124, 152.883, -25.8934, -92.1481, 0.480242, -0.12809, 1.50613, 0.0619949, 1.58066, 0.114661, -1.5103, 0.0241532, 0.483624, 205.474, -75.4777, -169.668, 0.198114, -0.140299, -1.92493, 0.114446, 1.93249, -0.129071, 1.92664, -0.100367, 0.205605, 135.308, -69.8808, -86.9033, 1.6357, -0.13081, -0.895576, 0.182676, 1.85942, 0.0620533, 0.886452, -0.14181, 1.63975, 144.855, -39.897, -99.992, -0.220344, -0.0870901, -1.35588, 0.0758362, 1.37067, -0.100364, 1.35656, -0.0907709, -0.214623, 239.611, -73.9264, -158.413, 1.59821, -0.0138836, -0.0342835, 0.0140637, 1.59856, 0.00825652, 0.03421, -0.00855592, 1.59825, 243.253, -44.7121, -102.637, -1.10699, -0.0987998, -0.161262, -0.125298, 1.10042, 0.185926, 0.141659, 0.201263, -1.09573, 94.8839, -17.5582, -29.1582, 0.400526, 0, -1.93932, 0, 1.98025, 0, 1.93932, 0, 0.400526, 3.85427, -0.453506, 53.0155, -1.36502, 0.216567, 0.430727, 0.175808, 1.42792, -0.160796, -0.448909, -0.0993084, -1.37271, 75.9978, -8.32149, -21.8264, 1.71913, 0.044684, 0.450607, -0.155612, 1.71964, 0.423153, -0.42524, -0.448639, 1.66684, 175.892, -79.6079, -190.549, 0.91521, -0.0572321, 0.726305, 0.0500771, 1.16836, 0.0289638, -0.726834, 0.00843172, 0.91654, 242.396, -31.2751, -5.83424, 0.794684, 0.10941, 0.895358, -0.0387509, 1.19631, -0.111792, -0.901186, 0.0450388, 0.794352, 191.15, -35.1579, 15.1234, -1.19215, 0.165524, 0.0889708, 0.165065, 1.19547, -0.0123189, -0.0898195, 0, -1.20352, 137.679, -11.5086, 26.8828, -1.50419, -0.00500948, 1.00688, -0.00535456, 1.81008, 0.00100638, -1.00688, -0.00214223, -1.5042, 143.105, -25.9095, -84.6261, 0.764959, 0.00406305, 1.25307, -0.00324107, 1.46811, -0.00278174, -1.25307, -0.0013169, 0.764965, 199.534, -75.9969, -149.897, 0.881515, 0.0309822, -0.597446, -0.0375341, 1.06469, -0.000168273, 0.59707, 0.0211883, 0.882059, 135.427, -80.0935, -203.939, -0.43527, 0.0313563, 1.22841, 0.0104727, 1.30324, -0.0295557, -1.22876, 0, -0.435396, 63.8113, -1.14806, 65.8991, -0.299814, 0.00928907, 1.05403, 0.14223, 1.08617, 0.0308843, -1.04443, 0.145248, -0.298364, 290.566, -39.9535, -84.2328, -0.8437, -0.0877142, 0.662038, -0.0635179, 1.0724, 0.0611366, -0.664796, 0.00885647, -0.846041, 247.415, -74.8864, -192.815, -1.34308, 0.041964, 0.596923, 0.0312582, 1.46965, -0.0329861, -0.597579, -0.0174409, -1.34333, 193.046, -53.8817, -119.252, -1.00139, -0.150292, -1.008, 0.0211815, 1.40979, -0.231241, 1.01892, -0.177013, -0.98585, 74.8336, -78.9716, -193.006, 0.413892, -0.0497945, -1.31625, 0.160249, 1.37136, -0.00148915, 1.30741, -0.152324, 0.416874, 256.889, -31.0247, -23.9722, 1.24729, -0.00508757, 1.35041, 0.00185372, 1.8383, 0.00521349, -1.35042, -0.00217563, 1.24729, 151.06, -25.8575, -59.6561, 0.920787, -0.210125, -1.76024, 0.317155, 1.97106, -0.0693863, 1.74414, -0.247485, 0.941906, 63.6054, -79.4051, -186.925, -0.890578, 0.00418256, 1.27061, 0.00284965, 1.55164, -0.0031103, -1.27061, 0.00054834, -0.890582, 182.17, -25.9027, -84.2633, -0.943614, -0.163401, -1.66226, -0.114167, 1.91103, -0.123046, 1.66636, 0.0384003, -0.94972, 218.289, -75.039, -136.972, -1.02384, 0, -0.0742479, 0, 1.02652, 0, 0.0742479, 0, -1.02384, 3.01345, -0.453506, -28.8366, 1.26294, 0.87324, -0.692421, -0.97315, 1.37413, -0.0420078, 0.543115, 0.431552, 1.53486, 238.549, -30.826, -29.4352, -0.851048, 0, 1.41528, 0, 1.65145, 0, -1.41528, 0, -0.851048, 23.4759, -0.453506, -16.1642, 0.469822, -0.00803691, -1.17464, 0.0461279, 1.26426, 0.00979968, 1.17377, -0.0464675, 0.469788, 168.106, -25.9048, -95.1291, -1.82614, -0.126052, 0.16462, -0.134045, 1.83101, -0.0849354, -0.15818, -0.0963997, -1.82851, 84.8452, -73.4313, -85.5229, -0.0928395, 0.0263105, -1.08958, 0.00223374, 1.09353, 0.0262155, 1.08989, 0, -0.0928664, 86.2963, -1.68915, 35.6322, 1.37128, 0.391022, 0.0821179, -0.385935, 1.37225, -0.0895877, -0.103422, 0.0638223, 1.42312, 174.562, -32.0073, 37.1931, 0.157141, 0.0489992, -1.67396, -0.00147709, 1.68131, 0.0490759, 1.67467, -0.00311483, 0.157117, 307.883, -38.6482, -156.655, -1.07657, 0.527704, -1.50931, 0.233199, 1.85192, 0.481153, 1.58181, 0.0861313, -1.09816, 181.213, -33.1591, 21.2105, 0.404454, 0.126787, 1.09346, -0.0439841, 1.16586, -0.118913, -1.0999, 0, 0.406838, 118.969, -4.28339, 31.2885, -0.969292, 0.0444621, -1.11204, 0.065101, 1.47441, 0.00220643, 1.11102, -0.0476039, -0.970308, 84.248, -75.423, -150.41, -1.18165, 0.460656, 0.0183332, 0.460987, 1.18124, 0.0315867, -0.00560178, 0.0360894, -1.26787, 55.833, -80.236, -56.8974, 1.07222, -0.0916842, 0.0242222, 0.0921307, 1.07228, -0.0195491, -0.0224642, 0.0215463, 1.07595, 215.545, -75.4809, -126.656, -1.91822, 0, -0.276836, 0, 1.9381, 0, 0.276836, 0, -1.91822, 11.4394, -0.453506, -52.251, 1.53256, 0.220879, -0.716941, -0.199922, 1.69196, 0.0939087, 0.723065, -0.000344874, 1.54554, 76.4135, -24.3793, -47.4868, 1.16354, 0, -0.856308, 0, 1.44468, 0, 0.856308, 0, 1.16354, 16.3817, -0.453506, 24.2123, 0.600875, 0.0318098, 0.91343, 0.000703804, 1.09313, -0.0385307, -0.913983, 0.0217543, 0.600481, 146.675, -80.2671, -211.661, -0.384193, -0.0134129, -1.79595, 0.143513, 1.83048, -0.0443714, 1.79026, -0.149616, -0.381858, 173.088, -77.7204, -180.585, 0.46927, 0.403648, -1.63166, 0.0378033, 1.69109, 0.429224, 1.68042, -0.150765, 0.445997, 151.394, -40.9641, -102.766, -0.685739, 0.140179, -1.09147, 0.0745738, 1.28901, 0.118697, 1.09791, 0, -0.689782, 106.515, -2.92897, 30.5387, 1.61958, 0, 0.373961, 0, 1.66219, 0, -0.373961, 0, 1.61958, 8.75708, -0.453506, 56.3716, 0.0379774, -0.00945082, 1.08752, -0.00549099, 1.08816, 0.0096482, -1.08754, -0.00582415, 0.0379278, 188.105, -45.2104, -106.196, 0.732787, 0.130331, 0.687185, 0.00642312, 0.99397, -0.195365, -0.699405, 0.14568, 0.718189, 154.663, -34.0923, -21.6349, 1.51541, 0.00431859, 0.372193, -0.00452781, 1.56044, 0.000329279, -0.37219, -0.00139973, 1.51541, 198.96, -76.005, -160.629, -0.292921, 0.0264071, -1.00861, 0.26182, 1.01626, -0.0494305, 0.97439, -0.265134, -0.289925, 187.776, -79.3306, -188.302, -1.57435, 0.410762, -0.664328, 0.383187, 1.70873, 0.148437, 0.680606, -0.0118755, -1.62027, 41.8507, -7.11093, -50.6476, -1.38084, 0.021717, -0.121717, 0.030333, 1.38261, -0.0974314, 0.11986, -0.0997063, -1.37757, 92.1736, -79.6114, -202.141, 0.734403, 0.112256, 0.725383, -0.079866, 1.03224, -0.078885, -0.72966, 0, 0.738733, 105.385, -2.80611, 63.2656, -0.897216, 0.189905, -1.36974, -0.0628694, 1.6255, 0.266545, 1.38142, 0.197319, -0.877505, 195.054, -33.4139, -32.7093, -1.19619, 0.0445938, 1.41549, 0.0287835, 1.85324, -0.0340605, -1.4159, 0, -1.19653, 58.8055, -1.02759, 38.7126, -0.933971, 0.0298145, 1.06777, 0.0750393, 1.41669, 0.0260795, -1.06554, 0.0736352, -0.934083, 175.236, -32.2661, -26.273, -1.24319, -0.122855, 0.843059, -0.094691, 1.50204, 0.0792519, -0.846685, 0.0124046, -1.24673, 228.673, -76.3033, -206.872, 1.09746, -0.0645556, 0.469799, 0.0803503, 1.19259, -0.0238246, -0.467357, 0.053445, 1.09909, 43.9047, -8.1105, -12.5384, -1.827, -0.0670796, 0.10695, -0.0677523, 1.83008, -0.00955962, -0.106526, -0.0134936, -1.8282, 325.749, -37.2299, -131.717, 1.57794, -0.00762481, 0.771725, 0.00710777, 1.75654, 0.00282185, -0.77173, 0.000587822, 1.57795, 290.762, -38.3695, -114.338, -1.05466, 0.01739, -0.346109, 0.0413781, 1.10713, -0.0704606, 0.344066, -0.0798401, -1.05245, 87.7993, -79.7737, -205.345, -1.62463, -0.00728672, -0.966819, -0.00495251, 1.89054, -0.00592652, 0.966834, -0.00256021, -1.62464, 118.085, -25.9683, -72.2275, 0.797328, 0.0286563, 0.884597, -0.0191859, 1.1909, -0.0212858, -0.884853, 0, 0.797559, 46.9674, -0.742722, 49.6588, -0.878722, 0.0878136, 1.12873, 0.171196, 1.4227, 0.0225927, -1.11912, 0.148685, -0.88281, 134.988, -30.4142, -37.3442, -0.000286504, -0.239477, 1.32877, 0.0600699, 1.32745, 0.239252, -1.34884, 0.0591682, 0.0103727, 271.495, -44.8255, -120.032, 1.73761, 0.0691987, 0.014846, -0.069717, 1.73638, 0.0663683, -0.0121823, -0.0669084, 1.73772, 69.7747, -74.1885, -128.692, -0.992514, -0.016025, 0.853073, 0.0200237, 1.30782, 0.0478641, -0.852988, 0.0493469, -0.991489, 190.11, -45.2568, -103.864, 1.71283, 0.00329512, -0.252164, -0.00337055, 1.7313, -0.000271163, 0.252163, 0.000759193, 1.71284, 154.828, -75.8934, -131.153, 0.733068, -0.00447468, 0.80418, 0.00509512, 1.08816, 0.00141024, -0.804177, 0.00281536, 0.733081, 132.209, -75.9061, -129.15, 0.36841, -0.011193, 1.15227, -0.205459, 1.1897, 0.0772471, -1.13386, -0.219215, 0.360395, 27.2619, -76.2837, -93.1919, -0.808589, -0.0659377, -0.912677, -0.0846015, 1.21812, -0.0130519, 0.911136, 0.0545892, -0.811168, 38.9741, -7.98547, -21.284, 1.02666, 0.0338313, -0.546024, -0.0407325, 1.1626, -0.00455322, 0.545552, 0.0231368, 1.02721, 133.795, -80.154, -198.513, -0.869118, 0, 1.33473, 0, 1.59276, 0, -1.33473, 0, -0.869118, 1.20783, -0.453506, -47.1139, 1.09232, 0.00946434, -0.231199, -0.0398229, 1.10667, -0.142844, 0.227941, 0.147988, 1.08298, 291.978, -39.623, -86.7949, 1.44333, 0.130424, -0.214274, -0.118153, 1.45734, 0.0911843, 0.221277, -0.0725559, 1.44634, 264.19, -73.8007, -151.657, -0.0642047, 0.139387, 1.14468, 0.0036086, 1.14647, -0.139402, -1.15313, -0.00417309, -0.0641705, 54.1664, -73.9146, -146.049, 1.05736, -0.000833913, 0.0273753, 0.000860006, 1.05772, -0.000997078, -0.0273745, 0.001019, 1.05736, 162.85, -25.8925, -84.9004, -0.902662, 0.00187239, 0.816004, 0.00321784, 1.21682, 0.000767477, -0.816, 0.00272722, -0.902664, 198.59, -25.921, -91.638, 1.03111, -0.00343886, 0.693383, 0.00203303, 1.24257, 0.00313929, -0.693389, -0.00147058, 1.03111, 144.796, -25.8894, -71.7019, -0.24162, 0.180076, -1.63816, 0.026276, 1.65588, 0.178148, 1.64781, 0, -0.243044, 118.897, -4.27557, 25.9877, -0.222355, -0.142556, 1.59872, 0.269431, 1.58778, 0.179053, -1.58229, 0.290398, -0.194175, 108.256, -16.7021, -27.2744, -0.00618298, 0.232339, 1.64915, -0.03619, 1.64875, -0.232419, -1.66504, -0.0366987, -0.00107228, 94.2908, -10.8674, -19.4784, 1.95573, -0.167223, -0.0388747, 0.166372, 1.95572, -0.0427565, 0.0423675, 0.0392983, 1.9624, 209.507, -75.4302, -154.871, 1.24529, 0.039667, 0.902323, -0.0610712, 1.53704, 0.0167139, -0.901127, -0.0493515, 1.24581, 95.1763, -74.5506, -113.76, 1.10817, -0.127316, 1.36221, 0.00939796, 1.75367, 0.156258, -1.36811, -0.0910795, 1.10446, 118.841, -70.5691, -77.137, -0.0614107, 0.027476, 1.1402, 0.0014777, 1.14185, -0.0274362, -1.14053, 0, -0.0614284, 46.859, -0.740112, 22.2031, 0.760317, 0.0520218, -1.61836, -0.0543303, 1.78771, 0.0319407, 1.61828, 0.035577, 0.761425, 154.327, -80.4534, -213.491, -1.38085, 0.196846, 1.17033, 0.150167, 1.81009, -0.127273, -1.17723, 0, -1.38899, 118.814, -4.26645, 19.1433, 0.842724, -0.0248192, 1.14789, -0.0079493, 1.42374, 0.0366196, -1.14813, -0.0280748, 0.842294, 117.415, -4.80925, -10.536, -0.724135, -0.0275038, -1.35874, -0.00969261, 1.53965, -0.0260002, 1.35898, -0.00367425, -0.724191, 48.5191, -73.013, -112.754, -1.62225, 0.492268, -0.599339, 0.432312, 1.72756, 0.248775, 0.643926, 0.0803474, -1.67694, 177.481, -33.1141, 43.1085, 1.09869, -0.0959902, 0.412656, 0.0932771, 1.17359, 0.0246462, -0.413278, 0.0096921, 1.1026, 254.231, -74.3142, -194.595, 0.554844, 0.200738, 1.31962, -0.0632939, 1.43143, -0.191134, -1.3333, 0.0155834, 0.558225, 240.388, -31.9342, -80.6374, -0.464041, -0.0937303, -0.993388, -0.0596914, 1.09621, -0.0755481, 0.996013, 0.0220272, -0.467346, 236.911, -73.4382, -137.395, -1.56304, 0.0027122, 0.814656, 0.00423098, 1.7626, 0.00224963, -0.81465, 0.00395044, -1.56304, 187.716, -25.8972, -94.8175, -0.836029, 0.0514674, 1.81172, -0.0366068, 1.99429, -0.0735461, -1.81208, -0.0640328, -0.834377, 91.0945, -75.6651, -151.752, -0.346051, -0.0313547, -0.941575, 0.00676727, 1.00298, -0.0358865, 0.942073, -0.0187223, -0.34561, 31.2864, 0.134247, 1.0151, 0.428733, 0.364285, -1.20585, -0.180152, 1.27842, 0.322156, 1.24672, 0.0594582, 0.461228, 171.774, -32.1081, 56.4407, 0.599336, 0.227389, -0.965038, 0.307271, 1.02953, 0.433416, 0.94265, -0.480166, 0.472292, 122.81, -3.52277, -2.24157, -0.634974, 0.00508669, 1.72481, 0.000210139, 1.83798, -0.00534307, -1.72482, -0.00164868, -0.634972, 195.504, -75.9714, -134.153, -0.726114, -0.00792826, 0.807013, -0.0710298, 1.08198, -0.0532797, -0.80392, -0.088437, -0.7242, 116.518, -78.4374, -184.285, -1.02516, 0.00381294, -0.920429, 0.00366282, 1.37773, 0.00162774, 0.92043, -0.00123584, -1.02517, 176.459, -75.9414, -159.8, 0.526339, 0, -1.30617, 0, 1.40823, 0, 1.30617, 0, 0.526339, 11.5789, -0.453506, 54.5144, -0.0785102, -0.0702441, 1.01874, -0.0590774, 1.02035, 0.0658021, -1.01945, -0.0537199, -0.0822689, 93.448, -71.9304, -68.2633, 1.21007, 0.00674111, -0.95532, -0.046315, 1.5403, -0.0477966, 0.954221, 0.0662129, 1.20914, 164.228, -35.8849, -5.40534, 1.0066, -0.127625, -1.10252, 0.0638036, 1.49261, -0.114528, 1.10804, 0.0299925, 1.00817, 205.042, -75.7257, -159.164, -0.578125, 0, 0.883668, 0, 1.05598, 0, -0.883668, 0, -0.578125, 18.1399, -0.453506, -69.4374, -0.531096, 0.543904, -1.53712, 0.511606, 1.59055, 0.386044, 1.54817, -0.339027, -0.654878, 273.578, -39.0747, -88.3426, -0.633301, 0.0031951, 0.965286, 0.000886814, 1.15449, -0.00323955, -0.965291, -0.00103559, -0.633301, 147.78, -75.875, -174.776, -1.17709, 0.0185036, 0.0970715, 0.0114102, 1.17803, -0.0861928, -0.0981584, -0.084953, -1.17408, 76.1235, -78.463, -189.713, -1.75056, 0.258535, -0.649641, 0.242383, 1.86722, 0.0899491, 0.655838, 0, -1.76727, 130.186, -10.471, 2.72304, -0.853331, 0.137185, -1.66321, 0.0630789, 1.86934, 0.121824, 1.66766, -0.000510642, -0.855659, 207.939, -35.7501, -21.1724, 0.545395, -0.100127, -1.26877, 0.105469, 1.37916, -0.0635027, 1.26833, -0.071629, 0.550862, 126.653, -70.2078, -81.1015, -0.202894, 0.0452936, -1.7442, 0.0612237, 1.75506, 0.0384537, 1.74372, -0.0563517, -0.204301, 124.275, -75.3721, -115.96, 0.519067, 0.106869, -1.18628, -0.0277865, 1.29477, 0.104485, 1.19076, -0.0163723, 0.519553, 125.784, -14.6864, -13.3994, 1.48242, -0.319588, -0.592261, 0.407291, 1.56662, 0.174087, 0.535746, -0.306685, 1.50646, 244.393, -30.7325, -4.4261, 1.13155, 0, 0.473139, 0, 1.22649, 0, -0.473139, 0, 1.13155, 6.4828, -0.453506, -17.9634, 1.29535, 0.0341417, 0.272128, -0.0421311, 1.32294, 0.0345679, -0.271006, -0.0424772, 1.29534, 108.659, -75.8053, -142.004, 0.888275, -0.12319, -1.55624, 0.142996, 1.78943, -0.0600285, 1.55455, -0.0942105, 0.894765, 99.7708, -72.3921, -85.3024, 1.94525, 0.0587417, -0.120087, -0.0547226, 1.94794, 0.0664191, 0.121971, -0.0628925, 1.945, 87.2919, -75.845, -160.639, -1.57429, -0.0738744, 0.502455, -0.0881501, 1.65149, -0.0333779, -0.500148, -0.0585413, -1.57567, 41.7196, 0.504349, 0.235735, -1.226, -0.00980149, -0.546015, 0.035558, 1.33763, -0.103852, 0.544944, -0.109332, -1.22163, 163.819, -77.8164, -180.929, 0.874171, -0.00488423, 1.53311, 0.000604859, 1.76482, 0.00527753, -1.53312, -0.00208867, 0.874168, 151.888, -25.8641, -67.0579, -1.41366, -0.142219, -0.877055, -0.138509, 1.66329, -0.0464578, 0.877649, 0.0334223, -1.42004, 213.627, -75.4234, -137.676, -0.360303, 0.0469758, -1.31201, 0.0345665, 1.36039, 0.0392154, 1.31239, -0.0229339, -0.36123, 72.8848, -73.0329, -69.5053, 1.93278, -0.156133, -0.14241, 0.160485, 1.93689, 0.0545644, 0.137486, -0.0659959, 1.93831, 253.451, -73.992, -176.971, 1.15744, 0.0299312, -0.455961, -0.0278483, 1.24402, 0.0109705, 0.456093, 0, 1.15778, 94.9011, -1.89621, 6.87473, 0.210652, 0.00405318, -1.65779, 0.00295439, 1.67112, 0.00446117, 1.6578, -0.00349316, 0.210644, 163.428, -25.8683, -65.6563, 0.0160078, 0.0355476, -1.1793, 0.037591, 1.1788, 0.0360427, 1.17924, -0.0380595, 0.0148597, 88.1937, -75.888, -161.129, -1.01092, -0.0045112, -0.241029, -0.00446885, 1.03925, -0.000707953, 0.241029, 0.000347783, -1.01093, 298.533, -38.3345, -118.064, -1.11167, -0.12754, 0.49271, -0.131914, 1.21538, 0.0169776, -0.491557, -0.0377233, -1.11883, 212.833, -77.4955, -184.498, -0.0989529, 0.166686, -1.273, 0.0131796, 1.27684, 0.166164, 1.28379, -0.000260259, -0.0998264, 78.1212, -24.6007, -39.6459, 1.64596, -0.187488, 0.697152, 0.150811, 1.78665, 0.124431, -0.705995, -0.0554548, 1.65192, 207.494, -77.7563, -174.851, 0.404763, 0.0367079, 1.36433, -0.0542334, 1.42238, -0.0221799, -1.36375, -0.0456699, 0.405818, 144.657, -75.8422, -114.219, 1.73933, 0.134114, 0.560763, -0.127798, 1.8275, -0.0406763, -0.562236, -0.000499211, 1.74402, 184.176, -34.0014, -3.9876, -0.0949841, 0.0273808, 1.89669, -0.486204, 1.83528, -0.0508427, -1.83352, -0.488088, -0.0847745, 109.568, -72.7488, -104.141, -1.41389, -0.032765, 0.629359, -0.630153, 0.0523789, -1.41295, 0.00861126, -1.54675, -0.0611795, 205.642, -60.5178, -124.275, 1.13794, 0.0260695, -0.493672, -0.0495143, 1.23874, -0.0487187, 0.491874, 0.064386, 1.1372, 182.345, -32.0154, -33.9741, 1.88295, 0.0114563, -0.0685066, -0.0213252, 1.86402, -0.27442, 0.0661032, 0.275009, 1.86288, 194.865, -78.0336, -177.819, -1.06775, -0.0826607, -1.27462, -0.0330596, 1.66255, -0.0801242, 1.27687, -0.0260776, -1.06795, 41.622, 0.456909, -1.11774, 0.359619, 0.137227, -1.20953, -0.0391083, 1.26186, 0.131536, 1.21666, 0, 0.361739, 118.545, -4.23724, 64.3559, -1.28498, -0.00672972, 1.18214, -0.00655358, 1.74603, 0.00281614, -1.18214, -0.0023645, -1.285, 119.188, -25.9487, -60.8589, 0.202095, 0.00471898, 1.6931, -0.00207803, 1.70512, -0.00450443, -1.6931, -0.0015295, 0.2021, 164.85, -75.9068, -157.37, 0.0553564, 0.0518693, 1.13487, 0.121321, 1.12945, -0.0575393, -1.12956, 0.123851, 0.0494367, 212.808, -30.4814, -73.6067, 0.745026, -0.00599455, -1.36523, 0.00472038, 1.55529, -0.00425308, 1.36524, -0.0021062, 0.745038, 124.117, -25.9049, -42.5628, -1.43106, 0.121261, -0.976386, 0.119049, 1.73209, 0.040629, 0.976658, -0.0334524, -1.43561, 244.964, -61.5351, -121.488, -0.148566, -0.396318, 1.67415, -0.880096, 1.46138, 0.267847, -1.47827, -0.830207, -0.327716, 281.462, -48.9336, -124.244, -0.837378, 0.0943889, -0.976248, 0.06172, 1.28618, 0.0714145, 0.978856, -0.000351342, -0.839649, 178.881, -33.6127, -3.32638, -1.48569, 0.029456, 0.039629, 0.0289659, 1.48611, -0.018684, -0.0399886, -0.0179015, -1.48586, 265.896, -73.9483, -170.792, 0.986222, 0.120837, 0.336054, -0.0727778, 1.03431, -0.158332, -0.349624, 0.125555, 0.980901, 207.801, -32.9262, -48.9949, 0.118584, 1.29201, -0.0808007, -1.17349, 0.141544, 0.541096, 0.546588, 0.0235802, 1.17923, 46.3514, -17.25, -48.6919, -0.230919, -0.0322258, -1.50455, 1.50386, 0.0515169, -0.231917, 0.0558181, -1.5213, 0.0240175, 206.753, -61.1285, -124.32, 0.534054, -0.101318, 1.36842, 0.0538064, 1.46883, 0.0877529, -1.37111, 0.0181775, 0.536449, 256.334, -72.0415, -127.394, 1.19414, 0.0438687, -0.434078, -0.0339022, 1.27041, 0.0351254, 0.43497, -0.0214171, 1.19443, 69.8538, -72.7537, -59.1517, 1.81746, 0.00281889, -0.229852, -0.00331177, 1.83193, -0.00371972, 0.229845, 0.00410584, 1.81746, 191.215, -25.9032, -94.5124, 0.484328, 0.0372153, -1.46881, -0.0116542, 1.5466, 0.0353434, 1.46923, 0, 0.484469, 58.2864, -1.01511, 39.1231, 1.10983, 0.177598, 1.47459, -0.0521904, 1.84432, -0.182848, -1.48433, 0.067942, 1.10898, 89.6952, -0.959625, -4.52884, -1.81325, 0.00285094, -0.380585, 0.00193715, 1.85276, 0.0046496, 0.380591, 0.00415252, -1.81325, 196.29, -25.9254, -88.0614, 1.13979, 0.18339, 0.862798, -0.142641, 1.42951, -0.115412, -0.870463, 0.00588065, 1.14866, 69.4968, -23.4957, -38.096, 0.22725, -0.127066, -1.73779, 0.106824, 1.75022, -0.114006, 1.73915, -0.0909005, 0.234075, 114.529, -72.1122, -100.821, 1.7178, -0.00506765, -0.945637, 0.0058236, 1.96088, 7.05433e-05, 0.945633, -0.00287022, 1.71781, 146.199, -25.8523, -47.2733, -0.340489, 0, 1.16035, 0, 1.20928, 0, -1.16035, 0, -0.340489, 23.8264, -0.453506, -55.1833, -0.0641656, -0.00446787, 1.08461, 0.00254233, 1.0865, 0.00462607, -1.08461, 0.00281107, -0.0641544, 136.702, -75.8883, -128.85, -1.06356, 0.0020351, 0.786141, 0.0033985, 1.32256, 0.00117405, -0.786136, 0.00296421, -1.06356, 189.697, -25.9157, -87.8919, 0.233579, 0.869998, 1.52721, 0.214438, 1.51502, -0.895852, -1.7445, 0.302718, 0.0943644, 166.066, -23.7801, 29.6211, 1.73415, 0.788342, 0.133422, -0.761381, 1.72549, -0.299248, -0.244097, 0.218557, 1.88128, 156.003, -17.8787, 23.346, 1.64033, 0, 0.678552, 0, 1.77513, 0, -0.678552, 0, 1.64033, 16.4471, -0.453506, 25.708, -1.23082, 0.170912, 0.0936572, 0.170419, 1.23438, -0.0129678, -0.0945507, 0, -1.24256, 143.346, -12.2931, 22.0986, 1.1684, 0.133317, 0.371066, -0.127063, 1.22591, -0.0403532, -0.373254, 0, 1.17529, 126.724, -5.12674, 24.1795, 0.84422, 0.0429983, -0.552262, -0.00390051, 1.00712, 0.0724502, 0.55392, -0.0584413, 0.842204, 123.064, -4.72203, -11.1957, 0.403019, 0.00450837, 1.57838, -0.00253119, 1.62902, -0.0040067, -1.57838, -0.00146124, 0.403025, 182.682, -75.9452, -144.761, -1.6998, 0.457585, 0.508702, -0.0045628, 1.35469, -1.23381, -0.684208, -1.14583, -1.25556, 149.666, -20.9652, -4.71201, -1.00012, -0.0240665, -0.663609, 0.00379631, 1.19948, -0.049222, 0.664034, -0.0431048, -0.9992, 130.195, -25.9799, -82.4416, 0.976645, 0, 1.50235, 0, 1.79189, 0, -1.50235, 0, 0.976645, 26.7388, -0.453506, -65.2534, -1.69249, 0.169944, -1.02544, 0.11077, 1.97779, 0.144948, 1.03351, 0.0663257, -1.69482, 224.682, -37.0311, -15.5628, -0.712341, 0.162809, -1.75691, 0.00203787, 1.89476, 0.174757, 1.76443, 0.0635412, -0.709504, 210.487, -36.2588, -2.22292, 1.33751, -0.353665, -0.131611, 0.375181, 1.2983, 0.324021, 0.0404945, -0.347378, 1.345, 277.002, -44.2983, -109.828, 1.01163, 0.090524, -0.667861, -0.03808, 1.21032, 0.106369, 0.672891, -0.0676012, 1.01009, 95.7473, -79.9184, -223.331, -0.642509, -0.0115256, 1.14775, 0.00374811, 1.31531, 0.0153064, -1.1478, 0.0107468, -0.64243, 90.1364, -25.7948, -46.8435, -1.09635, -0.126719, 1.12786, -0.126806, 1.572, 0.053356, -1.12785, -0.0535629, -1.10236, 264.487, -73.3512, -184.27, 0.501908, -0.00725527, -1.69146, -0.00231236, 1.76434, -0.00825407, 1.69147, 0.00456484, 0.501893, 117.497, -75.9152, -148.994, -0.822679, 0.500943, 0.338474, 0.530398, 0.872344, -0.00191155, -0.290149, 0.174304, -0.963194, 154.079, -21.3637, 51.9761, 1.11043, 0.600867, -0.724101, -0.599224, 1.31515, 0.172403, 0.725462, 0.166583, 1.25075, 162.099, -19.2834, 12.4473, 0.55045, 0, 1.67652, 0, 1.76457, 0, -1.67652, 0, 0.55045, 3.50477, -0.453506, 27.9801, 1.61052, -0.134362, -0.433286, 0.144476, 1.66682, 0.0201347, 0.430019, -0.0567937, 1.61599, 254.498, -74.1317, -183.547, -1.62728, 0.0391692, 0.0411151, 0.0391567, 1.6278, -0.00098934, -0.041127, 0, -1.62775, 49.0385, -0.792557, 39.9106, -0.978868, 0.00364515, 0.881243, 0.00191857, 1.31711, -0.00331693, -0.881249, -0.00118146, -0.978869, 181.141, -75.9446, -148.876, -1.28957, -0.0886645, 0.0186305, -0.0895145, 1.28792, -0.066681, -0.0139875, -0.0678071, -1.29089, 76.0454, -72.833, -62.6528, -0.361186, -0.0261466, -1.21183, 0.0742735, 1.26163, -0.0493583, 1.20984, -0.0852593, -0.358751, 130.648, -79.8964, -208.897, -1.36195, 0.22524, 0.889609, 0.188576, 1.62675, -0.123175, -0.898096, 0, -1.37495, 133.799, -10.9713, 25.5528, 0.410364, -1.30542, -0.716037, 1.4265, 0.131945, 0.576984, -0.426522, -0.814677, 1.24081, 293.074, -44.0122, -125.429, -0.575669, 0.0236907, 0.969147, 0.062399, 1.12571, 0.00954684, -0.967426, 0.0585109, -0.576077, 182.728, -31.6243, -41.6534, 0.757883, 0.120169, -1.07449, -0.109807, 1.31395, 0.0694986, 1.0756, 0.0494678, 0.764197, 188.844, -34.3948, 0.453465, -1.48568, 0.295371, -0.0585303, 0.300102, 1.47659, -0.165983, 0.024671, -0.174263, -1.50564, 56.0553, -6.10681, -15.0425, 1.38013, -0.0274798, -0.679443, 0.0262758, 1.53831, -0.00884317, 0.67949, -0.00367105, 1.38038, 48.1122, -72.9911, -100.564, -0.681639, 0.0282923, -0.859332, 0.0451598, 1.09629, 0.000272144, 0.858611, -0.0351997, -0.682226, 113.879, -75.1422, -117.153, 1.14047, 0, 1.51616, 0, 1.89721, 0, -1.51616, 0, 1.14047, 14.2034, -0.453506, -28.0929, -0.885509, 0.0474602, -1.61286, 0.0746058, 1.83901, 0.0131541, 1.61184, -0.0590473, -0.886683, 143.455, -75.8892, -116.647, -0.46578, 0.0531302, -1.80161, 0.0346854, 1.86071, 0.0459058, 1.80205, -0.0220817, -0.466547, 176.907, -53.3439, -112.772, -0.805709, -0.0102318, -1.14615, 0.0875081, 1.39635, -0.073981, 1.14285, -0.114132, -0.802371, 162.291, -78.2125, -185.637, 0.538051, 0.232393, -1.83418, -0.0586892, 1.91146, 0.224967, 1.84791, -0.0069576, 0.541198, 46.7528, -72.9453, -127.38, -0.390302, -0.0060935, -1.4295, -0.0053035, 1.48182, -0.00486849, 1.42951, 0.00383388, -0.390319, 131.024, -75.8666, -146.248, 1.17257, 0.0465754, 1.53999, -0.0282153, 1.93559, -0.0370562, -1.54043, 0, 1.17291, 48.5919, -0.781815, 56.4469, 0.853842, 0.469772, 1.41236, -0.174554, 1.64861, -0.442827, -1.47816, 0.0766757, 0.868122, 170.268, -31.2632, 47.5003, -0.427759, -0.0813874, 1.02758, -0.0489132, 1.1129, 0.0677832, -1.02964, -0.0190563, -0.430124, 213.484, -52.438, -116.283, -0.0443715, 0.334633, 1.15479, 0.0341145, 1.15546, -0.333517, -1.20181, 0.0204439, -0.0521025, 208.504, -77.0509, -198.246, -1.07383, 0.439318, 1.07641, 0.256668, 1.51873, -0.363791, -1.13392, -0.0722646, -1.10171, 257.427, -62.6078, -119.524, -0.687509, 0.00446041, -1.50513, 0.00132133, 1.65472, 0.00430016, 1.50514, 0.000584767, -0.68751, 186.195, -25.9135, -84.6602, 0.239849, 0.00351272, 1.82998, 0.000345971, 1.84563, -0.0035881, -1.82998, 0.000809328, 0.239847, 135.148, -75.8442, -156.126, -1.09613, 0.0217419, -0.0436484, 0.0222489, 1.09692, -0.0123404, 0.0433922, -0.0132133, -1.09627, 270.767, -74.0805, -173.749, 1.13375, 0.0807736, -0.0903744, -0.0907757, 1.12918, -0.129557, 0.0803224, 0.136018, 1.12921, 146.497, -31.1984, -37.0676, -1.2124, 0, 0.545262, 0, 1.32937, 0, -0.545262, 0, -1.2124, 26.7682, -0.453506, 50.5028, 1.60699, -0.0450822, 0.661214, 0.0928379, 1.73248, -0.107508, -0.656214, 0.134701, 1.60402, 330.703, -37.6634, -123.956, 0.511978, 0.0536738, -1.77238, -0.0501724, 1.84448, 0.0413642, 1.77248, 0.0367068, 0.51312, 150.451, -80.3504, -212.997, -0.0528164, -0.0885247, 1.03419, 0.0163383, 1.03532, 0.0894566, -1.03784, 0.0208038, -0.0512222, 248.436, -72.6601, -127.075, -1.24793, 0.0308038, -0.285388, 0.0300286, 1.28015, 0.00686721, 0.285471, 0, -1.2483, 64.6606, -1.1685, 36.7681, 0.656209, 0.0456952, -1.78203, -0.0157901, 1.89901, 0.0428803, 1.78254, 0, 0.656399, 54.3443, -0.920258, 38.8921, 0.542448, 0.197517, -1.03367, -0.222469, 1.15815, 0.104555, 1.02858, 0.146327, 0.567741, 50.9407, -71.9482, -164.192, 1.16861, 0.0284406, 1.56343, 0.0112776, 1.95159, -0.0439313, -1.56364, 0.035331, 1.16813, 299.286, -38.8605, -96.7806, -0.756846, 0.0381903, 0.806655, 0.0125223, 1.10597, -0.0406118, -0.807461, -0.0186448, -0.75672, 68.4249, -73.1314, -84.483, -1.46128, 0.217638, 0.957385, 0.158938, 1.74648, -0.154428, -0.968861, -0.0417483, -1.4693, 11.8898, -3.50793, -114.984, -1.3833, -0.00623238, 0.619291, -0.00408605, 1.5156, 0.00612561, -0.619309, 0.00392126, -1.3833, 126.731, -75.9199, -132.504, 1.28646, 0, -1.44588, 0, 1.93534, 0, 1.44588, 0, 1.28646, 26.8692, -0.453506, -41.0687, -0.293808, 0, -1.46756, 0, 1.49668, 0, 1.46756, 0, -0.293808, 31.1601, -0.453506, -34.2877, -0.0972544, 0.0686353, 1.28856, 0.024189, 1.29209, -0.0669974, -1.29016, 0.0190512, -0.0983899, 23.3793, -71.8712, -113.84, 1.35827, 0.0339419, -0.380494, -0.0326837, 1.41056, 0.0091557, 0.380604, 0, 1.35867, 59.4312, -1.04265, 15.7289, 1.80271, 0.216519, 0.122544, -0.229854, 1.79246, 0.214276, -0.0952091, -0.227742, 1.80298, 162.281, -53.7609, -122.535, -1.5799, -0.064007, 0.806005, -0.145705, 1.76278, -0.145619, -0.795306, -0.195801, -1.57447, 251.01, -31.5255, -26.5581, 0.878576, 0.0949069, 0.948986, -0.0647359, 1.29324, -0.0694025, -0.951521, -0.00035327, 0.880957, 185.493, -34.1002, -11.5604, 0.362657, -0.123645, 1.66638, -0.0603985, 1.70309, 0.139513, -1.66987, -0.0884528, 0.356853, 103.444, -72.5464, -93.6861, -1.4639, 0.568726, -1.22187, 0.428794, 1.90679, 0.373794, 1.27772, 0.0116928, -1.52537, 3.42007, -3.17122, -159.208, -1.85832, 0.0479793, 0.0810788, 0.0453062, 1.85913, -0.0617465, -0.0826023, -0.0596931, -1.85791, 99.8659, -75.6344, -143.745, 1.22249, 0.0462879, 0.929547, -0.0668369, 1.53496, 0.0114655, -0.928295, -0.0495587, 1.22332, 78.8173, -75.0843, -144.992, 0.640749, 0.0263322, 0.88725, -0.0154166, 1.09443, -0.0213474, -0.887507, 0, 0.640935, 79.3765, -1.52263, 22.073, -1.49062, 0.214602, 0.424614, 0.206391, 1.54992, -0.058792, -0.428665, 0, -1.50484, 138.067, -11.5622, 27.8293, 1.54322, 0.0896077, -1.15893, -0.197226, 1.91852, -0.114285, 1.14554, 0.209594, 1.54159, 161.443, -30.3713, -52.6704, -0.648212, 0.0387317, 1.47351, 0.0155961, 1.60978, -0.0354529, -1.47393, 0, -0.6484, 83.3763, -1.61887, 46.3623, 1.4303, 0.737672, 0.776503, -0.536026, 1.61459, -0.546499, -0.927251, 0.20451, 1.51369, 145.129, -15.3432, 42.5507, 0.913885, 0.0300596, 1.59295, -0.0322576, 1.83638, -0.0161468, -1.59291, -0.0199422, 0.914236, 93.7847, -25.8022, -47.5299, 0.509997, 0.0552738, 1.51751, -0.0432003, 1.60069, -0.043785, -1.5179, -0.0269851, 0.511112, 71.9205, -73.3062, -87.6891, 1.357, -0.159183, -0.374267, 0.242787, 1.36292, 0.300609, 0.326297, -0.352097, 1.33282, 228.394, -37.1175, -32.288, 1.09883, 0.0572091, 1.24022, -0.0588505, 1.65674, -0.0242811, -1.24014, -0.0279299, 1.10005, 89.0962, -74.2295, -107.276, 0.210187, -0.000894861, -1.11539, -0.000908851, 1.13502, -0.00108188, 1.11539, 0.00109348, 0.210186, 177.055, -25.8986, -67.2414, -1.219, 0.268887, 0.00666382, 0.268901, 1.21901, 0.00192224, -0.00609332, 0.00331254, -1.2483, 268.902, -36.752, -68.7913, -1.52462, -0.12792, -0.348841, -0.127584, 1.56396, -0.0158978, 0.348964, 0.012916, -1.52989, 253.135, -74.4106, -193.779, 1.0665, 0.000733519, 0.980616, -0.0173588, 1.44859, 0.0177954, -0.980462, -0.0248489, 1.06635, 11.0835, -0.335968, -9.83708, 1.53775, 0.179587, 0.601967, -0.16723, 1.65138, -0.0654636, -0.605516, 0, 1.54682, 123.579, -4.78473, 11.8783, -1.72527, 0.218011, -0.746337, 0.108093, 1.86608, 0.295224, 0.769976, 0.226523, -1.71375, 210.563, -34.9681, -34.8318, -1.34922, 0.00344053, 0.419991, 0.0202161, 1.41193, 0.0533776, -0.419519, 0.0569739, -1.34816, 321.938, -38.4305, -109.741, 1.00784, 0.0299331, 1.50048, -0.0526946, 1.80701, -0.000654409, -1.49985, -0.0433724, 1.00828, 64.7947, -6.64655, -21.2018, 0.92479, 0.0415295, -1.31795, 0.0184673, 1.60921, 0.0636657, 1.31847, -0.0516687, 0.92353, 127.104, -75.7059, -124.08, -0.679165, -0.0807806, -1.36601, 0.24656, 1.49282, -0.210867, 1.346, -0.314215, -0.650635, 239.22, -30.6232, -36.2991, -1.29909, -0.0791834, 1.05296, -0.079932, 1.67198, 0.0271176, -1.0529, -0.0292315, -1.30122, 67.0175, -19.8975, -29.7833, 1.07328, -0.0217521, 0.030274, 0.0209616, 1.07335, 0.0280793, -0.0308267, -0.0274715, 1.07313, 133.27, -15.3876, -12.7447, 0.865099, -0.00641025, 1.29678, 0.00691254, 1.55885, 0.00309428, -1.29678, 0.00403317, 0.865117, 89.9974, -75.9921, -163.047, 0.762701, 0.0261968, -1.48807, 0.0951289, 1.66781, 0.0781189, 1.48526, -0.120274, 0.759142, 87.3749, -78.6053, -189.236, 1.87179, 0.0568163, 0.545073, -0.0555606, 1.94954, -0.012416, -0.545202, -0.00361176, 1.87261, 318.639, -38.96, -155.755, -0.563369, 0.00310032, -1.52843, 0.000402006, 1.62895, 0.00315605, 1.52843, 0.000714313, -0.563369, 128.844, -75.8282, -164.593, 0.295996, -0.0445281, -1.19783, 0.142939, 1.22632, -0.0102655, 1.19011, -0.136214, 0.299151, 239.627, -31.6751, -24.1843, 1.10193, 0.0122044, -0.0849041, -0.013924, 1.10495, -0.021882, 0.0846391, 0.0228856, 1.10178, 86.7561, -77.5527, -169.392, 1.46353, 0.160867, -0.215024, -0.159158, 1.47925, 0.0233837, 0.216291, 0, 1.47216, 120.698, -4.47134, 12.3455, 0.940133, -0.101092, 0.820214, 0.0887397, 1.24749, 0.0520403, -0.821642, 0.0190623, 0.944119, 203.919, -75.5503, -173.164, 0.435258, 0.0264792, -1.55808, 0.00979747, 1.61764, 0.0302283, 1.55828, -0.0175669, 0.435014, 92.3855, -25.869, -55.7864, 1.70844, 0.180194, 0.766606, -0.135939, 1.87128, -0.136904, -0.775678, 0.0689352, 1.71245, 79.6603, -0.114838, -1.22961, 0.703289, 0.0691258, 0.768501, -0.0165217, 1.04094, -0.0785114, -0.771426, 0.0407263, 0.702303, 39.2077, -72.2289, -128.28, 0.89807, -0.00431567, -1.27482, 0.00399419, 1.55939, -0.00246524, 1.27482, -0.00184553, 0.898076, 154.366, -25.8455, -57.287, -1.33613, 0.062612, -1.22613, 0.066805, 1.8132, 0.0197924, 1.22591, -0.0305677, -1.33745, 63.9463, -73.1004, -91.814, 0.973875, -0.104771, 1.17223, 0.005083, 1.52189, 0.1318, -1.17689, -0.080125, 0.970587, 88.1995, -72.1053, -64.7241, -1.28316, 0.091565, -1.15127, 0.0511496, 1.72374, 0.0800864, 1.15377, 0.0254158, -1.28393, 15.8372, -71.4607, -114.507, 0.573736, -0.646547, -1.73045, 0.402001, 1.81227, -0.543831, 1.80302, -0.198325, 0.671896, 263.972, -46.7666, -115.985, -0.60281, 0.00188275, -1.38283, -0.0699114, 1.50653, 0.0325274, 1.38106, 0.0770849, -0.601935, 276.631, -74.3831, -154.704, 0.213815, 0.0452513, 1.86836, -0.00514496, 1.88056, -0.0449578, -1.8689, 0, 0.213877, 42.6695, -0.639297, 58.344, -0.982036, 0.124578, -0.589822, 0.106796, 1.14555, 0.0641428, 0.5933, 0, -0.987825, 119.758, -4.36917, 53.1771, -1.67068, -0.180053, -0.326216, -0.134472, 1.68897, -0.243533, 0.347496, -0.212066, -1.66261, 76.1225, -79.9264, -201.705, -1.13818, 0.00155726, -0.511202, -0.0247039, 1.24608, 0.0587985, 0.510607, 0.0637583, -1.13666, 281.242, -74.7469, -147.706, 1.82876, 0.0392189, -0.371303, -0.0576603, 1.86355, -0.0871529, 0.36889, 0.0968619, 1.8271, 167.412, -32.3238, -21.9945, -1.15919, 0.00497688, 1.37484, 0.00197485, 1.7983, -0.00484473, -1.37485, -0.00161309, -1.15919, 200.008, -75.9959, -147.334, 0.456541, -0.0082785, -1.03755, 0.0878485, 1.12978, 0.0296406, 1.03386, -0.0923438, 0.455653, 165.86, -77.6692, -179.311, 1.07028, 0.194582, 1.43387, -0.116392, 1.78927, -0.155933, -1.44233, 0, 1.07659, 118.878, -4.27342, 27.3037, -0.81659, 0.0265742, 0.743688, 0.0196473, 1.10449, -0.0178933, -0.743903, 0, -0.816826, 76.8031, -1.46069, 56.4943, -0.984585, 0.241195, -1.66702, 0.16277, 1.93552, 0.183907, 1.6765, -0.0462672, -0.996876, 0.66622, -1.97235, -109.255, -0.156198, 0.00238599, 1.90532, 0.097557, 1.90921, 0.00560685, -1.90282, 0.0976888, -0.156116, 282.251, -74.4175, -154.169, 1.18195, 0.00352191, 0.471645, -0.00369417, 1.27258, -0.000245073, -0.471643, -0.00114151, 1.18196, 161.562, -75.9123, -173.556, 1.32796, -0.0408124, -1.46025, 0.125874, 1.96929, 0.0594315, 1.45539, -0.133082, 1.32726, 118.981, -80.2547, -210.62, -0.273818, -0.00504132, 1.93138, -0.00353469, 1.95069, 0.0045906, -1.93138, -0.00285531, -0.273825, 141.356, -25.8761, -54.8445, 0.914106, 0, -1.48858, 0, 1.74684, 0, 1.48858, 0, 0.914106, 15.2951, -0.453506, 31.3896, -0.296815, -0.114248, -1.30306, -0.0516426, 1.33617, -0.105387, 1.30704, 0.026849, -0.300076, 208.916, -75.6606, -145.921, -0.647934, 0.00947153, -1.09898, -0.0602015, 1.27353, 0.0464694, 1.09737, 0.075458, -0.646335, 179.215, -53.582, -108.591, -1.19683, 0.0085026, -0.222015, 0.0278167, 1.21255, -0.103516, 0.22043, -0.10685, -1.19238, 105.875, -78.6219, -187.07, 1.22723, 0.116628, -0.349899, -0.125298, 1.27524, -0.0144075, 0.346889, 0.0480101, 1.23268, 187.74, -34.6058, 8.74028, 0.749436, -0.1031, 1.20851, -0.00858289, 1.42011, 0.126474, -1.21286, -0.0737554, 0.745848, 91.712, -74.2459, -110.009, -0.712656, 1.33931, 1.04171, 1.19054, 1.19975, -0.728018, -1.20893, 0.391979, -1.33102, 174.161, -27.0436, 19.4349, 0.943495, 0, -1.12784, 0, 1.47044, 0, 1.12784, 0, 0.943495, 22.9938, -0.453506, 55.2972, 0.997491, -0.00534564, -0.963636, 0.0051496, 1.38693, -0.0023633, 0.963637, -0.0018782, 0.997502, 120.445, -25.9417, -59.2988, 1.3855, -0.197986, -0.462027, 0.211505, 1.45858, 0.00922339, 0.455997, -0.0749729, 1.39955, 204.354, -76.4111, -196.49, -1.4145, 0.0385238, 0.479328, 0.0210795, 1.49274, -0.0577662, -0.480411, -0.0479291, -1.41385, 113.861, -75.1324, -116.862, 1.32501, 0.00449805, 1.28735, 0.0486815, 1.84591, -0.0565553, -1.28644, 0.074486, 1.32381, 311.151, -38.696, -102.509, 0.0412532, -0.0100901, 1.08976, -0.197107, 1.07248, 0.0173918, -1.07183, -0.197615, 0.0387449, 37.9175, -73.3954, -78.0605, -0.982644, 0.109009, -0.722329, 0.123785, 1.21806, 0.0154278, 0.719944, -0.0606429, -0.988552, 269.466, -74.1808, -149.809, 0.658914, 0.215889, -1.39144, -0.107688, 1.53947, 0.187863, 1.40396, 0.0167596, 0.667445, 244.878, -32.6154, -75.9062, -0.523854, -0.0897466, 1.12153, -0.0962524, 1.23618, 0.0539625, -1.12099, -0.0642029, -0.528739, 119.824, -70.9687, -86.2052, 0.0205989, -0.170318, 1.62368, -0.0484889, 1.62303, 0.170865, -1.63186, -0.0503761, 0.0154185, 231.454, -74.8551, -162.387, -0.698305, 0.0377723, -1.40605, 0.0168014, 1.56991, 0.0338299, 1.40646, 0, -0.698507, 46.9075, -0.741272, 64.9031, -1.68284, -0.151858, 0.568864, -0.132362, 1.77603, 0.0825522, -0.573714, 0.0356875, -1.68766, 209.181, -75.6709, -144.281, -1.36459, 0.0335474, 0.828137, 0.0716362, 1.59407, 0.0534658, -0.825715, 0.0828547, -1.36395, 184.068, -31.5269, -44.0704, -0.884242, 0.175385, 0.773675, 0.266958, 1.15677, 0.0428796, -0.747038, 0.205779, -0.900447, 325.921, -40.7063, -151.089, -1.37006, -0.0509947, -1.40944, -0.144729, 1.95969, 0.0697827, 1.40292, 0.152367, -1.36924, 330.026, -37.4742, -126.615, -1.15433, 0, -0.609039, 0, 1.30515, 0, 0.609039, 0, -1.15433, 31.0748, -0.453506, 65.0182, 0.406606, 0.0226015, -1.51394, 0.383478, 1.51493, 0.125609, 1.46474, -0.402892, 0.387378, 101.212, -73.7761, -108.472, 1.62522, -0.00509011, -0.861035, 0.0055169, 1.83922, -0.000459497, 0.861033, -0.00217671, 1.62523, 152.183, -25.8545, -59.7074, 1.62909, 0.121493, 0.291217, -0.0842931, 1.64335, -0.214046, -0.304077, 0.195347, 1.61953, 64.3908, -72.8516, -174.691, 1.91809, 0.00725836, 0.436366, -0.0110656, 1.96702, 0.0159214, -0.436286, -0.0179793, 1.91804, 107.301, -25.8648, -39.8428, 1.48418, 0, 0.917578, 0, 1.74492, 0, -0.917578, 0, 1.48418, 27.946, -0.453506, 25.3447, -1.02998, 0.229243, -1.52487, 0.165001, 1.83961, 0.165109, 1.53315, -0.0439745, -1.04219, 2.42573, -2.90138, -138.947, 0.86607, 0.0516627, 0.696881, 0.0358473, 1.10504, -0.126471, -0.697873, 0.120876, 0.858342, 193.281, -30.2312, -67.5618, -0.695999, 0.00274062, 0.89016, -0.000172624, 1.12995, -0.00361386, -0.890164, -0.00236195, -0.695995, 159.825, -25.8767, -73.8535, -0.610714, -0.00465814, 0.954047, -4.2947e-05, 1.13277, 0.00550326, -0.954059, 0.00293078, -0.610707, 109.484, -75.9013, -167.125, -0.678228, 0.0516287, 1.63983, 0.0523698, 1.7742, -0.0341992, -1.6398, 0.0353082, -0.67933, 135.058, -79.9611, -210.049, -0.704844, 0.0688563, -1.86561, 0.0557976, 1.99403, 0.0525154, 1.86604, -0.0336162, -0.70625, 60.3576, -72.9006, -87.3161, -0.436403, 0.00365452, 1.86988, 0.00165056, 1.92013, -0.00336752, -1.86989, 0.000842, -0.436405, 143.454, -75.8594, -158.004, 1.86906, 0.0397283, 0.282629, -0.0245551, 1.88776, -0.10297, -0.284349, 0.09812, 1.86664, 167.302, -31.2239, -43.112, 0.48265, 0.0299999, -1.34335, -0.0798746, 1.4255, 0.00313646, 1.34131, 0.0740931, 0.483571, 175.856, -30.9595, -51.6622, 1.47606, 0.0434269, 1.03843, -0.035518, 1.80474, -0.0249874, -1.03873, 0, 1.47649, 73.3642, -1.37793, 26.9711, -1.48757, 0.164831, -1.21289, 0.0868755, 1.91829, 0.154143, 1.22096, 0.0643302, -1.48871, 203.204, -35.8609, 4.57333, -0.922995, 0.0275642, -0.538551, 0.0410843, 1.06807, -0.0157459, 0.537689, -0.0342939, -0.923272, 90.2111, -75.2365, -139.114, -1.39151, -0.105963, -0.404689, -0.0947856, 1.44895, -0.0534738, 0.407452, -0.0248105, -1.39451, 197.006, -53.5312, -109.744, -0.0448153, 0.0494392, 1.24067, -0.0460263, 1.24056, -0.0510973, -1.24081, -0.0478029, -0.0429151, 59.9775, -73.968, -133.103, 0.995978, 0.0324712, -0.910714, -0.0239634, 1.34958, 0.021912, 0.910977, 0, 0.996266, 64.727, -1.17007, 51.6287, 0.0451483, 0.0375774, 1.52151, -0.169933, 1.51279, -0.0323194, -1.51246, -0.168849, 0.0490498, 133.258, -5.69745, -2.93804, 0.566619, 0.122103, -0.887337, -0.172881, 1.04515, 0.0334225, 0.878857, 0.12687, 0.578662, 211.462, -33.7041, -46.1099, 1.34189, 0.171166, -0.822585, -0.14593, 1.57395, 0.0894557, 0.827435, 0, 1.3498, 104.676, -2.72894, 7.90282, 1.41637, 0.0394189, 0.823108, -0.0340818, 1.63818, -0.0198062, -0.823346, 0, 1.41678, 60.4476, -1.06711, 5.37506, 1.0462, -0.0131993, 1.10237, 0.00318577, 1.51977, 0.0151736, -1.10245, -0.00813421, 1.04617, 227.429, -44.8754, -107.453, 0.786262, 0.359807, -0.989777, -0.271372, 1.2627, 0.243448, 1.01758, 0.0587273, 0.8297, 177.277, -33.2912, 48.1655, 0.504519, 0.0281102, -1.05364, -0.0121401, 1.16821, 0.0253535, 1.05395, 0, 0.504665, 44.0507, -0.672531, 11.1667, -1.05466, 0.127532, -0.512788, 0.114694, 1.17272, 0.0557654, 0.515812, 0, -1.06088, 125.348, -4.97702, 47.3982, -1.75492, 0.0271242, 0.677821, -0.149775, 1.81808, -0.460531, -0.661623, -0.483514, -1.69363, 130.143, -70.978, -96.3282, 0.982545, 0.123953, 0.272128, -0.120453, 1.01953, -0.0294818, -0.273695, -0.00371102, 0.989894, 57.0549, -74.2801, -149.979, 0.360593, 0.289736, -1.45609, 0.0368297, 1.49622, 0.306841, 1.48418, -0.107522, 0.346154, 259.273, -44.8387, -103.874, -1.14808, 0.0174152, 0.332377, 0.0227424, 1.19503, 0.0159411, -0.332055, 0.0216344, -1.1481, 279.453, -38.5267, -99.2494, -1.15308, -0.00710555, 1.28693, -0.00141199, 1.72794, 0.00827537, -1.28695, 0.00447064, -1.15308, 118.578, -75.8835, -159.522, -0.682862, 0.782446, 0.346519, 0.720285, 0.764904, -0.307748, -0.462046, 0.0360278, -0.991874, 14.1864, -68.3786, -189.798, -1.7184, 0.0436338, 0.57905, 0.0413493, 1.81334, -0.0139335, -0.579218, 0, -1.7189, 44.4213, -0.681442, 50.5586, -1.51618, -0.00684297, 0.923748, -0.00709474, 1.77541, 0.00150715, -0.923746, -0.00240429, -1.51619, 114.307, -25.9534, -50.5174, -0.88692, 0.0351069, -1.15863, 0.0213395, 1.45913, 0.0278769, 1.15897, 0, -0.887177, 84.1739, -1.63806, 24.4651, 1.50594, 0.00373185, 1.25568, -0.00231557, 1.96076, -0.00305027, -1.25568, 0.000859817, 1.50594, 181.934, -75.9488, -124.608, -1.31052, 0.618542, -0.380575, 0.536788, 1.35384, 0.351938, 0.489174, 0.171483, -1.40577, 146.812, -15.9748, 41.466, 1.81289, 0.362114, 0.205348, -0.357153, 1.82434, -0.0639923, -0.213861, 0.0229403, 1.84759, 261.408, -35.0655, -82.4785, 1.06738, -0.139271, -1.5775, 0.105116, 1.90441, -0.097008, 1.58015, -0.0326094, 1.07205, 203.364, -53.1365, -113.852, 1.92428, -0.0960049, 0.417358, 0.111642, 1.96721, -0.0622191, -0.41345, 0.0843689, 1.92566, 54.2268, -5.76776, -8.43371, -1.55934, 0.233023, 0.891392, 0.330511, 1.77715, 0.113599, -0.860024, 0.260466, -1.57255, 162.274, -33.8913, -29.8162, -1.275, 0.00376969, -1.51569, 0.00176201, 1.98064, 0.00344387, 1.5157, 0.000868535, -1.275, 177.12, -75.938, -127.968, -1.07838, 0.00302081, -0.168827, 0.0031359, 1.09151, -0.000500083, 0.168825, -0.000979097, -1.07838, 177.161, -75.9466, -163.359, -1.07234, 0.0920444, 0.649658, 0.155066, 1.24502, 0.07956, -0.637559, 0.147997, -1.07334, 69.2009, -74.033, -167.744, 1.81861, 0.0510859, -0.784307, -0.0217072, 1.9795, 0.0786016, 0.785669, -0.0635582, 1.81763, 130.51, -75.754, -122.842, -0.680374, 0.0446105, 1.63864, -0.397239, 1.71681, -0.211674, -1.59039, -0.4479, -0.648146, 186.085, -77.8778, -182.902, 1.7944, 0.232965, -0.0680606, -0.24029, 1.77671, -0.253658, 0.0341464, 0.260401, 1.79159, 158.775, -31.9915, -39.6482, -1.24305, 0.116555, 0.544882, 0.12502, 1.35646, -0.00495103, -0.543002, 0.0454893, -1.24849, 201.822, -35.862, 8.14962, -0.694609, 0.0264123, -1.6951, 0.445388, 1.77036, -0.154924, 1.63575, -0.470823, -0.677627, 137.357, -70.3185, -93.4436, 0.020245, 0.0387655, -1.1226, 0.018235, 1.12262, 0.0390952, 1.12312, -0.0189256, 0.0196009, 66.6606, -72.6528, -59.7051, 1.3217, 0.0283238, 0.263284, -0.0140713, 1.34585, -0.0741467, -0.264429, 0.0699535, 1.31993, 194.925, -31.0761, -57.1399, 1.75063, -0.102496, -0.825817, 0.261045, 1.89413, 0.318292, 0.790148, -0.398684, 1.7245, 229.267, -31.6362, -38.5532, 1.01399, 0.240358, -0.399034, -0.224772, 1.08968, 0.0851958, 0.408017, 0.00296108, 1.0386, 267.982, -36.5168, -80.6335, -1.60741, 0.200374, -0.0564616, 0.201553, 1.60794, -0.031678, 0.0520963, -0.0384367, -1.61954, 8.84551, -4.25642, -162.166, -1.44288, 0.0039943, 0.0331937, 0.00396346, 1.44326, -0.00138615, -0.0331974, -0.00129462, -1.44289, 172.499, -75.9237, -152.419, -1.67377, -0.00690237, -0.126342, -0.00720965, 1.67852, 0.00381098, 0.126325, 0.0043428, -1.67378, 117.687, -75.9001, -154.512, -1.72674, 0.0772583, -0.88442, 0.102794, 1.93862, -0.0313464, 0.881817, -0.0747013, -1.72818, 70.3803, -74.6582, -140.257, -1.42308, 0, 1.06509, 0, 1.77752, 0, -1.06509, 0, -1.42308, 18.46, -0.453506, -9.2379, -0.291108, 0.380582, 1.70066, 0.0689439, 1.72539, -0.374314, -1.74136, 0.00468855, -0.299124, 277.935, -38.7377, -71.2779, 1.69569, -0.00135683, 0.293904, 0.00162004, 1.72097, -0.00140191, -0.293902, 0.00165798, 1.69569, 158.375, -25.8919, -89.1694, 0.943287, 0.00129019, 0.42285, 0.020432, 1.03238, -0.0487293, -0.422358, 0.0528237, 0.942029, 286.317, -74.3876, -154.852, 0.341974, 0, -1.22283, 0, 1.26975, 0, 1.22283, 0, 0.341974, 30.6776, -0.453506, 30.4968, -0.437141, 0.150366, 0.892516, 0.00335298, 0.991424, -0.165387, -0.905087, -0.0689513, -0.431682, 76.685, -8.14285, -17.7591, -0.465113, 0.187963, 1.66465, 0.0505808, 1.7284, -0.181029, -1.67446, 0, -0.467856, 119.061, -4.29333, 56.3663, 1.77503, -0.119448, -0.631582, 0.154109, 1.87993, 0.0775735, 0.624031, -0.124496, 1.77735, 250.275, -72.6394, -149.21, 1.54529, -0.027617, 0.0466921, 0.0274929, 1.54599, 0.00452236, -0.0467653, -0.00368937, 1.54553, 46.7667, -73.026, -105.11, 0.283024, 0.356434, 1.16106, -0.0769829, 1.19503, -0.348099, -1.21209, 0.00732816, 0.293215, 2.80953, -2.66519, -212.032, -0.645619, -0.0689912, -0.768289, -0.00383494, 1.00215, -0.0867691, 0.771371, -0.0527617, -0.643471, 76.126, -72.7236, -60.6803, -0.488801, 0.318516, 1.35877, 0.111599, 1.44401, -0.298352, -1.39113, 0.00392395, -0.501364, 271.4, -37.2736, -79.6021, 0.450465, -0.100824, 1.39569, -0.0426266, 1.46455, 0.119557, -1.39867, -0.0771064, 0.445859, 93.5566, -71.9659, -69.0811, -1.04373, 0.122029, 0.1331, 0.136313, 1.04452, 0.111294, -0.118428, 0.126793, -1.04493, 219.343, -35.5679, -38.3409, -1.29042, 0.108899, -0.299369, 0.119893, 1.32327, -0.0354387, 0.295138, -0.0614095, -1.29452, 256.853, -72.7032, -141.463, -1.40969, 0.0695461, -1.03085, 0.0958202, 1.7451, -0.0133019, 1.02874, -0.0672443, -1.41135, 74.5105, -73.9333, -117.172, 1.565, 0.00541943, 1.17701, -0.00538699, 1.95821, -0.00185361, -1.17701, -0.00175653, 1.56501, 168.312, -75.9341, -176.827, 1.23287, 0.0385418, -0.844202, -0.00468372, 1.49344, 0.0613423, 0.845068, -0.0479515, 1.23195, 117.081, -75.3103, -119.814, -0.0547483, 0.915923, 0.894708, 0.116064, 0.895389, -0.909518, -1.27513, 0.0421738, -0.1212, 14.4809, -67.4822, -215.224, -0.192138, -0.00454895, -1.08941, -0.0036087, 1.10622, -0.00398268, 1.08941, 0.00286208, -0.192151, 128.565, -75.8524, -155.64, -0.626206, 0.61407, -0.892756, 0.14504, 1.06934, 0.633797, 1.07381, 0.213667, -0.606232, 163.24, -23.3917, 35.799, 1.47032, 0.043692, -0.841047, -0.0109067, 1.693, 0.0688836, 0.84211, -0.0543591, 1.46936, 94.2903, -75.5397, -145.278, -0.462885, 0.0683496, 1.92476, -0.0164837, 1.97936, -0.0742525, -1.9259, -0.0333688, -0.461975, 66.809, -72.8247, -69.5998, -1.55148, 0.0335023, 0.366044, 0.0515675, 1.59192, 0.0728674, -0.363938, 0.0827434, -1.55013, 186.845, -30.8227, -58.7434, -1.50567, 0.0520004, 0.0363037, 0.0513656, 1.5059, -0.026648, -0.0371964, -0.025387, -1.50633, 77.1155, -73.3306, -78.4968, -1.23941, 0.107858, -0.203214, 0.0995414, 1.25525, 0.0591351, 0.207415, 0.0420951, -1.24268, 219.672, -36.8867, -7.03388, -0.320046, 0.101922, -1.14286, -0.0109761, 1.18616, 0.108857, 1.14734, 0.0397781, -0.317754, 224.997, -37.3099, -8.05481, 0.63645, 0.158967, 1.61879, 0.00302999, 1.73818, -0.171883, -1.62657, 0.065439, 0.633084, 214.145, -36.1468, -14.4717, -1.28097, 0, -1.02128, 0, 1.63825, 0, 1.02128, 0, -1.28097, 21.5401, -0.453506, 23.1876, 1.17621, 0.152179, 0.581599, -0.0648636, 1.30258, -0.20965, -0.59767, 0.15812, 1.16734, 196.451, -31.5795, -49.1654, 1.39779, 0.040705, 0.952768, -0.0336346, 1.69162, -0.0229261, -0.953044, 0, 1.3982, 70.2403, -1.30276, 13.8247, 0.402276, -0.0319115, 1.53983, -0.04725, 1.59048, 0.0453051, -1.53943, -0.0571557, 0.400988, 126.464, -25.969, -80.0544, -1.40693, 0.258579, 1.22811, 0.194803, 1.86754, -0.170044, -1.23982, 0, -1.42035, 130.241, -10.4786, 30.2495, 0.00894611, -0.181547, 1.35153, -0.0608956, 1.35016, 0.181766, -1.36231, -0.0615447, 0.000750361, 121.899, -4.58858, -8.52156, -0.566836, 0.021879, -1.21055, 0.0224245, 1.33661, 0.0136572, 1.21054, -0.014515, -0.567093, 94.6033, -25.7895, -45.1196, -0.536313, 0.172212, 1.48998, 0.0583237, 1.58356, -0.162035, -1.49877, 0, -0.539475, 124.559, -4.89124, 26.064, -0.523649, 0.0408705, 1.87282, 0.108225, 1.94203, -0.0121208, -1.87014, 0.100941, -0.525102, 195.665, -30.8442, -61.9012, 1.21897, 0.135507, -0.258395, -0.132562, 1.24605, 0.0281003, 0.259919, 0, 1.22615, 112.491, -3.57883, 58.1649, 1.69128, 0.192226, 0.513811, -0.183925, 1.7676, -0.0558766, -0.51684, 0, 1.70125, 125.703, -5.01566, 41.9839, -1.2253, 0.00415373, -0.866757, 0.00416855, 1.50087, 0.00129968, 0.866757, -0.0013463, -1.2253, 134.716, -75.8409, -177.473, 1.08846, 0.078918, -0.294004, -0.0704824, 1.12726, 0.0416445, 0.29614, -0.0217711, 1.09053, 241.652, -61.2583, -119.158, 0.232303, 0.1232, 1.10881, -0.0252628, 1.13288, -0.120582, -1.11534, 0, 0.233673, 110.65, -3.37863, 3.53764, 1.50396, 0.0379928, 1.003, 0.0205083, 1.80529, -0.0991344, -1.00351, 0.0938338, 1.50117, 171.749, -32.0803, -28.4355, 0.795995, 0.175606, 0.987385, -0.110213, 1.26828, -0.136713, -0.996805, 0, 0.803588, 131.565, -10.662, 58.84, 1.33389, 0.0101801, 1.01194, 0.139678, 1.65638, -0.200779, -1.00231, 0.244374, 1.31874, 194.633, -77.6698, -180.275, 0.798759, 0, -0.773602, 0, 1.11197, 0, 0.773602, 0, 0.798759, 22.3825, -0.453506, 61.37, -0.665542, 0.144419, 1.14919, 0.0723773, 1.328, -0.124974, -1.15597, 0, -0.669466, 126.396, -5.09106, 11.5578, -0.412492, 0.00347958, -1.78108, 4.05882e-06, 1.82822, 0.00357074, 1.78108, 0.000801694, -0.412491, 175.74, -75.9353, -128.09, -1.00875, 0.0232997, -0.268782, 0.0338189, 1.04302, -0.0365083, 0.267662, -0.0439738, -1.00836, 68.6693, -5.66867, -6.8916, -1.03303, 0.0280836, 0.543119, 0.0248575, 1.1671, -0.0130689, -0.543277, 0, -1.03333, 57.8923, -1.00562, 39.3109, 0.848643, 0.131954, -0.867224, -0.0922894, 1.21337, 0.0943101, 0.872337, 0, 0.853646, 109.414, -3.24422, 6.3746, -0.529094, 0.0874654, -1.06748, -0.0877738, 1.18308, 0.140442, 1.06745, 0.140634, -0.517558, 67.5067, -72.8253, -176.85, -0.471098, 1.22938, -0.954782, 0.845704, 1.03963, 0.921346, 1.30682, -0.22961, -0.94044, 15.6571, -71.3589, -87.5738, -1.5338, -0.552837, 0.226014, -0.56926, 1.54165, -0.0922521, -0.180703, -0.164131, -1.62778, 257.7, -49.0098, -115.997, -0.942436, 0, -0.998757, 0, 1.37321, 0, 0.998757, 0, -0.942436, 20.3265, -0.453506, 53.7873, -1.61661, 0.521227, 0.663773, 0.486404, 1.74754, -0.187627, -0.689698, 0.0107162, -1.68816, 7.89796, -4.39914, -176.768, 0.313925, -0.0916331, -1.29539, 0.0898185, 1.33104, -0.0723884, 1.29552, -0.0700773, 0.318913, 95.6416, -73.3167, -97.4631, -0.900952, 0.21152, -1.72378, 0.097978, 1.94502, 0.18746, 1.73394, 0, -0.906264, 99.1017, -2.12279, 3.05035, -0.455504, 0.187941, -1.01306, -0.0523284, 1.102, 0.227968, 1.02902, 0.139233, -0.436848, 59.7822, -74.2015, -158.292, -0.592938, 0.00296557, 1.06393, 0.0443393, 1.21701, 0.0213185, -1.06301, 0.0491086, -0.592562, 309.958, -39.0234, -94.3251, 0.576177, 0, -1.82883, 0, 1.91745, 0, 1.82883, 0, 0.576177, 22.4526, -0.453506, -15.9511, -0.302843, 0.189682, 0.942411, 0.0210583, 0.989142, -0.19232, -0.96108, -0.0380969, -0.301175, 245.752, -32.6871, -60.0092, -0.306105, 0.112911, -0.992119, 0.0332888, 1.03827, 0.107892, 0.997968, 0, -0.30791, 113.695, -3.70978, 50.5781, -1.36211, -0.125623, -0.551453, -0.127538, 1.4692, -0.019668, 0.551013, 0.0295222, -1.36775, 231.33, -74.0389, -131.246, -0.460099, 0, 1.52626, 0, 1.59411, 0, -1.52626, 0, -0.460099, 29.924, -0.453506, -33.0669, 0.675979, 0.00354775, -1.0892, -0.000893772, 1.28192, 0.00362077, 1.08921, -0.00114989, 0.675978, 156.674, -75.889, -162.861, 1.12585, -0.00682969, -1.22102, 0.00147053, 1.66085, -0.00793391, 1.22104, 0.00429707, 1.12585, 133.371, -75.9095, -125.973, -0.333909, 0.22986, -0.98714, 0.0709055, 1.04208, 0.218669, 1.01107, 0.00283174, -0.341343, 269.978, -36.9509, -82.9017, -0.504762, -0.0393725, 1.07692, 0.0879294, 1.18373, 0.0844909, -1.07404, 0.115413, -0.499195, 163.493, -53.1382, -114.369, -1.35544, 0.266593, -0.313608, 0.271828, 1.39021, 0.00693437, 0.309081, -0.0535442, -1.38139, 237.96, -31.4299, -66.1631, -0.0981667, -0.0558764, 1.5452, -0.174217, 1.53886, 0.0445788, -1.53637, -0.170929, -0.103786, 239.525, -31.7407, -24.7415, -1.59227, -0.117591, 0.308554, -0.131333, 1.61971, -0.0604616, -0.30296, -0.0841219, -1.59546, 98.9691, -72.989, -95.9517, -1.45919, 0, -1.16646, 0, 1.86812, 0, 1.16646, 0, -1.45919, 23.7669, -0.453506, 52.7799, -0.706656, 0.0798993, 0.828246, 0.0516325, 1.08874, -0.060976, -0.830487, -0.000297408, -0.70854, 190.636, -34.4797, -19.131, 0.353151, 0.037892, -1.03911, 0.00533445, 1.09733, 0.0418278, 1.03979, -0.0184992, 0.352706, 59.161, -73.1855, -106.666, 0.112132, 0.0030744, 1.1052, -0.00130171, 1.11088, -0.00295811, -1.10521, -0.000996465, 0.112135, 182.949, -75.9729, -174.556, -0.567877, 0.0435106, 1.71693, 0.0136632, 1.80841, -0.0413097, -1.71743, 0, -0.568041, 67.4368, -1.23531, 60.3522, -0.51025, 0.0341049, 1.3223, 0.012278, 1.41734, -0.0318182, -1.32269, 0, -0.510398, 74.7546, -1.41139, 17.8044, -0.508144, -0.00373067, -1.35115, 0.000664514, 1.44355, -0.00423568, 1.35116, -0.00211298, -0.50814, 126.485, -25.9424, -73.6306, 1.57502, -0.116274, 0.302118, 0.0983276, 1.60157, 0.10378, -0.308426, -0.0831801, 1.57589, 101.698, -72.6327, -92.9065, 0.969757, -0.152185, 1.07924, 0.0680013, 1.45023, 0.143395, -1.0878, -0.0450128, 0.971096, 223.047, -75.9386, -168.872, 0.660249, 0.188502, -1.40286, -0.0751273, 1.55045, 0.172976, 1.41347, -0.00564356, 0.664486, 58.0389, -74.3888, -146.975, 1.67894, 0.19578, 0.175585, -0.171998, 1.67579, -0.223892, -0.198938, 0.203424, 1.67542, 216.903, -35.4633, -36.8543, -1.03509, -0.207845, -1.67024, 0.100607, 1.94966, -0.304966, 1.68011, -0.244799, -1.01075, 67.8798, -80.1444, -196.442, -1.28514, 0.00237864, 1.40732, 0.0735164, 1.90333, 0.063917, -1.4054, 0.0973878, -1.28355, 277.573, -74.4155, -154.093, 1.0749, 0.011728, -1.1576, -0.0764373, 1.57693, -0.0549998, 1.15514, 0.093435, 1.07355, 171.273, -53.4718, -109.454, -1.48007, 0.0233446, 0.656488, -0.148121, 1.56474, -0.389585, -0.639986, -0.416139, -1.42807, 122.763, -75.2288, -112.726, -0.753913, -0.115489, -1.46618, 0.0590956, 1.64389, -0.159873, 1.46953, -0.125356, -0.745763, 148.308, -39.8098, -102.031, -1.33739, 0, -0.740849, 0, 1.52887, 0, 0.740849, 0, -1.33739, 27.1118, -0.453506, 48.2048, 1.43478, 0.106072, 0.17468, -0.105342, 1.44538, -0.0124262, -0.175121, -0.000394829, 1.43864, 172.864, -33.173, -10.0502, 0.168606, -0.0632483, 1.28015, 0.0175081, 1.29117, 0.061487, -1.28159, 0.00931806, 0.169256, 241.839, -31.2886, -7.74373, -0.181255, 0.00868387, 1.22992, -0.106704, 1.2384, -0.0244689, -1.22531, -0.109128, -0.179806, 108.117, -78.9873, -191.038, 1.48002, 0.0164184, -0.141758, -0.0192757, 1.48648, -0.0290842, 0.141398, 0.0307876, 1.47983, 78.0514, -77.345, -174.775, -0.904053, 0.550733, -1.08578, 0.316643, 1.41222, 0.452665, 1.17557, 0.0431463, -0.956929, 53.9679, -79.5457, -55.6843, 0.772777, -0.0242112, -1.11344, 0.0164621, 1.35533, -0.0180456, 1.11358, -0.00323439, 0.772945, 53.9258, -72.8751, -95.4477, -0.838635, 0.671505, -1.22129, 0.20861, 1.46976, 0.664875, 1.37802, 0.186166, -0.843901, 158.734, -18.1831, 15.8986, -1.35348, -0.208846, -0.274079, -0.237535, 1.37026, 0.128892, 0.249626, 0.171521, -1.36342, 177.103, -38.5203, -97.8605, 0.36041, -0.123301, -1.75694, 0.117333, 1.79104, -0.101625, 1.75734, -0.0942954, 0.367111, 82.1812, -73.4888, -83.1311, 1.20925, 0.0926076, -0.27491, -0.0747893, 1.23818, 0.0881218, 0.280283, -0.0691572, 1.20959, 105.114, -79.5177, -203.615, 1.0724, 0.133845, -0.603948, -0.116623, 1.23077, 0.065679, 0.607509, 0, 1.07872, 125.958, -5.04333, 25.3545, 0.137551, 0.270922, -1.80972, -0.340684, 1.78688, 0.241609, 1.79789, 0.317871, 0.184239, 312.572, -38.8888, -149.928, 1.40629, 0.045032, 1.23507, -0.0338355, 1.87164, -0.029716, -1.23543, 0, 1.40669, 43.3393, -0.655426, 67.7399, -1.74142, 0.0378353, -0.782135, 0.0439342, 1.90886, -0.00547918, 0.781816, -0.0229939, -1.74182, 266.087, -73.939, -169.706, -1.55141, 0.0474921, -0.507701, 0.0350217, 1.63205, 0.0456495, 0.508713, 0.0324792, -1.55146, 154.405, -80.4338, -214.59, 1.07756, 0.0774349, 0.166409, -0.056027, 1.08251, -0.140926, -0.174783, 0.130396, 1.07111, 150.755, -30.8665, -42.3512, 1.01468, 0.00222249, -1.34698, 0.00150807, 1.68639, 0.00391854, 1.34698, -0.00356227, 1.01467, 147.936, -39.4564, -94.6551, 0.457769, -0.00793967, -0.986081, 0.0836645, 1.08354, 0.0301153, 0.982557, -0.0885644, 0.456847, 125.863, -78.5545, -186.557, -1.51459, 0, -1.15632, 0, 1.90553, 0, 1.15632, 0, -1.51459, 26.224, -0.453506, 50.1107, -1.56567, 0, -0.0811984, 0, 1.56778, 0, 0.0811984, 0, -1.56567, 20.7054, -0.453506, 18.8285, -0.257149, 0.040896, -1.38193, -0.0200279, 1.40537, 0.0453165, 1.38239, 0.0279682, -0.256407, 145.501, -80.1908, -213.78, -1.27867, -0.115876, -0.936153, -0.0774128, 1.5845, -0.0903919, 0.940115, -0.0271316, -1.28072, 247.041, -49.8747, -109.902, 0.312509, -0.072053, 1.09268, -0.0525786, 1.134, 0.0898158, -1.09379, -0.0750983, 0.307874, 248.774, -73.3511, -158.517, 0.574699, 0.187835, -1.62882, -0.0624982, 1.72723, 0.177133, 1.63842, 0, 0.578087, 110.986, -3.41519, 53.3725, 1.13003, 0.133293, 0.209656, -0.104668, 1.14093, -0.161225, -0.225316, 0.138498, 1.12638, 220.55, -36.4382, -32.3334, 0.561525, -0.00577483, -1.28718, -0.00102125, 1.40433, -0.0067459, 1.2872, 0.00363338, 0.561514, 116.372, -75.9046, -154.889, -1.3709, 0, -0.812522, 0, 1.5936, 0, 0.812522, 0, -1.3709, 29.1183, -0.453506, -41.6019, 0.925015, 0.184924, 0.582104, -0.0812748, 1.08431, -0.215313, -0.60534, 0.136998, 0.918417, 50.1798, -73.3604, -151.988, -1.56021, -0.00724797, -0.820002, -0.00853738, 1.76257, 0.000664751, 0.81999, 0.00456024, -1.56023, 114.952, -75.9222, -150.354, -1.53879, -0.23416, -1.17094, -0.15176, 1.93282, -0.187081, 1.18444, -0.0565649, -1.54522, 186.165, -37.3162, -101.027, -1.12281, 0.0111849, -0.930808, -0.0123783, 1.45809, 0.0324525, 0.930793, 0.0328829, -1.12239, 220.761, -30.9958, -61.1829, -0.710861, 0.0517402, -1.63013, -0.0117707, 1.77803, 0.0615675, 1.63091, 0.0353844, -0.710077, 128.765, -79.8419, -206.839, 1.18262, -0.0121408, -0.290459, 0.0142736, 1.21772, 0.00721674, 0.290362, -0.0104124, 1.18266, 13.3296, -0.254089, -4.29436, 1.64904, -0.0076548, 0.863648, 0.00901557, 1.8615, -0.00071509, -0.863635, 0.00481621, 1.64906, 116.08, -75.8634, -171.219, -1.50492, -0.0329487, -0.974326, -0.0360848, 1.79272, -0.00488865, 0.974215, 0.0155047, -1.50527, 110.006, -5.08405, -4.61547, 0.173782, 0, -1.58418, 0, 1.59368, 0, 1.58418, 0, 0.173782, 18.6703, -0.453506, -60.0812, 0.907188, 0.195508, 1.08204, -0.125609, 1.41202, -0.149819, -1.09237, 0, 0.915843, 141.527, -12.0413, 14.0265, -0.368233, 0.0403503, -1.58143, 0.184891, 1.61368, -0.00187845, 1.5711, -0.180444, -0.370432, 128.63, -5.63245, -3.38813, -1.25687, 0, -0.97681, 0, 1.59181, 0, 0.97681, 0, -1.25687, 7.43242, -0.453506, -34.4369, -1.46372, 0, 0.644064, 0, 1.59915, 0, -0.644064, 0, -1.46372, 21.1937, -0.453506, 51.9898, -1.08647, -0.0664464, -1.48649, 0.125241, 1.82996, -0.173337, 1.48269, -0.203263, -1.07461, 255.588, -31.2474, -25.5516, 0.00135236, 0.00892021, 1.27703, -0.11211, 1.27211, -0.00876706, -1.27213, -0.112098, 0.00213019, 97.7582, -77.6734, -176.952, 1.23253, -0.108518, -0.303755, 0.0992196, 1.26915, -0.0508138, 0.306918, 0.0255024, 1.23626, 226.12, -74.5499, -127.991, 1.62005, 0.601069, 0.170096, -0.582118, 1.62416, -0.195008, -0.226616, 0.124924, 1.71692, 42.7432, -74.3333, -75.5636, -1.44127, 0.00277194, -0.209511, 0.00265124, 1.45642, 0.00103077, 0.209513, 0.000638655, -1.44127, 146.759, -75.879, -128.455, 0.511413, -0.0398433, 1.61536, 0.0423555, 1.69409, 0.0283756, -1.6153, 0.0318068, 0.512177, 80.74, -79.7278, -221.184, 0.963858, 0.137705, -1.15814, -0.131778, 1.50569, 0.0693564, 1.15883, 0.0566862, 0.971172, 201.81, -35.4537, -2.91747, 1.10161, -0.084716, 0.552224, 0.0465265, 1.23057, 0.0959661, -0.556743, -0.0647874, 1.10069, 93.6125, -73.7244, -102.554, 1.0656, 0.162104, 0.801425, -0.132491, 1.33333, -0.0935277, -0.80685, -0.00485324, 1.0738, 36.0281, -71.7057, -145.057, -1.66557, -0.134991, 0.182974, -0.140356, 1.67462, -0.0421695, -0.178891, -0.0570593, -1.6705, 266.555, -73.2753, -186.939, 0.0310465, 0.048279, 1.21195, -0.0479382, 1.21145, -0.047031, -1.21197, -0.0466811, 0.0329064, 59.2657, -73.7345, -127.78, 0.947195, 0.037559, 1.10592, -0.0599222, 1.45536, 0.00189545, -1.10494, -0.0467288, 0.947937, 98.1914, -75.6547, -145.726, 0.745145, 0.277696, 1.46232, 0.0608218, 1.62828, -0.340204, -1.48721, 0.205727, 0.718761, 52.2964, -71.6559, -168.335, 1.16845, 0.0049677, 1.36261, -0.00445601, 1.79499, -0.00272296, -1.36261, -0.00161012, 1.16846, 144.677, -75.8655, -173.912, -1.71278, 0.00428044, -0.396327, -0.0118127, 1.7566, 0.0700221, 0.396174, 0.0708823, -1.71135, 286.42, -38.4822, -106.315, -1.83762, 0.213238, -0.0610393, 0.204163, 1.82523, 0.229954, 0.0866828, 0.221564, -1.8356, 209.508, -31.2162, -64.724, 0.642683, -0.268798, -1.17885, 0.357237, 1.31765, -0.105688, 1.15513, -0.257945, 0.688567, 254.803, -29.3432, -8.17777, -0.358598, 0.0158388, 1.02619, 0.0238009, 1.08686, -0.00845817, -1.02603, 0.0196762, -0.358848, 286.362, -38.5955, -101.01, -0.897633, 0.512793, 0.153309, 0.53015, 0.892979, 0.117192, -0.0734933, 0.178427, -1.02712, 149.698, -19.0132, 52.8031, 0.760353, -0.00523408, -1.02077, 0.000485658, 1.27283, -0.00616478, 1.02078, 0.00329315, 0.760346, 102.971, -75.9235, -168.896, 0.807603, 0.0257097, -0.699543, -0.0194331, 1.06845, 0.0168329, 0.699745, 0, 0.807837, 35.9685, -0.478043, 48.4598, 0.695365, 0.224002, 0.778731, -0.00732793, 1.02786, -0.289119, -0.810275, 0.182939, 0.67091, 38.9719, -6.9111, -28.3326, 0.720608, 0.421729, -1.08314, 0.822791, 0.715096, 0.825824, 0.821019, -1.08679, 0.123069, 161.709, -20.7761, 4.07269, 1.99175, 0.00379454, -0.0882006, -0.00382951, 1.9937, -0.000705538, 0.0881991, 0.000874261, 1.99175, 150.454, -75.8851, -130.861, -0.441925, 0.0153997, -0.960074, -0.0109418, 1.05673, 0.0219866, 0.960135, 0.0191307, -0.441646, 293.491, -38.782, -96.4529, 1.6104, 0.19419, -0.77148, -0.175131, 1.78566, 0.083898, 0.776028, 0, 1.6199, 128.07, -5.27303, 35.0765, 0.423032, -0.11546, -1.52131, 0.0570432, 1.5788, -0.103961, 1.52462, -0.0270341, 0.426004, 199.222, -53.3753, -110.108, 0.418961, 0.0375295, -1.84664, 0.0139442, 1.89343, 0.0416441, 1.84697, -0.0228081, 0.418572, 292.91, -74.3632, -160.781, 1.69711, -0.0562181, -0.0610353, 0.0499905, 1.69019, -0.166787, 0.0662324, 0.164792, 1.68983, 157.012, -53.3201, -114.714, 0.957638, 0.00349426, -0.822832, -0.00191221, 1.26259, 0.00313623, 0.822838, -0.00113255, 0.957639, 186.61, -75.9574, -146.14, -0.828022, -0.0268977, 1.25761, -0.0177931, 1.50572, 0.0204891, -1.25777, -0.00359328, -0.828205, 52.9043, -72.8837, -91.4201, -0.834097, 0.00985173, -0.809343, -0.10027, 1.15196, 0.117359, 0.803168, 0.154046, -0.825858, 302.986, -39.5182, -88.2818, 1.54596, 0, 0.647158, 0, 1.67595, 0, -0.647158, 0, 1.54596, -0.227611, -0.453506, 40.0096, -0.0176166, 0.106302, 1.16301, 0.0455454, 1.16232, -0.105549, -1.16697, 0.0437592, -0.0216762, 223.543, -36.5817, -25.7477, -0.704576, 0.114832, 1.73623, 0.223551, 1.86362, -0.0325386, -1.72561, 0.194544, -0.71313, 145.59, -30.6474, -41.3717, 1.70543, 0.138202, -0.994944, -0.100091, 1.97407, 0.102641, 0.999498, -0.0381259, 1.70794, 246.511, -61.6122, -119.87, -0.427552, 0.00287416, 1.1052, -0.00127322, 1.18501, -0.00357428, -1.1052, -0.00247705, -0.427547, 154.157, -25.8797, -81.8756, 0.55068, -0.0134496, 1.34528, -0.238777, 1.42956, 0.112034, -1.32399, -0.263411, 0.539331, 23.6669, -77.4884, -99.5463, 0.992926, -0.193436, 1.55411, 0.0556175, 1.84333, 0.193902, -1.56511, -0.0572141, 0.992835, 205.329, -78.0993, -178.583, 0.370074, 0.401864, 1.7839, -0.0766655, 1.82187, -0.394515, -1.82699, 0.00495075, 0.3779, 261.984, -35.1736, -88.057, 1.82235, 0.00516223, -0.397862, -0.00468654, 1.86528, 0.00273577, 0.397868, -0.00167317, 1.82236, 196.202, -75.9786, -139.913, -1.41812, 0.137897, 0.753219, 0.147055, 1.60484, -0.016943, -0.751485, 0.0538187, -1.42471, 231.457, -37.7852, -10.4347, 0.86888, -0.14162, -1.03349, 0.12333, 1.34956, -0.0812451, 1.03583, -0.0418881, 0.876589, 211.411, -77.2662, -172.305, 1.37175, 0.131388, 1.10174, -0.163891, 1.75667, -0.00543559, -1.09738, -0.0981174, 1.37801, 108.089, -79.6532, -202.058, 1.56169, 0.0578481, 0.606928, -0.0641481, 1.67524, 0.00538754, -0.606294, -0.0282419, 1.56275, 62.3729, -73.1994, -100.91, 1.71416, 0.246535, -0.351965, -0.233528, 1.74949, 0.0880957, 0.360727, -0.038941, 1.72956, 71.499, -7.76067, -24.1987, -1.22379, -0.12714, -0.982076, -0.114202, 1.56894, -0.0608058, 0.983665, 0.0239741, -1.22888, 249.35, -72.4707, -133.767, 1.45712, 0.00284002, 0.321587, -0.00263226, 1.49218, -0.00125103, -0.321589, 0.000654339, 1.45712, 170.918, -75.9238, -132.857, 0.407201, -0.00620837, 1.45381, 0.00543589, 1.50976, 0.00492473, -1.45382, 0.00390615, 0.407219, 105.764, -75.9471, -155.364, -0.784597, -0.132952, -0.767963, -0.0723428, 1.09742, -0.116078, 0.776021, -0.0321165, -0.78727, 191.755, -36.6275, -100.638, -1.59524, -0.136736, 0.116544, -0.133995, 1.59917, 0.0421263, -0.119685, 0.0321338, -1.60054, 224.501, -74.2265, -150.971, -1.38745, 0.0383747, 0.786332, 0.0333857, 1.59478, -0.0189212, -0.786559, 0, -1.38785, 44.1132, -0.674057, 34.2143, -1.74663, 0, 0.097478, 0, 1.74934, 0, -0.097478, 0, -1.74663, 25.9668, -0.453506, 12.0918, -1.0618, 0.00308251, 0.336379, 0.00263683, 1.11381, -0.00188339, -0.336383, -0.000999093, -1.0618, 165.45, -75.9158, -165.395, 1.12312, -0.00805201, -0.19131, 0.00507048, 1.13917, -0.018179, 0.191413, 0.0170691, 1.123, 204.062, -25.9, -95.6478, -0.741305, 0.42297, -0.56682, 0.255138, 0.92578, 0.357154, 0.659617, 0.117263, -0.775163, 145.572, -17.1483, 55.205, 1.31598, 0.0333901, 0.890087, 0.0185913, 1.58659, -0.0870053, -0.890519, 0.0824662, 1.31353, 165.376, -31.1141, -44.4434, -1.28086, 0.0340357, -0.99097, -0.0245663, 1.61727, 0.0872991, 0.99125, 0.0840607, -1.27833, 207.225, -30.7393, -68.5997, -1.34081, 0.020477, 0.421037, 0.0271551, 1.40513, 0.0181384, -0.420659, 0.025438, -1.34084, 278.958, -38.4993, -100.369, -0.458444, 0.0244924, -0.908772, 0.0110314, 1.01786, 0.0218675, 0.909035, 0, -0.458577, 72.6067, -1.35971, 13.7513, 1.07132, 0.0119571, -0.157217, -0.0150836, 1.08257, -0.0204499, 0.156948, 0.0224219, 1.07119, 98.53, -77.6873, -169.175, -0.908596, -0.139048, 1.55431, -0.106865, 1.7999, 0.0985479, -1.55686, -0.0423986, -0.913876, 209.919, -35.1336, -98.9501, -1.53231, 0.225583, 0.553539, 0.212164, 1.62923, -0.0766429, -0.55882, 0, -1.54693, 141.267, -12.0053, 5.08409, 1.49841, 0.194007, -0.204356, -0.193074, 1.51227, 0.0200015, 0.205238, 0.0062211, 1.51079, 73.1268, -23.9587, -38.7497, 1.6192, 0.0378755, 1.01499, -0.0443173, 1.91089, -0.000607941, -1.01473, -0.0230183, 1.61965, 271.823, -74.0601, -170.318, 0.2267, 0.0106523, 1.05, 0.00394886, 1.07418, -0.0117502, -1.05005, 0.00633937, 0.226646, 256.366, -44.6733, -104.675, -0.194183, 0, -1.35817, 0, 1.37198, 0, 1.35817, 0, -0.194183, 17.5626, -0.453506, 11.4327, 1.02279, -0.00289037, -0.452473, 0.00330557, 1.1184, 0.000327744, 0.45247, -0.00163706, 1.02279, 124.26, -25.9383, -66.9187, 1.61306, 0.169115, 0.698853, -0.13199, 1.75699, -0.120518, -0.706806, 0.0578466, 1.61741, 254.59, -34.1112, -61.5638, 1.98562, -0.0972634, 0.00287165, 0.0972815, 1.98557, -0.0142058, -0.00217311, 0.0143293, 1.98795, 247.369, -30.9351, -19.1914, 0.155873, 0.0868364, 1.04475, -0.0613954, 1.05518, -0.0785431, -1.04655, -0.048968, 0.160213, 265.205, -73.4781, -143.349, -0.450183, 0.546602, -1.11876, 0.0480818, 1.19638, 0.565178, 1.24422, 0.151538, -0.42663, 140.043, -14.887, 57.2963, -1.37309, 0.0548683, 0.114082, 0.0502432, 1.37679, -0.0574517, -0.116193, -0.0530523, -1.37298, 55.3773, -73.3924, -122.923, 1.0889, 0.556729, -1.51608, -0.334468, 1.86657, 0.445208, 1.58006, 0.0114462, 1.13905, 6.82193, -3.88625, -208.067, -1.49258, 0.00392438, 0.608344, 0.0281591, 1.61049, 0.0586998, -0.607705, 0.0649862, -1.49143, 311.557, -39.0145, -94.6425, -0.489436, 0, -1.05178, 0, 1.16008, 0, 1.05178, 0, -0.489436, 31.7697, -0.453506, 28.2288, -1.56045, 0.040999, -0.68416, 0.0375485, 1.70384, 0.0164627, 0.684359, 0, -1.5609, 34.996, -0.454636, 21.518, -1.57003, 0.717866, -0.20834, 0.677244, 1.57124, 0.310293, 0.316353, 0.199019, -1.69824, 155.913, -19.7306, 38.2912, 0.205222, 0.00379429, -1.98298, -0.00126015, 1.99357, 0.00368414, 1.98298, 0.000874203, 0.205224, 131.219, -75.8287, -173.709, -0.555574, 0.0274185, 0.994843, 0.0133686, 1.13946, -0.0239386, -0.995131, 0, -0.555734, 70.1732, -1.30115, 6.29994, -1.39441, 0.0833764, 0.720958, 0.0846986, 1.56959, -0.0177022, -0.720804, 0.0231429, -1.39679, 22.4207, -71.9187, -107.164, 1.92399, 0.247137, 0.483286, -0.251261, 1.98319, -0.0138566, -0.481155, -0.0474069, 1.93975, 1.36696, -2.39793, -123.406, -0.157505, 0.221882, 1.12834, -0.0655519, 1.13529, -0.232399, -1.14808, -0.0952617, -0.141528, 61.2692, -22.196, -35.9036, -0.376196, -0.0120587, -1.60774, 0.128238, 1.64568, -0.0423499, 1.60266, -0.134511, -0.373999, 133.183, -78.5866, -187.605, 0.665967, -0.0348322, -1.83264, 0.0162707, 1.94989, -0.031148, 1.8329, -0.00465325, 0.666149, 51.4779, -72.9374, -103.233, 0.034209, 0.0555901, -1.60972, 0.0259686, 1.60985, 0.0561466, 1.61047, -0.0271395, 0.0332877, 51.0851, -73.024, -113.627, 0.208888, -0.133565, -1.61962, 0.00366431, 1.63298, -0.134195, 1.62512, 0.0134861, 0.208484, 219.492, -77.0993, -201.417, -1.15596, 0.0111347, -1.11752, -0.0209153, 1.60728, 0.0376492, 1.11738, 0.0416045, -1.1554, 117.889, -1.47661, 4.06192, -1.06071, -0.00308246, 0.545435, -0.00353964, 1.19273, -0.000143002, -0.545432, -0.00174585, -1.06071, 124.432, -25.9491, -74.5367, -1.12702, 0.186316, -1.29037, 0.122563, 1.71326, 0.140327, 1.29798, 0, -1.13367, 125.399, -4.98257, 10.9266, 1.72776, 0.0601998, 0.234436, -0.0635987, 1.74335, 0.0210474, -0.233537, -0.02939, 1.72868, 59.4407, -72.8311, -85.0738, 0.780314, 0.0471412, 0.676367, 0.0383929, 1.0265, -0.115837, -0.67692, 0.112561, 0.773106, 215.946, -30.5011, -74.7412, -0.673703, 0.0361788, -1.27147, 0.337463, 1.39232, -0.139191, 1.2264, -0.363244, -0.660159, 134.653, -79.0199, -192.402, 1.14922, 0.00427287, -0.142335, -0.00293935, 1.15795, 0.0110291, 0.142368, -0.0105841, 1.14917, 117.943, -25.8707, -36.1858, 0.835798, 0.192651, -1.08229, -0.0933988, 1.36711, 0.171222, 1.09533, -0.0304298, 0.840449, 113.14, -13.4398, -15.7153, -1.56044, 0.0376252, 0.0998715, 0.0375484, 1.56363, -0.00240318, -0.0999004, 0, -1.56089, 54.6695, -0.92807, 33.6765, -1.65161, 0.12078, -0.405503, 0.0678372, 1.68845, 0.22661, 0.417634, 0.203386, -1.64044, 142.916, -32.4304, -24.7137, 1.17136, -0.123502, -0.952902, 0.0879061, 1.50995, -0.0876404, 0.956843, 0.01247, 1.17459, 237.838, -75.529, -209.861, -0.465488, 1.42509, 0.169982, 1.05799, 0.461479, -0.971668, -0.969754, -0.180582, -1.14167, 47.1598, -12.488, -24.7408, 1.03894, 0.518104, -1.49456, -0.3676, 1.81823, 0.37477, 1.53851, 0.0845644, 1.0988, 180.012, -32.7423, 19.605, -1.71474, -0.138151, 0.0159048, -0.138608, 1.71382, -0.0573013, -0.0112428, -0.0583952, -1.71934, 224.85, -76.5277, -183.725, 0.535167, 0.122694, 1.58327, 0.148379, 1.65959, -0.178762, -1.58107, 0.197277, 0.519136, 77.499, -74.0934, -172.397, 1.77639, -0.0354084, 0.745873, 0.0390977, 1.92655, -0.00165796, -0.745689, 0.0166621, 1.77674, 85.9064, -5.487, -9.23233, -0.404237, 0.00149087, 1.12404, 0.0579427, 1.19296, 0.0192555, -1.12255, 0.0610403, -0.403781, 289.921, -74.8192, -146.506, -1.96288, 0.228223, -0.139519, 0.209064, 1.95349, 0.254186, 0.166863, 0.237134, -1.95969, 192.855, -31.6749, -44.9184, 0.784456, -0.0287756, -1.35504, 0.00269574, 1.56567, -0.0316879, 1.35534, 0.0135409, 0.784344, 92.1295, -5.38988, -7.23974, 0.66587, 0.0290382, -1.00644, -0.0160226, 1.20677, 0.0242176, 1.00673, 0, 0.666063, 52.8532, -0.884369, 30.2639, -0.181619, 0.247775, 1.90119, 0.301324, 1.88965, -0.217486, -1.89344, 0.276955, -0.216973, 145.825, -34.6132, -10.1746, 1.37202, 0.0271981, 1.06369, -0.0979579, 1.73156, 0.0820776, -1.05952, -0.124871, 1.36984, 103.775, -79.3207, -195.584, -1.30865, 0.197673, -1.26153, 0.142315, 1.8177, 0.13719, 1.26896, 0, -1.31637, 127.62, -5.22412, 42.0914, 1.09267, 0.171894, -0.589351, -0.15129, 1.24147, 0.0816015, 0.594974, 0, 1.10309, 135.931, -11.2665, 6.20912, 1.57911, 0.0332882, -0.122872, -0.0395225, 1.58175, -0.0794059, 0.121011, 0.0822145, 1.57746, 166.681, -31.8976, -29.8992, 0.465436, 0.139388, -1.19425, -0.0506159, 1.28174, 0.129874, 1.20129, 0, 0.468181, 120.723, -4.47411, 23.9382, -1.02234, -0.00772148, -1.47921, 0.580856, 1.65159, -0.410075, 1.36042, -0.710982, -0.936529, 321.575, -40.0117, -139.593, -0.599224, 0.116053, 0.883039, 0.0651653, 1.06716, -0.09603, -0.888246, 0, -0.602757, 103.552, -2.60674, 36.7033, -0.271077, -0.00460584, -1.13436, -0.00476908, 1.16629, -0.00359584, 1.13435, 0.00380268, -0.271092, 208.309, -25.9166, -87.0384, 0.250588, 0.0663401, -1.22362, -0.0313734, 1.24888, 0.0612845, 1.22501, 0.0184141, 0.251872, 34.1909, -72.3887, -117.692, -1.67693, 0.149916, 0.0310794, 0.148153, 1.67515, -0.0864922, -0.038618, -0.0833996, -1.6814, 281.843, -74.5559, -135.094, 0.645519, 0, 1.00311, 0, 1.19286, 0, -1.00311, 0, 0.645519, 10.9364, -0.453506, -45.2842, -1.29385, 0.00246371, 0.0396916, 0.00247995, 1.29446, 0.000491827, -0.0396906, 0.000567637, -1.29386, 167.258, -75.9137, -139.607, 0.523427, -0.0146734, 1.59068, 0.0175832, 1.67453, 0.00966099, -1.59065, 0.0136819, 0.523543, 95.8108, -25.833, -36.083, 1.10258, -0.168556, 1.49092, 0.0358519, 1.85262, 0.182934, -1.49999, -0.0796181, 1.10029, 108.123, -71.2351, -74.7405, 0.974362, 0.179331, -0.853304, -0.13491, 1.29519, 0.118148, 0.861444, 0, 0.983657, 148.985, -13.074, 8.03277, 1.16655, -0.0974159, -0.804396, 0.122478, 1.41504, 0.00625291, 0.800963, -0.0744998, 1.1706, 97.8164, -71.637, -68.4043, -1.19881, 0, -0.247086, 0, 1.224, 0, 0.247086, 0, -1.19881, 23.2864, -0.453506, 38.1136, 1.20404, 0.12365, 1.42218, -0.0241131, 1.86199, -0.141474, -1.42734, 0.0728497, 1.20208, 26.2871, -71.1347, -134.319, 1.47578, 0.0488321, 0.864415, -0.0523949, 1.71018, -0.00715921, -0.864206, -0.0202954, 1.47657, 182.109, -53.5105, -114.289, 1.5589, 0.0380385, -0.919564, -0.0804612, 1.80747, -0.0616352, 0.916826, 0.0939467, 1.55814, 166.721, -31.3292, -40.8509, 0.417773, 0.802884, -0.726359, -0.44575, 0.837062, 0.668872, 0.986675, 0.038206, 0.609727, 16.2693, -73.3537, -126.182, 0.266936, 0.134382, -1.0726, -0.0285204, 1.1053, 0.131382, 1.0806, -0.00402325, 0.268425, 47.4606, -73.0402, -129.826, -0.491557, 0.108561, 1.47101, 0.00592615, 1.55068, -0.11246, -1.475, -0.0299487, -0.49068, 237.55, -61.0481, -123.149, 1.54257, -0.0042084, 0.521712, 0.00322291, 1.6284, 0.00360623, -0.521719, -0.00238356, 1.54257, 147.59, -25.853, -50.1871, -0.79999, 0.110822, -1.28308, 0.126867, 1.50991, 0.0513124, 1.28159, -0.0802924, -0.805998, 199.63, -58.273, -120.912, -0.356053, 0.0257921, 0.962047, -0.234275, 0.992597, -0.113316, -0.933443, -0.258959, -0.338524, 148.248, -79.5781, -193.188, 1.15308, 0.536794, -0.270131, -0.55577, 1.17491, -0.0376168, 0.228557, 0.148819, 1.27135, 165.41, -21.6113, 18.8828, -0.616115, 0.0315734, 0.847213, -0.00879175, 1.04701, -0.0454128, -0.847756, -0.0338044, -0.61525, 87.8187, -75.6262, -153.369, 0.00799897, 0.579338, 1.02877, 0.226922, 1.00886, -0.56989, -1.15867, 0.201582, -0.104509, 154.23, -22.5898, 57.6793, -0.546893, -0.0052807, 1.10143, -0.437669, 1.12952, -0.2119, -1.01075, -0.486239, -0.5042, 332.439, -40.5295, -140.914, 0.732316, -0.127655, -1.5848, 0.0807447, 1.74556, -0.103293, 1.58788, -0.0298895, 0.736148, 222.305, -51.6982, -110.747, -1.00371, -0.098684, -0.68985, -0.0918925, 1.21778, -0.040504, 0.690788, 0.0186082, -1.00774, 230.965, -73.7117, -150.063, -1.10922, 0.00330607, 1.33679, 0.00269733, 1.73705, -0.00205785, -1.33679, 0.000761718, -1.10922, 137.073, -75.8472, -157.626, 1.20226, -0.0133895, 1.38414, -0.10401, 1.82729, 0.108019, -1.38029, -0.149355, 1.19747, 123.364, -79.0177, -191.999, -0.609689, -0.264091, -1.85029, 0.0133104, 1.94559, -0.282078, 1.869, -0.100005, -0.601578, 191.664, -79.1219, -215.718, -0.350561, -0.416266, 1.54304, -0.501299, 1.52864, 0.298492, -1.51755, -0.408804, -0.455052, 295.455, -45.5789, -133.405, -1.55574, -0.0437527, -0.651015, -0.0907214, 1.68138, 0.103798, 0.646146, 0.130729, -1.55289, 309.883, -38.1975, -124.055, 0.38809, 0.171534, 1.06523, -0.133324, 1.13099, -0.13355, -1.07069, -0.0786581, 0.402743, 72.8123, -7.4129, -15.7087, 1.55723, -0.00711859, 0.756166, 0.00835996, 1.73111, -0.000919537, -0.756153, 0.00447884, 1.55725, 134.545, -75.8523, -146.156, -1.393, 0.401272, 0.21658, 0.406542, 1.40822, 0.00570713, -0.206518, 0.0654952, -1.44964, 171.731, -32.2961, 60.7447, 1.36949, 0.0200745, 0.622273, -0.0234693, 1.50418, 0.00312614, -0.622154, -0.0125538, 1.36963, 2.53492, -0.113449, 7.15098, -0.808556, 0.000524114, 0.64643, -0.0106778, 1.03505, -0.0141951, -0.646342, -0.017755, -0.808431, 13.0756, -0.294296, -7.35035, -1.58223, 0.0461426, -0.109001, 0.0438547, 1.58567, 0.0346657, 0.109941, 0.0315563, -1.58253, 132.719, -79.9347, -207.957, 1.14974, -0.00354154, 0.745657, 0.0018799, 1.37036, 0.00360998, -0.745663, -0.00200586, 1.14974, 140.97, -25.8681, -48.7776, 1.90582, 0.0665884, -0.295729, -0.0608038, 1.92836, 0.0423526, 0.296972, -0.032509, 1.90651, 78.0408, -73.6491, -95.4938, -1.42598, 0.0236734, 1.05515, 0.0102228, 1.77385, -0.0259826, -1.05537, -0.0148044, -1.42594, 8.61527, -0.238815, 1.85249, -0.875719, 0.0343969, -1.12983, 0.0210721, 1.42947, 0.0271866, 1.13015, 0, -0.875972, 44.8481, -0.691711, 38.5321, -1.27854, 0.140228, -0.167421, 0.139041, 1.28946, 0.0182069, 0.168408, 0, -1.28608, 100.917, -2.32022, 57.6523, 1.3099, 0.00362566, 0.0207546, -0.00364382, 1.31007, 0.00111756, -0.0207514, -0.00117514, 1.30991, 181.161, -75.9572, -162.695, -1.12562, 0.461753, 0.767445, 0.391549, 1.36224, -0.245339, -0.805529, 0.0169162, -1.19166, 38.3425, -6.06752, -52.8207, -1.37973, -0.358168, -0.0043257, -0.123824, 0.493078, -1.33173, 0.336111, -1.28862, -0.50837, 65.9481, -38.075, -52.9852, -1.20953, 0.029388, 0.170137, 0.0291015, 1.22144, -0.00409352, -0.170186, 0, -1.20988, 90.6344, -1.79353, 29.2334, -0.463289, 0.0490956, -1.34439, 0.0386679, 1.42177, 0.0385963, 1.34473, -0.0239689, -0.464282, 72.0172, -73.4296, -94.8156, -0.216751, -0.107072, -1.23359, -0.0433989, 1.25224, -0.101065, 1.23747, 0.0251625, -0.219616, 220.663, -74.9372, -131.937, 1.18449, -0.0043227, -1.18097, 0.00478979, 1.67263, -0.00131827, 1.18097, -0.0024483, 1.18449, 130.662, -25.9015, -53.2448, 0.835503, 0.115779, -1.33824, -0.0609484, 1.57764, 0.0984385, 1.34186, -0.00043096, 0.837723, 188.262, -34.3023, -7.45692, -0.128849, 1.18543, -0.639404, 0.493981, 0.639155, 1.08542, 1.25302, -0.130078, -0.493659, 12.3194, -63.5419, -79.0894, -0.67244, 0.0843948, 1.79817, 0.0774302, 1.91911, -0.0611153, -1.79849, 0.051069, -0.674954, 236.442, -31.8112, -45.0154, 1.32849, 0.0424437, -1.16034, -0.031967, 1.76388, 0.027921, 1.16068, 0, 1.32887, 56.4479, -0.970856, 7.71208, 1.24347, 0.0364186, -0.668766, -0.0105887, 1.41117, 0.0571594, 0.669673, -0.04531, 1.24268, 131.705, -75.5581, -115.78, -1.31972, -0.128146, 0.887946, -0.136594, 1.58971, 0.0264077, -0.886685, -0.0541662, -1.32566, 250.937, -74.4863, -185.53, -1.48618, -0.0150995, 0.674174, -0.135695, 1.60492, -0.263186, -0.660549, -0.295723, -1.46277, 39.1189, -73.5399, -78.9059, 0.299668, 0.00306151, -1.96691, -0.00486947, 1.9896, 0.00235494, 1.96691, 0.00445922, 0.299674, 189.305, -25.9148, -88.0315, -0.227526, -0.0244831, -1.98652, -0.0776924, 1.99809, -0.0157272, 1.98515, 0.0753925, -0.228298, 185.936, -45.2512, -105.369, 0.00559811, 0.377615, 1.90257, 0.0232778, 1.90243, -0.377655, -1.93955, 0.0239223, 0.000958902, 262.797, -35.3811, -79.3013, 0.890033, 0.112926, -0.967977, -0.108953, 1.31423, 0.0531404, 0.968433, 0.044073, 0.895593, 221.938, -36.9373, -11.3284, 0.990469, 0.113336, -0.324188, -0.107713, 1.04217, 0.0352553, 0.3261, 0, 0.996309, 126.459, -5.09784, 16.4658, -0.416528, -0.0979427, -1.0673, -0.0571208, 1.14547, -0.0828237, 1.07027, 0.0230171, -0.419795, 234.212, -73.828, -129.481, -0.495782, 0.0241187, 0.871244, 0.0119286, 1.00243, -0.0209623, -0.871496, 0, -0.495926, 95.9724, -1.92198, 15.4826, 1.60388, 0.0770729, 0.427853, -0.0275129, 1.65015, -0.194119, -0.433868, 0.180275, 1.59395, 201.447, -30.7098, -66.6746, 1.28259, 0.0366246, 0.819507, -0.0308626, 1.52205, -0.0197195, -0.819745, 0, 1.28296, 81.2444, -1.56757, 12.8982, -0.112395, -0.0969017, -1.19063, -0.0273568, 1.19579, -0.0947387, 1.19426, 0.0182722, -0.114224, 231.68, -73.5684, -155.645, 0.700403, 0.0622451, 1.66121, -0.052197, 1.80257, -0.0455344, -1.66156, -0.0303885, 0.701687, 65.863, -73.5401, -113.972, -0.250019, 0.197428, -1.79814, 0.0271894, 1.81544, 0.195546, 1.80874, 0, -0.251493, 100.894, -2.31767, 57.0275, -1.78425, 0.0440108, 0.402995, 0.0429294, 1.82919, -0.00969613, -0.403111, 0, -1.78477, 51.145, -0.843262, 57.6594, 1.0881, 0.0772899, 0.0205649, -0.0742559, 1.08048, -0.131906, -0.0297104, 0.130152, 1.08283, 142.79, -31.8639, -29.3416, -0.598849, -0.221782, 1.53867, -0.15105, 1.64939, 0.178952, -1.54722, -0.0751844, -0.613012, 120.854, -4.48856, -3.24476, -0.994918, 0.0133255, 1.42733, 0.00178976, 1.73985, -0.0149957, -1.42739, -0.00710661, -0.994894, 246.558, -31.7557, -86.6039, 1.51654, 0.211788, 1.2218, -0.164923, 1.94748, -0.13287, -1.22901, 0, 1.52548, 121.97, -4.60966, 34.5033, 1.06497, -0.113605, 1.26354, 0.00652523, 1.6502, 0.142869, -1.26862, -0.0868802, 1.06144, 88.8675, -73.2622, -87.5717, 0.946607, 0.00246721, -0.372411, -0.00151746, 1.01723, 0.00288195, 0.372416, -0.00212632, 0.946606, 157.132, -25.8542, -66.22, -1.15586, 0.0280912, -0.163866, 0.0278131, 1.16742, 0.00394306, 0.163914, 0, -1.1562, 43.1178, -0.650085, 6.2258, -0.00225119, 0.211283, 1.82177, 0.221263, 1.80849, -0.20947, -1.82058, 0.219532, -0.0277104, 211.693, -33.6992, -46.3727, -0.102785, 0.0297091, 1.2305, 0.00247303, 1.23478, -0.029606, -1.23085, 0, -0.102815, 74.9177, -1.41533, 33.8492, -0.376773, 0, 1.3212, 0, 1.37387, 0, -1.3212, 0, -0.376773, 24.4388, -0.453506, -10.4961, 1.32869, 0.211699, 1.4227, -0.144494, 1.94666, -0.154718, -1.43109, 0, 1.33652, 117.313, -4.1033, 22.4499, 0.570461, 0.089617, -1.12555, -0.17517, 1.25281, 0.0109678, 1.11545, 0.15091, 0.577353, 141.31, -32.2557, -25.2103, 1.06212, -0.00294832, 0.0824807, 0.00284185, 1.06532, 0.00148529, -0.0824845, -0.00126081, 1.06213, 145.668, -25.8787, -64.7788, -1.03173, 0.116286, 0.629151, 0.122484, 1.20761, -0.0223446, -0.627974, 0.0444865, -1.03802, 84.8366, -0.587418, -1.93228, 1.13941, 0.044549, 0.941497, -0.0647198, 1.47729, 0.00842313, -0.940325, -0.0476968, 1.14025, 81.2151, -75.0735, -142.419, -1.67707, 0.0430559, 0.624334, 0.0403505, 1.78951, -0.0150216, -0.624515, 0, -1.67755, 59.6981, -1.04907, 54.889, -0.936839, 0.0245199, -0.400871, 0.0225428, 1.019, 0.00964604, 0.400988, 0, -0.93711, 70.9503, -1.31985, 3.98078, 1.92062, -0.0344049, 0.143592, 0.0339663, 1.92597, 0.00714917, -0.143696, -0.00459617, 1.92091, 49.252, -72.9627, -97.1866, 0.759595, 0.0871368, 0.912043, 0.0525731, 1.17863, -0.156392, -0.914687, 0.140106, 0.748411, 69.1299, -72.3688, -181.7, 0.568665, 0.00271148, -1.30623, -0.00165512, 1.42465, 0.00223674, 1.30624, 0.000624725, 0.568667, 153.161, -75.8802, -153.565, -0.989257, 0.467007, -1.67202, 0.249747, 1.9427, 0.394847, 1.71796, -0.0135016, -1.02021, 38.1715, -6.14255, -38.5689, -0.815498, -0.00552113, 1.13558, 0.000482098, 1.39806, 0.00714347, -1.1356, 0.00455837, -0.815485, 208.131, -25.9517, -76.5162, 1.3779, 0.0030255, -0.792669, -0.00297011, 1.58964, 0.00090443, 0.792669, 0.000697073, 1.37791, 143.509, -75.8712, -131.786, 1.30541, 0.212343, -0.987332, -0.311945, 1.61944, -0.0641514, 0.960523, 0.237351, 1.32101, 154.84, -34.9122, -16.1999, 0.483963, -0.00956117, 1.21644, -0.0955767, 1.30483, 0.0482811, -1.21272, -0.106652, 0.481644, 155.869, -78.356, -186.819, 0.858175, -0.0929044, -0.744175, 0.0640212, 1.13586, -0.0679743, 0.747214, 0.00938053, 0.860509, 257.329, -74.0943, -190.54, 1.3136, -0.158507, 0.74712, 0.114409, 1.51048, 0.119302, -0.755131, -0.0468828, 1.31774, 227.245, -75.5124, -169.335, 1.34781, -0.00521962, -0.131789, 0.00537331, 1.35423, 0.00131728, 0.131783, -0.00183392, 1.34782, 117.161, -25.964, -66.4415, 1.06937, 0.0371205, -0.111175, -0.0350411, 1.07498, 0.021874, 0.111848, -0.0181225, 1.06979, 64.7464, -73.4876, -113.147, 0.163482, 0.832244, -1.46885, -0.420573, 1.44927, 0.774341, 1.63501, 0.289581, 0.346051, 157.461, -20.8402, 39.6361, 0.444847, 0.00358137, 1.2152, -0.00232118, 1.29406, -0.00296408, -1.2152, -0.00116078, 0.444852, 174.251, -75.9514, -177.576, 0.877716, 0.41549, -1.08176, -0.268703, 1.39303, 0.317022, 1.12723, 0.00854232, 0.917886, 2.78478, -2.86562, -178.146, -1.04128, 0.259792, 0.08719, 0.256767, 1.04465, -0.0461808, -0.0957344, -0.0238681, -1.07221, 258.425, -34.3544, -69.3386, 0.553235, 0.168942, -1.45165, -0.060164, 1.5535, 0.157866, 1.46021, 0, 0.556497, 106.49, -2.92624, 54.4338, -1.21057, -0.0619238, 0.704574, -0.0550684, 1.40068, 0.0284866, -0.705143, -0.00307741, -1.21182, 259.198, -71.8369, -137.971, -0.571851, -0.0119529, 1.25184, -0.0116668, 1.37625, 0.0078113, -1.25185, -0.00736608, -0.571923, 248.256, -44.6799, -104.747, -0.310819, 0.00338663, 1.75202, 0.00135985, 1.77938, -0.00319827, -1.75203, 0.000780278, -0.310821, 157.109, -75.8863, -157.044, 1.416, -0.0993417, 0.0248331, 0.0971458, 1.41212, 0.109681, -0.0323753, -0.107696, 1.41524, 144.666, -40.4644, -107.258, 1.7726, 0.220964, 0.061779, -0.222255, 1.77317, 0.0349938, -0.0569615, -0.0423863, 1.78597, 3.52159, -1.97137, -94.3286, -1.16918, 0.389602, -0.58252, 0.344983, 1.30623, 0.18122, 0.610005, 0.00801007, -1.21899, 10.577, -5.11589, -190.19, -1.14894, -0.00520313, -0.530042, -0.00609596, 1.2653, 0.000793026, 0.530032, 0.00327368, -1.14895, 120.22, -75.8315, -176.976, 1.76782, 0.00493063, 0.221123, -0.00509085, 1.78159, 0.000973783, -0.22112, -0.0015981, 1.76782, 201.353, -76.0105, -159.328, 0.0503908, 0.0551246, 1.89082, -0.00497302, 1.89149, -0.0550115, -1.89162, -0.00350422, 0.0505142, 325.508, -39.1683, -160.15, 0.0496966, -0.164317, -1.85984, -0.331591, 1.83014, -0.170554, 1.8374, 0.334726, 0.0195241, 110.04, -15.1061, -35.1249, 0.640788, 0.0624992, 1.43266, -0.0807069, 1.56827, -0.0323173, -1.43175, -0.0604306, 0.643017, 65.8013, -74.4739, -140.21, -1.48654, 0.00242626, -1.2527, -0.0621606, 1.94144, 0.0775238, 1.25116, 0.0993378, -1.48451, 267.687, -74.002, -161.934, 1.6499, -0.0205636, -0.313415, 0.00836964, 1.67821, -0.0660499, 0.313977, 0.0633228, 1.64871, 192.01, -45.2601, -103.159, -0.11957, 0.0349265, 1.4467, 0.00287689, 1.45163, -0.0348078, -1.44712, 0, -0.119605, 60.6536, -1.07208, 63.5495, -1.1557, 0.0159715, -1.48811, -0.187537, 1.86754, 0.16569, 1.47633, 0.249736, -1.14387, 301.327, -40.176, -83.2571, -0.382151, -0.0815639, 1.22844, -0.105512, 1.28369, 0.0524092, -1.22661, -0.0850112, -0.387227, 232.172, -74.9807, -167.195, 1.47334, -0.0416579, 0.638436, 0.0876146, 1.60088, -0.097733, -0.633766, 0.12447, 1.47068, 299.992, -38.2841, -126.251, 1.56379, 0.0287019, 0.954427, -0.0930942, 1.8273, 0.0975803, -0.950309, -0.131775, 1.56101, 83.7201, -78.8255, -193.085, 0.500259, -0.0852282, 1.05277, 0.0185016, 1.16541, 0.0855556, -1.05605, -0.0199556, 0.500203, 202.146, -53.1686, -110.524, 0.360021, -0.00533446, -1.18894, 0.471533, 1.14102, 0.137665, 1.09145, -0.491189, 0.332704, 331.022, -40.1153, -139.936, 1.42467, 0.00550875, 1.39009, -0.00518975, 1.99049, -0.0025692, -1.39009, -0.00178548, 1.42468, 157.119, -75.8908, -163.511, 0.463191, -0.0829562, -0.919644, 0.0687129, 1.02911, -0.0582221, 0.920818, -0.0350649, 0.466945, 228.089, -76.2534, -183.337, 0.9637, -0.132324, -1.1472, -0.123474, 1.47381, -0.273721, 1.14818, 0.269554, 0.933437, 105.298, -16.1941, -31.5044, -0.62744, -0.233896, 1.41361, 0.0834185, 1.53462, 0.290946, -1.4304, 0.192095, -0.603108, 177.517, -38.7255, -95.7173, -1.48071, 0.0618748, 0.470824, 0.0407787, 1.55261, -0.0757948, -0.473119, -0.0598269, -1.48006, 61.2733, -74.4251, -143.626, -0.59998, 0.242775, 0.959335, 0.298667, 1.114, -0.0951238, -0.943431, 0.198271, -0.640208, 39.3009, -6.73956, -29.6994, -0.348527, 0.0761458, -0.977308, 0.025845, 1.03759, 0.0716261, 0.979929, -0.000283436, -0.349484, 220.714, -36.6897, -28.9967, -1.24993, 0.158595, -0.241486, 0.161487, 1.27268, -2.52277e-05, 0.239562, -0.0304225, -1.25995, 5.99789, -3.8363, -159.436, 1.2635, -0.104125, 0.272062, 0.0924381, 1.29171, 0.0650714, -0.276252, -0.0440127, 1.26612, 236.17, -75.8228, -189.819, -0.478746, 0.0178607, 1.24502, 0.316564, 1.2918, 0.103196, -1.20424, 0.33248, -0.467833, 151.156, -52.2132, -119.317, -1.00889, -0.242738, -0.6725, -0.066455, 1.1899, -0.329795, 0.711871, -0.232937, -0.983879, 244.693, -29.9952, -0.97298, -1.74448, 0.202692, 0.656277, 0.189711, 1.86384, -0.0713698, -0.660147, 0, -1.75476, 125.913, -5.03848, 15.037, 0.383552, -0.00275687, 0.995407, -0.000465784, 1.06674, 0.00313392, -0.99541, -0.00156144, 0.383549, 125.611, -25.9162, -54.3002, 0.8275, 0.125503, -0.804418, -0.0899901, 1.15406, 0.08748, 0.809161, 0, 0.832379, 99.9257, -2.2124, 1.9053, -1.24566, 0.200672, -0.552099, 0.264235, 1.34745, -0.106418, 0.524655, -0.202178, -1.25723, 285.974, -49.7798, -126.754, -0.543603, 0.0160571, 0.868891, -0.0540108, 1.02227, -0.0526823, -0.867359, -0.0737209, -0.541282, 83.4642, -79.5175, -202.736, 0.611162, -0.0423445, -0.980383, 0.0296336, 1.15525, -0.0314239, 0.980849, -0.00851792, 0.611821, 298.361, -38.2416, -132.773, 1.14047, 0.173236, 0.514534, -0.157909, 1.25117, -0.0712423, -0.519443, 0, 1.15135, 137.29, -11.4546, 43.9234, -1.42715, 0.016077, 1.24916, 0.177566, 1.87989, 0.178673, -1.23658, 0.251387, -1.41601, 289.252, -39.4621, -87.8231, -0.421265, -0.0279778, 1.46287, 0.00491165, 1.52226, 0.0305281, -1.46313, 0.0131655, -0.421088, 95.7384, -5.33714, -5.66823, -0.0605418, 0.198907, -1.82804, 0.00658389, 1.82904, 0.198799, 1.83882, 0, -0.0608988, 116.793, -4.04671, 43.9956, 1.52885, 0.301691, -0.249436, -0.275463, 1.54364, 0.178648, 0.278129, -0.129527, 1.54806, 62.9732, -22.6845, -37.7573, -0.506013, 0, 0.966483, 0, 1.09093, 0, -0.966483, 0, -0.506013, 2.62581, -0.453506, -11.6491, 1.00794, 0, 1.27996, 0, 1.62918, 0, -1.27996, 0, 1.00794, 29.0355, -0.453506, -66.1055, -0.684173, 0.00336456, 1.04396, 0.00221317, 1.24818, -0.00257229, -1.04396, 0.000441099, -0.684177, 180.362, -25.8986, -82.1262, 1.22107, 0.129195, 1.26727, 0.0609757, 1.74752, -0.236908, -1.27238, 0.20773, 1.20481, 68.6288, -75.1628, -157.884, -0.989298, 0.0418435, -1.4301, 0.0238052, 1.73894, 0.0344121, 1.43051, 0, -0.989584, 55.8689, -0.95694, 44.4616, -0.881059, 0.0775042, 1.73538, -0.0318132, 1.94479, -0.103008, -1.73682, -0.074939, -0.878442, 54.0317, -73.6212, -130.253, -0.27063, 0.0226345, 1.41918, -0.0978626, 1.44102, -0.0416445, -1.41599, -0.103918, -0.268363, 79.8798, -78.6989, -192.165, -1.78533, 0.00840877, -0.714846, -0.022902, 1.92135, 0.0797987, 0.714528, 0.0825931, -1.78356, 170.866, -35.9114, -5.46632, -0.570991, -0.0132768, 1.72595, -0.144763, 1.81191, -0.0339536, -1.71992, -0.148098, -0.570135, 143.275, -78.5184, -187.675, -1.85856, 0.0482583, -0.214546, 0.0548027, 1.86994, -0.0541329, 0.212968, -0.0600403, -1.8584, 96.3319, -75.5632, -144.371, -0.408897, -0.119961, 1.40855, -0.0217713, 1.46665, 0.118589, -1.41348, 0.0121124, -0.409297, 215.329, -77.4686, -197.927, 1.31555, 0.201918, 1.47785, -0.104377, 1.97817, -0.177362, -1.48793, 0.0397589, 1.31909, 64.9245, -22.9417, -39.2527, 0.194967, 0.977574, 1.72502, 0.280241, 1.70235, -0.996402, -1.96286, 0.340149, 0.0290844, 163.985, -22.4752, 29.0711, -0.0646061, 0.0051614, 1.86386, -0.0014931, 1.86498, -0.00521625, -1.86386, -0.0016729, -0.0646016, 172.347, -75.9325, -162.558, -0.294286, 0.80885, -1.40591, -0.153638, 1.40853, 0.842522, 1.61468, 0.281441, -0.176069, 152.658, -19.2493, 45.4798, -0.801231, 0.00506532, 0.836695, 0.0394344, 1.15739, 0.0307561, -0.835781, 0.0497529, -0.800656, 161.424, -35.7086, -9.22081, -0.953363, 0.231303, -1.50657, -0.0979277, 1.76403, 0.3328, 1.52107, 0.258543, -0.922846, 153.378, -33.9141, -21.7016, -0.365211, 0.0719745, 0.961232, 0.00695187, 1.02808, -0.0743388, -0.963898, -0.0198556, -0.364737, 243.73, -61.4958, -123.927, -1.22451, 0.173573, -0.135871, 0.175524, 1.23172, -0.00838092, 0.13334, -0.0274163, -1.23673, 89.7372, -10.2885, -22.2998, 1.46509, 0.149343, 0.221273, -0.173202, 1.47107, 0.153938, -0.20314, -0.17718, 1.46462, 159.663, -53.3389, -121.682, -1.17036, 0.0827286, -0.164821, 0.0850954, 1.18169, -0.0111201, 0.163612, -0.0228224, -1.17323, 198.349, -58.3074, -123.338, -0.956979, 0.0381712, 1.26536, 0.0230251, 1.58649, -0.0304447, -1.26572, 0, -0.957256, 86.124, -1.685, 36.5716, -0.99694, -0.081116, 1.32226, -0.0392791, 1.65593, 0.0719706, -1.32416, 0.0119504, -0.997642, 240.391, -31.2935, -16.9032, -1.34084, 0.0495543, -0.951485, 0.0711102, 1.64327, -0.0146253, 0.950117, -0.0530559, -1.34167, 73.8036, -74.8561, -142.609, -1.09997, 0.293453, -0.52946, 0.268194, 1.22074, 0.119408, 0.542692, -0.00848396, -1.13216, 37.8499, -6.03265, -33.8818, -0.872025, 0.805025, 1.54727, 0.60559, 1.76201, -0.575446, -1.63566, 0.223183, -1.03796, 152.479, -16.5905, 25.8864, 0.819063, -0.00715477, -1.53506, -0.000603547, 1.7399, -0.00843154, 1.53508, 0.0045016, 0.819051, 111.059, -75.8984, -165.727, -1.16984, 0.296297, -1.01113, 0.263624, 1.54511, 0.14777, 1.02014, -0.0595102, -1.1977, 249.236, -33.1539, -54.7838, 0.253292, 0.00194292, -0.988915, -0.000915733, 1.02084, 0.00177109, 0.988917, 0.000447649, 0.253294, 134.128, -75.8369, -167.947, 1.90147, 0.304262, -0.281113, -0.32089, 1.91705, -0.0956127, 0.261972, 0.139774, 1.92328, 240.665, -31.6899, -86.1227, 0.904774, 0.144102, -0.487249, -0.132223, 1.02757, 0.0583759, 0.490606, 0.0111867, 0.914316, 243.162, -32.3907, -74.4317, 1.74384, 0.0346833, -0.14625, -0.0327976, 1.74984, 0.0239071, 0.146685, -0.0210783, 1.74402, 266.328, -73.9239, -168.059, -1.10464, 0.532304, 0.927817, 0.482246, 1.43835, -0.25105, -0.954793, 0.110632, -1.20023, 45.0354, -74.7946, -80.595, -0.470124, -0.713137, -0.543055, -0.176558, 0.674872, -0.733393, 0.878807, -0.245912, -0.437854, 268.048, -67.6196, -129.775, -1.12855, 0.00961971, 0.119409, 0.0253095, 1.12483, 0.148585, -0.117092, 0.150418, -1.11876, 290.314, -40.6032, -79.3577, 0.248908, -0.0902263, -1.09194, 0.0573457, 1.1193, -0.0794151, 1.09416, -0.0381379, 0.252566, 237.947, -75.6076, -187.706, -1.56176, 0.132571, 0.907886, 0.114364, 1.80647, -0.0670547, -0.910359, -0.000493468, -1.56594, 174.419, -33.2868, -8.88866, -0.690157, 0.00221686, -0.938276, 0.000902105, 1.16477, 0.00208843, 0.938278, 0.000510763, -0.690157, 133.22, -75.8382, -161.265, -0.555563, 0.0965424, 1.19193, 0.181576, 1.30586, -0.0211369, -1.18197, 0.155229, -0.563492, 67.9408, -72.6737, -178.395, -0.0369211, -0.184548, 1.36088, -0.0754957, 1.35958, 0.182324, -1.37125, -0.069884, -0.0466796, 190.357, -78.6183, -202.468, 0.661502, -0.00520088, -1.17611, 0.00414233, 1.34937, -0.00363723, 1.17611, -0.00182734, 0.661512, 111.555, -25.9893, -69.2326, -1.37299, 0.0095263, -0.0842403, 0.00732535, 1.37511, 0.0361119, 0.0844602, 0.0355947, -1.37254, 92.5216, -1.20276, 0.271267, 0.558812, -0.29659, 0.996541, -0.90974, 0.408306, 0.631657, -0.503422, -1.06708, -0.0352877, 68.1564, -33.3605, -51.795, 1.15938, 0.200286, 0.865034, -0.160527, 1.44653, -0.119772, -0.873286, 0, 1.17044, 134.111, -11.0145, 39.8447, -0.139067, -0.00501253, 1.211, 0.00256134, 1.21895, 0.00533959, -1.21101, 0.00315376, -0.139054, 111.63, -75.879, -172.296, 0.793217, -0.227033, -1.69872, 0.146071, 1.87399, -0.18225, 1.70759, -0.0548433, 0.804688, 189.891, -36.8806, -101.572, 1.15596, -0.106968, -0.361483, 0.035139, 1.1914, -0.240185, 0.375336, 0.217903, 1.13578, 91.3695, -17.3912, -31.7964, 1.64738, -0.141508, -0.579839, 0.124577, 1.74624, -0.0722291, 0.583711, 0.0266833, 1.65186, 251.3, -72.385, -129.038, 1.85377, 0.0466478, -0.0755614, -0.0260187, 1.79522, 0.469953, 0.0849033, -0.468355, 1.79381, 138.748, -79.8072, -195.012, 0.507062, -0.0152641, 1.68279, -0.00460321, 1.7575, 0.0173288, -1.68285, -0.00940662, 0.506995, 252.034, -44.6574, -106.675, 1.03032, -0.0663351, 0.182186, 0.0531161, 1.04401, 0.0797445, -0.186469, -0.0691387, 1.02937, 253.183, -73.5616, -165.925, -0.907492, -0.120177, 1.18393, -0.113515, 1.49085, 0.0643222, -1.18458, -0.050798, -0.913152, 251.55, -74.3387, -182.647, -1.84237, -0.0185482, -0.258774, -0.0161545, 1.86039, -0.0183337, 0.258935, -0.0159077, -1.84237, 14.5483, -0.159088, 5.38732, -0.731521, 0.176476, -0.908486, 0.174161, 1.16358, 0.085793, 0.908933, -0.0809244, -0.747601, 71.2032, -7.02795, -13.6828, 0.256146, 0, -1.20399, 0, 1.23093, 0, 1.20399, 0, 0.256146, 20.1418, -0.453506, 47.5559, 0.577007, 0.173573, 1.11291, -0.0798923, 1.2536, -0.154093, -1.12353, 0, 0.582512, 137.051, -11.4215, 27.8382, -1.51915, -0.113721, 0.744379, -0.13751, 1.6898, -0.0224771, -0.740353, -0.0805086, -1.52324, 223.482, -51.774, -116.654, 1.73671, 0.245306, 0.280604, -0.2696, 1.7502, 0.138569, -0.257351, -0.178074, 1.74846, 164.274, -53.5513, -118.939, -0.754062, 0.0032069, -1.5068, 0.000774428, 1.68495, 0.0031985, 1.5068, 0.000738869, -0.754062, 152.681, -75.8838, -143.361, -0.243837, 0.0331209, 1.35467, 0.00586737, 1.37644, -0.0325971, -1.35507, 0, -0.243908, 43.0391, -0.648193, 36.1159, 0.707271, 0.053241, 1.37028, -0.0475271, 1.54182, -0.035375, -1.37049, -0.0259927, 0.708389, 55.1262, -73.0367, -106.104, 0.330527, -0.00525759, -1.87076, 0.0031288, 1.89973, -0.00478622, 1.87076, -0.00224833, 0.330534, 142.164, -25.9112, -83.8386, 0.79287, 0.158553, 1.66735, -0.0119622, 1.84523, -0.16978, -1.67483, 0.0618802, 0.790542, 205.198, -35.9992, 3.58912, 0.298826, -0.00549185, -1.30166, -0.00213894, 1.33551, -0.00612574, 1.30167, 0.00345533, 0.298814, 95.6232, -75.9723, -161.764, 0.0826692, 0.117699, -1.60111, -0.195531, 1.59203, 0.106937, 1.59348, 0.189247, 0.096187, 70.9215, -73.3315, -174.716, 0.267694, 0.154254, -1.70487, 0.0612145, 1.72362, 0.165563, 1.71074, -0.0858131, 0.260852, 274.261, -73.9814, -137.184, 0.234154, 0.012102, 1.87019, 0.209027, 1.87281, -0.0382898, -1.85851, 0.21216, 0.231319, 180.189, -25.8284, -95.5171, 0.93589, 0.0443089, -0.374205, -0.0510915, 1.00757, -0.00847559, 0.373339, 0.0268122, 0.9369, 236.871, -31.7836, -46.7586, 0.711147, 1.18182, -1.00776, -0.74433, 1.23213, 0.919694, 1.36318, 0.056238, 1.02791, 15.8012, -72.704, -130.579, -1.31187, 0.032844, -0.377405, 0.0315638, 1.36508, 0.00908043, 0.377514, 0, -1.31225, 61.2552, -1.08655, 64.5066, 1.48279, 0.0389439, -0.28428, -0.0291016, 1.50902, 0.05493, 0.285455, -0.0484519, 1.48229, 101.087, -75.3383, -133.542, -1.42824, 0.0360142, -0.447438, 0.0343672, 1.49668, 0.0107666, 0.447568, 0, -1.42865, 42.6475, -0.638763, 63.0203, 0.690928, 0, -1.77356, 0, 1.90339, 0, 1.77356, 0, 0.690928, 14.7721, -0.453506, 10.3578, 0.262238, 0.0492125, 1.40103, -0.0326827, 1.42516, -0.0439427, -1.40152, -0.0240259, 0.263172, 61.2011, -73.4327, -117.154, 1.00493, 0.0925778, -0.83028, -0.170403, 1.2942, -0.0619424, 0.817862, 0.155896, 1.00728, 149.492, -31.9947, -32.2359, -0.725781, 0.0889368, -1.4951, 0.0161309, 1.66176, 0.09102, 1.49766, 0.0252012, -0.725523, 40.5552, -72.9136, -105.298, -0.304373, 0.00306149, 1.225, -0.00182241, 1.26225, -0.00360738, -1.22501, -0.00263849, -0.304367, 168.103, -25.8669, -59.5768, -0.423604, 0.341919, -1.37436, 0.225759, 1.43248, 0.286795, 1.39814, -0.127709, -0.462707, 155.701, -41.9606, -102.413, 0.375253, 0.329968, 1.32038, -0.0996403, 1.37264, -0.314709, -1.35733, -0.00953965, 0.388139, 40.5896, -6.69138, -33.9016, 0.965059, 0.0679606, -1.40751, 0.0158359, 1.70532, 0.0931979, 1.40906, -0.0657113, 0.96295, 68.3421, -73.7281, -118.227, -1.19033, 0.300985, 0.34642, 0.249469, 1.23269, -0.21382, -0.385181, -0.131765, -1.20903, 53.3476, -21.14, -43.4265, -0.525185, 0.1256, -1.02863, 0.0571136, 1.15495, 0.111863, 1.0347, 0, -0.528281, 119.414, -4.33174, 4.33661, -0.926541, 1.37849, -0.684953, 0.739259, 1.09973, 1.21324, 1.35014, 0.343845, -1.13435, 138.805, -12.9398, 53.5508, 0.361982, 0.0343173, -1.59222, -0.090263, 1.63065, 0.0146248, 1.59003, 0.0847563, 0.363311, 188.026, -30.8138, -59.3921, -1.26688, -0.111597, -1.01492, -0.0334887, 1.62104, -0.136441, 1.02049, -0.0853451, -1.26444, 99.1125, -71.36, -64.8378, -1.14054, 0.0419821, -1.63993, -0.0612043, 1.99485, 0.0936345, 1.63932, 0.103686, -1.13746, 192.344, -30.8184, -61.0524, 0.562028, 0.0354221, -1.58895, -0.0942917, 1.68315, 0.00417003, 1.58654, 0.0874848, 0.563128, 175.988, -31.0715, -49.5601, 1.44578, -0.134551, 0.78486, 0.124749, 1.64503, 0.0522116, -0.786478, 0.0135855, 1.45109, 226.972, -76.56, -192.636, 1.13088, 0.00967909, 0.56038, 0.00396438, 1.26178, -0.0297943, -0.560449, 0.0284558, 1.13053, 220.71, -31.1746, -53.2397, 1.81681, -0.00513624, -0.378808, 0.00547642, 1.85588, 0.00110184, 0.378803, -0.00219644, 1.81682, 138.734, -25.9208, -83.8915, -1.58708, 0.263278, 0.769371, 0.369489, 1.73647, 0.167972, -0.724379, 0.308903, -1.59997, 328.338, -41.3686, -149.427, -0.515044, 0.0453904, -1.81487, 0.012392, 1.88653, 0.043666, 1.81539, 0, -0.515193, 75.7354, -1.435, 45.9011, 1.29919, 0.119856, 0.178962, -0.11189, 1.31052, -0.0654249, -0.184048, 0.0493387, 1.30306, 188.92, -34.5939, 5.56015, 1.05895, -0.837124, -1.20249, 0.580963, 1.60195, -0.603604, 1.34508, -0.0328665, 1.2074, 199.053, -79.3343, -186.907, -1.3344, -0.0344515, 1.39241, -0.0271605, 1.92858, 0.0216885, -1.39257, -0.0046024, -1.33467, 52.2638, -72.8617, -77.3935, 0.295834, 0, 1.70969, 0, 1.7351, 0, -1.70969, 0, 0.295834, 12.9726, -0.453506, -20.094, 0.125609, 0.0515431, 1.7055, -0.058845, 1.70922, -0.0473219, -1.70526, -0.0551852, 0.12726, 83.5489, -75.4465, -151.793, 1.02083, -0.00511114, 0.586791, 0.0046276, 1.17746, 0.00220552, -0.586795, 0.000394035, 1.02084, 285.923, -38.3921, -109.61, -1.08693, 0.0527013, -0.323259, 0.0150267, 1.12725, 0.133252, 0.327182, 0.123306, -1.08001, 174.034, -30.0647, -60.8576, 1.85197, -0.12781, 0.162766, 0.118565, 1.85654, 0.108772, -0.169618, -0.0977437, 1.85318, 88.7134, -72.243, -68.0101, 0.645813, 0.0669717, 1.82907, -0.0531435, 1.93946, -0.0522496, -1.82952, -0.0326961, 0.647171, 77.523, -73.6177, -94.6948, 0.628015, 0.0449722, -1.76029, -0.0151117, 1.86896, 0.0423573, 1.7608, 0, 0.628197, 66.8731, -1.22174, 10.5077, 0.436829, -1.76046, 0.52609, -0.65738, 0.355213, 1.7345, -1.71576, -0.584306, -0.530617, 219.423, -77.7296, -216.198, 0.155742, -0.00486805, -1.12289, 0.444611, 1.04126, 0.0571523, 1.03113, -0.448242, 0.144958, 311.206, -38.3408, -135.599, 0.540035, 0.0329231, 1.1565, -0.051049, 1.27572, -0.0124793, -1.15585, -0.040961, 0.540894, 94.0694, -75.8368, -154.71, 0.923939, 0.00263978, 0.567285, 0.0206247, 1.08331, -0.0386326, -0.566916, 0.0437137, 0.923135, 304.737, -38.5753, -105.114, -1.60637, 0.12594, 0.603815, 0.117721, 1.71611, -0.0447521, -0.605471, -0.000468783, -1.61068, 182.584, -33.8862, -9.66735, -1.85349, -0.10023, -0.00216518, -0.100227, 1.85164, 0.0829841, -0.00232109, 0.0829799, -1.85435, 40.1429, -8.13402, -16.5571, -1.314, 0.420518, -1.06498, 0.351673, 1.69095, 0.233781, 1.08965, -0.0386346, -1.3597, 269.112, -36.7328, -57.1083, -0.826338, -0.158887, 1.77831, -0.0396882, 1.9607, 0.15674, -1.78496, 0.0299603, -0.826748, 244.081, -72.7728, -141.946, 0.882902, 0.00394971, -1.36835, 0.000718872, 1.62846, 0.00516436, 1.36836, -0.00340399, 0.882896, 169.937, -25.8976, -72.1336, 1.42265, 0.00299813, -0.676381, -0.00300429, 1.57526, 0.000663482, 0.676381, 0.000690768, 1.42266, 139.886, -75.8584, -144.777, 0.625852, 0.042356, -1.05512, -0.00380951, 1.2266, 0.04698, 1.05597, -0.0206785, 0.625522, 69.7078, -73.4414, -100.244, -1.65205, 0.145398, 0.370497, 0.154258, 1.69214, 0.0237752, -0.366897, 0.0567462, -1.65827, 226.186, -36.922, -22.669, -1.16573, 0.131709, 1.44236, 0.255125, 1.84123, 0.038064, -1.42571, 0.22179, -1.17253, 145.241, -32.032, -29.4011, 1.20433, 0.00311759, -0.434863, -0.0204632, 1.27939, -0.0474996, 0.434392, 0.051626, 1.2034, 320.226, -38.5329, -107.101, -0.202727, -0.000924555, -1.15503, -0.00127259, 1.17269, -0.000715328, 1.15503, 0.00112976, -0.202728, 166.172, -25.8846, -90.0921, -0.298881, 0, -1.08788, 0, 1.12819, 0, 1.08788, 0, -0.298881, 24.711, -0.453506, -61.0996, -0.256461, 0.0254248, -1.72599, -0.0275087, 1.74465, 0.0297872, 1.72595, 0.0315846, -0.255991, 288.85, -38.778, -92.9365, -1.10724, 0.00297701, 1.10481, 0.00259185, 1.56416, -0.00161721, -1.10481, 0.000685901, -1.10724, 166.306, -75.9072, -150.17, -1.31162, 0.0382608, -0.274564, 0.0407059, 1.33996, -0.00773204, 0.274212, -0.0159018, -1.31216, 174.636, -53.3238, -116.536, -1.81955, 0, -0.624062, 0, 1.9236, 0, 0.624062, 0, -1.81955, -0.351743, -0.453506, 68.8087, -0.723407, -0.00512186, -1.01393, -0.00559808, 1.24554, -0.00229778, 1.01393, 0.00322255, -0.723421, 113.999, -75.8864, -165.69, -1.04677, 0.0418916, 0.613539, 0.0257879, 1.21315, -0.0388351, -0.614426, -0.0204518, -1.04689, 78.149, -73.8798, -108.96, -1.05321, -0.00400949, -0.994805, -0.00173744, 1.44875, -0.00399964, 0.994811, -0.0017146, -1.05321, 138.307, -25.9092, -73.176, -0.973996, 0.305314, -0.98348, 0.212103, 1.38416, 0.219643, 1.0077, 0.0037613, -0.996816, 267.065, -36.3098, -82.3841, -0.0681359, 0.247794, 1.89692, 0.00850492, 1.89814, -0.247649, -1.91302, -0.0003869, -0.0686636, 76.0019, -24.3255, -46.8344, 1.19958, -0.129913, 1.46012, 0.00540684, 1.88708, 0.163459, -1.46588, -0.0993519, 1.19547, 81.5513, -72.466, -62.8822, -0.479678, 0.0431076, 1.72606, 0.0115423, 1.79147, -0.0415335, -1.72656, 0, -0.479817, 40.4714, -0.586411, 43.5746, 1.54079, 0.0439107, -0.822216, 0.170141, 1.68988, 0.409085, 0.805618, -0.440874, 1.48614, 164.78, -78.791, -188.524, -0.129802, -0.0304779, 1.52301, -0.0570181, 1.52756, 0.0257093, -1.52225, -0.0546181, -0.13083, 132.833, -25.964, -83.4685, -1.0263, 0.0360128, 0.186172, 0.0322894, 1.0429, -0.0237366, -0.186853, -0.0175817, -1.02666, 66.4736, -73.2194, -93.701, 0.616139, 0.169558, -0.954266, -0.259535, 1.11833, 0.0311374, 0.933818, 0.198942, 0.638285, 327.997, -39.3062, -160.729, -0.787023, 0, 0.76247, 0, 1.09579, 0, -0.76247, 0, -0.787023, 22.3577, -0.453506, -46.7745, 0.749153, -0.0723616, -1.14289, 0.274551, 1.33724, 0.0952988, 1.11178, -0.281468, 0.746582, 229.143, -31.5541, -38.1313, -0.734856, 0.0112623, -1.27147, -0.0230336, 1.46818, 0.0263172, 1.27131, 0.0331105, -0.734471, 227.835, -30.6662, -78.2009, 0.774873, 0.00264522, -1.15378, -0.00198073, 1.38983, 0.00185616, 1.15378, 0.000609457, 0.774875, 174.15, -75.9316, -129.49, -1.31168, -0.00365677, 0.159226, -0.00381857, 1.32131, -0.00111171, -0.159223, -0.00156377, -1.31168, 132.821, -25.9254, -73.9114, -0.598274, 1.22249, 0.984546, 1.04928, 1.0951, -0.722155, -1.1674, 0.35779, -1.15365, 180.415, -32.1121, 13.5792, 1.45041, 0.00289105, -0.451265, -0.00295841, 1.51899, 0.000222853, 0.451265, 0.000666096, 1.45042, 150.852, -75.8809, -142.09, -1.19958, 0.0547713, -0.0225377, 0.0519761, 1.19264, 0.131916, 0.0283959, 0.13078, -1.19356, 211.251, -30.0432, -76.9507, -1.02224, 0.0512344, -0.415539, 0.00200539, 1.09694, 0.130315, 0.41868, 0.119838, -1.01519, 175.13, -30.4953, -57.3876, 1.72916, 0.0479031, 0.677459, -0.0663271, 1.85618, 0.0380444, -0.675904, -0.0595983, 1.7294, 96.3055, -75.2679, -135.194, -1.07406, -0.0359608, 1.08862, -0.00481097, 1.52901, 0.0457619, -1.0892, 0.0287074, -1.07369, 103.031, -79.5128, -204.712, 0.921954, -0.139818, 1.43956, 0.0873315, 1.70942, 0.110097, -1.44369, 0.0141173, 0.925974, 234.191, -75.9447, -195.65, -0.140051, -0.00617224, -1.49443, -0.00444242, 1.50097, -0.00578294, 1.49443, 0.00388342, -0.140067, 117.581, -75.9262, -144.612, 0.736627, 0.00290885, -1.33911, -0.00198921, 1.52835, 0.00222567, 1.33912, 0.000670197, 0.736629, 168.829, -75.9226, -126.596, 1.14844, -0.0238053, 0.0808807, 0.0182379, 1.14866, 0.079118, -0.0823149, -0.0776247, 1.14595, 113.423, -79.6963, -200.652, -0.867532, 0.352341, -1.3943, -0.0666236, 1.61675, 0.450007, 1.43659, 0.287752, -0.821126, 37.9507, -6.65736, -28.5079, -0.224925, -0.805921, -1.61157, -0.096947, 1.62714, -0.800176, 1.79924, -0.013075, -0.244579, 202.097, -77.7076, -180.855, 0.441343, -0.203487, -1.88917, 0.105199, 1.93911, -0.184289, 1.89718, -0.0601867, 0.449698, 212.304, -77.2685, -175.398, -0.704383, -0.275584, 1.18268, -0.37011, 1.35091, 0.0943527, -1.15659, -0.264457, -0.750466, 237.236, -31.4875, -0.824613, -0.559131, 0, -1.11583, 0, 1.24808, 0, 1.11583, 0, -0.559131, 10.9727, -0.453506, -58.1646, 0.64497, -0.113557, 1.22951, 0.0629375, 1.38836, 0.0952134, -1.23314, 0.0114658, 0.647932, 216.91, -77.3733, -193.814, 1.09451, 0.0451371, 1.36535, -0.0720483, 1.749, -6.35013e-05, -1.3642, -0.056157, 1.09544, 93.845, -75.5813, -146.933, -0.267944, 0.234197, -1.67009, 0.0370995, 1.69145, 0.23124, 1.68602, 0, -0.2705, 135.938, -11.2674, 26.9867, 0.961945, 0.0218934, 0.399774, 0.000565859, 1.0403, -0.0583333, -0.400373, 0.0540719, 0.960424, 203.229, -30.7843, -66.1157, 0.362669, 0.445534, -1.4491, -0.11744, 1.49376, 0.429875, 1.51148, 0.00916003, 0.3811, 3.83479, -3.27956, -161.714, 1.76701, -0.00782991, 0.362432, 0.00779151, 1.80379, 0.000981917, -0.362433, 0.000603634, 1.76702, 303.911, -38.3101, -121.147, -0.306801, -0.00467334, -1.03197, -0.00167711, 1.07661, -0.00437689, 1.03198, 0.000360283, -0.306805, 304.049, -38.3099, -119.773, 0.230653, 0.129715, -1.01535, -0.00427452, 1.04092, 0.132011, 1.0236, -0.0248826, 0.229346, 1.66051, -2.08577, -108.817, 0.0527878, 0.0700389, 1.50755, 0.161462, 1.49955, -0.075321, -1.50051, 0.163822, 0.0449304, 193.196, -30.6644, -63.5631, -1.7418, 0.437987, -0.26375, 0.439145, 1.76119, 0.02456, 0.261817, -0.0402396, -1.79585, 267.502, -36.3788, -59.1393, 0.550037, 0.816703, 1.71584, -0.0106062, 1.78756, -0.847441, -1.90026, 0.22642, 0.501386, 155.216, -17.5412, 23.521, 0.143699, -0.0462397, -1.49126, -0.0157175, 1.49803, -0.0479642, 1.4919, 0.0202359, 0.143132, 62.6326, -6.6041, -11.5933, 0.511609, 0.054712, 1.49979, -0.0429569, 1.58442, -0.0431459, -1.50017, -0.0267108, 0.512714, 67.7631, -73.5921, -113.167, 1.63953, 0, -0.75763, 0, 1.80612, 0, 0.75763, 0, 1.63953, 17.226, -0.453506, 65.0525, -0.066273, -0.109021, -1.71831, 0.10958, 1.71583, -0.11309, 1.71828, -0.113629, -0.0590622, 243.497, -74.2237, -166.63, -0.552678, 0.0928376, -1.2057, 0.0620165, 1.32609, 0.0736797, 1.20768, -0.0256111, -0.555557, 244.499, -61.5139, -122.073, 1.68099, 0.0935081, -0.477066, -0.0971896, 1.74718, 6.89179e-08, 0.476329, 0.0264965, 1.68359, 32.8195, -72.5699, -100.661, -0.412629, 0.0448229, -1.81668, 0.00992794, 1.86295, 0.0437096, 1.8172, 0, -0.412748, 91.1847, -1.80679, 39.9542, 1.44132, 0.0453646, -1.00781, -0.00480533, 1.75781, 0.072252, 1.00882, -0.0564401, 1.44022, 110.142, -75.2002, -121.965, -1.0486, 0.106223, -0.501348, 0.0768256, 1.16147, 0.0854009, 0.506687, 0.043727, -1.05051, 193.351, -34.9874, 5.24658, 1.19302, 0.00431358, 1.00302, -0.00420144, 1.55863, -0.00170575, -1.00302, -0.00139811, 1.19302, 150.851, -75.8791, -169.957, -1.50704, 0.175935, 0.588315, 0.163889, 1.6178, -0.0639789, -0.591783, 0, -1.51592, 120.568, -4.45728, 26.0347, -1.66962, 0.199203, 0.403181, 0.241137, 1.70509, 0.156127, -0.379592, 0.206981, -1.6742, 213.763, -32.9805, -54.285, -0.968042, 0, -0.535168, 0, 1.10612, 0, 0.535168, 0, -0.968042, 9.65646, -0.453506, -55.6241, 0.799677, 0.0293706, 0.922147, -0.0192424, 1.22059, -0.0221893, -0.922414, 0, 0.799908, 43.5257, -0.659912, 60.2954, -0.23959, 0.0400218, 1.88914, 0.10311, 1.90171, -0.0272111, -1.88675, 0.098845, -0.241381, 163.45, -31.2762, -40.546, -0.547612, 0.0348269, -1.23415, 0.053737, 1.34949, 0.0142379, 1.23347, -0.0433297, -0.548534, 102.606, -74.8032, -115.657, -1.34858, 0.79507, 1.12172, 0.761171, 1.74021, -0.318342, -1.14499, 0.220423, -1.5328, 158.017, -19.6426, 30.0088, -0.271651, 0.0120372, 1.70172, -0.147491, 1.71662, -0.035687, -1.69536, -0.151269, -0.269566, 99.8399, -78.226, -183.057, -0.942139, 0.00204185, 0.513134, 0.00201815, 1.07281, -0.00056349, -0.513134, 0.000470441, -0.942141, 153.078, -75.8928, -125.053, -1.4916, -0.14838, 1.2109, -0.143768, 1.9207, 0.0582628, -1.21146, -0.0452443, -1.49783, 201.319, -35.7924, -98.7096, -1.75465, 0.553839, 0.607729, 0.527217, 1.85688, -0.170029, -0.630963, 0.0113867, -1.83211, -0.0309103, -1.95828, -189.155, 1.48284, 0.0429575, 0.99444, -0.0356774, 1.78542, -0.0239264, -0.994728, 0, 1.48327, 90.8469, -1.79865, 20.0898, 0.462655, 0.27633, 1.76678, -0.193806, 1.82196, -0.234208, -1.77773, -0.126713, 0.485339, 83.4182, -8.78905, -12.3671, 0.819888, 0.0945974, -1.07437, -0.0365812, 1.35123, 0.0910577, 1.07791, -0.0260966, 0.820288, 253.752, -62.1199, -119.913, 0.844299, -0.0973656, 0.855057, 0.0815096, 1.20151, 0.0563322, -0.856714, 0.0183596, 0.848026, 233.608, -73.5839, -144.41, 1.85678, 0.013065, 0.225372, -0.0327034, 1.86319, 0.161424, -0.223369, -0.164185, 1.84979, 106.122, -78.6737, -187.637, -0.0934386, 0.0315749, -1.30886, 0.00224838, 1.31219, 0.0314947, 1.30924, 0, -0.0934657, 36.4723, -0.490173, 37.6037, 0.0167486, -0.00461543, -1.78582, 0.00265727, 1.7859, -0.0045907, 1.78582, -0.00261409, 0.0167554, 142.883, -25.8715, -54.4604, 0.269519, 0.0272889, 1.10158, -0.00648535, 1.13408, -0.0265071, -1.1019, 0, 0.269597, 36.1926, -0.483444, 47.2094, -1.70272, -0.00539066, -0.945896, -0.00359288, 1.94781, -0.00463298, 0.945904, -0.00230524, -1.70273, 145.615, -25.8991, -81.7914, -1.91058, -0.154645, 0.18535, -0.160166, 1.91844, -0.0503489, -0.180601, -0.0653672, -1.91617, 227.747, -76.2368, -182.042, 0.820368, 0.0599643, -1.53081, -0.00250156, 1.73652, 0.066682, 1.53198, -0.029275, 0.819849, 75.8957, -73.4334, -87.0948, -1.0959, 0.0888459, -0.513439, 0.0191217, 1.20175, 0.167138, 0.520718, 0.142854, -1.08672, 66.4183, -74.065, -165.744, 0.502438, 0.0147396, 0.890313, -0.235848, 0.987961, 0.116742, -0.858633, -0.262746, 0.48891, 128.56, -71.1937, -97.2281, -1.68037, -0.0344306, 0.944083, -0.0322707, 1.92741, 0.012854, -0.944159, -0.00459961, -1.68068, 50.9256, -72.9357, -98.4185, -0.992475, 0.537684, -0.649779, 0.356635, 1.17686, 0.429111, 0.764283, 0.149066, -1.04402, 156.607, -16.6763, 11.675, 1.10596, -0.010811, 0.376989, -0.0582533, 1.1491, 0.203849, -0.372617, -0.211733, 1.08706, 31.4868, -73.9593, -80.7925, -1.21933, 0.0298354, -0.224909, 0.0293405, 1.2399, 0.00541191, 0.224974, 0, -1.21969, 35.4989, -0.466751, 47.9417, 0.579053, 0.0125309, 0.975896, 0.0138165, 1.13451, -0.0227657, -0.975879, 0.0234978, 0.578741, 95.9773, -77.6496, -169.634, 0.659352, 0.114757, 1.74295, 0.0561849, 1.86064, -0.14376, -1.74582, 0.103221, 0.653641, 20.5606, -71.4651, -120.157, 1.53961, 0.223812, 0.492415, -0.213175, 1.61644, -0.0681796, -0.497112, 0, 1.5543, 142.84, -12.2232, 27.0499, 1.01934, 0.147499, -0.657889, -0.121516, 1.2132, 0.0837219, 0.663181, -0.00441596, 1.02654, 41.0249, -72.2801, -135.944, 1.19572, -0.00701735, 1.21753, 0.00806705, 1.70649, 0.00191298, -1.21752, 0.00441514, 1.19574, 111.868, -75.9151, -158.004, -0.0969548, -0.0134592, 1.84038, -0.150635, 1.83681, 0.00549735, -1.83425, -0.150133, -0.0977301, 136.4, -78.3391, -184.865, 0.102963, -0.247921, 1.23575, -0.348949, 1.18579, 0.266973, -1.2111, -0.362733, 0.0281362, 266.443, -75.445, -182.581, 0.115535, -0.0141904, 1.15314, 0.0448968, 1.15809, 0.0097531, -1.15236, 0.0436975, 0.115993, 184.426, -45.2629, -105.549, -0.554805, 0, -1.54082, 0, 1.63766, 0, 1.54082, 0, -0.554805, 26.341, -0.453506, 51.7547, -0.611264, -0.145184, 1.59836, -0.0244604, 1.71101, 0.146061, -1.60475, 0.0292218, -0.611055, 218.622, -34.3774, -102.41, -0.567476, 0.152357, 1.38086, 0.085793, 1.49262, -0.12943, -1.38659, 0.0299999, -0.57314, 60.7317, -22.4644, -41.708, -0.921507, 0.161103, -1.30601, 0.249175, 1.58692, 0.0199391, 1.2921, -0.191132, -0.935271, 156.246, -52.7021, -119.275, 1.07532, -0.0933526, -0.431729, 0.10133, 1.15808, 0.00197562, 0.429927, -0.0394593, 1.07936, 254.476, -74.2755, -187.715, -0.976811, 0.00207337, -0.482263, 0.00164765, 1.08937, 0.00134622, 0.482264, 0.000477703, -0.976812, 190.481, -75.9646, -126.379, 1.86979, 0.250568, -0.433498, -0.244005, 1.91939, 0.0569757, 0.437226, -0.00039123, 1.88565, 80.6295, -24.9278, -38.1469, 0.404137, -0.00434452, -1.63177, 0.00343294, 1.68107, -0.00362554, 1.63177, -0.00246065, 0.404145, 144.884, -25.8607, -50.6673, -1.23709, -0.262961, -1.49416, -0.0900766, 1.93726, -0.266366, 1.51445, -0.0995776, -1.23636, 188.363, -79.0958, -206.49, 0.900304, 0.197896, 0.746597, -0.0562147, 1.16037, -0.239785, -0.770331, 0.146608, 0.890064, 61.7476, -73.2647, -168.359, -1.81825, -0.00781192, 0.550346, -0.00605301, 1.89971, 0.00696744, -0.550368, 0.00491507, -1.81826, 128.414, -75.8827, -144.178, 0.226289, -0.00715874, -1.79856, -0.00497059, 1.81273, -0.00784053, 1.79857, 0.00591041, 0.226267, 211.446, -25.9122, -84.5778, -1.31913, 0.114401, -0.778937, 0.141915, 1.52955, -0.0156904, 0.774397, -0.0854318, -1.32398, 104.162, -80.0293, -214.049, 0.633965, 0.0248867, 0.817162, -0.0152549, 1.03425, -0.0196631, -0.817399, 0, 0.634148, 48.7358, -0.785278, 17.9179, 1.87798, 0.141323, 0.658018, -0.0535236, 1.97564, -0.271555, -0.670891, 0.23798, 1.86361, 133.565, -32.2905, -20.322, 0.185492, -0.0235425, 1.36463, -1.2586, 0.529726, 0.180219, -0.527903, -1.27122, 0.0498263, 25.9318, -2.84056, -76.4336, -0.807985, 0.0446279, 1.5299, -0.0282828, 1.72927, -0.0653803, -1.53029, -0.0555235, -0.806571, 99.886, -75.588, -142.284, -1.69958, 0.00339864, -0.547821, 0.00299453, 1.78569, 0.00178794, 0.547823, 0.000783045, -1.69959, 173.729, -75.9326, -125.345, 0.14388, 0.0199047, 1.35848, 0.0224961, 1.36586, -0.0223953, -1.35844, 0.0247271, 0.143513, 273.98, -38.4893, -96.9135, -0.499588, 0.160372, -1.38749, 0.0543299, 1.47469, 0.150889, 1.39567, 0, -0.502533, 127.969, -5.26208, 20.4887, 0.857946, 0.0205477, -1.13796, 0.280549, 1.37727, 0.236383, 1.10303, -0.366282, 0.824994, 116.849, -72.7328, -103.672, -1.12371, 0.0966564, -0.0637446, 0.0943027, 1.12488, 0.0432724, 0.0671776, 0.0377231, -1.12703, 214.841, -36.5844, -3.66725, -0.0144088, 0.084932, -1.86042, -0.202347, 1.84939, 0.0859956, 1.85133, 0.202796, -0.00508033, 220.215, -30.5526, -76.0597, -1.29051, 0, -0.485196, 0, 1.3787, 0, 0.485196, 0, -1.29051, 1.80547, -0.453506, 40.6514, -0.724801, 1.84738, 0.0348172, 1.84769, 0.724826, 0.00519224, -0.00788214, 0.0343084, -1.98447, 50.0243, -44.2335, -49.2415, -0.727457, 0.0285136, -0.870002, 0.237392, 1.09733, -0.162532, 0.837474, -0.286284, -0.709641, 172.684, -79.2783, -189.604, -0.139109, 0.0368608, 1.05851, -0.0130507, 1.06746, -0.0388876, -1.05907, -0.0179957, -0.138556, 54.9202, -73.0585, -107.819, 0.563721, 0.184092, -1.59618, -0.0613044, 1.6928, 0.173584, 1.6056, 0, 0.567045, 115.202, -3.87366, 11.2447, -1.71705, 0.0454338, -0.392792, 0.0568764, 1.76049, -0.0449945, 0.391299, -0.0565261, -1.71706, 107.039, -75.4077, -130.92, -0.195243, 0.711988, 0.71696, 0.232156, 0.742296, -0.673928, -0.983394, 0.0338806, -0.301443, 16.3897, -70.4144, -193.109, -1.25839, 0.0333572, 0.298062, 0.022874, 1.29254, -0.0480816, -0.299049, -0.0415012, -1.25792, 110.502, -75.5772, -133.418, 1.97006, -0.107598, 0.279226, 0.118946, 1.98775, -0.0732428, -0.274584, 0.0890798, 1.97163, 42.1671, -7.64125, -25.1079, -0.411958, -0.0214165, -1.09006, -0.0169997, 1.16526, -0.0164695, 1.09014, 0.010078, -0.412185, 111.848, -5.04248, -5.50767, -1.46122, 0.0400029, 0.793189, 0.0351572, 1.66262, -0.0190843, -0.793418, 0, -1.46164, 79.2291, -1.51907, 56.962, 0.264439, 0.0129126, -1.66284, -0.0395196, 1.68331, 0.00678681, 1.66242, 0.0379621, 0.264667, 221.721, -30.8249, -69.0883, 0.695598, -0.00629843, -1.3646, -0.000670215, 1.53166, -0.00741113, 1.36461, 0.00396281, 0.695587, 121.224, -75.8735, -159.153, 0.854907, 0.119333, -1.00124, -0.0639422, 1.31645, 0.102304, 1.0063, -0.0177303, 0.857112, 56.6473, -20.2982, -27.6148, -1.46593, -0.138981, 1.20987, -0.127943, 1.90044, 0.0632887, -1.21109, -0.0325415, -1.47114, 195.713, -53.6478, -111.035, 1.5917, -0.144402, 0.824136, 0.100003, 1.79136, 0.120735, -0.830693, -0.0610374, 1.59367, 256.652, -73.845, -180.228, 1.40464, 0.00298266, 0.694885, -0.00236869, 1.56713, -0.0019385, -0.694888, 0.000687202, 1.40464, 141.529, -75.8514, -167.715, -1.20157, 0.101381, -0.277636, 0.111586, 1.23191, -0.0330908, 0.273694, -0.0571696, -1.20539, 253.13, -72.7557, -149.195, 0.726494, -0.00729465, 1.61834, 0.00717455, 1.77392, 0.00477518, -1.61834, 0.00458961, 0.726515, 115.953, -75.8924, -160.248, -1.063, 1.26693, -0.786334, 0.967827, 1.32086, 0.819786, 1.13434, 0.0602878, -1.43633, 16.7591, -71.8828, -168.701, 0.0600605, 0.00566863, 1.29505, 0.0553571, 1.29524, -0.00823679, -1.29388, 0.0556788, 0.0597624, 166.783, -35.932, -4.57074, 1.81633, 0.262325, 0.538938, -0.251488, 1.8946, -0.0746212, -0.544079, 0, 1.83365, 132.095, -10.7353, 47.9247, 1.28009, 0.726414, -0.964294, -0.70865, 1.58994, 0.257003, 0.977423, 0.201389, 1.44922, 159.494, -17.7662, 9.86668, -1.77223, -0.0494399, -0.700555, -0.100163, 1.89994, 0.119304, 0.695118, 0.147721, -1.7689, 328.653, -37.9195, -121.348, -0.769567, 0.094719, 1.03115, -0.0813177, 1.27524, -0.17783, -1.03229, -0.171068, -0.754706, 217.293, -79.6064, -213.861, -0.32953, 0.144362, -1.11095, 0.0677951, 1.15846, 0.130426, 1.11823, -0.0276921, -0.33529, 9.82908, -4.80537, -180.003, -0.358529, 0.771041, 0.700283, -0.90437, 0.13698, -0.613837, -0.516736, -0.774711, 0.588431, 262.602, -71.8332, -135.649, -0.604982, -0.00155202, 1.87329, 0.00132775, 1.96855, 0.00205975, -1.87329, 0.0018965, -0.604981, 170.27, -25.8772, -94.066, 0.519769, 0.0530377, -1.22624, 0.02657, 1.33086, 0.0688252, 1.2271, -0.0512823, 0.517915, 79.5749, -74.0455, -114.846, -0.768372, -0.223638, 1.45988, -0.179649, 1.64756, 0.157836, -1.46594, -0.0846867, -0.784536, 202.733, -76.9926, -203.523, -1.2744, 0.0425277, -0.605669, 0.0579442, 1.41026, -0.0228978, 0.604389, -0.0455328, -1.2749, 82.9162, -75.5378, -155.21, 0.833192, 0.0275106, -0.782878, -0.0200488, 1.14329, 0.0188381, 0.783104, 0, 0.833433, 41.2333, -0.604736, 52.1173, -1.25701, 0.0908122, -0.321192, 0.0941862, 1.29716, -0.00185412, 0.320219, -0.0250524, -1.26029, 239.162, -61.1726, -123.748, 0.554975, 0.0470166, 1.78573, -0.464434, 1.80941, 0.0966984, -1.72491, -0.472059, 0.548504, 173.147, -79.539, -190.558, 0.132195, -0.137833, -1.30743, 0.0546426, 1.31347, -0.132944, 1.31354, -0.0407679, 0.137111, 220.39, -76.2688, -170.529, -0.144171, 0.00976374, -1.14278, -0.150263, 1.14168, 0.0287113, 1.1329, 0.15267, -0.14162, 306.984, -39.4573, -88.9934, 1.54356, 0.00480585, 0.892206, -0.00384548, 1.78287, -0.0029505, -0.892211, 0.000630054, 1.54356, 183.828, -25.9098, -77.1063, -0.692614, 0.048839, 1.52599, 0.0173568, 1.67581, -0.0457562, -1.52667, -0.00310465, -0.692825, 311.086, -38.7359, -153.622, 0.418912, 0.00195144, 1.19701, 0.00203822, 1.2682, -0.00278079, -1.19701, 0.00284236, 0.418907, 194.227, -25.9125, -92.4564, -1.84812, 0.143541, 0.648107, 0.100755, 1.95571, -0.145837, -0.656121, -0.103999, -1.84794, 196.727, -58.1799, -123.169, -1.40061, 0.0267578, -1.21759, 0.332485, 1.79352, -0.343049, 1.17162, -0.476983, -1.35821, 125.571, -72.4878, -102.262, -1.67526, -0.0168423, -0.217642, -0.0148403, 1.68928, -0.0164947, 0.217788, -0.0144446, -1.67527, 13.0508, -0.227066, -0.813398, 1.49133, -0.00414025, -0.118134, 0.00426713, 1.496, 0.00143805, 0.118129, -0.00177052, 1.49134, 130.887, -25.9304, -73.522, -1.53845, -0.226192, 0.646009, -0.241741, 1.66638, 0.00776131, -0.640352, -0.0856536, -1.55497, 189.149, -79.4788, -216.018, 1.65148, -0.122856, -0.379415, 0.139306, 1.69223, 0.0584104, 0.373688, -0.0878884, 1.65502, 105.865, -72.7248, -100.505, -1.72287, 0.0421826, -0.324755, 0.0414526, 1.75321, 0.00781366, 0.324849, 0, -1.72337, 84.3982, -1.64348, 59.7168, 1.11587, 0.0832629, 0.202882, -0.0573345, 1.12624, -0.146863, -0.211676, 0.133877, 1.10929, 63.8411, -73.0971, -172.284, -0.00766649, 0.210414, 0.980651, 0.177367, 0.965508, -0.205778, -0.987164, 0.171842, -0.0445889, 40.8427, -7.64421, -26.5043, 0.193479, 0.292385, 1.51353, -0.0963577, 1.52471, -0.282229, -1.5385, -0.0587246, 0.208015, 240.025, -31.6655, -62.0001, -0.605546, 0.209942, 0.91305, 0.0801704, 1.09479, -0.19856, -0.933439, -0.0421661, -0.609373, 236.962, -31.3653, -69.4539, -0.0702163, -0.115496, -1.35952, -0.0292551, 1.36113, -0.114122, 1.3641, 0.0232463, -0.0724279, 235.927, -32.9272, -101.347, 1.21784, 0.0306231, 0.369868, -0.0293015, 1.27277, -0.00889911, -0.369975, 0, 1.2182, 67.2552, -1.23094, 63.0599, -0.771743, 0.0497074, -1.21537, 0.0471402, 1.43949, 0.0289402, 1.21548, -0.0242675, -0.772801, 73.5962, -73.4643, -93.6349, -0.500802, 0.0466618, -1.52364, -0.0157612, 1.60351, 0.0542885, 1.52427, 0.0319114, -0.500032, 126.709, -79.9143, -200.197, 0.902647, 0, -1.50203, 0, 1.75238, 0, 1.50203, 0, 0.902647, 21.6383, -0.453506, 17.4464, -1.82362, 0.520736, 0.145809, 0.525563, 1.82747, 0.0466304, -0.127321, 0.0849941, -1.89594, 174.14, -31.8658, 36.7345, -1.8988, 0.287438, 0.0608305, 0.28233, 1.89519, -0.14242, -0.0813069, -0.131806, -1.91514, 70.1036, -7.30215, -20.0235, 1.11382, 0.0270378, -0.149128, -0.0267986, 1.12376, 0.00358804, 0.149171, 0, 1.11414, 90.5785, -1.79219, 61.6255, -0.448495, 0.0249205, 0.933621, 0.0107909, 1.03576, -0.0224631, -0.933891, 0, -0.448625, 75.59, -1.4315, 40.5781, -0.544261, 0.48326, 1.52613, 0.172093, 1.62024, -0.451689, -1.59154, 0.00993565, -0.570734, 12.3039, -5.56178, -201.47, 1.88822, 0, -0.345343, 0, 1.91954, 0, 0.345343, 0, 1.88822, 30.2075, -0.453506, -17.4356, -0.0329961, 0.0262624, 1.09103, 0.000793892, 1.09153, -0.0262504, -1.09135, 0, -0.0330056, 56.8472, -0.980469, 52.4789, -0.725145, 0.160287, 1.10105, 0.0841237, 1.31838, -0.136522, -1.10948, -0.00479884, -0.729992, 53.3956, -73.8382, -150.815, -0.868595, 0.0433204, 0.654923, 0.00932655, 1.08703, -0.0595329, -0.656288, -0.0418866, -0.867635, 53.7295, -73.3221, -122.803, 0.402531, 0.00219758, 1.0822, -0.000291567, 1.15464, -0.00223622, -1.0822, 0.000506321, 0.402531, 152.637, -75.8887, -132.216, 1.60159, 0.726376, -0.0559266, -0.727895, 1.58986, -0.195815, -0.0303041, 0.201378, 1.74767, 154.232, -18.8103, 37.0902, 0.649434, -0.0373406, -1.7565, 0.0757173, 1.87152, -0.0117906, 1.75526, -0.0669164, 0.650399, 146.833, -25.9467, -90.7985, -1.2242, 0.223399, 1.31033, 0.120912, 1.79271, -0.192676, -1.32373, -0.0428535, -1.22941, 4.6312, -1.77548, -80.3493, 0.129276, 0.0358692, -1.70179, -0.0910673, 1.70439, 0.0290061, 1.69973, 0.0885889, 0.130987, 190.874, -31.1894, -53.3194, -0.000194347, 0.325852, -1.35555, 0.00973574, 1.35552, 0.325843, 1.39413, -0.00942067, -0.00246446, 38.1301, -6.11646, -36.2485, 1.21813, 0.0312496, 0.450248, -0.0293114, 1.29867, -0.0108342, -0.450379, 0, 1.21848, 56.585, -0.974152, 35.1081, -1.35521, -0.138662, -1.01865, -0.119278, 1.6953, -0.0720829, 1.0211, 0.0140007, -1.36038, 248.011, -74.8299, -193.764, 1.09497, 0.370818, 0.633099, -0.268101, 1.2609, -0.274841, -0.682966, 0.0995474, 1.12291, 192.961, -79.7783, -200.486, -1.73896, 0, 0.812285, 0, 1.91932, 0, -0.812285, 0, -1.73896, 2.73375, -0.453506, -39.5118, -1.11292, 0.00327283, -0.399861, 0.00343874, 1.18258, 0.000108327, 0.39986, -0.00106078, -1.11293, 166.84, -75.9078, -152.298, -0.940673, 0.0712932, -1.32108, 0.00616141, 1.62119, 0.0831017, 1.32298, 0.043141, -0.939704, 236.739, -31.4034, -60.8271, 1.26998, 0.448358, 0.931817, -0.316089, 1.57346, -0.326294, -0.984579, 0.0731805, 1.30668, 171.674, -32.4188, 63.7342, -0.763719, 0.398462, 1.49186, 0.0446847, 1.66936, -0.422996, -1.54351, -0.148828, -0.750409, 159.784, -43.218, -105.584, -0.972309, 0.0489036, -1.02998, 0.0509371, 1.41622, 0.0191572, 1.02988, -0.0238751, -0.97335, 72.9005, -72.9351, -63.6702, -0.789518, -0.0236102, 1.03186, -0.0514075, 1.29842, -0.00962464, -1.03085, -0.0466682, -0.789813, 30.4717, 0.00842285, -2.26826, -1.01195, 0.0469229, 1.56807, -0.371351, 1.8058, -0.293686, -1.52419, -0.471117, -0.969527, 149.495, -80.3633, -196.073, 0.0940114, 0.101313, -1.35342, 0.0686769, 1.35457, 0.10617, 1.35547, -0.0756582, 0.0884901, 95.2995, -79.8198, -222.166, 0.958773, -0.139717, 1.43322, 0.0996464, 1.72414, 0.101418, -1.43656, 0.0263456, 0.963577, 225.797, -74.1051, -151.724, 1.03513, 0.0424775, 1.43017, -0.0249054, 1.76547, -0.0344102, -1.43059, 0, 1.03543, 81.4557, -1.57265, 34.2704, -1.01464, 0.00333237, 0.648341, 0.00222648, 1.20409, -0.00270445, -0.648346, -0.00108008, -1.01464, 155.981, -75.8881, -163.986, 0.0412498, 1.46747, 0.178732, -1.28393, 0.12419, -0.723333, -0.732756, -0.134994, 1.27748, 175.524, -34.2191, 1.91902, -1.13007, 0.00424267, 1.03588, 0.00219833, 1.53301, -0.00388053, -1.03589, -0.00137512, -1.13007, 172.164, -75.9344, -165.301, 0.317112, 0.360583, -1.60368, -0.0744098, 1.63472, 0.35285, 1.64203, 0.00444219, 0.325694, 268.524, -36.6383, -79.9811, 0.81421, -0.00466606, 1.61148, -0.000254573, 1.80549, 0.00535645, -1.61148, -0.00264277, 0.814206, 142.471, -25.8637, -48.4193, -1.05242, 0.14105, 0.244561, 0.137339, 1.08046, -0.0321428, -0.246664, -0.000220231, -1.06134, 71.9559, -23.7964, -42.4112, 0.277264, 0.040534, 1.66154, -0.00667172, 1.68452, -0.0399812, -1.66202, 0, 0.277344, 62.4407, -1.11508, 19.7077, -0.441057, 0.0578967, -0.987928, 0.00859771, 1.08179, 0.0595589, 0.989586, 0.0164057, -0.440835, 41.1567, -72.814, -113.99, -0.331859, 0.0282531, -1.04385, 0.0420655, 1.09477, 0.0162579, 1.04338, -0.0351509, -0.332662, 100.578, -75.0592, -125.26, 1.21662, 0.0298435, 0.732239, 0.0124816, 1.41807, -0.0785337, -0.73274, 0.0737068, 1.21445, 172.141, -32.319, -24.0021, -1.19759, 0, -0.464116, 0, 1.28437, 0, 0.464116, 0, -1.19759, 5.35292, -0.453506, 49.6692, -0.91297, -0.000802406, -0.449789, -0.00115312, 1.01775, 0.000524936, 0.449788, 0.000980502, -0.912971, 169.06, -25.8821, -90.1942, -0.505092, -0.0183918, -1.92254, 0.3438, 1.95487, -0.109025, 1.89164, -0.360204, -0.493528, 36.8926, -75.3295, -88.5048, 1.63028, -0.144219, -0.481444, 0.130043, 1.69964, -0.0687791, 0.485465, 0.0290276, 1.63521, 232.309, -33.2968, -97.6802, 0.695175, 0.0404693, -1.53162, -0.016726, 1.682, 0.0368512, 1.53207, 0, 0.695376, 82.8079, -1.60519, 23.4473, -1.37779, -0.101539, 1.04491, -0.959278, 0.822221, -1.18499, -0.426527, -1.52122, -0.710235, 261.066, -40.1968, -94.4413, -0.411257, -0.135713, -1.62365, -0.0582073, 1.67472, -0.125239, 1.62827, 0.0255906, -0.414567, 225.77, -74.103, -152.002, -1.05618, 0.0153895, -0.00608122, 0.0152766, 1.05602, 0.0192083, 0.00635943, 0.0191179, -1.05612, 278.158, -38.5863, -94.9181, -0.554003, 0.0185932, -0.991692, 0.0198375, 1.13588, 0.0102144, 0.991668, -0.0123351, -0.55422, 94.4858, -25.7868, -45.0493, 0.158769, 0.0153774, 1.05466, -0.273303, 1.03072, 0.0261149, -1.01875, -0.274117, 0.15736, 128.372, -75.1524, -112.124, 0.653848, 0.171551, 1.2504, -0.0840778, 1.41103, -0.149623, -1.25931, -0.00513606, 0.659211, 47.1454, -73.0262, -136.509, 1.35881, 0.0285084, -0.47185, -0.0212444, 1.4383, 0.0257212, 0.472232, -0.0173256, 1.35887, 257.991, -73.7485, -167.211, 0.456741, 0.158672, 1.79031, 0.0210237, 1.84661, -0.169026, -1.7972, 0.0619266, 0.453012, 201.787, -36.027, 13.1586, -0.573493, -0.873968, 0.667818, -0.857163, 0.827073, 0.346291, -0.689256, -0.301371, -0.986305, 266.993, -68.5456, -129.257, -1.009, 0.326078, 0.187047, 0.09627, 0.74204, -0.774277, -0.363381, -0.708834, -0.724503, 141.957, -16.3757, -2.52836, -0.692952, -0.0681671, 0.822109, -0.0982703, 1.07285, 0.00612582, -0.819056, -0.0710481, -0.69627, 229.76, -75.4116, -171.387, -0.413031, 0, -1.17472, 0, 1.24521, 0, 1.17472, 0, -0.413031, 12.0915, -0.453506, -69.8217, 0.0726987, 0.384169, -1.51569, 0.092938, 1.51358, 0.388092, 1.56085, -0.108017, 0.0474869, 123.319, -3.0145, 0.391559, -0.24765, -0.108099, 1.68696, -0.127363, 1.70131, 0.0903215, -1.68561, -0.112668, -0.254672, 249.283, -73.7865, -165.579, -1.49161, 0, -0.652567, 0, 1.62811, 0, 0.652567, 0, -1.49161, 17.7917, -0.453506, 52.6633, -1.79468, -0.0699015, 0.728637, -0.144862, 1.92511, -0.17212, -0.717505, -0.213832, -1.78777, 247.534, -32.7852, -36.7635, -0.812096, 0.223025, 0.833739, 0.122829, 1.16302, -0.191468, -0.854268, -0.0447939, -0.82011, 237.006, -31.424, -70.7609, -0.372881, 0.273429, -1.91392, 0.0312464, 1.94979, 0.272466, 1.9331, 0.0212265, -0.373585, 239.334, -31.8156, -77.9551, 0.733735, 0.0389815, -1.06506, 0.0122817, 1.29267, 0.0557728, 1.06571, -0.0417359, 0.73265, 78.7942, -75.1905, -148.304, 0.236269, 0.0420908, -1.73337, -0.00568467, 1.7494, 0.0417052, 1.73387, 0, 0.236337, 81.5954, -1.576, 33.8328, -0.203013, 0.0256421, 1.04612, 0.00488502, 1.06564, -0.0251725, -1.04643, 0, -0.203071, 54.0724, -0.913696, 16.7249, -0.142787, 0, 1.08708, 0, 1.09641, 0, -1.08708, 0, -0.142787, 4.51424, -0.453506, 23.72, -1.8442, -0.0385134, 0.261141, -0.0556573, 1.85836, -0.118984, -0.258032, -0.125585, -1.84076, 137.833, -80.0533, -213.421, 0.998329, 0.0804068, -1.13802, -0.0698209, 1.51369, 0.0456992, 1.13872, 0.0223186, 1.00052, 34.6738, -72.4425, -115.782, -1.11644, 0.290971, -1.62846, 0.406799, 1.95259, 0.0699924, 1.60345, -0.29278, -1.15161, 286.493, -54.3727, -136.286, 0.866178, -0.288977, -0.67559, 0.400604, 1.0612, 0.0597, 0.615992, -0.283797, 0.911157, 288.338, -44.6875, -122.824, 0.821383, 0.162138, -0.941926, -0.243174, 1.23655, 0.000798956, 0.924327, 0.181233, 0.837233, 159.638, -32.7084, -35.528, 0.607358, 0.135596, -0.935423, -0.0704108, 1.11529, 0.115953, 0.942573, -0.00405961, 0.611412, 42.5451, -72.4949, -144.186, 1.79171, 0.163868, 0.85554, -0.158717, 1.98533, -0.0478733, -0.856511, -0.0251045, 1.79855, 117.65, -14.085, -18.9344, 0.266368, 0.00164187, -1.03323, -0.00272562, 1.06701, 0.000992884, 1.03323, 0.00239146, 0.266371, 199.276, -25.9276, -89.1391, -1.25208, 0.0968629, 0.338736, 0.0744131, 1.29507, -0.0952756, -0.344365, -0.0723349, -1.2522, 104.977, -79.7244, -207.499, -1.36863, 0.120631, 0.316204, 0.128105, 1.40389, 0.0189007, -0.31325, 0.0470798, -1.3738, 231.672, -37.7608, -11.7146, -0.659496, 0, -1.59829, 0, 1.72901, 0, 1.59829, 0, -0.659496, 4.76541, -0.453506, 21.8524, 0.995878, 0.00779779, -0.504438, 0.0373513, 1.11204, 0.0909305, 0.503114, -0.0979932, 0.991748, 112.6, -77.9727, -179.167, -0.849613, -0.0868154, -0.556306, -0.0838332, 1.01533, -0.0304164, 0.556763, 0.0204021, -0.853495, 210.734, -75.4951, -146.418, 0.139834, -0.0900231, 1.09175, 0.0204826, 1.10063, 0.088132, -1.09526, 0.00908961, 0.141033, 214.328, -77.6007, -191.85, 1.65033, 0.0420505, -0.575262, -0.0397073, 1.74772, 0.0138409, 0.575429, 0, 1.65081, 88.124, -1.73312, 45.4541, 1.19836, -0.0228992, 0.341177, 0.0249743, 1.24593, -0.00409552, -0.341032, 0.0107757, 1.19857, 82.8781, -5.56023, -7.19954, 1.49791, 0.159513, 0.510777, -0.21128, 1.57125, 0.128913, -0.491628, -0.189245, 1.50086, 151.598, -52.4256, -120.898, -1.47265, 0.00209243, 0.80122, 0.0427782, 1.67431, 0.0742543, -0.80008, 0.0856697, -1.47078, 280.381, -74.416, -154.153, 0.831152, -0.00386958, -1.24543, 0.003971, 1.4973, -0.00200205, 1.24543, -0.00219166, 0.831159, 152.065, -25.8523, -57.6555, 1.04586, 0.0207809, -1.14667, -0.299401, 1.50301, -0.24584, 1.10709, 0.386841, 1.01677, 153.213, -52.4716, -118.423, -1.66011, 0.00318578, 0.214043, 0.00325348, 1.67385, 0.000320597, -0.214042, 0.000734001, -1.66011, 141.753, -75.8523, -166.512, -0.113283, 0.00428124, 1.54279, -0.00107039, 1.54695, -0.00437136, -1.5428, -0.00138762, -0.11328, 160.346, -75.904, -168.107, -0.0641088, 0.0223959, 1.06369, 0.0565704, 1.06418, -0.0189968, -1.06242, 0.0553129, -0.0651969, 160.418, -31.2162, -40.4731, 0.606142, 0.126397, -0.991704, -0.0659176, 1.16228, 0.107847, 0.997551, 0, 0.609716, 119.897, -4.38428, 59.3562, 0.655298, 0.0887357, -1.83, -0.229419, 1.93221, 0.0115398, 1.81773, 0.211878, 0.661178, 217.955, -30.4549, -76.004, 1.64334, 0.0532694, -0.650459, -0.028505, 1.76647, 0.0726493, 0.652014, -0.0570335, 1.6426, 82.0351, -74.6306, -127.936, 1.33852, 0.0120957, 0.834249, 0.00854728, 1.57682, -0.0365759, -0.834293, 0.0355604, 1.33808, 220.513, -31.126, -55.3278, 1.11336, 0.135658, 0.358617, -0.0846786, 1.16117, -0.176354, -0.37395, 0.140954, 1.10765, 183.718, -32.9794, -25.3787, 1.72943, 0.00363256, -0.807344, -0.0036456, 1.9086, 0.000778213, 0.807344, 0.000836941, 1.72944, 151.397, -75.8805, -145.309, 0.813966, 0.116592, -0.697779, -0.0885183, 1.07212, 0.075883, 0.701893, 0, 0.818765, 114.444, -3.7912, 62.7232, -0.21423, 0.358416, 1.18245, 0.0714611, 1.20168, -0.351297, -1.23351, 0.00736891, -0.225714, 1.49733, -2.26991, -212.667, 0.371359, -0.0744529, -1.01732, 0.0791075, 1.08149, -0.0502717, 1.01697, -0.0569386, 0.375398, 85.1146, -72.2223, -62.9112, 1.25042, 0.0409434, 1.15424, -0.0300853, 1.70171, -0.0277712, -1.15457, 0, 1.25078, 86.3534, -1.69052, 53.3206, -1.06534, 0.0388036, -1.21082, 0.0256324, 1.61277, 0.0291325, 1.21117, 0, -1.06565, 43.3042, -0.654587, 66.4458, 1.16009, 0.176276, 0.107557, -0.182648, 1.16226, 0.065169, -0.0963415, -0.0808325, 1.1716, 77.3891, -7.93498, -13.2349, -0.214917, -0.0229355, -1.26581, -0.000817961, 1.28392, -0.0231248, 1.26602, -0.00306397, -0.214897, 51.461, -72.8758, -77.3103, 0.659946, -0.0077387, 0.829036, -0.0627349, 1.05611, 0.0597979, -0.826695, -0.0863225, 0.657277, 125.58, -78.6021, -187.114, -1.03088, 0.0553308, -1.51901, 0.0800952, 1.83483, 0.0124781, 1.51791, -0.0592406, -1.03228, 85.7995, -75.4398, -149.482, -1.08892, -0.0882723, 0.680375, -0.110613, 1.28222, -0.0106761, -0.677102, -0.0675071, -1.09244, 89.373, -73.6116, -94.8676, -1.08871, -0.0931984, -0.0570919, -0.0942029, 1.08998, 0.0170723, 0.0554188, 0.0219022, -1.09256, 237.199, -73.4947, -133.358, 1.09148, -0.116521, -1.17964, 0.140373, 1.60497, -0.0286514, 1.17704, -0.0833567, 1.09731, 116.37, -71.9374, -100.029, 0.637482, 0.10867, 1.4226, 0.0601501, 1.55472, -0.145716, -1.42548, 0.114201, 0.630047, 150.914, -35.266, -7.86971, 1.28733, 0.00417144, -0.783995, -0.0028595, 1.50727, 0.00332449, 0.784001, -0.00135204, 1.28734, 197.646, -75.9859, -143.613, -1.05561, 0.0506895, -0.344466, 0.0103169, 1.10378, 0.130809, 0.348023, 0.121029, -1.0487, 218.08, -30.1239, -79.0746, 0.189868, -0.121389, 1.40722, 0.0446021, 1.41968, 0.116446, -1.41174, 0.0285272, 0.192939, 211.845, -75.5927, -136.837, 1.66494, 0.0031895, 0.190544, -0.00308526, 1.67581, -0.00109275, -0.190546, 0.00073486, 1.66494, 139.583, -75.8608, -138.108, 1.91423, 0.0382478, 0.244719, -0.0408844, 1.92967, 0.0182116, -0.244292, -0.0232446, 1.91453, 263.966, -73.8623, -166.832, -0.359562, 0.0258957, 1.01433, 0.00865202, 1.07618, -0.0244076, -1.01463, 0, -0.359666, 43.4135, -0.657211, 26.2237, 0.971252, 0.00247753, 0.866696, -0.00146849, 1.30173, -0.00207546, -0.866698, 0.000570822, 0.971253, 176.346, -75.9346, -132.258, 0.259256, -0.156085, -1.89068, 0.00553785, 1.9083, -0.15678, 1.8971, 0.0157598, 0.258836, 229.847, -76.1547, -213.233, 0.632344, 0.0344584, -0.952477, 0.0117013, 1.14268, 0.0491078, 0.953029, -0.0368933, 0.631375, 88.4565, -75.5528, -150.5, -0.785524, 0.272442, 1.19411, 0.318866, 1.41517, -0.113117, -1.18256, 0.200616, -0.823697, 204.374, -77.9621, -181.282, 1.03877, -0.0540252, 1.38151, 0.00666596, 1.72817, 0.0625695, -1.38255, -0.0322591, 1.03829, 23.5613, -0.142548, -0.876518, 1.93672, -0.161121, -0.36024, 0.155413, 1.96988, -0.0455102, 0.362739, 0.0162683, 1.94288, 228.399, -76.267, -213.983, 0.596019, -0.00912172, 1.09763, -0.0850814, 1.24486, 0.0565451, -1.09436, -0.10175, 0.593401, 119.587, -78.7946, -188.931, -1.8464, 0.0445093, 0.110848, 0.0444293, 1.84972, -0.00266729, -0.11088, 0, -1.84693, 65.0376, -1.17758, 10.023, -1.12237, 0.0284336, -0.138429, 0.062262, 1.09425, -0.280055, 0.126864, -0.28548, -1.08725, 113.52, -79.4951, -196.328, -0.570822, 0.403413, 1.04441, 0.207152, 1.19013, -0.34648, -1.10028, 0.0147789, -0.607068, 37.7966, -5.89349, -51.9339, 1.05593, 0.0724837, 0.279661, -0.059057, 1.0915, -0.0599152, -0.282801, 0.0427046, 1.05672, 32.548, -71.4547, -136.765, 1.25723, -0.00336828, -0.343567, 0.00375203, 1.30332, 0.000952355, 0.343563, -0.00190773, 1.25723, 128.985, -25.9005, -49.6019, 0.988167, 0.0356746, 0.301911, -0.039205, 1.03311, 0.00624408, -0.301473, -0.0174166, 0.988791, 78.7787, -73.9151, -109.764, -0.732935, -0.00357167, -1.06224, -0.000771267, 1.29056, -0.00380721, 1.06224, -0.00152737, -0.732934, 141.225, -25.9092, -79.9882, -1.39628, -0.118353, -0.428928, -0.119697, 1.4605, -0.0133474, 0.428555, 0.0223172, -1.40122, 225.786, -74.0869, -152.969, -0.959923, -0.164903, -0.965852, -0.0877341, 1.36115, -0.145198, 0.975892, -0.0398348, -0.9631, 191.52, -36.7048, -102.306, -0.790742, 0.477803, -1.75158, 0.237773, 1.9213, 0.416758, 1.79994, -0.0438977, -0.824549, 257.969, -34.2935, -71.6347, -0.520475, 0.0176899, -1.00203, 0.080216, 1.12622, -0.0217834, 0.998974, -0.0812169, -0.520319, 101.252, -79.4883, -198.457, 0.690354, -0.901785, -1.16238, 1.40642, 0.0278035, 0.813723, -0.431658, -1.35164, 0.792251, 148.36, -29.6164, -94.3138, 0.685794, 0.219405, 0.72048, -0.149265, 0.994685, -0.160829, -0.738208, 0.00270295, 0.701845, 264.71, -35.7999, -78.8492, 0.228239, -0.0140956, 1.91652, -0.154471, 1.92365, 0.032544, -1.91034, -0.157231, 0.226347, 114.202, -78.7468, -187.863, -0.817394, 0.00373239, -1.07269, 0.00322439, 1.34863, 0.00223551, 1.07269, -0.00120973, -0.8174, 205.484, -76.0067, -142.407, 0.941646, -0.166248, -1.71845, 0.050428, 1.95925, -0.161911, 1.72574, 0.0334614, 0.942401, 231.179, -33.3158, -102.186, -0.722032, 0.00269597, -1.21866, 0.000839818, 1.4165, 0.00263606, 1.21867, 0.000621151, -0.722032, 148.117, -75.8829, -125.522, -0.622375, -0.00773929, -0.900985, -0.0178972, 1.09492, 0.0029577, 0.900841, 0.0164061, -0.622416, 231.102, -25.7187, -94.9895, 0.72398, -0.0424383, 0.926672, -0.0764001, 1.16877, 0.113215, -0.924491, -0.129821, 0.716332, 246.496, -31.3069, -23.1149, -0.0399182, 0.223463, -1.72199, -0.246682, 1.70424, 0.226879, 1.71882, 0.24978, -0.00743053, 154.647, -34.2675, -20.4258, 0.426235, 0, 1.20061, 0, 1.27403, 0, -1.20061, 0, 0.426235, 7.00903, -0.453506, -26.0749, 0.881599, 0, 0.666162, 0, 1.10498, 0, -0.666162, 0, 0.881599, 23.0306, -0.453506, 27.6942, -0.51683, 0.104526, -0.884278, 0.0348716, 1.02403, 0.100664, 0.889751, 0.0205818, -0.517596, 63.9517, -22.8317, -39.7864, 0.427663, 0.0921136, -1.66735, -0.0482022, 1.72112, 0.0827208, 1.66919, 0.0261014, 0.429579, 38.4982, -72.9352, -96.6155, -0.183914, 0, -1.41079, 0, 1.42273, 0, 1.41079, 0, -0.183914, 4.08253, -0.453506, -39.1522, -1.04567, 0.21323, 1.51224, 0.303843, 1.82516, -0.0472534, -1.49667, 0.221555, -1.06614, 221.086, -35.7161, -38.7978, -1.46267, 0.0649609, -0.722212, 0.0860348, 1.63005, -0.0276251, 0.720006, -0.0628109, -1.46385, 55.3496, -74.0119, -139.029, 1.06855, -0.0303033, 1.31753, 0.0159434, 1.69636, 0.0260861, -1.31778, -0.00404823, 1.06866, 47.0427, -73.0519, -118.042, -0.693889, -0.37887, 1.26187, -0.830874, 1.23266, -0.0867865, -1.0225, -0.74454, -0.785807, 277.429, -48.1997, -120.948, -1.12659, -0.00500038, -1.57303, -0.000609012, 1.93485, -0.00571435, 1.57304, -0.00283212, -1.12659, 150.983, -25.8539, -56.8102, 0.353499, -0.0764229, 1.05394, -0.0312734, 1.1101, 0.090985, -1.05624, -0.0584451, 0.350034, 89.5668, -73.4977, -92.9589, 0.51179, -0.122627, -1.05116, 0.0864441, 1.16856, -0.0942358, 1.05475, -0.0362703, 0.51777, 204.39, -78.1157, -175.937, 0.0382529, 0.0397224, -1.43602, -0.160161, 1.4277, 0.0352257, 1.42762, 0.159105, 0.04243, 130.09, -13.9198, -21.9446, -0.260583, 0.052701, -1.50399, 0.0343621, 1.52618, 0.0475249, 1.50452, -0.025729, -0.261577, 71.4623, -73.4408, -96.6134, 0.864528, -0.17851, 1.19397, 0.0694649, 1.47347, 0.17, -1.20524, -0.0431219, 0.866241, 187.086, -37.2368, -102.128, -0.365108, 0.595558, 1.7429, -0.263693, 1.7416, -0.650355, -1.82287, -0.371224, -0.255011, 278.834, -39.5984, -82.3671, -1.02073, 0.145641, -0.731491, 0.028779, 1.24662, 0.208045, 0.745293, 0.151327, -1.00986, 192.283, -31.9731, -41.9116, -0.00554402, 0.106657, 1.24195, 0.0422547, 1.24126, -0.106409, -1.24581, 0.0416261, -0.00913601, 212.083, -36.3777, -2.76695, 1.03335, -0.123029, 1.00167, 0.108517, 1.43886, 0.064777, -1.00335, 0.0289125, 1.03863, 214.283, -75.0087, -155.522, -1.75583, 0, -0.580865, 0, 1.84942, 0, 0.580865, 0, -1.75583, 22.5328, -0.453506, -54.6679, 1.89335, 0.166573, 0.421275, -0.148333, 1.93856, -0.0998496, -0.428038, 0.0650101, 1.89804, 199.998, -35.9461, 15.3289, -0.180232, -0.00563871, 1.35933, 0.00277585, 1.37123, 0.00605608, -1.35934, 0.00354773, -0.180218, 95.1466, -75.9786, -160.083, -0.81131, 0.114992, 0.67814, 0.0882295, 1.0574, -0.0737474, -0.682139, 0, -0.816093, 111.145, -3.4325, 37.2498, 1.54134, 0.0341423, -0.513179, -0.0589938, 1.62233, -0.0692529, 0.510919, 0.084324, 1.54016, 175.701, -32.3024, -25.7631, 1.12802, 0.305594, -1.56671, -0.293395, 1.92544, 0.164323, 1.56904, 0.14034, 1.15707, 231.733, -30.3258, -85.3884, -0.912062, 0, -1.35571, 0, 1.63396, 0, 1.35571, 0, -0.912062, 10.6309, -0.453506, -55.0931, 0.690137, 0.170357, -0.928841, 0.0388368, 1.14436, 0.238741, 0.943536, -0.171708, 0.669562, 277.18, -46.8135, -115.711, 0.194835, 0.0709671, -1.05158, -0.0541205, 1.06866, 0.0620924, 1.05259, 0.0418111, 0.197842, 42.6077, -72.5488, -125.877, -1.2096, -0.00523424, -0.396312, -0.00599942, 1.27287, 0.00149989, 0.396301, 0.00329325, -1.20961, 136.541, -75.8562, -141.483, -1.53969, -0.0324258, -0.961375, -0.0252098, 1.81518, -0.0208485, 0.961591, -0.00433178, -1.53989, 52.4499, -72.8861, -89.0438, -1.87921, -0.153712, 0.0237676, -0.153498, 1.8793, 0.0175147, -0.0251154, 0.0155203, -1.88541, 222.64, -76.7251, -215.551, -1.56385, 0.0429763, -0.863065, 0.0376266, 1.7862, 0.0207655, 0.863315, 0, -1.5643, 66.9224, -1.22292, 43.6332, -0.38215, -1.01429, 0.139612, -0.793439, 0.1992, -0.724626, 0.647089, -0.354752, -0.806062, 142.246, -41.9433, -101.611, -1.09912, 0, 0.479309, 0, 1.19908, 0, -0.479309, 0, -1.09912, 2.42833, -0.453506, -33.8756, 1.89688, 0.232037, 0.210698, -0.23139, 1.90854, -0.0186607, -0.211409, -0.00694696, 1.91093, 44.5443, -72.6742, -126.676, 0.0521218, 0.0318209, -1.11328, 0.0117281, 1.11442, 0.0324026, 1.11368, -0.0132253, 0.0517621, 177.697, -53.4108, -116.503, -0.673811, 0.16608, -1.73158, 0.146599, 1.85576, 0.120945, 1.73334, -0.0923919, -0.683357, 281.557, -74.7784, -140.078, 1.28273, -0.00515032, -0.235519, 0.0042977, 1.30416, -0.00511242, 0.235536, 0.00425222, 1.28273, 204.769, -25.9308, -86.9714, 0.594091, -0.15895, 1.85037, 0.0639206, 1.94334, 0.146413, -1.85608, 0.0160491, 0.597304, 242.833, -75.184, -202.163, -1.52961, 0.202939, 0.849819, 0.2792, 1.73707, 0.0877198, -0.827903, 0.210863, -1.54052, 198.6, -33.3393, -36.7356, 0.372939, -1.09784, -0.234182, 1.00369, 0.215609, 0.587621, -0.502695, -0.383975, 0.999519, 144.441, -40.7858, -107.237, -0.752172, -0.0892694, 0.724351, -0.0496827, 1.04403, 0.0770764, -0.728138, 0.0209788, -0.753519, 207.168, -75.3961, -166.519, 1.22265, 0.023506, -1.07846, 0.260171, 1.57555, 0.329298, 1.04687, -0.419016, 1.17771, 138.469, -74.0387, -107.37, 0.179022, -0.0695668, 1.91935, -0.205605, 1.91589, 0.088619, -1.90957, -0.212808, 0.170397, 255.69, -32.0098, -32.4482, 0.99889, 0.0385222, -0.86911, -0.0463559, 1.3238, 0.00539758, 0.868728, 0.0263448, 0.999618, 122.909, -79.8069, -200.037, 0.982131, 0.0931754, -1.15097, -0.124262, 1.51072, 0.0162654, 1.14803, 0.0838088, 0.986407, 22.0129, -71.3967, -123.005, -1.33772, 0.0322995, -0.110845, 0.0321892, 1.34231, 0.00266724, 0.110878, 0, -1.33811, 76.9755, -1.46484, 6.48559, -0.617538, -0.0256926, -1.29894, -0.00793112, 1.43826, -0.0246777, 1.29917, -0.00343229, -0.617579, 52.8623, -72.8468, -75.6343, 0.933934, 0.192219, 0.599996, -0.137534, 1.10919, -0.141267, -0.614839, 0.0438617, 0.942987, 169.26, -45.0691, -104.834, -1.30571, -0.157323, -1.21169, -0.332283, 1.75225, 0.130559, 1.17581, 0.320479, -1.30866, 85.5586, -17.9653, -31.5101, 0.820433, 0, -1.10596, 0, 1.37705, 0, 1.10596, 0, 0.820433, 26.8256, -0.453506, -67.7426, 1.59631, 0.0359185, 0.610399, -0.00181325, 1.70673, -0.0956893, -0.611453, 0.0887107, 1.59385, 182.135, -31.7141, -39.6863, 0.229836, -0.015314, -1.74823, 0.0113533, 1.76325, -0.013953, 1.74826, -0.0094374, 0.229922, 225.127, -44.8899, -106.42, 0.525999, -0.00755013, -1.6579, 0.00172844, 1.73934, -0.00737263, 1.65791, 0.000582064, 0.526001, 307.663, -38.2954, -116.11, 0.496486, -0.016312, -1.81138, 0.0140071, 1.87816, -0.0130742, 1.8114, -0.0100524, 0.496582, 245.823, -44.7107, -106.553, -0.950492, 0, 0.422026, 0, 1.03997, 0, -0.422026, 0, -0.950492, 23.5517, -0.453506, -20.3421, 1.20426, 0.124813, 1.2001, 0.0542503, 1.68826, -0.230022, -1.20535, 0.200686, 1.18866, 76.9863, -75.2214, -162.589, -0.0870893, 0.247118, -1.9817, 0.0585702, 1.98305, 0.244712, 1.99619, -0.0474034, -0.0936373, 6.76551, -3.53572, -142.86, -0.916997, 0.244893, 1.38583, -0.0740758, 1.64338, -0.33942, -1.40535, -0.246416, -0.886369, 287.738, -54.7444, -137.528, -0.686843, 0.521305, -0.620687, 0.239704, 0.907802, 0.497195, 0.774309, 0.181389, -0.704492, 157.141, -22.5568, 49.1492, 1.20516, 1.37867, -0.439679, -1.3284, 1.28096, 0.375442, 0.573926, 0.0698816, 1.79225, 18.5279, -76.2987, -96.4017, -1.1668, 0.0344335, 0.828444, 0.0280763, 1.43099, -0.0199346, -0.828684, 0, -1.16714, 59.4826, -1.04388, 16.8335, -0.360228, 0.00303828, -1.03704, 0.00192718, 1.09783, 0.00254693, 1.03705, -0.000984759, -0.360232, 168.171, -75.9209, -162.628, -0.261775, 0.51493, 1.49652, 0.108339, 1.51912, -0.503758, -1.57892, 0.0188643, -0.282679, 36.2371, -5.44237, -45.6959, -1.60317, 0.044848, -0.672966, 0.0629348, 1.73779, -0.0341158, 0.671516, -0.0557973, -1.60344, 108.388, -74.9962, -117.02, -1.21644, 0.00350807, -0.772152, -0.0281732, 1.43964, 0.0509244, 0.771646, 0.0580923, -1.21538, 291.713, -38.6199, -103.221, -1.37724, 0.162426, 0.716856, 0.0562061, 1.54133, -0.241251, -0.732875, -0.187027, -1.36564, 198.201, -78.7153, -222.025, -1.9036, 0.0473295, 0.495076, 0.0458057, 1.96693, -0.0119129, -0.49522, 0, -1.90415, 59.2788, -1.03899, 20.0344, -0.212744, 0.134886, 1.82565, 0.0151126, 1.83801, -0.134037, -1.83057, -0.000502082, -0.21328, 195.749, -34.8535, -14.1067, 1.64066, 0.225344, 0.536558, -0.214292, 1.72617, -0.0697081, -0.541067, -0.000351847, 1.6546, 82.8975, -25.2258, -47.5298, -1.58883, -0.00818629, 1.19947, -0.00343014, 1.99075, 0.00904313, -1.19949, 0.00515061, -1.58883, 116.582, -75.8866, -161.494, 0.975972, 0.192251, -0.962868, -0.147434, 1.37092, 0.124284, 0.970741, 0.0149246, 0.986932, 244.513, -32.5386, -78.2531, 0.00955698, 0.00204826, 1.07614, 0.000453711, 1.07618, -0.00205237, -1.07614, 0.000471918, 0.0095561, 186.565, -75.9545, -132.118, 1.45266, 0.0851995, -1.11829, -0.188843, 1.82237, -0.106465, 1.10552, 0.199343, 1.45125, 203.523, -30.0205, -73.8653, -1.57291, 0.00315461, -0.522649, 0.00276448, 1.65747, 0.00168448, 0.522651, 0.00072682, -1.57291, 180.704, -75.9404, -138.086, 1.44061, 0.0397839, 0.811638, -0.0346614, 1.65352, -0.0195282, -0.811873, 0, 1.44103, 96.9324, -1.9451, 3.86825, -0.811538, -0.134987, -1.67565, 0.0283792, 1.85932, -0.163527, 1.68084, -0.0965666, -0.806271, 125.644, -70.8846, -92.721, 1.61519, -0.0406387, -1.11978, 0.108839, 1.96091, 0.0858255, 1.11522, -0.132515, 1.61342, 143.865, -80.2852, -218.703, 1.74244, 0.167657, 0.573843, -0.137452, 1.8332, -0.118233, -0.581817, 0.0690163, 1.74649, 198.927, -35.6281, 8.71889, 1.07645, -0.0265868, -0.345812, 0.0188149, 1.13044, -0.0283429, 0.346322, 0.0212242, 1.07641, 97.2507, -79.5564, -209.632, 0.485879, 0.0338953, 1.53784, 0.0696442, 1.61059, -0.0575029, -1.53663, 0.0837138, 0.483654, 184.489, -30.9749, -54.8617, 1.56716, 0.211373, 0.650184, -0.210839, 1.6962, -0.043236, -0.650357, -0.0405465, 1.58076, 3.66589, -3.11174, -141.282, 1.55398, 0.169289, 0.0917944, -0.168994, 1.55668, -0.00998258, -0.0923356, 0, 1.56314, 99.7417, -2.19238, 59.3809, 0.134497, 0.118773, -1.29262, -0.0611161, 1.29868, 0.11297, 1.29663, 0.0488928, 0.139406, 215.072, -36.1313, -17.1327, -0.350993, 0, -1.10315, 0, 1.15764, 0, 1.10315, 0, -0.350993, 31.4764, -0.453506, -56.1904, -0.684695, 0.256539, 1.35278, 0.286917, 1.50423, -0.14004, -1.34667, 0.190053, -0.717641, 55.7434, -72.7068, -164.67, -1.04994, -0.00410845, -1.04948, -0.00166369, 1.48451, -0.00414707, 1.04948, -0.00175692, -1.04994, 144.545, -25.8872, -69.2737, 1.32642, -0.00563295, -0.613613, 0.00594337, 1.46147, -0.000568774, 0.613611, -0.00197915, 1.32643, 124.617, -25.9049, -43.9961, -0.00569127, -0.0230135, 1.25219, 0.0107266, 1.25215, 0.0230616, -1.25235, 0.0108295, -0.00549299, 97.5048, -5.27223, -9.41956, -0.248058, -0.11076, 1.27166, 0.00443947, 1.29537, 0.113691, -1.27647, 0.0260292, -0.246728, 216.159, -75.4255, -126.799, -1.70335, 0.0461017, 0.877519, 0.0409828, 1.9161, -0.0211133, -0.877773, 0, -1.70384, 95.2404, -1.90437, 37.3933, -1.26822, -0.277831, -0.876654, -0.209396, 1.54137, -0.185567, 0.895469, -0.0330485, -1.28497, 250.006, -32.2614, -94.0827, -1.16762, -0.0943508, -0.0907075, -0.0909139, 1.17046, -0.0471938, 0.0941519, -0.0398813, -1.17048, 221.719, -76.9484, -188.666, -0.186802, 0, -1.30516, 0, 1.31846, 0, 1.30516, 0, -0.186802, 22.7034, -0.453506, -69.8683, -0.665931, 0.0254879, 1.4076, -0.0043877, 1.55708, -0.0302705, -1.40782, -0.0169092, -0.665731, 98.479, -25.8491, -44.7663, 1.27944, 0.0328259, 0.473306, -0.0307868, 1.36418, -0.011389, -0.473443, 0, 1.27981, 60.0697, -1.05801, 16.7136, 0.53148, 0.464312, -1.72014, 1.04255, 1.3746, 0.693166, 1.44483, -1.16267, 0.132581, 151.797, -17.729, -0.0351713, 1.24254, -0.109829, -1.09762, 0.0422707, 1.65682, -0.117932, 1.10229, 0.0602679, 1.2418, 46.9922, -6.06631, -13.3874, -1.37106, -0.0290015, 0.869446, -0.0265671, 1.62349, 0.012259, -0.869524, -0.00387432, -1.37131, 46.0296, -72.9847, -82.2732, 1.69949, 0.221863, -0.00418649, -0.221861, 1.6995, 0.000895877, 0.00426723, -0.00034641, 1.71392, 78.8835, -24.7024, -50.2802, -0.116221, 0.118646, 1.01639, 0.136682, 1.01556, -0.102919, -1.01412, 0.123278, -0.130353, 200.777, -33.6363, -36.3854, -1.07376, 0.622133, -0.260043, 0.534458, 1.08338, 0.385051, 0.411128, 0.216472, -1.17972, 172.175, -24.247, 14.3983, -1.41771, -0.0262545, -0.387512, -0.0244005, 1.46972, -0.0103061, 0.387633, -0.00350735, -1.41792, 63.2206, -72.6304, -62.5365, 0.710932, 0.0337299, -0.943503, -0.0090962, 1.18128, 0.0353764, 0.944062, -0.0140187, 0.710852, 186.625, -53.6011, -111.056, 0.443519, 0.00224087, 1.09065, -0.00036587, 1.17738, -0.00227029, -1.09065, 0.000516296, 0.443519, 140.899, -75.8571, -152.193, -0.0242827, 0.0216445, 1.32214, -0.0139615, 1.32229, -0.0219033, -1.32225, -0.0143595, -0.0240495, 100.261, -25.8376, -41.024, -1.06988, -0.00484367, -0.316973, -0.00475021, 1.11585, -0.00101788, 0.316974, 0.000373414, -1.06989, 300.994, -38.3219, -123.568, 1.45371, 0.0381459, 0.492983, -0.090703, 1.52552, 0.149425, -0.486066, -0.170586, 1.44652, 130.437, -5.54811, -2.22996, 0.670204, 0.169864, -1.00227, -0.0718735, 1.2054, 0.15623, 1.01402, -0.0268305, 0.673513, 108.251, -12.8128, -18.4983, -0.674654, -0.0100685, 1.25474, 0.0140315, 1.42445, 0.0189749, -1.2547, 0.0213438, -0.674462, 217.756, -25.8215, -94.4279, -1.39245, 0.0020949, 0.937216, 0.0496276, 1.67629, 0.0699864, -0.935904, 0.0857707, -1.39069, 272.007, -74.3771, -154.708, 0.802219, 0.184139, 1.31064, -0.261741, 1.5244, -0.0539649, -1.29737, -0.193684, 0.82131, 162.101, -53.7191, -122.377, -0.211923, -0.136284, -1.59232, -0.0452655, 1.60612, -0.131441, 1.5975, 0.0274305, -0.214961, 223.362, -33.988, -101.656, 1.24378, 0.0315464, -0.41486, -0.0299256, 1.31114, 0.00998161, 0.41498, 0, 1.24414, 78.3266, -1.49736, 54.5006, -1.57838, 0.0231991, -0.31258, 0.102339, 1.55499, -0.401354, 0.296263, -0.413545, -1.52668, 132.201, -73.0229, -103.902, 1.19319, 0.0295196, 0.285082, -0.0287114, 1.22678, -0.00685984, -0.285165, 0, 1.19354, 69.5833, -1.28696, 19.7732, -1.03333, -0.00526366, -0.892891, -0.00277359, 1.36566, -0.00484083, 0.892902, -0.0018494, -1.03334, 119.353, -25.9414, -55.9717, 1.00226, 0.0147726, -0.212758, 0.0407223, 0.990178, 0.260587, 0.209346, -0.263336, 0.967907, 100.883, -74.1527, -109.907, 0.241077, 0.00499955, -1.79034, 0.000938764, 1.8065, 0.00517108, 1.79035, -0.00162044, 0.241073, 199.769, -75.9879, -139.263, 0.0501992, -0.0323653, -1.37546, -0.0246469, 1.37614, -0.0332807, 1.37562, 0.0258372, 0.0495971, 93.1244, -79.6634, -209.1, 0.714381, 0.0329444, -1.39528, -0.0874342, 1.56541, -0.00780478, 1.39292, 0.0813654, 0.715098, 167.017, -31.4267, -39.0953, 1.65552, 0.202137, -0.544957, -0.256713, 1.7302, -0.138094, 0.521475, 0.210029, 1.66209, 215.532, -33.984, -47.7211, -1.17315, 0.0455864, 0.954634, 0.00452055, 1.51169, -0.0666323, -0.955711, -0.0488076, -1.17214, 87.3938, -75.2543, -142.249, -0.782401, 0, -0.797549, 0, 1.11724, 0, 0.797549, 0, -0.782401, 1.91538, -0.453506, -59.0386, -1.15831, 0.104083, -0.89786, -0.0259758, 1.45503, 0.202182, 0.903499, 0.175269, -1.14527, 136.707, -31.9823, -24.747, -1.15015, 0.031489, 0.409218, 0.016515, 1.22015, -0.0474724, -0.410096, -0.0391768, -1.1496, 121.374, -75.7996, -131.604, -1.32955, 0.0729749, -0.346371, 0.0654965, 1.37378, 0.0380243, 0.347863, 0.0202558, -1.33101, 27.7734, -72.2075, -106.86, 0.983317, -0.0796764, 0.568583, 0.0254318, 1.13258, 0.114728, -0.573575, -0.0863771, 0.979846, 142.396, -40.0449, -99.6636, 1.40188, -0.119515, -0.485289, 0.129454, 1.48264, 0.00881967, 0.482733, -0.0505182, 1.40694, 267.536, -73.2436, -188.329, 0.541289, 0.130322, -1.35381, 0.0192638, 1.4562, 0.147881, 1.35993, -0.0724992, 0.536757, 266.312, -74.0667, -153.185, 0.244567, 0.529064, 1.33507, -0.0515284, 1.35666, -0.528178, -1.43516, 0.0414487, 0.246476, 56.373, -80.3532, -59.9557, -0.352332, 0.361594, -1.22051, 0.0412244, 1.26897, 0.364053, 1.27228, 0.0590191, -0.349792, 181.617, -32.8496, 12.0794, 0.251723, 0.202403, -1.43998, -0.0348535, 1.46182, 0.19938, 1.45372, 0, 0.254124, 134.032, -11.0035, 27.7847, 1.03877, 0.0159958, 0.598016, -0.0188535, 1.19857, 0.00068956, -0.597933, -0.0100032, 1.0389, 3.2612, -0.133865, 5.86635, 0.785411, 0.0620971, -1.61799, 0.000175638, 1.79829, 0.0691021, 1.61918, -0.0303163, 0.784826, 78.2231, -73.493, -85.8603, 1.23109, 0.814802, 1.30996, -0.372849, 1.7834, -0.75889, -1.49695, 0.225893, 1.26632, 163.921, -20.9558, 19.0794, -1.17991, 0.0305836, -0.472832, 0.0283889, 1.27113, 0.0113764, 0.472969, 0, -1.18025, 72.2475, -1.35107, 44.6023, 0.417401, 0.00697459, 1.84353, -0.0183901, 1.89012, -0.00298706, -1.84345, -0.0172764, 0.417449, 101.966, -25.836, -38.8407, 1.79436, -0.189823, -0.235707, 0.195468, 1.8089, 0.0312616, 0.231047, -0.0561454, 1.8041, 212.154, -77.3774, -178.402, -0.603991, 0.00331296, -1.63253, 0.000433672, 1.74067, 0.00337199, 1.63253, 0.000763306, -0.603991, 143.701, -75.8651, -146.445, 1.32385, 0.0414601, -0.983135, 0.216055, 1.59557, 0.358218, 0.959997, -0.41627, 1.27514, 186.714, -79.4077, -188.703, 1.5567, 0.229105, -0.560917, -0.21554, 1.65467, 0.0776644, 0.566268, 0, 1.57155, 134.542, -11.0742, 41.616, -1.49779, -0.103112, -0.0786651, -0.0986821, 1.49778, -0.0843339, 0.0841554, -0.078856, -1.49897, 91.1274, -71.9477, -65.5591, -0.9753, -0.0183467, -1.56054, 0.00362083, 1.84017, -0.0238972, 1.56064, -0.0157349, -0.975179, 10.3305, -0.219269, 3.27089, -1.17352, -0.107111, -0.306067, -0.157232, 1.19299, 0.185362, 0.283598, 0.218193, -1.16373, 97.501, -17.9827, -25.5523, -0.116211, 0.0215087, -1.01678, -0.0503507, 1.02202, 0.0273742, 1.01576, 0.0531217, -0.11497, 163.055, -31.4468, -37.1031, 0.416308, 0.00354807, -1.81712, -0.00158918, 1.8642, 0.00327591, 1.81713, 0.000817474, 0.41631, 170.971, -75.9231, -134.671, -0.121764, 0.587008, 1.72761, 0.0639177, 1.73177, -0.583914, -1.8235, 0.0215049, -0.135829, 41.2388, -6.81842, -71.411, -1.24085, 0.176311, 1.04344, 0.134942, 1.62126, -0.113473, -1.04959, 0, -1.24817, 101.054, -2.33508, 22.2674, 1.8346, -0.0170659, -0.190579, 0.0512298, 1.81394, 0.330727, 0.184356, -0.334236, 1.80463, 35.7462, -76.0791, -92.5146, -0.6671, -0.041327, 0.930788, -0.12675, 1.13816, -0.040308, -0.923043, -0.126421, -0.667162, 251.931, -32.7592, -37.966, 1.07991, 0.412668, 0.710629, -0.504479, 1.25926, 0.0353697, -0.648683, -0.292328, 1.15553, 258.562, -63.2248, -124.942, 0.515927, -0.0178964, 0.887795, -0.00851538, 1.02662, 0.0256435, -0.887935, -0.020244, 0.5156, 120.077, -4.67226, -5.94179, -0.865993, -0.309022, 1.47989, -0.088959, 1.71295, 0.305631, -1.50919, 0.0763509, -0.867195, 267.695, -45.751, -114.65, -0.533156, 0.119436, 1.53768, 0.0387055, 1.62749, -0.112992, -1.54183, -0.000444576, -0.534559, 180.876, -33.758, 0.840803, 1.30635, 0.239015, 0.888247, -0.259505, 1.57592, -0.0424024, -0.882479, -0.109602, 1.32736, 76.8405, -7.65886, -10.4609, 0.0408418, 0.058125, 1.683, -0.0297956, 1.68326, -0.0574108, -1.68374, -0.0283771, 0.0418398, 72.2355, -73.2817, -85.59, 0.451456, 0.197615, 0.933298, 0.0481538, 1.02649, -0.240641, -0.952774, 0.145516, 0.430065, 204.195, -77.7165, -182.772, -0.870384, 0, -0.718955, 0, 1.12892, 0, 0.718955, 0, -0.870384, 22.3103, -0.453506, 6.66254, -0.712259, 0, -1.12678, 0, 1.33302, 0, 1.12678, 0, -0.712259, 21.04, -0.453506, -51.052, -0.238696, -0.100885, -1.35891, 0.0058765, 1.37951, -0.103447, 1.36264, -0.0236216, -0.237597, 196.544, -53.6248, -113.238, 0.551814, 0, 1.01438, 0, 1.15476, 0, -1.01438, 0, 0.551814, 28.1625, -0.453506, -36.6077, -0.802273, 0.030017, -0.842966, 0.0477444, 1.16312, -0.0040224, 0.842148, -0.0373455, -0.802824, 140.958, -75.8544, -117.572, -1.48304, 0.209363, -0.610423, 0.19373, 1.60375, 0.0793833, 0.615563, -0.000326894, -1.49564, 81.2436, -25.0093, -44.3272, -1.25884, 0.174437, -0.0500551, 0.174299, 1.25984, 0.00693062, 0.0505326, 0, -1.27085, 132.187, -10.7481, 46.0705, -0.97137, 0.0301775, 0.41662, 0.0227864, 1.05687, -0.0234258, -0.417089, -0.0125423, -0.971556, 181.848, -53.5175, -115.506, -1.22321, 0.158189, 0.603467, 0.214039, 1.35403, 0.078913, -0.585989, 0.164365, -1.23087, 211.616, -34.0306, -43.5688, 0.905897, 0.00299497, -0.591997, -0.00197608, 1.08218, 0.00245098, 0.592002, -0.000970722, 0.905898, 196.429, -75.9868, -148.31, 1.69085, 0.189175, 0.408717, -0.183879, 1.73955, -0.0444478, -0.411127, 0, 1.70082, 99.4707, -2.16292, 39.818, -0.892175, 0.030322, 0.890092, 0.0214659, 1.26025, -0.0214158, -0.89035, 0, -0.892433, 80.1458, -1.54112, 56.155, 0.298964, -0.267734, -0.987088, 0.980194, 0.368582, 0.196903, 0.291965, -0.96326, 0.3497, 71.2702, -34.3955, -53.0565, 1.99592, 0.00380228, 0.0858277, -0.00376113, 1.99777, -0.00103859, -0.0858295, 0.000876044, 1.99593, 160.062, -75.894, -152.504, 0.824925, 0.152978, -1.66806, 0.00984588, 1.85889, 0.175349, 1.67503, -0.0862662, 0.820461, 264.708, -73.1525, -137.215, 1.77984, 0.143728, 0.802502, -0.236847, 1.93506, 0.178727, -0.780109, -0.259581, 1.77667, 213.872, -78.644, -208.581, -0.426955, 0.146901, -0.959997, 0.208847, 1.03803, 0.0659578, 0.94845, -0.162442, -0.446677, 282.839, -53.3338, -132.989, 0.358471, -0.258756, -0.915636, 0.335848, 0.949893, -0.136952, 0.890253, -0.254156, 0.420357, 282.047, -43.92, -113.55, -0.158484, -0.0730479, 1.48282, 0.00295071, 1.49123, 0.0737774, -1.48461, 0.0107618, -0.158146, 239.414, -31.3919, -9.89053, -1.34854, 0.00262933, 0.299901, 0.00269814, 1.38148, 2.05602e-05, -0.2999, 0.000605797, -1.34854, 176.681, -75.9303, -143.411, 1.53357, 0, 0.169143, 0, 1.54287, 0, -0.169143, 0, 1.53357, 5.69148, -0.453506, 55.402, -0.93646, 0.203866, 1.0182, -0.0161352, 1.36806, -0.288758, -1.03828, -0.205134, -0.913859, 281.587, -52.861, -131.08, -0.412703, -0.0131901, 1.46158, -0.0114072, 1.51871, 0.0104847, -1.4616, -0.00812854, -0.412781, 212.131, -44.9942, -104.82, 1.38468, 0.151001, 0.103171, -0.150583, 1.38852, -0.0112198, -0.10378, 0, 1.39284, 100.019, -2.2225, 6.42097, 0.91893, -0.0591528, 0.952088, 0.00729222, 1.32239, 0.075121, -0.953896, -0.0468753, 0.917762, 40.4858, 0.524246, 2.35329, 1.53627, 0.00338573, -0.896879, -0.00331721, 1.7789, 0.00103333, 0.896879, 0.00078007, 1.53627, 151.599, -75.8799, -147.469, -0.0387299, -0.0862354, 1.05365, 0.00556275, 1.05432, 0.0864952, -1.05715, 0.00870716, -0.0381463, 226.143, -76.5103, -206.865, -1.19406, 0.0287756, -0.0677567, 0.0287294, 1.19598, 0.00163024, 0.0677763, 0, -1.19441, 95.1033, -1.90106, 53.0724, 1.14786, 0.183185, 0.623661, -0.154096, 1.30626, -0.100067, -0.631478, 0.0142207, 1.15807, 244.213, -32.5216, -75.9462, -0.0932706, -0.120541, -1.40697, -0.0363409, 1.40977, -0.118373, 1.41165, 0.028328, -0.0960083, 208.179, -75.4572, -159.176, 0.464394, -0.351102, 1.62599, -0.105489, 1.67855, 0.39258, -1.66011, -0.204877, 0.429901, 231.459, -78.9183, -215.324, -0.750164, 0.350375, -1.19301, 0.21454, 1.4089, 0.278876, 1.22475, -0.0321903, -0.779575, 266.154, -35.9475, -54.9338, -0.90306, 0.0338442, -1.3333, -0.0502687, 1.60817, 0.0748693, 1.33278, 0.0835878, -0.900587, 171.797, -31.5186, -39.2628, 0.767713, 0.465266, 1.63257, -1.23997, 1.37743, 0.190542, -1.15941, -1.16506, 0.87724, 151.924, -19.0402, -1.53463, 0.505561, -1.47579, -0.369067, 1.45755, 0.358572, 0.562784, -0.435554, -0.513059, 1.45493, 138.454, -67.334, -93.48, -0.392285, 0, 1.42456, 0, 1.47758, 0, -1.42456, 0, -0.392285, 31.5696, -0.453506, -35.0057, -1.0723, 0.041384, 0.53559, 0.0279842, 1.19845, -0.0365749, -0.536457, -0.020204, -1.07248, 64.6525, -72.8407, -74.9667, 1.26637, 0.161841, 1.39565, -0.0617421, 1.88349, -0.162388, -1.40365, 0.0631633, 1.2663, 213.843, -36.4536, -5.01178, -0.858801, -0.0407422, 1.50479, 0.00806458, 1.73231, 0.0515046, -1.50532, 0.0325244, -0.858223, 77.4227, -79.913, -215.479, 1.01859, 0.119829, 1.49114, -0.00911437, 1.80445, -0.13878, -1.49592, 0.0705985, 1.01618, 40.4104, -72.2453, -129.903, 0.811324, 0.00365352, 1.0414, -0.00317952, 1.32013, -0.00215434, -1.0414, -0.00118417, 0.811329, 194.326, -76.007, -177.139, -0.0212097, -0.255453, -1.689, -0.215351, 1.67606, -0.250791, 1.69458, 0.209799, -0.0530108, 183.51, -37.631, -97.1641, 0.343257, 0.217573, -1.84433, -0.263261, 1.86233, 0.1707, 1.83837, 0.226068, 0.368816, 198.076, -34.5287, -26.4343, 0.894133, 0.277249, -0.728536, -0.209723, 1.15333, 0.181515, 0.750765, -0.00801551, 0.918365, 41.8692, -7.05293, -41.6632, -0.475208, 0.449094, -1.12048, 0.0832384, 1.2135, 0.451076, 1.20426, 0.0933382, -0.473328, 42.3578, -74.1175, -76.5149, -0.45794, 0.210821, 1.54863, 0.0594638, 1.61492, -0.202261, -1.56178, -0.00032917, -0.461784, 70.0805, -23.5517, -42.9497, -0.824669, 0.00423189, -1.3359, 0.00175086, 1.56994, 0.00389245, 1.3359, 0.000554807, -0.824671, 188.329, -25.9254, -67.6658, 1.07137, -0.113064, -0.700746, -0.0334857, 1.25929, -0.25438, 0.709018, 0.23032, 1.04685, 99.6371, -16.6704, -31.6786, -1.33214, 0, -0.218751, 0, 1.34998, 0, 0.218751, 0, -1.33214, 9.89026, -0.453506, -66.6632, -1.62005, 0.169915, -0.116462, 0.182349, 1.6124, -0.184118, 0.0958298, -0.195651, -1.6185, 208.693, -78.191, -208.592, 0.158499, 0.301992, -1.24625, -0.029192, 1.25626, 0.300705, 1.28199, -0.00873085, 0.160929, 41.2593, -6.90695, -41.7539, -1.20119, -0.10034, 0.687367, -0.122717, 1.3821, -0.0126968, -0.683726, -0.0717813, -1.20531, 108.43, -72.1402, -92.8351, 0.0243232, 0.142318, 1.22688, 0.146036, 1.21818, -0.144204, -1.22644, 0.147875, 0.00716117, 188.714, -33.6759, -24.4486, 1.19426, 0.0396794, 1.13733, -0.0287341, 1.64917, -0.0273643, -1.13766, 0, 1.1946, 90.5531, -1.79158, 57.4984, -1.32152, 0.0134995, -0.326756, 0.0111762, 1.36129, 0.0110395, 0.326844, 0.00803379, -1.32154, 255.772, -44.6638, -105.286, 1.58963, 0.0233416, 0.306558, -0.100947, 1.56454, 0.404329, -0.2904, -0.416085, 1.53753, 102.512, -73.5742, -107.64, 1.66398, 0.230155, 1.08138, -0.0603913, 1.97003, -0.326364, -1.10395, 0.239142, 1.64781, 215.512, -35.9774, -31.2803, -0.341431, -0.00412841, 0.944112, 0.00103867, 1.00395, 0.0047657, -0.94412, 0.00259749, -0.341423, 143.717, -75.8897, -117.168, 0.529121, 0.302163, -0.920286, -0.194901, 1.06041, 0.23611, 0.948811, 0.0493187, 0.561714, 176.403, -32.378, 33.8821, -1.66689, 0.249335, 0.107188, 0.263957, 1.64451, 0.279423, -0.0631215, 0.292544, -1.66211, 308.259, -38.7476, -147.046, 0.401986, 0.0179283, -1.16961, -0.539003, 1.10046, -0.168383, 1.03816, 0.564407, 0.36546, 174.051, -25.8167, -95.2788, 0.976724, -0.0241607, 1.49425, 0.0346019, 1.78497, 0.00624364, -1.49404, 0.0255448, 0.977003, 131.358, -13.9661, -23.3982, 0.906014, -0.0375747, 0.513033, -0.0241771, 1.03482, 0.118487, -0.513839, -0.114943, 0.899018, 245.55, -32.0173, -29.2009, -1.32284, -0.00570043, -0.41444, -0.00651197, 1.38624, 0.00171833, 0.414428, 0.00358657, -1.32285, 111.301, -75.9504, -145.297, -0.200391, -0.0387198, -1.47895, -0.119865, 1.48797, -0.0227148, 1.47459, 0.115691, -0.20283, 319.615, -38.0899, -122.182, -1.17695, -0.126936, 1.47665, -0.149459, 1.88617, 0.0430143, -1.47454, -0.0898641, -1.18299, 233.836, -50.9462, -113.903, -0.357372, -0.0125415, 1.30752, -0.240197, 1.33304, -0.0528644, -1.28533, -0.245626, -0.353662, 22.3742, -76.9268, -96.4325, -0.326909, 0.0742066, 1.01307, 0.0971228, 1.06165, -0.0464243, -1.01113, 0.0779836, -0.331995, 153.411, -35.1214, -12.2155, -0.710299, 0.140499, -0.714656, 0.171574, 1.00242, 0.0265454, 0.707838, -0.101992, -0.723574, 165.929, -53.6617, -117.745, 1.02605, 0.00266209, -0.950562, -0.00236968, 1.3987, 0.00135924, 0.950563, 0.000613344, 1.02605, 170.084, -75.9243, -128.082, -0.895933, 0.029767, 0.853009, 0.0215586, 1.23706, -0.0205257, -0.853256, 0, -0.896193, 68.9086, -1.27072, 5.40736, 0.83998, -0.00443082, -0.674855, 0.00170807, 1.07749, -0.00494836, 0.674867, 0.00278776, 0.839977, 121.224, -75.9034, -147.625, 0.782604, 0.00330036, 0.899804, -0.00297302, 1.19252, -0.00178824, -0.899805, -0.0010697, 0.782609, 164.44, -75.9239, -177.531, -1.6737, -0.00722281, -0.532772, -0.00826094, 1.75645, 0.00213952, 0.532757, 0.00454441, -1.67372, 131.018, -75.8491, -152.991, 1.3715, -0.0139508, 0.626433, -0.101041, 1.48283, 0.254239, -0.618388, -0.273225, 1.3478, 34.7785, -75.0575, -86.9207, 1.46532, 0.512896, -0.452399, -0.379859, 1.49987, 0.470082, 0.568713, -0.319699, 1.47961, 265.219, -36.3963, -89.1874, -1.17831, 0.470026, 0.731211, 0.408932, 1.38665, -0.232368, -0.767052, 0.0172192, -1.24714, 35.1663, -5.05432, -47.7154, -1.827, 0.0461844, 0.588165, 0.0439625, 1.91934, -0.0141528, -0.588335, 0, -1.82753, 55.5803, -0.949982, 36.8569, -1.11443, 0.00426604, -1.06496, 0.0040395, 1.54145, 0.00194766, 1.06496, -0.0013827, -1.11443, 200.991, -75.9844, -131.608, 1.08017, 0.0382545, 0.666447, -0.0540555, 1.26856, 0.0147965, -0.665351, -0.0409576, 1.08075, 79.5659, -75.1523, -146.399, 0.792358, 0.0490843, -1.18036, -0.00744524, 1.42145, 0.0541118, 1.18136, -0.0239634, 0.792031, 76.4854, -73.3074, -78.4143, 0.109609, -0.0027896, -1.00199, 0.00148921, 1.00797, -0.00264333, 1.00199, -0.00119293, 0.109613, 135.622, -25.9126, -69.6713, -1.67443, 0.00411404, -0.226613, -0.00506329, 1.68832, 0.0680628, 0.226593, 0.0681268, -1.67305, 309.732, -38.3219, -111.696, -1.07807, 0.0357036, 1.01948, 0.0259414, 1.48377, -0.0245314, -1.01978, 0, -1.07839, 53.7177, -0.905167, 11.9778, 1.1735, 0.0257251, 0.348042, -0.00656016, 1.22237, -0.068231, -0.34893, 0.0635353, 1.1718, 203.938, -30.9736, -62.7616, 1.02399, 0.127788, 0.060002, -0.128977, 1.02545, 0.0171871, -0.0574, -0.0245128, 1.03179, 4.70936, -3.47282, -150.947, 1.13785, 0.14544, -0.261182, -0.135423, 1.16711, 0.0599307, 0.266513, -0.0278989, 1.14554, 9.67123, -2.67049, -91.5164, -1.38242, 0.0117184, 0.950443, -0.0738131, 1.67115, -0.127965, -0.947645, -0.147262, -1.37653, 81.7835, -77.3978, -175.095, -1.10542, 0.188247, -1.18855, -0.0169175, 1.61132, 0.270941, 1.20325, 0.195597, -1.08811, 218.242, -36.268, -31.5136, 0.871591, -0.00607982, 1.19428, 0.00667403, 1.4785, 0.00265598, -1.19427, 0.00382527, 0.871608, 107.641, -75.952, -150.485, -0.606013, 0.713094, -1.11191, 0.0846095, 1.24178, 0.750272, 1.31821, 0.248122, -0.559327, 144.297, -18.4326, 65.4213, 0.124402, -0.0857934, 0.995843, 0.0307121, 1.00338, 0.0826062, -0.99906, 0.020162, 0.126541, 217.852, -74.8136, -150.047, 1.29203, 0.728652, 0.0705363, -0.697604, 1.26888, -0.329489, -0.22194, 0.253536, 1.44628, 150.895, -21.6941, 62.7796, 0.90921, -0.106279, 0.447252, 0.0813679, 1.01277, 0.0752503, -0.452448, -0.0314349, 0.912303, 210.777, -77.7176, -184.706, -0.266832, 0.220557, 1.27592, 0.207001, 1.29324, -0.180261, -1.27819, 0.163396, -0.295551, 60.374, -71.5492, -180.083, -1.62032, 0.0650302, -0.960278, 0.0721317, 1.88323, 0.00582174, 0.95977, -0.0317483, -1.62161, 65.3188, -72.6778, -63.9397, 0.912569, 0.152701, 1.26447, -0.143507, 1.55796, -0.0845745, -1.26554, -0.0665544, 0.921384, 87.4307, -0.891876, 0.172732, -1.55628, 0, -0.130162, 0, 1.56171, 0, 0.130162, 0, -1.55628, 29.9402, -0.453506, 23.8767, 0.441369, -0.127406, -1.70093, 0.12041, 1.7549, -0.100203, 1.70144, -0.0911433, 0.448328, 119.203, -70.5087, -76.4802, 1.34923, 0.0397213, -0.951071, -0.032466, 1.65074, 0.0228853, 0.951346, 0, 1.34962, 37.1692, -0.506943, 21.222, -0.249991, 1.0645, -0.179374, 0.864896, 0.307686, 0.62058, 0.645984, 0, -0.9003, 35.9452, -3.90073, -26.6591, -0.391347, 0.0152222, 1.94593, 0.0468755, 1.98439, -0.00609589, -1.94543, 0.0447521, -0.391596, 226.371, -31.3633, -46.7978, -0.246431, 0.366486, -1.20379, 0.0657955, 1.22873, 0.36061, 1.25662, 0.00753483, -0.254952, 4.52674, -3.41911, -172.613, 0.319487, -0.0526162, 1.06425, -0.00349855, 1.111, 0.0559778, -1.06555, -0.0194239, 0.318915, 72.5763, -19.5743, -26.3544, 1.27728, 0.141893, -0.266419, -0.138903, 1.30477, 0.0289729, 0.26799, 0, 1.28481, 118.537, -4.2364, 46.4137, -0.0380504, 0.0889687, -1.0353, -0.0315612, 1.03541, 0.0901387, 1.03863, 0.0347228, -0.0351891, 210.91, -36.3901, 0.608663, 0.00127266, 0.133908, -1.03216, -0.151096, 1.02125, 0.132307, 1.02979, 0.149679, 0.0206884, 154.84, -31.6745, -38.2901, 0.993184, 1.05898, 0.150577, -1.04237, 1.00433, -0.187974, -0.239985, 0.0203718, 1.43963, 15.9532, -73.2921, -102.684, -0.3081, 0.178074, -1.5042, -0.147007, 1.52424, 0.210558, 1.50755, 0.185027, -0.286882, 185.825, -32.8999, -28.0614, -0.381868, 0.227807, 1.92677, 0.277707, 1.94993, -0.175506, -1.92021, 0.236701, -0.408554, 184.883, -32.4119, -31.1748, 1.50471, 0.109089, 0.40596, -0.113162, 1.55822, 0.000716547, -0.404844, -0.0300944, 1.50866, 236.686, -60.9749, -122.487, 0.30962, 0.996791, 0.155822, -1.00205, 0.322786, -0.0737738, -0.117341, -0.126309, 1.04116, 46.8247, -13.3345, -29.5491, -1.26503, -0.139151, -1.44334, -0.0165366, 1.91668, -0.17029, 1.44994, -0.0995455, -1.26122, 100.415, -73.3601, -105.119, -0.375827, -0.136154, -1.83993, 0.06847, 1.8754, -0.152764, 1.84369, -0.0974016, -0.369387, 125.25, -70.3921, -82.687, -1.51397, 0.00289893, -0.166841, 0.00280833, 1.52314, 0.000981436, 0.166842, 0.000667912, -1.51397, 155.553, -75.8986, -122.677, -1.26736, 0.0348334, 1.06808, 0.0820528, 1.65517, 0.0433821, -1.06549, 0.0860309, -1.2671, 167.877, -30.9308, -48.9833, 0.195162, 0.360597, 1.6231, -0.0385314, 1.63479, -0.35856, -1.66223, 0.00444236, 0.19888, 279.805, -39.1667, -65.1563, -0.329522, 0.42181, 1.21741, -0.159822, 1.23351, -0.470648, -1.27846, -0.262923, -0.254949, 268.824, -37.4055, -88.1385, -0.633236, 0.398504, 1.53207, 0.141265, 1.65774, -0.372803, -1.57674, -0.0115211, -0.648699, 40.2857, -6.72513, -49.2676, 1.39068, 0.1979, 0.329978, -0.192554, 1.42929, -0.0456887, -0.333126, 0, 1.40395, 147.974, -12.9339, 6.13218, -0.0420835, 0.00331586, -1.19739, 0.00119054, 1.19812, 0.00327606, 1.19739, -0.00107473, -0.0420866, 197.037, -76.003, -164.359, 0.680228, 0.0387192, 1.33811, -0.0604933, 1.50031, -0.0126608, -1.3373, -0.0481722, 0.681211, 135.038, -75.8589, -122.468, 1.80648, 0.165535, -0.131782, -0.169958, 1.80999, -0.0562101, 0.126026, 0.0681427, 1.81317, 213.508, -36.0297, -16.034, 1.67781, 0.328421, 0.349865, -0.334978, 1.71263, -0.00124397, -0.343593, -0.0659623, 1.70965, 246.649, -32.8127, -58.8064, -0.447251, 0.0219999, -1.33113, 0.102746, 1.40062, -0.0113735, 1.32734, -0.101005, -0.447647, 93.9564, -78.9134, -192.074, 0.106282, 0.164392, 1.41347, 0.159235, 1.40713, -0.175628, -1.41406, 0.170811, 0.0864608, 197.158, -32.4613, -42.5815, -0.316858, 0.134269, 1.80196, 0.0227597, 1.82961, -0.132327, -1.80681, -0.000499788, -0.317674, 216.682, -36.3925, -24.2364, -1.09378, 0.0319318, 0.751677, 0.0263165, 1.32716, -0.0180855, -0.751894, 0, -1.09409, 45.3419, -0.703598, 64.7633, -1.11045, -0.0761227, -0.221928, -0.0639767, 1.13112, -0.0678667, 0.225729, -0.0538909, -1.11098, 243.374, -50.2663, -113.106, -1.73651, -0.0128109, -0.248151, 0.00757614, 1.74832, -0.143274, 0.248366, -0.142901, -1.73064, 170.063, -78.0687, -184.575, -0.206685, 0.170185, -1.89274, 0.112943, 1.90163, 0.158652, 1.89701, -0.0946756, -0.215664, 267.065, -73.9071, -148.626, 1.70442, -0.133145, -0.909758, 0.79332, 1.18161, 1.31334, 0.464791, -1.52856, 1.09449, 73.6509, -32.2354, -52.8535, -0.32574, 0.00455149, -1.61202, 0.00234749, 1.6446, 0.00416913, 1.61202, -0.00147522, -0.325745, 188.638, -75.9566, -138.926, 1.31677, -0.00620342, 0.925507, 0.00382185, 1.60948, 0.00535037, -0.92552, -0.00217959, 1.31677, 117.4, -25.9434, -51.8828, -0.0386731, 0.0052308, 1.88966, -0.00158801, 1.89005, -0.00526439, -1.88966, -0.00169539, -0.0386685, 205.243, -75.9996, -135.278, 0.199461, 0, 1.34891, 0, 1.36357, 0, -1.34891, 0, 0.199461, 20.0349, -0.453506, 6.70039, 0.186663, -0.00428331, -1.5364, 0.00233493, 1.5477, -0.00403113, 1.5364, -0.0018317, 0.186669, 149.855, -25.883, -78.1668, 1.13697, -0.0940616, 0.234388, 0.0957065, 1.16074, 0.00156119, -0.233721, 0.0177366, 1.14085, 242.522, -72.757, -151.246, -0.337421, 0.103911, -1.52917, -0.0375408, 1.56475, 0.114613, 1.53223, 0.0612204, -0.333938, 36.2942, -72.0526, -127.842, -1.08846, -0.012815, -0.856493, 0.145307, 1.36211, -0.205041, 0.844175, -0.250981, -1.06905, 27.3279, -74.3408, -82.6506, 1.83823, 0.0491977, 0.508721, -0.0637221, 1.90634, 0.045896, -0.507107, -0.061209, 1.83831, 89.9657, -75.5323, -148.526, -1.05806, 0.12974, 1.41551, 0.24467, 1.75489, 0.0220383, -1.40023, 0.208606, -1.06575, 69.794, -74.4349, -164.732, 0.297452, 0.0113971, -1.45606, -0.0351103, 1.48575, 0.00445704, 1.45568, 0.0335068, 0.297637, 221.722, -30.7185, -73.8067, 1.28273, 0.167777, -0.254943, -0.165615, 1.30781, 0.0273857, 0.256353, 0.00538, 1.29337, 69.8659, -23.5483, -36.8336, 0.712663, 0.203196, -1.72723, -0.0775017, 1.86848, 0.187835, 1.73741, 0, 0.716865, 99.8681, -2.20615, 52.2963, -1.01022, -0.00434716, -0.311473, -0.00496005, 1.05715, 0.00133292, 0.311464, 0.00273513, -1.01023, 109.683, -75.9347, -153.905, -0.929235, -0.00593414, 1.10408, -0.00096458, 1.44307, 0.00694431, -1.10409, 0.00373361, -0.929228, 103.056, -75.9208, -169.805, -0.0685984, 0, 1.67724, 0, 1.67864, 0, -1.67724, 0, -0.0685984, 23.1663, -0.453506, -48.376, 1.25554, 0.151931, -0.612718, -0.13654, 1.39707, 0.0666328, 0.616331, 0, 1.26295, 104.53, -2.71313, 30.6733, 0.535408, 0.0448223, -1.65315, 0.0392667, 1.7368, 0.0598075, 1.65329, -0.0557653, 0.533942, 120.72, -75.1967, -113.354, 0.795328, 0.0296474, -0.829783, 0.00613371, 1.14879, 0.0469243, 0.83029, -0.0368856, 0.794495, 95.5984, -75.8029, -152.424, -0.431425, 0.00542139, 1.91082, -0.000520042, 1.95892, -0.00567527, -1.91083, -0.00175717, -0.431422, 203.21, -75.9916, -132.666, -0.534008, 0.146363, -1.92158, 0.0397155, 1.9944, 0.140873, 1.92674, -0.000544804, -0.535483, 195.387, -34.8287, -20.4393, -1.68471, 0.0426345, -0.548685, 0.0405387, 1.77181, 0.0132028, 0.548844, 0, -1.6852, 39.3891, -0.560364, 59.0997, 0.445809, 1.04649, 0.0174434, -0.335853, 0.125077, 1.0797, 0.991291, -0.428259, 0.357962, 172.763, -47.0031, -3.47714, 1.57133, 0.125442, 0.678415, -0.151126, 1.70911, 0.0340119, -0.67316, -0.0908855, 1.57596, 203.923, -58.6379, -121.85, 0.815332, 0, -0.675997, 0, 1.05912, 0, 0.675997, 0, 0.815332, 10.4991, -0.453506, -31.6088, -0.467391, -0.00478533, 1.15022, -0.00335912, 1.24156, 0.00380034, -1.15023, -0.00168134, -0.4674, 119.105, -25.9684, -75.261, 0.692446, 0.0766955, -0.782259, -0.143066, 1.0374, -0.0249298, 0.77288, 0.123318, 0.696234, 82.6337, -75.1428, -166.762, -1.38641, 0, 1.10278, 0, 1.77151, 0, -1.10278, 0, -1.38641, 20.699, -0.453506, -45.4051, 0.799891, 0.0274577, -1.72827, 0.433091, 1.84043, 0.229686, 1.67335, -0.489458, 0.766697, 137.933, -74.7386, -110.032, 0.256352, 0.173599, 1.57561, -0.0278782, 1.59632, -0.171346, -1.5849, 0, 0.257864, 126.359, -5.08705, 48.3728, -0.570387, 0.174683, -1.10093, 0.105079, 1.23961, 0.142246, 1.10974, -0.0275918, -0.579328, 114.548, -13.6947, -18.2539, 0.451378, -0.0067476, -1.48748, 0.00146156, 1.55446, -0.00660791, 1.4875, 0.000520195, 0.45138, 301.956, -38.321, -113.891, -0.995362, -0.102575, 1.27551, -0.147421, 1.61438, 0.014785, -1.2711, -0.106911, -1.00052, 248.544, -74.1437, -170.264, 0.372598, 0.00642174, 0.988265, 0.142004, 1.04486, -0.0603281, -0.978031, 0.154154, 0.367737, 192.063, -77.9172, -178.491, 0.937909, 0.220999, 1.50574, -0.153073, 1.77345, -0.164944, -1.51415, -0.0423931, 0.949372, 8.45024, -4.11798, -158.435, 0.451391, -0.00259403, -1.19879, -0.00100952, 1.28096, -0.00315195, 1.19879, 0.00205546, 0.451387, 273.713, -41.1487, -100.009, -0.089192, -0.0371588, 1.02579, -0.116516, 1.02337, 0.02694, -1.01983, -0.113671, -0.0927913, 238.285, -31.4944, -22.1193, 1.91426, -0.0144227, -0.485478, 0.0534839, 1.9683, 0.152414, 0.482739, -0.160881, 1.90823, 183.083, -77.644, -180.547, -1.57537, 0.0354031, 0.596482, 0.064033, 1.68224, 0.0692713, -0.594091, 0.0874377, -1.57424, 199.788, -31.1582, -57.5295, 1.44044, 0.0415406, -0.951862, -0.0346572, 1.72653, 0.022902, 0.952137, 0, 1.44085, 86.3891, -1.69138, 56.8675, 0.99608, -0.0245816, 0.648943, -0.0232148, 1.18612, 0.0805626, -0.648993, -0.0801561, 0.993121, 151.381, -80.4385, -223.276, 0.5416, 1.58142, -1.01448, -0.533076, 1.14174, 1.49521, 1.80164, -0.137576, 0.747378, 44.7283, -9.17001, -29.4598, 0.777919, 0.0395771, 1.83913, -0.0375734, 1.99674, -0.0270759, -1.83917, -0.0240524, 0.778455, 254.85, -73.6976, -168.163, 0.980278, 0.477738, 0.38728, -0.387366, 1.04565, -0.309391, -0.477668, 0.132447, 1.04568, 153.424, -16.4062, 21.0241, -1.65689, -0.13589, -0.12307, -0.136532, 1.6614, 0.00366328, 0.122357, 0.0137208, -1.66245, 236.464, -75.6959, -203.262, 1.2151, 0.0518231, -1.2983, -0.0330058, 1.77821, 0.0400888, 1.29891, -0.00329435, 1.21554, 314.079, -38.8298, -157.255, -1.39666, 0.121663, -0.89316, 0.102741, 1.65783, 0.0651637, 0.895534, -0.000452864, -1.40043, 210.807, -35.9609, -22.4522, -0.651003, -0.00567139, 1.21587, 0.000468782, 1.37917, 0.00668414, -1.21588, 0.0035683, -0.650993, 113.154, -75.8811, -169.075, -0.938899, 0.136586, -0.834219, 0.102105, 1.25597, 0.0907208, 0.839137, 0, -0.944435, 119.855, -4.37973, 29.0126, -0.414188, 0.123588, -1.63233, 0.0308431, 1.68406, 0.119678, 1.63671, -0.000460029, -0.415334, 186.138, -34.1492, -17.5537, -1.60977, 0.179085, 1.11732, 0.189226, 1.95815, -0.041227, -1.11565, 0.0737204, -1.61918, 191.29, -34.4933, -2.87121, -1.1154, 0.234574, 1.51699, 0.102385, 1.88238, -0.215794, -1.5316, -0.044997, -1.11919, 10.8582, -3.93504, -138.229, -1.44938, 0.00692783, 1.19348, -0.0055607, 1.87745, -0.017651, -1.19349, -0.0171605, -1.44929, 100.137, -25.946, -51.615, -0.735544, 0.0432874, 1.50841, -0.0294604, 1.67732, -0.0625006, -1.50874, -0.0538558, -0.734161, 127.144, -75.8757, -129.338, -0.730275, 0.119329, -0.724799, -0.00384961, 1.0214, 0.172039, 0.734546, 0.123988, -0.719682, 197.303, -31.7603, -48.4962, -0.947699, -0.00725668, 1.37716, -0.00365291, 1.67174, 0.00629513, -1.37718, 0.000559442, -0.947706, 289.968, -38.3741, -110.92, 0.742442, -0.107977, -1.29104, 0.120894, 1.48729, -0.054868, 1.28989, -0.0772446, 0.748244, 110.361, -72.3567, -99.7027, -0.422298, -0.0459763, 1.42852, 0.00627175, 1.4895, 0.0497928, -1.42925, 0.0201207, -0.421865, 62.0493, -6.54639, -17.1978, -1.07298, 0.580504, 0.699276, 0.57896, 1.27058, -0.166406, -0.700555, 0.160937, -1.20855, 143.563, -15.117, 46.4143, 1.09034, 0.0262534, 0.0390133, -0.0262366, 1.09104, -0.000938764, -0.0390246, 0, 1.09066, 54.4122, -0.921875, 9.61402, 1.12646, -0.00244338, 0.492553, 0.00301557, 1.22943, -0.000797754, -0.492549, 0.00193907, 1.12646, 272.791, -45.6939, -110.861, -0.828927, 0.485893, -1.40245, 0.238255, 1.62907, 0.423587, 1.46499, 0.00998979, -0.86243, 10.8231, -5.06934, -209.753, -0.1292, 0.0083447, 1.08041, 0.0253506, 1.08783, -0.00537047, -1.08014, 0.0245328, -0.129358, 229.514, -30.7417, -75.4276, -1.19287, -0.0113431, 0.282913, -0.0621229, 1.20566, -0.213594, -0.276241, -0.222155, -1.17365, 32.4472, -74.312, -82.7556, -1.20937, 0.183642, -1.17858, 0.131518, 1.68867, 0.128169, 1.18552, 0, -1.2165, 110.553, -3.3681, 53.1653, -1.08756, 0.0458322, 1.56392, 0.026167, 1.9049, -0.0376282, -1.56437, 0, -1.08788, 52.5647, -0.877411, 58.2791, -0.748657, 0.0263841, -0.696979, 0.0416756, 1.02235, -0.00606488, 0.696232, -0.0328256, -0.749097, 92.0907, -74.4991, -114.636, -0.598948, 0.131287, 1.68505, 0.243102, 1.77583, -0.0519498, -1.67258, 0.211095, -0.610963, 63.1808, -73.7687, -166.224, -0.0805516, -0.0226954, -1.26793, 0.00158734, 1.27048, -0.0228419, 1.26813, -0.00303189, -0.0805101, 53.3057, -72.8539, -81.9453, -0.38798, 0.79675, -1.71448, -0.0620774, 1.74389, 0.824469, 1.88955, 0.220889, -0.324946, 163.814, -19.4942, 7.92671, -0.655289, -0.000799719, -0.77427, -0.00126256, 1.01435, 2.08624e-05, 0.77427, 0.000977218, -0.655289, 170.341, -25.8848, -86.4501, 0.832971, -0.00459527, 0.853, 0.00205536, 1.19224, 0.00441574, -0.85301, -0.00161456, 0.832972, 111.378, -25.9668, -52.0183, -1.5311, 0.0284269, -1.2422, 0.340629, 1.9054, -0.376246, 1.19492, -0.506736, -1.48442, 141.87, -75.7164, -113.487, -1.62311, 0.0439699, -0.839784, 0.0390524, 1.82749, 0.0202054, 0.840027, 0, -1.62358, 96.2131, -1.92776, 38.5343, -1.67232, 0.298933, 0.569831, 0.353169, 1.75281, 0.116949, -0.537903, 0.22146, -1.6948, 54.5153, -71.7494, -170.59, -0.803245, 0.0977888, -1.06319, 0.0592389, 1.33251, 0.0778045, 1.06604, -0.000363998, -0.805426, 188.006, -34.2834, -7.16016, 0.100341, 0.000926251, -1.82672, 0.0312799, 1.8292, 0.00264571, 1.82645, -0.0313779, 0.100311, 13.9125, -0.294922, -7.36167, -0.387949, -0.223346, -1.93659, 0.445007, 1.91229, -0.309689, 1.89796, -0.49402, -0.323234, 201.198, -35.0606, -12.0308, 0.666477, 0.0261865, -0.860446, -0.0160356, 1.08837, 0.0207025, 0.860695, 0, 0.66667, 89.0591, -1.75562, 58.9239, -0.203695, 0.00463552, -1.90034, 0.00446634, 1.91122, 0.00418332, 1.90034, -0.00399503, -0.203704, 159.157, -25.877, -74.7904, -1.27184, -0.151106, 0.676673, -0.154444, 1.43995, 0.0312675, -0.675919, -0.0446937, -1.2804, 225.446, -75.5005, -162.872, 1.2274, 0.0271548, 0.403585, -0.00480787, 1.29031, -0.0721954, -0.404468, 0.0670664, 1.22558, 169.744, -32.528, -19.0106, 0.989472, -0.0111493, -1.16257, 0.101913, 1.52156, 0.0721466, 1.15815, -0.124367, 0.986901, 159.924, -78.0402, -183.318, -1.33877, -0.0974472, -0.465717, -0.0673669, 1.4155, -0.102525, 0.471009, -0.0745237, -1.33839, 80.1469, -72.2944, -57.7858, -1.15162, 0.0149913, -1.57954, -0.0267843, 1.95429, 0.0380761, 1.57938, 0.0440732, -1.15109, 221.778, -31.2561, -49.9886, -0.89121, 0.143767, 0.733138, 0.0933396, 1.15368, -0.11277, -0.741247, -0.027578, -0.89566, 10.3852, -3.86853, -137.913, -1.15833, -0.133814, -1.15544, -0.10431, 1.63603, -0.0849015, 1.15847, 0.0135112, -1.16294, 226.28, -76.5766, -197.472, -0.848203, 0.379479, -1.02855, 0.19149, 1.33174, 0.333425, 1.07947, 0.0619381, -0.867342, 175.317, -32.8171, 49.9801, -0.749652, 0.00283928, -0.700382, 0.00270294, 1.02592, 0.00126589, 0.700383, -0.000920259, -0.749656, 155.301, -75.891, -169.309, -0.313627, 0.161469, 1.51129, -0.15047, 1.53225, -0.194934, -1.51243, -0.185926, -0.293997, 205.467, -78.9958, -218.027, -0.944771, 0.0506551, 0.659681, 0.0590831, 1.15188, -0.00383314, -0.65898, 0.0306524, -0.946121, 239.037, -31.5924, -57.5243, -0.259822, 0.0324065, 1.04333, -0.0258564, 1.07463, -0.0398179, -1.04351, -0.0346964, -0.258789, 71.1808, -74.761, -142.114, -1.50697, 0.0379873, -0.998002, -0.0201857, 1.80504, 0.0991858, 0.99852, 0.0938203, -1.50418, 199.268, -30.9411, -61.4947, 1.55225, 0, 0.213903, 0, 1.56692, 0, -0.213903, 0, 1.55225, 24.0552, -0.453506, -26.5415, 0.73278, -0.113661, 1.38589, -0.0190134, 1.56558, 0.138451, -1.39041, -0.0813108, 0.728503, 119.084, -71.3645, -92.7914, 0.651477, 0.0342418, -1.2653, -0.0156747, 1.42317, 0.0304435, 1.26567, 0, 0.651665, 66.9375, -1.22328, 44.7211, 1.88205, 0.0453286, -0.0848323, -0.0452826, 1.88396, 0.00204108, 0.0848568, 0, 1.8826, 86.6625, -1.69795, 59.8685, 1.60565, 0.139545, 1.01862, -0.118113, 1.9015, -0.0743134, -1.02132, -0.000519427, 1.60999, 208.958, -35.8261, -25.8106, 1.0231, 0.114517, 1.17826, -0.0754051, 1.56046, -0.0861887, -1.18141, -0.000426266, 1.02588, 182.329, -33.8674, -9.42425, -0.23203, -0.0251197, -1.34696, -0.0159152, 1.36675, -0.0227471, 1.3471, 0.0118206, -0.232275, 102.27, -5.1852, -9.35784, 0.875844, 0.0033192, 0.819323, -0.00315888, 1.19933, -0.00148187, -0.819324, -0.00107581, 0.875849, 183.222, -75.9553, -154.233, -1.60672, 0.14389, 0.0996617, 0.138461, 1.60781, -0.0891093, -0.107076, -0.0800473, -1.61068, 275.521, -73.8979, -133.241, -1.87327, -0.00521938, 0.218158, -0.00544253, 1.88592, -0.00161325, -0.218152, -0.00223199, -1.87327, 146.291, -25.9015, -85.3169, 1.60109, 0.0589073, -0.589481, -0.0453295, 1.70591, 0.0473537, 0.59068, -0.028759, 1.60147, 73.3487, -73.0078, -67.0662, 0.2861, 0.00276031, 1.4218, 7.89539e-05, 1.4503, -0.00283152, -1.4218, 0.000635974, 0.286099, 153.365, -75.8852, -143.311, -1.35844, 0.260312, 0.0083714, 0.259786, 1.35746, -0.0548358, -0.0185357, -0.0522827, -1.38207, 243.432, -32.0147, -54.105, -0.503567, 0.0155058, 0.950266, -0.237241, 1.03932, -0.142678, -0.920306, -0.276405, -0.48318, 137.754, -71.4516, -97.6821, -1.97201, 0.0479089, -0.275831, 0.047447, 1.99121, 0.00663655, 0.275911, 0, -1.97258, 95.1358, -1.90186, 38.4203, -0.792047, -0.00479457, 0.855631, -0.00104324, 1.16595, 0.00556772, -0.855644, 0.00301662, -0.792042, 113.227, -75.8781, -170.119, 1.86985, -0.00720972, 0.0326181, 0.00819563, 1.86928, -0.0566456, -0.0323844, 0.0567795, 1.86901, 241.424, -32.9961, -96.6339, -1.75753, 0.0218439, -0.907753, 0.000605589, 1.97769, 0.0464181, 0.908016, 0.0409616, -1.75706, 107.558, -77.6708, -174.782, -1.51931, 0.550741, -1.04946, 0.446421, 1.84649, 0.322727, 1.09791, 0.011323, -1.58349, 12.2731, -5.52245, -206.386, -1.33452, 0.751748, -0.0346616, 0.729133, 1.30909, 0.319232, 0.186255, 0.261572, -1.49805, 148.659, -19.0416, 55.9317, 0.693942, 0.0583941, 1.29176, -0.0773922, 1.46527, -0.0246619, -1.29076, -0.0564614, 0.695958, 54.8339, -73.3637, -122.741, -0.806449, 0.109184, -0.598032, 0.0877008, 1.00399, 0.0650356, 0.601558, 0, -0.811203, 104.786, -2.741, 15.8084, 1.67582, 0.162115, 0.869022, -0.114601, 1.88669, -0.130962, -0.876554, 0.0632704, 1.67855, 226.878, -37.5648, -5.27516, 1.04845, 0.0274835, -0.189817, -0.0209364, 1.06495, 0.0385513, 0.19065, -0.0341935, 1.0481, 93.4132, -75.9085, -157.471, -1.33698, -0.0242688, 0.241167, -0.0244589, 1.35856, 0.00111699, -0.241147, -0.00324208, -1.3372, 63.8834, -72.6024, -55.733, 0.0507483, 0.0376826, 1.56536, -0.00122102, 1.56618, -0.0376628, -1.56581, 0, 0.050763, 68.1712, -1.25298, 53.2619, -1.88655, -0.152872, -0.0232961, -0.1532, 1.88647, 0.0270311, 0.0210342, 0.0288262, -1.89254, 249.336, -72.4142, -137.549, -0.574646, 0.00130199, -0.870642, -0.0437738, 1.04182, 0.0304498, 0.869542, 0.053307, -0.573841, 293.703, -74.3881, -155.024, -1.5358, 0.0117785, 0.0132826, 0.0120746, 1.53547, 0.0345258, -0.013014, 0.034628, -1.53546, 224.059, -31.277, -49.8394, 0.02522, 0.0662756, 1.66408, -0.065129, 1.66303, -0.0652469, -1.66412, -0.064082, 0.0277729, 66.4923, -74.5682, -141.941, 0.751766, 0.0973462, 1.09288, -0.0554692, 1.32648, -0.0799974, -1.09581, -0.00036235, 0.75381, 191.035, -34.5089, -18.8636, 0.196945, -0.00820674, -1.90095, 0.752424, 1.75539, 0.0703752, 1.74572, -0.755664, 0.184125, 322.748, -38.1847, -135.361, 1.24613, 0.0673193, 0.172324, -0.0640602, 1.25785, -0.0281435, -0.173562, 0.0190757, 1.24763, 38.4298, -72.8866, -99.5768, 0.336512, 0.0228171, 1.52938, 0.0227835, 1.56571, -0.0283722, -1.52938, 0.0283451, 0.33609, 281.386, -38.5827, -97.7153, 0.671232, 0.650603, 1.26878, -0.126783, 1.42401, -0.663132, -1.42021, 0.180371, 0.658857, 140.479, -14.5064, 52.7156, 1.83708, 0.0465145, 0.602175, -0.0442005, 1.93326, -0.0144885, -0.60235, 0, 1.83761, 84.5237, -1.64648, 37.6842, 0.574788, 0.0011358, 1.54939, 0.0229717, 1.65238, -0.00973327, -1.54922, 0.0249228, 0.574707, 255.706, -31.7664, -90.206, 1.28434, 0.186373, 0.402881, -0.177829, 1.34604, -0.0557828, -0.406724, 0, 1.29659, 143.299, -12.2867, 29.9275, -1.02591, 0, 0.259463, 0, 1.05821, 0, -0.259463, 0, -1.02591, 12.6935, -0.453506, 18.3277, 0.0471867, 0.275795, 1.82221, -0.134986, 1.81843, -0.271727, -1.83801, -0.126468, 0.066737, 95.2476, -10.9283, -17.3288, 1.21344, -0.0299879, -0.392283, 0.021163, 1.27505, -0.0320077, 0.392858, 0.0239393, 1.21339, 95.8048, -79.5497, -211.799, -0.1761, -0.0797927, -1.49655, 0.299553, 1.47456, -0.113869, 1.46843, -0.310372, -0.156243, 227.613, -31.2997, -36.5295, -1.52984, 0.0037265, -1.22195, 0.00237586, 1.95795, 0.00299654, 1.22195, 0.000858584, -1.52985, 152.626, -75.8773, -157.819, 1.44441, -0.136026, 0.667506, 0.136913, 1.59087, 0.0279276, -0.667325, 0.031967, 1.45053, 215.425, -75.0013, -151.034, -1.64143, 0.0401187, 0.292344, 0.0394972, 1.66726, -0.00703459, -0.292429, 0, -1.6419, 52.3359, -0.871918, 43.9505, -1.62333, 0.202319, -0.908796, 0.176537, 1.86041, 0.0988311, 0.914154, 0, -1.63291, 117.438, -4.1169, 42.8348, 0.86878, 0, 0.898324, -0.874987, 0.283001, 0.84621, -0.203429, -1.21724, 0.196739, 20.9771, -0.868256, -75.7023, 1.84217, 0.183385, 0.391094, -0.166667, 1.88225, -0.0975403, -0.398505, 0.0605154, 1.8487, 257.584, -34.3668, -62.5734, -1.65744, -0.175325, -0.0165794, -0.171873, 1.64461, -0.209378, 0.0383831, -0.206497, -1.65349, 69.0695, -78.4579, -184.02, 0.96683, -0.0199023, 0.55364, 0.0159496, 1.11412, 0.0121976, -0.553768, -0.00265876, 0.966958, 44.6661, -73.0723, -108.77, -0.795458, 0.382689, -1.37902, 0.201068, 1.59195, 0.3258, 1.41694, -0.0110639, -0.820402, 40.6485, -6.75497, -41.0169, -1.22528, 0.745418, 0.500943, 0.789252, 1.29807, -0.00109443, -0.42857, 0.25937, -1.43421, 146.297, -17.7004, 56.0091, 1.75345, 0.00336635, 0.231924, -0.00323558, 1.76872, -0.00121032, -0.231926, 0.000775605, 1.75346, 170.369, -75.9251, -127.489, 0.161694, 0.078293, 1.05592, -0.0680559, 1.06672, -0.0686724, -1.05663, -0.0567248, 0.166008, 206.162, -58.7825, -121.479, 1.77585, 0.0280768, 0.74798, -0.0123306, 1.92663, -0.0430443, -0.748405, 0.0348791, 1.77555, 285.025, -38.5299, -103.558, -1.00012, -0.00435576, 0.0816637, -0.00431399, 1.00345, 0.000689175, -0.0816659, 0.0003358, -1.00013, 290.894, -38.3705, -109.515, -1.66622, -0.643607, 0.222431, -0.593836, 1.08559, -1.30723, 0.333264, -1.28346, -1.21724, 93.4721, -36.9782, -61.3057, -0.625862, 0.56901, -0.793304, 0.167214, 0.990876, 0.578802, 0.961844, 0.197988, -0.616818, 157.515, -22.0048, 45.3098, 0.300814, 1.06239, 0.954932, 0.128999, 0.951685, -1.09941, -1.42265, 0.310933, 0.102228, 168.144, -29.3736, 47.1245, 0.058331, 0.556095, 0.915353, 0.286994, 0.87507, -0.549911, -1.03187, 0.27482, -0.101203, 247.022, -33.0756, -39.4163, -0.813596, 0.133014, -1.6189, -0.132299, 1.79918, 0.214314, 1.61896, 0.213871, -0.796053, 77.9002, -74.4586, -169.574, 0.973848, 0.301728, -1.20492, -0.0863559, 1.54383, 0.316802, 1.23911, -0.129543, 0.969049, 58.6558, -22.0655, -40.4359, 1.01079, -0.153494, 1.45792, 0.290003, 1.75682, -0.0160978, -1.43701, 0.246578, 1.02225, 121.801, -14.9218, -28.7016, -0.496577, 0.156702, -1.75584, -0.0164452, 1.82368, 0.167407, 1.76274, 0.0611577, -0.493071, 217.37, -36.7771, -4.40326, -0.0405375, 0.0595436, 1.49467, -0.0559842, 1.49411, -0.0610397, -1.49481, -0.0575729, -0.0382476, 72.8906, -74.6699, -137.964, 0.616364, -0.0635814, -1.00126, -0.0115942, 1.17459, -0.081725, 1.00321, 0.0526385, 0.614221, 37.9607, -8.34982, -14.3776, -0.671499, 0.010822, -1.24113, -0.0228354, 1.41078, 0.0246561, 1.24097, 0.0318161, -0.671133, 224.922, -30.781, -72.1245, 1.31973, 0, 0.936253, 0, 1.6181, 0, -0.936253, 0, 1.31973, 16.0496, -0.453506, 17.9756, -1.12767, 0.0129312, -0.315642, 0.00591343, 1.17076, 0.0268373, 0.315852, 0.0242486, -1.12742, 82.2233, -77.4659, -171.166, 0.601806, 0, -1.38602, 0, 1.51103, 0, 1.38602, 0, 0.601806, 31.989, -0.453506, 12.9261, 0.184878, 1.72143, -0.0370139, -1.72097, 0.185922, 0.0508655, 0.054537, 0.0313535, 1.73058, 47.8445, -30.7472, -50.1124, 1.06716, 0, 1.18796, 0, 1.59689, 0, -1.18796, 0, 1.06716, 33.0672, -0.453506, 11.7564, -0.48749, 0.147888, 1.08238, 0.034648, 1.18676, -0.146544, -1.09189, -0.0283686, -0.487896, 10.9985, -4.24141, -150.314, -1.11517, 0.191752, -1.54135, 0.296839, 1.88881, 0.0202145, 1.52461, -0.227493, -1.13135, 155.107, -52.8571, -121.523, -1.57895, 0.0390929, -0.382529, 0.0379938, 1.62463, 0.00920468, 0.38264, 0, -1.57941, 40.6552, -0.59082, 29.9671, -1.45961, 0.00462911, 1.22972, 0.000969678, 1.90858, -0.00603362, -1.22973, -0.00398951, -1.45961, 166.159, -25.8841, -70.0372, -0.152061, 0.0584791, -1.46059, 0.0623352, 1.4674, 0.052262, 1.46044, -0.0565436, -0.154308, 59.616, -73.8656, -130.821, 0.386499, 0.0259551, -1.00714, -0.00929923, 1.07876, 0.024232, 1.00743, 0, 0.38661, 96.4268, -1.93292, 42.5773, -0.959429, 0.0314289, -0.88646, 0.023084, 1.30626, 0.0213284, 0.886716, 0, -0.959706, 66.2299, -1.20625, 63.2188, 0.770499, 0.0384242, 1.65797, 0.0699075, 1.8258, -0.0748014, -1.65694, 0.0948994, 0.767822, 181.215, -30.929, -54.419, -1.5557, 0.0619849, 0.050669, 0.0599536, 1.55537, -0.0619654, -0.053057, -0.0599334, -1.5557, 79.9844, -74.351, -122.352, 1.61576, -0.0341662, -0.345838, 0.0566565, 1.6486, 0.101831, 0.342872, -0.11141, 1.61291, 122.531, -80.4213, -214.175, 1.84994, 0.201195, -0.0228724, -0.201179, 1.85008, 0.00248736, 0.0230073, 0, 1.86084, 98.3583, -2.04195, 24.5607, 1.57661, 0.133247, -0.900542, -0.115456, 1.81567, 0.0665199, 0.902995, -0.000495981, 1.58083, 182.702, -33.8924, -0.881833, -0.404164, -0.00369703, -1.27324, 0.000388348, 1.33585, -0.00400208, 1.27325, -0.00158098, -0.404161, 129.027, -25.9384, -75.8762, -0.0305782, -0.0559087, 1.54891, -0.172202, 1.53974, 0.0521782, -1.54032, -0.171027, -0.036582, 257.724, -30.6187, -20.5893, -0.252434, 0.00383253, -1.36161, 0.00192, 1.38481, 0.00354188, 1.36162, -0.00124219, -0.252439, 168.877, -75.9239, -163.765, -1.85988, 0.0070994, 0.492639, 0.00235971, 1.92394, -0.0188171, -0.492684, -0.0175855, -1.8598, 108.324, -25.9537, -49.15, -0.994487, -0.110849, -0.939453, -0.0949711, 1.3679, -0.0608676, 0.941191, 0.0209021, -0.998793, 245.962, -72.6802, -138.032, 0.252143, -0.0190646, 1.03702, 0.00202902, 1.06723, 0.0191266, -1.03719, -0.00254685, 0.252138, 48.4996, -72.9715, -95.2471, -1.66935, 0.537442, -0.67843, 0.493545, 1.8019, 0.213025, 0.711002, 0.0110496, -1.74074, 5.0974, -3.68025, -157.782, 0.679813, -0.113086, 0.825148, -0.0320246, 1.06079, 0.171765, -0.832245, -0.133192, 0.667406, 67.5916, -79.8589, -193.924, 0.750632, 0.0636631, -1.6842, 0.00249292, 1.84364, 0.070801, 1.6854, -0.0310808, 0.749992, 58.023, -73.2074, -110.298, 1.21257, 0.0483598, 0.066361, -0.050809, 1.21348, 0.0440857, -0.064505, -0.0467593, 1.21273, 65.8548, -74.239, -134.058, -0.965681, -0.00201357, -0.274498, -0.00237378, 1.00394, 0.000986615, 0.274495, 0.00159806, -0.965683, 271.296, -41.1527, -100.583, -0.855872, -0.127525, 1.2218, -0.0485157, 1.49145, 0.121684, -1.22748, 0.0299692, -0.856722, 228.626, -74.3704, -126.257, 1.42607, 0.0429821, -0.00362713, -0.0428425, 1.42533, 0.0461493, 0.00501391, -0.0460193, 1.42597, 74.7438, -75.3533, -157.129, -0.187185, 0.119931, -1.08682, 0.0203562, 1.10282, 0.118191, 1.09323, 0, -0.188288, 116.193, -3.98148, 52.8308, 1.4254, 0.277271, 0.808479, -0.136492, 1.62579, -0.316928, -0.843734, 0.205412, 1.41711, 45.0355, -72.7406, -149.949, -0.765203, 0.223179, 1.76565, 0.302296, 1.91031, -0.110454, -1.75384, 0.231892, -0.789395, 201.495, -34.4973, -29.983, -0.538827, -0.25033, 1.28022, -0.0390885, 1.38762, 0.254878, -1.30388, 0.0618499, -0.536691, 271.483, -44.9901, -116.388, 1.63315, 0.0520177, -0.727657, -0.0619896, 1.78756, -0.0113422, 0.726875, 0.0355742, 1.63393, 145.01, -80.1893, -213.14, -1.26358, 0, -0.964134, 0, 1.5894, 0, 0.964134, 0, -1.26358, 17.8743, -0.453506, -54.0628, -1.75349, 0.270661, 0.461457, 0.339419, 1.78516, 0.242693, -0.413516, 0.317565, -1.75758, 328.042, -41.1867, -150.197, -0.789934, 0.0222066, 1.3222, -0.328853, 1.48846, -0.221468, -1.28084, -0.395852, -0.758577, 106.442, -73.1928, -105.986, 0.760263, 0.1487, -1.13652, -0.0826782, 1.36736, 0.123596, 1.14322, 0, 0.764745, 115.699, -3.92773, 23.5008, -1.15606, 0.0243103, 0.0385997, 0.026268, 1.15514, 0.0592106, -0.037295, 0.060041, -1.1548, 177.26, -30.8869, -53.6259, 0.616263, 0.15633, -0.946052, -0.0853276, 1.12907, 0.13099, 0.955077, 0, 0.622142, 136.959, -11.4088, 18.5632, -0.495745, 0.0342418, 1.33404, 0.0119277, 1.42317, -0.0320972, -1.33442, 0, -0.495889, 82.3307, -1.5937, 45.006, 1.40849, 0.0384498, 1.16753, 0.0310544, 1.82701, -0.0976314, -1.16775, 0.0949625, 1.40563, 197.416, -31.0513, -58.6255, 0.819902, 0.0381492, -1.35713, -0.019727, 1.58557, 0.0326528, 1.35752, 0, 0.820139, 95.8969, -1.92018, 51.3562, -0.362273, -0.0234879, 1.21557, 1.17854e-05, 1.26839, 0.024512, -1.2158, 0.00701102, -0.362205, 255.349, -31.6702, -96.6408, -1.34782, -0.00606524, 0.599076, -0.00399242, 1.47495, 0.00595066, -0.599093, 0.0038161, -1.34782, 120.45, -75.8788, -158.36, 1.13553, 0.126853, -0.944722, -0.129242, 1.4763, 0.0428861, 0.944398, 0.0495081, 1.14179, 211.981, -36.5591, 2.90739, -0.619162, -0.0887541, -1.10344, 0.0408111, 1.26162, -0.124377, 1.10625, -0.0962182, -0.613, 144.732, -40.2962, -105.114, -1.1399, 0.471326, -0.828657, 0.555013, 1.37831, 0.0204826, 0.775101, -0.293787, -1.23333, 268.207, -37.1964, -88.1468, -0.973067, 0.00294492, -0.430619, 0.00307927, 1.06409, 0.000318903, 0.430618, -0.000954499, -0.973072, 198.909, -76.01, -166.286, 0.44539, 1.01178, 0.843084, -0.0674756, 0.906352, -1.05207, -1.31527, 0.296122, 0.339465, 171.285, -27.7096, 31.3018, -1.39315, 0.631459, 0.00268988, 0.626824, 1.38211, 0.190997, 0.0764191, 0.175064, -1.51761, 164.957, -20.2467, 9.74226, 0.315067, 0.0474672, 1.14957, -0.0568363, 1.19108, -0.0336038, -1.14914, -0.0458961, 0.316845, 70.8304, -73.988, -122.399, -0.243387, 0.0503623, -1.24102, 0.0575081, 1.26373, 0.0400052, 1.24071, -0.0486954, -0.245302, 65.3317, -74.0141, -128.761, 0.787222, 0.0188706, 1.16896, 0.281186, 1.36484, -0.211395, -1.13479, 0.35128, 0.758543, 152.535, -52.3378, -118.906, 0.176367, 0.0259024, 1.06202, -0.00424343, 1.07657, -0.0255525, -1.06233, 0, 0.176418, 67.7235, -1.2422, 63.9492, -1.37249, -0.0722328, 0.852715, -0.0915546, 1.6148, -0.0105735, -0.850858, -0.0572405, -1.37435, 41.5201, 0.464462, -0.638091, -1.06994, -0.00852662, 0.467267, -0.0458546, 1.16364, -0.0837631, -0.46509, -0.0951115, -1.06669, 152.885, -77.755, -179.198, 1.00515, 0.0239534, -1.15211, 0.0671725, 1.52498, 0.0903099, 1.1504, -0.109974, 1.00137, 80.658, -79.3313, -200.766, -1.16348, 0.126527, 0.000344977, 0.126527, 1.16348, -3.75161e-05, -0.000347011, 0, -1.17034, 105.213, -2.78745, 47.5867, 0.752404, -0.0987589, 0.876636, 0.0819836, 1.15502, 0.059755, -0.878364, 0.0232089, 0.756501, 230.092, -74.1762, -129.682, 0.84414, 0.941698, 0.369846, -0.83671, 0.920586, -0.434273, -0.56877, 0.0433606, 1.18776, 14.7383, -69.8491, -170.564, 1.77174, 0.259627, 0.613992, -0.245314, 1.87511, -0.0850133, -0.61985, 0, 1.78864, 136.366, -11.3267, 56.2052, 1.12282, 1.48387, -0.526952, -1.52728, 1.18381, 0.0792471, 0.383356, 0.370131, 1.85912, 139.893, -12.7831, 48.6914, -0.35692, 0.0527652, -1.486, 0.0373843, 1.52804, 0.0452789, 1.48647, -0.0257604, -0.357947, 75.9652, -73.7432, -105.33, 1.41335, 0.255137, -1.18233, -0.195692, 1.84268, 0.163706, 1.19361, 0, 1.42683, 133.397, -10.9157, 2.3448, 1.06508, 0.276963, -0.664981, -0.236783, 1.25562, 0.143715, 0.680324, 0.00341203, 1.09108, 283.72, -40.0168, -70.1491, 1.30388, -0.152319, 1.21435, 0.135928, 1.78142, 0.0774995, -1.21629, 0.035796, 1.31046, 210.645, -75.76, -133.616, -0.392807, 0.118835, -1.0197, 0.0427176, 1.09274, 0.110892, 1.02571, 0, -0.395123, 122.548, -4.67261, 3.49591, -0.972579, 0.44083, -0.000603683, 0.437252, 0.96487, 0.134454, 0.0560522, 0.122214, -1.05932, 159.821, -17.9566, 10.1902, 1.461, -0.106528, -0.516303, 0.127511, 1.5474, 0.0415485, 0.511526, -0.0814682, 1.46429, 101.857, -71.6745, -74.3983, 1.3878, -0.431706, -0.875526, 0.780598, 1.40457, 0.544765, 0.586159, -0.84837, 1.34744, 274.784, -47.2372, -118.009, -1.308, 0.126171, 0.0908316, 0.129142, 1.31026, 0.0396397, -0.0865557, 0.048268, -1.31347, 71.7938, 0.64563, -1.31016, 0.571168, 0.0466076, 1.851, -0.0137424, 1.93712, -0.0445355, -1.85154, 0, 0.571333, 76.8526, -1.46188, 44.6899, -1.33336, 0.0126329, 0.967298, 0.0320326, 1.64685, 0.0226468, -0.96685, 0.0371399, -1.33322, 217.664, -31.0055, -59.702, 0.785452, -0.0920485, -0.736522, 0.0522818, 1.07654, -0.0787876, 0.740408, 0.021632, 0.786893, 244.528, -72.9434, -129.605, 1.01441, -0.0883569, -0.955628, 0.127447, 1.3906, 0.00671209, 0.951204, -0.0920913, 1.01823, 220.868, -76.6589, -181.691, -1.6916, -0.0168348, 0.946486, -0.0197572, 1.93836, -0.000834003, -0.946429, -0.0103746, -1.69168, 197.707, -45.1277, -106.341, 1.77866, 0.0487434, 0.638271, -0.0663452, 1.88874, 0.0406437, -0.636682, -0.0606438, 1.77886, 109.845, -75.422, -129.109, -1.02309, 0.0362762, -0.239197, 0.0393529, 1.05053, -0.00899813, 0.23871, -0.0177103, -1.0237, 57.1604, -73.2322, -113.535, 0.930912, 0.0455353, -1.18991, 0.0103724, 1.51, 0.0658993, 1.19073, -0.0487529, 0.929692, 87.9129, -75.769, -157.704, -0.911351, -0.0858574, 0.422045, -0.0693832, 1.00413, 0.0544479, -0.425064, 0.020177, -0.913766, 213.243, -75.1731, -151.77, -1.27419, -0.118352, 0.685805, -0.0985295, 1.44698, 0.0666474, -0.688932, 0.0119499, -1.27794, 219.544, -77.0647, -205.094, 0.808304, -0.0107123, 1.22399, -0.0938305, 1.46193, 0.074759, -1.22043, -0.119492, 0.804911, 117.507, -78.66, -187.098, -1.03929, 0.278064, -1.22239, 1.25133, 0.134209, -1.03336, -0.0757101, -1.59886, -0.299332, 65.7007, -5.9541, -9.89974, 0.65006, 0.72883, 1.11918, -0.107296, 1.26919, -0.764194, -1.33126, 0.253598, 0.608094, 155.145, -22.381, 54.0042, -1.00895, 0.0633918, 1.03027, 0.071771, 1.44151, -0.0184096, -1.02972, 0.0383597, -1.01077, 233.513, -30.964, -72.0097, 0.283317, -0.0236386, -1.25462, -0.0056455, 1.28616, -0.0255077, 1.25483, 0.0111236, 0.283155, 95.672, -5.34056, -5.41313, -1.38132, 0.0413061, -1.01916, 0.0332383, 1.7166, 0.0245236, 1.01945, 0, -1.38172, 69.6069, -1.28752, 5.73639, 1.53347, 0.0389387, -0.516824, -0.0368994, 1.61822, 0.0124362, 0.516973, 0, 1.53391, 74.8166, -1.41289, 9.14993, 1.79107, 0.00247806, 0.856843, 0.0415524, 1.98288, -0.0925922, -0.855838, 0.101458, 1.78868, 272.046, -74.1937, -158.294, -1.35108, 0.161788, 0.347294, 0.197683, 1.38484, 0.123919, -0.328192, 0.168105, -1.35508, 207.728, -34.7556, -33.8533, 1.57496, 0.0122024, -0.226346, -0.0171787, 1.59073, -0.0337751, 0.226023, 0.0358743, 1.57464, 214.457, -30.8547, -65.2958, 0.305124, 0, -1.41221, 0, 1.4448, 0, 1.41221, 0, 0.305124, 32.4245, -0.453506, 56.5946, -0.981486, 0.0250282, -0.344622, 0.0236148, 1.04023, 0.00829168, 0.344722, 0, -0.98177, 86.6626, -1.69795, 41.6007, 1.04087, 0.433637, 1.01509, -0.303947, 1.45387, -0.309414, -1.06116, 0.00891543, 1.08431, 8.90323, -4.57242, -197.405, 1.77839, 0, 0.165351, 0, 1.78606, 0, -0.165351, 0, 1.77839, 28.1301, -0.453506, -13.3561, 0.181195, 0.0754724, 1.01195, 0.106564, 1.02086, -0.0952174, -1.00915, 0.121351, 0.171643, 71.3484, -74.39, -166.077, -1.41811, -0.00610569, 0.439956, -0.00469319, 1.48479, 0.00547822, -0.439973, 0.00384155, -1.41812, 132.565, -75.8441, -152.474, 1.0007, 0.637767, 1.5935, -0.318257, 1.88151, -0.553177, -1.68662, 0.0233644, 1.04983, 38.6641, -6.18428, -52.1962, 0.79812, 1.0369, -0.411563, -0.764318, 0.876855, 0.726969, 0.812628, -0.193661, 1.08797, 17.9863, -73.4757, -84.6868, 0.741809, 0.132295, -0.866557, -0.19053, 1.13239, 0.00977726, 0.855641, 0.13746, 0.75345, 178.202, -32.496, -24.0517, -0.834193, 0.0266744, -0.956541, -0.0321536, 1.26748, 0.0633863, 0.956372, 0.0658798, -0.832209, 166.49, -31.6736, -34.1317, -0.367446, -0.0450471, 1.34819, -1.3219, 0.290433, -0.350575, -0.268771, -1.36686, -0.118923, 202.498, -48.3429, -108.745, -0.94965, 0.00124993, 0.31797, 0.0174321, 1.00016, 0.0481311, -0.317494, 0.0511753, -0.94843, 263.054, -74.0545, -160.794, 0.933821, 0.194527, -0.88374, -0.0789358, 1.2826, 0.198915, 0.901447, -0.0892018, 0.932896, 80.0344, -8.43561, -14.6644, -0.66151, 0.32118, 1.54005, 0.0663162, 1.67487, -0.320812, -1.57179, -0.0645079, -0.661688, 244.478, -32.2868, -55.962, -1.72962, 0.0444552, 0.649842, 0.0416149, 1.84766, -0.0156353, -0.65003, 0, -1.73012, 94.933, -1.89697, 31.1906, -1.05765, 0.0999179, -0.85739, 0.0778525, 1.36152, 0.0626315, 0.859674, -0.000371922, -1.06051, 199.318, -35.1148, -11.5282, 0.256666, -1.55655, -0.877417, -0.459107, 0.799214, -1.55211, 1.72682, 0.443842, -0.282243, 195.189, -78.9012, -198.336, -0.211442, -0.0204818, 1.1269, -0.00646679, 1.14656, 0.0196258, -1.12707, -0.00273618, -0.211523, 62.9138, -72.6253, -58.0985, -0.435701, 0.147875, 1.74524, -0.0453986, 1.79687, -0.163583, -1.7509, -0.0833881, -0.43005, 265.211, -73.3986, -141.627, 1.8982, 0.0867347, 0.538193, -0.0690855, 1.97232, -0.0741942, -0.540742, 0.052485, 1.89873, 236.932, -31.6398, -52.2652, -1.6835, 0.00419244, -0.361551, -0.0104818, 1.72049, 0.0687572, 0.361424, 0.0694251, -1.68211, 303, -38.6828, -102.345, -0.960583, 0.0311166, 0.378318, 0.0167232, 1.03186, -0.0424086, -0.379227, -0.0333153, -0.96015, 89.6068, -74.4003, -113.73, 1.61898, 0.405603, -0.871895, -0.359533, 1.83882, 0.187814, 0.89188, 0.0049968, 1.65841, 275.538, -38.2315, -62.9438, -1.3922, 0.0990422, -0.0814569, 0.0883973, 1.38457, 0.172659, 0.0929005, 0.166781, -1.38499, 133.2, -31.343, -27.971, 1.16235, 0.0276457, -0.77112, -0.0137455, 1.39478, 0.0292853, 0.771493, -0.0168013, 1.16231, 270.309, -74.1474, -180.061, -1.76387, -0.0325099, -0.133519, -0.0335708, 1.76885, 0.0128034, 0.133256, 0.0152982, -1.76412, 80.0633, -5.60687, -7.78958, 1.27615, 0.580945, 0.119175, -0.557401, 1.27155, -0.229654, -0.202494, 0.161059, 1.38323, 152.155, -18.2143, 39.8753, -1.35029, 0.0976893, -0.262301, 0.0637602, 1.36566, 0.180386, 0.272543, 0.164503, -1.34174, 152.034, -31.7789, -35.537, -0.903661, 0.0810396, -0.634686, 0.0664908, 1.10428, 0.0463302, 0.636375, -0.000301652, -0.906104, 175.642, -33.3767, -9.65247, -0.809407, 0.0441491, 1.64678, 0.0194745, 1.83494, -0.0396218, -1.64725, 0, -0.809642, 66.7945, -1.21985, 60.2351, 0.519901, 0.0168059, 0.938315, -0.0756233, 1.06994, 0.0227378, -0.935413, -0.0771586, 0.519675, 102.029, -79.5613, -199.3, 0.964387, -0.0252885, -1.03634, 0.0197009, 1.41564, -0.0162109, 1.03646, -0.00337831, 0.964582, 50.5877, -72.9216, -89.9559, -0.39641, 0.800051, -0.538578, 0.202037, 0.638265, 0.799429, 0.943042, 0.199561, -0.397661, 147.267, -12.9315, 19.6033, 0.17148, 0, -1.0642, 0, 1.07792, 0, 1.0642, 0, 0.17148, 28.0294, -0.453506, -73.3711, 1.64865, 0.0923939, -1.11438, -0.197248, 1.97817, -0.127804, 1.10067, 0.216111, 1.64628, 160.949, -30.3711, -52.4605, 1.34891, -0.0982583, 0.130839, 0.0908637, 1.35342, 0.0796206, -0.136078, -0.0702919, 1.35014, 117.268, -70.953, -82.3312, -0.208947, 0.18522, 1.30814, -0.175355, 1.30879, -0.213322, -1.3095, -0.204814, -0.180164, 274.641, -51.0845, -126.029, 0.0488304, 1.76133, 0.610528, -0.808142, 0.570364, -1.58083, -1.67987, -0.223189, 0.778244, 45.9861, -11.6338, -31.8206, -1.35774, 0.00460004, -1.32424, 0.00606116, 1.89659, 0.000373733, 1.32423, -0.00396446, -1.35775, 163.121, -25.8885, -75.6997, -1.20043, 0.102259, 0.707517, 0.087902, 1.39342, -0.0522513, -0.709444, -0.000380635, -1.20364, 206.622, -35.6537, -22.4065, 0.181702, 0.000978993, 1.11144, -0.0036679, 1.12619, -0.000392343, -1.11143, -0.00355654, 0.181704, 161.156, -39.479, -97.2794, 1.66006, 0.027729, 0.613918, -0.0701033, 1.76535, 0.109826, -0.610532, -0.127308, 1.65665, 96.5862, -79.267, -196.405, -1.00686, -0.0963655, 0.611898, -0.0772777, 1.17817, 0.0583878, -0.614601, 0.00972999, -1.00977, 227.502, -76.4814, -196.908, 0.321804, 0.320595, -1.02559, -0.102542, 1.07487, 0.303825, 1.06963, 0.00659131, 0.337682, 4.22598, -3.13536, -204.253, -1.37119, -0.144276, -0.109092, -0.140349, 1.37486, -0.0542094, 0.1141, -0.0426735, -1.37769, 231.137, -74.8417, -160.885, -0.57272, 0.042781, -1.29873, 0.0591817, 1.41866, 0.0206335, 1.29808, -0.0458039, -0.573945, 77.7803, -75.382, -155.183, -1.06131, -0.0119329, 1.24232, -0.108932, 1.6285, -0.0774187, -1.23759, -0.133107, -1.05855, 152.11, -78.2312, -184.954, 1.01747, 0.0352777, -0.0935561, -0.0335466, 1.02162, 0.0203904, 0.0941907, -0.0172229, 1.01788, 68.393, -73.1372, -84.8917, -1.20473, 0.203674, 1.1052, 0.123427, 1.63442, -0.166659, -1.11701, -0.0390696, -1.21041, 8.29366, -3.04286, -114.276, -0.658037, 0.714753, -1.43306, 0.0981838, 1.56442, 0.735186, 1.5984, 0.198156, -0.635128, 163.712, -19.2392, 6.27951, 1.3184, -0.116213, 0.585366, 0.0861546, 1.44167, 0.0921729, -0.590538, -0.0491223, 1.3203, 260.602, -73.697, -185.228, -0.940121, -0.100075, 0.783123, -0.0704006, 1.22352, 0.0718387, -0.786346, 0.0101045, -0.942699, 216.054, -77.3885, -200.439, 0.166118, 0.078793, -1.04196, 0.0458828, 1.05347, 0.086979, 1.04392, -0.0588407, 0.161982, 105.967, -79.5564, -203.164, -1.18893, 0.0470397, -1.55203, 0.0286059, 1.95509, 0.0373422, 1.55248, 0, -1.18927, 95.5014, -1.91066, 5.33519, 0.262218, -0.00823774, 1.09707, -0.0874654, 1.12422, 0.0293474, -1.0936, -0.0918891, 0.260701, 133.546, -77.971, -180.106, 1.75659, -0.0072234, 0.00435791, 0.00723463, 1.75659, -0.00452689, -0.00433925, 0.00454478, 1.7566, 119.026, -75.9235, -143.388, -1.30143, 0.212033, -1.28402, -0.00593285, 1.81491, 0.305712, 1.3014, 0.220311, -1.28266, 210.723, -35.2267, -32.8558, -0.523892, -0.241444, -1.53553, -0.316118, 1.60309, -0.144213, 1.52191, 0.249866, -0.558534, 118.727, -14.924, -31.5725, 0.148946, 0.0862578, -0.993322, -0.0461991, 1.00386, 0.0802457, 0.995989, 0.0336648, 0.15227, 213.235, -36.6696, 2.98539, 1.08887, 0.134785, -0.406189, -0.17464, 1.1537, -0.085329, 0.390714, 0.140047, 1.09386, 203.855, -34.7621, -30.0727, -0.466268, 0.00396067, 1.35303, 7.67338e-05, 1.43112, -0.00416281, -1.35303, -0.00128372, -0.466266, 190.367, -75.9777, -156.928, -0.955558, 0.0107423, -1.205, 0.112427, 1.53196, -0.0754966, 1.19979, -0.134997, -0.952632, 101.823, -77.7024, -176.957, -1.03744, -0.00888346, -0.635072, 0.0441857, 1.21234, -0.089139, 0.633595, -0.099092, -1.03364, 125.039, -79.0022, -191.959, -0.969881, 0.226579, -0.676356, 0.212217, 1.18155, 0.0915021, 0.680999, -0.0455075, -0.991784, 243.32, -32.1383, -57.8703, 1.50847, 0.0300472, -0.151414, -0.0280706, 1.51594, 0.0211737, 0.151793, -0.0182608, 1.50862, 277.103, -74.2019, -173.4, -1.61317, -0.333498, 0.906918, -0.310394, 1.8502, 0.128259, -0.915083, -0.0396703, -1.64229, 248.855, -32.5261, -96.7512, -0.471209, 0.191836, -1.19563, -0.142473, 1.26527, 0.25916, 1.20251, 0.22508, -0.437808, 327.003, -41.9391, -145.081, -1.04148, 0.015462, -0.203524, 0.0114882, 1.061, 0.0218185, 0.203787, 0.0192081, -1.04136, 295.226, -38.8599, -93.5422, 1.31627, -0.0962888, 0.47869, 0.0651385, 1.39867, 0.10223, -0.483914, -0.0736378, 1.31582, 94.6194, -72.1874, -74.6775, -0.473295, 0.00308868, -1.04352, 0.000907029, 1.14583, 0.00298014, 1.04352, 0.000404931, -0.473296, 184.348, -25.9137, -70.0753, -0.967691, -0.274768, -0.39308, -0.140917, 1.00902, -0.358406, 0.458423, -0.269842, -0.93993, 294.488, -45.4322, -131.871, 1.60614, 0.0631603, 0.875661, -0.0702153, 1.82908, -0.00313972, -0.875124, -0.0308354, 1.60738, 58.8279, -73.1344, -104.316, 1.21215, 0.135426, 0.285429, -0.13182, 1.2453, -0.0310403, -0.287112, 0, 1.2193, 98.5808, -2.06615, 2.75948, -1.3401, 0.157597, 0.225078, 0.181593, 1.34897, 0.136658, -0.206206, 0.163751, -1.3424, 216.918, -36.1262, -31.408, -1.67799, -0.0694586, 0.880617, -0.067999, 1.89498, 0.0198962, -0.880731, -0.0139721, -1.67931, 317.455, -37.5486, -133.708, -0.814214, 0.254484, -0.817388, 0.177321, 1.15371, 0.182562, 0.837521, 0.0031351, -0.833293, 276.617, -38.4633, -65.2967, 0.542151, 0.180895, 1.57258, -0.0589587, 1.66341, -0.171017, -1.58185, 0, 0.545348, 125.257, -4.96713, 12.3667, -1.29948, 0.14436, -1.18114, 0.161651, 1.75417, 0.03655, 1.1789, -0.0814063, -1.30696, 257.067, -73.3705, -155.463, 0.323163, 0.216529, 1.23824, 0.103171, 1.26963, -0.248943, -1.25279, 0.160412, 0.298909, 52.8506, -73.565, -153.973, 1.81253, 0.267211, 0.662702, -0.250963, 1.92988, -0.0917576, -0.669024, 0, 1.82982, 137.497, -11.4833, 5.4368, -0.0283136, 0.343527, 1.21971, 0.011641, 1.22003, -0.343347, -1.26711, 0.00353234, -0.0304088, 242.383, -31.1704, -37.3612, -1.39409, -0.204992, -0.585864, -0.158384, 1.5102, -0.151533, 0.600144, -0.0776258, -1.40091, 194.781, -78.9623, -220.842, -1.38596, 0.416677, -0.175586, 0.412242, 1.39701, 0.0612377, 0.185761, 0.00856674, -1.44594, 3.64996, -3.16345, -171.656, -1.15346, 0.195689, -0.622982, 0.0592007, 1.29068, 0.295815, 0.650304, 0.229601, -1.13193, 304.995, -38.8518, -143.679, 1.2485, 0.0649245, -0.68114, -0.130974, 1.41375, -0.105315, 0.671575, 0.155017, 1.24575, 215.251, -29.989, -79.1202, -0.63631, 0.0328617, 1.14164, -0.272808, 1.26467, -0.188456, -1.10906, -0.32994, -0.60865, 125.592, -79.8169, -196.359, -0.0691162, 0.206753, 1.78137, 0.224061, 1.76972, -0.196708, -1.77928, 0.214826, -0.0939685, 188.432, -32.4114, -34.5941, 1.16401, 0, 1.50555, 0, 1.90305, 0, -1.50555, 0, 1.16401, 31.933, -0.453506, -70.4599, 1.38349, -0.0177935, -1.33578, 0.254655, 1.89128, 0.238558, 1.3114, -0.348486, 1.36289, 29.7774, -74.3854, -83.0177, -1.53697, 0.244025, 0.816123, 0.224484, 1.74011, -0.097541, -0.821713, 0.0189438, -1.55316, 239.485, -31.8937, -72.7236, 1.06182, -0.136117, -0.746094, 0.134592, 1.29711, -0.0450966, 0.746371, -0.0402602, 1.06956, 209.833, -77.4945, -174.326, -1.57575, 0, -0.993028, 0, 1.86255, 0, 0.993028, 0, -1.57575, 12.4519, -0.453506, 23.9513, -0.33826, 0.169847, -1.26472, -0.141519, 1.29534, 0.211809, 1.2682, 0.189849, -0.313695, 156.793, -32.4282, -34.8956, 0.79942, -0.0747307, -0.650648, 0.0917173, 1.02935, -0.00553789, 0.648471, -0.0534608, 0.802886, 110.715, -71.3222, -80.2792, 0.713369, -0.0284542, 1.3741, 0.0249958, 1.54818, 0.0190823, -1.37416, 0.0133897, 0.713681, 86.8199, -5.46158, -10.2311, -0.490674, 0.317676, -1.35404, 0.104463, 1.4402, 0.300035, 1.38688, 0.0039136, -0.501656, 273.658, -37.8062, -66.8852, -1.25717, -0.116226, -0.66247, -0.108309, 1.42098, -0.0437646, 0.66381, 0.0117353, -1.26177, 233.239, -75.9333, -206.448, -0.516632, 0.0984854, -1.21341, 0.106377, 1.31676, 0.0615817, 1.21274, -0.0735466, -0.522318, 98.3842, -80.0597, -222.33, -1.25794, 0, 1.54332, 0, 1.99104, 0, -1.54332, 0, -1.25794, 7.64629, -0.453506, -64.0814, -0.536022, -0.00796602, 1.86156, 0.00261218, 1.93719, 0.00904181, -1.86157, 0.00501202, -0.536005, 111.831, -75.9216, -155.55, 0.598595, 0.178439, 1.30124, -0.105888, 1.43192, -0.147647, -1.30915, -0.0342289, 0.606924, 9.39148, -3.65887, -134.322, -1.25205, 0.0320649, 1.0246, 0.0124695, 1.61773, -0.0353894, -1.02502, -0.019487, -1.25196, 289.821, -74.2961, -160.293, 0.0347357, -0.10865, -1.34819, 0.0488559, 1.34786, -0.107365, 1.35168, -0.0459256, 0.0385267, 245.854, -74.6164, -177.322, -0.191457, 0.941593, -1.66111, -0.267808, 1.63969, 0.960322, 1.89054, 0.327629, -0.032186, 150.879, -21.1258, 59.9838, -1.88646, -0.25719, -0.201963, -0.244929, 1.89474, -0.125066, 0.216669, -0.0973919, -1.8998, 196.729, -78.0787, -208.797, -1.12628, 0.0079292, -0.141726, 0.0202778, 1.13078, -0.0978812, 0.140492, -0.0996446, -1.12204, 98.5591, -77.7683, -177.966, 0.753411, 0.31684, -1.71432, -0.344415, 1.8578, 0.191994, 1.70899, 0.234726, 0.794452, 46.2067, -72.3794, -154.389, 0.376363, 0.00219414, 1.71724, 0.0872823, 1.7557, -0.0213727, -1.71502, 0.0898342, 0.375762, 278.173, -74.4326, -153.774, 1.02363, -0.00491776, -0.618371, 0.0026094, 1.19591, -0.00519125, 0.618385, 0.00309413, 1.02363, 125.813, -75.8968, -142.897, 0.47263, 0.00479228, 1.66585, -0.00280231, 1.7316, -0.00418636, -1.66586, -0.00155326, 0.472635, 150.458, -75.8857, -178.366, -0.834435, 0.149276, 1.44665, 0.00227109, 1.66799, -0.170805, -1.45433, -0.0830433, -0.830296, 261.719, -73.569, -151.444, 1.51738, -0.125291, -1.00945, 0.15737, 1.81996, 0.0106638, 1.00495, -0.0958178, 1.5225, 86.5237, -72.5506, -70.9907, -1.09647, 0.278603, 0.41347, 0.221915, 1.16721, -0.197995, -0.446465, -0.10406, -1.11386, 152.69, -41.2569, -102.581, -0.241308, 0.00305784, -1.10843, 0.000258751, 1.13439, 0.00307313, 1.10843, 0.000400888, -0.241308, 182.715, -25.9026, -88.703, -1.0919, 0.0536162, 1.10421, 0.0190701, 1.55269, -0.056535, -1.10535, -0.0261759, -1.09175, 64.4192, -73.5457, -117.261, -0.274787, -0.0010586, -1.31429, -0.00148283, 1.34271, -0.000771467, 1.31429, 0.00129356, -0.274788, 170.886, -25.8971, -73.7783, 1.41773, 0.0896863, -0.333308, -0.105669, 1.45415, -0.058184, 0.328591, 0.0806703, 1.41938, 28.2308, -72.0574, -118.007, 1.02162, -0.171581, -1.27761, 0.146957, 1.63506, -0.102074, 1.28068, -0.0507497, 1.03089, 209.837, -77.4564, -173.112, -0.969794, 0.491741, 0.486326, 0.503179, 1.0763, -0.0848863, -0.474482, 0.136329, -1.08402, 173.897, -24.1151, 8.03585, 0.211118, 0.00736416, -1.67093, -0.0726851, 1.68266, -0.00176773, 1.66936, 0.0723327, 0.211239, 162.523, -35.6241, -11.2985, 1.29089, -0.113133, -1.07981, 0.138182, 1.68106, -0.0109329, 1.07689, -0.080092, 1.29579, 219.344, -52.0743, -117.111, 1.8854, 0.220719, -0.259125, -0.248505, 1.88926, -0.19889, 0.232611, 0.229336, 1.88783, 208.706, -31.9624, -57.8052, -1.37992, 0.0497057, -0.903067, 0.0707244, 1.64829, -0.0173457, 0.901664, -0.053218, -1.38071, 82.9112, -74.7337, -130.311, 0.584201, 0.0816693, 0.947187, -0.0431322, 1.11286, -0.0693512, -0.949723, -0.000303996, 0.585791, 184.363, -34.0166, -9.01086, -1.18381, 0.0479235, -0.216386, 0.0554459, 1.20253, -0.0370076, 0.214582, -0.0463374, -1.1842, 56.6345, -74.1956, -142.468, -0.0169329, -0.066341, 1.33437, -0.0217949, 1.33432, 0.0660616, -1.33584, -0.0209291, -0.017992, 44.7106, 0.623184, -0.307291, -0.246806, 0.0923944, -1.04719, -0.0140441, 1.07528, 0.0981824, 1.05117, 0.0360597, -0.244561, 212.838, -36.5647, 0.875343, 0.839379, 0.202494, 0.96533, -0.0614695, 1.27584, -0.214179, -0.984422, 0.0929923, 0.836474, 238.547, -31.4915, -84.2315, -1.43199, -0.136579, 1.37705, -0.17088, 1.98392, 0.0190733, -1.37322, -0.10445, -1.43836, 95.3827, -71.6735, -65.9139, -1.04649, -0.006768, 1.40956, 0.0387636, 1.75475, 0.0372043, -1.40904, 0.0533008, -1.04585, 239.41, -33.0204, -96.0889, 0.385682, -0.127813, 1.72018, -0.061529, 1.76052, 0.144606, -1.72383, -0.0914351, 0.379706, 107.505, -71.501, -79.2348, 0.198959, 0.223497, 1.30583, 0.132614, 1.31049, -0.244499, -1.31817, 0.165575, 0.1725, 60.4961, -73.4386, -165.294, 1.19339, -0.0101008, 0.699074, -0.0482646, 1.37847, 0.102309, -0.697479, -0.112671, 1.18904, 147.167, -78.301, -185.365, 1.52454, 0.205341, 0.726902, -0.188015, 1.68896, -0.0827846, -0.731575, -0.00614771, 1.53608, 40.028, -72.1633, -137.169, -1.30813, -0.0958304, 0.189285, -0.104558, 1.31998, -0.0543215, -0.184607, -0.0685551, -1.31051, 109.722, -71.5855, -83.9602, 0.875665, 0.113607, -0.792349, -0.110387, 1.18029, 0.0472356, 0.792804, 0.0388597, 0.881739, 259.719, -34.9622, -50.7138, 0.234843, 0.176554, -1.91752, -0.0938878, 1.93048, 0.166249, 1.92334, 0.0726788, 0.242248, 188.956, -34.8468, 12.1868, 1.97129, 0.028751, 0.300772, -0.104778, 1.92712, 0.502511, -0.283393, -0.512512, 1.90638, 133.508, -71.7331, -98.9786, -1.32007, -0.0427384, -0.356493, -0.0345965, 1.36712, -0.0357897, 0.357375, -0.0255196, -1.32028, 22.674, -0.237335, -4.46808, 0.434636, 0.0477074, 1.9344, -0.0104585, 1.98263, -0.0465469, -1.93496, 0, 0.434762, 37.4502, -0.513687, 46.8237, 0.936321, -0.137177, -1.42218, 0.123976, 1.70174, -0.0825205, 1.42339, -0.0579837, 0.942712, 268.775, -73.1072, -187.254, 0.010982, 0.193293, 1.66661, 0.200917, 1.6545, -0.193212, -1.66571, 0.200839, -0.0123172, 213.968, -33.1086, -53.4268, -1.06681, 0.163036, -0.151813, 0.171674, 1.07496, -0.0519438, 0.141973, -0.0747613, -1.07795, 104.046, -12.0947, -14.914, -1.03033, 0.0742778, 0.179663, 0.094189, 1.03837, 0.110862, -0.170072, 0.125079, -1.02704, 140.749, -31.6144, -30.2007, 0.706056, 0.215481, 1.17441, -0.150404, 1.36956, -0.160863, -1.18451, -0.0454591, 0.720465, 42.8745, -7.67526, -3.85922, 1.19359, 0.154055, -0.582923, -0.208136, 1.31865, -0.0776844, 0.565872, 0.16007, 1.20098, 202.999, -34.1639, -34.177, 1.25282, 0.122126, -0.545226, -0.0846235, 1.36463, 0.111219, 0.552291, -0.06794, 1.25383, 258.984, -73.8586, -162.178, 1.04842, -0.108576, 0.846835, 0.0554844, 1.34693, 0.104002, -0.851963, -0.0458941, 1.04889, 252.448, -74.0299, -175.71, -1.74538, 0, 0.95722, 0, 1.99063, 0, -0.95722, 0, -1.74538, 20.0392, -0.453506, -73.1576, 1.29782, 0.0753631, 0.546804, -0.0611391, 1.40814, -0.0489657, -0.548577, 0.021355, 1.29908, 38.9585, -72.9504, -97.2351, -0.331158, 1.05916, -1.08384, 1.50037, 0.385178, -0.0820178, 0.213128, -1.06584, -1.10668, 7.2298, -7.67647, -216.641, 0.524924, -0.000956676, 1.09401, 0.00146782, 1.21343, 0.000356817, -1.09401, 0.00116901, 0.524925, 163.261, -25.892, -85.1241, 1.44395, 0.00278958, 0.251455, -0.00263795, 1.46568, -0.00111177, -0.251457, 0.000642717, 1.44395, 131.954, -75.8353, -162.057, -0.887989, 0.127035, -0.976844, 0.0492655, 1.31924, 0.126778, 0.983837, 0.0485987, -0.888026, 80.6388, -0.143326, -3.01439, -1.32621, 0.00261245, -0.353876, 0.00236895, 1.37261, 0.00125508, 0.353878, 0.000601907, -1.32622, 169.072, -75.9226, -127.551, 0.440258, 0.00339112, 1.14349, -0.00224416, 1.22532, -0.00276975, -1.1435, -0.00109912, 0.440262, 194.52, -76.0055, -174.905, 0.146435, 0.0406854, 1.68446, -0.00352361, 1.69081, -0.0405325, -1.68494, 0, 0.146477, 41.5128, -0.611465, 19.2745, 0.929333, 0.150152, -1.24951, -0.0206793, 1.55488, 0.171467, 1.25833, -0.0853413, 0.925637, 52.9222, -20.0251, -33.1327, -0.865372, 0.0160858, 0.704176, -0.168944, 1.0782, -0.232248, -0.683799, -0.286744, -0.83378, 138.462, -71.9464, -99.5028, 0.929201, 0.641706, 0.597931, 0.647813, 0.0851413, -1.09809, -0.591308, 1.10167, -0.263419, 213.551, -38.0202, 8.14549, 1.00096, -0.19764, -1.59645, 0.154737, 1.88339, -0.136145, 1.60118, -0.0584574, 1.01116, 224.975, -75.5182, -161.845, 1.01996, 0.0831152, 1.59197, -0.00243235, 1.89002, -0.0971174, -1.59414, 0.0502947, 1.01872, 233.873, -31.3466, -58.228, 0.642907, -0.125935, -1.71532, 0.134534, 1.82931, -0.0838805, 1.71467, -0.0963103, 0.649734, 94.9502, -72.7431, -85.6642, -1.2671, 0.970994, -1.1695, 0.436713, 1.69089, 0.930731, 1.45597, 0.337859, -1.29696, 159.085, -24.3129, 52.3489, 1.01384, 0.0343541, 0.718098, 0.0517023, 1.23475, -0.132067, -0.717057, 0.137603, 1.00579, 127.962, -14.2238, -18.6858, 0.326779, 0, 1.22978, 0, 1.27245, 0, -1.22978, 0, 0.326779, 3.91376, -0.453506, 25.9817, -0.970305, -0.0104233, 0.706301, -0.0122074, 1.20013, 0.000940666, -0.706273, -0.00642342, -0.970361, 246.154, -44.7025, -105.566, -1.26894, 0.507535, 0.970056, -0.411511, 1.15497, -1.14258, -1.01452, -1.10329, -0.749864, 134.569, -20.3199, -10.056, 1.67193, -0.00687424, -0.620992, 0.00728506, 1.78353, -0.000129318, 0.620988, -0.00241528, 1.67194, 123.458, -25.9282, -57.9128, -1.56504, -0.31401, -0.103933, -0.28712, 1.53927, -0.327055, 0.164215, -0.301332, -1.56237, 253.661, -30.3922, -12.3458, -0.298514, 0.722288, -0.640754, 0.261582, 0.706095, 0.674077, 0.92943, 0.0332578, -0.395512, 13.9478, -68.2987, -186.313, -1.61421, 0.00408647, 0.482746, 0.00290605, 1.68485, -0.00454506, -0.482754, -0.00352185, -1.61421, 154.251, -25.8922, -87.7497, 1.64123, -0.135349, -0.359043, 0.144412, 1.67907, 0.0271615, 0.355495, -0.057211, 1.64658, 262.498, -73.4396, -182.161, -1.92798, 0.00474626, -0.33508, 0.00537657, 1.95688, -0.00321736, 0.335071, -0.00409047, -1.92798, 163.432, -25.8931, -77.4925, -0.905188, 0.53172, 0.26875, 0.560282, 0.925939, 0.055144, -0.202577, 0.185013, -1.04836, 155.361, -21.0548, 46.747, 0.468567, 0.681867, -1.42953, -0.407925, 1.49244, 0.578166, 1.53039, 0.189039, 0.591795, 165.969, -21.6631, 17.275, 1.85972, 0.00375011, 0.650945, -0.0032541, 1.97036, -0.00205443, -0.650948, 0.000864023, 1.85973, 170.125, -75.9226, -132.229, -0.618549, 0.0255726, -1.13235, 0.0259002, 1.29018, 0.014989, 1.13234, -0.0155414, -0.618895, 287.322, -74.3443, -168.409, 0.74454, 0.0509278, 0.830816, 0.0568644, 1.10897, -0.118937, -0.83043, 0.121598, 0.736741, 228.17, -30.3117, -81.5879, 0.939332, 0.00323717, -0.697019, -0.0019744, 1.16969, 0.00277162, 0.697024, -0.00104922, 0.939333, 180.197, -75.9601, -168.894, -0.134424, 0.105786, 1.17585, -0.0467014, 1.18204, -0.111682, -1.17967, -0.0588496, -0.129567, 274.943, -73.6217, -128.733, -0.635636, 0.145034, 0.975342, 0.0556765, 1.16385, -0.136781, -0.984493, -0.0278211, -0.637463, 11.8016, -5.16934, -184.946, -1.54921, 0.205367, -0.563401, 0.206513, 1.648, 0.03286, 0.562982, -0.0393944, -1.56242, 9.69505, -4.327, -160.69, 1.16899, 0.063013, -0.141433, -0.0646973, 1.17738, -0.0101838, 0.140671, 0.0178554, 1.17065, 39.8512, -72.7788, -111.705, -0.301248, 0.543548, -1.16075, -0.0246821, 1.1897, 0.56351, 1.28147, 0.150692, -0.262014, 152.642, -16.3572, 23.459, -0.149444, -0.0712125, -1.44609, -0.0177685, 1.45376, -0.0697536, 1.44774, 0.0104914, -0.150131, 236.64, -31.4864, -15.6211, 0.34371, -0.0759682, -1.14789, 0.0977474, 1.19562, -0.049859, 1.14624, -0.0791789, 0.348457, 231.896, -75.638, -176.857, 0.872714, 0.130824, -0.58406, -0.0946261, 1.04982, 0.0937582, 0.591005, -0.0250952, 0.87747, 8.26692, -2.9297, -109.681, 0.277071, -0.018875, -1.01965, 0.00738315, 1.05662, -0.0175532, 1.01979, -0.00252153, 0.277157, 56.3716, -72.7788, -73.4397, -0.059493, 0.00777954, 1.11214, -0.0972127, 1.10944, -0.0129609, -1.10792, -0.0977639, -0.0585828, 104.882, -77.8721, -178.64, -1.06499, 0.00525232, 1.57085, 0.00153834, 1.89783, -0.00530269, -1.57085, -0.00170237, -1.06499, 194.076, -76.0009, -171.163, 1.30656, 0.119935, 0.493295, -0.0955466, 1.39579, -0.0862914, -0.498593, 0.0468082, 1.30921, 217.348, -37.1099, 5.57598, -0.369345, 0.0220222, 1.48208, -0.375809, 1.4761, -0.115588, -1.43381, -0.392566, -0.351483, 116.774, -72.8283, -104.036, 1.23562, 0.0648686, -1.06145, -0.00826611, 1.62773, 0.0898532, 1.0634, -0.0627216, 1.23406, 76.3179, -74.15, -120.928, -0.158577, -0.0621212, -1.71404, 0.183659, 1.71084, -0.0789966, 1.7053, -0.190032, -0.150881, 250.063, -31.5645, -26.6, 1.38589, -0.00766041, 1.24482, 0.0089197, 1.86286, 0.00153319, -1.24482, 0.00481974, 1.38591, 117.418, -75.8518, -173.595, 0.710365, 1.09303, 0.745931, -0.378738, 0.97913, -1.07406, -1.26794, 0.3199, 0.738732, 177.692, -31.5144, 21.0536, -1.66966, 0.0426541, -0.59535, 0.0401765, 1.77263, 0.0143257, 0.595523, 0, -1.67014, 79.7375, -1.53131, 6.86371, 1.52254, 0.0532128, -0.239232, -0.0485254, 1.54101, 0.0339379, 0.240226, -0.0259789, 1.5231, 83.2828, -73.8269, -95.3038, -1.0682, -0.00432253, 0.238755, -0.00343996, 1.09455, 0.00442574, -0.238769, 0.00356878, -1.0682, 210.108, -25.9344, -79.3999, -1.19075, 0.229448, 1.57992, 0.328758, 1.96398, -0.0374454, -1.56228, 0.238407, -1.21208, 184.446, -33.7386, -19.825, 1.79497, -0.154369, -0.197064, 0.149443, 1.8054, -0.0530356, 0.200826, 0.0362777, 1.80082, 205.588, -75.6316, -161.523, 0.253873, -0.0980724, -1.11878, -0.000859661, 1.14699, -0.10074, 1.12307, 0.0230476, 0.252827, 223.609, -74.3693, -147.66, 1.48787, 0.00412349, 0.808981, 0.0289978, 1.6922, -0.0619577, -0.808472, 0.0682834, 1.48658, 296.296, -38.5841, -104.387, -1.76572, -0.0155571, -0.185542, -0.0169874, 1.77538, 0.0128013, 0.185417, 0.0145059, -1.76574, 87.8143, -25.7791, -51.2643, 0.478302, 0.10969, 0.888032, -0.0520151, 1.00865, -0.096573, -0.893268, 0, 0.481122, 111.722, -3.49527, 28.7844, 0.481184, 0.3541, -1.28595, 0.762881, 1.04832, 0.574127, 1.0941, -0.886692, 0.165237, 151.245, -21.8089, -5.07922, 1.25319, 0.0620588, 1.28852, -0.0649942, 1.79718, -0.023345, -1.28837, -0.0302976, 1.25451, 63.1966, -72.9212, -82.7218, -1.26366, 0.0123233, -0.718798, -0.084659, 1.44096, 0.173536, 0.713901, 0.192692, -1.25175, 284.86, -40.2806, -81.4217, 1.11411, 0.0465374, -0.758643, -0.0256654, 1.34769, 0.0449801, 0.759635, -0.0227199, 1.11418, 58.2619, -72.9444, -94.2061, 0.736433, -0.00298247, -0.786778, 0.00296926, 1.07766, -0.00130587, 0.786778, -0.00127541, 0.736438, 136.648, -25.908, -68.2533, 0.390027, 0.134414, 1.5158, 0.0175155, 1.5643, -0.143221, -1.52165, 0.0524591, 0.38688, 200.938, -35.8967, 11.4502, -1.88966, 0.193803, -0.588245, 0.210102, 1.9773, -0.0234857, 0.582623, -0.0844685, -1.89943, 68.7962, 1.03758, 2.58423, 0.704611, -0.0117894, 1.51198, 0.0276326, 1.66792, 0.000127969, -1.51178, 0.0249917, 0.704709, 232.106, -25.7554, -92.0671, 0.714279, 0.211817, -1.0281, -0.250606, 1.242, 0.0817755, 1.01934, 0.156921, 0.740523, 44.3246, -72.4207, -151.521, -1.36363, -0.122797, -0.451534, -0.125654, 1.43615, -0.0110973, 0.450747, 0.0288581, -1.3691, 224.249, -74.5535, -135.774, -1.1078, 0.190615, 1.35833, 0.120473, 1.75279, -0.147718, -1.36634, 0, -1.11433, 98.1289, -2.01701, 28.525, -1.53024, 0.698124, -0.17516, 0.663931, 1.52803, 0.289884, 0.277946, 0.193546, -1.6568, 163.169, -20.632, 19.2362, 1.03527, 0.0325296, -0.305046, -0.0213388, 1.07872, 0.0426126, 0.306032, -0.0348282, 1.03491, 90.0048, -74.9012, -128.873, 0.226391, 0.0456185, 1.88225, -0.00544757, 1.89582, -0.045292, -1.8828, 0, 0.226456, 57.9374, -1.00671, 16.2485, 1.05915, -0.0774469, 0.00663007, 0.0773202, 1.05901, 0.0186664, -0.00797271, -0.0181336, 1.06181, 202.272, -53.1738, -111.365, 0.00953986, -0.0651831, -1.23094, 0.254387, 1.20458, -0.0618159, 1.20613, -0.253545, 0.0227738, 235.748, -29.8637, -31.7983, 0.65338, 0.00141449, -0.926021, -0.0481344, 1.13184, -0.0322337, 0.924771, 0.0579131, 0.652586, 282.774, -74.7187, -148.295, 1.31828, -0.0304666, -1.08208, 0.0261319, 1.70551, -0.0161834, 1.0822, -0.00407005, 1.31853, 50.8413, -72.9621, -108.83, 0.3989, 0.0378435, 1.86728, -0.0304012, 1.90927, -0.0322001, -1.86742, -0.0229989, 0.399396, 273.932, -74.214, -179.627, -0.586123, 0.113301, 1.18199, 0.0900682, 1.31859, -0.081732, -1.18398, 0.0442191, -0.591352, 231.486, -37.5577, -17.2947, 0.795254, 0.0349299, -1.21458, -0.019134, 1.45177, 0.0292231, 1.21493, 0, 0.795484, 81.8461, -1.58205, 38.774, -0.282561, 0.0037968, 1.34249, -0.000422229, 1.3719, -0.00396885, -1.34249, -0.00123061, -0.282558, 169.497, -75.9245, -162.58, 0.398216, 0.173551, 1.85676, 0.0337772, 1.89764, -0.184616, -1.86455, 0.0714424, 0.393209, 223.32, -36.6168, -24.2751, -1.61143, 0.00446923, 0.105425, 0.00436513, 1.61487, -0.00173724, -0.105429, -0.00144856, -1.61144, 200.588, -76.0018, -152.027, 0.145949, 0.416894, 0.908117, 0.0596605, 0.912479, -0.428485, -0.997455, 0.115578, 0.107248, 156.986, -18.7631, 26.7833, -0.984281, -0.0088358, 0.703527, -0.0644783, 1.20584, -0.075065, -0.700621, -0.0985603, -0.981454, 125.48, -78.5349, -186.283, 0.461189, 0.942968, -0.799347, -0.524491, 0.921827, 0.784846, 1.1194, 0.0434191, 0.697066, 13.8322, -69.0731, -167.359, 1.1106, 0.0348542, -0.44914, -0.0412458, 1.19775, -0.00904235, 0.448598, 0.0238363, 1.11111, 139.418, -80.1098, -208.955, 0.743, 0, -1.71682, 0, 1.8707, 0, 1.71682, 0, 0.743, 6.81672, -0.453506, 40.0571, -1.4544, 0.0680411, 0.326024, 0.10157, 1.48161, 0.143895, -0.317182, 0.162458, -1.44886, 226.178, -30.1854, -81.9054, -1.08041, 0, 0.727414, 0, 1.30247, 0, -0.727414, 0, -1.08041, 22.2392, -0.453506, 24.3203, 0.458271, -0.531023, 1.22345, -0.407069, 1.17624, 0.663009, -1.27008, -0.568595, 0.228947, 296.829, -53.0629, -142.101, -0.452562, 0.0115019, -1.48167, -0.0842853, 1.54653, 0.0377496, 1.47932, 0.0916337, -0.451132, 177.468, -53.4572, -110.478, -0.422976, 0.266789, -1.32646, 0.132971, 1.39123, 0.237416, 1.34647, -0.0535836, -0.440135, 249.523, -32.9602, -48.3264, 1.09051, 0.0478258, -0.503098, -0.0240079, 1.20008, 0.0620429, 0.504796, -0.0462429, 1.0898, 55.5664, -73.9462, -137.099, 0.782137, -0.0795371, -0.887816, 0.0948637, 1.18186, -0.0223075, 0.886309, -0.0563081, 0.785855, 244.063, -50.2274, -113.263, 1.00298, -0.119076, -1.30056, 0.140253, 1.64017, -0.042009, 1.29845, -0.0851847, 1.00915, 130.743, -70.2554, -87.7351, 1.13077, -0.114633, 0.739581, 0.108596, 1.35096, 0.0433586, -0.740491, 0.0230726, 1.13574, 203.948, -35.6171, -102.733, -0.33745, -0.147559, 1.7062, 0.000614893, 1.739, 0.150517, -1.71257, 0.0296999, -0.336141, 235.412, -32.9849, -100.525, 1.03437, 0.0316372, 0.811626, -0.0248897, 1.31478, -0.0195299, -0.811861, 0, 1.03467, 62.4489, -1.11526, 7.99986, 1.08766, 0, -1.37971, 0, 1.75687, 0, 1.37971, 0, 1.08766, 31.5505, -0.453506, -32.3979, 0.952569, 0.00328843, 0.957466, 0.0362868, 1.3495, -0.0407362, -0.956783, 0.0544551, 0.951703, 325.683, -38.3704, -111.456, 1.01009, -0.067904, -0.0105751, 0.0683278, 1.009, 0.0474682, 0.00735557, -0.0480725, 1.01125, 252.676, -49.8725, -117.98, 1.43246, -0.016689, 1.28085, 0.00558506, 1.92156, 0.0187911, -1.28095, -0.0102847, 1.43243, 207.141, -45.0493, -107.005, -1.22837, -0.046079, 0.348449, -0.0825515, 1.26903, -0.123198, -0.341651, -0.140958, -1.22304, 246.063, -31.7638, -27.0868, -0.423976, 0.323346, -1.05389, 0.0696437, 1.13475, 0.320137, 1.10017, 0.0527762, -0.426404, 168.638, -31.5116, 62.8284, 1.12286, 0.176729, -0.771259, -0.256916, 1.34783, -0.0651936, 0.748377, 0.197542, 1.13481, 151.896, -33.8154, -21.0497, -1.536, 0.0397489, -0.608297, 0.0369564, 1.65206, 0.0146357, 0.608473, 0, -1.53644, 74.6576, -1.40907, 38.6902, 1.23273, -0.00695432, 1.15776, 0.00806462, 1.69116, 0.00157143, -1.15775, 0.00437548, 1.23275, 120.63, -75.903, -148.712, 0.999823, 0.0356095, -1.0031, 0.22898, 1.37041, 0.27688, 0.977266, -0.357528, 0.96138, 140.591, -79.4675, -193.526, 1.21668, -0.120505, 1.46029, -0.0197198, 1.89657, 0.172938, -1.46512, -0.125598, 1.21034, 242.452, -73.9881, -162.07, -1.25083, 0.113605, -0.865853, 0.141684, 1.51891, -0.0053908, 0.861703, -0.0848373, -1.25597, 93.6488, -79.7059, -222.337, 0.151591, -0.00399654, -1.53898, 0.00264444, 1.54642, -0.0037554, 1.53898, -0.00226357, 0.151597, 138.298, -25.8779, -50.7124, 1.03358, 0.0504022, 1.03092, -0.0530681, 1.45961, -0.0181562, -1.03078, -0.0246067, 1.03465, 62.5186, -72.8391, -79.2406, 1.81165, -0.158158, 0.375127, 0.162405, 1.84971, -0.00446677, -0.373308, 0.0371681, 1.81854, 219.436, -75.1226, -127.928, -1.34877, -0.0212673, 1.09433, 0.024762, 1.73564, 0.0642499, -1.09426, 0.0654898, -1.34741, 177.712, -45.3881, -104.41, 0.646305, -0.00722339, -1.63338, -0.00156832, 1.75659, -0.00838885, 1.63339, 0.00454478, 0.646291, 117.138, -75.9157, -149.399, 0.766442, -0.0853862, -0.881021, 0.0711583, 1.16758, -0.0512543, 0.882285, -0.0199925, 0.769479, 215.042, -52.2137, -109.836, 0.766015, 0.00919944, -0.768782, -0.108338, 1.07569, -0.0950755, 0.761166, 0.143846, 0.760147, 280.093, -39.6498, -85.8337, 1.23495, 1.42872, -0.076387, -1.36727, 1.2082, 0.492954, 0.421468, -0.26684, 1.823, 16.7671, -71.155, -80.707, 0.559448, 0.214736, -1.89369, -0.0608397, 1.9746, 0.205937, 1.90485, 0, 0.562747, 121.443, -4.55235, 9.62598, -1.68373, -0.00444999, -0.360474, -0.00382374, 1.72188, -0.00339615, 0.360481, -0.00252039, -1.68373, 136.5, -25.8816, -50.0034, -0.67513, 0.198992, 1.44762, 0.0492218, 1.59685, -0.196551, -1.4604, -0.0381716, -0.675845, 3.44247, -3.16832, -144.813, 1.25222, 0, 0.361451, 0, 1.30334, 0, -0.361451, 0, 1.25222, 21.6723, -0.453506, -8.42663, 1.16914, 0.0568907, -0.820978, -0.0148874, 1.42754, 0.0777224, 0.822812, -0.0550078, 1.16794, 52.0423, -73.4164, -126.996, -0.661409, 1.16268, 1.01733, 0.697327, 1.21217, -0.931999, -1.3786, 0.0553272, -0.959514, 16.5987, -73.4743, -130.462, -1.91451, -0.233709, 0.243429, -0.238916, 1.92909, -0.0269482, -0.23832, -0.0564559, -1.92853, 179.71, -38.1208, -101.802, 0.700033, 0.19668, -1.66759, -0.0761282, 1.80856, 0.181349, 1.67742, 0, 0.70416, 115.083, -3.86069, 58.6541, 1.62828, 0.795569, 0.655359, -0.641766, 1.74131, -0.519339, -0.806574, 0.220561, 1.73624, 158.072, -17.0088, 9.01733, 0.811799, 0.226493, 0.802023, -0.150828, 1.14108, -0.169575, -0.819628, 0.0143485, 0.825567, 256.585, -34.0696, -85.5386, 0.216878, -0.109525, -1.32143, 0.00678856, 1.33907, -0.109873, 1.32595, 0.0110587, 0.216702, 232.355, -75.9417, -214.183, 1.20946, -0.448601, 1.20215, -0.0137762, 1.64739, 0.628607, -1.28305, -0.44056, 1.12645, 282.994, -45.4661, -120.294, 0.977062, 0.0242138, 0.733449, -0.0281995, 1.22163, -0.00276447, -0.733306, -0.0147156, 0.977358, 268.833, -73.9681, -167.602, 0.00315048, -0.0136283, 1.92829, 0.0289128, 1.92807, 0.0135795, -1.92812, 0.0288899, 0.00335438, 223.031, -25.7813, -94.6226, 1.98709, -0.0172586, -0.0184339, 0.0173562, 1.98715, 0.0104756, 0.018342, -0.0106357, 1.98714, 226.502, -44.8814, -107.066, -1.06895, -0.0850065, -1.19769, 0.191644, 1.57092, -0.282542, 1.18531, -0.330653, -1.03443, 233.041, -29.6081, -29.8882, -1.00505, 0, 1.60146, 0, 1.89072, 0, -1.60146, 0, -1.00505, 12.5659, -0.453506, 9.02175, -1.24115, 0.225214, -0.857807, 0.0305049, 1.48542, 0.345855, 0.886354, 0.264243, -1.21308, 323.747, -40.999, -147.591, 0.757573, 0.0524485, -0.921705, -0.0578336, 1.19266, 0.0203322, 0.921382, 0.0317377, 0.759114, 231.682, -30.845, -73.4566, -0.451451, 0.120396, 1.23759, 0.0879835, 1.31643, -0.0959703, -1.24032, 0.049561, -0.457267, 188.23, -34.2806, -1.08575, 0.863355, 0.00978177, 0.765672, 0.0942355, 1.14378, -0.12087, -0.759914, 0.152952, 0.854909, 285.374, -40.0197, -83.4055, -0.257541, 0.0134551, -1.56629, -0.205446, 1.57331, 0.0472966, 1.55281, 0.21039, -0.253518, 298.579, -39.6183, -87.252, 1.35759, 0.4484, 1.1873, -0.365385, 1.80306, -0.26316, -1.21542, -0.0411962, 1.40529, 262.429, -35.1198, -59.2522, -0.0181004, 0.0295037, -1.22599, 0.000435544, 1.22612, 0.0295005, 1.22634, 0, -0.0181056, 47.6568, -0.759308, 33.6389, -1.12169, -0.126867, 0.522524, -0.136992, 1.23633, 0.00609899, -0.519961, -0.0520457, -1.12883, 46.5096, -7.91092, -6.96088, -0.82289, -0.0871474, -0.601725, -0.082465, 1.01922, -0.0348372, 0.602385, 0.0204802, -0.826758, 199.996, -75.8448, -174.709, 0.376691, 0.121066, 1.30102, -0.098579, 1.35278, -0.09734, -1.30291, -0.0673499, 0.383507, 279.161, -74.5634, -140.066, -1.4421, -0.0534099, -0.209084, -0.0513132, 1.45714, -0.0183031, 0.209608, -0.0107438, -1.44297, 311.93, -37.7292, -130.738, -1.16207, 0.0288959, 0.303232, 0.0279596, 1.20098, -0.00729583, -0.30332, 0, -1.16241, 77.0124, -1.46573, 45.8331, 0.991292, 0.262436, -1.45197, -0.402805, 1.73092, 0.0378506, 1.41945, 0.307915, 1.02474, 313.635, -39.4149, -147.877, -1.11596, 0.0238095, 1.03165, -0.0567753, 1.51582, -0.0963992, -1.03036, -0.109313, -1.11204, 77.5293, -77.8528, -180.945, -1.65401, -0.142951, 0.564803, -0.130597, 1.74773, 0.0598982, -0.567786, 0.0144337, -1.6591, 244.38, -75.1181, -194.818, 1.23252, 0.185032, 0.131864, -0.157788, 1.22039, -0.237636, -0.163487, 0.217097, 1.22346, 311.18, -39.1249, -147.416, -1.21608, 0.058614, -0.33886, 0.0192886, 1.25494, 0.14785, 0.343351, 0.137099, -1.20848, 169.356, -30.3262, -56.4664, 0.598984, -0.104165, -1.0611, 0.0297999, 1.21824, -0.102769, 1.06578, 0.0244793, 0.599225, 206.853, -75.8687, -144.34, 1.50431, 0.876756, 0.401494, -0.740401, 1.52679, -0.559979, -0.617824, 0.305069, 1.64866, 153.775, -19.8729, 45.3909, 0.157857, -0.0797515, -1.777, 0.0700659, 1.78288, -0.0737911, 1.77741, -0.0631986, 0.16073, 43.6184, 0.609009, 0.791703, -1.25, -0.119008, -0.744779, -0.108404, 1.45501, -0.0505558, 0.746396, 0.0120162, -1.25463, 237.23, -75.6636, -199.585, -1.0688, 0.0342783, -0.388722, 0.0447468, 1.13671, -0.0227958, 0.387657, -0.0367005, -1.06911, 72.9758, -75.1546, -152.627, 0.10134, 0.00263881, -1.08325, 0.00201854, 1.08798, 0.00283917, 1.08325, -0.00227421, 0.101335, 168.637, -25.8937, -71.7764, 0.428373, 0.179435, 1.22309, -0.0593125, 1.29593, -0.169348, -1.23475, 0, 0.43246, 131.967, -10.7176, 51.0731, 1.29765, 0.373857, 0.202972, -0.359163, 1.31201, -0.120394, -0.227967, 0.0610205, 1.34505, 166.668, -30.6779, 56.9707, 0.54632, 0.00540988, 1.87687, -0.00319553, 1.95476, -0.00470424, -1.87687, -0.00175344, 0.546326, 185.333, -75.9662, -159.806, -0.99189, 0.00450498, -1.56192, -0.0605624, 1.84875, 0.0437921, 1.56076, 0.0746007, -0.990933, 288.131, -38.4285, -107.749, 0.017531, 0.028258, -1.34443, -0.0701684, 1.34273, 0.0273073, 1.34289, 0.0697909, 0.0189779, 163.252, -31.5013, -36.1356, 1.01066, 0.228565, 1.30522, -0.139935, 1.65077, -0.180721, -1.31767, 0, 1.0203, 130.932, -10.5744, 17.3996, 1.04922, -0.130691, -1.11189, 0.0672572, 1.52847, -0.116189, 1.11752, 0.0307131, 1.05092, 208.441, -75.3997, -160.923, 1.5848, 0.207241, 0.0924997, -0.206908, 1.5875, -0.0117497, -0.0932424, -0.000323581, 1.59825, 73.5979, -24.0107, -42.0883, -1.15214, 0.0244557, -0.951295, 0.0291885, 1.49403, 0.00305723, 0.951162, -0.0162245, -1.1524, 91.8733, -25.8397, -53.8616, 0.193965, -0.0550826, 1.23075, 0.00586843, 1.24593, 0.0548374, -1.23196, -0.00273743, 0.194035, 261.036, -71.7418, -131.681, 1.65955, 0, 0.871972, 0, 1.87469, 0, -0.871972, 0, 1.65955, 14.6244, -0.453506, 50.5266, -0.982457, 0.791515, -0.0880307, -0.0050295, 0.133626, 1.25761, 0.796379, 0.9773, -0.100657, 137.45, -29.8825, -14.2856, 1.1005, 0.22438, -1.5912, -0.319736, 1.92059, 0.0496929, 1.57481, 0.23314, 1.12204, 217.473, -33.9453, -49.908, -0.489879, -0.12607, -1.75479, -0.134571, 1.8189, -0.0931077, 1.75416, 0.104331, -0.497198, 47.4643, -6.10199, -12.0057, -0.200857, 0.00147812, 1.16714, 0.0598917, 1.18275, 0.00880905, -1.16561, 0.060518, -0.200669, 285.276, -74.5405, -151.838, -1.17019, 0.0546999, 1.47156, 0.0633306, 1.87974, -0.019512, -1.47121, 0.0374085, -1.1713, 131.686, -79.8854, -208.924, 1.59946, 0.0476156, -0.921618, -0.0116495, 1.84503, 0.0751065, 0.922773, -0.0592406, 1.59841, 102.144, -75.7722, -146.207, -0.765029, -0.099883, -1.14571, 0.00418858, 1.3758, -0.122739, 1.15005, -0.0714542, -0.761696, 106.102, -72.5547, -97.561, -0.374304, 0.0430315, 1.18881, -0.00712897, 1.24616, -0.0473523, -1.18956, -0.0210083, -0.373782, 82.1686, -73.9073, -102.357, 1.03112, 0.14889, -0.572993, -0.142861, 1.17935, 0.049364, 0.574526, 0.0260372, 1.04065, 324.251, -41.637, -143.671, 1.51831, 0.174988, 0.532831, -0.165115, 1.60909, -0.0579451, -0.535972, 0, 1.52726, 125.025, -4.94197, 8.10125, 1.19989, 0.334691, 0.494423, -0.566012, 0.990856, 0.702882, -0.190008, -0.83809, 1.02845, 153.537, -22.2928, -4.73583, 0.2969, 0.165518, 1.29501, -0.0681638, 1.32823, -0.154136, -1.30376, -0.0317503, 0.302965, 12.6715, -4.65674, -158.968, -0.0434699, 1.29896, -0.135471, 0.184448, 0.140294, 1.28602, 1.29292, 0.0236589, -0.188019, 47.823, -28.8496, -60.1842, -1.31003, -0.149342, -0.557762, -0.119941, 1.42314, -0.0993389, 0.564815, -0.0441719, -1.31477, 231.413, -74.7333, -158.325, 0.333476, -0.0076295, -1.82514, -0.00335086, 1.85535, -0.00836802, 1.82515, 0.00480029, 0.333458, 96.98, -75.9582, -165.036, 1.34394, -0.149267, -1.13545, 0.0945453, 1.75913, -0.11935, 1.14131, 0.0300436, 1.34693, 224.731, -33.9214, -98.7618, 0.919404, 0.0821267, -0.603458, -0.0348048, 1.09805, 0.0964097, 0.608026, -0.0613303, 0.918016, 108, -79.7011, -203.033, 1.33306, 0.0354636, -0.628529, -0.032077, 1.4738, 0.0151241, 0.628711, 0, 1.33344, 56.8225, -0.979874, 28.3234, -0.0445634, 0.178222, -1.20928, 0.187864, 1.19671, 0.169446, 1.20782, -0.17956, -0.0709729, 292.806, -51.6726, -132.587, -0.526712, 0.0962363, 1.04029, 0.0302695, 1.16594, -0.0925341, -1.0443, -0.0147434, -0.527375, 116.913, -14.005, -17.4164, 0.386205, 0.0320042, 0.989121, -0.0435675, 1.06129, -0.0173283, -0.988679, -0.0342656, 0.387141, 90.0264, -74.9939, -131.724, 0.983019, -0.00461696, 0.435495, -0.16832, 0.987549, 0.390409, -0.401678, -0.425123, 0.90218, 317.568, -38.2527, -135.463, -1.04876, 0.0862344, -0.646466, 0.0859086, 1.23177, 0.0249405, 0.646509, -0.0237895, -1.05201, 247.302, -61.6695, -119.972, 1.90355, 0.0460496, 0.197189, -0.0458045, 1.91373, -0.0047449, -0.197246, 0, 1.9041, 62.3299, -1.11241, 9.77215, -0.86401, 0.0523741, 0.991561, -0.00382831, 1.31421, -0.0727521, -0.992936, -0.0506406, -0.862533, 61.7281, -73.5184, -119.624, -0.457144, -0.00462739, -0.963028, -0.00230665, 1.06602, -0.00402733, 0.963036, 0.000356741, -0.45715, 296.648, -38.3402, -125.529, 1.3967, 0, 1.04346, 0, 1.74344, 0, -1.04346, 0, 1.3967, 5.01538, -0.453506, 44.8861, 1.50021, -0.0276914, -0.390331, 0.0277307, 1.55015, -0.00339201, 0.390328, -0.00369931, 1.50046, 50.8714, -72.9622, -109.113, -0.316995, 0.611208, 1.03808, 0.408477, 1.06436, -0.501947, -1.13328, 0.212671, -0.471286, 144.241, -17.0341, 58.5813, -0.79634, 0.158192, 0.677497, 0.0726569, 1.04302, -0.158138, -0.691916, -0.0725399, -0.79635, 80.4052, -8.50287, -14.8229, 0.17342, 0.00568708, -1.53148, 0.0133579, 1.5412, 0.0072358, 1.53143, -0.0140872, 0.173363, 107.882, -25.9061, -44.1191, 0.255915, 0.226837, -1.31599, -0.210263, 1.33007, 0.188375, 1.31874, 0.168049, 0.285416, 46.3195, -71.2793, -163.248, -1.00124, 0.145286, 0.31393, 0.138631, 1.0493, -0.0434667, -0.316925, 0, -1.01079, 148.871, -13.0582, 11.1632, 0.210109, 0.0325328, -1.53361, -0.0840326, 1.54585, 0.0212797, 1.53165, 0.0803487, 0.211546, 169.704, -32.2524, -24.2977, 0.9218, 0, 0.773389, 0, 1.20326, 0, -0.773389, 0, 0.9218, 8.47717, -0.453506, 42.6062, 0.962755, 0.0400671, -0.984721, -0.0476061, 1.37689, 0.00947977, 0.984386, 0.0274014, 0.963542, 133.067, -80.1241, -198.948, -1.66144, 0.000861432, 0.366806, -0.00545017, 1.7012, -0.0286816, -0.366767, -0.0291821, -1.66119, 12.022, -0.33168, -9.56005, -1.45703, 0.0371529, 0.510896, 0.0350601, 1.54401, -0.0122935, -0.511044, 0, -1.45745, 49.555, -0.804993, 17.0946, -0.0542751, 0.198486, -1.71056, -0.201264, 1.69895, 0.203524, 1.71024, 0.206235, -0.0303343, 212.981, -33.9355, -45.6651, 1.1439, 0.0482171, -0.801128, -0.025977, 1.39634, 0.0469491, 0.802157, -0.02354, 1.14395, 75.9457, -73.4342, -87.0379, -1.7098, 0.036819, 0.381663, 0.0557015, 1.74952, 0.0807596, -0.379368, 0.0909348, -1.70829, 176.103, -31.482, -41.7088, -0.879904, 0.0126334, -1.20291, -0.152052, 1.47723, 0.126737, 1.19333, 0.197541, -0.870821, 292.606, -39.0411, -91.1863, -0.769311, -0.0310242, 1.07183, 0.00203885, 1.31911, 0.039645, -1.07228, 0.0247666, -0.768915, 77.4616, -79.9111, -215.532, -0.905466, 0.168348, 0.412408, 0.204427, 0.987115, 0.0458836, -0.395767, 0.124718, -0.91984, 63.6812, -71.936, -181.486, -0.66024, -0.0507433, -0.991777, 0.88721, 0.504921, -0.616462, 0.446155, -1.07916, -0.241797, 100.792, -37.7449, -64.9468, -0.235987, 0.056167, 1.03081, 0.0277515, 1.05736, -0.0512606, -1.03197, 0.0155904, -0.237101, 26.6245, -72.1447, -106.98, 0.271114, 0.618594, -1.82963, 0.313503, 1.80897, 0.658064, 1.90576, -0.385583, 0.152031, 268.162, -37.4887, -89.5909, 0.699411, 0.00279233, -1.67448, -0.00482915, 1.81467, 0.00100903, 1.67447, 0.00406715, 0.699416, 198.247, -25.9479, -79.3529, -1.91357, 0.140988, 0.0785986, 0.129141, 1.89818, -0.260842, -0.096841, -0.254633, -1.90094, 216.627, -79.276, -211.767, 1.54104, -0.120625, -0.588739, 0.122772, 1.64943, -0.0165885, 0.588295, -0.0282434, 1.54567, 203.495, -53.2051, -118.421, 1.38995, 0.00264741, -0.0534475, -0.00266889, 1.39098, -0.000507787, 0.0534465, 0.000609961, 1.38996, 156.625, -75.8979, -129.043, 0.169296, 0.0395711, 1.34721, -0.00743079, 1.3578, -0.0389485, -1.34777, -0.0025155, 0.169441, 312.93, -38.792, -154.916, 0.362838, -0.051192, -1.34871, 0.0232495, 1.39663, -0.046756, 1.34948, -0.0102977, 0.363436, 308.854, -37.8529, -132.219, 1.01282, 0.0294848, 0.970757, 0.0291427, 1.40102, -0.0729585, -0.970768, 0.0728209, 1.01062, 181.715, -31.7384, -39.0495, -1.06474, 0.0914381, -0.00489478, 0.0912211, 1.06415, 0.0362376, 0.00797468, 0.0356865, -1.06804, 226.454, -36.82, -26.3983, -0.102973, 0, -1.66911, 0, 1.67228, 0, 1.66911, 0, -0.102973, 13.0595, -0.453506, 44.231, -0.385085, -0.0125185, 1.19515, -0.0140586, 1.25561, 0.00862202, -1.19513, -0.0107364, -0.385192, 17.9332, -0.141846, 3.45515, 0.880502, 0.211744, 1.50267, -0.112559, 1.74162, -0.179461, -1.51333, -0.00633941, 0.887645, 34.6668, -71.5307, -142.429, 1.18891, 0.0582543, 0.8523, -0.0801538, 1.46176, 0.011899, -0.85052, -0.0563263, 1.19027, 78.8115, -74.33, -123.02, 0.527255, 0, -1.18618, 0, 1.29808, 0, 1.18618, 0, 0.527255, 17.7389, -0.453506, -48.7935, -1.31293, -0.00104841, 0.210974, -0.000831875, 1.32978, 0.00143121, -0.210975, 0.0012811, -1.31293, 176.301, -25.8914, -75.0552, -0.220197, 0.0556118, -1.24573, -0.0234936, 1.2646, 0.0606067, 1.24675, 0.0336518, -0.218875, 232.65, -30.9777, -70.0695, 0.970812, -0.00752375, 1.43587, 0.00469462, 1.73326, 0.00590795, -1.43588, 0.000580031, 0.970823, 300.958, -38.3252, -114.317, -0.837244, 1.01849, 0.444062, 0.933944, 0.94631, -0.409566, -0.601889, 0.0516252, -1.25322, 18.172, -75.8568, -97.4808, 1.17264, 0.0684111, 1.02307, -0.02429, 1.55565, -0.0761826, -1.02507, 0.041397, 1.17216, 237.309, -31.5811, -55.0923, 0.565491, 0.04061, -0.848618, 0.0101989, 1.01901, 0.0555605, 0.849527, -0.0392659, 0.564219, 65.9822, -74.8069, -148.663, -0.442375, 0.19943, -1.66169, -0.150653, 1.70703, 0.244979, 1.66682, 0.207216, -0.418871, 206.264, -34.4841, -34.6809, -1.64898, -0.00154968, -1.06976, -0.00233067, 1.96558, 0.000745212, 1.06976, 0.00189363, -1.64898, 174.696, -25.8981, -69.6335, 1.27605, 0, -0.574979, 0, 1.39961, 0, 0.574979, 0, 1.27605, 8.22665, -0.453506, -73.1629, 0.616035, 0.0820723, 1.40452, -0.0116342, 1.5335, -0.0845066, -1.40687, 0.0232561, 0.615705, 46.0913, -72.984, -120.19, 1.16336, 0.164498, -0.241009, -0.161078, 1.18806, 0.0333701, 0.243308, 0, 1.17445, 149.525, -13.1488, 8.79886, 1.45962, 0.0869831, -1.33591, -0.0997139, 1.97797, 0.019841, 1.33502, 0.0526353, 1.46207, 240.176, -31.9601, -45.5873, 0.789133, -0.014609, -0.894855, -0.0240877, 1.19225, -0.0407062, 0.89465, 0.0449865, 0.788218, 196.693, -45.2016, -103.189, -0.703043, 0.0427306, -1.28951, -0.00521792, 1.46842, 0.0515039, 1.29021, 0.0292229, -0.702455, 141.527, -80.3927, -197.825, -0.907455, 0.0160358, -0.643064, 0.177938, 1.07485, -0.224293, 0.618164, -0.285853, -0.879445, 131.26, -71.886, -99.6797, 0.180955, 0.113388, 1.6098, -0.0438244, 1.61963, -0.109155, -1.61319, -0.0312805, 0.18354, 222.834, -59.9834, -121.362, -0.0963863, -0.00480771, -1.16517, -0.00341097, 1.16914, -0.00454195, 1.16517, 0.00302489, -0.0963992, 103.554, -75.9645, -152.157, 1.62643, -0.00486652, 0.949011, 0.00281419, 1.88306, 0.00483328, -0.94902, -0.00275631, 1.62643, 131.463, -25.903, -55.6493, 0.167016, 0.0404408, -1.55891, 0.0457387, 1.56702, 0.0455516, 1.55876, -0.0503142, 0.165695, 95.3062, -75.166, -132.823, -1.05442, 0.680964, 0.592068, 0.71539, 1.18583, -0.0898367, -0.549976, 0.236943, -1.25197, 160.52, -26.4687, 59.0134, 0.558687, 0.143785, -1.47074, -0.106585, 1.57217, 0.113212, 1.47391, 0.0591891, 0.565675, 189.888, -34.6772, 5.41838, -1.21474, 0.186093, -0.518823, 0.182754, 1.32057, 0.0457769, 0.520009, -0.029394, -1.22806, 113.987, -13.6176, -18.3398, -1.14916, -0.0790685, 0.0469852, -0.0813693, 1.14853, -0.0573349, -0.0428774, -0.0604684, -1.15045, 78.382, -72.3831, -57.1622, 0.501601, 0.356112, 1.0835, -0.14267, 1.19395, -0.326365, -1.13156, 0.00732153, 0.521445, 1.27032, -2.66614, -137.013, 1.10661, 0, 0.569957, 0, 1.24477, 0, -0.569957, 0, 1.10661, 13.1277, -0.453506, -70.9388, 0.992911, -0.00785125, -0.412136, 0.0408025, 1.07147, 0.077889, 0.410186, -0.087578, 0.989882, 155.845, -78.1911, -184.799, -1.00212, 0.0182126, 0.453071, 0.00571744, 1.09946, -0.0315503, -0.453401, -0.0263896, -1.00179, 58.7, -6.58463, -22.8289, 0.548817, 0, -0.850422, 0, 1.01214, 0, 0.850422, 0, 0.548817, 7.36243, -0.453506, -47.7617, 1.86932, 0.0144477, -0.233946, -0.019607, 1.88343, -0.040354, 0.233571, 0.0424752, 1.86894, 224.292, -30.9993, -62.2312, 0.275829, 0.0574377, 1.41572, -0.065531, 1.44127, -0.0457067, -1.41536, -0.0555367, 0.278014, 58.2703, -73.5765, -124.709, -0.448076, 0.380586, 1.66622, 0.103471, 1.72541, -0.366281, -1.706, 0.00468861, -0.459843, 267.695, -36.4721, -73.7958, 1.37831, -0.131606, 1.15747, 0.0808984, 1.79959, 0.108283, -1.16212, -0.0308147, 1.38034, 208.184, -52.7803, -113.639, -0.984163, 0.143199, 1.67788, -0.151879, 1.92794, -0.253626, -1.67711, -0.258626, -0.961642, 213.377, -78.9663, -211.258, 1.6282, 0, -0.122823, 0, 1.63283, 0, 0.122823, 0, 1.6282, 5.8502, -0.453506, -55.7295, -1.31022, -0.179646, 0.198791, -0.187677, 1.32347, -0.0409609, -0.191227, -0.068028, -1.32185, 195.381, -78.1768, -207.145, -0.0138368, 0.0442319, -1.75917, 0.444562, 1.70224, 0.0393039, 1.70264, -0.444099, -0.0245585, 170.258, -79.2966, -189.916, 0.980423, -0.00473087, 1.40031, 0.00105609, 1.70941, 0.00503574, -1.40032, -0.00202309, 0.980421, 143.414, -25.8972, -75.0269, -0.215891, 0.510011, -1.77871, -0.024534, 1.78983, 0.516177, 1.85022, 0.0832435, -0.200703, 169.279, -31.6092, 60.999, -1.28881, 0.195867, -0.900465, 0.182199, 1.57177, 0.0811105, 0.90333, -0.0375721, -1.30108, 11.8638, -4.64616, -162.735, 0.984111, 0.555822, -0.0760217, -0.560524, 0.96791, -0.179316, -0.0230281, 0.1934, 1.11591, 166.818, -24.9244, 33.1847, -0.865117, 0.49571, -0.669074, 0.296704, 1.08499, 0.420216, 0.778046, 0.137429, -0.904198, 171.825, -23.4938, 10.6058, -0.902988, -0.00997257, 1.02433, -0.0900209, 1.36098, -0.0661073, -1.02041, -0.111241, -0.90062, 137.838, -78.1707, -182.934, -0.98953, 0, 0.559416, 0, 1.13671, 0, -0.559416, 0, -0.98953, 6.09384, -0.453506, 43.8422, -0.633386, 0.00543284, 1.85807, 8.62145e-05, 1.96306, -0.00571043, -1.85808, -0.00176088, -0.633384, 178.214, -75.9443, -157.549, 0.391989, 0.0417996, 1.57238, -0.0605829, 1.61967, -0.0279536, -1.57177, -0.0520047, 0.393219, 120.272, -75.248, -115.31, 0.897727, -0.369201, 1.61092, -0.139248, 1.80982, 0.492386, -1.64681, -0.354294, 0.836528, 247.182, -29.9958, -3.57022, 0.579854, -0.00290334, -0.874249, 0.00263944, 1.04907, -0.00173326, 0.87425, -0.00124157, 0.579858, 133.094, -25.9353, -82.8159, 0.107123, 0.124298, 1.66103, -0.100876, 1.66189, -0.117857, -1.66261, -0.0928232, 0.114172, 94.972, -79.7174, -220.772, 0.937318, 0.15423, -0.943347, -0.222355, 1.32015, -0.00509948, 0.92965, 0.160252, 0.949908, 212.111, -31.8873, -61.7012, 0.826085, 0.0248406, 0.845318, 0.0265493, 1.18035, -0.0606309, -0.845266, 0.0613508, 0.824231, 175.835, -30.9059, -52.6843, -1.43327, -0.121737, -1.27777, -0.00606646, 1.91595, -0.175733, 1.28354, -0.126882, -1.42765, 233.28, -75.6268, -178.015, -1.12114, 0.0325295, 0.577468, 0.0103658, 1.26047, -0.0508787, -0.578291, -0.0404713, -1.12046, 128.044, -75.8094, -126.551, 0.930906, 0.18386, -1.41131, -0.101236, 1.69068, 0.15348, 1.41964, 0, 0.936395, 126.482, -5.10034, 46.5644, -0.24938, -0.134989, 0.964061, -0.0837024, 0.99448, 0.117597, -0.96986, -0.0511174, -0.258037, 185.285, -79.6521, -209.186, -0.724191, 0.366422, 0.992399, 0.222342, 1.22852, -0.291351, -1.03426, 0.0075335, -0.757517, 9.47542, -4.6879, -206.403, 1.09585, 0.267618, -1.59214, -0.151731, 1.93282, 0.220447, 1.60733, 0, 1.10631, 142.889, -12.23, 15.9147, -0.509329, 0.0550579, 1.28534, -0.029263, 1.38155, -0.0707748, -1.28619, -0.0532356, -0.507384, 72.8064, -74.5683, -135.414, 0.765255, 0.0883033, 0.928553, -0.0564141, 1.20326, -0.067934, -0.931035, -0.00032869, 0.767332, 189.397, -34.3868, -11.8416, -1.48831, 0.183328, 0.242317, 0.180056, 1.5079, -0.0349175, -0.244759, -0.00548866, -1.49915, 34.711, -71.5319, -141.299, 1.72301, -0.135292, 0.950803, 0.0681824, 1.96522, 0.156077, -0.957957, -0.103466, 1.72125, 92.0094, -73.1263, -89.0973, -1.41123, 0.00217843, 0.11256, 0.0024238, 1.41571, 0.00298973, -0.112555, 0.00317298, -1.41123, 188.489, -25.9054, -91.6897, 0.736405, 0.11216, 0.722092, -0.0800836, 1.03136, -0.078527, -0.726349, 0, 0.740747, 116.592, -4.02484, 62.6367, -1.16476, 0.149533, -0.730774, 0.126667, 1.37503, 0.0794712, 0.735082, 0, -1.17163, 115.941, -3.95406, 20.282, 1.07621, 0.279324, -1.53077, -0.429239, 1.84231, 0.0343929, 1.49567, 0.32773, 1.11134, 313.951, -40.321, -143.054, 0.328752, -0.176476, -1.6357, 0.239417, 1.65541, -0.130483, 1.62767, -0.207852, 0.349565, 76.2074, -79.7935, -200.718, -1.73782, 0.06627, 0.814916, 0.0462477, 1.91913, -0.0574423, -0.816297, -0.0323535, -1.73814, 64.0687, -73.4564, -112.682, -0.752644, -0.0819988, -1.49526, -0.04767, 1.67395, -0.0678035, 1.49674, 0.0120805, -0.754056, 249.077, -30.9004, -12.4039, 1.84184, -0.00757679, 0.0507065, 0.00770509, 1.84253, -0.00455685, -0.0506872, 0.00476713, 1.84185, 100.154, -75.9404, -166.867, -0.565783, 1.21497, 0.0460552, 1.21505, 0.566844, -0.0270332, -0.043959, 0.030323, -1.33997, 13.3045, -68.3934, -160.202, 1.20808, 0.0102607, -0.0759744, -0.0202205, 1.19979, -0.159492, 0.0739494, 0.160441, 1.19755, 289.917, -40.0562, -83.4233, 0.991305, 0.0476057, -0.668131, -0.0137006, 1.19456, 0.0647871, 0.669684, -0.0460301, 0.990331, 68.8203, -73.7835, -119.17, 1.13805, 0, 0.49954, 0, 1.24286, 0, -0.49954, 0, 1.13805, 22.7874, -0.453506, 46.5148, -0.771686, -0.00631021, -1.32638, -0.00660499, 1.53452, -0.00345767, 1.32638, 0.00397023, -0.771704, 119.316, -75.9286, -140.947, -1.77017, -0.097674, 0.359096, -0.0795282, 1.80441, 0.0987643, -0.363546, 0.0808635, -1.77011, 39.7084, -8.17432, -16.1829, -0.400224, 0.734185, 0.596736, 0.448636, 0.717726, -0.582148, -0.832975, 0.0338056, -0.600259, 14.7682, -69.2204, -184.562, 0.925048, 0.815283, -1.54261, -0.62879, 1.78446, 0.566037, 1.62757, 0.226027, 1.09545, 160.326, -20.8645, 31.3248, -1.16965, 0, -0.00848234, 0, 1.16968, 0, 0.00848234, 0, -1.16965, 2.32074, -0.453506, -60.3772, -1.34734, 0.0615464, -0.0483103, 0.055869, 1.34017, 0.149208, 0.0547769, 0.146957, -1.34046, 215.743, -30.5324, -74.3706, -1.39865, -0.0988776, -0.33524, -0.0783541, 1.43628, -0.0967236, 0.340622, -0.0756176, -1.3988, 76.6112, -72.5844, -58.6703, 1.30662, -0.111284, 1.17207, 0.0050533, 1.75144, 0.16066, -1.17733, -0.115987, 1.30147, 251.817, -73.7341, -167.219, 0.173078, -0.0123648, -1.51647, 0.0751013, 1.52451, -0.00385893, 1.51466, -0.0741769, 0.173476, 79.8194, -5.54846, -6.0108, -0.168432, 0.0506699, 1.73046, 0.00170143, 1.73864, -0.0507436, -1.7312, -0.00322104, -0.16841, 306.108, -38.5797, -147.639, 1.31256, 0.0166279, -1.04346, -0.0191741, 1.67676, 0.00260086, 1.04341, 0.00989557, 1.31266, 257.37, -44.6917, -103.25, 0.142639, 0.400673, 1.66069, -0.0461575, 1.66676, -0.398174, -1.70772, -0.0115838, 0.149473, 39.7133, -6.57222, -47.0637, -0.383944, 0.0320579, 1.18205, -0.0280479, 1.2422, -0.0427996, -1.18215, -0.0398846, -0.382896, 121.937, -75.3515, -117.196, 1.00944, -0.147242, 1.32684, 0.327341, 1.63997, -0.0670447, -1.29423, 0.299944, 1.01792, 116.996, -14.6559, -34.1719, -0.166887, -0.122633, -1.49006, -0.0259955, 1.49933, -0.120485, 1.49487, 0.0123823, -0.168445, 246.487, -74.8914, -201.402, -0.148781, 1.16987, -0.668396, 0.0751097, 0.678615, 1.17104, 1.34525, 0.0914951, -0.139305, 45.4842, -8.85915, -48.7363, -0.260184, 0.0436195, 1.79398, 0.00626072, 1.81274, -0.0431678, -1.79449, 0, -0.260259, 48.6309, -0.782745, 27.282, 1.15848, 0.226661, -0.672659, -0.279984, 1.32904, -0.0343618, 0.652269, 0.167918, 1.17994, 45.3481, -72.7805, -150.056, 1.45027, -0.0128834, -0.241879, 0.0107311, 1.47025, -0.013969, 0.241984, 0.0120128, 1.45026, 95.6629, -25.8134, -38.6488, -1.57743, 0.734888, 0.374784, 0.761025, 1.60849, 0.0491036, -0.318379, 0.203738, -1.73952, 149.907, -15.9683, 30.2511, -1.93386, -0.0168701, -0.182491, -0.0158185, 1.94242, -0.0119357, 0.182585, -0.0103964, -1.9339, 244.206, -44.7043, -102.732, -0.955067, 0.169762, -0.971969, 0.142355, 1.36228, 0.0980532, 0.97636, -0.0325644, -0.965069, 8.02892, -2.14207, -77.9726, 0.690654, 0.148617, 0.91392, 0.0449869, 1.13343, -0.218309, -0.924831, 0.166119, 0.671887, 156.515, -34.6876, -19.2309, 0.842282, 0.0052345, 1.74971, -0.0016521, 1.94189, -0.00501414, -1.74972, 0.000686252, 0.842284, 198.016, -25.9483, -77.3126, -1.12508, 0.00477132, 1.61373, -0.000644397, 1.96721, -0.00626574, -1.61374, -0.00411208, -1.12508, 165.518, -25.8762, -67.0414, -0.656472, 0.152149, -0.863887, 0.0825536, 1.08495, 0.12835, 0.87329, 0.0118114, -0.661537, 254.259, -34.131, -57.5253, -1.63365, -0.00505583, 0.81762, -0.00548884, 1.82683, 0.00032937, -0.817617, -0.00216205, -1.63365, 150.584, -25.8731, -71.613, -0.167351, 0.0364632, -1.40369, 0.0493759, 1.4129, 0.0308158, 1.40329, -0.0453655, -0.168482, 105.531, -75.6101, -138.435, -1.41988, 0.496879, 0.364776, 0.485997, 1.46587, -0.105012, -0.379154, 0.018203, -1.50064, 37.0396, -5.54449, -59.3756, 0.234726, 1.24321, -0.42821, -0.652292, 0.487777, 1.05859, 1.14169, 0.0230881, 0.692855, 54.3364, -54.1835, -71.2195, 0.88708, 0.159721, 0.737416, -0.122825, 1.15356, -0.102102, -0.744451, 0, 0.895543, 139.064, -11.7003, 46.6991, -1.34981, 0.0408974, 0.13862, 0.036187, 1.3562, -0.0477538, -0.139924, -0.0437873, -1.34958, 88.8082, -75.6279, -152.497, -0.464767, 0.0381584, -1.44474, 0.376135, 1.46851, -0.0822146, 1.39544, -0.38312, -0.459026, 183.319, -78.7637, -186.573, -0.678675, 0.157124, -1.57962, 0.00230604, 1.71803, 0.169901, 1.58741, 0.0646803, -0.67559, 202.036, -35.4967, -2.32367, -0.0229074, 0.00391199, 1.60654, 0.0648302, 1.6054, -0.0029848, -1.60524, 0.0647809, -0.0230465, 306.072, -38.868, -97.9425, -1.08521, -0.0946016, -0.430647, -0.0945222, 1.1674, -0.0182548, 0.430664, 0.0178384, -1.08918, 244.908, -72.6874, -143.151, -0.879091, 0.00391362, 0.593422, -0.0021803, 1.06059, -0.0102245, -0.593431, -0.00969421, -0.87904, 103.267, -25.9554, -51.3785, 1.94457, 0, 0.162501, 0, 1.95135, 0, -0.162501, 0, 1.94457, 30.3381, -0.453506, -38.9354, -1.2751, 0.146094, -0.650742, 0.116957, 1.43127, 0.0921526, 0.656605, 0.0287668, -1.28013, 65.1752, -22.9289, -41.1617, -1.24982, 0.0380597, 0.96964, 0.0300709, 1.58185, -0.0233297, -0.969921, 0, -1.25018, 72.908, -1.36694, 53.0372, -1.44968, 0.0348971, 0.0408826, 0.0348832, 1.45026, -0.000983745, -0.0408944, 0, -1.4501, 42.0076, -0.623383, 47.6487, -0.193583, 0.00371438, -1.51915, 0.00364502, 1.53143, 0.00327993, 1.51915, -0.00320117, -0.193591, 161.271, -25.8439, -56.4927, 1.15524, -0.157894, 0.148594, 0.148699, 1.16322, 0.0799614, -0.157794, -0.0597908, 1.16323, 186.656, -79.4333, -208.549, -1.27107, -0.011988, -1.03868, 0.075366, 1.63603, -0.11111, 1.03602, -0.133723, -1.26626, 118.364, -78.8099, -189.009, -1.24613, -0.135607, 0.98157, -0.0867149, 1.58597, 0.109021, -0.987091, 0.0318686, -1.24874, 221.001, -74.4599, -154.247, 1.29801, -0.0169512, 1.43443, 0.0230935, 1.93447, 0.0019631, -1.43435, 0.0158058, 1.29812, 87.9611, -25.8513, -42.2586, -1.32804, -0.0319321, 1.12032, -0.0147158, 1.73741, 0.0320763, -1.12068, 0.0150263, -1.32804, 94.3678, -5.3157, -11.0601, 1.31502, -0.0704422, 0.598322, 0.089726, 1.44341, -0.0272671, -0.595735, 0.0619044, 1.31662, 52.7164, -5.88809, -7.34706, 1.66651, 0.0406453, 0.981264, 0.0159682, 1.93133, -0.107118, -0.981976, 0.100385, 1.66356, 205.807, -30.7567, -67.6899, 1.77738, 0.00697929, 0.646964, -0.0124713, 1.89139, 0.0138583, -0.646882, -0.017288, 1.77734, 108.057, -25.8412, -36.9511, -0.191083, 0.120536, -1.09179, 0.0207802, 1.10838, 0.118731, 1.09822, 0, -0.19221, 128.756, -5.3477, 54.1329, 1.38124, -0.0977485, 1.16602, 0.126896, 1.80579, 0.00106331, -1.16321, 0.0809252, 1.38469, 38.9013, -8.289, -14.5989, 0.91336, 0.139441, 0.393181, -0.123748, 0.994334, -0.0651715, -0.398399, 0.0108249, 0.921641, 241.452, -32.1085, -78.3315, -0.891317, 0.164245, 0.971446, 0.087614, 1.31801, -0.142453, -0.98133, -0.0315062, -0.895059, 2.28212, -1.94662, -99.7554, 0.973323, -0.546979, 0.385652, 0.499485, 1.04672, 0.223969, -0.445453, -0.0214751, 1.09379, 197.063, -80.277, -182.166, -1.2678, 0.17589, -0.480373, 0.0924958, 1.34143, 0.247053, 0.503131, 0.196605, -1.25588, 155.094, -34.7153, -17.7703, 1.11475, 0.0402391, -0.734671, -0.00986268, 1.33437, 0.0581207, 0.735706, -0.0430825, 1.11396, 62.3838, -74.9366, -155.769, 1.47926, 0, -0.463717, 0, 1.55024, 0, 0.463717, 0, 1.47926, 12.9945, -0.453506, -22.1229, 1.27048, -0.00342142, 0.372254, 0.0027385, 1.32389, 0.0028217, -0.37226, -0.00193783, 1.27048, 131.953, -25.9023, -56.0611, -0.759804, 0.0670386, 0.784365, 0.128073, 1.08612, 0.0312344, -0.776737, 0.113509, -0.762116, 136.77, -30.2626, -39.8463, 1.04613, -0.0189708, 0.182813, 0.0182512, 1.06198, 0.00576258, -0.182887, -0.00253432, 1.04628, 61.9383, -72.6529, -62.3533 ) [sub_resource type="Curve3D" id=4] @@ -71,7 +71,7 @@ _data = { [sub_resource type="MultiMesh" id=5] transform_format = 1 instance_count = 1000 -mesh = SubResource( 1 ) +mesh = SubResource( 46 ) transform_array = PoolVector3Array( -1.84679, 0, 0.44725, 0, 1.90018, 0, -0.44725, 0, -1.84679, 27.0462, -4.27573, 36.6809, -0.951816, 0, -1.10243, 0, 1.45647, 0, 1.10243, 0, -0.951816, -5.17978, -4.27573, 16.1542, 1.24751, 0, 1.46089, 0, 1.92106, 0, -1.46089, 0, 1.24751, -1.57587, -4.27573, 20.9364, 1.5627, 0, -0.937001, 0, 1.82209, 0, 0.937001, 0, 1.5627, 22.3061, -4.27573, 69.6096, 0.762127, 0, -1.27581, 0, 1.48611, 0, 1.27581, 0, 0.762127, -9.01611, -4.27573, 61.7582, -0.107916, 0, -1.8659, 0, 1.86901, 0, 1.8659, 0, -0.107916, 25.7511, -4.27573, -43.774, -0.971007, 0, 1.33715, 0, 1.65252, 0, -1.33715, 0, -0.971007, 5.16041, -4.27573, 71.3224, -0.87369, 0, 0.784814, 0, 1.17442, 0, -0.784814, 0, -0.87369, 24.5528, -4.27573, -2.87675, 1.80859, 0, -0.615911, 0, 1.91058, 0, 0.615911, 0, 1.80859, -8.36348, -4.27573, 10.5345, -0.346026, 0, 1.57767, 0, 1.61517, 0, -1.57767, 0, -0.346026, 24.0702, -4.27573, -52.004, 1.65883, 0, -0.578309, 0, 1.75674, 0, 0.578309, 0, 1.65883, 6.73805, -4.27573, 0.812837, 0.433008, 0, 1.59287, 0, 1.65068, 0, -1.59287, 0, 0.433008, -3.86897, -4.27573, 54.0393, 0.746749, 0, 1.64366, 0, 1.80534, 0, -1.64366, 0, 0.746749, 24.5543, -4.27573, 26.5715, 1.2343, 0, 0.0342764, 0, 1.23478, 0, -0.0342764, 0, 1.2343, -9.03104, -4.27573, 8.59067, 0.440527, 0, 1.91045, 0, 1.96058, 0, -1.91045, 0, 0.440527, 15.7827, -4.27573, 28.0429, -1.83545, 0, 0.415406, 0, 1.88187, 0, -0.415406, 0, -1.83545, -11.4117, -4.27573, -24.5903, 0.447199, 0, -1.63769, 0, 1.69765, 0, 1.63769, 0, 0.447199, 22.6649, -4.27573, 35.9398, 1.20911, 0, -0.356273, 0, 1.26051, 0, 0.356273, 0, 1.20911, 18.1233, -4.27573, -28.6945, 1.01913, 0, -0.0852104, 0, 1.02269, 0, 0.0852104, 0, 1.01913, 9.97607, -4.27573, 61.7523, -1.83448, 0, -0.192614, 0, 1.84456, 0, 0.192614, 0, -1.83448, -3.2302, -4.27573, -63.7977, 0.815477, 0, 1.26454, 0, 1.50468, 0, -1.26454, 0, 0.815477, -5.00696, -4.27573, 52.491, -1.93714, 0, 0.463969, 0, 1.99193, 0, -0.463969, 0, -1.93714, 15.7207, -4.27573, 24.3524, -0.672107, 0, -1.62314, 0, 1.75679, 0, 1.62314, 0, -0.672107, 12.9332, -4.27573, 3.30723, -0.500232, 0, -1.75365, 0, 1.8236, 0, 1.75365, 0, -0.500232, 9.82216, -4.27573, 14.9742, 1.2203, 0, -1.4661, 0, 1.90751, 0, 1.4661, 0, 1.2203, 29.5919, -4.27573, 69.3683, 1.59075, 0, -1.04372, 0, 1.90258, 0, 1.04372, 0, 1.59075, 11.5919, -4.27573, 23.1784, -0.0586246, 0, 1.32726, 0, 1.32856, 0, -1.32726, 0, -0.0586246, 9.93256, -4.27573, -40.3095, 0.740928, 0, 1.18822, 0, 1.4003, 0, -1.18822, 0, 0.740928, 18.9365, -4.27573, -48.2197, -1.51933, 0, 1.26125, 0, 1.97461, 0, -1.26125, 0, -1.51933, 22.3793, -4.27573, 15.9118, -0.683392, 0, 1.21451, 0, 1.39358, 0, -1.21451, 0, -0.683392, -6.99688, -4.27573, 24.7169, -0.96128, 0, 0.308679, 0, 1.00962, 0, -0.308679, 0, -0.96128, -11.2694, -4.27573, -0.618393, 1.54456, 0, 0.43603, 0, 1.60493, 0, -0.43603, 0, 1.54456, 7.15823, -4.27573, 66.6644, -0.63372, 0, -0.870272, 0, 1.07656, 0, 0.870272, 0, -0.63372, 28.3527, -4.27573, 24.7958, -1.35976, 0, 1.19314, 0, 1.80901, 0, -1.19314, 0, -1.35976, 7.32487, -4.27573, 10.7287, -1.81515, 0, 0.618207, 0, 1.91753, 0, -0.618207, 0, -1.81515, 27.5042, -4.27573, 37.4384, 0.248934, 0, 1.16285, 0, 1.1892, 0, -1.16285, 0, 0.248934, -4.8888, -4.27573, 65.8375, 0.247377, 0, -1.89156, 0, 1.90766, 0, 1.89156, 0, 0.247377, 6.24779, -4.27573, -49.7349, 1.89375, 0, -0.0932472, 0, 1.89604, 0, 0.0932472, 0, 1.89375, 25.642, -4.27573, 37.9598, 1.3824, 0, -0.131574, 0, 1.38865, 0, 0.131574, 0, 1.3824, 0.678123, -4.27573, -31.2344, -1.00469, 0, 0.0514875, 0, 1.006, 0, -0.0514875, 0, -1.00469, 6.30804, -4.27573, 18.0311, -1.5559, 0, -0.218085, 0, 1.57111, 0, 0.218085, 0, -1.5559, 18.6707, -4.27573, -7.50712, -1.56426, 0, -0.86204, 0, 1.78606, 0, 0.86204, 0, -1.56426, -12.293, -4.27573, 72.3093, -1.43384, 0, -0.963249, 0, 1.72736, 0, 0.963249, 0, -1.43384, -3.10607, -4.27573, -53.3975, -0.358886, 0, -1.68066, 0, 1.71855, 0, 1.68066, 0, -0.358886, 26.288, -4.27573, -39.0193, -1.53824, 0, 0.325829, 0, 1.57237, 0, -0.325829, 0, -1.53824, -4.4058, -4.27573, 52.2696, -0.063803, 0, 1.29292, 0, 1.2945, 0, -1.29292, 0, -0.063803, 28.2641, -4.27573, 4.4408, 1.1915, 0, 1.51005, 0, 1.92352, 0, -1.51005, 0, 1.1915, 11.5698, -4.27573, 74.2449, 0.635426, 0, -0.930116, 0, 1.12645, 0, 0.930116, 0, 0.635426, -1.074, -4.27573, 25.9922, -1.40794, 0, -0.00735299, 0, 1.40796, 0, 0.00735299, 0, -1.40794, 24.4953, -4.27573, -23.4544, -0.583462, 0, 0.832059, 0, 1.01624, 0, -0.832059, 0, -0.583462, 1.67916, -4.27573, -31.8429, -1.4957, 0, 0.84974, 0, 1.72023, 0, -0.84974, 0, -1.4957, 0.389885, -4.27573, -0.902112, 0.633899, 0, -0.861461, 0, 1.06955, 0, 0.861461, 0, 0.633899, -12.7942, -4.27573, 47.6705, -0.54204, 0, -1.7069, 0, 1.7909, 0, 1.7069, 0, -0.54204, 26.2304, -4.27573, 20.8285, -1.53944, 0, -0.233345, 0, 1.55703, 0, 0.233345, 0, -1.53944, 22.9297, -4.27573, 73.3437, -1.1484, 0, -1.06035, 0, 1.56307, 0, 1.06035, 0, -1.1484, 27.0733, -4.27573, 63.3539, 1.01564, 0, -0.789654, 0, 1.2865, 0, 0.789654, 0, 1.01564, 11.7079, -4.27573, 5.40232, -1.35016, 0, 0.765207, 0, 1.55193, 0, -0.765207, 0, -1.35016, 12.1941, -4.27573, 28.9167, 0.437403, 0, 0.945924, 0, 1.04216, 0, -0.945924, 0, 0.437403, 29.6126, -4.27573, -54.6469, -1.14404, 0, 1.01641, 0, 1.53033, 0, -1.01641, 0, -1.14404, 2.49697, -4.27573, -21.4525, 1.1727, 0, 1.28605, 0, 1.74045, 0, -1.28605, 0, 1.1727, 11.8345, -4.27573, -67.5065, -0.984964, 0, 0.289751, 0, 1.0267, 0, -0.289751, 0, -0.984964, -6.00531, -4.27573, 58.0241, -0.824356, 0, -0.667934, 0, 1.06099, 0, 0.667934, 0, -0.824356, 2.73447, -4.27573, -55.53, -0.238574, 0, 1.61041, 0, 1.62799, 0, -1.61041, 0, -0.238574, 23.9024, -4.27573, 25.0483, -1.173, 0, 0.722949, 0, 1.37789, 0, -0.722949, 0, -1.173, -11.0321, -4.27573, 26.4655, 0.371036, 0, -1.23923, 0, 1.29359, 0, 1.23923, 0, 0.371036, -4.5994, -4.27573, 21.1999, -1.9074, 0, 0.434824, 0, 1.95633, 0, -0.434824, 0, -1.9074, 27.3016, -4.27573, -13.4053, -0.207848, 0, -1.08282, 0, 1.10259, 0, 1.08282, 0, -0.207848, 10.5242, -4.27573, -62.9172, 0.846847, 0, 1.15328, 0, 1.4308, 0, -1.15328, 0, 0.846847, 29.6503, -4.27573, 34.1147, -0.848093, 0, -0.640562, 0, 1.06282, 0, 0.640562, 0, -0.848093, -14.5206, -4.27573, 34.3627, -0.789969, 0, 1.81365, 0, 1.97823, 0, -1.81365, 0, -0.789969, -3.67519, -4.27573, -15.9182, -0.997571, 0, -0.639438, 0, 1.18492, 0, 0.639438, 0, -0.997571, -13.1354, -4.27573, 27.0156, -0.174756, 0, 1.22178, 0, 1.23422, 0, -1.22178, 0, -0.174756, 26.5761, -4.27573, -56.1502, 0.708642, 0, 0.818611, 0, 1.08273, 0, -0.818611, 0, 0.708642, 30.8562, -4.27573, 66.7411, 0.317587, 0, -1.15028, 0, 1.19332, 0, 1.15028, 0, 0.317587, -3.64092, -4.27573, -0.133459, 1.12901, 0, 0.183853, 0, 1.14388, 0, -0.183853, 0, 1.12901, 23.9796, -4.27573, -39.8463, -1.38633, 0, -3.51461e-06, 0, 1.38633, 0, 3.51461e-06, 0, -1.38633, 5.46281, -4.27573, -54.3887, -1.93513, 0, -0.29779, 0, 1.95791, 0, 0.29779, 0, -1.93513, -5.38668, -4.27573, -54.4338, 1.08492, 0, 0.16647, 0, 1.09761, 0, -0.16647, 0, 1.08492, -1.34636, -4.27573, -40.7226, -1.50136, 0, 0.448781, 0, 1.567, 0, -0.448781, 0, -1.50136, 23.7188, -4.27573, -42.3885, 1.03983, 0, 0.372707, 0, 1.10461, 0, -0.372707, 0, 1.03983, 12.7502, -4.27573, 64.1952, -0.687446, 0, -1.58092, 0, 1.72392, 0, 1.58092, 0, -0.687446, 27.9095, -4.27573, -13.6253, -1.9211, 0, -0.358071, 0, 1.95419, 0, 0.358071, 0, -1.9211, 8.17524, -4.27573, -15.0875, 0.995561, 0, 0.254186, 0, 1.0275, 0, -0.254186, 0, 0.995561, 10.1543, -4.27573, 62.8189, 0.883007, 0, 1.71747, 0, 1.93117, 0, -1.71747, 0, 0.883007, 7.26231, -4.27573, -48.3214, 1.17189, 0, -1.1913, 0, 1.67108, 0, 1.1913, 0, 1.17189, 23.6825, -4.27573, -11.7356, -0.873771, 0, -1.0628, 0, 1.37587, 0, 1.0628, 0, -0.873771, -4.77448, -4.27573, 54.3236, 0.313235, 0, 1.03817, 0, 1.0844, 0, -1.03817, 0, 0.313235, -11.8199, -4.27573, -46.8915, 0.937777, 0, 0.646403, 0, 1.13897, 0, -0.646403, 0, 0.937777, 27.8811, -4.27573, 32.9935, -0.394832, 0, 1.30042, 0, 1.35904, 0, -1.30042, 0, -0.394832, 29.3912, -4.27573, 6.99633, 0.998548, 0, 1.55944, 0, 1.85174, 0, -1.55944, 0, 0.998548, -1.5197, -4.27573, 41.4558, -0.77041, 0, -1.61182, 0, 1.78647, 0, 1.61182, 0, -0.77041, -5.32618, -4.27573, 42.8871, -1.74062, 0, -0.367313, 0, 1.77896, 0, 0.367313, 0, -1.74062, -10.5505, -4.27573, -56.0449, -0.682114, 0, -1.40382, 0, 1.56077, 0, 1.40382, 0, -0.682114, -7.87277, -4.27573, -17.5745, 0.18108, 0, 1.9561, 0, 1.96446, 0, -1.9561, 0, 0.18108, 19.0703, -4.27573, -26.2672, -0.985782, 0, 0.938297, 0, 1.36094, 0, -0.938297, 0, -0.985782, 12.4047, -4.27573, -43.6424, 1.24209, 0, -1.22907, 0, 1.7474, 0, 1.22907, 0, 1.24209, -2.03327, -4.27573, 49.7262, 1.38695, 0, 1.33519, 0, 1.92519, 0, -1.33519, 0, 1.38695, 2.30476, -4.27573, -14.8457, -1.43143, 0, -0.0422461, 0, 1.43205, 0, 0.0422461, 0, -1.43143, -4.09596, -4.27573, 12.374, 0.862046, 0, -1.54983, 0, 1.77344, 0, 1.54983, 0, 0.862046, 22.8961, -4.27573, -12.9698, 0.934477, 0, 1.52718, 0, 1.7904, 0, -1.52718, 0, 0.934477, 29.7875, -4.27573, -52.9077, -1.16406, 0, 0.706702, 0, 1.36179, 0, -0.706702, 0, -1.16406, -0.525253, -4.27573, -48.9897, 0.05187, 0, -1.09095, 0, 1.09218, 0, 1.09095, 0, 0.05187, 8.63031, -4.27573, -15.1864, -1.34759, 0, -0.872689, 0, 1.60549, 0, 0.872689, 0, -1.34759, -3.94075, -4.27573, -50.6835, -1.33828, 0, 0.692712, 0, 1.50694, 0, -0.692712, 0, -1.33828, 11.1208, -4.27573, -34.7586, -1.80462, 0, 0.615998, 0, 1.90686, 0, -0.615998, 0, -1.80462, -12.4284, -4.27573, -48.5125, -0.0138265, 0, -1.9964, 0, 1.99645, 0, 1.9964, 0, -0.0138265, 2.28201, -4.27573, 12.102, 0.870624, 0, -1.56999, 0, 1.79524, 0, 1.56999, 0, 0.870624, 18.5489, -4.27573, -21.1602, 0.225482, 0, -1.22391, 0, 1.24451, 0, 1.22391, 0, 0.225482, 3.98957, -4.27573, -30.3716, -0.57908, 0, 0.929406, 0, 1.09505, 0, -0.929406, 0, -0.57908, 22.5629, -4.27573, -46.7765, 1.39471, 0, 0.104406, 0, 1.39861, 0, -0.104406, 0, 1.39471, 31.0123, -4.27573, -7.4734, -1.40924, 0, 1.37544, 0, 1.96921, 0, -1.37544, 0, -1.40924, 18.5163, -4.27573, -41.7213, -0.518741, 0, 0.977965, 0, 1.10703, 0, -0.977965, 0, -0.518741, 6.82069, -4.27573, 34.908, -0.890954, 0, 0.492764, 0, 1.01814, 0, -0.492764, 0, -0.890954, 22.4089, -4.27573, 21.5161, -1.85135, 0, -0.140336, 0, 1.85666, 0, 0.140336, 0, -1.85135, 24.6013, -4.27573, 12.2005, 1.03481, 0, 0.33525, 0, 1.08776, 0, -0.33525, 0, 1.03481, -11.8941, -4.27573, 63.3286, -0.943879, 0, 0.495348, 0, 1.06596, 0, -0.495348, 0, -0.943879, 11.1181, -4.27573, -51.3202, 1.05687, 0, 0.369106, 0, 1.11947, 0, -0.369106, 0, 1.05687, -8.8217, -4.27573, 43.8286, 0.322545, 0, 1.8638, 0, 1.89151, 0, -1.8638, 0, 0.322545, 25.097, -4.27573, 59.7462, 1.13811, 0, 0.106198, 0, 1.14305, 0, -0.106198, 0, 1.13811, 0.498024, -4.27573, 12.2732, -1.19862, 0, 0.0657704, 0, 1.20042, 0, -0.0657704, 0, -1.19862, 7.94181, -4.27573, -35.2625, -1.02778, 0, -0.127685, 0, 1.03568, 0, 0.127685, 0, -1.02778, 11.1254, -4.27573, -49.5231, -0.879786, 0, 0.855649, 0, 1.22726, 0, -0.855649, 0, -0.879786, 11.5606, -4.27573, 48.0168, 1.09471, 0, -0.16299, 0, 1.10677, 0, 0.16299, 0, 1.09471, -12.6391, -4.27573, 17.812, 1.43528, 0, -0.389621, 0, 1.48722, 0, 0.389621, 0, 1.43528, 17.6126, -4.27573, 45.0387, 0.653081, 0, 1.81462, 0, 1.92856, 0, -1.81462, 0, 0.653081, 7.27648, -4.27573, -31.2687, 0.931513, 0, 1.03424, 0, 1.3919, 0, -1.03424, 0, 0.931513, -3.88058, -4.27573, 10.3096, 0.530537, 0, -1.44697, 0, 1.54117, 0, 1.44697, 0, 0.530537, 0.9291, -4.27573, 31.2842, -1.00947, 0, 1.66509, 0, 1.94719, 0, -1.66509, 0, -1.00947, -10.9458, -4.27573, 23.378, -1.5825, 0, -0.191118, 0, 1.594, 0, 0.191118, 0, -1.5825, -11.5129, -4.27573, 14.4158, -0.909461, 0, 0.806312, 0, 1.21543, 0, -0.806312, 0, -0.909461, 24.381, -4.27573, -42.5873, -1.1497, 0, -0.418165, 0, 1.22338, 0, 0.418165, 0, -1.1497, 4.45425, -4.27573, -21.6178, -0.0672797, 0, 1.08877, 0, 1.09085, 0, -1.08877, 0, -0.0672797, 17.3022, -4.27573, -3.06007, -1.02427, 0, 0.193913, 0, 1.04246, 0, -0.193913, 0, -1.02427, 18.8925, -4.27573, 37.8689, -1.20582, 0, -0.0511483, 0, 1.2069, 0, 0.0511483, 0, -1.20582, 13.7029, -4.27573, 22.4263, -1.36307, 0, -0.0706584, 0, 1.3649, 0, 0.0706584, 0, -1.36307, 31.4902, -4.27573, -24.6469, 1.70027, 0, -0.252952, 0, 1.71898, 0, 0.252952, 0, 1.70027, -13.3448, -4.27573, -34.1786, 1.40071, 0, -0.381005, 0, 1.45161, 0, 0.381005, 0, 1.40071, -7.22658, -4.27573, 38.8755, -1.38531, 0, -0.545709, 0, 1.48892, 0, 0.545709, 0, -1.38531, 25.9528, -4.27573, 71.2889, 1.36543, 0, -0.687783, 0, 1.52887, 0, 0.687783, 0, 1.36543, 21.3824, -4.27573, 53.5692, -1.66766, 0, -0.912907, 0, 1.90118, 0, 0.912907, 0, -1.66766, -13.6315, -4.27573, 20.7564, -1.73512, 0, -0.0401234, 0, 1.73559, 0, 0.0401234, 0, -1.73512, 3.63345, -4.27573, -46.3982, 0.318271, 0, -1.95569, 0, 1.98142, 0, 1.95569, 0, 0.318271, -1.17914, -4.27573, -1.28364, 1.38974, 0, 0.0926789, 0, 1.39283, 0, -0.0926789, 0, 1.38974, 1.84404, -4.27573, 31.5236, -0.802971, 0, 0.68497, 0, 1.05544, 0, -0.68497, 0, -0.802971, 10.6773, -4.27573, 0.926903, 0.0689979, 0, -1.70127, 0, 1.70267, 0, 1.70127, 0, 0.0689979, 1.02254, -4.27573, -37.2401, 1.47529, 0, 0.653242, 0, 1.61345, 0, -0.653242, 0, 1.47529, 27.5036, -4.27573, 44.9722, -0.15853, 0, -1.32411, 0, 1.33356, 0, 1.32411, 0, -0.15853, -10.5784, -4.27573, 66.0674, 0.840461, 0, 0.874829, 0, 1.21314, 0, -0.874829, 0, 0.840461, -10.5441, -4.27573, 68.2404, 1.53162, 0, -0.680558, 0, 1.67601, 0, 0.680558, 0, 1.53162, 20.68, -4.27573, 63.5332, -1.28138, 0, 0.198927, 0, 1.29673, 0, -0.198927, 0, -1.28138, -8.96431, -4.27573, 55.1139, 0.190238, 0, -1.67197, 0, 1.68276, 0, 1.67197, 0, 0.190238, -0.633961, -4.27573, 35.8115, -0.727915, 0, 1.8497, 0, 1.98777, 0, -1.8497, 0, -0.727915, 16.5589, -4.27573, 35.6943, -1.03915, 0, 0.145874, 0, 1.04934, 0, -0.145874, 0, -1.03915, 12.8456, -4.27573, -6.40291, 0.0450919, 0, -1.45042, 0, 1.45112, 0, 1.45042, 0, 0.0450919, 32.8232, -4.27573, -58.6721, -1.81734, 0, -0.768376, 0, 1.9731, 0, 0.768376, 0, -1.81734, 17.3511, -4.27573, -42.7461, 0.953107, 0, 1.11193, 0, 1.46451, 0, -1.11193, 0, 0.953107, 3.71778, -4.27573, 40.6396, 0.10262, 0, 1.70584, 0, 1.70893, 0, -1.70584, 0, 0.10262, 31.0186, -4.27573, 25.7653, 0.228947, 0, 0.99123, 0, 1.01733, 0, -0.99123, 0, 0.228947, 12.1675, -4.27573, 52.7493, -0.022151, 0, -1.26869, 0, 1.26889, 0, 1.26869, 0, -0.022151, 19.9987, -4.27573, 68.0275, 1.25048, 0, -1.31463, 0, 1.81437, 0, 1.31463, 0, 1.25048, -2.84192, -4.27573, -18.6421, 1.21993, 0, 0.45458, 0, 1.30188, 0, -0.45458, 0, 1.21993, 23.3514, -4.27573, -34.3419, 0.265289, 0, 1.36842, 0, 1.3939, 0, -1.36842, 0, 0.265289, 4.37004, -4.27573, -18.8776, 0.430018, 0, -1.2195, 0, 1.29309, 0, 1.2195, 0, 0.430018, 10.0105, -4.27573, 63.7236, -1.73197, 0, -0.260003, 0, 1.75137, 0, 0.260003, 0, -1.73197, -10.1077, -4.27573, 12.9261, 1.68847, 0, 0.0577344, 0, 1.68946, 0, -0.0577344, 0, 1.68847, 15.4906, -4.27573, 5.07498, 1.51143, 0, 0.189656, 0, 1.52328, 0, -0.189656, 0, 1.51143, 29.8606, -4.27573, -44.166, -1.53784, 0, 0.793478, 0, 1.73048, 0, -0.793478, 0, -1.53784, 26.8399, -4.27573, -15.3668, 1.58611, 0, 0.919949, 0, 1.83359, 0, -0.919949, 0, 1.58611, 2.27755, -4.27573, -47.1713, 0.258828, 0, 1.9039, 0, 1.92141, 0, -1.9039, 0, 0.258828, 21.4737, -4.27573, -31.2791, 0.171696, 0, -1.12701, 0, 1.14001, 0, 1.12701, 0, 0.171696, 29.5036, -4.27573, -0.892839, 1.56198, 0, -0.820747, 0, 1.76449, 0, 0.820747, 0, 1.56198, 2.4509, -4.27573, -32.3916, -0.824369, 0, 0.60713, 0, 1.02381, 0, -0.60713, 0, -0.824369, 21.8572, -4.27573, -15.2083, 0.905019, 0, -0.798515, 0, 1.20693, 0, 0.798515, 0, 0.905019, 17.7005, -4.27573, -12.6166, -0.626299, 0, -1.00206, 0, 1.18168, 0, 1.00206, 0, -0.626299, -1.66395, -4.27573, 32.7377, -0.088131, 0, -1.13289, 0, 1.13631, 0, 1.13289, 0, -0.088131, 20.9496, -4.27573, -53.0381, 1.0721, 0, 0.478124, 0, 1.17389, 0, -0.478124, 0, 1.0721, 29.2849, -4.27573, 46.0087, -1.70237, 0, -0.868803, 0, 1.91125, 0, 0.868803, 0, -1.70237, 12.6401, -4.27573, -33.1371, -1.33083, 0, -0.121479, 0, 1.33636, 0, 0.121479, 0, -1.33083, 12.6508, -4.27573, 34.3547, 1.15673, 0, -0.426596, 0, 1.23289, 0, 0.426596, 0, 1.15673, 17.7865, -4.27573, 8.15385, 1.45835, 0, -0.280174, 0, 1.48502, 0, 0.280174, 0, 1.45835, -6.55525, -4.27573, 20.4916, -1.52537, 0, -0.72828, 0, 1.69031, 0, 0.72828, 0, -1.52537, 10.3549, -4.27573, 52.429, -1.6928, 0, -0.351134, 0, 1.72884, 0, 0.351134, 0, -1.6928, 2.54918, -4.27573, 34.904, 1.47082, 0, -0.00295411, 0, 1.47082, 0, 0.00295411, 0, 1.47082, 17.6948, -4.27573, 18.2154, 1.27382, 0, 1.47843, 0, 1.9515, 0, -1.47843, 0, 1.27382, -7.3103, -4.27573, 7.44829, -1.42392, 0, 0.188566, 0, 1.43635, 0, -0.188566, 0, -1.42392, 29.1338, -4.27573, -31.035, -0.708693, 0, 1.01767, 0, 1.24012, 0, -1.01767, 0, -0.708693, 19.8833, -4.27573, 36.2699, -0.274432, 0, 1.17406, 0, 1.20571, 0, -1.17406, 0, -0.274432, 9.11308, -4.27573, -5.42639, 0.531286, 0, -1.23778, 0, 1.34699, 0, 1.23778, 0, 0.531286, -8.44967, -4.27573, 63.5367, -0.581593, 0, 1.80061, 0, 1.89221, 0, -1.80061, 0, -0.581593, 18.6385, -4.27573, -56.8091, 0.484982, 0, -1.51037, 0, 1.58632, 0, 1.51037, 0, 0.484982, 0.428684, -4.27573, -26.419, -0.67707, 0, -0.778343, 0, 1.03162, 0, 0.778343, 0, -0.67707, 17.3594, -4.27573, -5.91794, 0.853281, 0, 1.22074, 0, 1.4894, 0, -1.22074, 0, 0.853281, 29.2424, -4.27573, -24.2769, -0.404645, 0, 1.04165, 0, 1.11748, 0, -1.04165, 0, -0.404645, 27.0691, -4.27573, 41.4297, -0.0698616, 0, 1.81476, 0, 1.8161, 0, -1.81476, 0, -0.0698616, 22.4385, -4.27573, -45.1446, 1.35271, 0, -0.740356, 0, 1.54206, 0, 0.740356, 0, 1.35271, 20.457, -4.27573, -54.58, 0.907188, 0, 1.72834, 0, 1.95196, 0, -1.72834, 0, 0.907188, -1.26017, -4.27573, -42.7092, 0.183393, 0, -1.87284, 0, 1.8818, 0, 1.87284, 0, 0.183393, 21.2232, -4.27573, 47.0694, -1.66926, 0, 0.393927, 0, 1.71511, 0, -0.393927, 0, -1.66926, -6.46315, -4.27573, -60.5635, -0.242242, 0, 1.25516, 0, 1.27832, 0, -1.25516, 0, -0.242242, 1.76894, -4.27573, -13.6553, -1.07012, 0, 1.57334, 0, 1.90278, 0, -1.57334, 0, -1.07012, 4.19687, -4.27573, 18.5836, -1.04943, 0, 0.308051, 0, 1.09371, 0, -0.308051, 0, -1.04943, 15.7202, -4.27573, 7.85081, 1.27448, 0, -0.763905, 0, 1.48589, 0, 0.763905, 0, 1.27448, 15.9594, -4.27573, 51.8664, 1.83695, 0, -0.119749, 0, 1.84085, 0, 0.119749, 0, 1.83695, 1.88159, -4.27573, -31.1211, 0.838961, 0, 0.942161, 0, 1.26156, 0, -0.942161, 0, 0.838961, 8.84655, -4.27573, 53.0248, 1.31092, 0, -1.16373, 0, 1.75294, 0, 1.16373, 0, 1.31092, 19.9754, -4.27573, 50.8342, 0.594271, 0, 1.68771, 0, 1.78928, 0, -1.68771, 0, 0.594271, 28.1404, -4.27573, 35.1692, -1.1428, 0, -0.610851, 0, 1.29581, 0, 0.610851, 0, -1.1428, 24.8936, -4.27573, -29.3231, 0.482929, 0, 1.27993, 0, 1.36801, 0, -1.27993, 0, 0.482929, -3.90937, -4.27573, -46.8513, -1.43284, 0, -0.890367, 0, 1.68695, 0, 0.890367, 0, -1.43284, 14.194, -4.27573, 11.7702, 1.26335, 0, 1.42899, 0, 1.90737, 0, -1.42899, 0, 1.26335, -8.00319, -4.27573, 39.9603, 1.40945, 0, -0.164896, 0, 1.41906, 0, 0.164896, 0, 1.40945, -0.575935, -4.27573, -63.2793, -1.35547, 0, -0.337473, 0, 1.39684, 0, 0.337473, 0, -1.35547, 30.225, -4.27573, -51.3219, -1.65201, 0, -0.791777, 0, 1.83195, 0, 0.791777, 0, -1.65201, 0.882042, -4.27573, -59.5675, -1.14026, 0, -0.464337, 0, 1.23118, 0, 0.464337, 0, -1.14026, 5.62629, -4.27573, -0.390269, 1.5033, 0, 1.06259, 0, 1.84093, 0, -1.06259, 0, 1.5033, 15.8644, -4.27573, -9.58674, 1.51169, 0, 0.233406, 0, 1.5296, 0, -0.233406, 0, 1.51169, 27.5269, -4.27573, 38.0434, 1.8443, 0, -0.194542, 0, 1.85453, 0, 0.194542, 0, 1.8443, 24.77, -4.27573, 34.3485, 1.78697, 0, 0.162794, 0, 1.79437, 0, -0.162794, 0, 1.78697, -12.0516, -4.27573, -41.5553, 1.14456, 0, -1.45071, 0, 1.84786, 0, 1.45071, 0, 1.14456, 26.5391, -4.27573, -57.5875, 0.955854, 0, -0.676187, 0, 1.17085, 0, 0.676187, 0, 0.955854, 1.47432, -4.27573, 51.3562, 1.00555, 0, -1.72362, 0, 1.99549, 0, 1.72362, 0, 1.00555, 32.3497, -4.27573, -65.8575, 0.0710039, 0, 1.81737, 0, 1.81876, 0, -1.81737, 0, 0.0710039, -3.75862, -4.27573, 16.7499, 1.79583, 0, -0.410127, 0, 1.84207, 0, 0.410127, 0, 1.79583, 15.2222, -4.27573, 42.7185, 0.528604, 0, 1.48437, 0, 1.57568, 0, -1.48437, 0, 0.528604, 5.02244, -4.27573, -42.1422, 0.104795, 0, 1.57147, 0, 1.57496, 0, -1.57147, 0, 0.104795, 22.4904, -4.27573, 14.0159, -0.613727, 0, 1.70081, 0, 1.80815, 0, -1.70081, 0, -0.613727, 14.5754, -4.27573, -42.3118, 0.915814, 0, -1.06233, 0, 1.40259, 0, 1.06233, 0, 0.915814, 1.84242, -4.27573, 32.1662, -1.94032, 0, 0.467266, 0, 1.99579, 0, -0.467266, 0, -1.94032, -5.5066, -4.27573, -8.16463, -0.364413, 0, -1.0076, 0, 1.07147, 0, 1.0076, 0, -0.364413, -9.68855, -4.27573, -52.6938, 1.72601, 0, 0.76371, 0, 1.88742, 0, -0.76371, 0, 1.72601, 15.0478, -4.27573, -26.9767, 0.454768, 0, 1.10282, 0, 1.19291, 0, -1.10282, 0, 0.454768, 16.9173, -4.27573, -17.0838, -0.518996, 0, -1.89143, 0, 1.96134, 0, 1.89143, 0, -0.518996, 12.8809, -4.27573, 45.5726, -0.972407, 0, -1.15245, 0, 1.50788, 0, 1.15245, 0, -0.972407, 22.9468, -4.27573, -2.66075, -1.41504, 0, -1.00658, 0, 1.73653, 0, 1.00658, 0, -1.41504, 17.6406, -4.27573, 58.1145, -1.53583, 0, -0.23877, 0, 1.55428, 0, 0.23877, 0, -1.53583, -5.81886, -4.27573, 70.3618, 1.62636, 0, -0.28283, 0, 1.65077, 0, 0.28283, 0, 1.62636, -8.86893, -4.27573, 59.9155, 0.871529, 0, -1.6618, 0, 1.87647, 0, 1.6618, 0, 0.871529, -12.0058, -4.27573, -5.59151, -1.32169, 0, 0.610639, 0, 1.45594, 0, -0.610639, 0, -1.32169, 28.8469, -4.27573, -32.7237, 0.311211, 0, 1.36505, 0, 1.40007, 0, -1.36505, 0, 0.311211, -3.61295, -4.27573, -22.5585, 0.35372, 0, 1.5843, 0, 1.6233, 0, -1.5843, 0, 0.35372, 7.84815, -4.27573, -31.1928, 0.525651, 0, -1.1185, 0, 1.23586, 0, 1.1185, 0, 0.525651, 4.78351, -4.27573, -6.36828, 0.0353671, 0, 1.17549, 0, 1.17603, 0, -1.17549, 0, 0.0353671, 0.461098, -4.27573, -32.7832, -0.924734, 0, 1.66976, 0, 1.90872, 0, -1.66976, 0, -0.924734, -10.847, -4.27573, 71.4157, 1.62048, 0, -1.11721, 0, 1.96827, 0, 1.11721, 0, 1.62048, 27.0976, -4.27573, 29.347, 1.43552, 0, -0.586638, 0, 1.55076, 0, 0.586638, 0, 1.43552, -8.89427, -4.27573, 27.5662, 0.605979, 0, -1.81609, 0, 1.91453, 0, 1.81609, 0, 0.605979, 9.77754, -4.27573, -38.6087, -0.20944, 0, 1.68993, 0, 1.70286, 0, -1.68993, 0, -0.20944, -8.54876, -4.27573, -18.2292, 0.764291, 0, 0.904749, 0, 1.18436, 0, -0.904749, 0, 0.764291, -14.0019, -4.27573, 62.1611, 1.19581, 0, -1.42068, 0, 1.85696, 0, 1.42068, 0, 1.19581, 18.1394, -4.27573, 68.4123, 1.37092, 0, 1.36623, 0, 1.93546, 0, -1.36623, 0, 1.37092, -2.94918, -4.27573, 65.0097, 1.74714, 0, 0.294393, 0, 1.77177, 0, -0.294393, 0, 1.74714, -7.88747, -4.27573, -42.4963, -0.706946, 0, 1.40456, 0, 1.57244, 0, -1.40456, 0, -0.706946, 8.09372, -4.27573, 28.203, 1.21128, 0, 1.44109, 0, 1.88254, 0, -1.44109, 0, 1.21128, -6.58077, -4.27573, 12.9243, 1.32009, 0, -0.136323, 0, 1.32711, 0, 0.136323, 0, 1.32009, -5.24361, -4.27573, 29.2283, 1.09342, 0, 0.904146, 0, 1.41882, 0, -0.904146, 0, 1.09342, 25.672, -4.27573, 53.3834, -1.24519, 0, 1.27308, 0, 1.7808, 0, -1.27308, 0, -1.24519, 11.8882, -4.27573, 11.5965, 1.26598, 0, -0.627923, 0, 1.41315, 0, 0.627923, 0, 1.26598, -3.39204, -4.27573, 50.1505, 1.24961, 0, 0.151451, 0, 1.25875, 0, -0.151451, 0, 1.24961, -9.96859, -4.27573, -64.1814, -0.611186, 0, -1.23568, 0, 1.37857, 0, 1.23568, 0, -0.611186, 12.6119, -4.27573, 39.0252, -0.29842, 0, -1.64523, 0, 1.67208, 0, 1.64523, 0, -0.29842, 19.8861, -4.27573, 10.9771, 1.0312, 0, 0.916067, 0, 1.37933, 0, -0.916067, 0, 1.0312, 23.7654, -4.27573, -49.2022, 0.661091, 0, 1.24462, 0, 1.4093, 0, -1.24462, 0, 0.661091, 15.2149, -4.27573, 6.68545, -1.43017, 0, 0.169369, 0, 1.44016, 0, -0.169369, 0, -1.43017, -5.90952, -4.27573, 22.7516, 1.16761, 0, 1.44194, 0, 1.85539, 0, -1.44194, 0, 1.16761, 28.7776, -4.27573, 19.0742, -0.41355, 0, 1.08954, 0, 1.16539, 0, -1.08954, 0, -0.41355, 7.09452, -4.27573, 1.65894, -0.962976, 0, 0.697219, 0, 1.18888, 0, -0.697219, 0, -0.962976, 10.6152, -4.27573, 31.7844, -0.164565, 0, -1.88802, 0, 1.89518, 0, 1.88802, 0, -0.164565, -9.4305, -4.27573, -39.5499, 0.108243, 0, -1.01406, 0, 1.01982, 0, 1.01406, 0, 0.108243, 3.46925, -4.27573, 46.6672, 0.00678657, 0, 1.70603, 0, 1.70604, 0, -1.70603, 0, 0.00678657, 12.6736, -4.27573, -39.4651, 0.815528, 0, 1.34602, 0, 1.5738, 0, -1.34602, 0, 0.815528, -11.3426, -4.27573, 39.797, 0.0184136, 0, -1.93727, 0, 1.93735, 0, 1.93727, 0, 0.0184136, -7.49793, -4.27573, -9.19998, -1.5564, 0, 0.00663806, 0, 1.55641, 0, -0.00663806, 0, -1.5564, -0.705391, -4.27573, 15.273, -1.42095, 0, 1.17086, 0, 1.8412, 0, -1.17086, 0, -1.42095, 15.6419, -4.27573, -49.934, 1.04596, 0, -0.603516, 0, 1.20759, 0, 0.603516, 0, 1.04596, 7.63762, -4.27573, -50.9256, 1.23492, 0, -1.5468, 0, 1.9793, 0, 1.5468, 0, 1.23492, 3.35856, -4.27573, 28.8001, -1.06578, 0, 0.888639, 0, 1.38765, 0, -0.888639, 0, -1.06578, 8.0987, -4.27573, 17.0722, -1.28449, 0, 0.132718, 0, 1.29133, 0, -0.132718, 0, -1.28449, 8.2795, -4.27573, 69.3271, -1.43913, 0, -0.857499, 0, 1.67523, 0, 0.857499, 0, -1.43913, -1.83165, -4.27573, -8.2039, 1.05332, 0, -0.974694, 0, 1.4351, 0, 0.974694, 0, 1.05332, 8.69866, -4.27573, -58.4068, 1.01217, 0, -0.699857, 0, 1.23056, 0, 0.699857, 0, 1.01217, -10.0747, -4.27573, -16.2474, -1.93536, 0, 0.0760566, 0, 1.93686, 0, -0.0760566, 0, -1.93536, -6.16479, -4.27573, -11.7792, 0.544959, 0, 1.63965, 0, 1.72784, 0, -1.63965, 0, 0.544959, 18.2088, -4.27573, -50.0706, -1.74961, 0, 0.458695, 0, 1.80874, 0, -0.458695, 0, -1.74961, -4.00347, -4.27573, -63.0018, 0.943212, 0, -0.58957, 0, 1.11231, 0, 0.58957, 0, 0.943212, 10.2944, -4.27573, 59.5756, 1.06491, 0, -0.216742, 0, 1.08674, 0, 0.216742, 0, 1.06491, 5.42064, -4.27573, -53.6471, 1.23708, 0, 1.19333, 0, 1.71884, 0, -1.19333, 0, 1.23708, 31.0077, -4.27573, 23.9723, -0.912665, 0, 1.12617, 0, 1.44955, 0, -1.12617, 0, -0.912665, -5.52682, -4.27573, 50.0087, 0.0308022, 0, 1.53066, 0, 1.53097, 0, -1.53066, 0, 0.0308022, 7.16208, -4.27573, 16.1113, 1.35584, 0, -0.0905327, 0, 1.35886, 0, 0.0905327, 0, 1.35584, 27.4483, -4.27573, -4.50076, -1.00744, 0, -1.0633, 0, 1.46476, 0, 1.0633, 0, -1.00744, -13.9254, -4.27573, 69.7777, 1.47526, 0, -1.05077, 0, 1.81121, 0, 1.05077, 0, 1.47526, -5.05289, -4.27573, 31.873, -1.20773, 0, -1.52841, 0, 1.94798, 0, 1.52841, 0, -1.20773, -10.782, -4.27573, 24.5355, 0.83765, 0, 0.70467, 0, 1.09463, 0, -0.70467, 0, 0.83765, 24.0136, -4.27573, 5.06318, 1.42804, 0, 0.858919, 0, 1.66645, 0, -0.858919, 0, 1.42804, 21.1327, -4.27573, 60.767, -0.990373, 0, 1.63983, 0, 1.9157, 0, -1.63983, 0, -0.990373, 27.7135, -4.27573, -54.1289, 0.775395, 0, 0.966198, 0, 1.23886, 0, -0.966198, 0, 0.775395, -9.38304, -4.27573, 73.8402, -1.00611, 0, -0.810458, 0, 1.29194, 0, 0.810458, 0, -1.00611, 0.889259, -4.27573, -10.7895, -1.45832, 0, -0.397072, 0, 1.51141, 0, 0.397072, 0, -1.45832, -12.9808, -4.27573, 37.3873, -1.5123, 0, 0.490996, 0, 1.59001, 0, -0.490996, 0, -1.5123, 17.6282, -4.27573, -30.0551, 0.935027, 0, -0.45978, 0, 1.04196, 0, 0.45978, 0, 0.935027, -12.9602, -4.27573, -65.8023, -0.484426, 0, 1.50734, 0, 1.58327, 0, -1.50734, 0, -0.484426, 18.9092, -4.27573, -24.485, 1.50217, 0, 0.969679, 0, 1.78796, 0, -0.969679, 0, 1.50217, 6.97922, -4.27573, -16.8395, 0.321429, 0, 1.13368, 0, 1.17837, 0, -1.13368, 0, 0.321429, -9.31404, -4.27573, -21.7707, 1.12938, 0, 0.735944, 0, 1.348, 0, -0.735944, 0, 1.12938, 6.50243, -4.27573, -21.5818, 0.979098, 0, 0.795059, 0, 1.26125, 0, -0.795059, 0, 0.979098, 20.4788, -4.27573, 72.0034, -0.450247, 0, 1.33246, 0, 1.40647, 0, -1.33246, 0, -0.450247, 25.2432, -4.27573, -0.186418, 0.198302, 0, -1.52143, 0, 1.5343, 0, 1.52143, 0, 0.198302, 16.5185, -4.27573, -36.04, -0.662923, 0, 1.12659, 0, 1.30716, 0, -1.12659, 0, -0.662923, 30.2778, -4.27573, 60.706, -1.58557, 0, 0.321003, 0, 1.61774, 0, -0.321003, 0, -1.58557, -8.42049, -4.27573, 2.1974, -0.692655, 0, -1.54124, 0, 1.68973, 0, 1.54124, 0, -0.692655, -12.5389, -4.27573, -5.93819, -1.11985, 0, -0.59263, 0, 1.26699, 0, 0.59263, 0, -1.11985, 12.29, -4.27573, -50.8426, -1.07659, 0, 0.817802, 0, 1.35198, 0, -0.817802, 0, -1.07659, 9.62644, -4.27573, 67.7413, 0.387035, 0, 1.6853, 0, 1.72917, 0, -1.6853, 0, 0.387035, 18.2826, -4.27573, 13.6495, 0.875584, 0, 0.638239, 0, 1.08351, 0, -0.638239, 0, 0.875584, 18.3, -4.27573, -60.8142, 1.18202, 0, -0.130353, 0, 1.18919, 0, 0.130353, 0, 1.18202, -2.47453, -4.27573, -15.7453, -0.205262, 0, -1.51034, 0, 1.52422, 0, 1.51034, 0, -0.205262, -10.7842, -4.27573, 36.7591, -0.0134587, 0, 1.4608, 0, 1.46086, 0, -1.4608, 0, -0.0134587, -7.23669, -4.27573, 39.1537, 1.72121, 0, -0.135685, 0, 1.72655, 0, 0.135685, 0, 1.72121, 4.89442, -4.27573, -63.1413, 1.26959, 0, -0.677852, 0, 1.43922, 0, 0.677852, 0, 1.26959, 31.7057, -4.27573, 57.8978, 1.23186, 0, -1.52909, 0, 1.96357, 0, 1.52909, 0, 1.23186, 23.5855, -4.27573, 18.749, 0.287833, 0, 1.0879, 0, 1.12533, 0, -1.0879, 0, 0.287833, 28.1915, -4.27573, 71.6456, 0.960249, 0, 0.883151, 0, 1.30462, 0, -0.883151, 0, 0.960249, -10.1207, -4.27573, -57.7331, -0.0679179, 0, 1.85771, 0, 1.85895, 0, -1.85771, 0, -0.0679179, 14.5159, -4.27573, -57.3899, -1.94105, 0, -0.327771, 0, 1.96853, 0, 0.327771, 0, -1.94105, 24.83, -4.27573, -38.4632, -0.745846, 0, -0.737001, 0, 1.04855, 0, 0.737001, 0, -0.745846, 17.5088, -4.27573, -13.4584, 0.843254, 0, 1.51259, 0, 1.73176, 0, -1.51259, 0, 0.843254, 18.7046, -4.27573, -20.7344, 1.32679, 0, 1.1927, 0, 1.78406, 0, -1.1927, 0, 1.32679, 6.031, -4.27573, -51.2924, -0.868768, 0, 1.71349, 0, 1.92115, 0, -1.71349, 0, -0.868768, -13.0573, -4.27573, -7.72119, 1.22771, 0, 1.04188, 0, 1.61021, 0, -1.04188, 0, 1.22771, 23.4506, -4.27573, -21.2857, -0.512732, 0, -0.898691, 0, 1.03467, 0, 0.898691, 0, -0.512732, -9.37524, -4.27573, 16.7167, -0.725054, 0, 1.03306, 0, 1.2621, 0, -1.03306, 0, -0.725054, -6.1618, -4.27573, 12.5656, -0.15023, 0, 1.9289, 0, 1.93474, 0, -1.9289, 0, -0.15023, 19.9872, -4.27573, -53.7108, -0.351081, 0, -1.40543, 0, 1.44862, 0, 1.40543, 0, -0.351081, 27.1122, -4.27573, -46.6846, 1.03694, 0, -0.659337, 0, 1.22881, 0, 0.659337, 0, 1.03694, 6.85496, -4.27573, -33.8129, 1.18234, 0, -0.65196, 0, 1.35018, 0, 0.65196, 0, 1.18234, -7.89418, -4.27573, -25.7489, -1.64458, 0, 0.756659, 0, 1.81029, 0, -0.756659, 0, -1.64458, 10.0054, -4.27573, 21.5815, 1.73433, 0, 0.620519, 0, 1.842, 0, -0.620519, 0, 1.73433, 15.4187, -4.27573, -12.1323, -0.382004, 0, -1.20265, 0, 1.26186, 0, 1.20265, 0, -0.382004, -5.02303, -4.27573, -17.9566, 1.02664, 0, 0.853156, 0, 1.33486, 0, -0.853156, 0, 1.02664, -6.18446, -4.27573, -17.6739, -0.487368, 0, 1.30021, 0, 1.38855, 0, -1.30021, 0, -0.487368, -7.17894, -4.27573, 63.9093, -0.854377, 0, -1.42283, 0, 1.65964, 0, 1.42283, 0, -0.854377, 28.1481, -4.27573, -61.2246, -1.5854, 0, 0.347659, 0, 1.62308, 0, -0.347659, 0, -1.5854, 8.34532, -4.27573, 17.7835, 0.343524, 0, 1.45042, 0, 1.49055, 0, -1.45042, 0, 0.343524, -12.6277, -4.27573, -27.7909, -0.745776, 0, 1.13917, 0, 1.36158, 0, -1.13917, 0, -0.745776, 6.31936, -4.27573, 57.646, -1.10525, 0, -1.35842, 0, 1.75125, 0, 1.35842, 0, -1.10525, -10.7712, -4.27573, -54.0491, -1.09786, 0, -0.939854, 0, 1.4452, 0, 0.939854, 0, -1.09786, -13.301, -4.27573, 54.6462, -1.43238, 0, 0.631611, 0, 1.56546, 0, -0.631611, 0, -1.43238, -2.50791, -4.27573, -51.8063, 0.0228948, 0, -1.33805, 0, 1.33825, 0, 1.33805, 0, 0.0228948, 15.2899, -4.27573, -1.14884, -1.11458, 0, 0.136303, 0, 1.12288, 0, -0.136303, 0, -1.11458, 24.2142, -4.27573, 16.2038, -0.221157, 0, 1.81551, 0, 1.82893, 0, -1.81551, 0, -0.221157, 13.1957, -4.27573, 12.4722, -0.214625, 0, 1.31885, 0, 1.3362, 0, -1.31885, 0, -0.214625, 18.254, -4.27573, -50.8971, -1.1265, 0, -1.19868, 0, 1.64495, 0, 1.19868, 0, -1.1265, -3.29487, -4.27573, -13.5303, 0.0711988, 0, 1.24233, 0, 1.24437, 0, -1.24233, 0, 0.0711988, 11.4839, -4.27573, 2.18184, 1.5691, 0, 0.302482, 0, 1.59799, 0, -0.302482, 0, 1.5691, -10.132, -4.27573, -3.02309, 1.66453, 0, -0.407725, 0, 1.71374, 0, 0.407725, 0, 1.66453, 14.8654, -4.27573, -27.6921, 1.17015, 0, -0.0420404, 0, 1.17091, 0, 0.0420404, 0, 1.17015, 9.33487, -4.27573, -10.4074, 1.7984, 0, -0.0326946, 0, 1.7987, 0, 0.0326946, 0, 1.7984, -9.15432, -4.27573, -56.7585, -0.808749, 0, -0.855473, 0, 1.17725, 0, 0.855473, 0, -0.808749, 23.104, -4.27573, -7.07504, 0.00505418, 0, -1.02656, 0, 1.02658, 0, 1.02656, 0, 0.00505418, 20.9972, -4.27573, -40.743, 0.939597, 0, 0.850594, 0, 1.26742, 0, -0.850594, 0, 0.939597, 26.121, -4.27573, -53.2117, 0.225897, 0, -1.54845, 0, 1.56484, 0, 1.54845, 0, 0.225897, -13.0274, -4.27573, 34.2839, -0.471719, 0, 1.72234, 0, 1.78577, 0, -1.72234, 0, -0.471719, 25.1366, -4.27573, -13.0801, -0.598351, 0, 1.68199, 0, 1.78525, 0, -1.68199, 0, -0.598351, 8.47321, -4.27573, 12.3986, -1.44189, 0, 0.206551, 0, 1.4566, 0, -0.206551, 0, -1.44189, 24.2497, -4.27573, 54.8731, -1.32513, 0, 0.019345, 0, 1.32528, 0, -0.019345, 0, -1.32513, -0.672756, -4.27573, -11.0488, 1.10347, 0, 1.02694, 0, 1.5074, 0, -1.02694, 0, 1.10347, -10.5416, -4.27573, 10.6252, -0.993512, 0, -1.64345, 0, 1.92041, 0, 1.64345, 0, -0.993512, 22.1089, -4.27573, 38.5552, -0.474976, 0, -1.25738, 0, 1.3441, 0, 1.25738, 0, -0.474976, 20.2522, -4.27573, -31.4843, 1.52402, 0, -1.06212, 0, 1.85762, 0, 1.06212, 0, 1.52402, 6.48146, -4.27573, 29.6362, -1.01856, 0, 1.3697, 0, 1.70691, 0, -1.3697, 0, -1.01856, -3.47131, -4.27573, 61.9085, 0.493735, 0, 1.36116, 0, 1.44794, 0, -1.36116, 0, 0.493735, 10.7198, -4.27573, 5.51839, -1.42842, 0, 0.35938, 0, 1.47294, 0, -0.35938, 0, -1.42842, 24.8621, -4.27573, -15.2463, 1.25712, 0, -0.628201, 0, 1.40535, 0, 0.628201, 0, 1.25712, 15.3368, -4.27573, -15.1239, -1.09005, 0, 0.629169, 0, 1.25859, 0, -0.629169, 0, -1.09005, -5.55716, -4.27573, -3.92717, 0.383427, 0, -1.23643, 0, 1.29452, 0, 1.23643, 0, 0.383427, 1.20454, -4.27573, 48.8611, -1.29299, 0, -1.31213, 0, 1.84215, 0, 1.31213, 0, -1.29299, 27.2271, -4.27573, 66.5563, 0.0111723, 0, 1.18222, 0, 1.18227, 0, -1.18222, 0, 0.0111723, 22.6817, -4.27573, -4.79133, -0.79062, 0, 1.26834, 0, 1.49458, 0, -1.26834, 0, -0.79062, 27.9893, -4.27573, -50.8548, 1.2895, 0, 0.391512, 0, 1.34763, 0, -0.391512, 0, 1.2895, -0.349148, -4.27573, 3.13835, 0.996076, 0, 0.323676, 0, 1.04735, 0, -0.323676, 0, 0.996076, 3.61518, -4.27573, -48.5821, -0.680573, 0, 1.43187, 0, 1.58538, 0, -1.43187, 0, -0.680573, 3.9636, -4.27573, 39.6171, 0.809067, 0, -1.57154, 0, 1.76757, 0, 1.57154, 0, 0.809067, 28.938, -4.27573, -15.6147, 1.42331, 0, 0.145766, 0, 1.43075, 0, -0.145766, 0, 1.42331, -4.77254, -4.27573, -8.94885, 0.381979, 0, -1.25368, 0, 1.31058, 0, 1.25368, 0, 0.381979, 8.03402, -4.27573, 6.76787, 0.602186, 0, -1.32006, 0, 1.45093, 0, 1.32006, 0, 0.602186, 9.09042, -4.27573, 24.4831, -1.03787, 0, 0.151382, 0, 1.04886, 0, -0.151382, 0, -1.03787, 29.7433, -4.27573, 44.3044, -0.473289, 0, -1.15018, 0, 1.24375, 0, 1.15018, 0, -0.473289, 31.9324, -4.27573, -41.5161, 1.3994, 0, -0.86224, 0, 1.64371, 0, 0.86224, 0, 1.3994, 18.3209, -4.27573, 11.5559, -1.43071, 0, -0.242063, 0, 1.45104, 0, 0.242063, 0, -1.43071, 9.98108, -4.27573, -62.7003, 1.3973, 0, -0.679907, 0, 1.55394, 0, 0.679907, 0, 1.3973, -8.24053, -4.27573, 53.7035, 1.73255, 0, -0.757264, 0, 1.89081, 0, 0.757264, 0, 1.73255, 13.1653, -4.27573, -24.9948, 1.83399, 0, -0.50201, 0, 1.90145, 0, 0.50201, 0, 1.83399, 25.1397, -4.27573, -9.04545, 1.93988, 0, -0.452541, 0, 1.99196, 0, 0.452541, 0, 1.93988, 8.517, -4.27573, -47.0394, -0.372038, 0, -1.12054, 0, 1.18069, 0, 1.12054, 0, -0.372038, -5.15073, -4.27573, 60.3757, 1.5853, 0, 0.761496, 0, 1.75871, 0, -0.761496, 0, 1.5853, -2.63671, -4.27573, -66.0479, -1.2245, 0, -1.12698, 0, 1.66418, 0, 1.12698, 0, -1.2245, 11.6308, -4.27573, -26.5415, -0.902846, 0, -0.535947, 0, 1.04994, 0, 0.535947, 0, -0.902846, 0.840145, -4.27573, 39.7917, -0.24695, 0, -1.63907, 0, 1.65757, 0, 1.63907, 0, -0.24695, -7.00912, -4.27573, 38.3039, -1.26913, 0, 0.568499, 0, 1.39064, 0, -0.568499, 0, -1.26913, 21.6446, -4.27573, -20.5, 1.84284, 0, 0.21174, 0, 1.85497, 0, -0.21174, 0, 1.84284, 6.15322, -4.27573, 39.7652, 1.113, 0, -0.109506, 0, 1.11837, 0, 0.109506, 0, 1.113, 11.8749, -4.27573, 0.191323, 1.20863, 0, -1.45304, 0, 1.89, 0, 1.45304, 0, 1.20863, -13.1859, -4.27573, 10.2999, -0.949655, 0, 1.04288, 0, 1.41047, 0, -1.04288, 0, -0.949655, 9.69957, -4.27573, -20.8032, 1.87311, 0, 0.306492, 0, 1.89802, 0, -0.306492, 0, 1.87311, 17.0686, -4.27573, -25.1448, 0.701811, 0, -1.32481, 0, 1.49922, 0, 1.32481, 0, 0.701811, -10.7014, -4.27573, 46.5416, -0.924577, 0, -0.393829, 0, 1.00496, 0, 0.393829, 0, -0.924577, 14.2786, -4.27573, -46.8795, -1.57834, 0, 0.283449, 0, 1.60359, 0, -0.283449, 0, -1.57834, 20.0918, -4.27573, -29.399, 1.38735, 0, -0.551241, 0, 1.49285, 0, 0.551241, 0, 1.38735, 3.19736, -4.27573, -2.11128, 0.540561, 0, 1.56047, 0, 1.65144, 0, -1.56047, 0, 0.540561, 23.5214, -4.27573, 71.89, -0.0482621, 0, 1.1716, 0, 1.17259, 0, -1.1716, 0, -0.0482621, -12.9452, -4.27573, -23.7053, -1.78448, 0, 0.665573, 0, 1.90457, 0, -0.665573, 0, -1.78448, 29.9098, -4.27573, 11.3957, -1.23454, 0, -1.47106, 0, 1.92045, 0, 1.47106, 0, -1.23454, 13.7427, -4.27573, 24.2723, 0.538195, 0, -1.78924, 0, 1.86843, 0, 1.78924, 0, 0.538195, -6.2, -4.27573, -63.0434, 0.381751, 0, -1.01662, 0, 1.08593, 0, 1.01662, 0, 0.381751, -2.40246, -4.27573, 43.7217, -0.523668, 0, -1.0251, 0, 1.15111, 0, 1.0251, 0, -0.523668, 5.64845, -4.27573, -32.001, 0.441133, 0, -1.85147, 0, 1.90329, 0, 1.85147, 0, 0.441133, 18.4247, -4.27573, -63.6045, -1.26589, 0, 0.65556, 0, 1.42557, 0, -0.65556, 0, -1.26589, 7.83581, -4.27573, 47.8388, 1.07653, 0, -0.315856, 0, 1.12191, 0, 0.315856, 0, 1.07653, -5.39469, -4.27573, 23.568, 1.3981, 0, 1.24297, 0, 1.87074, 0, -1.24297, 0, 1.3981, 8.31641, -4.27573, 31.2596, 1.11363, 0, -1.54591, 0, 1.90526, 0, 1.54591, 0, 1.11363, 4.4212, -4.27573, -42.9633, -0.558301, 0, 1.5301, 0, 1.62877, 0, -1.5301, 0, -0.558301, 28.2106, -4.27573, -34.7544, 1.13849, 0, 1.53317, 0, 1.90965, 0, -1.53317, 0, 1.13849, 8.00965, -4.27573, 59.1171, -1.26543, 0, 0.10564, 0, 1.26983, 0, -0.10564, 0, -1.26543, 28.7831, -4.27573, 8.00216, -1.57529, 0, 1.05273, 0, 1.89467, 0, -1.05273, 0, -1.57529, 18.942, -4.27573, 9.87639, 0.654097, 0, -0.78695, 0, 1.0233, 0, 0.78695, 0, 0.654097, 11.3623, -4.27573, -10.6897, -0.569296, 0, -1.70525, 0, 1.79777, 0, 1.70525, 0, -0.569296, -12.5025, -4.27573, -41.0227, 1.3695, 0, 1.36977, 0, 1.93696, 0, -1.36977, 0, 1.3695, 7.3233, -4.27573, -37.7444, 1.1631, 0, -0.749502, 0, 1.38367, 0, 0.749502, 0, 1.1631, 24.313, -4.27573, -57.5301, -1.03789, 0, 0.535006, 0, 1.16767, 0, -0.535006, 0, -1.03789, 20.1597, -4.27573, 2.51866, 1.33052, 0, -1.0583, 0, 1.70008, 0, 1.0583, 0, 1.33052, 13.7223, -4.27573, 71.0099, -0.322113, 0, -1.40259, 0, 1.4391, 0, 1.40259, 0, -0.322113, 8.78684, -4.27573, -41.7958, -1.27247, 0, 0.195607, 0, 1.28742, 0, -0.195607, 0, -1.27247, -10.5474, -4.27573, -44.325, 1.83652, 0, -0.195835, 0, 1.84693, 0, 0.195835, 0, 1.83652, 27.0393, -4.27573, -34.504, -1.56059, 0, -0.0866652, 0, 1.563, 0, 0.0866652, 0, -1.56059, 25.006, -4.27573, 68.7249, -0.994538, 0, 0.839286, 0, 1.30135, 0, -0.839286, 0, -0.994538, -9.82972, -4.27573, -15.7807, 0.52638, 0, -1.39442, 0, 1.49047, 0, 1.39442, 0, 0.52638, 3.53061, -4.27573, 9.6496, -0.00334736, 0, 1.18039, 0, 1.1804, 0, -1.18039, 0, -0.00334736, 24.82, -4.27573, -59.8008, -0.0658406, 0, -1.12901, 0, 1.13093, 0, 1.12901, 0, -0.0658406, 22.9898, -4.27573, -9.03714, -0.915648, 0, 0.506457, 0, 1.04638, 0, -0.506457, 0, -0.915648, 30.0978, -4.27573, 14.8839, -1.51139, 0, -0.64105, 0, 1.64172, 0, 0.64105, 0, -1.51139, 18.6733, -4.27573, -7.2388, -1.61912, 0, -0.341203, 0, 1.65468, 0, 0.341203, 0, -1.61912, 4.55537, -4.27573, -6.60887, -1.25715, 0, 0.446876, 0, 1.33421, 0, -0.446876, 0, -1.25715, 18.642, -4.27573, 33.7514, -1.51674, 0, 0.952624, 0, 1.79109, 0, -0.952624, 0, -1.51674, 0.629299, -4.27573, -14.9262, -0.907033, 0, 1.09782, 0, 1.42405, 0, -1.09782, 0, -0.907033, -14.3969, -4.27573, 47.9064, 0.404791, 0, 1.33632, 0, 1.39628, 0, -1.33632, 0, 0.404791, -2.34985, -4.27573, -46.6773, 1.2, 0, -1.01544, 0, 1.57198, 0, 1.01544, 0, 1.2, -2.8533, -4.27573, 73.0156, -1.6235, 0, -0.323968, 0, 1.65551, 0, 0.323968, 0, -1.6235, -0.699764, -4.27573, -51.5091, -1.65517, 0, -0.210112, 0, 1.66845, 0, 0.210112, 0, -1.65517, 17.4402, -4.27573, 57.7473, -0.548212, 0, 1.8243, 0, 1.90489, 0, -1.8243, 0, -0.548212, 13.5736, -4.27573, -54.9258, 0.332297, 0, 1.13081, 0, 1.17862, 0, -1.13081, 0, 0.332297, 8.41394, -4.27573, -45.1173, 0.989807, 0, -0.593342, 0, 1.15402, 0, 0.593342, 0, 0.989807, 1.23785, -4.27573, -20.4236, -1.50871, 0, 1.10057, 0, 1.86748, 0, -1.10057, 0, -1.50871, 9.48648, -4.27573, 68.1292, 0.0234746, 0, 1.85588, 0, 1.85603, 0, -1.85588, 0, 0.0234746, 23.549, -4.27573, 14.89, -0.606932, 0, -1.86375, 0, 1.96008, 0, 1.86375, 0, -0.606932, -2.0008, -4.27573, 28.957, -0.190526, 0, 1.12854, 0, 1.14451, 0, -1.12854, 0, -0.190526, 25.6759, -4.27573, -29.6992, 1.94669, 0, 0.23951, 0, 1.96137, 0, -0.23951, 0, 1.94669, 27.727, -4.27573, 44.4369, -1.09996, 0, 0.846381, 0, 1.38791, 0, -0.846381, 0, -1.09996, 22.433, -4.27573, 12.5624, -1.97286, 0, 0.062025, 0, 1.97384, 0, -0.062025, 0, -1.97286, 20.7346, -4.27573, -4.47005, -1.04859, 0, 0.0833458, 0, 1.0519, 0, -0.0833458, 0, -1.04859, 9.21058, -4.27573, -3.42908, -1.51384, 0, 1.11917, 0, 1.88262, 0, -1.11917, 0, -1.51384, 23.3501, -4.27573, -23.0322, 1.81626, 0, 0.590644, 0, 1.90988, 0, -0.590644, 0, 1.81626, 13.6556, -4.27573, 44.6399, -0.755785, 0, -1.74592, 0, 1.90249, 0, 1.74592, 0, -0.755785, 12.3536, -4.27573, -25.4462, 0.777896, 0, 1.69539, 0, 1.86533, 0, -1.69539, 0, 0.777896, -15.001, -4.27573, 44.9772, -1.22372, 0, -0.071622, 0, 1.22582, 0, 0.071622, 0, -1.22372, -2.46775, -4.27573, -38.7511, 0.0693349, 0, 1.44885, 0, 1.45051, 0, -1.44885, 0, 0.0693349, 3.73211, -4.27573, 17.9549, 1.37531, 0, 1.15577, 0, 1.79646, 0, -1.15577, 0, 1.37531, 21.8771, -4.27573, 17.5462, -1.03011, 0, -1.65202, 0, 1.94687, 0, 1.65202, 0, -1.03011, -11.4278, -4.27573, 70.1766, 0.676832, 0, -1.21838, 0, 1.39376, 0, 1.21838, 0, 0.676832, -2.05667, -4.27573, -6.65001, -0.325593, 0, 1.42081, 0, 1.45764, 0, -1.42081, 0, -0.325593, 26.3777, -4.27573, 59.023, -0.500628, 0, 1.04501, 0, 1.15874, 0, -1.04501, 0, -0.500628, 30.0978, -4.27573, 39.8382, -1.6314, 0, -0.0947265, 0, 1.63415, 0, 0.0947265, 0, -1.6314, -7.437, -4.27573, 58.0933, -0.949385, 0, -0.746503, 0, 1.20772, 0, 0.746503, 0, -0.949385, 4.81818, -4.27573, 71.7496, -1.11173, 0, -1.12151, 0, 1.57916, 0, 1.12151, 0, -1.11173, -8.95975, -4.27573, 8.66397, -0.27468, 0, -1.38064, 0, 1.4077, 0, 1.38064, 0, -0.27468, -6.35785, -4.27573, -55.4846, -1.30254, 0, -0.0195231, 0, 1.30269, 0, 0.0195231, 0, -1.30254, 21.928, -4.27573, -11.1525, -0.34556, 0, -1.58734, 0, 1.62452, 0, 1.58734, 0, -0.34556, 23.9541, -4.27573, 48.878, -1.07435, 0, -0.563817, 0, 1.21331, 0, 0.563817, 0, -1.07435, -1.8996, -4.27573, 52.1135, 0.408563, 0, 1.77974, 0, 1.82603, 0, -1.77974, 0, 0.408563, -3.13511, -4.27573, -26.5059, 0.948552, 0, -0.584427, 0, 1.11414, 0, 0.584427, 0, 0.948552, 29.1433, -4.27573, 27.4645, -0.128948, 0, -1.60096, 0, 1.60614, 0, 1.60096, 0, -0.128948, -7.73382, -4.27573, 32.9819, -0.921537, 0, -0.863449, 0, 1.26284, 0, 0.863449, 0, -0.921537, 10.4453, -4.27573, -29.4915, 1.20533, 0, 1.20811, 0, 1.70656, 0, -1.20811, 0, 1.20533, -9.95489, -4.27573, 7.24015, 0.546372, 0, -1.68161, 0, 1.76815, 0, 1.68161, 0, 0.546372, 23.5111, -4.27573, 34.1557, -1.7626, 0, -0.916776, 0, 1.98677, 0, 0.916776, 0, -1.7626, 4.57498, -4.27573, -0.602867, -0.862235, 0, 0.784103, 0, 1.16545, 0, -0.784103, 0, -0.862235, 24.0606, -4.27573, 72.6281, 0.107657, 0, 1.35894, 0, 1.3632, 0, -1.35894, 0, 0.107657, 0.105366, -4.27573, 14.2187, 0.454105, 0, 1.00216, 0, 1.10025, 0, -1.00216, 0, 0.454105, 28.2991, -4.27573, 11.2446, -0.97341, 0, 0.261872, 0, 1.00802, 0, -0.261872, 0, -0.97341, 8.53915, -4.27573, 20.8221, -1.12052, 0, 0.163273, 0, 1.13236, 0, -0.163273, 0, -1.12052, -10.5196, -4.27573, 52.8938, -0.58227, 0, -1.77382, 0, 1.86695, 0, 1.77382, 0, -0.58227, 22.1584, -4.27573, -39.6912, 1.15684, 0, 0.381966, 0, 1.21826, 0, -0.381966, 0, 1.15684, -1.27667, -4.27573, 70.1459, -0.181709, 0, 1.92415, 0, 1.93272, 0, -1.92415, 0, -0.181709, -7.2903, -4.27573, -3.24864, 0.0123913, 0, -1.01071, 0, 1.01078, 0, 1.01071, 0, 0.0123913, -8.10943, -4.27573, 5.05417, -0.795423, 0, 1.53452, 0, 1.72842, 0, -1.53452, 0, -0.795423, 28.2025, -4.27573, -26.768, -1.12196, 0, -0.983247, 0, 1.49184, 0, 0.983247, 0, -1.12196, -12.6752, -4.27573, 46.5775, -0.522769, 0, -1.35595, 0, 1.45324, 0, 1.35595, 0, -0.522769, -2.62369, -4.27573, 72.6059, 0.308629, 0, -1.53952, 0, 1.57015, 0, 1.53952, 0, 0.308629, -14.5322, -4.27573, -22.6178, 1.17599, 0, 1.21369, 0, 1.68997, 0, -1.21369, 0, 1.17599, 22.6717, -4.27573, 1.45916, 0.802859, 0, 0.889145, 0, 1.19798, 0, -0.889145, 0, 0.802859, 14.8391, -4.27573, -20.3963, 1.09188, 0, 0.000614694, 0, 1.09188, 0, -0.000614694, 0, 1.09188, 18.9437, -4.27573, -22.4206, 0.346075, 0, -1.47926, 0, 1.5192, 0, 1.47926, 0, 0.346075, 12.1463, -4.27573, 32.6568, 0.563744, 0, -1.30288, 0, 1.41961, 0, 1.30288, 0, 0.563744, -0.72781, -4.27573, 13.7566, 0.524474, 0, -1.85006, 0, 1.92297, 0, 1.85006, 0, 0.524474, -10.2151, -4.27573, -29.9476, 0.271589, 0, -1.2915, 0, 1.31974, 0, 1.2915, 0, 0.271589, 19.8688, -4.27573, 18.4046, 1.33129, 0, -0.219786, 0, 1.34931, 0, 0.219786, 0, 1.33129, 22.6153, -4.27573, -44.6103, 1.62443, 0, -0.47194, 0, 1.69159, 0, 0.47194, 0, 1.62443, -4.03522, -4.27573, 2.48235, -0.81325, 0, 0.841848, 0, 1.17051, 0, -0.841848, 0, -0.81325, 19.1853, -4.27573, 23.2725, 1.40156, 0, -0.813218, 0, 1.6204, 0, 0.813218, 0, 1.40156, 5.01077, -4.27573, -6.73564, 1.29268, 0, -0.642953, 0, 1.44375, 0, 0.642953, 0, 1.29268, -10.1979, -4.27573, 74.1679, -0.531781, 0, 1.4121, 0, 1.50891, 0, -1.4121, 0, -0.531781, 16.5227, -4.27573, 34.7602, 0.34735, 0, 1.5198, 0, 1.55899, 0, -1.5198, 0, 0.34735, 12.6959, -4.27573, -10.6653, -0.65202, 0, -1.74198, 0, 1.86001, 0, 1.74198, 0, -0.65202, -11.5592, -4.27573, -19.0779, -1.16304, 0, -0.125428, 0, 1.16978, 0, 0.125428, 0, -1.16304, 10.7769, -4.27573, -53.1237, -0.611945, 0, -1.13752, 0, 1.29167, 0, 1.13752, 0, -0.611945, -6.21826, -4.27573, -3.35343, 0.859487, 0, -0.968541, 0, 1.29491, 0, 0.968541, 0, 0.859487, 11.5744, -4.27573, 13.2691, -1.18157, 0, -1.37641, 0, 1.81401, 0, 1.37641, 0, -1.18157, -11.8792, -4.27573, -40.8059, 0.201051, 0, 1.55512, 0, 1.56806, 0, -1.55512, 0, 0.201051, 6.46202, -4.27573, 24.4869, -0.372896, 0, -1.43203, 0, 1.47978, 0, 1.43203, 0, -0.372896, -6.04982, -4.27573, 65.9944, 1.3282, 0, 1.06904, 0, 1.70498, 0, -1.06904, 0, 1.3282, 29.9968, -4.27573, -17.488, -0.997136, 0, 1.60177, 0, 1.88678, 0, -1.60177, 0, -0.997136, 7.26668, -4.27573, 67.9659, -1.03784, 0, -0.557189, 0, 1.17796, 0, 0.557189, 0, -1.03784, 12.2583, -4.27573, 54.9328, -1.63902, 0, 0.489405, 0, 1.71053, 0, -0.489405, 0, -1.63902, -0.936348, -4.27573, -49.9621, 1.44081, 0, -1.08789, 0, 1.80539, 0, 1.08789, 0, 1.44081, 9.79711, -4.27573, 36.5639, -0.69099, 0, 1.69981, 0, 1.83489, 0, -1.69981, 0, -0.69099, 24.664, -4.27573, -2.30159, -1.46311, 0, -0.261394, 0, 1.48628, 0, 0.261394, 0, -1.46311, -0.000354767, -4.27573, -41.5741, -1.07988, 0, -0.299216, 0, 1.12057, 0, 0.299216, 0, -1.07988, 10.8661, -4.27573, -30.5407, -0.847053, 0, -1.68307, 0, 1.8842, 0, 1.68307, 0, -0.847053, 8.90385, -4.27573, 64.3751, 1.86034, 0, -0.312574, 0, 1.88642, 0, 0.312574, 0, 1.86034, 23.4354, -4.27573, 73.0256, -0.117952, 0, 1.14507, 0, 1.15113, 0, -1.14507, 0, -0.117952, 31.2217, -4.27573, -39.5336, -0.718027, 0, 1.00403, 0, 1.23436, 0, -1.00403, 0, -0.718027, 28.1782, -4.27573, 56.3105, -0.328965, 0, -0.986335, 0, 1.03975, 0, 0.986335, 0, -0.328965, -1.38656, -4.27573, -57.3787, -1.06667, 0, -1.2522, 0, 1.64493, 0, 1.2522, 0, -1.06667, 10.5808, -4.27573, 53.2667, -1.35554, 0, 0.843784, 0, 1.5967, 0, -0.843784, 0, -1.35554, 6.14497, -4.27573, -38.2415, -0.35763, 0, 1.42689, 0, 1.47103, 0, -1.42689, 0, -0.35763, 29.9219, -4.27573, 34.7678, -0.246327, 0, -1.7352, 0, 1.75259, 0, 1.7352, 0, -0.246327, 1.84668, -4.27573, 21.9114, 0.693452, 0, -0.815861, 0, 1.07075, 0, 0.815861, 0, 0.693452, -9.03852, -4.27573, 37.8568, 0.13308, 0, -1.11237, 0, 1.1203, 0, 1.11237, 0, 0.13308, 18.1295, -4.27573, 21.5092, -0.684495, 0, 1.39398, 0, 1.55297, 0, -1.39398, 0, -0.684495, 2.46821, -4.27573, 30.4764, -0.0985503, 0, 1.78303, 0, 1.78575, 0, -1.78303, 0, -0.0985503, -12.8564, -4.27573, 59.016, -0.698909, 0, 1.08014, 0, 1.28653, 0, -1.08014, 0, -0.698909, -4.48796, -4.27573, -8.73312, 1.11081, 0, 0.61222, 0, 1.26835, 0, -0.61222, 0, 1.11081, 24.9188, -4.27573, 9.93086, 0.463223, 0, -1.10786, 0, 1.2008, 0, 1.10786, 0, 0.463223, -2.67566, -4.27573, -9.39866, -1.97439, 0, -0.207133, 0, 1.98523, 0, 0.207133, 0, -1.97439, -8.2837, -4.27573, 26.0717, -1.3261, 0, -0.0835146, 0, 1.32872, 0, 0.0835146, 0, -1.3261, -2.91171, -4.27573, 59.9473, 1.63528, 0, -0.962328, 0, 1.89743, 0, 0.962328, 0, 1.63528, -1.66199, -4.27573, 24.2297, 0.0184602, 0, -1.60086, 0, 1.60097, 0, 1.60086, 0, 0.0184602, 28.0525, -4.27573, -15.4444, -1.51025, 0, 0.73023, 0, 1.67753, 0, -0.73023, 0, -1.51025, 29.7647, -4.27573, -1.99516, 1.0294, 0, 0.739458, 0, 1.26747, 0, -0.739458, 0, 1.0294, 14.5791, -4.27573, -62.7156, -1.60861, 0, -0.640889, 0, 1.73158, 0, 0.640889, 0, -1.60861, 23.2696, -4.27573, -35.9562, -1.22484, 0, 0.0253529, 0, 1.2251, 0, -0.0253529, 0, -1.22484, 7.36468, -4.27573, 73.7, -0.563648, 0, 1.24596, 0, 1.36752, 0, -1.24596, 0, -0.563648, 6.13688, -4.27573, 62.0914, -0.384391, 0, -0.996751, 0, 1.0683, 0, 0.996751, 0, -0.384391, 3.22733, -4.27573, -9.493, 0.890167, 0, 0.88298, 0, 1.25381, 0, -0.88298, 0, 0.890167, 5.69012, -4.27573, -17.6017, -0.402067, 0, -1.44576, 0, 1.50063, 0, 1.44576, 0, -0.402067, 17.9067, -4.27573, 20.9653, 0.998145, 0, 0.464143, 0, 1.10078, 0, -0.464143, 0, 0.998145, 0.423351, -4.27573, 42.7204, -0.949928, 0, -0.709666, 0, 1.18574, 0, 0.709666, 0, -0.949928, 29.7794, -4.27573, 0.102853, 0.988098, 0, -0.769274, 0, 1.25225, 0, 0.769274, 0, 0.988098, 12.308, -4.27573, -12.0772, -1.4443, 0, -0.545881, 0, 1.54402, 0, 0.545881, 0, -1.4443, -11.4086, -4.27573, 54.8216, 0.390657, 0, -1.7852, 0, 1.82745, 0, 1.7852, 0, 0.390657, 11.9899, -4.27573, 67.2122, 0.886659, 0, -1.73364, 0, 1.94722, 0, 1.73364, 0, 0.886659, -7.76729, -4.27573, 17.2368, 0.32945, 0, 1.83656, 0, 1.86588, 0, -1.83656, 0, 0.32945, 27.7474, -4.27573, -57.239, -0.580424, 0, 1.82806, 0, 1.91799, 0, -1.82806, 0, -0.580424, 9.09729, -4.27573, -37.0921, 0.0450345, 0, -1.65573, 0, 1.65634, 0, 1.65573, 0, 0.0450345, 4.37974, -4.27573, -21.0403, 1.14587, 0, 1.14344, 0, 1.61879, 0, -1.14344, 0, 1.14587, 9.69191, -4.27573, 71.37, 0.745636, 0, -1.36878, 0, 1.5587, 0, 1.36878, 0, 0.745636, 5.26466, -4.27573, 13.6958, -1.52302, 0, 0.270924, 0, 1.54692, 0, -0.270924, 0, -1.52302, 31.1484, -4.27573, 56.0833, -0.567085, 0, -0.953653, 0, 1.10952, 0, 0.953653, 0, -0.567085, 22.7033, -4.27573, -61.3069, 0.917821, 0, 0.678109, 0, 1.14115, 0, -0.678109, 0, 0.917821, 26.3791, -4.27573, -58.0049, -1.19779, 0, 1.52646, 0, 1.9403, 0, -1.52646, 0, -1.19779, 27.2006, -4.27573, -36.5986, -1.70247, 0, -0.202124, 0, 1.71443, 0, 0.202124, 0, -1.70247, 13.1547, -4.27573, -22.7443, 1.28125, 0, -0.90967, 0, 1.57134, 0, 0.90967, 0, 1.28125, 7.98441, -4.27573, -10.5655, 0.0550995, 0, -1.17327, 0, 1.17456, 0, 1.17327, 0, 0.0550995, 4.86971, -4.27573, -8.77207, -1.43005, 0, 0.747673, 0, 1.61371, 0, -0.747673, 0, -1.43005, 12.4383, -4.27573, -11.8871, 1.12955, 0, 0.701685, 0, 1.32976, 0, -0.701685, 0, 1.12955, 4.39651, -4.27573, -8.48054, -1.44519, 0, 0.998162, 0, 1.75639, 0, -0.998162, 0, -1.44519, 20.4071, -4.27573, 28.5247, 0.407722, 0, 1.22002, 0, 1.28635, 0, -1.22002, 0, 0.407722, 28.8463, -4.27573, 27.5062, 0.962647, 0, 0.617084, 0, 1.14345, 0, -0.617084, 0, 0.962647, 26.6123, -4.27573, 38.3627, 1.07614, 0, 0.309005, 0, 1.11962, 0, -0.309005, 0, 1.07614, 29.9184, -4.27573, -33.7915, 0.33885, 0, -1.6234, 0, 1.65839, 0, 1.6234, 0, 0.33885, 4.15277, -4.27573, -30.7664, 1.08809, 0, -0.366443, 0, 1.14814, 0, 0.366443, 0, 1.08809, 28.1708, -4.27573, -15.784, 1.89263, 0, -0.454644, 0, 1.94647, 0, 0.454644, 0, 1.89263, 23.1738, -4.27573, -52.0317, 1.56004, 0, -1.0368, 0, 1.87315, 0, 1.0368, 0, 1.56004, 2.28944, -4.27573, -19.7035, -0.404762, 0, -0.986563, 0, 1.06637, 0, 0.986563, 0, -0.404762, 29.2364, -4.27573, 12.4917, -1.13561, 0, 1.154, 0, 1.61905, 0, -1.154, 0, -1.13561, 19.687, -4.27573, 36.4347, 1.832, 0, 0.535378, 0, 1.90862, 0, -0.535378, 0, 1.832, 24.5701, -4.27573, 44.3386, 1.12823, 0, 0.558025, 0, 1.25869, 0, -0.558025, 0, 1.12823, 10.468, -4.27573, -14.1593, 1.37024, 0, -0.905193, 0, 1.64224, 0, 0.905193, 0, 1.37024, 14.9299, -4.27573, 36.4101, -1.23615, 0, 0.880023, 0, 1.5174, 0, -0.880023, 0, -1.23615, 2.42241, -4.27573, 31.6895, 1.86215, 0, 0.618758, 0, 1.96226, 0, -0.618758, 0, 1.86215, 3.51281, -4.27573, -54.1629, 1.71188, 0, 0.64656, 0, 1.82991, 0, -0.64656, 0, 1.71188, -11.1942, -4.27573, 59.4884, -1.29811, 0, -1.24995, 0, 1.80207, 0, 1.24995, 0, -1.29811, 22.5224, -4.27573, -58.1625, -0.784876, 0, 0.622626, 0, 1.00185, 0, -0.622626, 0, -0.784876, -2.92804, -4.27573, -50.1189, 0.550858, 0, 1.16003, 0, 1.28418, 0, -1.16003, 0, 0.550858, 20.4217, -4.27573, 54.0524, -1.0439, 0, -0.373423, 0, 1.10868, 0, 0.373423, 0, -1.0439, 19.0345, -4.27573, 11.3265, 1.13665, 0, 0.585408, 0, 1.27855, 0, -0.585408, 0, 1.13665, 24.2853, -4.27573, 61.6942, 1.04833, 0, 1.50448, 0, 1.83369, 0, -1.50448, 0, 1.04833, -8.34838, -4.27573, 24.9026, -1.87098, 0, 0.223735, 0, 1.88431, 0, -0.223735, 0, -1.87098, 20.7362, -4.27573, 41.3136, -0.171795, 0, 1.17245, 0, 1.18497, 0, -1.17245, 0, -0.171795, -9.27182, -4.27573, -12.2241, -0.388448, 0, -1.48072, 0, 1.53082, 0, 1.48072, 0, -0.388448, 16.3639, -4.27573, 38.5159, -1.40743, 0, -0.361827, 0, 1.45319, 0, 0.361827, 0, -1.40743, -7.26374, -4.27573, 57.6649, 0.381925, 0, 1.61428, 0, 1.65885, 0, -1.61428, 0, 0.381925, 22.5418, -4.27573, 28.5106, -0.267616, 0, -1.44869, 0, 1.4732, 0, 1.44869, 0, -0.267616, -3.20808, -4.27573, 56.1649, -0.919717, 0, -0.566572, 0, 1.08022, 0, 0.566572, 0, -0.919717, -14.2713, -4.27573, 57.4056, 1.61245, 0, -0.473486, 0, 1.68053, 0, 0.473486, 0, 1.61245, -13.804, -4.27573, 8.34092, -0.319659, 0, 1.07882, 0, 1.12518, 0, -1.07882, 0, -0.319659, 14.3791, -4.27573, 7.93962, -0.0451963, 0, -1.22748, 0, 1.22831, 0, 1.22748, 0, -0.0451963, -2.22827, -4.27573, 13.9161, -0.185252, 0, -1.08823, 0, 1.10388, 0, 1.08823, 0, -0.185252, -10.3326, -4.27573, 26.2644, 0.161585, 0, -1.37416, 0, 1.38363, 0, 1.37416, 0, 0.161585, 22.8895, -4.27573, 73.1925, 0.21209, 0, -1.95497, 0, 1.96644, 0, 1.95497, 0, 0.21209, 29.1386, -4.27573, -14.6901, 1.47393, 0, -0.23478, 0, 1.49251, 0, 0.23478, 0, 1.47393, 5.87392, -4.27573, 34.0294, 0.569026, 0, -0.848534, 0, 1.02167, 0, 0.848534, 0, 0.569026, -0.144695, -4.27573, 39.5374, 0.953684, 0, -1.18555, 0, 1.52152, 0, 1.18555, 0, 0.953684, 19.7576, -4.27573, -45.393, -0.553046, 0, 0.841043, 0, 1.00658, 0, -0.841043, 0, -0.553046, 12.7275, -4.27573, 51.339, 1.62915, 0, 1.03064, 0, 1.92778, 0, -1.03064, 0, 1.62915, 9.69046, -4.27573, 45.7631, 1.60962, 0, -0.843618, 0, 1.8173, 0, 0.843618, 0, 1.60962, 17.3321, -4.27573, -62.9864, 0.728435, 0, 0.929316, 0, 1.18078, 0, -0.929316, 0, 0.728435, -4.72886, -4.27573, 66.8797, 1.07859, 0, -1.52574, 0, 1.86849, 0, 1.52574, 0, 1.07859, -3.85993, -4.27573, 7.36162, 0.175439, 0, -1.10192, 0, 1.1158, 0, 1.10192, 0, 0.175439, 29.1067, -4.27573, -2.41142, 1.09455, 0, -0.959111, 0, 1.45531, 0, 0.959111, 0, 1.09455, 27.5531, -4.27573, 57.9023, -0.326823, 0, -0.948938, 0, 1.00364, 0, 0.948938, 0, -0.326823, -4.45972, -4.27573, -12.624, -0.0171082, 0, -1.16272, 0, 1.16285, 0, 1.16272, 0, -0.0171082, 2.18768, -4.27573, 0.486735, -0.294422, 0, -1.09613, 0, 1.13499, 0, 1.09613, 0, -0.294422, 1.13955, -4.27573, -56.277, -0.223962, 0, -1.1771, 0, 1.19822, 0, 1.1771, 0, -0.223962, -1.89298, -4.27573, 36.9164, 1.19993, 0, -1.39482, 0, 1.83994, 0, 1.39482, 0, 1.19993, 15.4021, -4.27573, 72.1799, 0.364985, 0, 1.74039, 0, 1.77825, 0, -1.74039, 0, 0.364985, 28.1611, -4.27573, -19.6814, 1.92912, 0, -0.504062, 0, 1.99388, 0, 0.504062, 0, 1.92912, 0.098423, -4.27573, 49.5082, -0.25002, 0, -1.21325, 0, 1.23874, 0, 1.21325, 0, -0.25002, 12.491, -4.27573, -6.68915, -1.57232, 0, 0.562325, 0, 1.66985, 0, -0.562325, 0, -1.57232, 3.46476, -4.27573, -36.643, 0.0951141, 0, -1.64379, 0, 1.64654, 0, 1.64379, 0, 0.0951141, 25.9702, -4.27573, -32.353, 1.19904, 0, -1.06835, 0, 1.60595, 0, 1.06835, 0, 1.19904, -4.06453, -4.27573, 65.3851, 1.16294, 0, -1.07843, 0, 1.58601, 0, 1.07843, 0, 1.16294, 15.4733, -4.27573, -62.4384, 1.10113, 0, 0.387136, 0, 1.16721, 0, -0.387136, 0, 1.10113, 22.2394, -4.27573, -59.3745, 1.77352, 0, -0.483234, 0, 1.83817, 0, 0.483234, 0, 1.77352, 18.3959, -4.27573, -35.6707, -1.97266, 0, -0.0830585, 0, 1.9744, 0, 0.0830585, 0, -1.97266, 21.3367, -4.27573, 34.2352, -0.427249, 0, -1.62756, 0, 1.6827, 0, 1.62756, 0, -0.427249, 10.233, -4.27573, 69.7763, -0.834595, 0, 1.02754, 0, 1.32378, 0, -1.02754, 0, -0.834595, 21.213, -4.27573, 12.0546, 1.0476, 0, 0.482288, 0, 1.15329, 0, -0.482288, 0, 1.0476, 22.2897, -4.27573, -33.5325, 0.380967, 0, 1.26151, 0, 1.31778, 0, -1.26151, 0, 0.380967, -9.61288, -4.27573, 29.0009, 0.0430605, 0, -1.54965, 0, 1.55025, 0, 1.54965, 0, 0.0430605, 10.52, -4.27573, 40.2769, -0.309811, 0, 1.76012, 0, 1.78718, 0, -1.76012, 0, -0.309811, 29.476, -4.27573, -13.7912, 1.69546, 0, -0.709482, 0, 1.83792, 0, 0.709482, 0, 1.69546, -0.84359, -4.27573, -55.5203, -0.619727, 0, 1.52693, 0, 1.6479, 0, -1.52693, 0, -0.619727, -6.50454, -4.27573, 71.6182, 0.629183, 0, 0.954326, 0, 1.14307, 0, -0.954326, 0, 0.629183, 11.4195, -4.27573, 47.5392, -0.0904682, 0, 1.30137, 0, 1.30451, 0, -1.30137, 0, -0.0904682, 19.028, -4.27573, 12.1547, -0.322043, 0, -1.03289, 0, 1.08193, 0, 1.03289, 0, -0.322043, 8.13919, -4.27573, 19.0226, 1.68207, 0, 0.875754, 0, 1.89639, 0, -0.875754, 0, 1.68207, 14.9948, -4.27573, -39.0127, -0.606296, 0, 1.17879, 0, 1.32557, 0, -1.17879, 0, -0.606296, 18.4291, -4.27573, -54.7942, -0.681085, 0, 1.27291, 0, 1.44367, 0, -1.27291, 0, -0.681085, 18.9401, -4.27573, 6.67041, 1.70883, 0, -0.69352, 0, 1.8442, 0, 0.69352, 0, 1.70883, -4.49833, -4.27573, 9.78183, -0.423188, 0, 1.52411, 0, 1.58178, 0, -1.52411, 0, -0.423188, 15.296, -4.27573, -47.0597, 0.659557, 0, 0.821712, 0, 1.05367, 0, -0.821712, 0, 0.659557, 2.48477, -4.27573, 72.6965, -1.87916, 0, 0.396951, 0, 1.92063, 0, -0.396951, 0, -1.87916, -12.7036, -4.27573, 51.3915, 1.21708, 0, 0.751443, 0, 1.43036, 0, -0.751443, 0, 1.21708, -0.496513, -4.27573, 39.1507, 1.28635, 0, -0.174232, 0, 1.2981, 0, 0.174232, 0, 1.28635, 23.1484, -4.27573, 20.9567, -0.325348, 0, 1.23141, 0, 1.27367, 0, -1.23141, 0, -0.325348, -4.46596, -4.27573, 47.8927, 0.666351, 0, 1.80604, 0, 1.92505, 0, -1.80604, 0, 0.666351, -3.46553, -4.27573, 40.8794, -0.329824, 0, 1.29068, 0, 1.33216, 0, -1.29068, 0, -0.329824, 17.7311, -4.27573, 58.5066, 1.50411, 0, -0.0999881, 0, 1.50743, 0, 0.0999881, 0, 1.50411, 29.2501, -4.27573, -20.5174, -0.494812, 0, -1.44421, 0, 1.52662, 0, 1.44421, 0, -0.494812, 21.813, -4.27573, -31.0172, 0.641604, 0, 1.22071, 0, 1.37905, 0, -1.22071, 0, 0.641604, 21.4354, -4.27573, 13.7052, 1.091, 0, 0.450865, 0, 1.18049, 0, -0.450865, 0, 1.091, 11.0787, -4.27573, -1.29857, 0.818428, 0, 1.04527, 0, 1.32756, 0, -1.04527, 0, 0.818428, -10.9873, -4.27573, 27.1588, 0.453439, 0, -0.99734, 0, 1.09558, 0, 0.99734, 0, 0.453439, -3.68026, -4.27573, -11.1619, -0.520254, 0, -0.890898, 0, 1.03168, 0, 0.890898, 0, -0.520254, -5.12761, -4.27573, 40.4537, 1.693, 0, 0.292599, 0, 1.7181, 0, -0.292599, 0, 1.693, 28.3165, -4.27573, 27.2184, 0.96768, 0, -1.27069, 0, 1.5972, 0, 1.27069, 0, 0.96768, 20.7431, -4.27573, -58.4251, -1.98954, 0, 0.150051, 0, 1.99519, 0, -0.150051, 0, -1.98954, -0.14814, -4.27573, 6.52834, -0.0415213, 0, 1.41125, 0, 1.41186, 0, -1.41125, 0, -0.0415213, -11.4531, -4.27573, -55.5599, 0.294347, 0, -1.37176, 0, 1.40299, 0, 1.37176, 0, 0.294347, 30.221, -4.27573, -26.4111, -1.62794, 0, 0.725506, 0, 1.78229, 0, -0.725506, 0, -1.62794, -8.99736, -4.27573, 58.8338, -1.24412, 0, -1.11647, 0, 1.67163, 0, 1.11647, 0, -1.24412, 30.6313, -4.27573, -19.2739, 1.3408, 0, -0.766585, 0, 1.54448, 0, 0.766585, 0, 1.3408, 9.89898, -4.27573, 40.4232, 0.617218, 0, -0.893288, 0, 1.08578, 0, 0.893288, 0, 0.617218, 26.8755, -4.27573, -29.8614, -1.63142, 0, -0.705701, 0, 1.77751, 0, 0.705701, 0, -1.63142, -6.74654, -4.27573, 47.6572, -1.32202, 0, 0.570135, 0, 1.43972, 0, -0.570135, 0, -1.32202, 19.5144, -4.27573, 1.77313, 0.541045, 0, 1.81816, 0, 1.89696, 0, -1.81816, 0, 0.541045, -2.81364, -4.27573, -59.8998, 0.176648, 0, -1.52275, 0, 1.53296, 0, 1.52275, 0, 0.176648, 3.31438, -4.27573, 30.6402, 0.766407, 0, 1.06687, 0, 1.31362, 0, -1.06687, 0, 0.766407, -10.9717, -4.27573, -30.4794, 0.704965, 0, 1.78748, 0, 1.92147, 0, -1.78748, 0, 0.704965, 11.9768, -4.27573, -46.7283, 0.463664, 0, 1.3257, 0, 1.40445, 0, -1.3257, 0, 0.463664, 23.812, -4.27573, -4.11281, -1.5719, 0, -0.704449, 0, 1.72253, 0, 0.704449, 0, -1.5719, -7.8597, -4.27573, -50.4507, -0.716859, 0, 1.70612, 0, 1.85061, 0, -1.70612, 0, -0.716859, -11.8795, -4.27573, 71.0619, -0.0308967, 0, 1.77791, 0, 1.77818, 0, -1.77791, 0, -0.0308967, 9.74204, -4.27573, -41.1616, 0.93372, 0, -0.976821, 0, 1.3513, 0, 0.976821, 0, 0.93372, -13.9194, -4.27573, -25.1331, 0.192741, 0, 1.3105, 0, 1.3246, 0, -1.3105, 0, 0.192741, 19.9171, -4.27573, 15.7517, 1.88382, 0, -0.486909, 0, 1.94573, 0, 0.486909, 0, 1.88382, 2.01477, -4.27573, -61.3135, 0.727134, 0, -0.757929, 0, 1.05032, 0, 0.757929, 0, 0.727134, 7.10688, -4.27573, -0.808152, 0.324243, 0, 1.07578, 0, 1.12358, 0, -1.07578, 0, 0.324243, -12.5204, -4.27573, 67.5416, 0.226072, 0, 1.42734, 0, 1.44513, 0, -1.42734, 0, 0.226072, 9.80515, -4.27573, 70.4407, 0.466101, 0, 0.904055, 0, 1.01714, 0, -0.904055, 0, 0.466101, -0.240559, -4.27573, -10.0631, 0.993849, 0, 1.4025, 0, 1.71893, 0, -1.4025, 0, 0.993849, 23.4842, -4.27573, -34.4769, 1.26298, 0, 0.211255, 0, 1.28053, 0, -0.211255, 0, 1.26298, 19.3986, -4.27573, 3.04898, -0.0479095, 0, 1.11451, 0, 1.11554, 0, -1.11451, 0, -0.0479095, 10.6625, -4.27573, 56.6104, -1.81912, 0, 0.00569957, 0, 1.81912, 0, -0.00569957, 0, -1.81912, 12.297, -4.27573, 66.2853, 0.163844, 0, 1.94906, 0, 1.95593, 0, -1.94906, 0, 0.163844, 2.16845, -4.27573, -59.8653, 1.09062, 0, 0.59431, 0, 1.24203, 0, -0.59431, 0, 1.09062, 16.6914, -4.27573, 55.9245, 0.172519, 0, 1.91235, 0, 1.92012, 0, -1.91235, 0, 0.172519, 8.96702, -4.27573, 19.9966, 0.217264, 0, -1.31521, 0, 1.33304, 0, 1.31521, 0, 0.217264, 20.1732, -4.27573, -24.7036, -1.87043, 0, -0.0337253, 0, 1.87073, 0, 0.0337253, 0, -1.87043, 11.2917, -4.27573, -12.1725, 1.20641, 0, -0.417764, 0, 1.2767, 0, 0.417764, 0, 1.20641, 16.3558, -4.27573, 50.676, 0.903372, 0, -0.855016, 0, 1.24384, 0, 0.855016, 0, 0.903372, -2.02285, -4.27573, 53.3012, -0.795109, 0, -1.74786, 0, 1.92021, 0, 1.74786, 0, -0.795109, 15.5304, -4.27573, 25.7813, -1.60421, 0, 1.16975, 0, 1.98539, 0, -1.16975, 0, -1.60421, -0.119419, -4.27573, 48.268, -1.79897, 0, -0.0998192, 0, 1.80174, 0, 0.0998192, 0, -1.79897, 13.6745, -4.27573, -64.2106, -0.918224, 0, -1.61766, 0, 1.8601, 0, 1.61766, 0, -0.918224, 17.7469, -4.27573, 15.3376, -0.275214, 0, 1.57655, 0, 1.60039, 0, -1.57655, 0, -0.275214, 19.2356, -4.27573, 18.8447, -1.42687, 0, 0.981745, 0, 1.73198, 0, -0.981745, 0, -1.42687, 13.414, -4.27573, 59.2289, -0.124354, 0, 1.30629, 0, 1.3122, 0, -1.30629, 0, -0.124354, 8.92187, -4.27573, -35.2918, -1.82872, 0, 0.427172, 0, 1.87794, 0, -0.427172, 0, -1.82872, 11.8811, -4.27573, 5.90303, 0.554452, 0, -0.91222, 0, 1.0675, 0, 0.91222, 0, 0.554452, 22.5265, -4.27573, -39.3985, 1.88893, 0, 0.479921, 0, 1.94894, 0, -0.479921, 0, 1.88893, 12.1252, -4.27573, 50.8751, -1.39505, 0, 1.16119, 0, 1.81509, 0, -1.16119, 0, -1.39505, -14.0844, -4.27573, 38.6143, 0.257442, 0, -1.08227, 0, 1.11246, 0, 1.08227, 0, 0.257442, 10.5894, -4.27573, -15.3757, -0.92371, 0, -1.61377, 0, 1.85944, 0, 1.61377, 0, -0.92371, 23.1242, -4.27573, 1.39055, 0.199796, 0, 1.72621, 0, 1.73773, 0, -1.72621, 0, 0.199796, 6.08175, -4.27573, 19.8705, 0.35144, 0, 1.76505, 0, 1.7997, 0, -1.76505, 0, 0.35144, -9.6418, -4.27573, 59.5322, -0.282427, 0, 1.26453, 0, 1.29568, 0, -1.26453, 0, -0.282427, 4.05101, -4.27573, 34.3371, -1.23089, 0, 0.193304, 0, 1.24598, 0, -0.193304, 0, -1.23089, 19.5487, -4.27573, -34.4478, -0.658646, 0, 1.43122, 0, 1.57551, 0, -1.43122, 0, -0.658646, -10.6047, -4.27573, -22.2446, 0.32489, 0, -1.4504, 0, 1.48634, 0, 1.4504, 0, 0.32489, 6.09832, -4.27573, -1.23549, 1.29891, 0, 0.374468, 0, 1.35181, 0, -0.374468, 0, 1.29891, -1.63669, -4.27573, -46.6006, -1.69744, 0, -0.421426, 0, 1.74898, 0, 0.421426, 0, -1.69744, 6.28377, -4.27573, 9.83353, 1.26804, 0, -0.131266, 0, 1.27482, 0, 0.131266, 0, 1.26804, 29.6127, -4.27573, 5.05313, -1.48581, 0, 0.29846, 0, 1.51549, 0, -0.29846, 0, -1.48581, -3.64546, -4.27573, -49.0051, -1.08095, 0, 0.0131742, 0, 1.08103, 0, -0.0131742, 0, -1.08095, 6.55724, -4.27573, 36.2012, -1.12396, 0, -0.906694, 0, 1.44409, 0, 0.906694, 0, -1.12396, -8.19679, -4.27573, 45.2913, 1.71633, 0, -0.849938, 0, 1.91525, 0, 0.849938, 0, 1.71633, 0.762371, -4.27573, -58.83, 0.307707, 0, -0.972636, 0, 1.02015, 0, 0.972636, 0, 0.307707, 27.3696, -4.27573, 70.6955, -1.93045, 0, 0.103275, 0, 1.93321, 0, -0.103275, 0, -1.93045, 23.3061, -4.27573, -6.36522, -1.38618, 0, -1.20225, 0, 1.83491, 0, 1.20225, 0, -1.38618, -9.20444, -4.27573, -65.5464, 0.715005, 0, 1.58537, 0, 1.73915, 0, -1.58537, 0, 0.715005, 2.0803, -4.27573, 68.4953, -1.06448, 0, 0.958974, 0, 1.43274, 0, -0.958974, 0, -1.06448, 2.97704, -4.27573, -30.9679, -1.43616, 0, 0.757529, 0, 1.6237, 0, -0.757529, 0, -1.43616, -9.45905, -4.27573, -4.26065, -0.470323, 0, -0.967838, 0, 1.07606, 0, 0.967838, 0, -0.470323, -12.7237, -4.27573, -23.7731, 0.176183, 0, -1.08139, 0, 1.09565, 0, 1.08139, 0, 0.176183, 30.6541, -4.27573, 66.174, 1.22505, 0, 0.209192, 0, 1.24278, 0, -0.209192, 0, 1.22505, 13.8314, -4.27573, 59.4042, 1.66716, 0, -0.775835, 0, 1.83884, 0, 0.775835, 0, 1.66716, 12.7497, -4.27573, -47.6715, -0.161681, 0, -1.53267, 0, 1.54118, 0, 1.53267, 0, -0.161681, 9.54007, -4.27573, 41.7063, 1.12188, 0, -0.728182, 0, 1.33748, 0, 0.728182, 0, 1.12188, 25.114, -4.27573, -29.0147, -1.5012, 0, 0.673166, 0, 1.64523, 0, -0.673166, 0, -1.5012, 30.9415, -4.27573, 52.9537, -0.834036, 0, 1.49243, 0, 1.70967, 0, -1.49243, 0, -0.834036, 28.5976, -4.27573, 25.1708, 1.19444, 0, 1.20178, 0, 1.6944, 0, -1.20178, 0, 1.19444, -8.87765, -4.27573, -10.7543, 1.40276, 0, -1.08745, 0, 1.7749, 0, 1.08745, 0, 1.40276, -0.757706, -4.27573, -5.20984, -1.20484, 0, -0.792382, 0, 1.44205, 0, 0.792382, 0, -1.20484, 11.1444, -4.27573, 32.9964, 0.467321, 0, 1.10527, 0, 1.2, 0, -1.10527, 0, 0.467321, -8.45671, -4.27573, -61.1591, -0.442035, 0, -1.57117, 0, 1.63217, 0, 1.57117, 0, -0.442035, 17.3325, -4.27573, 68.5473, -0.983426, 0, 1.11527, 0, 1.48693, 0, -1.11527, 0, -0.983426, 23.2814, -4.27573, 38.6991, -1.22929, 0, -1.35948, 0, 1.83284, 0, 1.35948, 0, -1.22929, -3.24858, -4.27573, 29.3764, 1.71753, 0, 0.67376, 0, 1.84495, 0, -0.67376, 0, 1.71753, 27.6646, -4.27573, 22.7468, 0.853576, 0, 0.838472, 0, 1.19651, 0, -0.838472, 0, 0.853576, -13.2, -4.27573, 41.5675, 1.4384, 0, 0.628606, 0, 1.56976, 0, -0.628606, 0, 1.4384, 14.3774, -4.27573, 8.90086, -1.53464, 0, 0.813737, 0, 1.73704, 0, -0.813737, 0, -1.53464, -4.14523, -4.27573, -2.87206, -0.716689, 0, -1.05518, 0, 1.27556, 0, 1.05518, 0, -0.716689, 30.4581, -4.27573, 29.1605, -1.19084, 0, 1.40838, 0, 1.84435, 0, -1.40838, 0, -1.19084, 28.5222, -4.27573, 32.5724, 0.803011, 0, 0.866359, 0, 1.18127, 0, -0.866359, 0, 0.803011, -4.12131, -4.27573, -2.6114, 0.144359, 0, 1.65056, 0, 1.65686, 0, -1.65056, 0, 0.144359, 30.9378, -4.27573, 45.5431, -1.90862, 0, -0.452448, 0, 1.96151, 0, 0.452448, 0, -1.90862, 6.73099, -4.27573, 61.058, 0.529052, 0, -1.29599, 0, 1.39982, 0, 1.29599, 0, 0.529052, 29.838, -4.27573, -44.6642, -1.89987, 0, -0.0730998, 0, 1.90127, 0, 0.0730998, 0, -1.89987, 29.5389, -4.27573, 45.1246, 1.08137, 0, -0.716994, 0, 1.29748, 0, 0.716994, 0, 1.08137, 15.5623, -4.27573, -11.9327, -0.197181, 0, 1.97914, 0, 1.98894, 0, -1.97914, 0, -0.197181, -9.24145, -4.27573, -54.6553, 0.508091, 0, 1.85506, 0, 1.92338, 0, -1.85506, 0, 0.508091, 25.7426, -4.27573, 9.43199, -0.552362, 0, 0.858751, 0, 1.02106, 0, -0.858751, 0, -0.552362, 6.44477, -4.27573, -44.0066, 0.0595954, 0, -1.13811, 0, 1.13967, 0, 1.13811, 0, 0.0595954, 9.69406, -4.27573, -32.5039, -1.6736, 0, -0.933852, 0, 1.91651, 0, 0.933852, 0, -1.6736, 23.8343, -4.27573, -21.097, -1.63697, 0, 0.846576, 0, 1.84292, 0, -0.846576, 0, -1.63697, -8.65599, -4.27573, -18.5613, -0.638902, 0, -1.06381, 0, 1.24092, 0, 1.06381, 0, -0.638902, -6.57814, -4.27573, -15.971, -1.12819, 0, -0.363797, 0, 1.18539, 0, 0.363797, 0, -1.12819, -0.5135, -4.27573, 59.4029, 0.60567, 0, 1.86186, 0, 1.9579, 0, -1.86186, 0, 0.60567, 1.99044, -4.27573, -47.1585, 0.880517, 0, 1.05105, 0, 1.37114, 0, -1.05105, 0, 0.880517, -2.55579, -4.27573, 24.23, 1.50912, 0, -0.295135, 0, 1.53771, 0, 0.295135, 0, 1.50912, 23.4259, -4.27573, 70.1011, 0.421694, 0, 0.99708, 0, 1.08259, 0, -0.99708, 0, 0.421694, 25.2716, -4.27573, -38.427, -0.0937021, 0, -1.29443, 0, 1.29782, 0, 1.29443, 0, -0.0937021, 14.1722, -4.27573, 19.8381, -1.21507, 0, -0.30256, 0, 1.25218, 0, 0.30256, 0, -1.21507, 30.7346, -4.27573, 33.9387, -0.876998, 0, -1.33143, 0, 1.59432, 0, 1.33143, 0, -0.876998, -11.1531, -4.27573, 58.5953, 0.661455, 0, 0.798314, 0, 1.03674, 0, -0.798314, 0, 0.661455, 7.76005, -4.27573, -51.7732, -1.48025, 0, -0.0254761, 0, 1.48047, 0, 0.0254761, 0, -1.48025, 16.7588, -4.27573, -56.17, 0.472894, 0, -1.88446, 0, 1.94289, 0, 1.88446, 0, 0.472894, -8.98678, -4.27573, 74.2301, -1.45317, 0, 0.0154687, 0, 1.45326, 0, -0.0154687, 0, -1.45317, 16.47, -4.27573, -57.4074, -1.51308, 0, -0.938703, 0, 1.78061, 0, 0.938703, 0, -1.51308, -1.81828, -4.27573, 38.9227, 1.07899, 0, 0.486542, 0, 1.18362, 0, -0.486542, 0, 1.07899, 29.8073, -4.27573, 38.6937, -0.485506, 0, -1.78548, 0, 1.85031, 0, 1.78548, 0, -0.485506, -3.38659, -4.27573, 33.0828, -1.50703, 0, -0.543641, 0, 1.60209, 0, 0.543641, 0, -1.50703, 6.11518, -4.27573, 46.281, -1.24997, 0, 0.864921, 0, 1.52004, 0, -0.864921, 0, -1.24997, 7.44204, -4.27573, 25.5174, -0.539057, 0, -1.7191, 0, 1.80163, 0, 1.7191, 0, -0.539057, 21.3628, -4.27573, -4.46477, 0.0220833, 0, 1.67565, 0, 1.6758, 0, -1.67565, 0, 0.0220833, -3.57457, -4.27573, 19.3644, 1.18324, 0, -1.38958, 0, 1.8251, 0, 1.38958, 0, 1.18324, 11.8872, -4.27573, -19.5641, 0.0497192, 0, 1.23688, 0, 1.23788, 0, -1.23688, 0, 0.0497192, 18.7578, -4.27573, -41.7193, 0.942933, 0, -0.401017, 0, 1.02466, 0, 0.401017, 0, 0.942933, 15.475, -4.27573, 34.2188, 0.873557, 0, -0.681169, 0, 1.10774, 0, 0.681169, 0, 0.873557, -9.74661, -4.27573, 36.2141, 0.781004, 0, 1.70033, 0, 1.87112, 0, -1.70033, 0, 0.781004, 30.8915, -4.27573, 11.3423, 1.2005, 0, 0.35335, 0, 1.25142, 0, -0.35335, 0, 1.2005, 6.98178, -4.27573, 8.96393, -1.58121, 0, 0.981996, 0, 1.86132, 0, -0.981996, 0, -1.58121, -8.12383, -4.27573, 22.055, 0.54591, 0, 1.81725, 0, 1.89747, 0, -1.81725, 0, 0.54591, 2.13686, -4.27573, -17.9481, -0.90568, 0, -0.518236, 0, 1.04347, 0, 0.518236, 0, -0.90568, 8.82131, -4.27573, -53.1431, 0.61934, 0, 0.992557, 0, 1.16994, 0, -0.992557, 0, 0.61934, 28.5287, -4.27573, 10.4338, 0.576503, 0, 1.36419, 0, 1.481, 0, -1.36419, 0, 0.576503, 15.6199, -4.27573, -23.2008, 0.297673, 0, 1.31347, 0, 1.34678, 0, -1.31347, 0, 0.297673, 4.05776, -4.27573, 12.0301, 1.0787, 0, -0.396108, 0, 1.14912, 0, 0.396108, 0, 1.0787, 5.55334, -4.27573, -45.8833, -1.22197, 0, -0.759352, 0, 1.43869, 0, 0.759352, 0, -1.22197, 14.8737, -4.27573, -0.145754, 1.8133, 0, 0.645092, 0, 1.92463, 0, -0.645092, 0, 1.8133, 28.432, -4.27573, 19.0111, 0.948444, 0, 0.7056, 0, 1.18212, 0, -0.7056, 0, 0.948444, -12.6168, -4.27573, -39.4584, 0.856976, 0, -0.855622, 0, 1.21099, 0, 0.855622, 0, 0.856976, 3.48707, -4.27573, -11.1355, 1.34948, 0, 0.42896, 0, 1.41602, 0, -0.42896, 0, 1.34948, 17.4476, -4.27573, 0.733886, 1.0399, 0, -0.262571, 0, 1.07254, 0, 0.262571, 0, 1.0399, -3.66357, -4.27573, 35.6556, 0.26962, 0, -1.85411, 0, 1.87361, 0, 1.85411, 0, 0.26962, 26.3231, -4.27573, 34.4687, 0.320627, 0, -1.76775, 0, 1.7966, 0, 1.76775, 0, 0.320627, 7.2176, -4.27573, -17.9323, 1.89791, 0, 0.238113, 0, 1.91279, 0, -0.238113, 0, 1.89791, 29.7189, -4.27573, 45.9547, 1.04186, 0, -0.149288, 0, 1.05251, 0, 0.149288, 0, 1.04186, 16.6161, -4.27573, 34.2997, 0.397257, 0, -1.84161, 0, 1.88397, 0, 1.84161, 0, 0.397257, 6.1857, -4.27573, 3.45446, 1.75616, 0, 0.798432, 0, 1.92914, 0, -0.798432, 0, 1.75616, -6.5746, -4.27573, 49.4034, 0.683593, 0, -1.87868, 0, 1.99918, 0, 1.87868, 0, 0.683593, 30.3911, -4.27573, 43.7799, -0.984451, 0, 0.410516, 0, 1.06661, 0, -0.410516, 0, -0.984451, 30.7653, -4.27573, -4.75674, -1.25292, 0, 0.538457, 0, 1.36372, 0, -0.538457, 0, -1.25292, 27.6188, -4.27573, 64.1844, 1.06058, 0, 0.307706, 0, 1.10432, 0, -0.307706, 0, 1.06058, 9.48938, -4.27573, -28.25, -0.774812, 0, 1.56167, 0, 1.74332, 0, -1.56167, 0, -0.774812, -4.62392, -4.27573, 6.04698, 1.62304, 0, 0.961103, 0, 1.88626, 0, -0.961103, 0, 1.62304, 0.732956, -4.27573, -36.0713, 1.36383, 0, -0.100449, 0, 1.36752, 0, 0.100449, 0, 1.36383, 12.0958, -4.27573, -12.4902, 0.42269, 0, -1.69594, 0, 1.74782, 0, 1.69594, 0, 0.42269, -12.2206, -4.27573, 16.4613, -1.1421, 0, -0.0974881, 0, 1.14626, 0, 0.0974881, 0, -1.1421, 1.61227, -4.27573, -60.1807, 1.62214, 0, 0.234873, 0, 1.63906, 0, -0.234873, 0, 1.62214, -8.89569, -4.27573, 63.966, -0.221918, 0, -1.81589, 0, 1.8294, 0, 1.81589, 0, -0.221918, -0.0602798, -4.27573, 41.7565, -0.582899, 0, -1.03011, 0, 1.18359, 0, 1.03011, 0, -0.582899, 21.9994, -4.27573, 10.2209, -0.984454, 0, -0.843899, 0, 1.29666, 0, 0.843899, 0, -0.984454, -10.237, -4.27573, 21.2693, -0.909705, 0, 0.98501, 0, 1.34082, 0, -0.98501, 0, -0.909705, 5.6913, -4.27573, 37.6273, -1.85791, 0, 0.630097, 0, 1.96185, 0, -0.630097, 0, -1.85791, -14.6216, -4.27573, 64.3593, 0.749213, 0, -1.17498, 0, 1.39352, 0, 1.17498, 0, 0.749213, 29.4067, -4.27573, 73.2044, 0.495499, 0, 1.81915, 0, 1.88542, 0, -1.81915, 0, 0.495499, -1.19118, -4.27573, -20.4412, -0.844497, 0, 1.10566, 0, 1.39128, 0, -1.10566, 0, -0.844497, 32.0155, -4.27573, 3.70678, -0.824807, 0, -1.47727, 0, 1.69193, 0, 1.47727, 0, -0.824807, -12.9786, -4.27573, 55.8012, -1.35796, 0, 0.0689649, 0, 1.35971, 0, -0.0689649, 0, -1.35796, -10.8466, -4.27573, 56.4264, 1.42494, 0, 0.729378, 0, 1.60077, 0, -0.729378, 0, 1.42494, 26.8762, -4.27573, -19.9883, 0.315212, 0, -1.20865, 0, 1.24908, 0, 1.20865, 0, 0.315212, 1.1024, -4.27573, 59.5883, 0.0348918, 0, -1.65742, 0, 1.65779, 0, 1.65742, 0, 0.0348918, 8.23201, -4.27573, 67.9936, -0.536892, 0, 1.04162, 0, 1.17185, 0, -1.04162, 0, -0.536892, 1.17054, -4.27573, -47.9639, -0.550362, 0, 1.62841, 0, 1.7189, 0, -1.62841, 0, -0.550362, 26.8067, -4.27573, 53.2657, 0.289523, 0, -1.96042, 0, 1.98169, 0, 1.96042, 0, 0.289523, 21.0355, -4.27573, 55.3415, 1.21733, 0, -0.0842678, 0, 1.22024, 0, 0.0842678, 0, 1.21733, 29.4869, -4.27573, -52.8329, -0.523376, 0, -1.25556, 0, 1.36027, 0, 1.25556, 0, -0.523376, 19.2361, -4.27573, 27.4147, -0.61053, 0, -1.46104, 0, 1.58348, 0, 1.46104, 0, -0.61053, 30.0877, -4.27573, -22.3265, 0.172322, 0, -1.169, 0, 1.18163, 0, 1.169, 0, 0.172322, 6.13109, -4.27573, 56.9644, 0.192387, 0, -1.17314, 0, 1.18881, 0, 1.17314, 0, 0.192387, 12.6256, -4.27573, -10.5152, 1.23858, 0, -0.669397, 0, 1.40789, 0, 0.669397, 0, 1.23858, -2.93092, -4.27573, -0.977493, -1.01591, 0, -0.866985, 0, 1.33556, 0, 0.866985, 0, -1.01591, -8.21559, -4.27573, -35.7788, 1.00263, 0, -1.70565, 0, 1.97851, 0, 1.70565, 0, 1.00263, 8.72528, -4.27573, 34.5514, -1.64387, 0, 0.156816, 0, 1.65133, 0, -0.156816, 0, -1.64387, 4.95835, -4.27573, 68.9683, 1.7649, 0, 0.0396519, 0, 1.76535, 0, -0.0396519, 0, 1.7649, 27.9621, -4.27573, 10.2611, -1.44544, 0, 1.24984, 0, 1.91086, 0, -1.24984, 0, -1.44544, -5.97315, -4.27573, -56.313, 0.3209, 0, 1.22511, 0, 1.26644, 0, -1.22511, 0, 0.3209, 17.4372, -4.27573, 23.0723, 0.917428, 0, 1.25005, 0, 1.55058, 0, -1.25005, 0, 0.917428, 27.0259, -4.27573, -25.8305, -0.324842, 0, 0.961115, 0, 1.01453, 0, -0.961115, 0, -0.324842, 14.1456, -4.27573, -39.5527, 0.32642, 0, 1.29978, 0, 1.34014, 0, -1.29978, 0, 0.32642, -10.6262, -4.27573, -31.5677, 0.182467, 0, 1.40073, 0, 1.41256, 0, -1.40073, 0, 0.182467, 24.7196, -4.27573, 48.5089, -0.92406, 0, -0.936826, 0, 1.31588, 0, 0.936826, 0, -0.92406, 19.8273, -4.27573, 50.2855, -0.195625, 0, -1.424, 0, 1.43737, 0, 1.424, 0, -0.195625, 7.30153, -4.27573, -2.87656, 0.0224853, 0, 1.81808, 0, 1.81822, 0, -1.81808, 0, 0.0224853, -8.62288, -4.27573, 4.23894, -0.235942, 0, -0.999175, 0, 1.02665, 0, 0.999175, 0, -0.235942, 20.7005, -4.27573, 3.05971, 1.66164, 0, -0.378537, 0, 1.70421, 0, 0.378537, 0, 1.66164, 23.0441, -4.27573, -40.1242, -0.57013, 0, -1.72699, 0, 1.81866, 0, 1.72699, 0, -0.57013, 15.4405, -4.27573, 0.0559576, -1.44522, 0, 1.07297, 0, 1.79998, 0, -1.07297, 0, -1.44522, 2.74376, -4.27573, 7.17552, -0.877693, 0, -1.69787, 0, 1.91131, 0, 1.69787, 0, -0.877693, -0.614712, -4.27573, -27.7112, 0.111033, 0, 1.23032, 0, 1.23532, 0, -1.23032, 0, 0.111033, 26.8938, -4.27573, 16.0941, 0.782002, 0, 0.756188, 0, 1.08782, 0, -0.756188, 0, 0.782002, 10.1474, -4.27573, 22.4978, -1.34395, 0, -1.11136, 0, 1.74394, 0, 1.11136, 0, -1.34395, 3.51649, -4.27573, 15.4463, 1.67002, 0, 0.28428, 0, 1.69404, 0, -0.28428, 0, 1.67002, 18.3443, -4.27573, 28.7536, -1.95056, 0, 0.202819, 0, 1.96108, 0, -0.202819, 0, -1.95056, 14.9409, -4.27573, 42.99, 1.65261, 0, -0.920045, 0, 1.89145, 0, 0.920045, 0, 1.65261, 20.8419, -4.27573, -7.21564, 1.08085, 0, -1.12677, 0, 1.56136, 0, 1.12677, 0, 1.08085, 22.9125, -4.27573, -20.6838, -1.81466, 0, -0.249345, 0, 1.83171, 0, 0.249345, 0, -1.81466, 10.4231, -4.27573, -33.0123, -0.905938, 0, 1.18931, 0, 1.49505, 0, -1.18931, 0, -0.905938, -5.90126, -4.27573, -23.9029, -0.783099, 0, -1.77476, 0, 1.93985, 0, 1.77476, 0, -0.783099, 2.24991, -4.27573, 31.3553, 1.81949, 0, 0.263972, 0, 1.83854, 0, -0.263972, 0, 1.81949, -5.93791, -4.27573, -48.0449, 1.27859, 0, -0.120728, 0, 1.28428, 0, 0.120728, 0, 1.27859, 5.69058, -4.27573, -9.55466, -1.33568, 0, 0.0977612, 0, 1.33925, 0, -0.0977612, 0, -1.33568, 3.47559, -4.27573, -43.5583, -0.481571, 0, 0.943076, 0, 1.05892, 0, -0.943076, 0, -0.481571, 19.5024, -4.27573, -25.8193, 0.00534349, 0, -1.61633, 0, 1.61634, 0, 1.61633, 0, 0.00534349, 23.4446, -4.27573, -31.5862, -1.04732, 0, -0.518067, 0, 1.16845, 0, 0.518067, 0, -1.04732, -0.235153, -4.27573, -18.6808, 0.249558, 0, -1.47531, 0, 1.49627, 0, 1.47531, 0, 0.249558, -0.864067, -4.27573, -11.4363, -0.794033, 0, -1.81127, 0, 1.97767, 0, 1.81127, 0, -0.794033, 13.9788, -4.27573, 67.5666, -1.02268, 0, 0.637167, 0, 1.20493, 0, -0.637167, 0, -1.02268, 22.7623, -4.27573, -11.7647, -0.572177, 0, 1.6298, 0, 1.72732, 0, -1.6298, 0, -0.572177, 4.35246, -4.27573, -5.42607, -1.34712, 0, -1.3253, 0, 1.88975, 0, 1.3253, 0, -1.34712, 20.7875, -4.27573, 18.0519, -1.7598, 0, 0.453933, 0, 1.81741, 0, -0.453933, 0, -1.7598, 4.76244, -4.27573, 11.2591, -1.0634, 0, -0.301808, 0, 1.1054, 0, 0.301808, 0, -1.0634, 4.02825, -4.27573, -26.994, 1.63854, 0, -0.947468, 0, 1.89275, 0, 0.947468, 0, 1.63854, 3.07534, -4.27573, -57.5416, 0.735644, 0, -1.55229, 0, 1.71779, 0, 1.55229, 0, 0.735644, 26.2906, -4.27573, -2.65341, -1.27852, 0, 1.14005, 0, 1.71299, 0, -1.14005, 0, -1.27852, 3.32703, -4.27573, -2.4408, 0.534505, 0, -1.66378, 0, 1.74753, 0, 1.66378, 0, 0.534505, 32.8379, -4.27573, -15.7221, 0.871112, 0, 0.779405, 0, 1.16889, 0, -0.779405, 0, 0.871112, 7.20481, -4.27573, -55.8051, -0.047442, 0, -1.21147, 0, 1.2124, 0, 1.21147, 0, -0.047442, 19.8868, -4.27573, 71.1421, -1.53918, 0, -0.592314, 0, 1.64922, 0, 0.592314, 0, -1.53918, -11.1202, -4.27573, 11.6334, 1.82187, 0, -0.13683, 0, 1.827, 0, 0.13683, 0, 1.82187, -10.327, -4.27573, 1.11209, -0.0314671, 0, -1.50352, 0, 1.50385, 0, 1.50352, 0, -0.0314671, -5.70462, -4.27573, -16.9037, 1.01281, 0, 0.0527994, 0, 1.01419, 0, -0.0527994, 0, 1.01281, -6.1534, -4.27573, -9.85295, -1.11594, 0, 0.710882, 0, 1.32313, 0, -0.710882, 0, -1.11594, 3.49892, -4.27573, -50.8724, -1.41431, 0, 0.718682, 0, 1.58644, 0, -0.718682, 0, -1.41431, -12.8452, -4.27573, 29.6443, 1.16836, 0, -0.463134, 0, 1.2568, 0, 0.463134, 0, 1.16836, 7.81114, -4.27573, 26.5857, -1.15539, 0, -1.39492, 0, 1.81128, 0, 1.39492, 0, -1.15539, 20.5663, -4.27573, -5.2494, -1.60231, 0, 0.126613, 0, 1.60731, 0, -0.126613, 0, -1.60231, 5.64571, -4.27573, 61.62, 0.592111, 0, 0.861845, 0, 1.04564, 0, -0.861845, 0, 0.592111, -12.9256, -4.27573, -25.5544, -1.41209, 0, -0.356923, 0, 1.4565, 0, 0.356923, 0, -1.41209, 2.36704, -4.27573, -20.6975, 1.00324, 0, -0.242864, 0, 1.03221, 0, 0.242864, 0, 1.00324, 2.82727, -4.27573, 51.4431, 0.688885, 0, 0.791986, 0, 1.04967, 0, -0.791986, 0, 0.688885, 25.0761, -4.27573, -11.0485, 1.5034, 0, -0.757096, 0, 1.68327, 0, 0.757096, 0, 1.5034, -1.92219, -4.27573, 68.1739, -0.23274, 0, -1.02188, 0, 1.04805, 0, 1.02188, 0, -0.23274, 12.3865, -4.27573, 52.698, 1.39941, 0, 1.2714, 0, 1.89072, 0, -1.2714, 0, 1.39941, 26.9524, -4.27573, 4.67911, 0.47154, 0, -1.89753, 0, 1.95524, 0, 1.89753, 0, 0.47154, 12.5399, -4.27573, 14.0201, 1.18319, 0, 0.40518, 0, 1.25065, 0, -0.40518, 0, 1.18319, 25.3092, -4.27573, -56.5317, 1.13562, 0, 0.778483, 0, 1.37683, 0, -0.778483, 0, 1.13562, 30.8465, -4.27573, -21.6777, -1.05028, 0, -1.4672, 0, 1.80438, 0, 1.4672, 0, -1.05028, 21.2132, -4.27573, 57.2476, -0.907006, 0, 1.41613, 0, 1.68169, 0, -1.41613, 0, -0.907006, 9.2488, -4.27573, 42.2681, -0.0311023, 0, 1.75034, 0, 1.75062, 0, -1.75034, 0, -0.0311023, -9.93186, -4.27573, 15.929, 1.25825, 0, 0.487954, 0, 1.34955, 0, -0.487954, 0, 1.25825, 3.16652, -4.27573, -41.5524, 0.0148905, 0, 1.42473, 0, 1.42481, 0, -1.42473, 0, 0.0148905, 12.8937, -4.27573, -37.2049, 1.22146, 0, -0.83922, 0, 1.48198, 0, 0.83922, 0, 1.22146, 12.8426, -4.27573, 16.799, 0.0327864, 0, 1.9236, 0, 1.92388, 0, -1.9236, 0, 0.0327864, -3.40239, -4.27573, 4.46154, 0.741345, 0, -1.39632, 0, 1.58092, 0, 1.39632, 0, 0.741345, 11.2074, -4.27573, -22.9474, -0.877518, 0, -1.63899, 0, 1.85912, 0, 1.63899, 0, -0.877518, 12.6397, -4.27573, 48.3054, 1.59373, 0, 0.0443977, 0, 1.59435, 0, -0.0443977, 0, 1.59373, 17.1764, -4.27573, 9.32852, -0.721876, 0, 1.233, 0, 1.42877, 0, -1.233, 0, -0.721876, 21.2276, -4.27573, 58.6795, 0.582008, 0, -1.37251, 0, 1.49081, 0, 1.37251, 0, 0.582008, -4.22951, -4.27573, 38.1351, 0.626146, 0, -1.5004, 0, 1.62581, 0, 1.5004, 0, 0.626146, -1.09722, -4.27573, 2.4425, -0.0796694, 0, -1.98328, 0, 1.98488, 0, 1.98328, 0, -0.0796694, -3.50814, -4.27573, -29.613, 0.360713, 0, 1.03228, 0, 1.09348, 0, -1.03228, 0, 0.360713, -1.3136, -4.27573, -58.7519, -1.32392, 0, -0.412071, 0, 1.38656, 0, 0.412071, 0, -1.32392, 15.8831, -4.27573, -53.9121, 0.904536, 0, 1.57266, 0, 1.81423, 0, -1.57266, 0, 0.904536, -12.4862, -4.27573, -28.01, 0.877698, 0, 0.663203, 0, 1.10009, 0, -0.663203, 0, 0.877698, 14.9889, -4.27573, -3.36042, 0.166275, 0, 1.65988, 0, 1.66819, 0, -1.65988, 0, 0.166275, -7.6141, -4.27573, -11.6921, -0.897202, 0, 0.815566, 0, 1.21249, 0, -0.815566, 0, -0.897202, 14.5704, -4.27573, 60.3544, 0.994794, 0, -0.354942, 0, 1.05622, 0, 0.354942, 0, 0.994794, -3.02442, -4.27573, 39.3365, 1.38317, 0, -0.664899, 0, 1.53468, 0, 0.664899, 0, 1.38317, 11.7335, -4.27573, 62.0726, 0.108596, 0, -1.10414, 0, 1.10946, 0, 1.10414, 0, 0.108596, 27.8623, -4.27573, -21.0727, 1.28645, 0, 0.859814, 0, 1.54733, 0, -0.859814, 0, 1.28645, -2.49573, -4.27573, 20.1961, -1.50226, 0, 0.950128, 0, 1.77751, 0, -0.950128, 0, -1.50226, -15.1593, -4.27573, 64.8618, 1.1067, 0, 0.38663, 0, 1.17229, 0, -0.38663, 0, 1.1067, 27.205, -4.27573, -40.8325, 0.646024, 0, 1.81382, 0, 1.92543, 0, -1.81382, 0, 0.646024, -1.74638, -4.27573, -55.5976, 0.717687, 0, -0.829939, 0, 1.09721, 0, 0.829939, 0, 0.717687, -3.17527, -4.27573, 26.5225, 1.45388, 0, 0.253774, 0, 1.47586, 0, -0.253774, 0, 1.45388, 27.9041, -4.27573, -58.1244, 0.320553, 0, 1.80465, 0, 1.8329, 0, -1.80465, 0, 0.320553, -8.74495, -4.27573, 51.4766, 0.306036, 0, 1.12311, 0, 1.16406, 0, -1.12311, 0, 0.306036, -4.45241, -4.27573, 14.2749, 0.0824609, 0, 1.42824, 0, 1.43062, 0, -1.42824, 0, 0.0824609, -0.835796, -4.27573, -27.2986, 1.08929, 0, 1.08981, 0, 1.54085, 0, -1.08981, 0, 1.08929, 3.83404, -4.27573, -23.614, -0.798262, 0, -1.04937, 0, 1.31848, 0, 1.04937, 0, -0.798262, -5.89933, -4.27573, -7.66603, -0.274869, 0, -1.57241, 0, 1.59625, 0, 1.57241, 0, -0.274869, -3.39601, -4.27573, -64.718, -0.785093, 0, -1.7953, 0, 1.95946, 0, 1.7953, 0, -0.785093, 11.9113, -4.27573, -54.1681, -0.144889, 0, 1.3825, 0, 1.39007, 0, -1.3825, 0, -0.144889, -8.45529, -4.27573, 71.1082, 1.58679, 0, 1.0849, 0, 1.92221, 0, -1.0849, 0, 1.58679, -9.69196, -4.27573, 21.3369, 1.73147, 0, -0.662372, 0, 1.85384, 0, 0.662372, 0, 1.73147, 13.0485, -4.27573, 53.0101, 1.80044, 0, 0.00727011, 0, 1.80046, 0, -0.00727011, 0, 1.80044, -11.692, -4.27573, -56.0363, 0.348115, 0, -1.56928, 0, 1.60742, 0, 1.56928, 0, 0.348115, 5.15335, -4.27573, 61.5223, -1.31647, 0, -1.02974, 0, 1.67136, 0, 1.02974, 0, -1.31647, 24.2998, -4.27573, 70.8697, 1.27744, 0, 1.47601, 0, 1.95204, 0, -1.47601, 0, 1.27744, 1.00105, -4.27573, -11.8137, 0.49204, 0, -1.44771, 0, 1.52904, 0, 1.44771, 0, 0.49204, 13.6832, -4.27573, -44.9537, 1.37464, 0, -1.07705, 0, 1.74633, 0, 1.07705, 0, 1.37464, 5.91065, -4.27573, 36.1787, 1.57748, 0, 0.511854, 0, 1.65844, 0, -0.511854, 0, 1.57748, 16.271, -4.27573, -40.9207, -1.7644, 0, 0.795097, 0, 1.93527, 0, -0.795097, 0, -1.7644, -10.6867, -4.27573, -43.3893, -0.9291, 0, -0.680525, 0, 1.15167, 0, 0.680525, 0, -0.9291, 26.527, -4.27573, -29.172, -1.67101, 0, -1.07842, 0, 1.98879, 0, 1.07842, 0, -1.67101, 26.1364, -4.27573, -39.8342, 1.14053, 0, 0.134674, 0, 1.14845, 0, -0.134674, 0, 1.14053, 4.95338, -4.27573, -35.2814, 0.35084, 0, -1.01929, 0, 1.07798, 0, 1.01929, 0, 0.35084, 26.6111, -4.27573, -38.3887, 0.588611, 0, -0.985768, 0, 1.14813, 0, 0.985768, 0, 0.588611, 12.7121, -4.27573, 46.9874, 0.868368, 0, -1.44906, 0, 1.68933, 0, 1.44906, 0, 0.868368, -5.00617, -4.27573, 14.0688, 0.236432, 0, -1.23848, 0, 1.26084, 0, 1.23848, 0, 0.236432, 29.7426, -4.27573, -53.255, -1.05799, 0, 0.898313, 0, 1.38792, 0, -0.898313, 0, -1.05799, -1.89305, -4.27573, 44.9753, -0.102244, 0, -1.05051, 0, 1.05547, 0, 1.05051, 0, -0.102244, -4.28833, -4.27573, -11.1686, -0.175822, 0, 1.17075, 0, 1.18388, 0, -1.17075, 0, -0.175822, 2.40794, -4.27573, 38.5262, -1.21732, 0, -0.209756, 0, 1.23526, 0, 0.209756, 0, -1.21732, 29.7793, -4.27573, -57.6597, 0.795735, 0, -0.939399, 0, 1.23112, 0, 0.939399, 0, 0.795735, 7.14573, -4.27573, -1.26415, 0.735925, 0, -1.06287, 0, 1.29278, 0, 1.06287, 0, 0.735925, 29.5188, -4.27573, -54.6921, -0.231454, 0, -1.42929, 0, 1.44791, 0, 1.42929, 0, -0.231454, 7.5585, -4.27573, 61.3251, 0.373025, 0, -1.39116, 0, 1.4403, 0, 1.39116, 0, 0.373025, -7.84291, -4.27573, -42.4861, -0.891421, 0, 1.031, 0, 1.36293, 0, -1.031, 0, -0.891421, -12.4292, -4.27573, 14.4395, 1.68282, 0, -0.483662, 0, 1.75094, 0, 0.483662, 0, 1.68282, 16.1389, -4.27573, -45.8656, -0.433351, 0, -1.03631, 0, 1.12327, 0, 1.03631, 0, -0.433351, 17.1294, -4.27573, -3.69666, 1.1318, 0, -1.42853, 0, 1.82255, 0, 1.42853, 0, 1.1318, 0.888435, -4.27573, 71.377, 0.595409, 0, -1.32346, 0, 1.45123, 0, 1.32346, 0, 0.595409, 25.345, -4.27573, -27.9159, -1.30928, 0, 1.23845, 0, 1.80221, 0, -1.23845, 0, -1.30928, 26.3926, -4.27573, 47.3723, 1.92885, 0, 0.0184899, 0, 1.92894, 0, -0.0184899, 0, 1.92885, -1.64589, -4.27573, -26.1658, 1.72431, 0, -0.263323, 0, 1.7443, 0, 0.263323, 0, 1.72431, 15.3083, -4.27573, 49.5166, 0.977148, 0, -1.34506, 0, 1.66253, 0, 1.34506, 0, 0.977148, 29.5879, -4.27573, -40.9776, 1.48524, 0, -0.010983, 0, 1.48528, 0, 0.010983, 0, 1.48524, 25.1683, -4.27573, 1.4031, -1.10951, 0, 0.0581394, 0, 1.11103, 0, -0.0581394, 0, -1.10951, -4.32943, -4.27573, -64.6839, -1.02215, 0, 1.215, 0, 1.58777, 0, -1.215, 0, -1.02215, -10.0695, -4.27573, -10.7025, -0.409635, 0, 1.74512, 0, 1.79255, 0, -1.74512, 0, -0.409635, 20.4014, -4.27573, -35.4873, 0.259898, 0, -1.30299, 0, 1.32866, 0, 1.30299, 0, 0.259898, 15.742, -4.27573, -23.0497, -0.909088, 0, -1.00547, 0, 1.35551, 0, 1.00547, 0, -0.909088, 27.8743, -4.27573, -6.71641, 0.32024, 0, 1.8977, 0, 1.92453, 0, -1.8977, 0, 0.32024, 9.46383, -4.27573, 61.2099, 0.918313, 0, 1.49346, 0, 1.7532, 0, -1.49346, 0, 0.918313, 0.593353, -4.27573, -30.5052, 0.405612, 0, 0.959299, 0, 1.04153, 0, -0.959299, 0, 0.405612, -11.9069, -4.27573, 23.0383, -0.824945, 0, -1.59745, 0, 1.79788, 0, 1.59745, 0, -0.824945, 13.5574, -4.27573, -60.4946, -1.44044, 0, 0.948565, 0, 1.72471, 0, -0.948565, 0, -1.44044, 3.62474, -4.27573, -48.6403, -1.20103, 0, -0.42298, 0, 1.27333, 0, 0.42298, 0, -1.20103, -0.691639, -4.27573, 51.8309, 1.29038, 0, 0.755647, 0, 1.49535, 0, -0.755647, 0, 1.29038, -0.786682, -4.27573, -22.0256, -0.457116, 0, -0.941794, 0, 1.04687, 0, 0.941794, 0, -0.457116, -12.3314, -4.27573, -37.6679, -1.10106, 0, 0.0717838, 0, 1.1034, 0, -0.0717838, 0, -1.10106, 24.068, -4.27573, -30.4377, 0.0863546, 0, 1.55726, 0, 1.55965, 0, -1.55726, 0, 0.0863546, 26.3179, -4.27573, -30.983, -1.53481, 0, 0.366778, 0, 1.57803, 0, -0.366778, 0, -1.53481, -2.42476, -4.27573, -50.7927, -0.898861, 0, 0.870277, 0, 1.25113, 0, -0.870277, 0, -0.898861, 18.2956, -4.27573, 23.5133, 0.948567, 0, 1.49378, 0, 1.76951, 0, -1.49378, 0, 0.948567, -1.54844, -4.27573, -29.2279, 0.033557, 0, 1.02836, 0, 1.02891, 0, -1.02836, 0, 0.033557, -12.4873, -4.27573, 5.36039 ) [sub_resource type="Curve3D" id=6] @@ -80,7 +80,7 @@ _data = { "tilts": PoolRealArray( 0, 0, 0, 0, 0, 0, 0, 0, 0 ) } -[sub_resource type="ArrayMesh" id=7] +[sub_resource type="ArrayMesh" id=47] resource_name = "Icosphere" surfaces/0 = { "aabb": AABB( -0.244832, 0.00529499, -0.363913, 0.545351, 0.407066, 0.656183 ), @@ -98,7 +98,7 @@ surfaces/0 = { [sub_resource type="MultiMesh" id=8] transform_format = 1 instance_count = 2722 -mesh = SubResource( 7 ) +mesh = SubResource( 47 ) transform_array = PoolVector3Array( 0.263264, -0.0192287, 0.0321161, 0.0173914, 0.264859, 0.0160158, -0.0331471, -0.0137558, 0.263479, 109.135, -71.2054, -75.8208, 0.270115, -0.0282812, -0.215876, 0.0203031, 0.345769, -0.0198939, 0.216772, 0.00285555, 0.270862, 224.289, -76.6964, -202.684, -0.137309, -0.00636603, -0.322289, 0.0090847, 0.350094, -0.0107857, 0.322224, -0.0125832, -0.137033, 22.8435, -0.258362, -5.83161, -0.303133, -0.0109477, -0.0116884, -0.00958152, 0.301504, -0.0339058, 0.0128322, -0.0334896, -0.301429, 245.093, -31.3646, -23.1761, -0.221895, 0.046919, 0.256107, 0.0307236, 0.338864, -0.0354606, -0.258551, 0, -0.224012, 144.922, -12.5114, 15.6947, 0.18292, 0.000809597, 0.228289, -0.000711017, 0.292533, -0.000467716, -0.228289, -0.000262404, 0.182922, 172.205, -75.9236, -153.162, -0.244066, 0.0244691, 0.123988, 0.0155987, 0.273415, -0.0232533, -0.125413, -0.0136124, -0.244185, 256.515, -73.6841, -163.113, -0.074042, -0.0135715, 0.200849, -0.0179826, 0.213594, 0.00780348, -0.200502, -0.0141451, -0.07487, 229.134, -75.4974, -172.084, -0.264038, -0.00244334, 0.00446058, -0.00321088, 0.259703, -0.0478075, -0.00394423, -0.0478528, -0.259685, 30.7147, -75.6149, -89.7383, 0.0693302, 0.0586806, 0.23154, -0.0420615, 0.240328, -0.0483133, -0.235128, -0.0256891, 0.076915, 53.9008, -21.0282, -41.1162, 0.289107, 0.0562697, 0.241897, 0.00034678, 0.371131, -0.0867463, -0.248355, 0.0660209, 0.281468, 325.212, -40.1317, -153.715, -0.157132, -0.0030005, 0.366715, 0.0458647, 0.395666, 0.0228898, -0.363848, 0.0511714, -0.155485, 123.873, -14.3836, -16.9895, -0.0192801, -0.0357786, -0.340567, 0.00860226, 0.340948, -0.0363056, 0.342333, -0.0105825, -0.0182683, 225.864, -75.7729, -173.059, 0.304137, 0.0278687, -0.0220816, -0.0286101, 0.304722, -0.00947311, 0.0211123, 0.0114722, 0.305265, 189.402, -34.6012, 4.58141, -0.0471911, 0.00191625, -0.245372, -0.00517059, 0.249806, 0.0029453, 0.245325, 0.00563363, -0.0471381, 218.09, -30.8012, -68.9018, 0.216597, -0.0251805, -0.199619, 0.0144875, 0.294494, -0.0214287, 0.200679, 0.00591757, 0.217, 210.433, -75.8316, -130.958, 0.37294, 0.00921805, 0.0875769, -0.00897394, 0.383085, -0.00210734, -0.0876023, 0, 0.373048, 89.4576, -1.76521, 3.06117, -0.0402837, -0.0012131, 0.276546, -8.23177e-05, 0.279464, 0.00121391, -0.276548, 9.35218e-05, -0.0402837, 309.428, -38.2857, -122.297, -0.310553, 0.0406722, -0.0249684, 0.0405465, 0.311555, 0.00319569, 0.025172, -6.35045e-05, -0.313189, 80.2093, -24.8752, -48.8692, -0.283125, 0.00206856, -0.0868248, 0.00959171, 0.294996, -0.0242492, 0.0863182, -0.0259951, -0.282092, 106.463, -77.714, -176.72, -0.197503, -0.00135885, 0.242873, -0.000776045, 0.313041, 0.00112036, -0.242875, 0.000104758, -0.197505, 307.693, -38.2947, -117.858, 0.159272, 0.00630206, 0.254061, 0.00984754, 0.299453, -0.0136015, -0.253948, 0.0155647, 0.158816, 184.872, -31.3574, -47.6574, -0.184112, 0.00119101, 0.096884, 0.00332483, 0.20799, 0.00376144, -0.0968342, 0.00487693, -0.184078, 242.507, -33.0052, -96.4323, -0.1083, 0.000584906, 0.188028, 0.00035838, 0.216987, -0.000468572, -0.188029, 7.66821e-05, -0.108301, 185.095, -25.9128, -78.421, -0.11613, 0.0102263, -0.272473, 0.00860452, 0.296147, 0.00744749, 0.272529, -0.00499256, -0.116341, 66.9842, -72.7356, -63.9561, 0.186415, 0.0323344, -0.165428, -0.0481196, 0.246599, -0.00602444, 0.161544, 0.0361424, 0.189103, 154.84, -31.894, -36.7928, -0.0403455, 0.000739041, -0.263973, 0.000348445, 0.267039, 0.000694367, 0.263974, -0.000239536, -0.0403463, 164.045, -75.9211, -175.659, 0.204741, -0.0296753, -0.303667, 0.0119327, 0.366198, -0.0277407, 0.30488, 0.00559568, 0.205012, 225.554, -74.1161, -152.289, -0.27603, 0.0296319, 0.20704, 0.0306562, 0.344854, -0.00848455, -0.206891, 0.0115648, -0.277486, 210.046, -36.6017, 9.13542, -0.020437, 0.000230679, 0.264575, -0.000817771, 0.265362, -0.000294534, -0.264574, -0.000838025, -0.0204362, 158.844, -39.4752, -96.7178, 0.157114, 0.0382619, -0.198157, -0.00980959, 0.252276, 0.0409338, 0.201579, -0.0175452, 0.156439, 100.416, -11.5328, -14.7507, -0.333731, 0.000943066, -0.0688526, 0.000985376, 0.340759, -0.000108808, 0.068852, -0.000305664, -0.333732, 169.829, -75.9324, -170.28, 0.245643, 0.0753968, 0.0596885, -0.0728816, 0.252786, -0.0193741, -0.0627349, 0.00155013, 0.256222, 5.27447, -3.4985, -196.032, 0.234878, 0.0293276, -0.0158416, -0.0288713, 0.235345, 0.00762937, 0.0166588, -0.00562575, 0.236579, 1.19127, -2.03351, -109.076, 0.0523892, 0.000645274, -0.334963, -0.000246596, 0.339035, 0.00061455, 0.334964, 0.000148671, 0.0523895, 205.179, -75.9931, -126.338, -0.200448, 0.00737072, 0.203654, -0.00137004, 0.285605, -0.0116852, -0.203782, -0.00917023, -0.200242, 120.719, -75.3144, -117.021, 0.369823, 0.035396, 0.115034, -0.0294289, 0.387026, -0.0244769, -0.116703, 0.0145708, 0.370705, 189.049, -34.282, -3.04092, -0.167185, -0.315104, 0.0805558, 0.146578, 0.00785625, 0.334938, -0.290335, 0.185414, 0.12271, 171.396, -34.3385, -7.51082, 0.251035, 0.00836562, 0.24057, -0.00603995, 0.347696, -0.00578815, -0.240639, 0, 0.251107, 93.4206, -1.86058, 23.6961, 0.275714, -0.00296026, 0.19523, 0.00401099, 0.337825, -0.000542133, -0.195211, 0.00276023, 0.27573, 91.2273, -25.8541, -38.4204, 0.189276, 0.000623767, 0.174113, -0.000823024, 0.257178, -2.66505e-05, -0.174112, -0.000537582, 0.189277, 164.372, -25.8575, -59.4052, 0.278323, -0.0084766, 0.171144, 0.0204699, 0.325749, -0.0171552, -0.170127, 0.0253272, 0.277923, 297.134, -38.3154, -126.806, -0.226038, 0.0117326, 0.112423, 0.0226806, 0.250955, 0.0194115, -0.110735, 0.027451, -0.225508, 165.94, -30.1373, -56.7346, 0.20387, 0.0178025, -0.0375617, -0.0187616, 0.207185, -0.00363424, 0.037092, 0.00694799, 0.204613, 218.711, -37.0981, 1.73139, 0.0577521, 0.0912277, 0.192807, 0.000631592, 0.199675, -0.0946666, -0.213299, 0.0252917, 0.0519233, 153.947, -16.9637, 23.5394, 0.198729, -0.00991428, 0.0383664, 0.0100115, 0.202394, 0.000443428, -0.0383411, 0.00146062, 0.198976, 236.318, -31.5578, -7.9195, -0.329483, 0.0313493, 0.0954208, 0.0336955, 0.342779, 0.0037328, -0.0946178, 0.012905, -0.33095, 192.724, -34.8742, 3.76388, -0.198288, 0.146387, 0.254928, 0.124334, 0.320405, -0.0872756, -0.26638, 0.0405838, -0.230499, 159.194, -19.2509, 22.6683, -0.231554, 0.020927, 0.248728, 0.0280408, 0.339306, -0.00244326, -0.248027, 0.0188233, -0.232485, 33.5301, -72.1822, -121.649, 0.11858, 0.159387, -0.11666, -0.120869, 0.166172, 0.104176, 0.15622, 0.00758458, 0.169153, 14.9279, -72.0716, -126.084, -0.344052, 0, 0.0922714, 0, 0.35621, 0, -0.0922714, 0, -0.344052, 1.33621, -0.453491, 56.0828, 0.280432, -0.000843613, 0.167074, 0.000480186, 0.326428, 0.000842262, -0.167075, -0.000477807, 0.280432, 123.403, -25.9462, -70.7278, 0.00434852, 0.00391332, -0.26854, -0.00492464, 0.268531, 0.00383344, 0.268523, 0.00486141, 0.00441909, 278.736, -38.4683, -101.902, -0.11843, 0.0761691, -0.2939, 0.0305687, 0.316857, 0.0698007, 0.302067, -0.00220211, -0.122292, 42.1997, -7.11145, -38.6524, 0.227996, 0.0148722, -0.29579, 0.00232561, 0.373185, 0.0205563, 0.296154, -0.01438, 0.227554, 66.2553, -74.1364, -130.98, -0.0489077, 0.063001, -0.313635, 0.00568576, 0.3174, 0.0628707, 0.319849, 0.00399117, -0.0490751, 263.8, -35.6223, -75.9625, -0.2771, 0.00668038, 0.155723, 0.0139008, 0.31743, 0.0111182, -0.155246, 0.0164991, -0.276957, 183.337, -30.8482, -56.8327, -0.203029, 0.00542778, -0.0983409, 0.00488491, 0.225592, 0.0023661, 0.0983693, 0, -0.203087, 91.9856, -1.82605, 47.4145, -0.240081, 0.000834509, -0.244611, -0.00927845, 0.342465, 0.010275, 0.244436, 0.0138191, -0.239863, 321.159, -38.5262, -107.323, 0.226375, 0.0596961, 0.323149, -0.0568436, 0.393601, -0.0328904, -0.323663, -0.0273741, 0.231792, 87.6632, -9.77684, -17.3128, 0.104726, 0.00614433, 0.174902, -0.00880145, 0.203752, -0.00188779, -0.174788, -0.00657849, 0.104889, 89.4832, -74.9843, -131.934, -0.213458, -0.000909415, -0.0578304, -0.00102739, 0.221152, 0.00031447, 0.0578284, 0.000572181, -0.21346, 123.394, -75.9096, -141.801, -0.229548, 0.0268346, 0.0290435, 0.0299517, 0.229692, 0.0245033, -0.025817, 0.0278823, -0.229809, 178.135, -33.3168, -17.2251, -0.282482, 0.00799356, -0.174876, 0.00679658, 0.332232, 0.00420756, 0.174927, 0, -0.282564, 60.047, -1.05745, 64.7873, 0.205778, 0.00432531, 0.00315505, -0.00415517, 0.205525, -0.0107499, -0.00337598, 0.0106826, 0.205543, 168.287, -32.3773, -21.3208, -0.184274, 0.0268247, -0.139785, 0.00425812, 0.229608, 0.0384485, 0.142272, 0.0278721, -0.182204, 200.631, -32.7867, -43.2432, 0.304491, 0.00835744, 0.110747, -0.0114053, 0.323839, 0.0069197, -0.110475, -0.0103979, 0.304527, 128.64, -75.5592, -118.278, -0.00315338, 0.00178937, -0.312553, -0.00730875, 0.312483, 0.0018627, 0.312472, 0.00732705, -0.00311063, 240.634, -32.8957, -100.645, 0.153034, 0.0496876, 0.348494, -0.0200496, 0.380614, -0.0454629, -0.351447, -7.75809e-05, 0.154342, 70.975, -23.6695, -48.2762, 0.122319, -0.0010799, -0.370534, 0.000777051, 0.390201, -0.000880702, 0.370535, -0.000461803, 0.122321, 142.842, -25.9047, -79.9758, 0.248, 0, -0.0437176, 0, 0.251824, 0, 0.0437176, 0, 0.248, 5.33468, -0.453491, 61.1996, 0.0538094, 0.0110099, -0.235097, -0.0280947, 0.239739, 0.00479694, 0.233672, 0.0262888, 0.0547144, 216.448, -30.2439, -77.2971, 0.301122, 0.072707, 0.0284322, -0.0725865, 0.302454, -0.00468216, -0.0287384, -0.00210202, 0.30974, 43.4456, -7.45151, -44.4858, -0.043862, 0, 0.319481, 0, 0.322478, 0, -0.319481, 0, -0.043862, 23.0146, -0.453506, -8.5591, 0.231039, 0.0719978, 0.0699441, -0.0684604, 0.24139, -0.0223394, -0.0734101, 0.00148025, 0.240964, 7.4418, -4.23653, -181.098, 0.0468816, -0.0208202, 0.250204, 0.00590744, 0.25455, 0.0200749, -0.250999, 0.00210221, 0.0472056, 230.128, -76.1469, -211.399, 0.232248, -0.0713123, 0.270709, -0.036352, 0.341081, 0.121038, -0.277574, -0.104337, 0.210652, 261.909, -75.102, -178.361, 0.207372, 0.0192475, -0.233853, -0.0257285, 0.312075, 0.00287062, 0.233229, 0.0173126, 0.208244, 19.285, -71.5419, -117.354, -0.00949209, 0.0428516, -0.333893, -0.000167087, 0.334025, 0.0428733, 0.336631, 0.00137409, -0.00939359, 70.9752, -23.6846, -38.2813, -0.317229, -0.0255771, -0.194374, -0.0115352, 0.371527, -0.0300622, 0.19571, -0.0195603, -0.316835, 81.7883, -73.5545, -83.8653, 0.0451417, -0.0231332, 0.266813, 0.00923807, 0.27055, 0.0218943, -0.267655, 0.00543645, 0.0457554, 221.553, -74.6598, -141.949, -0.308291, 0.0701441, -0.0779887, 0.0677847, 0.318002, 0.0180603, 0.0800479, 0.000864136, -0.315654, 264.859, -35.8315, -79.3353, -0.161069, 0.111571, -0.0890014, 0.0619825, 0.175569, 0.107919, 0.12856, 0.0551383, -0.163539, 238.098, -31.006, -27.9495, -0.122709, 0.0260437, 0.179383, -0.00818457, 0.215604, -0.0369012, -0.181079, -0.0273937, -0.119892, 161.249, -52.9925, -117.468, -0.13996, 0.000752853, -0.241693, 0.000291859, 0.279292, 0.000700962, 0.241694, 9.87002e-05, -0.13996, 191.087, -25.9295, -76.9773, 0.297471, 0.117188, 0.0435483, -0.114471, 0.300501, -0.0267168, -0.0502589, 0.00918094, 0.318603, 55.3348, -79.911, -61.1772, 0.235201, 0.000448375, 0.0133983, -0.000441774, 0.235582, -0.000128639, -0.0133985, 0.000103305, 0.235201, 171.405, -75.9281, -125.378, 0.190932, -0.0198045, -0.195345, 0.0239828, 0.272789, -0.00421493, 0.194876, -0.0141677, 0.19191, 134.499, -70.2677, -93.2221, 0.208193, 0.0109724, 0.18048, -0.0152395, 0.275327, 0.000840868, -0.18017, -0.0106092, 0.20848, 66.6646, -74.1586, -131.134, -0.241422, 0.177089, 0.00658995, 0.129748, 0.184224, -0.19727, -0.120704, -0.156172, -0.225232, 58.0953, -20.9303, -33.411, 0.0620576, -0.0155351, -0.237047, 0.0196211, 0.2445, -0.0108869, 0.236743, -0.0161917, 0.0630394, 239.06, -74.0186, -159.276, 0.374515, 0.0730116, 0.0166997, -0.0741063, 0.373574, 0.0286628, -0.010855, -0.0313465, 0.380487, 60.291, -22.1067, -37.1179, -0.245405, 0.0124686, -0.264941, 0.0129402, 0.361082, 0.0050071, 0.264918, -0.00608726, -0.245671, 59.5581, -73.3637, -116.424, -0.0613721, -0.00908123, -0.24404, 0.0247573, 0.2501, -0.0155328, 0.24295, -0.0277799, -0.0600644, 255.153, -30.5654, -19.269, -0.279066, -0.00486253, -0.282532, -0.0140684, 0.396835, 0.00706608, 0.282224, 0.0149735, -0.279019, 177.302, -45.4284, -103.475, 0.221717, -0.0202673, -0.110659, 0.0172166, 0.247789, -0.0108875, 0.111174, 0.00204638, 0.222375, 245.852, -74.9233, -203.826, -0.266756, 0.00648543, 0.0385187, 0.00641885, 0.269522, -0.000926863, -0.0385299, 0, -0.266833, 50.3957, -0.825226, 50.9599, -0.307975, 0.00110661, 0.25502, 0.000623576, 0.399855, -0.000982036, -0.255022, -0.000358673, -0.307975, 151.592, -75.8863, -175.606, 0.292175, 0.0436685, -0.0146298, -0.0455304, 0.288019, -0.0495889, 0.00692469, 0.0512361, 0.291228, 323.208, -40.0518, -152.456, 0.0750437, -0.0222988, -0.34362, 0.027499, 0.35095, -0.016769, 0.343242, -0.0232413, 0.0764696, 242.09, -73.825, -159.259, -0.140669, 0.0587974, -0.147044, 0.0478735, 0.203264, 0.0354797, 0.150955, -0.00967176, -0.148277, 258.411, -63.0175, -122.151, 0.16486, -0.0872371, 0.180756, 0.0381402, 0.243271, 0.0826223, -0.197049, -0.0258998, 0.167221, 258.754, -48.3809, -113.641, -0.118925, 0.00558694, -0.181029, 0.00887741, 0.216486, 0.00084932, 0.180897, -0.00695096, -0.119053, 113.042, -75.0351, -114.491, -0.150254, 0.0033931, -0.181129, 0.0486512, 0.227432, -0.0360975, 0.174506, -0.0604852, -0.145892, 114.731, -74.3313, -109.802, 0.238999, -0.000734616, 0.11549, 0.000524757, 0.26544, 0.000602478, -0.115491, -0.000314148, 0.238999, 149.835, -25.8638, -62.0437, -0.162782, 0.00674542, -0.204669, 0.010767, 0.261375, 5.08897e-05, 0.204497, -0.00839227, -0.162921, 112.984, -75.083, -116.029, -0.189019, 0.0225808, 0.0859451, 0.0205557, 0.207641, -0.00934648, -0.0864518, 0, -0.190133, 120.753, -4.47739, 25.6466, -0.174435, 0, 0.114037, 0, 0.208403, 0, -0.114037, 0, -0.174435, 6.04086, -0.453491, 28.3138, -0.184445, -0.0179553, 0.184914, -0.0224076, 0.260815, 0.0029747, -0.184428, -0.0137315, -0.185293, 100.331, -72.3683, -85.5824, -0.224618, -0.000900274, -0.0640688, -0.00077898, 0.233577, -0.000551124, 0.0640704, -0.000316313, -0.224619, 120.053, -25.9203, -42.3766, -0.323298, 0.0520091, -0.181765, 0.0433345, 0.370869, 0.0290408, 0.184026, 0.00403749, -0.326164, 243.319, -32.3701, -78.3537, 0.0648146, 0.00560777, 0.336419, -0.00471445, 0.342585, -0.00480227, -0.336432, -0.00372032, 0.0648792, 96.3251, -25.8722, -50.1414, 0.204264, 0.00526459, 0.0783834, -0.00491513, 0.218787, -0.00188611, -0.0784061, 0, 0.204323, 41.5373, -0.612061, 4.68988, 0.189393, 0.0917144, -0.193263, -0.0667214, 0.270572, 0.0630164, 0.20325, 0.00335993, 0.200774, 39.5888, -6.54131, -48.6881, 0.00883071, 0.300392, -0.0316945, -0.127909, 0.0324436, 0.271854, 0.273641, 0.00547123, 0.128097, 48.9901, -38.1722, -68.9803, -0.170968, 0.021558, 0.23261, -0.000260571, 0.288233, -0.0269045, -0.233606, -0.016099, -0.170208, 105.296, -79.897, -210.161, -0.180924, 0.0362571, -0.189308, 0.0250507, 0.26186, 0.0262115, 0.191114, 0, -0.18265, 133.311, -10.9038, 0.0947154, 0.190397, 0.0451688, 0.296169, -0.0231971, 0.352087, -0.0387842, -0.298694, 0.0014484, 0.1918, 74.2344, -24.1098, -36.558, -0.124525, 0.107124, -0.336888, 0.0349842, 0.359159, 0.101275, 0.351775, 0.00220243, -0.129327, 7.305, -4.0618, -202.936, 0.268257, 0.000631845, 0.195573, -0.000424802, 0.33198, -0.000489862, -0.195574, 0.000145577, 0.268257, 144.831, -75.8737, -131.885, 0.00827772, 0.0306869, 0.264465, 0.03113, 0.262666, -0.0314525, -0.264413, 0.031885, 0.00457636, 198.713, -32.154, -46.6094, -0.219191, -0.026284, -0.311726, -0.0189838, 0.381046, -0.0187803, 0.312256, 0.00471563, -0.219961, 257.83, -71.9296, -128.104, 0.374303, 0.0275193, -0.0203068, -0.0296903, 0.372233, -0.0428215, 0.0169755, 0.0442479, 0.372863, 64.0213, -72.6612, -176.063, 0.052332, 0.018841, -0.199404, -0.0123124, 0.206011, 0.0162339, 0.199913, 0.0077559, 0.0531985, 206.432, -35.6713, -8.36422, -0.0915619, -0.0152257, 0.207167, -0.0160293, 0.226242, 0.00954317, -0.207106, -0.010779, -0.0923273, 223.819, -51.668, -114.905, 0.22308, -0.0207631, -0.0960524, 0.0171299, 0.242831, -0.0127076, 0.0967664, 0.00487946, 0.223684, 221.323, -74.7164, -140.115, -0.353686, 0.00607111, -0.158357, 0.0169184, 0.386515, -0.0229685, 0.157568, -0.0278734, -0.352992, 98.2878, -79.4989, -199.249, 0.0872232, -0.00853979, -0.317402, -0.0223562, 0.328178, -0.0149733, 0.316729, 0.0255161, 0.0863517, 331.97, -37.9882, -119.354, 0.139181, 0.0550551, 0.285858, -0.0126188, 0.317693, -0.0550423, -0.290838, 0.0125628, 0.139186, 164.945, -44.3166, -104.954, 0.352659, 0.000984744, 0.047314, -0.00101844, 0.355819, 0.000185396, -0.0473133, -0.000319173, 0.352661, 162.401, -75.9176, -176.766, 0.229704, -0.0307484, 0.0426896, 0.0282705, 0.233403, 0.0159971, -0.0443694, -0.010472, 0.2312, 249.76, -32.5548, -100.604, -0.0481596, 0.000703885, -0.249735, 0.000357298, 0.254336, 0.000647951, 0.249735, -0.000228141, -0.0481604, 150.038, -75.8781, -171.306, 0.243009, 0.01192, 0.0820374, -0.00229663, 0.254962, -0.0302428, -0.0828671, 0.0278894, 0.241414, 205.42, -30.5391, -69.9345, -0.297117, 0.000382699, -0.0757734, -0.0035017, 0.306227, 0.0152772, 0.0756934, 0.0156687, -0.296724, 291.398, -74.891, -145.138, 0.288966, 0.0360828, 0.0196735, -0.0364629, 0.289553, 0.00450873, -0.0189596, -0.00692155, 0.291176, 2.656, -2.91748, -138.42, 0.333331, 0.0167441, -0.136731, -0.0302835, 0.358148, -0.029968, 0.134382, 0.0391765, 0.332403, 205.578, -30.151, -73.5502, -0.0937341, -0.00103841, -0.222911, 0.0877707, 0.222111, -0.0379422, 0.204907, -0.095615, -0.0857179, 324.2, -40.3488, -140.404, 0.380472, 0.00922482, -0.0473355, -0.00915424, 0.383406, 0.0011389, 0.0473492, 0, 0.380583, 63.2563, -1.1347, 65.0206, -0.10993, 0.165731, -0.0842954, 0.0863007, 0.132217, 0.147404, 0.164696, 0.0413394, -0.133505, 140.599, -12.9088, 46.2608, -0.0248681, 0.000900731, 0.333225, 0.000184794, 0.334152, -0.000889445, -0.333226, 0.000118087, -0.0248685, 184.037, -25.9099, -78.444, -0.390698, -0.0283624, 0.0196566, -0.0293106, 0.390666, -0.0188942, -0.0182125, -0.0202898, -0.391271, 103.452, -72.3127, -89.1966, 0.317451, 0.107695, 0.172059, -0.0935794, 0.361074, -0.0533483, -0.180126, 0.00221417, 0.330949, 4.14654, -3.15919, -196.503, 0.360481, -0.024238, -0.00779312, 0.0245766, 0.360157, 0.0166707, 0.00664865, -0.0171592, 0.36091, 209.771, -52.7827, -118.458, -0.0315156, 0.00181284, 0.234275, 0.00552384, 0.236326, -0.00108562, -0.234217, 0.00532963, -0.0315491, 227.937, -31.2096, -54.1457, 0.111422, -0.00194061, 0.241233, -0.0188414, 0.264839, 0.010833, -0.240504, -0.0216469, 0.110911, 130.838, -78.7143, -188.958, 0.090016, 0.0534478, -0.302787, -0.0536043, 0.313393, 0.0393838, 0.30276, 0.0395959, 0.0969972, 41.7303, -71.7903, -153.009, -0.0743874, -0.00747084, 0.308876, 0.00405088, 0.317651, 0.00865867, -0.30894, 0.00596395, -0.0742585, 86.1666, -79.6247, -219.881, -0.145581, 0.0101565, 0.255617, 0.000714392, 0.294125, -0.0112796, -0.255818, -0.00495847, -0.145498, 70.6918, -73.4298, -97.5366, 0.00918439, 0.256242, 0.221723, -0.0833971, 0.216691, -0.246972, -0.32843, -0.047858, 0.0689133, 17.6928, -72.2185, -80.5661, -0.345853, 0.000536826, 0.045798, 0.000634824, 0.348871, 0.000704674, -0.0457967, 0.000781911, -0.345852, 202.252, -25.9572, -77.9489, 0.309188, 0.0428288, -0.00915461, -0.0428101, 0.309323, 0.00126754, 0.00924194, 0, 0.312137, 133.139, -10.88, 14.2734, 0.067639, -0.0238944, 0.322552, -0.0118762, 0.329124, 0.0268717, -0.323218, -0.0170936, 0.0665123, 99.5443, -73.2908, -102.568, 0.0551237, -0.0274152, -0.219576, 0.0131427, 0.226292, -0.0249544, 0.22089, -0.00662256, 0.0562805, 187.081, -37.1213, -98.1609, -0.191692, 0.0408193, 0.0745118, 0.0389983, 0.205648, -0.0123303, -0.0754808, 0.00258594, -0.195602, 258.001, -34.4388, -78.5306, -0.0936714, 0.0318802, -0.277785, 0.0101867, 0.293153, 0.0302089, 0.279423, 0, -0.0942236, 122.75, -4.69458, 45.6937, -0.070163, 0.176012, -0.30459, -0.0297485, 0.306508, 0.183973, 0.350529, 0.0612438, -0.0453544, 164.922, -22.5488, 26.7454, -0.23843, 0.00099205, -0.280351, 0.000543631, 0.368029, 0.000839967, 0.280352, 0.000130059, -0.23843, 197.416, -25.9461, -78.7307, -0.270517, 0.00868918, -0.23926, 0.00650868, 0.361143, 0.00575664, 0.239329, 0, -0.270595, 66.6664, -1.21677, 59.958, -0.276, 0.00678449, -0.0577665, 0.0066406, 0.28198, 0.00138987, 0.0577832, 0, -0.276079, 80.9187, -1.55972, 58.7848, 0.29345, 0, -0.106651, 0, 0.312229, 0, 0.106651, 0, 0.29345, 34.2604, -0.453491, 52.8049, -0.151638, 0.000401605, 0.212424, 0.00070943, 0.260994, 1.29944e-05, -0.212423, 0.000584956, -0.151639, 204.685, -25.9638, -76.6611, -0.0769496, 0.00624192, -0.286854, -0.013278, 0.296596, 0.0100157, 0.286615, 0.0154162, -0.0765499, 170.191, -31.3718, -41.436, -0.194175, 0.0989275, -0.268906, 0.0561924, 0.331678, 0.0814444, 0.280962, 0.00203391, -0.202132, 0.489115, -2.31007, -157.082, -0.317969, 0, -0.00659953, 0, 0.318038, 0, 0.00659953, 0, -0.317969, 25.7641, -0.453491, 7.2071, -0.101586, 0.0624299, -0.264171, 0.0216723, 0.283029, 0.0585525, 0.270581, 0.000769102, -0.103869, 288.22, -41.0027, -72.6624, -0.0770047, 0.0105901, 0.342821, -0.00874809, 0.35118, -0.0128134, -0.342873, -0.0113384, -0.0766661, 86.7577, -75.0546, -136.657, 0.0524806, 0.00619136, 0.251892, -0.00126282, 0.257301, -0.0060612, -0.251965, 0, 0.0524958, 56.6169, -0.97493, 24.3022, 0.381463, 0.00927513, 0.0556191, -0.00917809, 0.385497, -0.00133821, -0.0556352, 0, 0.381574, 65.1816, -1.18103, 63.777, 0.0448196, -0.000641153, 0.244006, -0.000241333, 0.248088, 0.000696207, -0.244007, -0.000363137, 0.0448188, 134.076, -25.8925, -53.1571, -0.340856, -0.0274437, -0.157109, -0.0222229, 0.375267, -0.0173375, 0.157933, -0.00642574, -0.341519, 235.822, -50.6999, -110.178, 0.24298, 0.0374337, -0.11855, -0.033643, 0.270358, 0.0164144, 0.119681, 0, 0.245298, 132.758, -10.8272, 18.7248, 0.18872, 0.000602931, -0.108844, -0.000424655, 0.217858, 0.000470514, 0.108845, -0.00019542, 0.18872, 184.293, -75.9778, -175.797, 0.200683, 0.0220209, -0.0270059, -0.0218241, 0.202492, 0.00293688, 0.0271651, 0, 0.201866, 108.312, -3.12437, 53.614, -0.172982, 0.0267622, 0.152725, 0.0384433, 0.229073, 0.00340147, -0.150211, 0.0278071, -0.175007, 170.199, -32.8474, -13.4548, -0.229083, 0.00605978, 0.0748907, -0.0133382, 0.233208, -0.0596702, -0.0739421, -0.0608417, -0.221258, 147.066, -80.5301, -196.954, -0.252106, 0.0365451, -0.189037, 0.00609273, 0.312811, 0.0523479, 0.192441, 0.037972, -0.249304, 217.17, -33.9077, -49.9256, 0.303454, -0.0234891, 0.113477, 0.0160704, 0.323541, 0.0239967, -0.114763, -0.0168036, 0.303414, 121.736, -71.3884, -96.9597, -0.0508327, 0.00527222, -0.213149, 0.00122305, 0.219126, 0.0051284, 0.21321, 0, -0.0508474, 48.6766, -0.783844, 63.3217, 0.148327, 0.115851, 0.307943, -0.0462327, 0.341778, -0.106311, -0.32575, 0.00424416, 0.155308, 39.047, -6.13391, -66.7051, -0.0975125, 0.00618438, -0.277632, -0.0123676, 0.293862, 0.0108898, 0.277425, 0.0152741, -0.0970997, 185.183, -30.9445, -55.7264, -0.215072, 0.0080364, 0.089005, 0.00592343, 0.232729, -0.0067, -0.0891705, -0.00392343, -0.215118, 62.0076, -72.8288, -79.6764, -0.278366, 0.00906809, 0.254029, 0.00669823, 0.376853, -0.00611261, -0.254102, 0, -0.278447, 79.4136, -1.52351, 15.8868, -0.123296, 0, 0.247157, 0, 0.276204, 0, -0.247157, 0, -0.123296, 8.61904, -0.453491, 55.5361, 0.250798, 0.00779437, 0.205051, -0.00603425, 0.323953, -0.00493357, -0.20511, 0, 0.25087, 72.9903, -1.36894, 36.6224, 0.117778, -0.0155355, -0.179005, 0.0178364, 0.213988, -0.006836, 0.17879, -0.0111138, 0.118601, 103.552, -72.3794, -90.6219, 0.211566, 0.0444637, 0.281675, -0.0204302, 0.352194, -0.0402503, -0.28443, 0.00777562, 0.212408, 313.096, -40.2707, -141.769, 0.273417, 0.000552392, 0.0973606, -0.000477691, 0.290234, -0.000305199, -0.0973609, 0.000127271, 0.273417, 166.997, -75.9163, -132.802, -0.395031, 0, -0.0485869, 0, 0.398008, 0, 0.0485869, 0, -0.395031, 23.4141, -0.453491, 11.1851, 0.204235, 0.00595178, -0.107377, -0.0018183, 0.230623, 0.00932467, 0.107527, -0.00740487, 0.204109, 94.7556, -75.8641, -155.008, -0.20388, 0, -0.164013, 0, 0.261662, 0, 0.164013, 0, -0.20388, 12.4654, -0.453506, -19.8086, 0.325475, 0.00939086, -0.215419, -0.00783099, 0.390307, 0.00518303, 0.215482, 0, 0.325569, 83.3, -1.61703, 25.0889, -0.270052, 0.0299133, -0.0522813, 0.029368, 0.275066, 0.00568557, 0.0525896, 0, -0.271644, 115.365, -3.89145, 50.9623, -0.254971, 0.0188364, 0.0286909, 0.0219832, 0.254786, 0.0280863, -0.0263575, 0.0302868, -0.254118, 74.5497, -73.5478, -175.152, 0.180551, 0.00168767, -0.160552, 0.0128373, 0.240678, 0.0169663, 0.160047, -0.0212086, 0.17976, 103.74, -78.6679, -187.761, 0.227453, 0.00676643, 0.0465999, -0.0067151, 0.232177, -0.000936515, -0.0466073, -0.000430136, 0.227551, 310.092, -38.7087, -154.594, 0.172017, -0.0070446, 0.294079, -0.0162837, 0.339918, 0.0176676, -0.293712, -0.0229712, 0.171252, 113.258, -80.599, -213.96, -0.219562, 0.112339, -0.248289, 0.0711573, 0.331418, 0.087027, 0.263067, 0.00411552, -0.230768, 42.9667, -7.41849, -70.2558, 0.0556005, -0.000982936, -0.232476, -0.000372844, 0.239031, -0.00109983, 0.232477, 0.000618439, 0.0555983, 115.714, -75.9053, -155.645, -0.0489485, 0.0328005, -0.246443, 0.00644068, 0.251257, 0.032162, 0.248533, -5.12139e-05, -0.0493704, 80.2365, -24.8791, -50.8834, -0.232006, -0.01142, -0.106925, -0.00657339, 0.255299, -0.013004, 0.107332, -0.00904972, -0.231922, 54.4733, 1.18681, 3.39376, 0.142044, -0.00283112, -0.271018, 0.0504055, 0.30092, 0.0232747, 0.266304, -0.0554474, 0.140153, 19.3252, -75.1552, -86.6619, 0.15994, 0.0109977, 0.342504, 0.00216531, 0.377932, -0.0131465, -0.342673, 0.0075212, 0.159777, 168.379, -80.725, -220.393, -0.288072, -0.00274179, 0.12914, -0.00319307, 0.315689, -0.000420317, -0.129129, -0.00168965, -0.288085, 252.568, -44.6688, -109.67, 0.345647, 0.00952726, -0.193114, -0.00831719, 0.395935, 0.00464683, 0.19317, 0, 0.345747, 50.6078, -0.830322, 11.1655, 0.0667047, -0.0286653, -0.347432, 7.85347e-05, 0.353736, -0.0291704, 0.348612, 0.00540524, 0.0664854, 236.672, -73.3182, -145.547, -0.011805, 0.0365425, -0.335817, 0.00128379, 0.336025, 0.0365199, 0.337797, 0, -0.0118746, 104.514, -2.71141, 61.9451, 0.304754, -0.122838, -0.0794373, 0.142502, 0.29077, 0.0970593, 0.0330589, -0.120987, 0.313917, 295.493, -52.3135, -138.998, -0.2014, 0, 0.170217, 0, 0.263696, 0, -0.170217, 0, -0.2014, 5.53678, -0.453491, 51.4051, -0.019295, 0.0113198, 0.388599, 0.00829647, 0.389, -0.0109196, -0.388675, 0.00774147, -0.0195243, 135.015, -80.2146, -197.254, -0.22162, 0, -0.193273, 0, 0.294057, 0, 0.193273, 0, -0.22162, 25.7067, -0.453491, 17.507, -0.208776, 0.0243358, -0.0210378, 0.0214845, 0.208304, 0.0277493, 0.0239423, 0.0252859, -0.208349, 193.641, -32.084, -42.3048, 0.240298, -0.000686205, -0.0611139, 0.000737362, 0.247947, 0.000115258, 0.0611134, -0.000293445, 0.240299, 143.786, -25.8881, -68.2438, -0.158176, 0.00989844, 0.349633, -0.0071461, 0.38355, -0.0140916, -0.3497, -0.0123151, -0.157857, 107.776, -75.863, -144.51, 0.00409284, 0.0088879, 0.223149, -0.00876197, 0.223021, -0.0087221, -0.223154, -0.00859374, 0.00443522, 65.7111, -74.0438, -129.14, 0.183319, 0.0715919, -0.327819, -0.0814367, 0.371876, 0.0356734, 0.325513, 0.0527175, 0.193542, 203.917, -77.3079, -185.276, 0.356763, -0.00656739, 0.0887666, 0.00616119, 0.36764, 0.00243721, -0.0887957, -0.000877342, 0.356815, 45.6361, -73.0527, -107.82, -0.00918564, 0.00609376, 0.236067, -0.00734148, 0.236124, -0.00638089, -0.236032, -0.00758151, -0.00898855, 101.526, -75.2873, -131.602, -0.167702, 0.0413574, 0.177824, 0.0507583, 0.2425, -0.00853036, -0.175372, 0.030639, -0.172516, 63.7109, -71.942, -181.479, -0.339437, 0.0111943, -0.196221, 0.0120202, 0.392044, 0.00157246, 0.196172, -0.00465253, -0.339618, 173.905, -53.3074, -116.917, 0.28065, 0.00793541, -0.126018, -0.00318993, 0.307486, 0.0122584, 0.126227, -0.0098728, 0.280494, 103.28, -75.7464, -144.49, -0.192056, 0.00599169, 0.141081, -0.0309534, 0.230587, -0.0519305, -0.137774, -0.0601581, -0.184999, 145.702, -79.6345, -193.657, 0.211357, 0, 0.0945412, 0, 0.231538, 0, -0.0945412, 0, 0.211357, 11.9813, -0.453506, -18.9685, 0.365107, 0.000725476, 0.109501, -0.000646878, 0.381174, -0.000368514, -0.109502, 0.000167149, 0.365108, 172.309, -75.9231, -140.587, -0.0784855, 0.063258, 0.284116, 0.0145365, 0.294748, -0.0616096, -0.290709, -0.00233995, -0.079786, 44.6594, -7.78206, -52.3988, 0.243306, -0.0211567, -0.0988266, 0.0229664, 0.262459, 0.00035507, 0.0984218, -0.00894278, 0.244224, 246.494, -74.4663, -174.431, 0.317422, 0.0442273, 0.124331, -0.0225647, 0.3373, -0.0623763, -0.13002, 0.0494359, 0.31436, 154.484, -34.8783, -16.1129, 0.0692251, -0.00389584, -0.279403, -0.00306169, 0.287821, -0.00477179, 0.279413, 0.00411902, 0.0691702, 129.116, -13.9797, -24.5723, 0.0972941, 0.0456216, -0.381146, -0.0574396, 0.390502, 0.032079, 0.379545, 0.0474029, 0.102559, 186.563, -34.1657, -18.3435, 0.299245, -0.0421033, -0.0831746, 0.0448207, 0.31018, 0.0042415, 0.0817423, -0.0159436, 0.302163, 203.111, -76.5768, -196.431, 0.0817369, 0.0328403, -0.271109, -0.0422995, 0.281099, 0.0212975, 0.269795, 0.0341226, 0.0854741, 201.869, -31.8471, -52.1755, 0.199445, 0.00371366, 0.162987, -0.0446732, 0.248919, 0.0489944, -0.156789, -0.0661994, 0.193369, 138.936, -73.5402, -105.469, -0.26251, 0.122527, -0.0645273, 0.109139, 0.268182, 0.0652331, 0.0852364, 0.033969, -0.282257, 142.25, -14.6842, 47.7337, 0.0117958, 0.116257, 0.34741, -0.0802253, 0.339973, -0.111044, -0.357454, -0.0724655, 0.0363866, 278.221, -38.8018, -79.613, -0.0351441, -0.00150625, -0.20323, 0.0163007, 0.205561, -0.00434236, 0.202581, -0.0168017, -0.0349073, 136.494, -78.6428, -188.59, 0.0550258, -0.216522, 0.0622772, -0.0895778, 0.0377974, 0.210559, -0.206727, -0.0740111, -0.0746617, 139.485, -42.6365, -93.9357, -0.109674, 0, 0.20556, 0, 0.232988, 0, -0.20556, 0, -0.109674, 28.9229, -0.453491, 48.7547, 0.194775, 0.0309404, 0.207386, -0.0211817, 0.284511, -0.0225532, -0.208609, 0, 0.195923, 107.932, -3.08304, 12.8724, -0.311939, 0.00546627, 0.156314, -0.00637036, 0.348008, -0.0248824, -0.15628, -0.0250965, -0.310993, 94.8643, -79.2007, -195.86, -0.208994, 0.00763011, 0.238473, 0.00502896, 0.317093, -0.0057383, -0.238542, 0, -0.209055, 43.6894, -0.663849, 24.1856, -0.228467, 0.0140168, -0.132083, 0.0101835, 0.263871, 0.0103877, 0.132434, 0.00389066, -0.228661, 24.3242, -72.0856, -102.699, 0.264473, 0, -0.21127, 0, 0.338498, 0, 0.21127, 0, 0.264473, 29.106, -0.453491, 30.3591, 0.207793, 0.0278156, 0.081693, -0.0278468, 0.223211, -0.00517029, -0.0816824, -0.00533571, 0.209583, 9.32094, -2.74991, -96.6647, 0.23631, 0.00217572, -0.156988, -0.0053514, 0.283631, -0.00412445, 0.156911, 0.00639647, 0.236284, 218.581, -30.8821, -65.4836, 0.136081, -0.0207101, -0.200429, 0.00758951, 0.242211, -0.0198744, 0.201353, 0.00486699, 0.136205, 240.964, -73.3163, -126.213, -0.113956, 0.00486699, 0.167106, 0.00274208, 0.202263, -0.00402102, -0.167154, 0, -0.113989, 41.1597, -0.602966, 10.5124, 0.303449, 0.0074797, 0.0673911, -0.0073018, 0.310842, -0.00162161, -0.0674106, 0, 0.303537, 44.3824, -0.680511, 41.8541, -0.244276, -0.00207698, 0.145635, -0.0136424, 0.283449, -0.0188402, -0.145009, -0.023168, -0.243557, 127.157, -77.9815, -179.662, -0.0761583, 0.00171581, -0.187542, -0.0242187, 0.20063, 0.0116704, 0.18598, 0.0268291, -0.0752783, 293.268, -40.5291, -80.1015, -0.235662, 0.000513619, 0.131488, 0.000506185, 0.269862, -0.000146915, -0.131488, 0.000118337, -0.235662, 149.997, -75.8859, -127.106, 0.190601, 0.000387808, 0.0720366, -0.000331175, 0.20376, -0.000220685, -0.0720369, 8.93509e-05, 0.190601, 130.766, -75.8343, -159.309, 0.227291, 0.0642075, -0.140297, -0.053633, 0.267097, 0.035349, 0.14467, -0.00185629, 0.233525, 43.0791, -7.48451, -61.9138, 0.179315, 0.0105175, -0.246253, -0.00203688, 0.304579, 0.0115253, 0.246469, -0.00513471, 0.179253, 73.8092, -73.3818, -88.3027, 0.217944, -0.0239971, 0.309462, -0.0067027, 0.377678, 0.0340074, -0.310319, -0.0250114, 0.216608, 252.429, -73.6743, -166.903, 0.27936, 0.0180679, 0.1941, -0.0119707, 0.340134, -0.0144327, -0.194571, 0.00501513, 0.279571, 28.1004, -72.1232, -113.755, -0.138193, 0.0545298, 0.237459, 0.0304697, 0.274722, -0.0453545, -0.241727, 0.00345452, -0.14147, 262.338, -35.382, -71.9912, 0.0117672, -0.00144637, 0.351533, 0.000957904, 0.351729, 0.00141511, -0.351535, 0.000910017, 0.011771, 114.17, -75.9402, -144.644, 0.191954, 0.00248845, -0.300116, 0.0250092, 0.354877, 0.0189384, 0.299082, -0.0312719, 0.191033, 110.732, -77.7244, -176.499, 0.0474305, 0.0373421, -0.318466, -0.0440947, 0.319632, 0.0309116, 0.317601, 0.0388, 0.0518513, 202.703, -31.8591, -52.8791, 0.207207, 0, -0.332395, 0, 0.39169, 0, 0.332395, 0, 0.207207, 11.6543, -0.453506, -43.5829, 0.109461, -0.0150727, 0.189351, -0.145551, 0.133764, 0.094789, -0.122049, -0.17304, 0.0567806, 78.5275, -30.769, -52.1447, 0.226053, 0.0175008, 0.274059, -0.00923315, 0.35525, -0.0150697, -0.274462, 0.00246317, 0.226229, 1.42067, -0.0675201, 3.13524, 0.220839, 0.0377209, 0.285036, -0.0574565, 0.357951, -0.00285437, -0.281722, -0.0434342, 0.224019, 208.133, -78.3743, -210.59, 0.327263, 0.0086064, 0.144396, -0.00787401, 0.357703, -0.00347419, -0.144438, 0, 0.327358, 90.5766, -1.79214, 25.5357, -0.183613, 0.00538324, 0.127811, 0.00441822, 0.223717, -0.00307548, -0.127848, 0, -0.183666, 40.4858, -0.586746, 25.2999, -0.294396, 0.0878912, -0.0129863, 0.0877211, 0.294676, 0.00575705, 0.0140898, 0.00180701, -0.307181, 8.9458, -4.5199, -208.04, -0.0201715, 0.0171586, 0.232938, 0.00141652, 0.23381, -0.0171002, -0.233565, -6.38692e-05, -0.0202211, 182.531, -33.8796, 0.174725, 0.0757091, 0.048618, -0.338341, -0.014335, 0.346688, 0.0466096, 0.341516, 0.00377424, 0.0769618, 240.906, -32.1006, -72.0291, -0.0382544, -0.0164456, 0.236138, -0.0150707, 0.238886, 0.0141955, -0.23623, -0.012577, -0.0391452, 88.6292, -73.4526, -90.8751, 0.128726, -0.000540847, -0.165003, 0.000574198, 0.209276, -0.000238008, 0.165003, -0.000306326, 0.128727, 133.512, -25.8984, -56.1678, 0.351559, 0.0408332, 0.0191545, -0.0381519, 0.349515, -0.0448539, -0.0240557, 0.0424275, 0.351069, 217.853, -33.2277, -56.1855, 0.143512, 0.00257315, 0.216181, -0.000147269, 0.259476, -0.00299071, -0.216196, 0.00153132, 0.143504, 256.898, -44.7076, -99.7597, -0.255441, -0.0244092, -0.219306, -0.00709058, 0.336215, -0.0291624, 0.220547, -0.0174618, -0.254942, 101.674, -72.5766, -91.7921, 0.115482, 0.000596874, 0.182147, -0.000482987, 0.215669, -0.00040051, -0.182147, -0.000193457, 0.115482, 144.295, -75.8631, -172.474, -0.0124206, 0.0638, 0.190358, -0.0377813, 0.186572, -0.0649961, -0.197178, -0.0397679, 0.000462862, 267.282, -36.7417, -87.4982, -0.285819, 0.00691732, -0.0307761, 0.00687757, 0.287471, 0.000740556, 0.030785, 0, -0.285902, 83.7762, -1.62849, 5.13965, 0.274169, 0.00199844, -0.0900182, -0.00422748, 0.288472, -0.00647146, 0.0899411, 0.00746711, 0.2741, 93.6115, -1.12096, -3.18101, -0.204156, -0.000941029, 0.103386, -0.000572029, 0.22884, 0.000953345, -0.103388, 0.000592072, -0.204156, 113.409, -75.9373, -146.96, -0.191508, 0.049325, -0.263827, 0.0474181, 0.32522, 0.026383, 0.264176, -0.0226183, -0.19599, 86.3486, -9.37276, -14.3695, 0.209043, 0.0182421, 0.1345, -0.0153778, 0.248574, -0.00981328, -0.134857, -6.79022e-05, 0.209607, 183.994, -33.9884, -4.92006, 0.339406, 0.00138951, 0.163131, -0.00274334, 0.376559, 0.00250028, -0.163114, -0.00344189, 0.3394, 102.924, -25.9454, -50.4232, 0.173041, 0.018788, 0.133867, -0.0103487, 0.218654, -0.0173107, -0.134782, 0.00733261, 0.173195, 230.278, -36.9916, -31.0789, 0.0684387, 0.010032, -0.393085, 0.0975972, 0.386076, 0.0268454, 0.380909, -0.100724, 0.0637481, 162.321, -79.809, -192.671, 0.266477, 0.024274, 0.186143, -0.0302784, 0.324547, 0.00102301, -0.185261, -0.0181273, 0.267578, 107.719, -79.7042, -203.466, 0.0130102, 0, -0.308178, 0, 0.308453, 0, 0.308178, 0, 0.0130102, 13.7561, -0.453491, 34.8388, -0.236429, 0.00621203, -0.10374, 0.00568852, 0.258187, 0.00249601, 0.10377, 0, -0.236497, 48.0618, -0.769073, 60.1962, -0.158031, -0.0201194, 0.193374, -0.0193305, 0.24959, 0.0101708, -0.193454, -0.00850429, -0.158982, 222.246, -76.8659, -187.488, -0.017058, -0.00221705, -0.339857, 0.00389046, 0.340261, -0.00241496, 0.339842, -0.00400654, -0.0170311, 258.802, -31.7466, -93.0315, 0.361423, 0.00918547, -0.0884292, 0.00094481, 0.369788, 0.0422728, 0.0889, -0.0412736, 0.35906, 132.56, -5.6004, -2.22395, -0.210413, 0.0288903, 0.332553, 0.0546995, 0.390778, 0.000660877, -0.329293, 0.0464523, -0.212386, 76.1905, -73.713, -174.783, -0.0493061, 0.000883528, 0.315416, -0.000146475, 0.319246, -0.000917154, -0.315417, -0.000286366, -0.0493055, 173.826, -75.9437, -170.412, -0.369586, 0.0846468, 0.103303, 0.0818094, 0.383751, -0.0217578, -0.105564, 0.0010428, -0.378531, 267.058, -36.3109, -81.3893, -0.313977, -0.0138449, 0.220445, -0.0356138, 0.381292, -0.0267775, -0.21799, -0.0423521, -0.313139, 245.529, -31.3535, -23.2184, 0.217896, -0.00906853, 0.125165, -0.00601131, 0.24975, 0.0285599, -0.125349, -0.0277411, 0.216206, 252.463, -31.9427, -30.7892, 0.0715031, 0.0214152, 0.223147, 0.00189996, 0.234158, -0.0230806, -0.224165, 0.00881557, 0.070983, 210.02, -35.7281, -15.5717, 0.283814, -0.00163314, -0.277808, 0.000448316, 0.397148, -0.00187669, 0.277812, 0.00102753, 0.283813, 133.969, -75.8982, -129.4, 0.0716313, 0.000542613, 0.34528, 0.00066364, 0.352631, -0.000691843, -0.34528, 0.000790339, 0.07163, 200.424, -25.93, -88.8671, 0.223174, -0.0220923, 0.130301, 0.0217019, 0.258376, 0.00663688, -0.130367, 0.00519181, 0.224167, 211.913, -75.7933, -126.562, -0.241866, 0.00963484, 0.226207, 0.0115382, 0.331097, -0.0017655, -0.226117, 0.00658913, -0.242052, 129.933, -79.9231, -204.468, -0.0682717, 0.128522, -0.153492, 0.0726443, 0.167023, 0.107541, 0.186549, -0.0180051, -0.0980512, 46.9798, -10.2397, -19.1591, -0.00112478, -0.0190697, 0.26302, -0.0137592, 0.262668, 0.0189854, -0.263351, -0.0136421, -0.00211529, 122.408, -70.8513, -87.5575, 0.0227911, 0.00546912, 0.226141, -0.000548414, 0.227286, -0.00544155, -0.226206, 0, 0.0227977, 45.719, -0.712677, 13.9487, 0.36935, -0.0302509, 0.0194572, 0.0303692, 0.36985, -0.00146904, -0.019272, 0.00305442, 0.370584, 229.524, -76.3375, -194.31, 0.0618, -0.00122471, 0.303903, 0.00123493, 0.310122, 0.000998646, -0.303903, 0.00101115, 0.0618041, 225.634, -25.8561, -84.5566, -0.224304, 0.00194343, 0.047454, 0.00817457, 0.227246, 0.0293327, -0.046785, 0.0303884, -0.222387, 294.309, -40.4996, -80.3882, 0.220108, 0.0142656, 0.238452, -0.00332334, 0.324395, -0.0163395, -0.238855, 0.0086324, 0.219964, 245.644, -32.175, -46.5478, 0.0831176, 0.00282496, -0.35886, -0.00872848, 0.368266, 0.000877348, 0.358765, 0.00830517, 0.083161, 217.769, -30.9305, -63.0626, -0.205732, -0.0283373, 0.259911, -0.0123432, 0.331414, 0.0263628, -0.26116, 0.00665944, -0.205994, 211.449, -75.4517, -145.537, -0.130187, -0.0269204, -0.347733, 0.0086569, 0.370805, -0.0319476, 0.348666, -0.0192583, -0.129046, 107.01, -72.2387, -92.7471, -0.0271263, 0.0235248, 0.201019, 0.0275092, 0.201362, -0.0198528, -0.200512, 0.0244433, -0.0299185, 217.35, -34.1352, -48.2257, -0.336257, 0.0428673, 0.2057, 0.0365677, 0.394184, -0.0223697, -0.206912, 0, -0.338239, 108.616, -3.15747, 24.6538, 0.183286, 0.033814, 0.161391, -0.0253778, 0.244215, -0.0223462, -0.162931, 0, 0.185035, 137.576, -11.4942, 23.2376, 0.118224, 0.000385785, -0.164648, -0.000297212, 0.202696, 0.000261526, 0.164648, 8.88846e-05, 0.118224, 165.218, -75.9147, -128.551, -0.252735, 0.130822, -0.139392, 0.0944151, 0.286338, 0.0975484, 0.166224, 0.0362688, -0.267346, 156.208, -18.1024, 24.3727, 0.145282, 0.0489349, 0.359455, -0.0103356, 0.38761, -0.0485905, -0.362624, 0.00855753, 0.145397, 298.002, -38.4521, -137.827, -0.292776, -0.0485139, -0.205814, -0.0289745, 0.357407, -0.0430299, 0.20946, -0.0183711, -0.293632, 196.806, -78.5462, -218.094, -0.0468883, -0.00262547, -0.356426, 0.0286955, 0.358302, -0.00641422, 0.355279, -0.0292862, -0.0465217, 118.748, -79.2699, -194.671, -0.00437867, 0.233584, 0.220084, 0.104076, 0.209243, -0.220007, -0.30359, 0.0683637, -0.0785969, 177.475, -31.7489, 22.5124, 0.154787, 0.0295919, -0.14737, -0.0214318, 0.213722, 0.0204049, 0.148776, 0, 0.156264, 130.379, -10.4978, 32.4783, 0.00397328, 0, 0.298202, 0, 0.298229, 0, -0.298202, 0, 0.00397328, 34.734, -0.453506, -24.9226, 0.0794368, -0.00113788, 0.265064, 0.00101245, 0.276711, 0.000884454, -0.265065, 0.000715925, 0.0794401, 102.36, -75.9396, -163.65, 0.0155555, 0.0155264, 0.207331, -0.0127543, 0.20759, -0.0145889, -0.20752, -0.0115947, 0.016438, 102.407, -80.0058, -215.979, -0.0039523, -0.0186678, 0.257449, -0.0136742, 0.257133, 0.018435, -0.257762, -0.0133546, -0.00492546, 94.7891, -73.8526, -106.737, 0.308889, -0.027874, 0.223396, 0.0187479, 0.381151, 0.021635, -0.224347, -0.00652649, 0.309388, 196.31, -53.5652, -108.764, 0.200968, 0.0311876, 0.20459, -0.0218552, 0.286784, -0.022249, -0.205796, 0, 0.202153, 122.971, -4.71855, 15.2294, -0.310421, -0.00348238, -0.160144, -0.00172533, 0.349283, -0.0042509, 0.160172, -0.00298663, -0.310411, 13.1868, -0.265594, -5.47268, -0.0112653, -0.0242445, 0.230872, -0.00838276, 0.231035, 0.0238526, -0.23199, -0.00717096, -0.0120729, 223.352, -76.0557, -173.675, -0.200969, -0.000223964, 0.200768, 3.49741e-05, 0.284071, 0.000351901, -0.200769, 0.000273674, -0.200969, 164.975, -25.8931, -82.555, -0.270464, 0.0580596, -0.13118, 0.0616814, 0.299824, 0.00552735, 0.129516, -0.0215461, -0.27657, 261.157, -44.7886, -98.1009, 0.0368451, 0.0037194, 0.275323, 0.068154, 0.269011, -0.0127548, -0.26678, 0.0692374, 0.0347665, 160.45, -52.9795, -116.838, 0.23876, -0.0239961, -0.147598, 0.0174307, 0.280642, -0.0174294, 0.148517, 0.00563922, 0.239329, 241.844, -73.1721, -129.647, 0.396507, 0.0245071, 0.0340008, -0.0224931, 0.397352, -0.024095, -0.0353654, 0.0220434, 0.396533, 18.5127, -71.3926, -119.186, -0.0927931, 0.00565514, -0.376863, -0.00547039, 0.388055, 0.00717004, 0.376866, 0.00702524, -0.0926883, 288.502, -38.7225, -95.7188, 0.371037, 0.111702, 0.0509116, -0.110337, 0.374506, -0.0175588, -0.0538055, 0.00229655, 0.387088, 1.23149, -2.22385, -207.25, 0.108076, -0.000900419, 0.331223, -0.000205518, 0.348409, 0.0010142, -0.331224, -0.000509981, 0.108075, 137.55, -25.8763, -48.3194, -0.318558, -0.0256641, -0.000961824, -0.0256163, 0.318375, -0.0109605, 0.00183833, -0.010848, -0.319402, 251.834, -74.3943, -184.951, -0.361532, 0.00621998, -0.164076, 0.0174524, 0.395993, -0.0234436, 0.163263, -0.0285569, -0.360824, 102.699, -79.4634, -197.797, 0.0469245, 0.306416, -0.0751149, -0.162345, 0.0885673, 0.259875, 0.270513, 0, 0.16899, 35.1741, -1.23291, -27.9936, -0.137449, 0.178318, -0.285276, 0.0117504, 0.310523, 0.188438, 0.336216, 0.0620461, -0.12321, 165.243, -26.8179, 47.1885, 0.0513273, 0.0468924, -0.334759, -0.00710676, 0.338671, 0.0463507, 0.337953, 0, 0.0518169, 139.625, -11.778, 17.6554, 0.192663, 0, 0.267759, 0, 0.32987, 0, -0.267759, 0, 0.192663, 8.88685, -0.453506, -33.0492, 0.227394, 0.00366351, 0.0545356, -0.00747638, 0.233236, 0.0155058, -0.0541447, -0.0168198, 0.226894, 78.4193, -78.7951, -193.818, -0.238447, 0.00705331, 0.0437721, 0.00780731, 0.242384, 0.00347314, -0.043644, 0.00482366, -0.238526, 150.856, -80.4819, -206.986, 0.370751, 0.00779308, 0.00613806, -0.00746283, 0.370302, -0.0193776, -0.0065356, 0.0192472, 0.370326, 192.373, -30.7672, -62.0502, -0.130599, -0.00132377, -0.275579, -0.000659126, 0.304959, -0.00115253, 0.275582, 0.000102053, -0.1306, 321.547, -38.2347, -117.501, -0.150228, -0.0266994, -0.273817, -0.018361, 0.312258, -0.020374, 0.274502, 0.00627452, -0.151216, 207.693, -75.7219, -148.073, -0.217981, 0.0285418, 0.06017, 0.0288448, 0.226078, -0.00274311, -0.0600253, 0.00499127, -0.219825, 319.868, -41.0957, -143.123, -0.363634, -0.00362083, -0.144621, 0.0228989, 0.384859, -0.0672126, 0.142842, -0.0709139, -0.357387, 27.9812, -75.5384, -89.1835, 0.151755, 0.0910984, 0.265068, -0.0435651, 0.305429, -0.0800281, -0.276879, 0.00187295, 0.157873, 8.06542, -4.388, -186.728, 0.0444664, -0.00129611, 0.298535, -0.117867, 0.277232, 0.0187597, -0.274285, -0.119344, 0.0403362, 328.976, -39.8079, -139.2, -0.323921, 0, 0.102653, 0, 0.339797, 0, -0.102653, 0, -0.323921, 10.2811, -0.453491, 64.2427, -0.23031, -0.0178158, -0.0856683, -0.0122206, 0.245397, -0.0181796, 0.0866437, -0.012745, -0.230282, 103.642, -72.7658, -98.1876, 0.0231891, -0.019083, 0.259948, -0.002767, 0.260942, 0.0194028, -0.260633, -0.00446814, 0.0229222, 205.696, -53.0342, -117.838, -0.279176, 0.00836718, 0.165182, 0.00189468, 0.324216, -0.0132207, -0.165383, -0.01041, -0.278988, 105.801, -75.2598, -127.309, -0.255062, 0.000820254, -0.222072, 0.00108283, 0.33819, 5.45708e-06, 0.222071, -0.000706921, -0.255064, 160.319, -25.8585, -64.587, -0.0437522, 0.00613683, -0.251281, 0.00105269, 0.255062, 0.00604587, 0.251354, 0, -0.0437649, 73.9289, -1.39153, 34.4918, -0.303222, 0.0487214, -0.217588, 0.039629, 0.373213, 0.0283429, 0.219426, -7.60723e-05, -0.3058, 83.4496, -25.299, -53.1153, -0.22561, 0.000961646, -0.264268, 0.000861436, 0.347473, 0.000528997, 0.264268, -0.000311686, -0.225611, 178.887, -75.9516, -163.574, -0.148502, 0.0238728, -0.173272, 0.036408, 0.22654, 8.60989e-06, 0.171078, -0.0274887, -0.150409, 207.057, -79.0746, -217.295, 0.0629549, -0.0207925, -0.234935, 0.000643691, 0.243175, -0.0213492, 0.235852, 0.00488636, 0.0627683, 219.608, -74.9053, -138.01, -0.188347, 0.0375559, 0.289461, 0.0204826, 0.345344, -0.0314788, -0.291168, 0, -0.189457, 119.433, -4.33377, 53.6714, -0.182862, 0.00928089, -0.339593, 0.00440015, 0.385696, 0.00817151, 0.339691, 0, -0.182915, 64.6244, -1.16763, 8.59642, 0.315632, -0.0642114, 0.0570039, 0.0508435, 0.314764, 0.0730406, -0.0691917, -0.0616189, 0.313707, 242.894, -30.7331, -2.86774, 0.0759753, 0.0263316, -0.277922, -0.017438, 0.287915, 0.0225115, 0.278621, 0.0108394, 0.0771935, 204.291, -35.348, -11.7522, 0.197188, 0.000498006, -0.171995, -0.000450722, 0.261659, 0.000240883, 0.171995, 0.00011474, 0.197188, 156.271, -75.8999, -122.987, 0.204867, -0.0103983, -0.0492331, 0.0233211, 0.202518, 0.0542705, 0.0445887, -0.0581467, 0.197822, 39.1595, -7.74908, -8.68641, 0.246896, 0.00504508, -0.206746, 0.0110146, 0.321193, 0.0209915, 0.206514, -0.0231628, 0.246054, 91.5222, -78.9848, -193.594, 0.256794, -0.0173505, -0.203518, 0.0552839, 0.320637, 0.0424205, 0.196633, -0.067489, 0.253859, 237.252, -31.3067, -39.0407, 0.273329, 0.030063, -0.0413727, -0.0297244, 0.276442, 0.00449925, 0.0416166, 0, 0.27494, 117.387, -4.1113, 34.9963, 0.0711363, 0.0405161, 0.36571, -0.00773603, 0.372564, -0.0397707, -0.367866, 0, 0.0715557, 117.03, -4.07253, 17.044, -0.189428, 0.00103939, 0.324292, 0.000233356, 0.375564, -0.00106741, -0.324294, -0.000336884, -0.189428, 123.858, -75.8121, -179.129, 0.000311185, -0.00582788, 0.326243, -0.000773116, 0.326242, 0.00582861, -0.326294, -0.000778551, 0.000297326, 56.8287, -72.7563, -67.4295, -0.0577756, -0.00120384, 0.274323, -0.108697, 0.257496, -0.0217628, -0.251872, -0.110847, -0.0535336, 301.579, -38.2693, -135.328, 0.19702, 0.19019, -0.024128, -0.190107, 0.198286, 0.0106534, 0.0247739, 0.00905035, 0.273634, 16.0255, -69.9658, -195.284, -0.129458, 0.00336884, 0.171697, -0.0103284, 0.214476, -0.0119957, -0.171419, -0.0154669, -0.128945, 88.9263, -79.7066, -204.168, -0.30162, 0.000956074, 0.168427, 0.000683664, 0.34546, -0.000736686, -0.168429, -0.00030988, -0.301621, 187.456, -75.9799, -168.391, -0.0528721, -0.00249987, 0.245109, -0.00262299, 0.250737, 0.00199147, -0.245107, -0.00214399, -0.0528937, 14.6811, -0.22728, -2.73619, -0.18719, 0.00780949, -0.320989, -0.0127364, 0.371082, 0.0164557, 0.320831, 0.0192877, -0.186628, 175.225, -31.1313, -48.1009, 0.118652, 0.0055614, -0.19834, -0.00285508, 0.231121, 0.0047726, 0.198398, 0, 0.118686, 35.1497, -0.458344, 64.5008, 0.154981, -0.0466631, 0.174095, -0.00366113, 0.228742, 0.0645694, -0.180203, -0.0447791, 0.148416, 248.734, -29.549, -2.90405, 0.372075, 0.00558158, -0.0990677, -0.0500145, 0.342605, -0.16854, 0.0856978, 0.175716, 0.331761, 188.302, -25.8917, -95.5852, 0.141497, 0.00511687, 0.158737, -0.0034048, 0.212647, -0.00381964, -0.158783, 0, 0.141538, 50.6716, -0.831863, 55.8141, 0.113982, 0.00574105, 0.165649, -0.00522062, 0.201062, -0.00337611, -0.165666, -0.00238607, 0.114076, 178.915, -53.4497, -116.851, 0.17476, 0.00588703, 0.101994, -0.00305322, 0.202305, -0.00644547, -0.102118, 0.00402606, 0.17474, 158.069, -80.7281, -205.162, -0.308285, -0.109934, -0.0324132, -0.104942, 0.308145, -0.0470105, 0.0460808, -0.0337218, -0.323907, 268.977, -45.384, -119.669, -0.0501167, 0.00802343, -0.329686, 0.00120582, 0.333473, 0.00793231, 0.329781, 0, -0.0501312, 55.4771, -0.947495, 53.8227, -0.127066, 0.00271469, 0.158852, 0.000369833, 0.203413, -0.00318038, -0.158875, -0.00169766, -0.127055, 5.25973, -0.220337, -1.30049, -0.120126, 0.0240383, -0.185552, 0.0130636, 0.221043, 0.0201787, 0.186646, 0, -0.120834, 127.966, -5.26176, -1.18855, -0.360446, 0.0414403, 0.123642, 0.0391983, 0.381062, -0.013446, -0.124371, 0, -0.362571, 126.326, -5.08344, 32.5848, -0.194982, 0.0249832, -0.215903, 0.00947229, 0.290753, 0.02509, 0.217137, 0.00975046, -0.194969, 227.697, -37.475, -10.0523, 0.262075, 0.0865633, -0.160716, -0.0742758, 0.307428, 0.0444646, 0.166751, 0.000890095, 0.272395, 246.128, -32.2032, -44.9104, -0.146735, 0.0453843, -0.224533, -0.00391325, 0.266112, 0.056346, 0.22904, 0.0336222, -0.142885, 48.9968, -71.5936, -164.375, -0.034356, 0.00292718, 0.380141, 0.00883444, 0.381593, -0.00213994, -0.380049, 0.00860571, -0.034414, 225.953, -30.8626, -68.8561, 0.0342364, 0.0661856, -0.343695, 0.00691274, 0.34514, 0.0671524, 0.349942, -0.0132931, 0.0322988, 244.053, -32.5659, -65.3254, 0.146251, 0.0846349, 0.116091, -0.0497474, 0.185245, -0.0723796, -0.134779, 0.0234639, 0.152688, 145.769, -15.1161, 38.4495, 0.0734127, 0, 0.317342, 0, 0.325723, 0, -0.317342, 0, 0.0734127, 26.2743, -0.453506, -55.4072, 0.240004, 0.0308105, 0.266675, -0.0116285, 0.35857, -0.0309622, -0.268197, 0.0120247, 0.239984, 213.891, -36.4651, -4.79226, 0.294464, 0.0768514, -0.203774, -0.0615387, 0.358085, 0.0461217, 0.208909, -0.00284278, 0.300812, 44.3457, -7.71082, -51.9034, -0.203923, -0.0130865, -0.186532, -0.00639035, 0.276325, -0.0124, 0.186881, -0.00483105, -0.203966, 66.0665, -19.8743, -25.8833, -0.339813, 0.00830473, 0.0603432, 0.00817681, 0.345129, -0.00145202, -0.0603607, 0, -0.339911, 63.6935, -1.14523, 35.6837, -0.219847, -0.0134874, 0.128622, -0.0379213, 0.249247, -0.0386807, -0.123643, -0.0524625, -0.216837, 233.495, -31.0241, -36.7321, -0.0440911, 0.00187758, 0.265157, -0.0229693, 0.26776, -0.00571542, -0.264167, -0.0235951, -0.0437594, 101.789, -78.9344, -190.941, 0.215711, 0.00998409, -0.321389, 0.00475612, 0.386869, 0.0152105, 0.321509, -0.0124216, 0.215405, 117.631, -75.3032, -119.152, -0.109617, 0.0382415, 0.286724, 0.00674717, 0.306876, -0.0383497, -0.289185, -0.00733566, -0.109579, 11.241, -4.13126, -144.442, -0.351794, 0.0144872, 0.092656, 0.0104285, 0.363522, -0.0172435, -0.0932001, -0.0140077, -0.35167, 62.7694, -74.76, -150.77, -0.315174, 0.0920225, -0.07199, 0.0861377, 0.322942, 0.0356936, 0.0789367, 0.0150198, -0.326388, 177.149, -32.9049, 40.6433, -0.346825, 0.0061266, -0.180668, 0.0184162, 0.390048, -0.0221263, 0.179832, -0.0281282, -0.346173, 97.3495, -79.0489, -193.214, -0.157685, 0.00145665, 0.136465, -0.010882, 0.207731, -0.0147915, -0.136038, -0.0183054, -0.156997, 80.0512, -77.5529, -176.994, 0.342533, -0.0387735, 0.0153526, 0.0336387, 0.331978, 0.0879042, -0.0246479, -0.0857632, 0.333325, 196.539, -34.8195, -8.99107, 0.256763, -0.0245302, -0.186962, 0.0242407, 0.317531, -0.00837066, 0.186999, -0.0074798, 0.257796, 217.989, -34.4628, -96.9377, 0.274774, 0.0305792, 0.0997167, -0.0406127, 0.290179, 0.0229235, -0.0960683, -0.0352108, 0.275518, 209.714, -78.3727, -209.203, -0.292473, -0.0280819, -0.185943, -0.0265456, 0.346536, -0.0105813, 0.186169, 0.00529523, -0.293627, 247.674, -72.5643, -136.533, 0.371353, 0.0465516, -0.0415284, -0.0452499, 0.373562, 0.0141151, 0.042943, -0.00892973, 0.373994, 4.87293, -1.99655, -88.3374, -0.097267, -0.000709868, -0.256878, 0.000124631, 0.274677, -0.000806243, 0.256879, -0.000402056, -0.0972662, 130.49, -25.8925, -46.84, -0.251181, 0.046579, -0.256536, -0.00527057, 0.355235, 0.0696602, 0.260677, 0.0520645, -0.245782, 148.382, -33.3615, -21.0029, 0.379773, 0.00621615, 0.00104634, -0.00622712, 0.379752, 0.00410734, -0.000978917, -0.00412393, 0.379801, 98.3697, -25.9044, -50.0276, -0.23861, 0.00801415, 0.136693, 0.00670055, 0.27499, -0.00442593, -0.136764, -0.000509452, -0.238704, 297.449, -38.3343, -151.408, 0.0694141, 0.0388264, -0.235253, -0.0282733, 0.244632, 0.0320319, 0.236754, 0.0178305, 0.0727995, 230.681, -30.2791, -83.7369, 0.372823, 0.00897303, 0.00771543, -0.00897111, 0.372902, -0.000185654, -0.00771767, 0, 0.37293, 85.9793, -1.68152, 7.72653, -0.338728, 0.00895004, -0.0752221, 0.0111475, 0.346801, -0.00893465, 0.074928, -0.0111351, -0.338729, 108.93, -75.0531, -118.357, 0.150715, 0.006393, 0.218796, -0.0036266, 0.265681, -0.00526481, -0.218859, 0, 0.150758, 52.2862, -0.870728, 51.1947, -0.37712, 0.0137007, 0.123479, 0.0109361, 0.396764, -0.0106232, -0.123755, -0.00668881, -0.377219, 74.6417, -73.3382, -84.0132, -0.0369899, 0.114484, 0.249857, 0.0511048, 0.250578, -0.107249, -0.270044, 0.0317393, -0.0545213, 157.11, -16.9304, 11.8646, 0.360136, 0.017154, 0.0824569, -0.00765778, 0.36727, -0.0429593, -0.0838735, 0.0401234, 0.357976, 165.609, -30.5756, -52.5818, -0.368975, -0.0319884, 0.129699, -0.0291026, 0.391093, 0.0136649, -0.130377, 0.00322986, -0.370106, 232.842, -75.9962, -202.766, -0.0265805, 0.00584352, 0.372044, -0.0263482, 0.372026, -0.00772568, -0.371155, -0.0268285, -0.0260957, 86.0948, -79.4186, -200.792, -0.237751, 0.0492335, -0.167757, 0.0185831, 0.288682, 0.0583862, 0.173842, 0.0364738, -0.23567, 41.7233, -71.4797, -155.458, -0.200604, 0.00667723, -0.246368, -0.00858064, 0.317281, 0.0155859, 0.246309, 0.0164913, -0.200109, 172.132, -31.3145, -43.3233, 0.20897, 0.0548849, 0.330946, -0.0256637, 0.391376, -0.048702, -0.334483, 0.00426074, 0.210497, 252.829, -33.9227, -58.2389, -0.0331375, -0.0415017, 0.394287, -0.0157733, 0.395486, 0.0403023, -0.396151, -0.0122753, -0.0345862, 206.351, -77.9939, -178.641, 0.106102, 0.00545148, -0.200172, -0.00255311, 0.226553, 0.00481666, 0.200229, 0, 0.106133, 38.4883, -0.538681, 41.2094, -0.0272953, 0.231627, -0.123357, 0.140716, 0.117603, 0.189687, 0.22151, -0.0461663, -0.1357, 129.202, -30.2173, -33.5605, 0.102905, 0, -0.284591, 0, 0.302624, 0, 0.284591, 0, 0.102905, 21.3289, -0.453506, -54.9541, 0.376214, 0.083166, -0.0249226, -0.0830531, 0.377037, 0.00445043, 0.0252961, 0.00102456, 0.385271, 279.822, -39.1506, -72.5043, -0.0506862, 0.00552521, 0.223978, 0.00121952, 0.229641, -0.00538895, -0.224043, 0, -0.0507008, 63.7397, -1.14633, 65.986, 0.12545, 0.011551, 0.214559, 0.0175602, 0.247069, -0.0235684, -0.214151, 0.027026, 0.123757, 208.039, -30.2457, -73.7364, 0.242065, 0.00076499, 0.133454, -0.000789634, 0.276415, -0.000152205, -0.133454, -0.000247947, 0.242066, 198.449, -75.999, -155.55, -0.311735, -0.00314182, 0.134633, -0.0272343, 0.333944, -0.0552666, -0.131887, -0.0615324, -0.306813, 37.4193, -75.2162, -87.9171, 0.150777, 0.0072551, -0.198091, -0.004027, 0.248945, 0.00605248, 0.198183, -0.0004612, 0.15083, 321.954, -39.0639, -159.732, -0.273847, 0.00556106, 0.0611264, 0.00469068, 0.280566, -0.00451053, -0.0611993, -0.00337966, -0.273866, 286.376, -74.3448, -170.007, -0.0432194, 0.00642787, -0.251974, 0.06468, 0.247373, -0.00478363, 0.243616, -0.0645374, -0.0434321, 180.063, -78.5715, -186.16, 0.222908, 0.202839, 0.177048, -0.264017, 0.119625, 0.195353, 0.0527721, -0.25831, 0.229497, 52.3935, -49.6001, -70.8292, 0.0779374, -0.0298675, 0.340576, 0.0135284, 0.34931, 0.0275375, -0.341616, 0.00701904, 0.0787908, 202.77, -75.8986, -160.227, -0.317313, -0.0063306, -0.0107048, -0.00594037, 0.317291, -0.0115539, 0.0109262, -0.0113448, -0.317166, 148.889, -25.9189, -91.1667, -0.114986, -0.0199686, 0.266732, -0.0219508, 0.29006, 0.0122522, -0.266577, -0.0152712, -0.116062, 84.8937, -72.9385, -76.2267, 0.128545, 0, 0.18526, 0, 0.225489, 0, -0.18526, 0, 0.128545, 3.97114, -0.453491, 38.7734, 0.0305571, 0.00297377, 0.338259, 0.00669202, 0.339565, -0.00358978, -0.338206, 0.00698758, 0.0304908, 108.894, -1.28802, -1.26444, -0.0501297, 0.0414182, -0.377545, 0.00545158, 0.380859, 0.0410578, 0.379771, 0, -0.0504253, 106.541, -2.93176, 59.6979, -0.317866, 0.0199387, 0.199705, 0.0198297, 0.375354, -0.00591311, -0.199716, 0.00553442, -0.318436, 36.3544, -72.5985, -111.256, -0.153416, -0.0395184, -0.122352, -0.0389484, 0.195815, -0.0144091, 0.122534, 0.0127633, -0.157768, 9.74512, -62.3616, -217.517, -0.265698, -0.0483673, -0.0379692, -0.0470429, 0.268335, -0.0126281, 0.0395983, -0.00575339, -0.269769, 247.414, -32.819, -98.2946, 0.299845, 0, 0.23049, 0, 0.378197, 0, -0.23049, 0, 0.299845, 5.92585, -0.453506, -19.0188, 0.299421, 0.0172896, 0.221386, 0.0102488, 0.370174, -0.0427708, -0.221824, 0.0404407, 0.296854, 174.847, -30.63, -56.0334, 0.329456, -0.0341688, 0.20282, 0.065254, 0.380569, -0.0418831, -0.195053, 0.0696045, 0.328564, 103.039, -17.061, -27.8731, 0.0142573, 0.0402196, -0.309683, -0.0471151, 0.306735, 0.0376675, 0.30871, 0.0449562, 0.020051, 159.785, -33.4942, -30.2989, -0.213615, 0.000842633, 0.272288, 0.0114981, 0.345799, 0.00795035, -0.272046, 0.0139537, -0.213468, 303.696, -38.7188, -101.496, 0.109382, 0, 0.246267, 0, 0.269465, 0, -0.246267, 0, 0.109382, 28.8087, -0.453506, -32.4905, 0.0586788, -0.0257099, -0.369342, 0.0234927, 0.373457, -0.022264, 0.36949, -0.0196619, 0.0600709, 94.438, -71.5718, -62.7475, -0.0762103, -0.011702, -0.253484, -0.00281176, 0.264692, -0.0113741, 0.253739, -0.000581552, -0.07626, 259.081, -71.8343, -134.416, 0.228391, 0.00364442, 0.0441705, -0.00674633, 0.232021, 0.0157395, -0.0438041, -0.0167321, 0.227877, 82.7648, -79.1362, -197.601, -0.257856, 0.00801268, 0.0646951, 0.00567911, 0.265709, -0.0102736, -0.0649416, -0.00857887, -0.257775, 89.9829, -74.9252, -129.636, -0.272946, -0.0230182, -0.15684, -0.0172626, 0.314752, -0.016152, 0.157577, -0.00538954, -0.273438, 206.152, -52.8679, -110.074, 0.112711, -0.00231879, 0.296826, -0.0233609, 0.31645, 0.0113427, -0.295914, -0.0258653, 0.112163, 127.207, -78.2224, -182.614, 0.0977913, 0.0300629, -0.220612, -0.00686653, 0.241245, 0.029831, 0.222545, -0.0057668, 0.0978623, 8.5486, -3.2247, -120.553, -0.170842, 0, 0.340291, 0, 0.380769, 0, -0.340291, 0, -0.170842, 24.7048, -0.453506, -26.7922, -0.322009, 0, -0.0723652, 0, 0.33004, 0, 0.0723652, 0, -0.322009, 14.7486, -0.453506, -56.7026, 0.104408, -0.0218196, -0.232907, 0.00422755, 0.255187, -0.0220117, 0.233889, 0.00512774, 0.104368, 209.945, -75.2879, -160.087, -0.118012, 0.0465855, 0.208061, 0.00517903, 0.238361, -0.0504323, -0.213149, -0.0200008, -0.11642, 58.929, -22.0665, -39.8114, 0.291089, 0.00879591, -0.221107, -0.00700437, 0.365542, 0.00532042, 0.221171, 0, 0.291173, 62.5799, -1.11844, 23.6568, -0.350464, -0.00337303, -0.100375, 0.0150008, 0.358519, -0.0644234, 0.0993053, -0.0660607, -0.344508, 21.2177, -75.8428, -90.4902, -0.289652, 0.0355962, -0.238681, 0.0302161, 0.375298, 0.0193019, 0.239422, -0.00430016, -0.291192, 54.4558, -20.1215, -30.0981, 0.132758, 0.0236321, -0.172041, -0.0144373, 0.217308, 0.0187093, 0.173055, 0, 0.13354, 127.307, -5.19006, 7.50132, 0.11082, 0, 0.248329, 0, 0.271935, 0, -0.248329, 0, 0.11082, 19.6886, -0.453491, 47.2661, 0.152707, 0.0264924, -0.169882, -0.0381903, 0.226763, 0.00103345, 0.16764, 0.0275267, 0.154985, 195.167, -34.2472, -25.9533, 0.210408, 0, -0.027046, 0, 0.21214, 0, 0.027046, 0, 0.210408, 1.07378, -0.453491, 13.7729, -0.111088, -0.00605431, 0.320196, -0.00274867, 0.338918, 0.00545469, -0.320241, -0.000808799, -0.111119, 48.3722, -72.9442, -82.8417, 0.081788, 0.00552512, -0.214579, -0.00196784, 0.229637, 0.0051628, 0.214641, 0, 0.0818117, 96.1084, -1.92525, 29.727, 0.220185, -0.00794966, 0.00656508, 0.00717232, 0.218936, 0.0245589, -0.00740643, -0.0243184, 0.218955, 248.419, -31.197, -22.7541, -0.333264, 0.00804172, 0.0249859, 0.00801921, 0.334199, -0.000601227, -0.0249931, 0, -0.33336, 41.704, -0.616074, 15.8939, -0.231999, 0.00492943, 0.287428, 0.000697009, 0.369363, -0.00577203, -0.28747, -0.00308267, -0.23198, 5.49118, -0.219482, -0.827769, -0.226019, -0.0055977, 0.217045, -0.00455554, 0.313357, 0.00333773, -0.217069, -0.0007478, -0.226064, 46.476, -72.99, -87.8398, -0.0665421, 0.000515742, -0.26268, 1.14587e-05, 0.270977, 0.00052913, 0.262681, 0.000118827, -0.066542, 183.968, -75.9461, -139.597, -0.344705, -0.0964753, -0.0794496, -0.0387619, 0.304122, -0.201119, 0.118816, -0.180676, -0.296109, 284.291, -52.1526, -131.241, 0.161874, -0.0186404, -0.14856, 0.0111855, 0.219679, -0.0153762, 0.149306, 0.00375183, 0.162216, 227.79, -33.5992, -102.424, -0.305585, 0.00769004, -0.093551, 0.00735319, 0.319584, 0.00225109, 0.0935781, 0, -0.305673, 46.0268, -0.720093, 36.6513, -0.161818, 0.0175228, -0.234055, -0.00303938, 0.28411, 0.0233715, 0.234691, 0.0157613, -0.161077, 18.9005, -71.1568, -123.868, -0.198887, 0.00952266, -0.342184, 0.00478525, 0.395785, 0.00823301, 0.342283, 0, -0.198944, 71.9929, -1.34494, 46.8755, 0.291301, 0.0158804, 0.0673544, -0.0144761, 0.298954, -0.00787775, -0.0676701, 0.00440793, 0.291627, 35.2554, -72.5212, -112.537, -0.357197, 0.0792215, -0.0374625, 0.0786849, 0.359155, 0.0092573, 0.038577, 0.000975966, -0.36576, 270.658, -37.1518, -64.1836, 0.0376815, 0.0550142, -0.218044, -0.00423388, 0.221218, 0.0550835, 0.224837, -0.00505437, 0.0375803, 264.005, -35.5963, -62.9552, 0.315582, 0.006052, -0.192665, -0.00307273, 0.369724, 0.00658069, 0.192736, -0.00401503, 0.315571, 97.7129, -25.9942, -59.2836, -0.248639, -0.00109619, -0.138083, -0.000771332, 0.284408, -0.000868925, 0.138085, -0.00038515, -0.24864, 112.078, -25.9634, -51.5081, 0.0795115, 0.0264182, -0.277916, -0.0177607, 0.288862, 0.0223774, 0.278604, 0.0108751, 0.0807419, 202.802, -35.438, -5.74246, 0.193831, 0.148997, 0.151076, -0.0591825, 0.234462, -0.155305, -0.203769, 0.0736341, 0.188815, 235.557, -31.2177, -22.1339, 0.307232, -0.00664267, 0.0938813, 6.97821e-06, 0.320524, 0.0226562, -0.094116, -0.0216605, 0.306467, 141.222, -80.722, -224.356, -0.227564, 0.00794903, 0.0349456, 0.00726642, 0.230199, -0.00504447, -0.0350939, -0.00388078, -0.227647, 82.2653, -73.9235, -103.118, 0.164693, 0.00076459, -0.221814, -0.000256826, 0.27627, 0.000761611, 0.221815, -0.000247817, 0.164693, 162.657, -75.9121, -169.964, -0.37947, -0.00159476, -0.0800288, -0.00176749, 0.387815, 0.000652706, 0.0800252, 0.00100338, -0.379472, 115.19, -75.8867, -163.654, 0.335289, 0.00258651, 0.0366346, -0.0114781, 0.326982, 0.0819646, -0.034886, -0.0827239, 0.325126, 30.6368, -79.7234, -147.243, 0.219113, 0.0481735, -0.318617, -0.0196163, 0.386577, 0.0449586, 0.32164, -0.00924085, 0.219795, 6.64183, -2.38927, -95.5443, -0.291658, 0, 0.164157, 0, 0.334681, 0, -0.164157, 0, -0.291658, 13.1667, -0.453506, -34.7671, 0.225713, 0.00963529, 0.297641, -0.015374, 0.373353, -0.000427546, -0.2974, -0.0119877, 0.225918, 129.849, -75.6434, -119.928, 0.231571, 0.0201787, 0.23407, 0.0102332, 0.327483, -0.0383556, -0.234716, 0.0341861, 0.229262, 156.052, -30.1874, -51.9536, 0.0907247, -0.0246073, 0.346247, -0.0120186, 0.357441, 0.028552, -0.346912, -0.0188187, 0.0895616, 87.4797, -72.2907, -67.3043, -0.172546, 0.0359393, 0.21672, 0.0538397, 0.274091, -0.00258777, -0.21298, 0.0401718, -0.17623, 151.96, -34.255, -18.1071, 0.21762, -0.000297758, -0.308668, -0.000125796, 0.377669, -0.000453011, 0.308668, 0.000363846, 0.21762, 174.937, -25.8949, -72.6299, 0.156892, -0.0592536, 0.161865, -0.0034564, 0.21775, 0.0830618, -0.172335, -0.0583113, 0.145694, 267.554, -45.2825, -103.901, 0.0928566, -0.00119364, 0.258829, 0.000489689, 0.274981, 0.00109245, -0.258831, 9.20217e-05, 0.0928579, 314.361, -38.2666, -115.324, 0.250676, -0.000747547, 0.10061, 0.000574682, 0.270112, 0.000575117, -0.100611, -0.000319677, 0.250676, 140.073, -25.9029, -71.9913, 0.000550034, 0.0212266, 0.289241, -0.000119589, 0.289242, -0.0212264, -0.290019, -7.90112e-05, 0.000557311, 181.672, -33.8165, 0.637019, -0.295231, -0.00265053, -0.0773129, -0.00215023, 0.305181, -0.00225164, 0.0773284, -0.00163341, -0.295234, 224.034, -44.9074, -107.914, -0.23064, 0.0208882, 0.250165, 0.0401339, 0.338418, 0.00874425, -0.247807, 0.0353676, -0.231418, 129.42, -30.2694, -35.4409, -0.0877458, 0.00730878, -0.290789, 0.0021114, 0.303739, 0.00699717, 0.290873, 0, -0.0877712, 38.4488, -0.53772, 60.9703, -0.244283, -0.0239584, 0.161655, -0.0186396, 0.292917, 0.0152453, -0.162354, 0.00241907, -0.244981, 253.74, -74.3867, -190.679, 0.248752, 0.0134928, 0.301405, -0.0136708, 0.390742, -0.00620945, -0.301397, -0.00658729, 0.249041, 81.1788, -73.5717, -84.4766, 0.26675, -0.00137391, -0.170361, 0.0011009, 0.31651, -0.000828771, 0.170363, 0.000105919, 0.266752, 306.681, -38.2986, -119.592, 0.182695, 0.0840732, 0.298235, -0.0460477, 0.349737, -0.0703834, -0.306418, -0.00243063, 0.188393, 43.6308, -7.48087, -42.305, -0.303486, 0.0118464, -0.249762, 0.0172058, 0.39284, -0.00227396, 0.24945, -0.0126835, -0.303708, 84.5819, -75.0078, -137.241, 0.0407914, 0.0983777, -0.213178, -0.0477537, 0.215325, 0.090231, 0.229875, 0.0272739, 0.0565729, 155.979, -17.8124, 22.9113, -0.283811, -0.0193622, 0.275126, -0.011914, 0.395266, 0.015527, -0.275549, 0.00285253, -0.284047, 243.509, -31.1876, -10.4063, 0.181973, 0.00732517, -0.244084, -0.0043783, 0.304452, 0.0058727, 0.244154, 0, 0.182025, 88.2181, -1.7354, 35.4026, -0.24071, 0.0301016, 0.13666, 0.026177, 0.276798, -0.0148617, -0.137466, 0, -0.242129, 106.58, -2.93602, 3.15278, -0.337434, 0.044681, -0.0572922, 0.0440623, 0.342263, 0.00740989, 0.0577694, -6.97638e-05, -0.340299, 75.8991, -24.3113, -43.261, 0.0377338, -0.00203942, -0.27669, 0.0228156, 0.278323, 0.00106004, 0.275755, -0.022749, 0.037774, 150.903, -77.8135, -179.735, -0.203907, -0.0314821, 0.330735, -0.0114502, 0.388495, 0.0299209, -0.332033, 0.00593639, -0.204142, 237.437, -73.3077, -142.173, 0.250085, 0.111364, -0.277255, -0.0763627, 0.373373, 0.0810915, 0.288861, 0.0022896, 0.261474, 4.94316, -3.42976, -191.129, 0.308203, 0.000386291, 0.0283619, 0.00106514, 0.309101, -0.0157846, -0.0283445, 0.0158158, 0.307799, 284.626, -74.1873, -158.726, -0.278901, 0.017986, 0.192053, 0.0176474, 0.338593, -0.00608198, -0.192084, 0.00499239, -0.279414, 24.2444, -72.0063, -107.789, 0.042429, 0.20129, -0.184889, -0.126519, 0.180315, 0.167276, 0.24227, 0.0589122, 0.119735, 183.07, -32.9564, 7.09164, 0.212701, 0.133101, 0.103084, -0.0942738, 0.231783, -0.104753, -0.13948, 0.0463128, 0.228001, 174.061, -24.824, 11.866, -0.0162728, -0.0940109, 0.344322, -0.186103, 0.296353, 0.0721185, -0.304568, -0.176061, -0.0624642, 277.671, -49.2585, -122.835, -0.145625, -0.011795, 0.162383, -0.00058656, 0.217898, 0.0153014, -0.16281, 0.00976497, -0.145299, 39.3128, -8.00992, -20.3293, -0.382514, 0.0954117, 0.030912, 0.0943493, 0.383661, -0.0166868, -0.0340171, -0.00876585, -0.39388, 264.97, -35.8385, -63.0494, 0.20739, -0.0180488, -0.270495, 0.0665385, 0.333541, 0.02876, 0.262804, -0.0702051, 0.206178, 239.932, -31.5425, -40.8499, 0.305959, -0.00719678, 0.00754819, 0.00733506, 0.305998, -0.00556755, -0.00741389, 0.00574517, 0.305993, 85.0105, -79.862, -208.687, -0.0875518, -0.0171507, -0.239643, 0.00555153, 0.254846, -0.020267, 0.240192, -0.0121418, -0.0868833, 249.995, -49.7548, -111.722, 0.241269, 0.00711852, 0.17119, -0.00580557, 0.295832, -0.00411929, -0.17124, 0, 0.241339, 35.3307, -0.462708, 12.1323, 0.0644584, 0.00187721, 0.211868, 0.0275414, 0.219503, -0.010324, -0.210079, 0.0293529, 0.063654, 284.952, -40.0635, -83.051, 0.0522658, 0.0366175, -0.296616, -0.00526672, 0.301184, 0.0362534, 0.298822, -0.00109629, 0.0525191, 44.9794, -72.7434, -131.164, -0.286527, -0.0304064, 0.236877, -0.0214714, 0.371752, 0.0217475, -0.237854, 0.00307013, -0.287314, 230.172, -76.1442, -211.284, -0.0319119, -0.040714, 0.386853, -0.0154129, 0.38798, 0.0395612, -0.388684, -0.0120423, -0.0333303, 215.405, -76.7657, -169.681, 0.236276, 0.0823966, 0.0572004, -0.0793272, 0.243083, -0.0224837, -0.0613864, 0.00301858, 0.249219, 40.7258, -6.83801, -55.8313, 0.0373948, 0.027393, 0.233214, 0.0239865, 0.234472, -0.0313868, -0.233589, 0.0284625, 0.0341117, 193.142, -32.9995, -34.283, -0.00830153, -0.0180663, 0.381442, -0.0070683, 0.381474, 0.017914, -0.381804, -0.00666938, -0.0086253, 88.7184, -18.7593, -23.4682, -0.163183, 0.0102562, 0.362589, -0.00743295, 0.397413, -0.0145864, -0.362658, -0.0127602, -0.162853, 120.894, -75.624, -126.522, 0.232463, -0.0281838, 0.228185, 0.0517523, 0.322579, -0.0128797, -0.224019, 0.0452754, 0.23381, 124.852, -14.726, -28.1975, -0.369638, 0, 0.0109933, 0, 0.369801, 0, -0.0109933, 0, -0.369638, 26.0002, -0.453506, -56.0047, 0.115022, -0.0196486, -0.198992, 0.0058186, 0.229797, -0.019327, 0.199875, 0.00461755, 0.115077, 202.352, -75.8755, -163.153, 0.119135, -0.00432863, 0.203175, 0.00394686, 0.235519, 0.0027034, -0.203183, 0.00203692, 0.119183, 99.6204, -5.26227, -6.07663, 0.197396, -0.0298867, -0.291767, 0.0117446, 0.352217, -0.0281329, 0.293058, 0.00601541, 0.197654, 218.015, -34.4961, -98.4779, -0.359015, -0.0294253, 0.0232771, -0.0291698, 0.359757, 0.0048785, -0.0235965, 0.00297107, -0.360186, 249.413, -74.69, -196.815, -0.306031, -0.000936809, 0.144658, -0.00101816, 0.338498, 3.81578e-05, -0.144658, -0.000400612, -0.306033, 147.256, -25.901, -87.1895, 0.240813, 0.0293469, 0.0445747, -0.0342851, 0.24295, 0.0252709, -0.0408984, -0.0308682, 0.241275, 168.017, -54.3973, -122.09, 0.233592, 0.268795, -0.0979851, -0.279984, 0.240785, -0.00694318, 0.0588257, 0.078669, 0.356045, 171.877, -28.661, 32.189, 0.174928, -0.00279256, -0.269792, 0.00296326, 0.321535, -0.00140682, 0.26979, -0.00172094, 0.174944, 236.634, -44.7935, -107.089, -0.193568, -0.0332328, -0.150436, -0.0184124, 0.244829, -0.0303936, 0.152959, -0.0125845, -0.194034, 193.872, -78.8239, -215.751, -0.393984, -0.0270985, 0.0121825, -0.0276901, 0.393627, -0.0199265, -0.0107703, -0.0207239, -0.394412, 82.582, -72.6093, -66.951, -0.253175, 0.00422911, -0.0936588, 0.0106936, 0.269245, -0.0167491, 0.0931424, -0.0194165, -0.252656, 88.4464, -79.3272, -199.013, 0.0738726, 0, -0.287869, 0, 0.297197, 0, 0.287869, 0, 0.0738726, 16.0599, -0.453491, 48.2453, -0.103463, 0.0107468, -0.293565, 0.00852296, 0.31122, 0.00838928, 0.293638, -0.00524666, -0.10368, 80.6101, -73.5613, -85.0212, 0.227834, 0.043693, -0.213886, 0.00191816, 0.308741, 0.0651135, 0.218295, -0.0483153, 0.22266, 275.505, -50.9814, -124.589, -0.0135199, -0.00733793, -0.282519, -0.022257, 0.281991, -0.00625912, 0.281737, 0.021925, -0.0140519, 314.781, -37.699, -128.827, 0.367856, -0.00167291, 0.128259, -0.0492635, 0.357828, 0.145958, -0.118433, -0.154039, 0.337664, 329.689, -40.7787, -141.462, 0.0981687, 0.00830649, -0.273865, 0.00044847, 0.290908, 0.00898416, 0.273991, -0.00345231, 0.098109, 185.829, -53.6086, -113.609, -0.18805, -0.00253493, 0.291745, -0.0251362, 0.345946, -0.0131962, -0.290671, -0.0282762, -0.187604, 129.514, -78.2286, -182.896, 0.103384, 0.00898151, -0.176222, -0.00923543, 0.204237, 0.00499122, 0.176208, 0.00543489, 0.103653, 230.365, -31.6263, -41.9205, -0.374746, -0.0307197, -0.0252291, -0.0308583, 0.375582, 0.00104168, 0.0250593, 0.00310176, -0.376002, 226.091, -76.6478, -190.724, -0.0741632, -0.032147, 0.36866, 0.00109467, 0.37597, 0.0330046, -0.370057, 0.00755474, -0.0737855, 210.419, -75.2517, -159.876, -0.378022, 0.0109231, 0.0588416, 0.0100939, 0.382547, -0.00616755, -0.0589895, -0.00453983, -0.37813, 180.945, -53.4791, -114.441, -0.279068, -0.024975, -0.201946, -0.00970403, 0.344009, -0.0291342, 0.203253, -0.0178666, -0.278664, 101.949, -72.7583, -95.6751, -0.136978, 0.0243123, 0.176684, 0.0148963, 0.223563, -0.0192143, -0.177726, 0, -0.137785, 127.425, -5.20297, 57.8722, 0.303851, 0.0100113, 0.134178, -0.0134852, 0.331985, 0.00576765, -0.133873, -0.0107187, 0.303961, 84.722, -75.484, -151.859, 0.0993655, -0.0144666, -0.254488, 0.0576395, 0.267341, 0.00730824, 0.248297, -0.0562711, 0.100147, 233.052, -31.1848, -37.382, 0.242051, -0.0214389, -0.106864, 0.0179722, 0.26456, -0.0123682, 0.107501, 0.00404261, 0.242684, 227.63, -73.9757, -150.469, -0.089323, 0.0292489, -0.388271, -0.0394434, 0.395628, 0.0388771, 0.387368, 0.0470289, -0.0855726, 82.5363, -75.5878, -162.958, -0.245431, 0.133569, 0.114887, 0.110056, 0.270077, -0.0788823, -0.137577, -0.0222299, -0.268057, 238.531, -28.5556, -93.239, 0.0192203, 0.00871865, 0.299055, 0.00539372, 0.299613, -0.00908156, -0.299133, 0.00596257, 0.0190515, 160.818, -80.546, -218.328, -0.149083, 0.00554803, 0.175914, 0.00358697, 0.230589, -0.00423252, -0.175965, 0, -0.149126, 58.3011, -1.01547, 60.5183, 0.242725, 0.0288473, 0.201784, -0.0145442, 0.315422, -0.027598, -0.203316, 0.011875, 0.24287, 186.99, -34.7582, 14.6103, 0.134338, 0.0454705, -0.368332, -0.06015, 0.389208, 0.0261098, 0.366221, 0.0472459, 0.139401, 196.835, -32.8655, -38.9407, 0.229538, 0.0960457, 0.225855, -0.067015, 0.322016, -0.0688307, -0.236102, 0.00197467, 0.239113, 3.22387, -3.02809, -173.007, -0.20678, 0.00596674, -0.136903, 0.00497516, 0.247992, 0.0032939, 0.136942, 0, -0.206839, 79.6677, -1.52963, 51.4717, 0.183159, 0.00678968, 0.214679, -0.00440685, 0.282195, -0.00516521, -0.214741, 0, 0.183212, 75.3254, -1.42513, 59.2661, -0.23937, 0, -0.0610731, 0, 0.247038, 0, 0.0610731, 0, -0.23937, 13.2034, -0.453491, 43.5149, 0.277309, -0.0127558, 0.219168, -0.0142646, 0.3513, 0.0384949, -0.219074, -0.0390208, 0.27492, 254.453, -31.3402, -26.0155, 0.253286, 0.0332126, -0.0371906, -0.0379512, 0.253296, -0.032264, 0.0323406, 0.037124, 0.253408, 158.356, -34.0655, -25.1224, 0.137632, -0.00595363, 0.21251, 0.00722614, 0.253141, 0.00241193, -0.21247, 0.00475277, 0.13774, 85.0542, -79.7691, -213.581, -0.0875587, 0.00876415, 0.353541, 0.0021069, 0.364222, -0.00850714, -0.353643, 0, -0.0875841, 85.4874, -1.66968, 1.72214, -0.169988, 0.0052196, -0.134747, 0.00409038, 0.216917, 0.00324237, 0.134786, 0, -0.170038, 87.4655, -1.71729, 0.858696, 0.173101, 0.000667633, -0.168022, -0.000328346, 0.241237, 0.00062028, 0.168023, -0.000216391, 0.173101, 199.338, -75.9936, -146.859, 0.253302, -0.0203652, -0.121397, 0.0246533, 0.280512, 0.00438269, 0.1206, -0.0145688, 0.254082, 107.132, -72.6842, -101.495, 0.133158, 0.00660443, 0.240003, -0.00320413, 0.274468, -0.00577512, -0.240073, 0, 0.133196, 70.7618, -1.31529, 11.1971, 0.205697, -0.0173563, -0.0521589, 0.0163911, 0.212199, -0.00597027, 0.0524702, 0.00175246, 0.206341, 254.264, -74.3238, -193.112, 0.117214, 0.0358526, 0.209637, 0.0198965, 0.236469, -0.0515661, -0.211748, 0.0420657, 0.111201, 325.858, -40.9611, -149.604, 0.2046, -0.0246461, 0.221229, 0.0185666, 0.301326, 0.0163983, -0.221822, 0.00248851, 0.205426, 223.012, -76.8782, -193.329, 0.223394, 0.00681115, 0.14079, -0.010279, 0.263922, 0.00354177, -0.140579, -0.00847405, 0.22347, 100.955, -75.6427, -143.132, 0.165949, -0.0174402, -0.190777, 0.0090788, 0.252835, -0.015216, 0.191357, 0.00312895, 0.166168, 253.628, -72.0877, -138.741, 0.312542, 0, 0.0707941, 0, 0.32046, 0, -0.0707941, 0, 0.312542, 29.6627, -0.453491, 40.5397, -0.257176, -0.027715, 0.0606624, -0.028854, 0.264107, -0.00166258, -0.060129, -0.00819745, -0.25866, 218.537, -76.4205, -169.153, -0.131144, 0.00175774, -0.217306, -0.00471529, 0.253727, 0.00489803, 0.217262, 0.00656773, -0.131065, 95.7962, -1.17747, -1.58145, -0.372594, -0.0251017, -0.0247278, -0.0238387, 0.37299, -0.019432, 0.0259475, -0.0177706, -0.372932, 241.812, -50.5624, -117.115, -0.304839, 0.0722113, -0.119363, 0.066908, 0.327373, 0.0271768, 0.122414, 0.000889603, -0.312094, 277.443, -38.6209, -74.2755, 0.172598, -0.0079401, -0.130912, 0.00729192, 0.216623, -0.00352478, 0.13095, -0.00159721, 0.172744, 302.5, -38.0867, -132.349, 0.154149, 0.0103446, 0.306651, -0.0145437, 0.343036, -0.00426108, -0.30648, -0.0110755, 0.154437, 74.2035, -75.3744, -158.287, 0.147651, 0.000576626, 0.264553, -0.000165009, 0.302967, -0.00056826, -0.264553, 0.000132854, 0.147651, 179.365, -75.9397, -134.026, 0.0695427, 0.0443771, -0.194734, -0.013343, 0.206773, 0.0423554, 0.199281, -0.00164153, 0.0707922, 44.2198, -7.62312, -44.2648, -0.0468192, 0.0408162, 0.372391, 0.00509156, 0.375323, -0.0404974, -0.374587, 0, -0.0470953, 128.32, -5.30025, 42.6231, -0.391245, 0.0135085, 0.00266285, 0.0134614, 0.391198, -0.00669068, -0.00289175, -0.00659498, -0.391421, 70.628, -72.8888, -65.5785, -0.277783, 0.0619381, -0.23841, 0.016321, 0.363176, 0.0753357, 0.245783, 0.0458859, -0.274453, 45.722, -71.8456, -157.959, 0.195215, 0.0290697, -0.10999, -0.0411425, 0.2217, -0.0144275, 0.106067, 0.0324932, 0.19684, 157.511, -33.5461, -27.9104, 0.0809709, 0.000321379, -0.192523, -0.000556087, 0.208856, 0.000114766, 0.192522, 0.000468102, 0.0809715, 190.285, -25.9242, -84.508, 0.102324, 0.0279404, -0.218103, -0.0382394, 0.239158, 0.0126974, 0.216535, 0.0290313, 0.105307, 188.137, -32.9669, -29.7347, 0.139917, -0.000750996, -0.254689, 0.000734397, 0.290591, -0.000453409, 0.254689, -0.00042535, 0.139918, 132.983, -25.8739, -38.5937, -0.200518, 0.0353177, 0.200404, 0.0201472, 0.283413, -0.0297881, -0.202492, -0.0067748, -0.201413, 12.5427, -5.0744, -177.111, 0.188869, -0.0258592, -0.128922, 0.0531313, 0.221406, 0.0334271, 0.120277, -0.057198, 0.187677, 221.146, -36.4229, -26.3221, 0.160305, 0.000638167, 0.165753, -0.000592332, 0.23059, -0.000314934, -0.165753, -0.000206841, 0.160306, 149.876, -75.8712, -164.18, -0.110606, 0.0252523, -0.204172, 0.0120283, 0.232206, 0.0222035, 0.205375, 0, -0.111258, 125.963, -5.04388, 25.5908, 0.291072, -0.00803356, -0.257345, 0.02336, 0.387638, 0.0143206, 0.256408, -0.026196, 0.290831, 151.672, -80.3127, -221.503, -0.283395, -0.0336489, 0.254645, 0.0213713, 0.374778, 0.0733074, -0.255968, 0.0685453, -0.27581, 111.001, -15.3626, -33.251, 0.157226, 0.0378536, 0.159156, -0.00615922, 0.221956, -0.0467053, -0.16348, 0.0280432, 0.154828, 59.3138, -73.9013, -160.036, -0.073852, 0.00420527, -0.185963, -0.00810484, 0.199821, 0.00773735, 0.185834, 0.0103861, -0.0735658, 184.749, -31.2491, -49.6919, 0.0608306, 0.0496894, -0.353679, -0.0084226, 0.358873, 0.0489704, 0.357054, 0, 0.061411, 138.425, -11.6119, 1.00754, -0.00314557, 0, 0.380632, 0, 0.380645, 0, -0.380632, 0, -0.00314557, 2.4239, -0.453491, 46.7256, 0.348826, 0.0905913, -0.142635, -0.0828306, 0.376852, 0.0367796, 0.147277, -0.00261907, 0.358516, 43.8685, -7.62523, -54.8558, -0.223881, 0.0033044, 0.319124, 0.0441807, 0.386385, 0.0269941, -0.316068, 0.051669, -0.222272, 304.821, -39.4244, -89.1007, -0.204753, 0.0050448, 0.0450586, 0.00492691, 0.209653, -0.00108423, -0.0450717, 0, -0.204813, 40.4707, -0.58638, 7.54091, -0.0819153, -0.00457038, 0.234803, 0.000525583, 0.248672, 0.0050237, -0.234847, 0.00215069, -0.0818887, 111.249, -5.0388, -7.20624, -0.0537368, 0.0317255, -0.26822, -0.0263517, 0.271557, 0.0373996, 0.268801, 0.0329642, -0.0499542, 201.614, -33.5891, -37.5797, -0.278413, -0.00149543, -0.256674, -0.00193636, 0.378673, -0.000105863, 0.256671, 0.00123466, -0.278417, 228.161, -25.8338, -88.3015, -0.223569, 0, -0.187946, 0, 0.292073, 0, 0.187946, 0, -0.223569, 17.0048, -0.453506, -25.0048, 0.164253, 0.00645886, 0.212295, -0.00395237, 0.268418, -0.00510838, -0.212356, 0, 0.164301, 36.0525, -0.480072, 43.2183, -0.211913, 0.00553718, -0.0599443, 0.0202927, 0.213096, -0.0520541, 0.0566762, -0.0555946, -0.205495, 163.521, -78.9096, -189.104, -0.155669, 0.00621037, 0.20586, 0.00374582, 0.258092, -0.00495354, -0.205919, 0, -0.155714, 40.1911, -0.579666, 38.6013, -0.277584, 0.000948097, 0.200764, 0.000588138, 0.342577, -0.000804619, -0.200766, -0.000307295, -0.277585, 161.399, -75.8995, -159.888, 0.326541, 0, 0.228845, 0, 0.398747, 0, -0.228845, 0, 0.326541, 33.2053, -0.453491, 51.7965, -0.269627, 0.0351299, 0.200172, 0.0037572, 0.333364, -0.053444, -0.203197, -0.0404508, -0.266602, 207.21, -78.6659, -213.794, -0.00954913, 0.048773, -0.326597, -0.0564311, 0.321686, 0.0496896, 0.325361, 0.0572251, -0.000967165, 329.946, -40.6326, -154.934, 0.351007, 0.00575119, 0.0159276, -0.00591792, 0.351347, 0.00355137, -0.0158664, -0.00381547, 0.351036, 97.4996, -25.8225, -43.796, -0.0611957, -0.00821846, -0.392725, 0.0252225, 0.39656, -0.012229, 0.392, -0.0267989, -0.0605219, 118.497, -80.4459, -213.3, 0.29708, 0.000832336, 0.0468384, -0.000864194, 0.300749, 0.000136857, -0.0468378, -0.000269774, 0.297081, 182.991, -75.9584, -158.387, 0.302489, 0.012633, -0.205865, -0.00697021, 0.365844, 0.0122086, 0.206135, -0.00616755, 0.302507, 71.3961, -73.4348, -96.3928, -0.226096, 0.00872924, -0.283696, 0.00544049, 0.362771, 0.00682647, 0.283778, 0, -0.226162, 49.0528, -0.792908, 7.0197, -0.305042, -0.0213049, 0.048579, -0.0204356, 0.308863, 0.00713413, -0.0489511, 0.00382233, -0.305702, 252.93, -72.1912, -134.279, 0.21355, -0.023584, -0.197775, 0.0142696, 0.291031, -0.0192966, 0.198665, 0.00444709, 0.21398, 249.459, -72.3504, -141.065, -0.169392, 0.000179918, 0.312391, -0.00527218, 0.355309, -0.00306345, -0.312347, -0.00609494, -0.169365, 21.0721, -0.261383, -5.19538, 0.203168, -0.000756184, -0.1827, 0.000778501, 0.273233, -0.000265179, 0.1827, -0.000323371, 0.203169, 142.379, -25.9016, -76.2641, 0.210927, 0.0218382, -0.208591, 0.0124186, 0.294015, 0.0433391, 0.209363, -0.039441, 0.207579, 210.183, -77.8344, -204.588, -0.319125, 0.00570252, 0.226561, 0.00875046, 0.391306, 0.00247642, -0.226464, 0.0070841, -0.319167, 288.132, -38.5957, -102.424, 0.214694, -0.00234149, 0.238115, -0.0178357, 0.319547, 0.0192236, -0.237458, -0.0261185, 0.213845, 129.51, -77.9845, -179.91, -0.119584, 0.000522132, 0.246899, 0.000335869, 0.274335, -0.000417475, -0.246899, 0.000120299, -0.119585, 177.538, -75.9327, -141.761, 0.350219, 0.0285492, 0.169045, -0.00552325, 0.386164, -0.0537747, -0.171349, 0.0459039, 0.347242, 85.5084, -75.595, -164.746, -0.345313, 0, -0.117146, 0, 0.364643, 0, 0.117146, 0, -0.345313, 13.5706, -0.453506, -53.5079, -0.161211, 0.0219573, -0.134408, 0.0330207, 0.208363, -0.00556675, 0.132125, -0.0252831, -0.162604, 204.261, -78.3656, -213.88, 0.114168, 0.0348331, -0.255233, -0.00807242, 0.279524, 0.0345373, 0.257473, -0.00668183, 0.114258, 2.86747, -2.16631, -105.893, 0.261939, 0.035115, 0.188816, -0.0284857, 0.322899, -0.0205337, -0.18993, 0, 0.263483, 97.9496, -1.9975, 55.718, -0.00229232, 0.0189634, 0.267006, 0.0321741, 0.2651, -0.0185518, -0.265738, 0.0319332, -0.0045494, 140.874, -31.4452, -31.6798, 0.264551, -0.001014, -0.253486, 0.00103216, 0.366391, -0.000388434, 0.253486, -0.000433623, 0.264553, 153.269, -25.8611, -67.7763, -0.328959, 0.0357806, -0.00623432, 0.0357742, 0.329019, 0.000677978, 0.00627107, 0, -0.330899, 101.3, -2.36185, 54.698, 0.15555, -0.0155515, 0.147692, 0.00358215, 0.214208, 0.0187826, -0.148465, -0.0111252, 0.155193, 122.988, -70.3441, -78.6012, -0.202626, 0.0388883, 0.0113406, 0.0383544, 0.202793, -0.0101118, -0.0130327, -0.00781058, -0.206076, 247.477, -32.6444, -50.3148, -0.238594, -0.0673949, -0.237486, -0.000346392, 0.330369, -0.0934059, 0.246863, -0.0646738, -0.229662, 248.028, -30.2292, -5.64288, -0.265405, -0.0218846, -0.17577, -0.00895774, 0.317891, -0.0260539, 0.176901, -0.0167365, -0.265028, 83.8867, -72.311, -62.9919, -0.192696, 0.117356, 0.0793769, 0.124257, 0.204365, -0.000500974, -0.0680698, 0.0408344, -0.225619, 162.266, -28.552, 64.4238, 0.0611826, 0, -0.210412, 0, 0.219126, 0, 0.210412, 0, 0.0611826, 30.625, -0.453491, 38.2783, -0.146069, 0.00665601, -0.176075, 0.000744044, 0.228731, 0.00802927, 0.176199, 0.00455196, -0.146, 159.039, -80.5058, -217.751, 0.105551, 0.0674485, -0.212152, -0.0402598, 0.236703, 0.0552236, 0.218945, 0.0110089, 0.112431, 176.252, -33.2542, 53.6494, -0.177394, 0.00804532, 0.26631, -0.062933, 0.30962, -0.0512746, -0.258892, -0.080777, -0.170013, 187.849, -78.8905, -186.608, 0.0335271, 0.0391539, -0.358474, -0.00364605, 0.360038, 0.0389838, 0.360587, 0, 0.0337247, 112.206, -3.54785, -1.67042, 0.0711378, 0.0172791, -0.224448, -0.00515911, 0.235452, 0.016491, 0.225053, -6.43176e-05, 0.0713246, 208.193, -35.7679, -18.2963, 0.0169841, 0.0108735, 0.233349, 0.0246166, 0.232579, -0.0126293, -0.232301, 0.0254409, 0.0157224, 200.63, -30.4685, -68.5332, -0.157141, 0.0311415, -0.217731, -0.00832173, 0.266558, 0.044131, 0.21979, 0.0323574, -0.153998, 215.742, -33.0331, -55.757, -0.0360267, 0.0980639, 0.326809, 0.0128363, 0.328783, -0.0972411, -0.340963, 0.00201616, -0.038192, 7.15732, -4.17377, -177.496, -0.0293317, 0.0148217, 0.317874, 0.0359126, 0.317336, -0.0114828, -0.316187, 0.0346682, -0.0307925, 179.452, -30.7316, -57.0719, -0.202409, 0.00102976, -0.312214, 0.000840234, 0.372084, 0.0006825, 0.312214, -0.000333763, -0.202411, 173.011, -75.9424, -171.546, 0.266825, -0.0373079, 0.235207, 0.0206363, 0.355522, 0.0329817, -0.237251, -0.0110348, 0.267394, 228.705, -75.2202, -164.858, 0.0828516, 0.0357511, -0.318136, -0.00901006, 0.328748, 0.0345971, 0.320012, 0, 0.0833401, 105.275, -2.79407, 58.8028, 0.16263, -0.0187127, -0.197597, 0.0152819, 0.255879, -0.0116545, 0.197892, -0.00438144, 0.163288, 201.112, -53.3137, -114.584, -0.247467, 0.0827778, -0.00445004, 0.0819242, 0.242069, -0.052942, -0.0126645, -0.0515971, -0.255517, 283.66, -40.5669, -79.1691, 0.22897, 0.00711425, 0.085826, -0.00495193, 0.244478, -0.00705426, -0.0859778, 0.00486534, 0.228972, 160.2, -80.6692, -211.234, -0.19208, 0.0119925, 0.348458, -0.00546348, 0.397684, -0.0166983, -0.348621, -0.0128399, -0.191728, 85.0809, -75.5169, -152.541, 0.262771, 0.0315097, 0.122084, -0.0285762, 0.289746, -0.0132766, -0.122804, 0, 0.26432, 111.25, -3.44395, 7.21525, 0.191204, -0.000978186, -0.166887, 0.000962957, 0.253791, -0.000384298, 0.166887, -0.000343688, 0.191206, 110.045, -25.9802, -58.1875, 0.139399, 0.000895927, 0.342078, -0.00105315, 0.36939, -0.000538292, -0.342077, -0.000772138, 0.139401, 164.342, -25.8789, -69.6812, 0.186909, -0.0183892, -0.106479, 0.0138281, 0.215068, -0.0128695, 0.107167, 0.00432157, 0.18737, 214.929, -74.9113, -157.624, 0.187116, 0.0338574, 0.0709135, -0.022395, 0.198524, -0.0356922, -0.0753228, 0.0250827, 0.186774, 45.0305, -71.5267, -159.55, 0.15047, -0.000775801, 0.259754, 8.65653e-06, 0.300189, 0.000891552, -0.259755, -0.000439399, 0.15047, 136.765, -25.89, -56.2124, -0.138349, 0.00627997, 0.221328, 0.00332871, 0.261011, -0.00532519, -0.221392, 0, -0.138389, 91.8047, -1.8217, 36.3815, -0.126387, -0.0259515, -0.355701, 0.0100685, 0.376966, -0.0310804, 0.356504, -0.0198466, -0.125225, 99.4799, -71.5654, -69.2188, -0.100379, 0.00665095, -0.244741, 0.0642442, 0.255959, -0.0193935, 0.236252, -0.0667772, -0.0987116, 168.192, -80.0839, -193.14, -0.277263, 0.000688689, 0.232504, 0.00062966, 0.361846, -0.000320933, -0.232504, 0.000158674, -0.277264, 162.497, -75.8985, -153.162, 0.234479, 0.000473683, -0.0834295, -0.00048286, 0.248879, 5.59666e-05, 0.0834294, 0.000109136, 0.234479, 131.704, -75.8315, -169.664, 0.243763, 0.0424569, 0.186027, -0.0337513, 0.306637, -0.0257573, -0.187802, 0, 0.246088, 131.507, -10.6539, 45.0874, -0.194791, -0.0226345, 0.0460434, -0.0329175, 0.193796, -0.0439921, -0.0393543, -0.0500654, -0.191104, 212.528, -35.8957, -20.3854, -0.339089, -0.00879767, 0.00360539, -0.00849114, 0.338088, 0.0263872, -0.00427768, 0.0262866, -0.338176, 317.017, -37.6169, -129.134, 0.365856, -0.0313121, 0.131187, 0.0249756, 0.38844, 0.0230617, -0.132539, -0.0132354, 0.366469, 254.036, -73.8658, -174.651, -0.181869, 0.00645699, -0.197308, 0.00437625, 0.26834, 0.00474775, 0.197365, 0, -0.181922, 76.4952, -1.45328, 3.12685, -0.103738, 0, -0.316588, 0, 0.333151, 0, 0.316588, 0, -0.103738, 21.0742, -0.453506, -23.3847, 0.362804, 0.0388663, -0.0800267, -0.0279852, 0.36882, 0.0522519, 0.0844494, -0.0447531, 0.361119, 204.741, -76.9314, -201.644, -0.0263787, -0.00182391, 0.206473, 0.00145588, 0.208145, 0.00202467, -0.206476, 0.00170066, -0.026364, 91.3306, -25.8073, -44.0348, 0.223673, 0, -0.251337, 0, 0.336452, 0, 0.251337, 0, 0.223673, 33.3259, -0.453506, -13.3759, -0.187314, 0.178772, 0.0763445, 0.121427, 0.024813, 0.239821, 0.151801, 0.200747, -0.0976302, 301.804, -40.5434, -82.7536, -0.228288, -0.0309903, -0.281604, -0.0251898, 0.362441, -0.0194656, 0.282182, 0.0072829, -0.229558, 230.318, -74.0325, -135.874, 0.224385, 0.0228597, 0.110527, -0.0163168, 0.249953, -0.018571, -0.111681, 0.00941023, 0.224781, 213.873, -36.2152, -11.993, 0.300299, -0.0161368, -0.207485, 0.0137324, 0.365005, -0.00851242, 0.207658, -0.000801948, 0.300611, 257.992, -71.8841, -135.175, -0.0354129, -0.0176792, -0.241258, 0.00998201, 0.243515, -0.0193098, 0.241698, -0.0126473, -0.0345508, 120.026, -71.1166, -89.3343, -0.0429066, 0.00942954, -0.372576, 0.0951269, 0.362891, -0.00177056, 0.36035, -0.0946749, -0.0438948, 189.945, -79.2994, -187.966, -0.262205, -0.0114571, 0.170167, -0.0108658, 0.312575, 0.00430242, -0.170206, -0.00230469, -0.26242, 319.894, -37.445, -131.786, -0.328084, 0.034477, -0.186212, 0.0229281, 0.376979, 0.0294006, 0.187984, 0.0141925, -0.328578, 189.779, -35.2451, 20.7712, 0.225958, -0.020034, -0.0199662, 0.0160245, 0.223137, -0.0425453, 0.0233072, 0.0408109, 0.222819, 105.774, -17.9029, -21.9272, 0.186428, -0.001144, -0.206493, 0.000232361, 0.278198, -0.00133147, 0.206496, 0.000719775, 0.186427, 94.9394, -75.9698, -163.787, -0.33668, 0.0128763, 0.160414, 0.0089171, 0.37289, -0.0112162, -0.160683, -0.00628632, -0.336739, 73.9499, -73.7574, -110.297, -0.336076, -0.0634267, -0.192698, 0.19354, 0.0115258, -0.341338, 0.0608086, -0.387229, 0.0214034, 265.329, -67.1025, -127.133, 0.218191, -0.0707206, -0.116904, 0.0367089, 0.242514, -0.0781942, 0.131607, 0.0496033, 0.215625, 25.8254, -79.7295, -143.049, 0.00198002, -0.0137525, 0.216909, -0.0142367, 0.216444, 0.013853, -0.216878, -0.0143338, 0.00107094, 222.466, -76.4273, -179.728, 0.352587, -0.00143085, 0.116182, 0.00120164, 0.371235, 0.00092528, -0.116184, -0.000502733, 0.352589, 111.642, -25.9775, -60.6859, -0.225355, 0.00817558, -0.254317, 0.00542208, 0.339797, 0.00611892, 0.254391, 0, -0.22542, 69.2189, -1.2782, 33.4783, 0.22011, 0.0101383, -0.0295385, -0.0132114, 0.22076, -0.0226771, 0.0282978, 0.0242076, 0.219173, 212.137, -30.4368, -73.732, 0.075703, 0.00136858, 0.303708, 0.0127129, 0.312712, -0.004578, -0.303444, 0.0134426, 0.0755768, 163.886, -35.8469, -6.25566, -0.00684681, 0.0309936, -0.254836, 0.00176683, 0.254926, 0.0309571, 0.256708, -0.000927917, -0.00700995, 40.2039, -72.1824, -136.53, -0.246837, 0.0232504, 0.111223, 0.0249274, 0.270586, -0.00124263, -0.110859, 0.00907417, -0.247927, 207.885, -36.1041, -0.166163, -0.213929, 0.252337, 0.0446155, 0.226512, 0.213389, -0.120779, -0.119821, -0.0471288, -0.307981, 17.5168, -72.4995, -82.7808, -0.374373, 0.0297661, -0.136836, 0.0355658, 0.397976, -0.0107332, 0.135444, -0.0222286, -0.375401, 104.942, -80.4561, -220.647, -0.27611, 0.0149459, -0.164879, -0.00519184, 0.319686, 0.0376733, 0.165474, 0.0349693, -0.273936, 191.766, -30.1078, -68.0424, -0.00151261, 0, 0.208597, 0, 0.208603, 0, -0.208597, 0, -0.00151261, 25.8016, -0.453491, 22.983, 0.27794, 0.0324549, -0.108693, -0.0302258, 0.298437, 0.0118203, 0.109334, 0, 0.279579, 129.049, -5.37956, 64.327, 0.259789, -0.00110232, 0.102095, 0.00135882, 0.279129, -0.000443861, -0.102092, 0.0009101, 0.259791, 202.551, -25.9196, -93.0706, -0.308631, 0, -0.210945, 0, 0.373833, 0, 0.210945, 0, -0.308631, 11.8273, -0.453491, 30.0684, 0.100269, 0.0238495, -0.179539, -0.0333245, 0.204142, 0.00850666, 0.178024, 0.0247807, 0.102715, 211.105, -34.1602, -42.0083, 0.259836, 0.0368896, 0.218066, -0.0282571, 0.339216, -0.0237145, -0.219351, 0, 0.261368, 106.348, -2.91087, 65.9389, -0.359067, 0.0663608, -0.157777, 0.0402167, 0.389109, 0.072134, 0.166373, 0.0491624, -0.357952, 53.1158, -71.326, -172.053, 0.20964, 0.027237, 0.078995, -0.0257771, 0.224028, -0.0088353, -0.0794834, -0.000815448, 0.211217, 45.9514, -72.9108, -144.675, 0.288201, 0.0153161, -0.00962831, -0.015448, 0.288331, -0.00374358, 0.00941516, 0.00425131, 0.288584, 37.0147, -72.5472, -117.116, 0.0385075, 0.0103074, 0.352181, 0.00589018, 0.35421, -0.0110108, -0.352282, 0.00704909, 0.0383123, 163.609, -80.6403, -217.674, 0.0338175, 0.00809417, 0.334675, -0.00081374, 0.336379, -0.00805317, -0.334771, 0, 0.0338273, 43.4497, -0.658066, 20.556, 0.0697601, 0, 0.301705, 0, 0.309665, 0, -0.301705, 0, 0.0697601, 24.1479, -0.453506, -26.4467, -0.280895, 0.00194027, -0.0108738, 0.00023585, 0.277732, 0.0434647, 0.011043, 0.043422, -0.277519, 162.294, -77.7272, -178.495, -0.232441, 0.0102733, -0.111909, 0.013562, 0.257786, -0.00450393, 0.111558, -0.00993332, -0.232624, 70.1539, -73.7846, -117.819, -0.218389, 0.0066429, -0.0652851, 0.00648559, 0.227938, 0.00149786, 0.0653009, -0.000422283, -0.218485, 305.691, -38.5737, -150.972, -0.0802945, -0.00110215, -0.390061, 0.00023942, 0.39824, -0.00117454, 0.390063, -0.000471316, -0.0802934, 147.769, -25.8793, -70.2175, -0.262961, -0.0212514, 0.0208469, -0.0218848, 0.263633, -0.00730518, -0.0201809, -0.00898278, -0.263717, 245.576, -74.6421, -177.419, 0.0220794, -0.0205027, 0.238815, 0.00670242, 0.239785, 0.0199663, -0.2396, 0.00481825, 0.0225656, 223.517, -74.5575, -138.684, 0.209472, 0.0148923, -0.00963884, -0.0159255, 0.208188, -0.0244348, 0.00781463, 0.0250778, 0.208574, 138.494, -31.4546, -30.1887, -0.261304, 0.0327791, -0.0308362, 0.0332865, 0.263042, -0.0024523, 0.0302878, -0.00628784, -0.263341, 9.18336, -4.5052, -170.811, -0.178459, 0.0177152, -0.162553, 0.0131411, 0.241394, 0.0118804, 0.162986, -6.59409e-05, -0.178942, 187.749, -34.2648, -7.99579, -0.0509428, 0.0370852, 0.293291, -0.000718447, 0.297597, -0.0377545, -0.295625, -0.00711385, -0.0504488, 6.89037, -2.2356, -87.8201, 0.0570198, -0.0167834, -0.209698, 0.00935553, 0.217252, -0.0148441, 0.210161, -0.00511762, 0.0575551, 207.991, -35.2814, -98.8973, 0.215886, 0.0214883, -0.093147, -0.0232351, 0.234957, 0.000351035, 0.0927267, 0.00884567, 0.216952, 188.477, -34.4532, 2.89636, -0.272527, 0.00703023, 0.00366435, 0.00690834, 0.272411, -0.0088432, -0.00388927, -0.00874662, -0.272474, 127.649, -75.676, -122.712, 0.0930762, -0.0291267, 0.261631, 0.00159664, 0.27756, 0.0303321, -0.263242, -0.00861502, 0.0926903, 214.115, -77.3235, -183.293, 0.193682, 0.0704529, -0.135222, -0.0586313, 0.23621, 0.0390908, 0.140751, 0.00144849, 0.202356, 4.50792, -3.15938, -214.052, -0.253264, 0.0318749, -0.243982, 0.0262528, 0.351635, 0.0186876, 0.24465, -0.00473593, -0.254577, 57.7143, -20.4338, -30.4987, 0.0962603, -0.0219383, -0.304248, 0.0226423, 0.318671, -0.0158146, 0.304196, -0.0167775, 0.0974538, 93.4479, -72.3014, -75.3111, -0.176739, 0.00102134, -0.335147, 0.000357973, 0.378893, 0.000965873, 0.335148, 0.000133899, -0.176739, 191.531, -25.9335, -69.2751, 0.115024, 0, 0.174181, 0, 0.208733, 0, -0.174181, 0, 0.115024, 4.1997, -0.453506, -26.9273, -0.209191, -0.023567, 0.198153, -0.0154672, 0.288132, 0.0179396, -0.198949, 0.00237955, -0.209749, 253.516, -74.3639, -195.666, 0.270997, 0.00711081, -0.0505721, -0.00536305, 0.275534, 0.0100034, 0.0507872, -0.00884687, 0.270906, 108.799, -75.7269, -139.446, 0.0438056, 0.00886136, -0.365647, -0.00105408, 0.368262, 0.00879845, 0.365753, 0, 0.0438182, 59.0916, -1.03448, 43.5873, 0.219812, 0.148052, -0.144246, -0.153817, 0.257818, 0.0302243, 0.138082, 0.051515, 0.263293, 164.053, -24.4622, 38.818, -0.300771, -0.0178218, -0.204716, -0.0162117, 0.36382, -0.00785437, 0.204849, 0.00262559, -0.301197, 240.001, -31.3857, -6.75775, -0.193276, 0.111299, -0.151461, 0.066013, 0.243606, 0.0947724, 0.175984, 0.0308561, -0.201894, 152.689, -15.3296, 15.1758, -0.109802, -0.000898193, -0.329747, 0.000198897, 0.347547, -0.00101291, 0.329748, -0.00050872, -0.109801, 151.719, -25.8473, -53.6438, -0.324928, 0.0462586, -0.208432, 0.0650849, 0.382955, -0.0164703, 0.203341, -0.0486565, -0.32779, 166.528, -54.1589, -121.63, -0.060994, 0.0299247, -0.25071, -0.023392, 0.256143, 0.036264, 0.251404, 0.0310931, -0.0574515, 211.179, -35.9734, -27.1426, -0.0225974, 0.000626077, 0.22509, -0.000139369, 0.226221, -0.000643216, -0.225091, -0.000202922, -0.0225969, 183.214, -75.9554, -154.417, 0.144362, -0.00334248, 0.23168, 0.0105027, 0.272782, -0.00260884, -0.231466, 0.0102927, 0.144377, 171.442, -45.5536, -102.062, -0.23481, -0.0194072, -0.128512, -0.0103183, 0.267317, -0.0215157, 0.129559, -0.0138835, -0.234626, 132.295, -70.4301, -93.2675, 0.274248, 0.0111573, -0.0573262, -0.00870412, 0.279968, 0.0128494, 0.0577496, -0.0107881, 0.274174, 77.4845, -74.4516, -127.548, 0.347265, -0.00363852, 0.184531, -0.0302803, 0.386739, 0.0646094, -0.182066, -0.0712603, 0.341221, 30.4262, -73.6657, -79.1451, 0.323488, 0, 0.0172844, 0, 0.323949, 0, -0.0172844, 0, 0.323488, 7.80732, -0.453506, -64.2754, 0.368377, 0.0469879, 0.0809704, -0.0478292, 0.377063, -0.00121307, -0.0804763, -0.00901343, 0.37136, 1.72283, -1.72552, -93.421, -0.262502, 0.00530234, -0.213636, 0.0194701, 0.337572, -0.0155452, 0.212813, -0.0243439, -0.262094, 75.7763, -78.1157, -184.972, 0.254919, 0.0649087, 0.286672, -0.0063474, 0.380595, -0.0805305, -0.29386, 0.0480866, 0.250423, 35.9311, -71.0997, -150.647, -0.136594, 0, -0.237912, 0, 0.274336, 0, 0.237912, 0, -0.136594, 23.6308, -0.453491, 8.89839, 0.0407781, 0.0388706, 0.253652, -0.0239536, 0.25629, -0.035424, -0.255493, -0.0178244, 0.0438054, 67.9926, -7.11011, -21.8655, 0.25189, -0.0399299, -0.245661, 0.0224288, 0.35174, -0.0341746, 0.247872, 0.00874978, 0.252735, 116.014, -4.88469, -8.14495, -0.347755, 0.00295683, 0.0272441, 0.00653299, 0.345743, 0.0458658, -0.026614, 0.0462343, -0.34473, 277.794, -38.6498, -93.1653, -0.146919, 0.000667278, -0.191175, 0.000578091, 0.241108, 0.000397298, 0.191176, -0.000216276, -0.14692, 184.984, -75.9582, -152.072, 0.046136, 0.124136, 0.261107, -0.192605, 0.21039, -0.0659918, -0.215616, -0.161375, 0.114819, 172.777, -31.6124, 1.49767, -0.0593812, 0, 0.221611, 0, 0.229429, 0, -0.221611, 0, -0.0593812, 6.21448, -0.453506, -13.3706, -0.158765, 0.033101, -0.325537, 0.0022013, 0.361933, 0.0357281, 0.327208, 0.013626, -0.158195, 220.473, -36.5032, -20.3771, -0.198559, 0.0417852, -0.191952, 0.043439, 0.275507, 0.0150397, 0.191584, -0.0191609, -0.20235, 90.5962, -10.2759, -18.093, 0.0461107, 0.0737147, 0.303167, -0.013251, 0.306646, -0.0725452, -0.311719, -0.00213115, 0.0479296, 41.6067, -7.10075, -57.6227, -0.0677797, 0.0236887, -0.314568, 0.046882, 0.31893, 0.0139156, 0.311955, -0.0427833, -0.0704386, 211.868, -78.4053, -207.912, 0.0819932, 0.0422339, -0.2938, -0.0113528, 0.305027, 0.0406795, 0.296603, 0, 0.0827755, 137.923, -11.5423, 28.6254, 0.29526, 0.00646247, -0.0858608, -0.0106548, 0.307076, -0.0135273, 0.0854419, 0.0159609, 0.295021, 181.771, -32.0725, -32.644, -0.254467, 0.00224665, -0.298768, -0.00554731, 0.39234, 0.00767505, 0.298725, 0.00919954, -0.254361, 242.13, -32.9032, -100.69, -0.196461, 0.0273896, -0.331872, -0.0259371, 0.382895, 0.0469548, 0.331989, 0.0461225, -0.192724, 139.542, -32.2101, -24.5393, -0.263497, 0.0805546, 0.059286, 0.0789678, 0.270079, -0.0159961, -0.0613837, 0.00165617, -0.27507, 0.778834, -2.11658, -202.725, 0.0383988, 0, -0.266721, 0, 0.269471, 0, 0.266721, 0, 0.0383988, 15.3798, -0.453491, 35.3383, -0.213297, -0.0016632, 0.32329, -0.128672, 0.355751, -0.0830636, -0.296585, -0.153145, -0.196466, 318.163, -39.9064, -139.311, 0.163913, -0.0153631, 0.151893, 0.00324842, 0.223161, 0.0190661, -0.152633, -0.0117491, 0.163524, 100.737, -71.9995, -79.1077, -0.227844, 0.0417926, -0.162703, 0.00467354, 0.275647, 0.0642591, 0.16792, 0.0490351, -0.222554, 329.001, -41.1113, -151.438, -0.396102, -0.00280138, 0.0146608, -0.0025795, 0.396328, 0.0060382, -0.0147015, 0.00593851, -0.396066, 230.952, -25.7495, -93.007, 0.0805648, 0.0343705, 0.2124, -0.0270642, 0.226619, -0.0264057, -0.213454, -0.0157608, 0.083515, 93.3132, -10.3649, -13.4468, 0.107103, 0.000331403, -0.186852, -0.000583589, 0.215371, 4.74726e-05, 0.186852, 0.000482702, 0.107103, 196.729, -25.9134, -93.7664, 0.142366, -0.0193147, -0.2225, 0.0142279, 0.26411, -0.013823, 0.222883, -0.00452238, 0.143004, 218.035, -52.009, -110.664, 0.0678152, 0.00542972, -0.20503, 0.0501246, 0.20896, 0.0221128, 0.198883, -0.0545158, 0.0643382, 174.812, -78.4748, -186.313, 0.240923, 0.0011027, -0.0745478, -0.00425412, 0.25196, -0.0100215, 0.0744345, 0.010831, 0.240717, 163.821, -35.761, -8.24751, 0.162032, -0.0170315, 0.130798, 0.0143358, 0.208229, 0.00935494, -0.131121, 0.00171967, 0.162656, 217.339, -77.2119, -209.097, -0.233212, 0.0061994, 0.0581061, 0.00414706, 0.240218, -0.00898466, -0.0582886, -0.00771295, -0.233121, 110.553, -75.3521, -126.367, 0.296186, 0.00260229, 0.0807444, 0.00821411, 0.304286, -0.0399376, -0.0803677, 0.0406904, 0.293492, 294.246, -40.3788, -81.2879, -0.0468435, -0.230667, -0.0858919, 0.117033, 0.0560451, -0.214339, 0.216536, -0.0801916, 0.0972643, 138.952, -68.4508, -95.6939, -0.184273, 0.000840912, 0.292107, 0.0122258, 0.345093, 0.00671912, -0.291852, 0.0139252, -0.184153, 328.688, -38.2937, -113.539, 0.169308, 0.00415283, -0.233016, 0.0575356, 0.278355, 0.0467659, 0.22584, -0.074028, 0.162774, 114.128, -73.6552, -107.293, -0.148903, 0.00543116, -0.169655, 0.00358264, 0.225732, 0.00408193, 0.169704, 0, -0.148946, 97.5196, -1.95921, 12.6304, 0.161504, 0.00308482, -0.227934, -0.00650328, 0.279292, -0.000828036, 0.227862, 0.00578464, 0.161531, 102.789, -77.6184, -174.771, 0.0437167, -0.00135211, 0.31182, -0.123123, 0.28921, 0.0185157, -0.286486, -0.1245, 0.0396251, 326.416, -38.3997, -135.901, -0.261338, -0.00225236, 0.163764, -0.0152435, 0.307384, -0.0200982, -0.163069, -0.0251243, -0.260573, 116.346, -79.1061, -192.452, 0.271573, -0.0352087, -0.192475, 0.0526145, 0.330271, 0.0138212, 0.188463, -0.0414687, 0.273497, 67.5612, -80.7368, -200.89, -0.0671752, 0.0324795, 0.206955, 0.0465205, 0.214221, -0.0185198, -0.204257, 0.038108, -0.0722803, 325.425, -39.7719, -155.919, -0.307302, 0.00899407, 0.0336427, 0.00960855, 0.309077, 0.00513837, -0.0334724, 0.00615092, -0.307391, 162.406, -80.44, -225.979, -0.336266, 0.00106537, -0.207682, 0.000833036, 0.39523, 0.000678658, 0.207683, 0.000139672, -0.336267, 180.062, -25.8984, -80.3061, 0.22576, 0.049798, 0.00105004, -0.0497944, 0.225762, -0.000859838, -0.0012106, 0.000613484, 0.231186, 286.76, -40.6793, -73.0992, 0.184125, -0.0295705, -0.317525, 0.0256729, 0.366835, -0.0192756, 0.317864, -0.0124992, 0.185486, 257.181, -73.656, -175.934, -0.210824, -0.00886407, 0.268869, 0.0153958, 0.34064, 0.0233023, -0.268574, 0.026485, -0.20972, 319.57, -37.4978, -129.812, 0.0791236, -0.0388838, 0.284661, -0.00246612, 0.295156, 0.0410028, -0.287294, -0.0132426, 0.0780465, 253.744, -31.934, -98.4654, -0.202955, 0.0195826, -0.0379715, 0.0196844, 0.206463, 0.0012653, 0.0379189, -0.00236566, -0.203894, 52.4741, -19.9105, -28.0891, -0.181283, 0.0151891, -0.335583, 0.0201456, 0.381135, 0.00636813, 0.335322, -0.0146864, -0.181807, 63.0417, -74.5578, -145.242, -0.0276134, -0.0160024, 0.217101, -0.00574564, 0.218818, 0.0153982, -0.217614, -0.00374685, -0.0279548, 232.039, -51.009, -112.07, -0.141293, 0.00996622, 0.251711, 0.000632239, 0.288615, -0.0110725, -0.251908, -0.00486558, -0.14121, 70.8662, -72.9643, -69.5664, 0.189498, 0.00788209, -0.267188, -0.00455983, 0.327565, 0.00642926, 0.267265, 0, 0.189553, 44.8709, -0.692291, 18.2812, -0.300713, 0.0674169, -0.0546518, 0.066178, 0.305638, 0.0128917, 0.0561456, 0.000830539, -0.307908, 283.97, -40.0647, -72.7815, -0.250313, 0.0494929, 0.248828, 0.0378339, 0.352927, -0.0321389, -0.250866, 0.00384216, -0.253127, 241.111, -32.0567, -78.7033, 0.0878819, 0, 0.330752, 0, 0.342228, 0, -0.330752, 0, 0.0878819, 17.5111, -0.453506, -33.6634, -0.108298, 0.000706262, -0.354924, 5.04804e-05, 0.371079, 0.000723005, 0.354925, 0.000162722, -0.108298, 156.648, -75.8933, -139.237, -0.0446254, 0, -0.27723, 0, 0.280799, 0, 0.27723, 0, -0.0446254, 34.8257, -0.453506, -9.53243, -0.398931, 0.00278715, 0.00813422, 0.00206177, 0.397473, -0.0350757, -0.00834763, -0.0350255, -0.397396, 104.882, -79.1746, -193.42, -0.118079, 0.102529, -0.138592, 0.0340388, 0.178544, 0.103083, 0.169001, 0.035675, -0.117595, 156.649, -24.7981, 61.7785, 0.190623, 0.0375438, 0.287834, -0.0207301, 0.345232, -0.0313017, -0.289531, 0, 0.191747, 102.732, -2.51764, 17.3928, -0.25902, -0.0198662, 0.128113, -0.024534, 0.288572, -0.00485497, -0.127302, -0.0151928, -0.259736, 105.217, -71.236, -70.464, 0.137957, -0.00470516, -0.215665, 0.000669876, 0.256005, -0.00515675, 0.215716, 0.00221411, 0.137941, 105.187, -5.11662, -11.0895, 0.13807, 0.144488, 0.21627, -0.0276103, 0.251612, -0.150473, -0.258626, 0.0502749, 0.131522, 146.879, -18.5339, 58.5066, -0.187611, 0.0490714, -0.130802, 0.0161891, 0.225169, 0.0612535, 0.138763, 0.0400759, -0.183995, 36.2136, -8.08942, -18.3349, -0.106627, 0.00547267, 0.183428, -0.00313952, 0.212058, -0.00815189, -0.183483, -0.00680879, -0.106456, 105.157, -75.2306, -126.917, -0.357373, -0.00101901, 0.0886303, -0.00109394, 0.368199, -0.000177664, -0.0886294, -0.000435763, -0.357374, 153.041, -25.8517, -59.3403, 0.0150573, 0.00497846, -0.206347, -0.000362318, 0.206895, 0.00496526, 0.206407, 0, 0.0150616, 55.5152, -0.948425, 48.3477, -0.215906, -0.0191278, 0.325375, -0.00822475, 0.390482, 0.0174977, -0.325833, 0.00281801, -0.216044, 238.58, -31.43, -10.2718, -0.0322909, 0.219044, -0.00438678, 0.217559, 0.0325821, 0.0254654, 0.0258336, -0.000596439, -0.219942, 48.5503, -35.5178, -38.0823, -0.218747, 0.0896623, 0.206209, 0.0665613, 0.300614, -0.0601026, -0.214782, 0.00184343, -0.228642, 1.47249, -2.35649, -197.341, 0.102887, 0, -0.227789, 0, 0.249947, 0, 0.227789, 0, 0.102887, 25.6675, -0.453506, -69.1037, 0.237977, 0.010837, -0.131995, -0.00438343, 0.27193, 0.014423, 0.132366, -0.0104784, 0.237787, 80.3206, -74.0396, -113.922, 0.277824, 0.00827562, 0.279037, 0.00865606, 0.393231, -0.0202808, -0.279026, 0.020439, 0.277207, 190.5, -30.8945, -58.8414, -0.0943453, 0.228045, -0.218501, 0.0765073, 0.237752, 0.215102, 0.306421, 0.0108517, -0.120982, 15.4182, -71.7766, -142.851, 0.295281, 0.0281104, 0.24399, -0.0217366, 0.383043, -0.0178248, -0.24464, -0.000104635, 0.29608, 176.726, -33.4567, -11.1536, 0.0690684, 0.0147828, 0.364734, -0.0168035, 0.37094, -0.0118523, -0.364646, -0.0142935, 0.0696311, 73.3447, -74.2865, -127.543, 0.277012, -0.0212251, -0.136323, 0.0262018, 0.308311, 0.00523951, 0.135454, -0.0162321, 0.277774, 83.691, -72.7966, -71.958, 0.240078, -0.0205911, 0.0356039, 0.0209756, 0.242669, -0.00109414, -0.0353788, 0.00414446, 0.240957, 203.355, -35.6762, -102.215, -0.228286, -0.0202735, 0.102418, -0.0169251, 0.250179, 0.0117969, -0.103024, 0.00382285, -0.228881, 205.798, -75.4174, -171.899, 0.234103, 0.00593909, 0.0782772, -0.00563256, 0.246843, -0.00188337, -0.0782999, 0, 0.234171, 81.1382, -1.56502, 46.7578, -0.046795, 0.01122, -0.321584, 0.00703929, 0.324925, 0.0103123, 0.321703, -0.00547771, -0.0470034, 67.2485, -73.1095, -85.592, 0.209187, 0.000651739, -0.108159, -0.000481912, 0.235494, 0.000486977, 0.10816, -0.00021124, 0.209187, 192.599, -75.9905, -164.203, -0.363005, 0.00579424, -0.0708045, 0.0107658, 0.368888, -0.025007, 0.0702207, -0.0266023, -0.362189, 78.0094, -78.7061, -192.673, 0.22283, 0.000350847, -0.17137, -0.0090348, 0.280739, -0.0111731, 0.171132, 0.0143646, 0.22255, 291.364, -74.977, -143.456, 0.129442, 0.0262086, -0.332707, -0.0488149, 0.354504, 0.00893384, 0.330148, 0.0421404, 0.131766, 68.8102, -72.9481, -176.628, -0.261724, 0.199272, 0.0985342, -0.0314183, 0.117521, -0.321122, -0.220071, -0.253766, -0.0713393, 49.5675, -51.3138, -73.8419, -0.186345, 0.0331615, -0.311346, 0.00525622, 0.362594, 0.035474, 0.313063, 0.013651, -0.185919, 201.344, -35.4919, -0.771363, -0.0113821, 0.0362953, 0.333558, 0.0012378, 0.333752, -0.0362742, -0.335524, 0, -0.0114492, 117.74, -4.14972, 55.5807, 0.0337873, 0.00295193, -0.201932, 0.051434, 0.197861, 0.0114984, 0.195294, -0.0526208, 0.0319074, 133.094, -73.1673, -104.395, -0.267321, -0.0266584, -0.279148, -0.0218992, 0.386473, -0.0159364, 0.279561, 0.0047828, -0.268174, 252.126, -72.1787, -139.759, -0.191042, 0.0838906, -0.174566, 0.187341, 0.142247, -0.136664, 0.0491341, -0.216185, -0.157664, 160.879, -19.2314, 4.76738, -0.282174, 0.0121603, -0.210775, 0.013296, 0.352154, 0.00251709, 0.210706, -0.00593676, -0.282424, 49.9913, -73.0012, -114.519, -0.380709, -0.039943, 0.00902808, -0.0401942, 0.380633, -0.0109292, -0.00783441, -0.0118142, -0.382643, 213.184, -77.5518, -187.505, 0.233292, 0.012861, 0.176538, -0.0055513, 0.292456, -0.0139698, -0.176919, 0.00778246, 0.233228, 232.87, -31.649, -45.2056, -0.263635, 6.08942e-05, -0.149994, 0.00233896, 0.303282, -0.00398793, 0.149975, -0.00462284, -0.263605, 271.663, -66.901, -126.917, 0.242206, -0.00185116, -0.0438293, -0.00381524, 0.244107, -0.0313935, 0.0437021, 0.0315702, 0.24017, 121.726, -14.2109, -18.4512, 0.22325, 0.00737127, -0.209811, -0.00537144, 0.306368, 0.00504809, 0.209871, 0, 0.223315, 84.3632, -1.64262, 43.7685, -0.064474, -0.000902238, 0.209721, 0.000277482, 0.219407, 0.00102921, -0.209723, 0.000567666, -0.0644721, 126.603, -75.8827, -147.054, 0.131473, -0.018953, -0.332903, 0.075477, 0.35025, 0.00986742, 0.324788, -0.073722, 0.132465, 230.084, -30.4246, -33.0069, 0.149707, 0.186014, 0.0912001, -0.109705, 0.166631, -0.159781, -0.175737, 0.0544413, 0.177436, 173.141, -30.8153, 34.4653, -0.2632, 0.00415021, 0.0300296, 0.00195254, 0.264222, -0.019403, -0.0302521, -0.0190543, -0.262517, 99.5969, -79.1454, -194.063, 0.0224343, 0.00892865, 0.223085, -0.00948935, 0.224044, -0.00801275, -0.223062, -0.00863314, 0.0227775, 77.329, -74.1425, -119.687, -0.0912367, 0.0051672, -0.244229, 0.00475044, 0.260695, 0.00374096, 0.244237, -0.0031403, -0.0913063, 271.632, -74.0115, -166.601, 0.000227776, 0, -0.384712, 0, 0.384712, 0, 0.384712, 0, 0.000227776, 9.4516, -0.453491, 48.9513, 0.164821, -0.030241, -0.233607, 0.0465636, 0.283672, -0.00386902, 0.230908, -0.0356177, 0.167528, 73.7491, -80.3537, -203.093, 0.217934, -0.0039211, -0.0261872, 0.00395559, 0.219501, 5.23676e-05, 0.026182, -0.000523822, 0.21797, 45.167, -73.0054, -84.5181, -0.0216581, 0, 0.24961, 0, 0.250548, 0, -0.24961, 0, -0.0216581, 15.8146, -0.453491, 46.3103, 0.139776, 0.139965, -0.205528, -0.123402, 0.243736, 0.0820617, 0.215879, 0.0487012, 0.179982, 159.239, -24.4043, 52.3643, 0.0210396, -0.0232318, -0.283263, -0.000626313, 0.284034, -0.0233415, 0.284213, 0.0023457, 0.0209178, 225.675, -76.5935, -201.423, 0.319859, 0.035634, -0.0711241, -0.0347844, 0.327671, 0.00773471, 0.0715434, 0, 0.321744, 115.723, -3.93036, 25.6795, -0.212452, 0.000517438, 0.00531565, 0.000731178, 0.212346, 0.00855297, -0.00529049, 0.00856856, -0.212281, 308.211, -38.5834, -105.122, 0.232323, -0.110893, -0.209284, 0.106059, 0.310832, -0.0469652, 0.211774, -0.0340159, 0.253112, 266.138, -46.3131, -118.903, 0.174215, -0.000937691, -0.31827, 0.000916102, 0.362831, -0.000567521, 0.31827, -0.000531091, 0.174216, 125.957, -25.9165, -55.0775, -0.0482963, -0.0352029, -0.332131, 0.00529712, 0.335463, -0.0363263, 0.33395, -0.0104122, -0.0474571, 211.155, -77.5677, -181.152, 0.203412, -0.00100963, -0.16505, 0.00100752, 0.26195, -0.000360685, 0.16505, -0.000354737, 0.203414, 114.235, -25.9548, -51.308, 0.0815261, -0.0231469, 0.2582, 0.0121742, 0.27071, 0.0204244, -0.258949, 0.00543966, 0.0822504, 209.504, -75.9843, -127.309, 0.284342, 0.00864922, 0.177729, -0.0130361, 0.335145, 0.004546, -0.177461, -0.0107609, 0.284437, 130.647, -75.8608, -126.057, -0.39269, 0.00955962, -0.0604862, 0.0094482, 0.397321, 0.00145531, 0.0605038, 0, -0.392803, 91.9839, -1.82599, 31.2692, 0.357087, 0.0853295, -0.148793, -0.079179, 0.386846, 0.0318266, 0.152155, 0.00105121, 0.365759, 278.759, -38.9071, -75.7706, 0.242089, 0.0194873, -0.109111, -0.0177363, 0.265541, 0.00807362, 0.109409, -7.25371e-05, 0.242738, 195.256, -34.8191, -20.1718, 0.157846, 0.0218267, 0.123967, -0.0171656, 0.200707, -0.0134814, -0.124698, 0, 0.158776, 106.533, -2.93094, 24.4396, -0.344854, 0.0434493, -0.0520963, 0.0442042, 0.348667, -0.00181654, 0.0514573, -0.00833464, -0.347575, 9.15655, -3.25772, -118.766, -0.23303, 0.161408, 0.1669, 0.16621, 0.281077, -0.0397614, -0.162118, 0.0561624, -0.280668, 169.953, -23.7594, 18.3464, -0.236585, -0.0331216, 0.306825, -0.0140343, 0.387368, 0.0309946, -0.308289, 0.00778378, -0.236873, 238.807, -73.4534, -128.568, -0.201771, -0.000177148, 0.098867, -6.38295e-05, 0.224691, 0.000272333, -0.0988672, 0.000216467, -0.201771, 175.128, -25.8877, -79.6221, 0.32472, -0.0353837, -0.0803742, 0.0441486, 0.331913, 0.0322444, 0.0759139, -0.0416749, 0.325047, 76.2741, -79.6508, -199.638, 0.265108, 0.0288201, 0.170769, -0.0177601, 0.315125, -0.0256111, -0.172271, 0.0118638, 0.265437, 193.014, -34.9669, 5.51982, -0.0271575, 0.006331, -0.208289, 0.00754262, 0.209943, 0.00539783, 0.208249, -0.00677835, -0.0273582, 83.4866, -75.6372, -157.758, 0.0190568, 0.020367, 0.276874, -0.00147436, 0.277529, -0.0203137, -0.277618, -7.58116e-05, 0.0191136, 197.782, -35.0023, -12.4293, 0.22168, 0.024303, 0.0282822, -0.0241076, 0.223477, -0.00307567, -0.0284489, 0, 0.222987, 117.909, -4.16812, 29.2788, -0.128998, 0, -0.248379, 0, 0.279879, 0, 0.248379, 0, -0.128998, 32.8054, -0.453506, -23.947, -0.318762, 0.00774451, 0.0447022, 0.00766947, 0.321881, -0.00107554, -0.0447152, 0, -0.318854, 88.5757, -1.74399, 26.7233, -0.365034, 0.000754759, -0.154951, 0.000626809, 0.39656, 0.000454985, 0.154952, 0.000173896, -0.365035, 155.738, -75.8862, -151.295, 0.136613, 0.00288072, 0.222237, 0.00309395, 0.260813, -0.00528266, -0.222234, 0.0054019, 0.136542, 89.0828, -77.6832, -164.336, 0.280574, 0.0352698, 0.0378031, -0.0358543, 0.283029, 0.00204868, -0.0372491, -0.0067656, 0.282775, 10.9159, -4.03787, -142.23, -0.118019, 0.00735761, -0.259683, 0.0113791, 0.285097, 0.00290617, 0.259538, -0.00915393, -0.118213, 142.81, -75.8901, -117.194, 0.00397247, 0.00534233, -0.207076, 0.0065452, 0.207007, 0.00546612, 0.207041, -0.00664662, 0.00380034, 112.05, -75.6958, -135.867, 0.263059, -0.0302547, -0.219431, -0.0167779, 0.336974, -0.0665752, 0.22087, 0.0616312, 0.256288, 71.053, -19.2322, -31.7036, 0.195102, 0.0057633, 0.108896, -0.0085257, 0.22332, 0.00345577, -0.108715, -0.00717037, 0.195156, 131.484, -75.9035, -126.714, 0.27581, 0.0880383, 0.0263258, -0.0824529, 0.200345, 0.193851, 0.0405625, -0.191379, 0.215043, 136.409, -17.5124, -6.27045, 0.0999398, 0.000553808, -0.273277, -0.000310047, 0.290978, 0.000476293, 0.273277, 0.000127597, 0.0999402, 147.682, -75.8678, -157.601, 0.233767, 0, -0.053356, 0, 0.239778, 0, 0.053356, 0, 0.233767, 28.6349, -0.453491, 61.4139, 0.10836, -0.0343775, 0.309324, 0.00171129, 0.327597, 0.0358089, -0.311224, -0.0101681, 0.107896, 225.504, -75.5404, -164.348, 0.0232667, 0.0114594, -0.286819, 0.0101268, 0.287548, 0.01231, 0.286869, -0.0110801, 0.0228281, 81.3574, -74.2426, -118.117, -0.180664, -0.000713656, -0.183999, -0.00028223, 0.257866, -0.000723041, 0.184, -0.000305184, -0.180664, 142.635, -25.8939, -70.4193, -0.028829, -0.0574098, -0.216252, 0.0504691, 0.210751, -0.0626778, 0.217976, -0.0563893, -0.0140888, 286.3, -44.5769, -120.335, -0.323831, -0.0299849, 0.171864, -0.025061, 0.366598, 0.0167394, -0.172651, 0.00302757, -0.324785, 233.638, -75.8699, -210.173, -0.134175, -0.000965871, -0.192787, -0.00105054, 0.234881, -0.000445619, 0.192787, 0.000607702, -0.134177, 106.252, -75.9129, -167.759, -0.0458386, -0.00411916, 0.225987, -0.00135823, 0.230589, 0.00392753, -0.226021, -0.000550281, -0.0458554, 48.1138, -72.985, -98.0165, -0.30302, -0.00958654, 0.211473, 0.00856048, 0.368404, 0.0289668, -0.211517, 0.0286436, -0.301784, 331.214, -37.1253, -130.705, 0.309812, 0.00218083, 0.0386395, -0.00554758, 0.311007, 0.0269272, -0.0383013, -0.0274061, 0.308648, 81.1456, -77.6893, -178.454, 0.361833, 0.0124933, -0.00334271, -0.0124346, 0.361797, 0.00621808, 0.0035548, -0.00609931, 0.361995, 79.331, -73.7588, -99.3566, 0.204544, 0.0062219, -0.158179, -0.00492187, 0.25857, 0.0038062, 0.158224, 0, 0.204603, 48.1747, -0.771774, 38.4916, -0.171182, 0.0741494, -0.180285, 0.0499017, 0.248604, 0.0548659, 0.188443, 0.00152448, -0.178301, 2.11254, -2.81636, -153.479, -0.262214, 0.177951, 0.17637, 0.184455, 0.309885, -0.0384285, -0.169556, 0.0619185, -0.314557, 159.126, -21.4512, 37.9102, -0.282456, 0, 0.0528677, 0, 0.287361, 0, -0.0528677, 0, -0.282456, 12.0383, -0.453506, -28.8116, -0.208135, 0, -0.3118, 0, 0.374886, 0, 0.3118, 0, -0.208135, 22.4684, -0.453506, -12.3931, 0.312039, 0.0123396, 0.174254, -0.013711, 0.357346, -0.000752635, -0.174152, -0.00602429, 0.312282, 64.0622, -72.8294, -75.5059, -0.293613, -0.00128846, -0.159821, -0.000915237, 0.334292, -0.00101361, 0.159823, -0.000452704, -0.293614, 119.357, -25.9521, -63.8602, -0.180652, -0.0284285, -0.296948, -0.0172354, 0.34757, -0.0227896, 0.297807, 0.00287042, -0.181449, 224.072, -76.584, -218.45, -0.270944, 0, 0.0394292, 0, 0.273798, 0, -0.0394292, 0, -0.270944, 5.56643, -0.453506, -58.6735, 0.286311, 0.0132847, -0.17121, -0.00479563, 0.33335, 0.017846, 0.171657, -0.012845, 0.286063, 61.9395, -73.5142, -119.298, -0.115176, 0.0721221, -0.355197, 0.0481191, 0.372444, 0.0600208, 0.359237, -0.0267647, -0.121921, 262.16, -45.3999, -103.904, -0.242357, 0.0264226, 0.0172258, 0.0263562, 0.242968, -0.0018733, -0.0173274, 0, -0.243786, 118.043, -4.18262, 25.2374, -0.243231, -0.0309482, 0.16703, -0.03071, 0.294918, 0.00992373, -0.167074, -0.00915379, -0.244991, 230.697, -74.9967, -164.392, 0.219553, 0.0668337, 0.0448177, -0.0651953, 0.224076, -0.0147719, -0.0471693, 0.00137408, 0.229024, 5.9628, -3.70694, -195.521, -0.208739, 0.00527541, -0.295827, -0.00231428, 0.361998, 0.00808842, 0.295865, 0.00655351, -0.208649, 288.021, -38.7198, -95.4838, 0.222985, -0.0126096, -0.269005, 0.0377145, 0.347273, 0.0149842, 0.266646, -0.0385734, 0.222838, 253.593, -32.0232, -31.8836, -0.204411, 0.000980043, 0.289167, 0.000306329, 0.35412, -0.000983641, -0.289169, -0.000317649, -0.204411, 200.818, -75.9962, -145.121, 0.376208, 0.00766939, 0.090597, -0.00854715, 0.386935, 0.00273686, -0.0905183, -0.00466097, 0.376276, 269.88, -74.1243, -178.846, 0.138426, 0.0695521, 0.151484, -0.0449283, 0.20519, -0.0531549, -0.160519, 0.00254802, 0.145512, 37.2726, -5.84846, -41.2589, 0.24525, 0.0091573, 0.291047, -0.00590076, 0.380599, -0.00700265, -0.291131, 0, 0.245321, 92.8159, -1.84602, 61.0007, -0.364586, 0.0397346, -0.0240377, 0.0396485, 0.365378, 0.00261408, 0.0241794, 0, -0.366736, 106.313, -2.90698, 40.0592, 0.214271, -0.0177408, 0.0450225, 0.0180498, 0.218924, 0.000363084, -0.0448995, 0.00334526, 0.215004, 230.88, -73.6013, -157.73, 0.246839, -0.00120896, -0.135397, 0.0545105, 0.258592, 0.0970675, 0.123946, -0.111319, 0.226956, 307.965, -39.5103, -138.28, 0.209015, 0, 0.267576, 0, 0.339535, 0, -0.267576, 0, 0.209015, 6.57917, -0.453506, -46.544, 0.148402, 0, -0.210957, 0, 0.257927, 0, 0.210957, 0, 0.148402, 13.6922, -0.453506, -54.4423, 0.145465, 0.243439, -0.100889, -0.178078, 0.175756, 0.16733, 0.19424, -0.021178, 0.228961, 43.918, -8.01933, -29.2246, -0.338858, 0.00726225, 0.139425, 0.00503578, 0.366394, -0.00684547, -0.139524, -0.00441353, -0.338866, 261.543, -73.8195, -167.261, 0.135644, -0.0187376, 0.236405, -0.00314616, 0.272179, 0.0233782, -0.237125, -0.0143298, 0.134921, 87.1397, -73.2402, -84.8928, -0.197749, 0.0300574, -0.08956, 0.0273802, 0.217084, 0.0124005, 0.0904144, 0, -0.199635, 140.709, -11.9281, 5.77662, -0.172908, -0.000878102, 0.292488, -0.000874986, 0.339773, 0.000502803, -0.292488, -0.000497341, -0.17291, 130.416, -25.8824, -39.8183, 0.10458, 0.012395, -0.343431, 0.00218209, 0.35895, 0.0136196, 0.343648, -0.00605133, 0.104427, 62.1597, -73.1397, -97.809, 0.278016, -0.00148865, -0.268106, 0.00143463, 0.38623, -0.000656862, 0.268106, -0.000523039, 0.27802, 121.121, -25.9162, -42.4024, -0.203759, 0.00624468, 0.216256, 0.0155043, 0.296727, 0.00603996, -0.21579, 0.015423, -0.203766, 189.145, -31.5448, -45.7828, -0.164076, 0.0107152, -0.161979, -0.010052, 0.229193, 0.0253438, 0.162021, 0.0250706, -0.162461, 202.149, -30.109, -72.4691, -0.345866, 0.00954714, 0.194496, 0.0083216, 0.396802, -0.00467962, -0.194553, 0, -0.345966, 79.6203, -1.52849, 28.8706, 0.197106, 0.0322431, -0.167733, -0.020509, 0.258741, 0.0256369, 0.169568, -0.00618502, 0.198073, 3.85035, -1.93848, -91.2389, -0.179498, -0.0257554, 0.328835, -0.0296526, 0.374118, 0.0131159, -0.328506, -0.0196967, -0.180862, 78.0523, -73.1694, -71.6658, -0.361953, 0.0111201, 0.143803, 0.00862648, 0.389445, -0.00840241, -0.143975, -0.00462169, -0.362026, 180.014, -53.4489, -114.138, -0.0311912, 0.0151617, 0.2045, -0.00860564, 0.206573, -0.016628, -0.204881, -0.010985, -0.0304348, 193.804, -57.9206, -122.327, -0.322137, 0.0365095, -0.0945313, 0.0350323, 0.335721, 0.0102802, 0.0950887, 0, -0.324037, 106.229, -2.89792, 49.2324, 0.142877, 0.166263, 0.0643143, -0.114991, 0.148937, -0.129569, -0.136223, 0.0486606, 0.17683, 168.536, -28.2262, 42.2755, -0.150804, 0.00123736, -0.239461, -0.00962557, 0.282729, 0.00752278, 0.239271, 0.0121537, -0.150621, 170.629, -36.0487, -2.24792, 0.147904, 0.0006929, 0.20201, -0.000590535, 0.250367, -0.000426398, -0.20201, -0.000224581, 0.147905, 180.751, -75.9567, -163.401, -0.211881, 0.00423887, -0.0291335, 0.00455004, 0.213859, -0.00197524, 0.0290865, -0.00257612, -0.211914, 275.615, -74.0921, -166.735, -0.206696, 0.000826118, 0.215362, 0.000378857, 0.298503, -0.000781431, -0.215363, -0.000267759, -0.206696, 157.937, -75.894, -164.487, -0.280298, -0.0248927, 0.118585, -0.0219421, 0.30434, 0.0120212, -0.119166, 0.00251341, -0.281144, 236.546, -75.7556, -195.219, 0.215027, 0, 0.213099, 0, 0.302734, 0, -0.213099, 0, 0.215027, 18.7387, -0.453491, 27.5768, 0.18439, 0.00865383, 0.308771, -0.00443691, 0.359637, -0.00742985, -0.30886, 0, 0.184443, 37.5459, -0.516006, 49.7641, 0.176914, 0.00298087, -0.346096, -0.00915983, 0.388592, -0.00133535, 0.345987, 0.00876356, 0.176934, 217.524, -30.9689, -61.2735, -0.325302, 0.124117, 0.168156, 0.112454, 0.366165, -0.0527254, -0.17617, 0.004547, -0.34416, 41.6196, -6.96063, -70.3546, 0.162246, 0.00633913, -0.14543, -0.00761429, 0.217841, 0.00100071, 0.145368, 0.00433524, 0.162367, 149.23, -80.426, -207.415, 0.0441341, 0.00105488, 0.378599, -0.00046175, 0.381162, -0.0010082, -0.3786, -0.000341906, 0.0441352, 200.077, -75.9858, -136.007, 0.1057, 0.00746811, -0.239256, -0.000177405, 0.261546, 0.00808549, 0.239373, -0.00310386, 0.105655, 188.881, -53.6442, -109.262, -0.162376, -0.00673025, 0.350355, -0.00973786, 0.386078, 0.00290337, -0.350284, -0.00761309, -0.16249, 118.913, -4.80243, -11.5136, -0.0246928, 0.000925432, -0.379285, -0.0152324, 0.379778, 0.00191832, 0.37898, 0.0153248, -0.0246356, 296.343, -38.6281, -103.297, -0.206722, 0.0318249, -0.0936665, 0.0279567, 0.226939, 0.0154062, 0.0948929, 0.00247059, -0.208589, 257.778, -34.662, -54.0858, -0.0610596, 0.00964052, -0.313974, 0.0119759, 0.31969, 0.00748702, 0.313894, -0.0103217, -0.0613609, 71.3094, -75.0231, -150.11, 0.0375858, 0.017147, -0.275896, -0.0176221, 0.278017, 0.0148781, 0.275866, 0.0154233, 0.0385403, 20.7458, -71.4434, -120.753, 0.0887851, -0.0236934, 0.341099, -0.0103079, 0.352065, 0.0271382, -0.341765, -0.0167737, 0.0877934, 219.776, -52.0374, -116.946, 0.165477, 0.218643, 0.157121, -0.148469, 0.22795, -0.160842, -0.224609, 0.0104043, 0.222075, 15.8102, -72.7521, -129.714, -0.0109572, 0.0130351, -0.327146, 0.0130427, 0.327087, 0.0125959, 0.327146, -0.0126037, -0.0114594, 69.6414, -74.3631, -133.363, 0.0378582, -0.00130981, -0.337715, 0.000603259, 0.33983, -0.00125038, 0.337717, -0.000460204, 0.0378602, 115.115, -25.9767, -70.0008, 0.140482, 0.0249115, 0.149163, -0.0176263, 0.2049, -0.0176197, -0.150198, -0.000745825, 0.141581, 40.9918, -72.3076, -144.613, -0.31112, 0.0320367, 0.106961, 0.0337339, 0.328823, -0.000365485, -0.106438, 0.0105718, -0.312765, 252.447, -33.5421, -72.6596, -0.193664, -0.0853322, -0.260218, 0.0202981, 0.313363, -0.117866, 0.273099, -0.0838026, -0.175769, 288.372, -45.1541, -124.604, 0.348651, 0.0448622, -0.0901128, -0.0412524, 0.360005, 0.0196193, 0.0918214, -0.00860567, 0.350977, 12.5229, -4.62038, -158.221, 0.0562233, -0.0210334, 0.32696, -0.0180919, 0.331033, 0.0244065, -0.327136, -0.0219223, 0.0548433, 233.998, -75.1247, -171.122, 0.274741, -0.0012188, 0.111194, 0.00141746, 0.296388, -0.000253587, -0.111192, 0.000766836, 0.274743, 131.021, -75.8379, -157.318, 0.203193, -0.0168565, 0.0344709, 0.0169041, 0.206089, 0.00113563, -0.0344475, 0.001702, 0.203888, 223.12, -76.8307, -198.012, 0.0537547, 0.125998, 0.257255, -0.0436, 0.262295, -0.119356, -0.283116, -0.0164705, 0.0672254, 238.995, -28.4525, -88.512, -0.101787, 0.0441471, 0.302161, 0.0140933, 0.318844, -0.0418371, -0.305043, 0, -0.102758, 137.013, -11.4164, 54.6376, -0.289829, 0.00724369, -0.0814846, 0.00697333, 0.301065, 0.00196054, 0.0815082, 0, -0.289912, 76.6886, -1.45795, 49.1505, 0.107695, 0.000474181, -0.288729, -0.000812832, 0.308159, 0.000202908, 0.288728, 0.000690666, 0.107696, 187.749, -25.9081, -89.9695, 0.285635, 0.0249931, -0.205571, -0.0447868, 0.349393, -0.0197511, 0.202184, 0.0420869, 0.286045, 152.306, -31.641, -36.8435, 0.395623, 0, -0.0517436, 0, 0.398992, 0, 0.0517436, 0, 0.395623, 7.9392, -0.453506, -15.0975, 0.148238, 0.00916056, 0.350649, -0.00356701, 0.380696, -0.00843756, -0.350751, 0, 0.148281, 77.1358, -1.4687, 12.1252, -0.206557, -0.00137108, 0.243471, -0.0970845, 0.293268, -0.0807136, -0.223282, -0.126247, -0.19014, 321.501, -38.1489, -135.265, 0.32633, -0.00771239, -0.032847, 0.00705549, 0.327921, -0.00689978, 0.0329943, 0.00615678, 0.326348, 80.1817, -79.8065, -217.694, -0.248493, -0.00109193, 0.136056, -0.00114202, 0.283302, 0.000187882, -0.136055, -0.000383652, -0.248496, 113.384, -25.985, -71.2025, 0.0892406, 0.00493944, 0.184884, -0.00214715, 0.205295, -0.00444835, -0.184938, 0, 0.0892664, 50.3677, -0.824554, 60.9684, 0.274394, -0.0065204, -0.231206, 0.0132892, 0.358583, 0.00565884, 0.230916, -0.0128883, 0.274413, 30.0613, -0.0385132, -3.36684, 0.287165, 0.00867477, -0.0802376, -0.00995027, 0.298105, -0.00338216, 0.0800894, 0.00593256, 0.287276, 150.148, -80.4197, -209.071, 0.0606333, 0.103231, 0.357563, 3.17276e-05, 0.362276, -0.104597, -0.372167, 0.0168492, 0.0582452, 174.858, -32.511, 46.2066, -0.0641993, 0.00211228, -0.268216, 0.00158728, 0.27579, 0.001792, 0.26822, -0.00112649, -0.0642091, 248.68, -31.7829, -89.2865, 0.213413, 0.00371541, -0.103428, 0.00410546, 0.23654, 0.0169684, 0.103413, -0.017058, 0.21277, 82.8032, -79.423, -201.57, -0.0819103, -0.0335617, 0.383954, 0.00074091, 0.392515, 0.0344681, -0.385418, 0.00788721, -0.081533, 217.224, -74.9913, -143.877, 0.13545, -0.0175685, 0.198449, 0.00649611, 0.240233, 0.0168338, -0.199119, -0.00411354, 0.135544, 238.014, -50.5585, -111.278, 0.174967, 0.00982188, -0.338201, 0.00634622, 0.380584, 0.0143359, 0.338284, -0.0122198, 0.174655, 122.588, -75.6286, -125.303, -0.298812, 0.012311, -0.194556, 0.0135968, 0.356517, 0.00167657, 0.19447, -0.00601031, -0.299061, 60.8396, -72.9707, -90.4836, -0.0808068, -0.0451507, 0.210556, -0.0571298, 0.221328, 0.0255355, -0.207626, -0.0433277, -0.0889734, 240.709, -31.0911, -2.41888, 0.083481, 0.00061095, 0.204362, -0.000414352, 0.220755, -0.000490697, -0.204363, -0.000198019, 0.0834818, 194.166, -75.9732, -140.22, 0.0234088, 0.000677704, 0.277356, 0.0111258, 0.278116, -0.00161858, -0.277134, 0.0112225, 0.0233626, 295.556, -38.6893, -101.734, -0.123508, 0.00676861, -0.252758, 0.00297164, 0.28132, 0.0060814, 0.252831, 0, -0.123544, 78.7177, -1.50677, 52.2865, 0.20372, 0.0315659, -0.102335, -0.028207, 0.227979, 0.0141693, 0.103311, 0, 0.205663, 135.579, -11.2178, 13.4156, -0.353964, 0.000862412, -0.0130552, 0.000334752, 0.353916, 0.0143033, 0.0130793, 0.0142812, -0.353676, 315.114, -38.8485, -98.9701, -0.339931, 0.0525805, -0.154077, 0.0513413, 0.373127, 0.0140624, 0.154494, -0.00830524, -0.343686, 96.6685, -11.1665, -17.8607, -0.303838, 0.0277461, 0.109857, 0.0297738, 0.322907, 0.000792097, -0.109325, 0.0108288, -0.305102, 227.267, -36.9978, -23.1786, 0.326312, 0.00914251, -0.194702, -0.00785113, 0.379985, 0.00468456, 0.194758, 0, 0.326406, 90.1903, -1.78284, 14.7786, 0.265222, 0.0295422, 0.0587625, -0.0288428, 0.271654, -0.00639039, -0.0591089, 0, 0.266786, 127.727, -5.23576, 39.9224, 0.238079, 0.0439095, -0.259898, -0.0233925, 0.35236, 0.0381023, 0.262541, -0.00842292, 0.239077, 11.8119, -4.72841, -166.446, 0.176738, 0, -0.120085, 0, 0.213674, 0, 0.120085, 0, 0.176738, 32.8385, -0.453491, 64.2423, -0.28264, 0, 0.0174561, 0, 0.283178, 0, -0.0174561, 0, -0.28264, 29.4277, -0.453506, -26.2081, -0.255206, 0.0475657, -0.183585, 0.0514019, 0.31362, 0.00980192, 0.182548, -0.0218116, -0.259415, 80.6882, -8.41541, -12.9481, 0.135462, 0.00585467, -0.182123, 0.00235423, 0.22686, 0.0090439, 0.182201, -0.00728405, 0.135286, 121.172, -75.4301, -120.258, -0.0493542, 0.00888071, 0.340736, -0.00966601, 0.344115, -0.0103688, -0.340715, -0.0110489, -0.0490632, 144.886, -75.8769, -115.114, -0.143699, 0.0104266, -0.265609, 0.00944048, 0.301947, 0.00674556, 0.265646, -0.00509034, -0.143919, 78.061, -73.7974, -104.252, -0.0230131, 0.00648711, -0.25044, 0.00863301, 0.251366, 0.00571779, 0.250376, -0.00807089, -0.0232162, 102.515, -75.6798, -143.032, 0.247752, 0.0373703, -0.181934, -0.0294538, 0.307375, 0.0230274, 0.183382, -0.00111883, 0.249494, 45.33, -72.7642, -125.149, 0.276113, -0.00472686, -0.0148065, 0.0154849, 0.106359, 0.25481, 0.00133919, -0.255236, 0.106455, 25.0783, -1.48387, -75.8524, -0.212831, 0.000713838, -0.203284, 0.00094113, 0.294314, 4.81635e-05, 0.203283, -0.000615208, -0.212833, 160.392, -25.8595, -65.0043, 0.27472, 0.00613379, 0.278957, -0.02436, 0.390506, 0.0154034, -0.277959, -0.0281612, 0.274356, 77.2318, -78.2503, -186.521, 0.158912, 0.002717, -0.358702, -0.0103823, 0.392195, -0.00162886, 0.358562, 0.010152, 0.158927, 112.975, -1.40256, 2.51637, 0.0171699, 0.000339048, -0.21967, -0.000518757, 0.220339, 0.000299534, 0.219669, 0.000493838, 0.0171706, 198.954, -25.9323, -86.8428, 0.0452285, -0.00102058, -0.365984, 0.000558315, 0.368768, -0.000959347, 0.365985, -0.000436436, 0.0452299, 129.186, -25.9374, -75.4362, -0.281704, -0.0115636, 0.152692, -0.0269717, 0.318466, -0.0256426, -0.150735, -0.0353736, -0.280772, 249.906, -30.904, -20.6023, -0.0223747, -0.000179572, -0.226664, -0.000236007, 0.227765, -0.000157148, 0.226663, 0.000219428, -0.0223749, 166.054, -25.8977, -77.0801, -0.203839, -0.0177346, -0.0797223, -0.0177365, 0.218849, -0.00333427, 0.0797219, 0.00334411, -0.204582, 212.995, -74.9556, -163.956, 0.212988, 0.00934638, 0.324815, -0.00512506, 0.388418, -0.00781592, -0.324909, 0, 0.21305, 35.0103, -0.454987, 24.0308, 0.00893154, 0, 0.372472, 0, 0.372579, 0, -0.372472, 0, 0.00893154, 6.41285, -0.453506, -11.2256, 0.0481103, 0.00657048, -0.268814, -0.00115754, 0.273085, 0.00646771, 0.268891, 0, 0.0481242, 74.7776, -1.41194, 52.7526, 0.209542, 0.0152176, -0.0612143, -0.0190631, 0.217713, -0.011132, 0.0601279, 0.0159921, 0.209798, 160.467, -35.235, -17.3831, -0.109414, 0.0401409, 0.289414, 0.0563658, 0.306135, -0.0211508, -0.286696, 0.0448683, -0.11461, 158.786, -34.549, -22.2075, -0.35424, -0.024658, -0.0562183, -0.0213569, 0.358177, -0.0225279, 0.0575535, -0.0188575, -0.354382, 92.3856, -72.2195, -72.3671, 0.368184, 0.00896066, 0.0560568, -0.00885857, 0.372427, -0.00134874, -0.056073, 0, 0.36829, 67.8553, -1.24538, 60.1968, 0.153546, -0.0603791, 0.174708, -0.154335, 0.083122, 0.164367, -0.101732, -0.217233, 0.014334, 76.478, -39.3596, -56.4035, 0.151892, 0.0444433, 0.332504, -0.0196857, 0.365552, -0.0398679, -0.334883, -0.00133059, 0.153156, 53.588, -73.8447, -146.187, 0.147108, 0.00801443, -0.179559, -0.00204992, 0.232092, 0.00867976, 0.179726, -0.00391271, 0.14707, 55.7397, -73.0916, -108.103, -0.140775, 0.0945176, -0.15384, 0.042077, 0.206876, 0.0885988, 0.175585, 0.0262038, -0.144573, 154.295, -18.4783, 34.2413, -0.355958, 0.000449928, -0.0569965, -0.00246885, 0.360022, 0.0182606, 0.0569447, 0.0184213, -0.35549, 281.856, -74.5616, -151.343, -0.379688, 0.00921895, -0.0511848, 0.0091363, 0.383122, 0.00123164, 0.0511996, 0, -0.379798, 39.1318, -0.554169, 51.4765, -0.385207, -0.0250885, 0.0906065, -0.0303678, 0.394854, -0.0197734, -0.0889762, -0.0261488, -0.385516, 234.473, -75.3845, -175.501, 0.152068, 0.0999317, 0.274702, -0.278557, 0.143416, 0.10203, -0.0886205, -0.279317, 0.150669, 166.586, -27.2508, 2.32912, 0.211031, 0.0319733, -0.0110874, -0.0310743, 0.210813, 0.0164815, 0.0134018, -0.0146616, 0.212802, 73.8928, -7.71889, -17.7524, -0.278679, -0.00331581, 0.181529, -0.00433048, 0.332576, -0.000573225, -0.181507, -0.00284377, -0.278698, 9.96294, -0.331985, -9.47438, 0.188225, 0.0173026, -0.0718703, -0.018573, 0.201367, -0.000163271, 0.0715525, 0.00675287, 0.189019, 212.841, -36.7592, 6.66735, -0.169452, 0.0112937, 0.128443, 0.0108956, 0.212607, -0.00431963, -0.128477, 0.0031348, -0.169773, 32.4618, -72.2846, -118.524, 0.241997, 0.036877, 0.111233, -0.0335069, 0.266337, -0.0154013, -0.112294, 0, 0.244306, 134.134, -11.0177, 61.0258, 0.336851, 0.037973, 0.135241, -0.0513621, 0.360343, 0.0267528, -0.130744, -0.0437245, 0.337927, 205.291, -77.4331, -205.301, -0.18378, 0.00863362, 0.169571, 0.00348435, 0.250024, -0.00895349, -0.169755, -0.004215, -0.183765, 71.6054, -73.2642, -85.8435, 0.104539, 0.000436276, -0.203999, -0.000288421, 0.229225, 0.000342423, 0.203999, 0.000100518, 0.104539, 157.269, -75.8866, -156.995, 0.0878996, 0.00784464, 0.31397, -0.00211488, 0.326042, -0.00755418, -0.314061, 0, 0.0879251, 85.695, -1.67467, 32.7358, -0.209053, 0.00234965, -0.18202, -0.0223702, 0.274745, 0.0292392, 0.180656, 0.0367401, -0.207012, 282.384, -39.6089, -86.2862, -0.313646, -0.000871716, -0.0289458, -0.00083377, 0.314978, -0.000451309, 0.0289469, -0.000372777, -0.313647, 127.716, -25.9468, -79.8881, 0.156943, -0.00963275, -0.129431, 0.00969545, 0.203398, -0.00338137, 0.129427, -0.00355605, 0.157201, 81.0749, -19.1322, -24.0895, -0.224174, 0.0164048, 0.055701, 0.0224847, 0.229332, 0.0229496, -0.0535365, 0.0276248, -0.223599, 139.074, -31.1391, -33.1514, -0.0580564, 0.00555882, 0.223625, 0.00139685, 0.231038, -0.00538045, -0.223689, 0, -0.0580732, 86.7152, -1.69922, 17.9188, 0.0966685, 0.0323641, -0.261778, -0.0428866, 0.277023, 0.0184118, 0.260261, 0.0336277, 0.100266, 201.915, -34.5888, -29.6337, 0.177289, -0.0230407, 0.263744, -0.00087886, 0.317365, 0.0283158, -0.264747, -0.0164829, 0.176523, 134.552, -70.0277, -88.6758, 0.298276, 0.00931296, 0.246623, -0.00717732, 0.387029, -0.00593442, -0.246695, 0, 0.298362, 80.0413, -1.53862, 9.24574, 0.169898, -0.0206853, 0.19251, 0.00710269, 0.25661, 0.0213045, -0.193488, -0.00874351, 0.169821, 247.339, -74.644, -181.645, -0.199367, 0.00984741, 0.14629, 0.00229613, 0.247098, -0.013504, -0.146603, -0.00952149, -0.199153, 68.0235, -73.8716, -122.279, -0.304065, -0.0224099, 0.114497, -0.0195505, 0.324883, 0.0116682, -0.115019, 0.00402058, -0.304666, 253.653, -72.1331, -134.944, -0.200271, 0.122301, -0.0840292, 0.091695, 0.212976, 0.091436, 0.116664, 0.042555, -0.216115, 162.363, -23.1165, 36.9414, -0.233463, 0.01031, -0.0223433, 0.00966457, 0.234447, 0.0071983, 0.0226299, 0.00623881, -0.23358, 238.095, -31.5085, -59.1209, -0.0230891, 0, -0.256982, 0, 0.258017, 0, 0.256982, 0, -0.0230891, 34.5758, -0.453506, -33.1944, -0.260275, 0, 0.205261, 0, 0.331474, 0, -0.205261, 0, -0.260275, 24.6008, -0.453506, -10.9066, 0.111944, 0.00538144, -0.193609, -0.00269368, 0.223642, 0.00465875, 0.193665, 0, 0.111977, 40.5276, -0.587753, 42.5572, -0.382443, 0.0353027, 0.0986326, 0.0292178, 0.394469, -0.027898, -0.100603, -0.0196392, -0.383054, 265.132, -73.7767, -149.482, 0.210623, 0.0328534, 0.216572, -0.0229051, 0.302102, -0.0235521, -0.217849, 0, 0.211865, 122.409, -4.65739, 29.8166, -0.238665, -0.0010029, -0.0502039, -0.00111131, 0.243887, 0.000411047, 0.0502017, 0.000631001, -0.238666, 123.7, -75.8138, -178.236, 0.133833, 0.00566638, -0.193756, -0.00322039, 0.235484, 0.00466229, 0.193812, 0, 0.133872, 49.8313, -0.81163, 21.6763, -0.124142, -0.0692021, -0.363393, -0.0144511, 0.383924, -0.0681752, 0.369641, -0.00823174, -0.124709, 250.672, -32.1171, -92.9488, -0.379208, 0.00965962, 0.0616595, -0.00634471, 0.371746, -0.0972581, -0.0620882, -0.0969849, -0.366651, 189.347, -78.749, -185.916, -0.295336, 0.0117714, -0.0123746, 0.0122292, 0.295376, -0.0108884, 0.0119224, -0.0113818, -0.29537, 82.8957, -74.2873, -117.686, -0.0804363, 0.0237599, -0.313611, 0.00598887, 0.323762, 0.0229929, 0.314452, -8.84409e-05, -0.0806588, 182.544, -33.8829, -8.58892, 0.279754, 0.0721657, 0.00617711, -0.0592055, 0.213647, 0.185359, 0.0417223, -0.180708, 0.221613, 152.999, -21.1931, -3.65068, -0.291699, 0.0458216, 0.224042, 0.0309341, 0.367704, -0.034928, -0.226578, -0.00878971, -0.293203, 7.1502, -2.59154, -101.356, -0.258377, 0.0185934, -0.0422334, 0.0131546, 0.259927, 0.0339558, 0.0442304, 0.0313101, -0.25681, 139.499, -33.3447, -15.0943, 0.251198, 0.00952434, -0.305942, -0.00604386, 0.395855, 0.00736103, 0.306031, 0, 0.25127, 93.2914, -1.85747, 59.5618, 0.356954, 0.00871257, 0.0609259, -0.00858837, 0.362116, -0.00146589, -0.0609435, 0, 0.357057, 85.0773, -1.65979, 51.1939, 0.254381, 0.143247, 0.00031531, -0.140399, 0.249451, -0.0573765, -0.0284224, 0.0498431, 0.286247, 165.409, -24.092, 33.0683, -0.342568, -0.0010243, 0.199338, -0.0011771, 0.396343, 1.37309e-05, -0.199337, -0.000580145, -0.342569, 140.928, -25.8839, -59.3749, -0.200746, -0.00473471, 0.0155732, -0.00442727, 0.201314, 0.00413556, -0.0156634, 0.00377971, -0.20076, 98.9525, -79.661, -201.932, 0.274489, 0.00707934, 0.195238, 0.00437534, 0.336388, -0.0183488, -0.195318, 0.0174844, 0.273967, 194.847, -31.4223, -50.4467, -0.266582, 0.00253836, -0.196184, -0.00237945, 0.330905, 0.00751477, 0.196185, 0.00746259, -0.266488, 220.999, -30.7949, -70.1737, 0.379866, 0.0275438, -0.108736, -0.0343942, 0.394061, -0.020336, 0.106768, 0.0289457, 0.38032, 161.312, -35.2148, -18.4619, -0.337297, -0.0269188, -0.155181, -0.016352, 0.370783, -0.0287763, 0.156648, -0.0192572, -0.337144, 106.194, -72.0509, -87.9907, 0.204511, 0.051942, 0.314494, -0.0283166, 0.375142, -0.0435448, -0.317494, 0, 0.206462, 133.082, -10.872, 9.51474, -0.0609339, -0.00665348, -0.249116, -0.0208932, 0.255689, -0.00171852, 0.248328, 0.0198799, -0.061272, 312.86, -37.7471, -128.85, -0.306198, 0.0313349, -0.170704, 0.0358573, 0.350133, -4.7116e-05, 0.169811, -0.0174319, -0.307797, 279.873, -74.277, -133.034, -0.196087, -0.00521148, -0.0436081, -0.00845338, 0.200273, 0.0140772, 0.0430972, 0.0155714, -0.195651, 332.788, -37.8314, -121.098, -0.129099, -0.0683316, 0.225303, -0.0930346, 0.250845, 0.0227692, -0.216276, -0.0671169, -0.144282, 279.284, -43.5766, -109.454, 0.0191428, 0.00353703, 0.244572, -0.0631318, 0.237079, 0.00151268, -0.23631, -0.0630507, 0.0194079, 115.683, -73.9425, -108.286, 0.388844, 0.0157848, 0.0769143, -0.0184372, 0.396084, 0.0119235, -0.0763219, -0.0152624, 0.388981, 68.651, -74.7444, -144.282, -0.0764131, -0.000244534, -0.300601, -0.000349843, 0.310161, -0.00016338, 0.300601, 0.000298808, -0.0764133, 164.668, -25.8975, -78.4475, 0.149771, 0.00772704, 0.335771, 0.0142892, 0.367164, -0.0148232, -0.335556, 0.0190841, 0.149236, 180.71, -30.9366, -54.0679, -0.274287, 0.000760764, 0.0181705, 0.000742801, 0.274888, -0.000296326, -0.0181712, -0.000246577, -0.274288, 167.387, -75.9296, -174.698, -0.328791, 0.0241456, -0.0121992, 0.0241323, 0.329018, 0.000805204, 0.0122254, -8.98767e-05, -0.329676, 185.084, -34.0688, -6.44971, 0.275231, 0.0416278, 0.230391, -0.00373838, 0.356316, -0.0599143, -0.234092, 0.0432531, 0.271836, 214.872, -33.9036, -47.7481, -0.188256, 0.0268632, 0.159932, 0.0204728, 0.24702, -0.0173925, -0.160875, 0, -0.189366, 117.673, -4.1424, 6.55558, 0.276823, 0.00247283, -0.165347, -0.0058505, 0.322363, -0.00497381, 0.165262, 0.00726995, 0.27679, 227.748, -31.0556, -60.9092, 0.119959, -0.0108541, -0.186306, 0.00452979, 0.221579, -0.00999247, 0.186567, 0.00159908, 0.120033, 238.918, -31.4387, -6.77431, 0.237189, 0.00536797, -0.0279021, 0.0193723, 0.141058, 0.191817, 0.020786, -0.192718, 0.139621, 266.199, -42.1659, -97.4115, 0.18676, -0.00253849, 0.224836, 0.000418565, 0.292281, 0.00295228, -0.22485, -0.00156437, 0.186753, 188.763, -45.2069, -106.61, -0.270037, 0.00760873, 0.164578, 0.00649714, 0.316237, -0.00395978, -0.164626, 0, -0.270115, 71.7971, -1.34023, 62.1138, 0.280697, -0.000221304, 0.000203103, 0.000221499, 0.280697, -0.000270262, -0.00020289, 0.000270422, 0.280697, 175.859, -25.8994, -67.4495, 0.158935, 0.00842997, -0.230147, 0.00264235, 0.279547, 0.0120642, 0.230286, -0.00902564, 0.158701, 76.6654, -75.0639, -146.371, -0.237624, 0.0212345, 0.0683741, 0.0226952, 0.247126, 0.00212509, -0.0679033, 0.00828743, -0.238561, 218.379, -37.1338, 3.64869, 0.0172197, -0.0270746, 0.316242, 0.00784822, 0.316646, 0.0266819, -0.317301, 0.0063627, 0.0178221, 211.376, -75.6884, -134.065, 0.125528, 0.244801, -0.222524, -0.134204, 0.255222, 0.205068, 0.30238, 0.0116491, 0.183391, 15.5976, -71.5118, -152.423, -0.00369392, 0.0391381, -0.321897, 0.0016294, 0.321916, 0.0391217, 0.324263, -0.00117176, -0.00386355, 44.2603, -72.6932, -141.39, 0.223034, 0.02099, 0.0548179, -0.018298, 0.229509, -0.0134321, -0.0557742, 0.00864057, 0.223616, 198.824, -35.0755, -5.70736, -0.0559639, 0.00534556, 0.336586, -0.0233384, 0.340323, -0.00928537, -0.335819, -0.0245423, -0.0554465, 86.9943, -79.5165, -201.954, -0.0769019, 0.034902, -0.324647, 0.047306, 0.331201, 0.0244009, 0.323072, -0.0401884, -0.0808496, 200.46, -78.0046, -214.207, 0.00726277, 0.242296, -0.0255253, -0.104371, 0.026169, 0.218709, 0.220149, 0.00441309, 0.10453, 47.0221, -25.1644, -38.0626, -0.0597848, -0.0195948, 0.231997, -0.00296732, 0.239568, 0.0194696, -0.232804, 0.00197848, -0.0598257, 228.146, -76.3419, -207.419, -0.257694, 0.0768628, -0.00244618, 0.0768422, 0.257701, 0.00237857, 0.00302392, 0.00158027, -0.268902, 10.2504, -4.94495, -202.18, -0.264438, 0.0134966, -0.28789, 0.0139843, 0.390851, 0.00547834, 0.287867, -0.00658913, -0.264725, 67.174, -73.3135, -97.843, -0.282536, 0.00717177, -0.094988, 0.00679788, 0.298076, 0.00228543, 0.0950155, 0, -0.282618, 96.2333, -1.92825, 30.9731, 0.331489, -0.00104644, -0.181885, 0.00113267, 0.37811, -0.000111056, 0.181884, -0.000447493, 0.331491, 152.601, -25.8746, -77.5462, -0.10287, -0.00105625, 0.220516, -0.000372743, 0.24333, 0.00099164, -0.220518, 8.14295e-05, -0.102871, 321.852, -38.2337, -116.437, -0.232687, 0.0371151, 0.249671, 0.0253045, 0.34129, -0.0271516, -0.251143, 0, -0.234058, 100.327, -2.25606, 43.9602, 0.230541, 0, 0.0338833, 0, 0.233018, 0, -0.0338833, 0, 0.230541, 19.3644, -0.453491, 61.4603, 0.211977, -0.0612872, -0.0966526, 0.0796909, 0.225063, 0.0320649, 0.0821415, -0.0601886, 0.218317, 293.355, -44.3979, -126.85, -0.214477, -0.0160528, -0.0468728, -0.0148757, 0.219507, -0.00710864, 0.0472595, -0.00375865, -0.21496, 194.35, -53.8872, -119.198, 0.208085, 0.0473218, -0.265675, -0.0320979, 0.337445, 0.0349653, 0.267941, 0.00367362, 0.210514, 239.202, -31.8212, -75.745, -0.270493, -0.0280732, -0.277056, -0.0051773, 0.386682, -0.0341266, 0.278427, -0.0200829, -0.269796, 112.98, -70.9897, -77.0425, -0.148932, -0.0874956, 0.29763, -0.117432, 0.321483, 0.035746, -0.287139, -0.0860957, -0.168992, 274.465, -44.9829, -109.805, 0.164812, 0.022439, -0.251248, 0.00176181, 0.300013, 0.02795, 0.252242, -0.0167569, 0.163968, 106.139, -80.0277, -211.372, 0.0529747, 0.000934604, -0.380181, -0.0154575, 0.383542, -0.00121099, 0.379868, 0.0154767, 0.0529691, 310.243, -38.8043, -99.7714, 0.145401, 0.00829803, 0.296279, -0.0783541, 0.319346, 0.0295088, -0.285851, -0.0833143, 0.142617, 170.272, -78.3758, -186.385, 0.092151, -0.00475917, 0.242003, 0.00378681, 0.258944, 0.00365038, -0.24202, 0.00223952, 0.0922016, 107.307, -5.07872, -10.9656, 0.145516, 0.000866663, 0.27729, -0.000651454, 0.313153, -0.000636882, -0.277291, -0.000280901, 0.145517, 185.964, -75.9705, -162.599, -0.227154, 0.00548979, -0.0212463, 0.00546594, 0.228146, 0.000511244, 0.0212525, 0, -0.22722, 55.6568, -0.951828, 18.8421, 0.187817, -0.0544185, 0.0865435, 0.0246139, 0.19977, 0.0721979, -0.0992235, -0.0534511, 0.181725, 276.79, -44.1446, -109.038, -0.329704, 0.153381, -0.076202, 0.137744, 0.335713, 0.0797533, 0.10178, 0.0425228, -0.354782, 147.984, -15.2718, 31.6884, -0.25472, 0, 0.0385286, 0, 0.257617, 0, -0.0385286, 0, -0.25472, 26.5635, -0.453491, 31.087, 0.300492, 0.0289028, -0.151577, -0.0308901, 0.336369, 0.00290133, 0.151185, 0.0112802, 0.301865, 223.822, -37.5303, 1.52744, 0.0444285, -0.0253699, -0.359433, 0.0304997, 0.36112, -0.021719, 0.359034, -0.0275375, 0.0463229, 148.157, -39.5341, -98.277, -0.0538669, -0.00751427, -0.366981, 0.00830134, 0.370792, -0.00881081, 0.366964, -0.00949095, -0.0536701, 131.242, -15.5007, -15.5576, -0.22476, 0.157318, 0.264479, 0.137556, 0.344331, -0.087918, -0.275275, 0.0436144, -0.259878, 155.091, -15.1799, 5.32945, 0.187839, 0.000567989, 0.317756, 0.000423138, 0.369123, -0.000909941, -0.317756, 0.000827301, 0.187837, 202.701, -25.9537, -79.8275, -0.133004, 0.0114322, 0.207207, 0.0286662, 0.244765, 0.0048962, -0.205533, 0.02674, -0.133405, 171.012, -30.5766, -54.8817, 0.102698, -0.00408164, -0.173335, 0.00651608, 0.201408, -0.000882038, 0.173261, -0.00515534, 0.102775, 131.329, -15.4888, -15.1619, 0.256328, -0.0274459, 0.175694, 0.0540015, 0.30569, -0.031032, -0.169427, 0.0559094, 0.255918, 99.0863, -17.1219, -29.4804, -0.31559, 0.152791, 0.118468, 0.158255, 0.334421, -0.00973026, -0.111063, 0.0423592, -0.350496, 157.465, -16.918, 10.4897, 0.251974, 0.268939, -0.0272866, -0.266511, 0.240915, -0.0865774, -0.0452186, 0.0787114, 0.358223, 176.281, -27.1572, 12.5395, -0.161683, -0.0654994, 0.189556, -0.0917619, 0.240663, 0.00489022, -0.178329, -0.0644515, -0.174378, 276.49, -43.7972, -107.435, -0.236734, 0.0133229, -0.0770687, 0.0114967, 0.248935, 0.00771861, 0.0773622, 0.00377518, -0.236983, 27.1888, -72.2687, -100.653, 0.0862047, 0, -0.35224, 0, 0.362635, 0, 0.35224, 0, 0.0862047, 16.7242, -0.453491, 23.655, -0.320767, 0.000733675, -0.213788, 0.000516755, 0.385482, 0.000547556, 0.213789, 0.000169038, -0.320767, 153.957, -75.8795, -158.541, 0.280745, -0.00579999, 0.163097, 0.00462582, 0.324681, 0.00358358, -0.163135, -0.000774825, 0.280782, 41.7125, -73.0847, -91.8595, -0.266032, -0.0239907, 0.133808, -0.0259913, 0.297615, 0.00168508, -0.133434, -0.0101407, -0.267106, 227.986, -76.3002, -184.467, -0.00568794, -0.0218785, -0.330215, -0.0124067, 0.330046, -0.0216536, 0.330706, 0.0120057, -0.00649184, 53.4756, -5.67615, -12.2981, -0.14294, 0.0303446, -0.162466, 0.018257, 0.216383, 0.0243521, 0.164264, 0.00235567, -0.144082, 244.188, -32.5114, -76.5768, -0.229263, -0.0164494, -0.0507959, -0.0121417, 0.234143, -0.0210227, 0.051994, -0.0178548, -0.228889, 149.294, -39.9682, -105.017, 0.182819, 0.00338535, -0.24609, -0.00711459, 0.306501, -0.001069, 0.24601, 0.00634819, 0.182848, 88.985, -77.512, -172.545, 0.0383152, 0.0190748, 0.256986, 0.0276232, 0.25801, -0.0232692, -0.256208, 0.03067, 0.0359227, 71.379, -72.6764, -180.511, -0.0211186, 0.0241464, -0.344323, 0.00814296, 0.344906, 0.0236878, 0.345072, -0.00666126, -0.0216317, 248.649, -61.7937, -121.521, 0.146966, 0.0550244, 0.201568, -0.0318563, 0.249456, -0.04487, -0.2065, 0.00067787, 0.150378, 276.54, -38.4405, -67.4352, -0.0155774, 0.368084, 0.0524983, 0.0981595, 0.0547514, -0.354756, -0.358618, -0.00100226, -0.0993828, 48.7258, -37.1071, -60.4511, 0.0496845, -0.00161804, 0.390329, 0.0012142, 0.393477, 0.00147654, -0.39033, 0.00101803, 0.0496889, 115.664, -75.8792, -165.815, -0.236027, 0.00512533, 0.265816, -0.0650369, 0.34354, -0.0643723, -0.257788, -0.0913636, -0.227137, 109.963, -73.344, -106.357, 0.200034, 0.108373, -0.254925, -0.0093937, 0.316918, 0.127356, 0.276845, -0.0675512, 0.188517, 278.128, -39.8056, -84.4715, 0.31554, 0.0112238, 0.234447, -0.0117918, 0.393077, -0.00294751, -0.23442, -0.00466479, 0.315726, 192.348, -53.8252, -116.167, 0.187036, 0.00804238, 0.203543, -0.00138895, 0.276373, -0.00964373, -0.203697, 0.00550007, 0.186961, 149.217, -80.5079, -203.283, 0.35439, 0.0418262, -0.0668629, -0.0489129, 0.358014, -0.035294, 0.0618677, 0.0434592, 0.3551, 203.101, -33.7099, -38.0144, 0.324242, 0.00905662, -0.134708, -0.0040348, 0.350931, 0.0138818, 0.134952, -0.0112677, 0.324072, 95.4774, -74.9048, -124.549, 0.255317, 0.0179088, 0.0874769, -0.0135016, 0.269681, -0.0158037, -0.0882646, 0.0105512, 0.255456, 33.6326, -71.4657, -138.325, 0.152476, 0.0239914, -0.289656, 0.00426298, 0.326876, 0.0293182, 0.290617, -0.0173823, 0.151542, 210.054, -58.9946, -120.095, -0.192493, 0.0058341, 0.147413, 0.0046319, 0.242454, -0.00354715, -0.147456, 0, -0.192549, 82.5833, -1.59978, 16.1191, 0.168442, 0.00657808, 0.200191, -0.0546503, 0.253154, 0.0376648, -0.192699, -0.0660456, 0.164309, 172.85, -80.5667, -194.526, -0.335661, 0.0471722, 0.0583377, 0.0464755, 0.340693, -0.00807743, -0.0588943, 0, -0.338863, 135.006, -11.1384, 38.0245, -0.188217, 0.0516799, -0.240553, 0.00101342, 0.303027, 0.0643088, 0.24604, 0.0382863, -0.184284, 60.797, -74.3974, -158.112, 0.169886, 0.0255593, -0.345692, -0.0248089, 0.384887, 0.0162652, 0.345747, 0.0150585, 0.171026, 28.4704, -71.2411, -135.303, -0.151955, -0.0111513, -0.263575, -0.00362479, 0.304232, -0.0107817, 0.263786, -0.00224317, -0.151981, 306.432, -37.9327, -131.003, 0.198213, 0, -0.232954, 0, 0.305869, 0, 0.232954, 0, 0.198213, 5.20425, -0.453491, 50.9291, -0.31235, 0.00656461, 3.89835e-05, 0.00655778, 0.311929, 0.0162159, 0.000301809, 0.0162131, -0.311998, 175.838, -31.5413, -40.4613, 0.327833, -0.0029208, 0.0750107, 0.0024457, 0.3363, 0.00240615, -0.0750277, -0.00179997, 0.327837, 202.882, -45.0782, -105.475, -0.076018, 0, 0.259531, 0, 0.270435, 0, -0.259531, 0, -0.076018, 14.3182, -0.453506, -10.6815, 0.0328695, 0.312933, -0.0842671, -0.113719, 0.0904508, 0.291539, 0.303473, 0, 0.118374, 35.7254, -3.14032, -22.1748, 0.0908953, 0.0100744, -0.27727, 0.00153862, 0.291747, 0.0111048, 0.277449, -0.00491839, 0.0907752, 67.8146, -73.6341, -115.551, -0.181698, -0.0246848, -0.319109, 0.0030203, 0.366797, -0.0300934, 0.320049, -0.0174756, -0.180881, 219.348, -52.047, -116.543, -0.178566, 0.00848039, 0.217441, -0.00164078, 0.281219, -0.0123152, -0.2176, -0.00907962, -0.178343, 88.859, -75.8337, -158.826, 0.201122, 0.0314675, -0.105834, -0.0278473, 0.227268, 0.0146538, 0.106844, 0, 0.20304, 134.964, -11.1327, 25.6842, 0.156292, 0.0776013, -0.171495, -0.0134253, 0.226931, 0.0904513, 0.187755, -0.0483705, 0.149223, 268.764, -37.9787, -90.9233, 0.301471, 0.000589448, -0.0709339, -0.000604885, 0.309704, 2.80729e-06, 0.0709338, 0.000135809, 0.301472, 168.148, -75.9216, -125.862, 0.267014, 0.0119737, 0.0537761, -0.010302, 0.272279, -0.00947298, -0.0541213, 0.00724555, 0.267115, 228.676, -31.4765, -44.7581, 0.0214758, -0.0226267, 0.328425, -0.0158335, 0.328671, 0.0236791, -0.328823, -0.017304, 0.0203096, 100.492, -72.4365, -87.088, -0.00829771, -0.00870606, -0.278416, 0.00493942, 0.278491, -0.00885562, 0.278508, -0.0051985, -0.0081379, 32.5737, 0.19101, 1.90001, -0.381234, 0.00266517, -0.0155348, 0.00401635, 0.380078, -0.0333575, 0.0152414, -0.0334926, -0.379781, 113.888, -78.454, -184.527, 0.216315, 0.00753171, -0.0281921, -0.006992, 0.218113, 0.00462161, 0.0283308, -0.00367704, 0.216396, 74.9883, -73.8572, -114.092, 0.0463993, -0.00694714, -0.386121, 0.00175045, 0.388898, -0.00678675, 0.38618, -0.000928073, 0.0464231, 56.4036, -72.7906, -78.5979, 0.295033, 0.0205852, -0.0125456, -0.0214326, 0.294506, -0.0207937, 0.0110356, 0.0216329, 0.295019, 158.948, -35.1334, -17.3198, 0.269599, 0.00695121, 0.224335, -0.00804555, 0.350702, -0.00119792, -0.224298, -0.00422451, 0.269685, 285.817, -74.2329, -161.639, -0.237202, 0, 0.243191, 0, 0.339715, 0, -0.243191, 0, -0.237202, 18.641, -0.453491, 22.7667, 0.0125005, -0.00491138, -0.274654, 0.000878845, 0.274937, -0.00487645, 0.274696, -0.000656115, 0.0125142, 49.2304, -72.9684, -99.3947, 0.188556, 0.0317681, -0.171676, -0.0193492, 0.254929, 0.0259221, 0.173515, -0.0060939, 0.189448, 11.6078, -3.77863, -127.778, -0.26051, 0.0146664, 0.260335, 0.000334437, 0.36802, -0.0203983, -0.260748, -0.014181, -0.260124, 64.5728, -73.8768, -125.984, -0.297939, 0.0426946, 0.139757, 0.0586814, 0.32561, 0.0256278, -0.133833, 0.0477227, -0.29989, 154.696, -32.323, -33.7367, 0.205082, -0.0182416, -0.0876599, 0.0160466, 0.223023, -0.00886869, 0.0880881, 0.00184185, 0.205701, 256.455, -74.157, -191.605, -0.258353, 0.00596271, 0.117242, 0.0115095, 0.283329, 0.0109525, -0.116828, 0.0147266, -0.258189, 179.506, -31.4368, -43.9579, 0.220778, 0.0268107, -0.164505, -0.026799, 0.275184, 0.00888285, 0.164506, 0.00884732, 0.222222, 252.553, -33.3681, -78.3912, 0.30362, 0, -0.205735, 0, 0.366759, 0, 0.205735, 0, 0.30362, 3.20091, -0.453491, 13.2023, 0.157551, -0.00227048, 0.268012, -0.0206872, 0.309857, 0.0147859, -0.267222, -0.0253264, 0.156872, 118.235, -78.3529, -183.406, -0.356527, 0.0163216, 0.0268537, 0.0191085, 0.355406, 0.037682, -0.0249475, 0.0389702, -0.354905, 218.634, -30.1856, -78.7439, 0.210155, 0.0241547, 0.160278, -0.0131378, 0.264113, -0.022577, -0.161555, 0.00994332, 0.21033, 191.399, -35.0232, 10.9408, 0.292797, 0.00251197, 0.0456817, 0.00359504, 0.293725, -0.0391939, -0.0456093, 0.0392782, 0.290173, 277.137, -38.7724, -92.2063, 0.245672, 0.0477225, -0.0482596, -0.0532596, 0.247889, -0.0259951, 0.0420695, 0.035141, 0.248911, 206.395, -77.2489, -189.057, -0.32264, 0.0374982, 0.156166, 0.0145925, 0.355838, -0.0552947, -0.159941, -0.0431778, -0.320071, 203.648, -78.0156, -211.528, -0.147897, 0.0024306, 0.234923, 0.00612809, 0.277542, 0.000986426, -0.234855, 0.00571128, -0.147914, 106.735, -1.27432, -1.0113, 0.120721, 0.0108457, -0.199718, -0.0273175, 0.231985, -0.00391434, 0.198138, 0.025376, 0.121144, 191.927, -30.4509, -64.9747, 0.0303795, 0.390402, -0.0300922, -0.319463, 0.0421651, 0.224518, 0.226414, 0.00711064, 0.320825, 47.3015, -26.1255, -47.7067, -0.127842, -0.0270842, -0.305473, -0.0129869, 0.331134, -0.0239243, 0.306396, 0.00273468, -0.128471, 237.822, -75.6128, -199.871, 0.105683, 0.117025, 0.178937, -0.0181211, 0.203787, -0.122574, -0.213037, 0.040719, 0.0991927, 153.692, -20.7883, 50.2094, 0.000279591, -0.000563939, -0.218211, 0.000320128, 0.218211, -0.000563528, 0.218211, -0.000319404, 0.000280417, 131.104, -25.9257, -70.4393, -0.072259, -0.0217059, -0.290531, 0.00987653, 0.298979, -0.0247935, 0.291173, -0.0155279, -0.0712586, 108.027, -71.9168, -87.9706, 0.373386, -0.0310407, 0.0679592, 0.0311011, 0.379507, 0.00246435, -0.0679317, 0.00313417, 0.374666, 222.242, -76.9009, -198.204, -0.240245, -0.0858259, 0.0291372, -0.0880591, 0.24057, -0.0174581, -0.0214631, -0.0263267, -0.254517, 258.77, -48.8726, -118.27, 0.211362, -0.00437049, -0.00142372, 0.00445646, 0.210886, 0.0142247, 0.00112611, -0.0142514, 0.210928, 141.836, -80.1719, -216.404, 0.182227, 0.00484854, 0.0859878, -0.00438488, 0.201496, -0.0020691, -0.0860127, 0, 0.18228, 46.5236, -0.732056, 25.8993, 0.395183, 0.000343673, 0.0113785, -0.000379463, 0.395345, 0.00123811, -0.0113773, -0.00124852, 0.395181, 163.334, -39.4799, -96.9842, 0.274594, 0.0400738, -0.167543, -0.0301643, 0.321579, 0.0274794, 0.169607, -0.00768713, 0.276139, 9.23433, -2.47572, -85.6459, -0.178553, 0.000548477, 0.226196, 0.000439024, 0.288177, -0.000352213, -0.226196, 0.000126369, -0.178554, 142.506, -75.8716, -126.673, 0.164805, -0.00959663, 0.117953, 0.00573847, 0.202635, 0.00846854, -0.118203, -0.00354271, 0.164867, 66.5057, -19.873, -26.9959, 0.248863, -0.0382101, -0.261842, 0.058921, 0.358425, 0.00369616, 0.257972, -0.0450037, 0.251752, 74.3889, -80.6295, -205.833, -0.180763, 0, 0.254337, 0, 0.312029, 0, -0.254337, 0, -0.180763, 16.5038, -0.453506, -23.7387, -0.2083, 0.00418239, -0.0338, 0.00453529, 0.211009, -0.00183962, 0.0337545, -0.00254179, -0.208334, 274.263, -74.1958, -177.569, 0.362846, -0.0527704, -0.140997, 0.0564265, 0.388765, -0.000291854, 0.139574, -0.019983, 0.366663, 199.069, -77.7378, -208.345, -0.346019, -0.033769, 0.190553, -0.025732, 0.394939, 0.0232634, -0.191804, 0.00793591, -0.346884, 246.115, -72.8858, -125.723, 0.17569, 0.0156865, 0.288575, 0.0232643, 0.335852, -0.0324202, -0.288064, 0.036691, 0.173384, 166.878, -30.364, -55.0606, -0.274925, 0.000863686, -0.226323, 0.00113989, 0.356097, -2.57513e-05, 0.226321, -0.000744352, -0.274926, 177.05, -25.8956, -62.9103, -0.0429333, 0.000743145, 0.388091, 0.000251896, 0.390458, -0.000719812, -0.388091, 0.00017122, -0.0429337, 188.702, -75.9562, -137.414, -0.336654, 0.000843345, 0.0814761, 0.00410407, 0.346092, 0.0133754, -0.0813771, 0.0139655, -0.33639, 309.426, -38.6538, -103.453, -0.287778, 0.00609607, -0.0362859, 0.00415612, 0.289666, 0.0157026, 0.036559, 0.015056, -0.287414, 175.623, -31.5293, -40.606, -0.273576, 0.0884591, -0.0441274, 0.0955428, 0.269934, -0.0512178, 0.0253733, -0.0626632, -0.282923, 266.898, -66.3051, -126.443, 0.134599, 0.00325379, -0.181142, 0.0446855, 0.218095, 0.0371215, 0.175574, -0.0580019, 0.12942, 137.261, -73.6759, -106.073, 0.086985, -0.01478, 0.318973, -0.00742488, 0.330414, 0.0173349, -0.319229, -0.0117123, 0.086512, 38.2922, 0.374893, 0.908401, 0.176473, 0.0411226, -0.263303, -0.0611556, 0.313621, 0.0079931, 0.259383, 0.0459655, 0.181025, 142.095, -34.2316, -9.44179, 0.201678, 0.00488303, -0.115358, -0.0102221, 0.232026, -0.00804962, 0.115008, 0.01206, 0.201577, 206.211, -30.9532, -64.0725, 0.296738, 0.0227361, 0.0886567, -0.011139, 0.307534, -0.0415844, -0.0908453, 0.036557, 0.294688, 76.6736, -74.6802, -166.947, -0.355582, 0.0285783, -0.141471, 0.0344239, 0.382096, -0.00933676, 0.140164, -0.0213416, -0.356606, 107.591, -79.9348, -207.765, -0.00127707, 0.00487977, -0.20279, 3.07296e-05, 0.202794, 0.00487967, 0.202849, 0, -0.00127744, 40.7759, -0.593735, 17.1922, 0.133094, 0.00758065, -0.285543, -0.00320259, 0.315038, 0.00687093, 0.285626, 0, 0.133132, 49.3264, -0.7995, 19.2844, -0.223292, 0.0199406, 0.154828, 0.0163443, 0.271719, -0.0114235, -0.155249, -7.42245e-05, -0.223889, 181.015, -33.7724, -14.6201, 0.100405, 0.0181015, -0.185332, -0.0148522, 0.210664, 0.0125294, 0.185621, 0.00706466, 0.101251, 218.615, -36.8675, -4.89825, 0.215396, -0.0177508, 0.0265811, 0.0178368, 0.217022, 0.00038925, -0.0265235, 0.00179229, 0.216126, 217.18, -77.2481, -206.303, -0.202353, 0.0239349, -0.0865655, 0.0220058, 0.220092, 0.00941395, 0.0870759, 0, -0.203546, 115.06, -3.85823, 25.9504, -0.199609, -0.02853, 0.286065, -0.0139551, 0.348811, 0.0250503, -0.287146, 0.00288067, -0.200076, 236.569, -75.6857, -203.452, 0.271994, 0.0583658, 0.111078, -0.0669345, 0.291776, 0.0105873, -0.106135, -0.0344346, 0.277984, 52.3462, -5.68179, -17.728, -0.172745, -0.0876904, 0.296842, -0.195545, 0.294429, -0.0268185, -0.239931, -0.176826, -0.191863, 273.636, -49.5656, -121.289, 0.300517, -0.00319413, 0.111061, 0.0020463, 0.320371, 0.00367689, -0.111088, -0.00273942, 0.300512, 9.46662, -0.316376, -7.07106, -0.342831, -0.00149888, 0.123802, -0.00108946, 0.364498, 0.00139609, -0.123806, 0.000943055, -0.342831, 110.965, -75.9392, -150.115, 0.044433, 0.0247808, -0.250571, -0.0124145, 0.254349, 0.022953, 0.251487, 0.00817745, 0.0454042, 252.364, -33.4264, -76.0074, -0.0138445, 0.00196296, -0.28068, 0.024735, 0.279936, 0.000737706, 0.279594, -0.0246681, -0.0139635, 104.064, -78.7449, -188.61, 0.166233, 0.0398919, 0.301128, 0.017392, 0.341457, -0.0548355, -0.30326, 0.0414494, 0.161919, 203.411, -32.0007, -52.3934, 0.246029, 0.00602058, 0.0455159, -0.00592013, 0.250204, -0.00109523, -0.0455291, 0, 0.246101, 67.298, -1.23195, 14.9851, -0.331943, 0.0422101, -0.0679124, 0.0429771, 0.338722, 0.000464175, 0.0674295, -0.00809692, -0.334616, 3.71195, -1.80692, -86.4569, -0.320878, -0.0111962, -0.169207, -0.0121893, 0.362725, -0.000885768, 0.169139, 0.00489981, -0.321072, 63.4631, -6.57965, -11.5057, -0.149482, -0.0245239, -0.303427, 0.00495586, 0.337794, -0.029743, 0.304376, -0.0175439, -0.148531, 130.761, -70.1515, -85.7583, -0.00999706, -0.00280211, -0.383553, 0.031174, 0.382408, -0.00360627, 0.382295, -0.0312565, -0.00973591, 120.52, -78.4059, -184.26, -0.345695, -0.000977701, -0.153672, -0.000668468, 0.378312, -0.000903156, 0.153674, -0.000553752, -0.345695, 133.551, -25.8992, -56.767, -0.258911, -0.0128676, -0.245148, 0.0177945, 0.354377, -0.0373943, 0.24484, -0.0393625, -0.256519, 251.171, -33.4877, -44.2768, -0.19577, 0.009393, 0.337716, 0.00471074, 0.390356, -0.00812634, -0.337813, 0, -0.195826, 81.4527, -1.57257, 8.7415, -0.134504, -0.000773157, -0.267225, 4.35419e-05, 0.299166, -0.000887487, 0.267226, -0.000437902, -0.134503, 136.215, -25.8952, -58.7773, 0.0360663, 0.329583, -0.00153432, -0.327044, 0.0355963, -0.041271, -0.040861, 0.0060029, 0.328971, 47.4788, -27.4299, -49.704, 0.29495, 0.0566793, 0.158802, -0.0293234, 0.332341, -0.0641548, -0.166045, 0.04199, 0.293415, 61.5177, -72.3494, -175.294, -0.282161, -0.0616587, -0.159905, -0.0360703, 0.32249, -0.0607031, 0.167542, -0.0344113, -0.282368, 271.557, -45.0188, -113.411, -0.216271, 0, 0.132631, 0, 0.253701, 0, -0.132631, 0, -0.216271, 2.57488, -0.453506, -22.5033, -0.221169, 0.0007824, -0.176088, 0.000770046, 0.282706, 0.000288941, 0.176088, -0.000253589, -0.22117, 189.02, -75.9909, -175.706, -0.264369, 0.0428065, -0.291632, 0.02875, 0.393625, 0.0317148, 0.293352, 0, -0.265928, 103.226, -2.57132, 40.5825, -0.198342, 0.0218458, 0.0318409, 0.0215696, 0.200882, -0.00346267, -0.0320286, 0, -0.199512, 116.073, -3.96843, 16.3926, 0.0729856, -0.00400126, -0.205117, -0.00043291, 0.217707, -0.00440089, 0.205155, 0.00188287, 0.0729625, 86.7242, -5.48775, -7.40876, -0.131169, 0.0219129, -0.218869, 0.00389541, 0.255021, 0.0231979, 0.219929, 0.00855219, -0.130947, 211.748, -36.7115, 8.04708, -0.11314, -0.0006635, -0.230461, 4.49403e-05, 0.256735, -0.000761206, 0.230462, -0.000375794, -0.11314, 148.951, -25.8506, -50.996, 0.146205, 0.0723068, 0.207735, -0.0315366, 0.253753, -0.0661287, -0.217687, 0.0118018, 0.149101, 169.375, -31.3673, 55.2117, 0.109038, 0.0256483, 0.332522, -0.0256853, 0.349449, -0.0185314, -0.332519, -0.0185827, 0.11047, 196.256, -58.1275, -122.835, -0.218645, -0.00894399, 0.266544, 0.0150132, 0.343711, 0.0238486, -0.266271, 0.0267238, -0.217525, 327.955, -37.3936, -128.346, -0.340227, 0.0249714, 0.0054503, 0.0249667, 0.34027, -0.000493169, -0.00547178, -9.29506e-05, -0.341142, 186.039, -34.1415, -16.2362, 0.168173, 0.00732344, -0.175376, 0.000595813, 0.242853, 0.0107125, 0.175528, -0.00784092, 0.167991, 80.6661, -74.9487, -139.067, -0.129151, 0.00840466, 0.324566, 0.0031074, 0.349318, -0.00780912, -0.32466, 0, -0.129188, 95.5221, -1.91115, 48.1214, -0.345258, 0.00211285, -0.0393779, -0.00367076, 0.343775, 0.05063, 0.0392633, 0.0507189, -0.341532, 180.595, -77.7127, -179.399, 0.20121, 0, 0.0142859, 0, 0.201717, 0, -0.0142859, 0, 0.20121, 26.5484, -0.453506, -46.9827, 0.268794, 0.000336501, -0.0209908, -0.00140768, 0.26926, -0.0137093, 0.0209462, 0.0137773, 0.268444, 286.951, -74.2558, -157.443, -0.134076, 0.0351606, 0.27191, 0.0484227, 0.30096, -0.0150403, -0.269864, 0.0365335, -0.137792, 226.979, -37.1277, -32.8405, 0.294641, -0.0257164, 0.109763, 0.0250072, 0.314411, 0.00653578, -0.109926, 0.00259658, 0.295689, 222.547, -76.8946, -195.948, -0.296008, 0.0118174, 0.0209956, 0.01097, 0.296532, -0.0122422, -0.0214506, -0.0114263, -0.295991, 66.2318, -74.7113, -145.923, 0.148118, 0.0249736, -0.135078, -0.0151943, 0.200405, 0.0203903, 0.136525, -0.00479054, 0.148818, 7.01706, -4.05125, -163.115, -0.223411, 0, -0.275849, 0, 0.354972, 0, 0.275849, 0, -0.223411, 21.6439, -0.453506, -43.3273, 0.29669, 0.0777245, -0.0529426, -0.0231118, 0.230104, 0.208295, 0.0911584, -0.194628, 0.22512, 151.626, -21.7138, -4.81437, -0.288268, 0.00897002, -0.109351, 0.00620854, 0.308251, 0.00891891, 0.109542, 0.00613447, -0.28827, 126.519, -79.8165, -204.831, 0.330955, 0.0155538, 0.0518502, -0.0096384, 0.33301, -0.038374, -0.0532678, 0.0363806, 0.32909, 164.669, -30.2193, -55.4408, 0.203478, 0.0239676, -0.0361151, -0.027808, 0.205152, -0.0205265, 0.0332485, 0.0249034, 0.203854, 212.988, -34.1519, -43.8898, 0.184095, 0.00584691, -0.158592, -0.00442983, 0.242987, 0.00381615, 0.158638, 0, 0.184149, 63.6828, -1.14496, 22.1214, -0.0846842, 0.0581512, -0.293091, -0.0258963, 0.30206, 0.0674131, 0.29768, 0.0428203, -0.0775143, 209.513, -77.9237, -188.532, 0.113074, 0.0292023, -0.306516, 0.00520777, 0.326304, 0.0330086, 0.30786, -0.0162455, 0.112022, 271.671, -73.7247, -136.684, -0.370022, -0.0326992, -0.0127725, -0.0344534, 0.364201, 0.0657207, 0.00673357, 0.0666108, -0.365604, 84.1737, -18.4379, -29.6056, 0.313512, -0.00146403, 0.214458, 0.000917941, 0.379844, 0.00125115, -0.214461, -0.000514391, 0.313513, 100.618, -26.0217, -61.9824, -0.285741, 0.000554064, -0.0556641, 0.000519431, 0.291112, 0.000231244, 0.0556645, 0.000127656, -0.285742, 159.302, -75.8985, -139.121, -0.215865, -0.0271276, -0.305613, 0.000263047, 0.373658, -0.0333534, 0.306815, -0.0194065, -0.214992, 114.185, -71.4144, -86.9034, -0.202005, 0.00504207, -0.0557644, 0.00486028, 0.209561, 0.0013417, 0.0557805, 0, -0.202064, 91.468, -1.81358, 12.7515, -0.291999, -0.0239352, -0.147942, -0.0188084, 0.327291, -0.0158286, 0.148681, -0.00560424, -0.292551, 194.739, -53.7392, -112.212, 0.0556149, 0.00734837, -0.237379, 0.00598829, 0.24368, 0.0089464, 0.237417, -0.00786761, 0.0553803, 88.1357, -75.6364, -153.39, -0.20163, 0.00712501, 0.0439534, 0.00621922, 0.206336, -0.00491803, -0.0440907, -0.00347849, -0.201696, 80.8082, -73.5997, -86.8973, 0.207364, 0.11734, -0.154982, -0.114627, 0.256829, 0.041081, 0.156999, 0.032531, 0.234693, 151.555, -14.7334, 14.5591, 0.178872, 0, 0.232861, 0, 0.293632, 0, -0.232861, 0, 0.178872, 16.1288, -0.453491, 7.12379, 0.23379, 0.0587047, 0.256358, -0.00665421, 0.344218, -0.0727557, -0.26291, 0.0434905, 0.229805, 39.6109, -71.172, -155.042, -0.11257, -0.0186431, 0.200669, -0.00604405, 0.23006, 0.0179832, -0.201442, 0.00351542, -0.112677, 243.814, -72.7575, -144.362, -0.218464, 0.0205434, 0.0974596, 0.0220291, 0.239083, -0.00101582, -0.0971346, 0.0080177, -0.219425, 230.427, -37.8334, -6.3603, -0.23842, 0, -0.154645, 0, 0.284182, 0, 0.154645, 0, -0.23842, 23.5389, -0.453491, 64.9559, -0.277036, -0.0323039, -0.281508, -0.0249904, 0.39495, -0.0207282, 0.282252, 0.00326171, -0.278142, 231.579, -76.1275, -199.378, -0.153981, 0.000495193, 0.209724, 0.000385033, 0.260181, -0.000331638, -0.209724, 0.000114092, -0.153981, 175.737, -75.9311, -137.59, -0.195357, 0.0779861, 0.146697, 0.0259246, 0.237976, -0.0919875, -0.164103, -0.0552443, -0.189168, 263.709, -65.0542, -125.556, -0.11482, 0.0257906, -0.207508, 0.0124866, 0.237156, 0.0225664, 0.208732, 0, -0.115497, 118.994, -4.28601, 51.2169, 0.252836, -0.00840786, 0.306261, -0.305973, 0.013441, 0.252967, -0.0157172, -0.396915, 0.00207887, 203.051, -67.2592, -124.449, 0.112742, 0.00650346, -0.245664, -0.0027126, 0.270299, 0.00591073, 0.245735, 0, 0.112775, 50.3586, -0.824326, 61.5119, -0.0228307, -0.00685625, 0.383132, -0.00132229, 0.38381, 0.0067896, -0.383191, -0.000915931, -0.0228506, 56.0234, -72.7775, -70.2829, 0.351031, 0.000541696, 0.0265881, -0.000480556, 0.352035, -0.000827663, -0.0265892, 0.000789003, 0.35103, 177.077, -25.8822, -94.2188, 0.302337, 0.034031, 0.0807315, -0.032879, 0.31293, -0.00877951, -0.0812075, 0, 0.304119, 116.41, -4.00505, 60.2937, -0.101807, 0.0112241, -0.372112, -0.00444565, 0.385711, 0.0128506, 0.372255, 0.00767601, -0.101615, 155.843, -80.4294, -216.914, 0.373833, 0.00590067, 0.0458937, -0.00914297, 0.375664, 0.0261752, -0.0453591, -0.0270909, 0.372962, 79.963, -78.5441, -190.001, 0.0316542, 0.0416302, -0.332662, 0.00406887, 0.334069, 0.0421934, 0.335232, -0.00798568, 0.0308994, 12.3434, -5.26773, -186.237, 0.208762, -0.000544491, 0.0284042, 0.000497943, 0.210686, 0.000378982, -0.028405, -0.00030839, 0.208763, 124.442, -25.9381, -67.0765, -0.0698782, 0.0273399, -0.384293, 0.012329, 0.390521, 0.0255411, 0.385067, -0.00754226, -0.0705556, 251.218, -62.0369, -124.796, -0.351796, -0.002674, -0.10149, 0.00570735, 0.364926, -0.0293983, 0.101365, -0.0298275, -0.350575, 132.213, -78.709, -189.016, -0.25728, 0.0356838, -0.1259, 0.0350748, 0.286351, 0.0094842, 0.126071, -0.00684503, -0.25957, 9.69542, -4.38406, -163.075, 0.252521, -0.0185094, -0.0375276, 0.0202353, 0.254951, 0.0104146, 0.0366258, -0.0132413, 0.252985, 128.758, -70.2552, -84.9566, 0.248066, 0.0054482, 0.0752585, -0.00129923, 0.258881, -0.0144587, -0.0754443, 0.0134559, 0.247704, 179.234, -31.491, -42.804, -0.2669, 0.00648387, -0.0370369, 0.00642233, 0.269458, 0.000891207, 0.0370476, 0, -0.266977, 45.6254, -0.710434, 16.8521, -0.0341585, 0.227254, -0.128557, 0.0238305, 0.131825, 0.226699, 0.260007, 0.0177735, -0.037667, 44.0063, -8.25484, -34.3218, -0.240304, 0.257304, -0.0324248, 0.227701, 0.230492, 0.141521, 0.124131, 0.0753058, -0.322371, 165.923, -30.0954, 56.9235, 0.316032, 0.00775508, 0.0631885, -0.00760457, 0.322287, -0.00152048, -0.0632068, 0, 0.316123, 73.3219, -1.37692, 26.6798, -0.164227, 0, -0.119574, 0.116468, 0.0460033, -0.15996, 0.0270781, -0.197869, -0.0371898, 10.2221, -1.7774, -75.9137, 0.243104, 0.0017065, 0.0242075, -0.00381654, 0.243363, 0.0211718, -0.0239656, -0.0214452, 0.242186, 99.6929, -78.7396, -188.898, 0.227266, 0, 0.272884, 0, 0.355128, 0, -0.272884, 0, 0.227266, 16.6331, -0.453506, -60.0555, 0.198744, -0.025997, -0.21713, -0.0219499, 0.289552, -0.0547593, 0.217577, 0.0529579, 0.192812, 86.3799, -17.856, -31.7041, -0.241303, 0.0414682, -0.295257, 0.0262416, 0.381319, 0.0321091, 0.296998, 0, -0.242726, 99.2937, -2.14368, 56.1266, -0.0228336, -0.0877731, -0.223874, 0.084092, 0.207767, -0.0900351, 0.225282, -0.0864503, 0.0109169, 296.842, -52.1242, -139.912, -0.226378, 0.0402891, -0.140216, 0.0440076, 0.265643, 0.00527883, 0.139094, -0.0184748, -0.229874, 88.3472, -9.91351, -17.7864, -0.168968, 0.105023, 0.0381543, 0.111106, 0.165263, 0.0371356, -0.0118745, 0.0519018, -0.19545, 235.673, -31.3267, -22.0198, -0.217554, 0.00961569, -0.17388, 0.0104429, 0.278464, 0.0023333, 0.173832, -0.00469446, -0.217754, 60.2988, -73.3182, -112.208, -0.128132, 0.0683204, -0.231864, 0.179866, 0.202263, -0.0397988, 0.161483, -0.171079, -0.139648, 145.405, -18.5522, -3.56119, 0.327708, -0.00295949, -0.0934053, 0.00334604, 0.340755, 0.000942814, 0.0933923, -0.00182381, 0.32772, 213.518, -44.9907, -106.411, 0.105293, 0.00921605, 0.287072, -0.0124399, 0.305614, -0.00524856, -0.286951, -0.00986726, 0.105565, 71.0116, -75.254, -157.541, 0.143863, 0.0221606, -0.14432, -0.0156451, 0.203776, 0.0156947, 0.145171, 0, 0.144712, 110.658, -3.37958, 56.3763, -0.346343, 0.00905356, -0.147103, 0.00833308, 0.376288, 0.00353932, 0.147145, 0, -0.346443, 95.7749, -1.91722, 55.923, 0.312231, 0, 0.0491559, 0, 0.316076, 0, -0.0491559, 0, 0.312231, -0.669868, -0.453491, 63.3284, 0.164749, 0.00877279, -0.325276, -0.0039639, 0.364619, 0.0078262, 0.32537, 0, 0.164797, 81.3721, -1.57063, 28.5986, -0.348318, -0.00152114, 0.164442, -0.000839378, 0.385182, 0.00178509, -0.164447, 0.00125588, -0.348317, 206.227, -25.954, -78.1041, 0.278658, 0.086811, -0.123951, -0.0852197, 0.304653, 0.0217832, 0.125051, 0.0141692, 0.291053, 179.564, -32.8605, 24.8922, 0.276293, 0.0620869, 0.241473, -0.0156815, 0.364049, -0.0756605, -0.248834, 0.0459961, 0.272889, 53.0596, -71.6976, -169.035, -0.183518, 0.0228966, -0.1032, 0.0199574, 0.210545, 0.011223, 0.103809, 0, -0.1846, 129.959, -5.47849, 35.9127, 0.252164, -0.0238391, -0.11907, 0.0191516, 0.278806, -0.0152613, 0.119913, 0.00560234, 0.252828, 232.068, -73.9384, -133.113, -0.0468754, 0.00823595, -0.38906, -0.0192155, 0.391346, 0.0105995, 0.388673, 0.020341, -0.0463982, 174.613, -31.4107, -42.4782, -0.0509109, 0.00739968, -0.348383, -0.017019, 0.351609, 0.00995526, 0.348046, 0.0182756, -0.0504735, 165.346, -31.4611, -37.7568, -0.195253, 0.190804, -0.27692, 0.0455485, 0.332266, 0.196822, 0.333191, 0.0663905, -0.189184, 163.131, -27.3173, 55.7589, 0.0947658, 0.298633, 0.0691302, -0.232051, 0.11717, -0.188055, -0.200282, 0.00554604, 0.250595, 51.8218, -48.294, -60.2466, 0.0124001, 0.0267731, 0.214549, -0.00671118, 0.214846, -0.0264223, -0.216109, -0.00513574, 0.0131311, 7.45548, -3.2478, -127.219, -0.207927, -0.00414237, 0.102659, -0.00395934, 0.231888, 0.00133758, -0.102666, -0.000553383, -0.207964, 42.3783, -73.0896, -98.8889, -0.327445, 0.00863594, -0.147006, 0.0078784, 0.358931, 0.00353699, 0.147048, 0, -0.32754, 93.5348, -1.86331, 29.9732, -0.0541995, 0, -0.363676, 0, 0.367693, 0, 0.363676, 0, -0.0541995, 8.17943, -0.453491, 45.9808, -0.170199, 0.00745307, 0.233498, -0.00310793, 0.288795, -0.0114835, -0.233596, -0.00927269, -0.169975, 117.419, -75.3028, -119.31, 0.276205, 0.000624346, -0.176977, -0.000603298, 0.32804, 0.000215714, 0.176977, 0.000143849, 0.276206, 156.763, -75.8882, -151.31, -0.0678047, 0.0200624, 0.22356, 0.0133401, 0.233485, -0.0169071, -0.224062, 0.00782998, -0.0686595, 221.984, -36.9295, -11.6812, 0.251601, 0.000705304, 0.040557, -0.000732695, 0.254849, 0.000113446, -0.0405565, -0.000228601, 0.251602, 165.355, -75.9217, -172.248, 0.167426, 0, -0.127763, 0, 0.210606, 0, 0.127763, 0, 0.167426, 10.9465, -0.453491, 43.2721, -0.393355, 0.0102778, -0.0635457, 0.012181, 0.398249, -0.0109893, 0.0632085, -0.012787, -0.393335, 89.9463, -75.7204, -154.398, -0.178974, -0.000688391, -0.197281, -0.000173765, 0.266367, -0.000771819, 0.197282, -0.000389892, -0.178973, 135.183, -25.8807, -47.0941, -0.233796, 0.00442055, 0.157975, -0.00771087, 0.281433, -0.019287, -0.157848, -0.0202954, -0.233041, 90.9428, -79.7092, -203.766, 0.160906, 0, -0.167459, 0, 0.232235, 0, 0.167459, 0, 0.160906, 12.4463, -0.453506, -42.3154, -0.289793, 0.00707958, 0.171726, 0.0149981, 0.336399, 0.0114413, -0.171217, 0.017485, -0.289653, 169.552, -32.59, -17.7412, 0.340895, 0.0315381, 0.0536351, -0.0291066, 0.344844, -0.0177767, -0.0549926, 0.0129827, 0.341889, 202.19, -35.3792, -5.81905, 0.225097, 0.000280043, 0.0186431, -0.000322793, 0.225867, 0.000504598, -0.0186424, -0.000529519, 0.225096, 155.617, -39.4776, -99.5503, -0.387144, 0.00567578, 0.0713249, -0.0129391, 0.380436, -0.100506, -0.0703707, -0.101176, -0.373914, 130.754, -74.1952, -108.391, 0.265592, 0, 0.0324211, 0, 0.267563, 0, -0.0324211, 0, 0.265592, 17.964, -0.453491, 28.5029, -0.124512, 0.039823, -0.167768, -0.000473095, 0.206856, 0.0494526, 0.172429, 0.0293241, -0.121011, 208.422, -77.5919, -189.391, -0.092259, 0.164872, 0.351854, 0.0900294, 0.360865, -0.145488, -0.377993, 0.0457086, -0.120531, 138.952, -15.023, 62.3044, -0.105039, 0.0146959, 0.170493, 0.00766177, 0.200253, -0.0125408, -0.170954, -5.47024e-05, -0.105318, 196.352, -34.8991, -18.8695, -0.205524, 0.0174544, 0.134768, 0.0306493, 0.244005, 0.0151386, -0.132392, 0.0293922, -0.205707, 152.253, -31.3809, -38.9705, 0.075169, -0.0170172, 0.235841, -0.00726822, 0.247189, 0.0201526, -0.236343, -0.0130141, 0.0743898, 94.0543, -72.756, -84.738, 0.322241, -0.00139121, -0.0334732, 0.0145065, 0.297573, 0.127284, 0.0301985, -0.1281, 0.29604, 328.065, -41.4846, -143.085, -0.226235, 0.000833859, 0.198996, 0.000447612, 0.3013, -0.000753664, -0.198997, -0.000270268, -0.226235, 168.715, -75.9148, -154.218, -0.0688518, 0.00631272, -0.210104, 0.00445992, 0.221082, 0.00518104, 0.210152, -0.00262367, -0.0689462, 176.722, -53.3916, -117.234, -0.29013, -0.0205296, -0.195085, 0.163815, 0.166241, -0.26112, 0.107908, -0.307567, -0.128114, 262.608, -42.9179, -96.015, 0.0056777, -0.000981089, 0.238515, 0.000640455, 0.238582, 0.000966118, -0.238517, 0.000617277, 0.00568027, 137.367, -75.8634, -137.408, 0.263691, 0.00184618, 0.0179755, -0.00341273, 0.263283, 0.0230223, -0.0177449, -0.0232006, 0.26269, 101.824, -79.0119, -191.818, -0.11636, 0, 0.222599, 0, 0.251177, 0, -0.222599, 0, -0.11636, 21.5346, -0.453491, 40.7518, 0.0578008, 0.016593, 0.352323, 0.0356818, 0.354916, -0.022569, -0.350904, 0.038823, 0.0557396, 206.49, -30.1264, -74.1655, 0.136059, 0.0850012, 0.21067, -0.04335, 0.250767, -0.0731825, -0.222997, 0.003114, 0.142764, 38.2219, -5.8847, -64.2514, -0.294903, -0.0287461, -0.16157, -0.0284631, 0.336195, -0.00786314, 0.16162, 0.00675552, -0.296197, 200.178, -75.8904, -171.667, 0.259732, -0.0865783, 0.209221, -0.177785, 0.11919, 0.27003, -0.140219, -0.311493, 0.0451721, 71.348, -34.9598, -53.2941, 0.251701, 0.00623038, -0.0184975, -0.00412281, 0.250822, 0.0283824, 0.0190782, -0.0279953, 0.250173, 133.313, -5.87576, -4.5234, -0.369946, -0.00270201, -0.00492792, -0.00229133, 0.368749, -0.030174, 0.00513177, -0.03014, -0.368723, 169.262, -77.9889, -183.527, -0.132396, 0.00106863, -0.362722, 0.000691776, 0.386129, 0.000885087, 0.362723, -0.000346361, -0.132397, 192.771, -75.9654, -135.909, -0.272171, 0.000477494, 0.149054, 0.00075287, 0.310312, 0.000380651, -0.149053, 0.000695491, -0.272171, 190.75, -25.914, -89.3892, -0.26067, 0.000655021, -0.0665284, -0.00204821, 0.268807, 0.0106719, 0.0665001, 0.0108469, -0.260453, 311.995, -39.0883, -92.8395, 0.369102, 0.0743153, -0.119037, -0.0660111, 0.387535, 0.0372571, 0.123835, -0.014926, 0.374661, 247.874, -32.9704, -56.8028, 0.101558, 0, 0.319033, 0, 0.334808, 0, -0.319033, 0, 0.101558, 1.83366, -0.453506, -50.588, 0.222328, 0, -0.223489, 0, 0.315241, 0, 0.223489, 0, 0.222328, 18.709, -0.453506, -12.8916, -0.168418, 0.0100866, -0.303036, -0.00113308, 0.346623, 0.0121672, 0.303201, 0.00689812, -0.16828, 135.819, -80.2156, -198.377, -0.339081, -0.0380452, 0.119975, -0.0506169, 0.356878, -0.0298875, -0.115236, -0.0448095, -0.339897, 68.3338, -79.3382, -190.407, 0.0973313, 0, -0.344226, 0, 0.357722, 0, 0.344226, 0, 0.0973313, 16.6637, -0.453491, 25.1958, -0.294604, 0.00865945, 0.206741, 0.00708824, 0.359908, -0.00497423, -0.206801, 0, -0.29469, 79.3032, -1.52084, 64.344, -0.182166, 0.000540258, -0.217695, 0.000251248, 0.283858, 0.000494213, 0.217695, 0.000124475, -0.182166, 180.055, -75.943, -129.545, -0.152564, 0.0889367, -0.272671, 0.0302081, 0.312113, 0.0848995, 0.285214, 0.0145162, -0.154847, 174.007, -32.4601, 50.3292, -0.264689, 0, -0.0744588, 0, 0.274963, 0, 0.0744588, 0, -0.264689, 20.0607, -0.453506, -71.4959, -0.0355349, -0.0184491, -0.272139, 0.0105942, 0.274138, -0.0199679, 0.272558, -0.013061, -0.0347041, 207.437, -52.9562, -118.801, 0.0474833, 0.00966726, -0.317209, 0.00881055, 0.320576, 0.0110887, 0.317234, -0.0103504, 0.0471716, 67.4077, -74.8655, -148.874, -0.193668, 0.0321434, -0.27133, 0.0335848, 0.332856, 0.0154602, 0.271155, -0.0182692, -0.195707, 53.116, -20.087, -33.9195, 0.109029, 0.0301942, -0.21646, -0.00836606, 0.242299, 0.0295845, 0.218396, -0.00579198, 0.109196, 11.5201, -3.72676, -126.065, -0.267261, 0.00439261, -0.0847614, 0.0102737, 0.279654, -0.0179014, 0.0842511, -0.0201672, -0.266697, 81.1568, -79.0384, -196.596, 0.315955, 0.0557877, 0.19007, -0.0610263, 0.367831, -0.00651808, -0.188454, -0.0255818, 0.320776, 72.9304, -7.40079, -15.2769, -0.253076, 0.00694642, -0.21259, -0.00572563, 0.330072, 0.0176012, 0.212626, 0.0171561, -0.252558, 165.989, -31.3918, -39.3497, 0.308681, 0.0358798, -0.116492, -0.0335689, 0.329931, 0.0126684, 0.117179, 0, 0.310501, 123.12, -4.7348, 65.6067, 0.208379, 0.000579692, -0.0212616, -0.000557626, 0.209461, 0.000245761, 0.0212622, -0.000187888, 0.20838, 130.82, -75.8287, -175.965, -0.0283851, -0.0204228, -0.320875, 0.0194501, 0.321424, -0.0221784, 0.320936, -0.021286, -0.0270357, 225.871, -75.833, -174.02, 0.156913, 0.0215195, 0.31413, 0.0231117, 0.349242, -0.0354696, -0.314017, 0.0364576, 0.154359, 156.466, -30.7912, -46.4138, -0.184241, -0.0291276, 0.114357, -0.0299764, 0.216621, 0.00688, -0.114137, -0.00987431, -0.186402, 120.72, -4.63278, -6.01377, 0.135295, 0.00761629, -0.229898, -0.00113341, 0.266736, 0.00816966, 0.230022, -0.00316545, 0.135262, 188.287, -53.629, -109.409, -0.194978, 0.00583284, 0.114536, 0.00134984, 0.226014, -0.00921209, -0.114676, -0.0072569, -0.194848, 90.5094, -75.8323, -157.43, -0.134377, 0.00553507, 0.174374, -0.0407639, 0.213014, -0.0381753, -0.169633, -0.0555735, -0.128959, 165.602, -78.4752, -187.232, 0.065553, 0.0571006, 0.280129, -0.00941868, 0.287674, -0.0564345, -0.285734, 0.00361738, 0.0661273, 257.709, -34.2814, -86.455, 0.0479677, 0.106457, -0.324876, 0.276752, 0.180511, 0.100013, 0.200714, -0.274338, -0.0602609, 165.639, -21.7398, 4.96391, -0.0592385, 0.00182202, 0.199484, 0.00462285, 0.20805, -0.000527459, -0.199439, 0.00428126, -0.0592642, 103.16, -1.21281, -2.47928, -0.295498, 0, -0.226602, 0, 0.372381, 0, 0.226602, 0, -0.295498, 25.2149, -0.453506, -50.7666, -0.074846, 0.00630575, 0.251168, 0.00180081, 0.262082, -0.00604314, -0.25124, 0, -0.0748676, 56.4698, -0.971375, 60.1895, -0.365972, 0.00881832, 0.0191531, 0.00880627, 0.366473, -0.000460875, -0.0191587, 0, -0.366078, 37.5114, -0.515167, 24.3319, 0.0569582, 0.00394455, -0.352636, -0.00793145, 0.35713, 0.00271372, 0.352569, 0.0073968, 0.0570301, 100.114, -77.6152, -173.498, -0.325315, -0.022445, 0.0275876, -0.0237877, 0.326031, -0.0152501, -0.0264386, -0.017165, -0.325732, 90.6169, -74.1656, -107.017, -0.30137, 0.000607469, -0.255006, -0.000107803, 0.39478, 0.00106784, 0.255007, 0.000884805, -0.301369, 191.138, -25.9195, -87.1943, -0.180581, 0.000310697, -0.0903353, 7.54028e-05, 0.201915, 0.000543731, 0.0903358, 0.000452544, -0.18058, 175.529, -25.8796, -94.3049, -0.132976, 0.0275487, -0.215615, 0.0144611, 0.253323, 0.023448, 0.216886, 0, -0.13376, 118.005, -4.17853, 13.5433, -0.306931, 0.00768137, 0.198429, 0.0167441, 0.364994, 0.0117706, -0.19787, 0.0189713, -0.306801, 167.232, -30.8491, -50.2938, 0.1259, 0.0355631, -0.168304, -0.042531, 0.208526, 0.0122467, 0.16668, 0.0263464, 0.130252, 47.7367, -71.1794, -165.952, 0.151824, 0.00652808, -0.202487, 0.00258614, 0.252954, 0.0100942, 0.202576, -0.00812187, 0.151629, 101.917, -75.29, -131.371, -0.24355, 0.0207093, 0.30448, 0.0174298, 0.389861, -0.0125747, -0.304685, 0.00574832, -0.244105, 28.4167, -72.1984, -109.796, 0.178389, -0.00870013, 0.283965, 0.0266335, 0.33434, -0.00648793, -0.282847, 0.0259951, 0.178484, 328.519, -38.1817, -118.021, -0.0877258, -0.0226237, 0.249682, -0.0024635, 0.264592, 0.0231091, -0.250693, 0.00531671, -0.0875992, 214.228, -75.265, -143.001, -0.115863, 0.103866, -0.346016, 0.0162299, 0.364505, 0.103981, 0.360904, 0.0169529, -0.11576, 168.191, -31.0868, 56.4315, 0.0747922, -0.0024006, -0.320085, 0.0266206, 0.327615, 0.0037632, 0.318985, -0.0267779, 0.0747361, 154.271, -78.2639, -185.548, 0.00361271, -0.0152039, -0.221125, 0.0119013, 0.220849, -0.0149905, 0.221328, -0.0116274, 0.00441547, 98.7756, -72.8371, -92.4515, -0.332659, 0.0252623, 0.139986, 0.0205706, 0.360846, -0.0162359, -0.140752, -0.00696912, -0.333221, 255.897, -62.3118, -122.068, 0.195216, 0.0144615, -0.0579167, -0.0207086, 0.202165, -0.0193216, 0.0559878, 0.0243523, 0.194796, 142.082, -31.4573, -32.2966, -0.183286, 0.0157057, 0.129436, 0.0103213, 0.22434, -0.0126061, -0.129976, -0.00433275, -0.183525, 245.756, -61.618, -122.909, -0.21482, -0.00503924, 0.1254, -0.00755968, 0.248661, -0.00295781, -0.125273, -0.00636423, -0.214858, 132.657, -15.4165, -13.3864, 0.159856, 0.0396399, 0.237506, -0.0221336, 0.286292, -0.0328851, -0.239772, 0, 0.161381, 130.918, -10.5724, 45.4885, -0.281309, 0.0370066, -0.0826459, 0.0336587, 0.293127, 0.0166872, 0.084065, 0.00647156, -0.283242, 298.098, -38.4519, -138.389, 0.130214, -0.0254129, -0.325427, 0.0263512, 0.35004, -0.016791, 0.325353, -0.0181799, 0.131604, 98.2708, -73.3232, -101.41, 0.182753, 0.0512189, -0.109546, -0.043147, 0.213066, 0.0276388, 0.11297, -0.00148078, 0.187772, 41.9864, -7.07571, -40.887, -0.111719, -0.000208772, 0.240082, 0.000143214, 0.264802, 0.000296912, -0.240082, 0.00025511, -0.111719, 168.826, -25.8794, -93.0894, 0.165062, 0.00630061, -0.203263, -0.00397183, 0.261842, 0.00489104, 0.203321, 0, 0.16511, 41.1777, -0.603409, 16.3539, 0.276211, 0, 0.0350893, 0, 0.278431, 0, -0.0350893, 0, 0.276211, 26.4621, -0.453491, 66.4306, -0.0827678, 0.00065239, -0.332632, 1.1666e-05, 0.342774, 0.000669381, 0.332632, 0.00015031, -0.0827677, 158.501, -75.9031, -125.345, 0.346672, 0.0413588, 0.0836114, -0.0297698, 0.354013, -0.0516821, -0.0884035, 0.0429736, 0.345284, 211.341, -31.3611, -65.2947, 0.0288362, -0.0196646, 0.228215, 0.00706618, 0.229983, 0.0189241, -0.228952, 0.00462129, 0.0293274, 208.824, -75.575, -150.571, -0.00712141, 0.0444717, -0.321109, 0.000986028, 0.321188, 0.0444607, 0.324173, 0, -0.00718934, 132.631, -10.8096, 62.562, 0.205037, -0.0186088, -0.103464, 0.0150255, 0.229636, -0.0115253, 0.104045, 0.00350894, 0.205557, 207.738, -75.2958, -169.565, 0.307582, -0.0546623, 0.18983, 0.0700023, 0.358646, -0.0101514, -0.184724, 0.0448932, 0.312237, 178.86, -38.4697, -96.1264, -0.215715, 0.00466145, -0.0515776, 0.00184972, 0.221497, 0.0122821, 0.0517548, 0.0115127, -0.215416, 166.44, -31.1997, -43.2274, 0.165188, -0.0236909, -0.241251, 0.00968497, 0.292351, -0.0220775, 0.242217, 0.00446725, 0.165411, 238.887, -73.1369, -145.664, -0.0979489, -0.0284836, -0.334196, -0.01078, 0.348243, -0.0265212, 0.335235, 0.00287598, -0.0984983, 227.234, -76.4044, -208.89, 0.153081, 0.000863687, 0.281475, -0.000313169, 0.320409, -0.000812836, -0.281476, 0.000113231, 0.153081, 180.589, -25.9046, -67.001, 0.0242524, 0, -0.308462, 0, 0.309414, 0, 0.308462, 0, 0.0242524, 6.3399, -0.453506, -17.6999, 0.234642, 0.0512496, -0.244291, -0.0182742, 0.33791, 0.0533373, 0.248939, -0.0235008, 0.234177, 100.034, -11.3456, -12.8914, -0.254552, 0.00627664, -0.0569529, 0.00612521, 0.260846, 0.00137044, 0.0569694, 0, -0.254626, 36.9774, -0.502319, 52.1297, -0.371485, 0.0732744, -0.0596032, 0.0771732, 0.374919, -0.0200782, 0.0544608, -0.0314593, -0.37811, 66.5426, -23.0528, -33.8328, 0.305666, 0.0384286, 0.177306, -0.033241, 0.353368, -0.0192819, -0.178351, 0, 0.307468, 123.818, -4.81062, 19.1917, 0.293032, 0.00734497, 0.0854726, -0.00705114, 0.305243, -0.0020567, -0.0854974, 0, 0.293117, 36.3775, -0.4879, 17.2942, -0.113118, 0.135633, 0.266713, -0.137212, 0.229875, -0.175094, -0.265904, -0.17632, -0.0231098, 164.706, -28.0453, -0.0607902, -0.0693816, -0.0162908, -0.247409, 0.0119923, 0.256392, -0.0202453, 0.247655, -0.0169793, -0.0683324, 247.295, -73.2371, -155.377, -0.197766, -0.0400586, -0.0304386, -0.0328912, 0.196367, -0.044728, 0.0380706, -0.0384413, -0.196762, 250.545, -30.5239, -9.77108, 0.178801, 0.107616, -0.0674665, -0.113906, 0.187402, -0.00295162, 0.0561988, 0.037445, 0.208668, 160.859, -22.6967, 39.1643, 0.217401, 0.0075898, 0.315254, -0.00810644, 0.38292, -0.0036286, -0.315241, -0.0046126, 0.217504, 273.431, -74.023, -164.594, 0.202634, 0.0017941, -0.0611209, -0.00980403, 0.209784, -0.0263455, 0.0603561, 0.0280533, 0.200922, 308.358, -39.2682, -90.4952, 0.105709, -0.0214198, -0.286925, 0.0292533, 0.304893, -0.0119837, 0.286233, -0.0232499, 0.107189, 145.694, -39.8521, -100.177, 0.276005, 0.000594727, 0.146504, -0.000461067, 0.312477, -0.000399867, -0.146504, 0.000137025, 0.276005, 189.57, -75.9622, -127.716, 0.0399166, -0.00097943, -0.250959, 0.000493706, 0.254114, -0.000913214, 0.250961, -0.000344125, 0.0399182, 111.658, -25.9727, -57.1861, -0.16114, 0.000700734, -0.23846, -0.0092225, 0.287567, 0.00707716, 0.238283, 0.0116039, -0.160986, 313.638, -38.4503, -108.749, -0.375762, -0.0321703, 0.0204539, -0.0317039, 0.376242, 0.00932477, -0.0211697, 0.00756022, -0.377021, 223.716, -74.5018, -140.608, 0.00354889, 0.00511669, -0.243431, -0.012713, 0.243129, 0.004925, 0.243153, 0.0126371, 0.00381045, 183.274, -31.3218, -47.6948, -0.199947, 0.0330141, -0.328343, 0.00611594, 0.384216, 0.0349076, 0.329942, 0.0128848, -0.199625, 224.988, -37.5112, -2.03015, 0.180753, 0.00314707, -0.0876363, 0.00347982, 0.200357, 0.0143722, 0.0876238, -0.0144487, 0.180208, 103.349, -79.4009, -196.789, 0.0107589, -0.0157829, -0.217422, 0.0120856, 0.217395, -0.0151829, 0.217659, -0.0112908, 0.0115902, 118.653, -71.7668, -99.9361, 0.316349, 0, -0.0994491, 0, 0.331612, 0, 0.0994491, 0, 0.316349, 21.66, -0.453506, -69.2165, 0.186553, -0.005138, 0.164144, -0.0072211, 0.24792, 0.0159673, -0.164065, -0.0167541, 0.185939, 118.804, -79.8266, -204.23, -0.173955, -0.00119876, -0.214488, -0.000826881, 0.276162, -0.000872835, 0.21449, 9.24166e-05, -0.173957, 312.701, -38.2734, -116.692, 0.205061, -0.0224174, 0.253533, 0.000716861, 0.32563, 0.0282124, -0.254521, -0.0171439, 0.204344, 93.6793, -72.3923, -77.3399, 0.350753, 0.000442067, 0.0492522, 0.0020796, 0.353731, -0.017985, -0.0492103, 0.0180994, 0.350292, 293.652, -74.3837, -155.109, 0.0248008, 0.221329, 0.108294, 0.232919, 0.0144532, -0.0828805, -0.0803928, 0.110153, -0.206718, 155.464, -24.1273, -3.83495, -0.343587, 0.0394966, -0.117704, 0.0373649, 0.363189, 0.0128002, 0.118398, 0, -0.345612, 101.657, -2.40063, 57.3293, -0.120553, -0.00212687, -0.195723, 0.0343714, 0.226065, -0.0236271, 0.192693, -0.0416546, -0.118234, 34.7131, -75.1322, -87.3226, 0.318305, 0.00843909, -0.147332, -0.00765849, 0.350749, 0.00354483, 0.147374, 0, 0.318397, 51.2237, -0.845154, 55.7245, 0.336024, -0.00878507, -0.0418755, 0.00544427, 0.337604, -0.0271393, 0.0424393, 0.0262489, 0.335041, 309.802, -37.8817, -128.143, -0.196657, 0.114057, -0.156996, 0.0667697, 0.249644, 0.0977278, 0.182205, 0.0316209, -0.205261, 149.558, -16.0365, 32.0484, -0.0609998, 0.0348081, -0.279729, 0.00844187, 0.286301, 0.033785, 0.28176, -0.00104212, -0.0615724, 52.3571, -73.676, -140.951, 0.213112, 0.00520038, 0.0359237, -0.00512804, 0.216118, -0.000864421, -0.0359341, 0, 0.213173, 76.9831, -1.46501, 14.4405, -0.262919, 0.00701164, 0.0690331, 0.00456216, 0.271691, -0.01022, -0.0692382, -0.00872349, -0.262814, 133.305, -75.855, -123.741, 0.351078, -0.133586, -0.130724, 0.139179, 0.37252, -0.00689264, 0.124753, -0.0396603, 0.375571, 256.767, -49.2916, -115.503, 0.208685, 0.013158, 0.0504808, -0.00746896, 0.213543, -0.0247846, -0.05163, 0.0222919, 0.207625, 155.601, -30.5216, -48.4861, -0.181164, 0.0174484, 0.153844, 0.0314155, 0.236011, 0.010227, -0.151609, 0.028055, -0.181715, 70.2058, -72.7654, -179.033, -0.361056, 0.0224744, 0.0532068, 0.0251529, 0.364395, 0.0167655, -0.0519942, 0.0202151, -0.361366, 19.2113, -71.3657, -120.449, 0.196629, -0.00270382, -0.100486, -0.00138321, 0.220661, -0.00864408, 0.100512, 0.00832603, 0.196458, 198.338, -45.1559, -103.866, -0.131086, -0.040109, 0.265254, -0.0314875, 0.295487, 0.0291197, -0.266415, -0.0151884, -0.133957, 195.551, -78.248, -208.981, -0.296801, 0.0443087, -0.00406318, 0.0429002, 0.292241, 0.0531554, 0.0118043, 0.0519872, -0.295345, 328.263, -40.8554, -152.247, -0.287803, 0, -0.0715499, 0, 0.296563, 0, 0.0715499, 0, -0.287803, 30.0823, -0.453491, 6.39071, -0.379706, 0.0327261, 0.032312, 0.0336769, 0.380864, 0.0099999, -0.0313198, 0.0127724, -0.380983, 207.911, -36.0531, -1.75426, 0.0455176, 0.0218955, 0.304924, 0.0333491, 0.30609, -0.0269574, -0.303885, 0.0368708, 0.0427149, 157.761, -30.9288, -45.9947, -0.12838, -0.0286723, -0.374049, 0.0101563, 0.394935, -0.033759, 0.375009, -0.0205115, -0.127137, 106.571, -72.6947, -100.913, -0.210479, 0.00201255, -0.196755, 0.0187362, 0.287009, -0.0171073, 0.195871, -0.0252913, -0.209792, 96.9313, -78.6689, -188.315, 0.272341, -0.0223302, -0.0192463, 0.0221144, 0.273011, -0.00383067, 0.0194939, 0.00225467, 0.273228, 235.676, -75.7156, -208.677, -0.307953, 0.00779455, -0.0595642, 0.0142267, 0.311718, -0.032762, 0.0583631, -0.0348567, -0.306304, 131.459, -5.52113, -1.7602, 0.0318584, 0.000883322, -0.317578, 0.000196702, 0.319172, 0.000907488, 0.317579, -0.0002863, 0.0318577, 184.134, -75.9543, -150.322, 0.348922, -0.0315248, -0.119343, 0.0274159, 0.368693, -0.0172357, 0.120354, 0.00740853, 0.349919, 213.588, -75.3783, -140.086, 0.121758, 0.0181311, -0.172481, -0.0162527, 0.211009, 0.010708, 0.172668, 0.00707622, 0.122634, 202.785, -36.1359, 13.8468, 0.256461, 0, 0.159565, 0, 0.302048, 0, -0.159565, 0, 0.256461, 14.2412, -0.453506, -63.8355, 0.0343512, 0.00320368, 0.201585, -0.0150381, 0.203961, -0.000678864, -0.201049, -0.0147086, 0.0344936, 93.8676, -79.3286, -197.85, 0.254015, 0, 0.104761, 0, 0.27477, 0, -0.104761, 0, 0.254015, 11.6785, -0.453491, 46.4513, -0.0380889, 0.0285057, 0.199682, 0.00753578, 0.20327, -0.0275805, -0.201565, 0.00221291, -0.0387641, 242.102, -32.2495, -73.7648, -0.0173664, 0.274352, -0.106355, 0.0304091, 0.107643, 0.272709, 0.292669, 0.00509509, -0.0346461, 50.0291, -43.2996, -69.2339, -0.168444, 0.0256813, -0.143736, 0.00195628, 0.219821, 0.0369829, 0.145999, 0.026684, -0.166329, 194.927, -34.4972, -23.6622, -0.158085, 0.005055, 0.138385, 0.00380354, 0.210098, -0.00332957, -0.138425, 0, -0.15813, 83.4866, -1.62152, 35.2371, 0.198442, 0, 0.0333345, 0, 0.201222, 0, -0.0333345, 0, 0.198442, 14.1712, -0.453506, -16.6532, 0.225431, 0.021403, -0.0702871, -0.0194806, 0.236113, 0.00941854, 0.070844, -0.00318003, 0.226249, 56.4339, -20.2614, -26.3119, -0.317341, -0.025013, 0.135339, -0.030015, 0.344531, -0.00670342, -0.134318, -0.0178937, -0.318254, 121.292, -71.4032, -96.6237, -0.373637, 0.0137283, 0.135998, 0.0106047, 0.397562, -0.0109966, -0.136278, -0.00670226, -0.373728, 80.0898, -73.8971, -106.006, -0.0240029, 0.0204852, 0.384935, 0.00695783, 0.385641, -0.0200889, -0.385417, 0.0056861, -0.0243356, 22.405, -71.825, -113.459, 0.218661, 0.032128, -0.148392, -0.02604, 0.264257, 0.0188428, 0.14958, -0.000961879, 0.220204, 40.6194, -72.2182, -132.488, -0.225658, 0.00641979, -0.232376, 0.00727161, 0.32389, 0.00188664, 0.232351, -0.00390154, -0.225741, 266.473, -73.9933, -173.583, 0.286921, 0.00417816, -0.0406614, 0.00645377, 0.280053, 0.0743169, 0.0403628, -0.0744795, 0.277161, 142.116, -75.2584, -111.751, 0.256035, 0.0149477, 0.195166, 0.0094006, 0.320033, -0.0368438, -0.195511, 0.0349629, 0.253811, 170.444, -30.2529, -57.6027, -0.245168, -0.00473502, 0.100758, -0.00462007, 0.265065, 0.00121473, -0.100763, -0.000632555, -0.245211, 48.2421, -73.0053, -107.457, 0.197535, 0.0250325, 0.0368092, -0.0254884, 0.200878, 0.000172711, -0.036495, -0.00480185, 0.199115, 9.5553, -3.41458, -123.249, 0.132945, 0.000957662, -0.319476, -8.13564e-05, 0.346033, 0.00100342, 0.319477, -0.000310395, 0.132944, 178.735, -75.9525, -165.025, 0.324496, 0.0407863, 0.0851185, -0.0397634, 0.335472, -0.00915862, -0.0856011, -0.0012211, 0.326921, 50.4283, -73.4764, -150.528, -0.170948, 0.0337467, 0.147938, 0.0513208, 0.222579, 0.00853002, -0.142796, 0.0395948, -0.174039, 316.216, -39.9546, -147.043, 0.131147, -0.000763569, 0.242739, 7.56715e-05, 0.275901, 0.000827002, -0.24274, -0.000326529, 0.131146, 139.035, -25.9066, -72.7045, -0.271096, 0.0220176, 0.128526, 0.0198597, 0.30002, -0.00950639, -0.128877, -8.19555e-05, -0.271823, 183.072, -33.9219, -9.15783, -0.0911731, -0.107444, 0.288918, -0.0654902, 0.301164, 0.0913314, -0.301212, -0.0329579, -0.107309, 264.36, -46.9667, -119.077, 0.192449, 0.00325603, -0.118165, 0.0276916, 0.218244, 0.0511137, 0.11492, -0.0580416, 0.185566, 119.307, -73.6238, -106.885, 0.142053, 0.00454774, 0.277916, 0.00296155, 0.312065, -0.0066203, -0.277938, 0.00564954, 0.141972, 280.003, -38.4471, -104.089, 0.0720907, -0.0202543, -0.225694, 0.00161085, 0.23688, -0.0207436, 0.226595, 0.00475988, 0.0719514, 214.694, -74.9814, -155.135, 0.213936, 0.00807187, -0.258379, -0.00514786, 0.335452, 0.00621729, 0.258454, 0, 0.213998, 57.9111, -1.00607, 35.1115, 0.306639, 0.103626, 0.0444351, -0.110069, 0.303035, 0.05287, -0.0244457, -0.064592, 0.319328, 275.975, -38.6078, -82.307, -0.309117, 0.00797446, 0.119478, 0.00743819, 0.331404, -0.00287496, -0.119512, 0, -0.309207, 47.6123, -0.758255, 26.7315, -0.183743, -0.00188109, 0.180503, -0.0160424, 0.256715, -0.013655, -0.179799, -0.0209829, -0.183245, 136.243, -78.0552, -181.379, -0.132299, -0.00329067, -0.302392, 0.00126677, 0.330054, -0.00414593, 0.302407, -0.00282222, -0.132275, 11.7526, -0.243469, -1.21395, 0.269089, -0.0030454, 0.224827, 0.00113363, 0.350646, 0.00339286, -0.224845, -0.00187675, 0.269085, 241.693, -44.756, -108.301, -0.357167, 0.00523137, 0.0638874, -0.011445, 0.350648, -0.0926968, -0.0630712, -0.093254, -0.344968, 110.042, -73.9178, -108.51, 0.0705723, -0.00319372, -0.357582, -0.00230331, 0.364467, -0.00370979, 0.357589, 0.00297791, 0.0705471, 99.1267, -25.8172, -34.4617, -0.156628, 0.00064739, 0.173745, 0.000277623, 0.233922, -0.000621344, -0.173746, -0.00020983, -0.156628, 146.324, -75.8736, -177.761, 0.223019, 0.00505334, 0.123578, -0.00590859, 0.254951, 0.000237729, -0.12354, -0.0030711, 0.223077, 267.813, -73.9423, -167.137, 0.0250823, 0.00696031, 0.350289, -0.00471714, 0.351161, -0.00663986, -0.350327, -0.00423004, 0.025169, 260.18, -73.8464, -171.739, -0.220202, -0.0149137, -0.0270431, -0.0134958, 0.221605, -0.0123188, 0.0277779, -0.0105581, -0.220362, 247.639, -50.0573, -114.744, -0.244639, 0.000705659, 0.071869, 0.00061258, 0.254977, -0.000418344, -0.0718699, -0.000228716, -0.244639, 190.812, -75.9959, -175.694, -0.297416, 0.0866406, 0.0647539, 0.0876938, 0.304055, -0.00404525, -0.0633202, 0.0141414, -0.309753, 180.316, -33.1352, 26.1897, -0.12528, 0, -0.255605, 0, 0.284656, 0, 0.255605, 0, -0.12528, 22.141, -0.453506, -21.6026, 0.194756, 0.00784409, 0.261455, -0.00468586, 0.326019, -0.00629066, -0.261531, 0, 0.194812, 85.2614, -1.66423, 37.368, -0.30558, 0.0428903, 0.0507578, 0.0423106, 0.309767, -0.00702792, -0.0512421, 0, -0.308496, 133.952, -10.9925, 26.199, 0.0660412, -0.00146844, 0.215491, -0.00210702, 0.225368, 0.00218148, -0.215485, -0.00265369, 0.0660215, 256.069, -31.7502, -91.8214, -0.292942, -0.00801681, 0.174399, -0.00361258, 0.340865, 0.00960083, -0.174545, 0.0063998, -0.292894, 86.3617, -79.7836, -211.169, 0.306554, 0, -0.127258, 0, 0.331919, 0, 0.127258, 0, 0.306554, 25.4107, -0.453491, 37.0768, 0.251514, -0.021012, -0.0523475, 0.0201368, 0.256895, -0.00636533, 0.0526903, 0.00212158, 0.25231, 244.339, -75.0541, -202.97, 0.202018, 0.000843721, -0.107113, 0.000233628, 0.228649, 0.00224167, 0.107116, -0.00208993, 0.202008, 99.1575, -25.9918, -57.0176, -0.0883634, 0.000348368, -0.264764, -0.0134194, 0.278756, 0.00484541, 0.264424, 0.0142631, -0.0882311, 265.732, -74.2048, -157.923, -0.0544221, -0.0186288, 0.224737, -0.0120597, 0.231098, 0.0162357, -0.225185, -0.00787423, -0.0551833, 237.633, -75.3941, -180.697, -0.268346, 0.00660147, -0.057193, 0.00645645, 0.274373, 0.00137608, 0.0572096, 0, -0.268423, 97.4504, -1.95755, 38.5622, -0.231359, 0.00217167, -0.163281, -0.00190766, 0.283102, 0.00646834, 0.163284, 0.00638454, -0.231279, 225.46, -30.6955, -76.0981, 0.374142, 0.0409591, 0.04328, -0.0406877, 0.376637, -0.00470668, -0.0435352, 0, 0.376348, 112.605, -3.59129, 43.0938, 0.292395, -0.114602, 0.064022, 0.0199552, 0.193302, 0.254879, -0.129746, -0.228535, 0.18348, 86.9501, -37.1627, -58.1912, -0.129388, -0.0274715, -0.352719, -0.00340465, 0.375647, -0.0280083, 0.35377, -0.00643225, -0.129273, 238.887, -50.4903, -111.029, 0.0613111, 0.0106808, 0.261107, -0.0125016, 0.26801, -0.00802764, -0.261026, -0.0103273, 0.0617146, 68.3349, -74.2297, -131.251, 0.078112, 0.00752749, 0.23722, -0.0100116, 0.24962, -0.00462432, -0.237128, -0.00805939, 0.0783375, 83.9788, -75.1525, -142.283, 0.158094, -0.000170901, 0.148304, 0.000267519, 0.216767, -3.53835e-05, -0.148304, 0.000208833, 0.158095, 171.169, -25.898, -72.6183, -0.0234489, 0.0219002, 0.208027, -0.0227601, 0.20782, -0.0244439, -0.207935, -0.0252172, -0.0207837, 204.025, -77.5147, -207.073, 0.267556, 0.000334404, -0.0141781, -0.001058, 0.267582, -0.0136545, 0.0141425, 0.0136914, 0.267208, 279.966, -74.1961, -158.44, -0.139735, 0.00104882, -0.352271, 0.000702713, 0.378973, 0.000849581, 0.352272, -0.000339942, -0.139736, 193.876, -75.9949, -165.186, 0.286633, 0.031178, 0.00599551, -0.0311712, 0.286696, -0.000652008, -0.00603086, 0, 0.288323, 126.493, -5.10161, 65.7001, 0.0407109, -0.0402424, -0.352258, -0.00419751, 0.354493, -0.0409828, 0.354524, 0.00881827, 0.0399654, 117.25, -4.89978, -1.89524, 0.181416, 0.000956598, -0.294214, -0.000238163, 0.345649, 0.00097698, 0.294215, -0.00031005, 0.181416, 146.435, -75.87, -173.526, 0.115815, 0.00306179, -0.177998, 0.044139, 0.205226, 0.0322494, 0.172465, -0.0545793, 0.111277, 126.076, -75.0941, -112.033, -0.162502, -0.0178758, -0.202986, -0.000458948, 0.25966, -0.0224994, 0.203771, -0.0136707, -0.161927, 86.7762, -73.7304, -93.7295, -0.0612999, 0.00984805, 0.203052, 0.0249049, 0.210849, -0.00270761, -0.20176, 0.0230347, -0.0620268, 182.573, -30.6728, -58.9441, -0.0116597, -0.0244825, -0.303669, 0.00943565, 0.303716, -0.0248487, 0.304508, -0.0103486, -0.0108576, 264.977, -73.29, -183.634, 0.248532, 0.0228452, -0.187265, -0.0402823, 0.30901, -0.0157642, 0.184302, 0.0367325, 0.249081, 66.552, -73.284, -172.398, 0.308913, 0.0121106, 0.166156, -0.0134665, 0.350714, -0.000525777, -0.166051, -0.00591247, 0.30915, 81.9559, -73.9312, -104.208, 0.0807415, 0.0367232, 0.271302, 0.0293081, 0.28007, -0.0466323, -0.272203, 0.0410481, 0.0754533, 151.689, -33.9986, -19.6135, 0.221079, -0.00230415, -0.11463, 0.0227846, 0.244907, 0.0390203, 0.112366, -0.0451266, 0.217621, 26.7192, -76.7782, -95.8477, -0.139618, 0.0209919, 0.265422, 0.00463306, 0.299847, -0.0212775, -0.26621, -0.00579104, -0.139575, 216.174, -59.5649, -123.834, 0.244542, 0.0477382, -0.280484, -0.0325348, 0.372115, 0.0349681, 0.282651, 0.00153079, 0.246692, 79.6627, -24.8144, -34.5655, -0.241557, 0, -0.0832728, 0, 0.255508, 0, 0.0832728, 0, -0.241557, 18.122, -0.453491, 10.0452, -0.252166, -0.0253268, 0.155514, -0.0184169, 0.296204, 0.0183763, -0.156483, 0.00595194, -0.252768, 219.294, -74.5643, -156.319, -0.139264, -0.0156918, -0.180843, -3.04945e-05, 0.227936, -0.0197546, 0.181523, -0.0120005, -0.138746, 95.4389, -72.6083, -83.7443, 0.0175771, 0.000628971, -0.232672, -0.000129606, 0.233335, 0.000620972, 0.232672, 8.24591e-05, 0.0175774, 180.867, -25.8972, -89.7835, 0.0954737, 0.0317824, 0.223956, -0.0125097, 0.243458, -0.0292169, -0.225854, -4.96242e-05, 0.0962897, 82.6224, -25.1895, -45.5181, -0.146987, -0.000172591, 0.162225, 4.04018e-05, 0.218911, 0.000269506, -0.162225, 0.000210898, -0.146987, 170.353, -25.887, -84.2345, 0.103247, -0.0256253, -0.29893, 0.00378251, 0.316221, -0.0258011, 0.300003, 0.004832, 0.103203, 233.482, -73.4757, -152.153, 0.334086, -0.0192931, 0.208606, 0.0178716, 0.393855, 0.00780422, -0.208733, 0.00284235, 0.334552, 240.95, -31.3515, -5.06403, 0.198263, -0.00148913, 0.0476214, -0.00243641, 0.203225, 0.0164985, -0.0475824, -0.0166108, 0.197581, 141.703, -78.1418, -182.927, -0.0612349, 0, 0.250198, 0, 0.257582, 0, -0.250198, 0, -0.0612349, 16.5699, -0.453491, 65.5978, -0.369566, 0.00091802, 0.0817453, 0.000725479, 0.378498, -0.000970775, -0.0817473, -0.000791178, -0.369566, 174.06, -25.8977, -67.3738, -0.157053, 0.00872222, -0.243064, 0.0125784, 0.289238, 0.00225179, 0.242895, -0.00933854, -0.157279, 76.4871, -74.8681, -140.473, 0.183272, -0.0143141, -0.0973687, 0.0114321, 0.207515, -0.00898862, 0.097749, 0.0025681, 0.18361, 249.58, -72.3135, -143.066, -0.391684, 0.009463, -0.0356753, 0.00942399, 0.393305, 0.000858355, 0.0356857, 0, -0.391797, 59.8814, -1.0535, 56.7653, 0.199791, 0.0340154, 0.240664, -0.0217271, 0.312787, -0.0261721, -0.242083, 0, 0.200969, 97.9296, -1.99533, 10.313, -0.122198, 0.014469, -0.241191, 0.00287591, 0.270349, 0.0147611, 0.241608, 0.00409994, -0.122163, 34.2796, -72.5558, -106.746, 0.25029, 0.00718659, 0.162952, -0.00602265, 0.298661, -0.00392107, -0.163, 0, 0.250362, 44.4513, -0.682175, 55.7339, -0.00654078, 0.00702967, 0.292097, 0.000157372, 0.29217, -0.00702791, -0.292182, 0, -0.00654267, 87.9561, -1.72908, 63.4862, 0.329701, 0.00775274, -0.165443, -0.0155095, 0.368385, -0.0136451, 0.164897, 0.0191475, 0.329509, 190.268, -31.2236, -52.416, 0.124311, 0.00765447, 0.183568, -0.00738748, 0.221668, -0.0042404, -0.183579, -0.00373697, 0.124475, 59.8167, -72.7964, -82.2407, 0.0115323, 0.396446, -0.00261526, -0.382795, 0.0104539, -0.103288, -0.103173, 0.00552732, 0.382929, 12.8657, -68.3771, -135.398, -0.281468, 0.089854, -0.00278201, 0.0881827, 0.274191, -0.0659474, -0.017473, -0.0636514, -0.288009, 265.925, -66.1309, -127.067, 0.0344598, 0.00602989, 0.24821, -0.000829195, 0.250591, -0.0059726, -0.248282, 0, 0.0344698, 80.2551, -1.54376, 11.1927, -0.196678, 0.178918, 0.220009, 0.190856, 0.281546, -0.0583459, -0.209738, 0.0884209, -0.259403, 236.866, -31.3572, -24.3368, -0.234335, 0.0223514, -0.113258, 0.0163029, 0.260124, 0.0176039, 0.114286, 0.00872331, -0.23474, 202.974, -36.0565, 10.9975, -0.0560591, -0.0172641, 0.231426, -0.0160937, 0.237798, 0.0138411, -0.23151, -0.0123504, -0.0570008, 109.139, -72.0182, -91.4767, 0.288137, 0.00711673, -0.0668435, -0.00693263, 0.295789, 0.00160827, 0.0668629, 0, 0.28822, 70.1189, -1.29985, 41.8304, 0.101858, 0.00204096, -0.245867, -0.00632452, 0.266063, -0.000411514, 0.245794, 0.00600028, 0.101878, 225.383, -31.4452, -42.8319, -0.34679, 0.0440083, -0.15403, 0.0212407, 0.376693, 0.0598037, 0.158779, 0.0457266, -0.344417, 212.181, -32.6265, -55.6789, 0.390869, 0.00144925, 0.0385399, -0.00179445, 0.392748, 0.00343036, -0.0385253, -0.00358986, 0.390857, 103.804, -25.9401, -49.4909, 0.293336, 0.008351, -0.185471, -0.00705844, 0.347052, 0.00446292, 0.185524, 0, 0.293421, 38.0434, -0.527985, 48.6398, 0.35307, 0.0391872, 0.0720403, -0.0383961, 0.360344, -0.00783434, -0.0724651, 0, 0.355151, 119.246, -4.31349, 6.25222, -0.106371, 0.148218, -0.0891347, 0.119335, 0.138641, 0.0881266, 0.12519, -0.00621905, -0.159741, 18.744, -76.2623, -103.737, -0.182225, -0.0010038, -0.343013, 3.11466e-05, 0.388412, -0.00115321, 0.343015, -0.000568536, -0.182225, 133.296, -25.874, -39.1867, 0.217281, 0.0278227, 0.135072, -0.0236291, 0.255842, -0.014689, -0.135868, 0, 0.218562, 100.509, -2.27583, 14.3561, 0.0973018, 0.100394, 0.149388, -0.0201376, 0.174826, -0.104373, -0.178858, 0.0349323, 0.0930209, 154.1, -19.3708, 41.944, 0.107537, 0.0352491, 0.25774, -0.0078357, 0.279206, -0.0349156, -0.260021, 0.00616422, 0.107646, 297.608, -38.3957, -138.13, 0.198735, 0.000697857, -0.155203, -0.000410788, 0.252158, 0.000607798, 0.155204, -0.000226187, 0.198735, 162.302, -75.9003, -158.025, 0.0272133, -0.000765306, 0.275187, -0.000250371, 0.276529, 0.000793798, -0.275188, -0.000327272, 0.0272125, 152.844, -25.8589, -64.9212, -0.21248, -0.0177272, -0.0521369, -0.0180137, 0.218757, -0.000966932, 0.0520386, 0.00334271, -0.213216, 238.365, -73.1719, -146.14, 0.0798836, -0.000607163, -0.204327, 0.000462902, 0.219387, -0.000470939, 0.204327, -0.000259644, 0.0798845, 153.796, -25.8531, -62.327, 0.348027, 0.0010865, 0.181661, -0.00112613, 0.392585, -0.000190568, -0.18166, -0.000352152, 0.348029, 162.919, -75.9022, -158.214, 0.29659, 0.0885299, -0.0117686, -0.0885339, 0.296818, 0.00161212, 0.0117382, 0.00182014, 0.309516, 3.71846, -3.14081, -178.681, 0.00367174, 0.00408359, -0.206007, 0.00240908, 0.206025, 0.00412688, 0.206033, -0.00248175, 0.00362301, 295.347, -74.4031, -160.089, -0.142224, 0.00838034, -0.317908, 0.00342229, 0.348271, 0.00764971, 0.318, 0, -0.142265, 46.1573, -0.723221, 16.6952, 0.11776, 0.0625904, -0.185701, -0.0424534, 0.219654, 0.047113, 0.191312, 0.0102159, 0.124761, 178.159, -32.9747, 35.9574, 0.0890837, 0.00685175, 0.218005, 0.00174819, 0.235457, -0.00811462, -0.218106, 0.00468582, 0.0889776, 132.589, -80.1448, -197.21, -0.343886, 0.00264102, 0.0183708, 0.0030508, 0.344289, 0.00761274, -0.0183072, 0.00776442, -0.343812, 225.321, -30.7753, -72.5107, -0.215758, 0.0270035, 0.0875261, 0.0354586, 0.231138, 0.0160971, -0.0844553, 0.0280578, -0.216844, 212.967, -32.9805, -53.5196, -0.170891, 0.0505533, -0.198244, 0.0473946, 0.261061, 0.0257165, 0.199023, -0.0187605, -0.176346, 262.126, -45.5953, -106.715, 0.259689, 0.000584111, -0.163551, -0.000565976, 0.3069, 0.000197405, 0.163552, 0.000134579, 0.25969, 128.721, -75.8274, -165.829, -0.170886, 0.0236831, 0.345876, 0.0464527, 0.383698, -0.00332216, -0.34356, 0.0400999, -0.172487, 134.053, -30.2633, -38.2355, -0.248783, 0.000494071, 0.0741273, 0.000506005, 0.259591, -3.19896e-05, -0.0741272, 0.000113834, -0.248783, 147.109, -75.8791, -129.715, 0.187816, -0.0327738, 0.152238, 0.0175404, 0.241448, 0.0303395, -0.154734, -0.0124107, 0.188225, 199.787, -77.7428, -210.337, -0.0858346, 0.0736892, -0.374853, 0.0311249, 0.38427, 0.0684134, 0.380758, -0.0148002, -0.0900961, 237.803, -31.6033, -71.4482, 0.166679, 0.048991, -0.117277, -0.0392277, 0.203798, 0.0293822, 0.120893, -0.00141637, 0.171227, 40.1088, -6.64825, -44.3257, -0.264694, 0.000933814, 0.209253, 0.00054485, 0.337416, -0.000816549, -0.209254, -0.000302665, -0.264695, 187.954, -75.9561, -140.527, 0.273767, -0.0346353, 0.280791, 0.0744984, 0.385764, -0.0250512, -0.272934, 0.0705547, 0.27481, 115.53, -15.36, -31.0418, -0.179662, 0.00057339, 0.103183, 0.000404665, 0.207184, -0.000446722, -0.103184, -0.000185846, -0.179662, 158.933, -75.9009, -169.083, 0.291488, 0.137048, -0.080353, -0.142158, 0.299964, -0.00408334, 0.0709203, 0.0379947, 0.322073, 146.776, -16.438, 45.2544, -0.103844, 0.100207, 0.276812, 0.0388233, 0.295626, -0.0924537, -0.29182, 0.00367106, -0.110803, 43.5021, -7.56578, -73.007, 0.283439, -0.0103337, -0.0406858, 0.0146608, 0.284594, 0.0298517, 0.0393342, -0.0316114, 0.282052, 251.48, -32.0873, -31.7701, -0.186283, 0.000741822, 0.192733, 0.000342662, 0.268044, -0.000700495, -0.192734, -0.000240437, -0.186283, 162.866, -75.8993, -155.154, 0.246196, 0.0108613, -0.263145, 0.00107899, 0.360171, 0.0158754, 0.263367, -0.0116287, 0.245924, 72.6457, -75.1225, -151.941, -0.0548192, 0.00661063, -0.329007, 0.00505007, 0.333519, 0.00585983, 0.329035, -0.00401752, -0.0549045, 270.384, -73.9599, -164.371, -0.21735, 0.0431557, 0.00614152, 0.0432138, 0.217419, 0.00156733, -0.00571842, 0.00273395, -0.221587, 258.788, -34.5334, -83.4391, 0.0781089, 0.179668, -0.128267, -0.148873, 0.143335, 0.110118, 0.163003, 0.0448156, 0.162036, 140.521, -12.6145, 45.6337, -0.0605084, -0.00120926, -0.307781, -0.0095778, 0.313527, 0.000651115, 0.307634, 0.00952344, -0.060517, 236.557, -32.9076, -100.166, 0.0333439, -0.0634163, 0.238749, -0.0553056, 0.232882, 0.069582, -0.240757, -0.0622796, 0.0170817, 293.405, -45.4709, -130.914, -0.322001, 0.0405096, 0.0452834, 0.0390128, 0.325076, -0.0133943, -0.046579, -0.00777072, -0.324262, 13.0119, -4.88736, -166.841, 0.0436706, 0.00651242, 0.219539, 0.00309972, 0.223796, -0.00725529, -0.219614, 0.00445375, 0.0435534, 140.723, -80.0824, -212.24, -0.355141, 0.0387343, 0.0271724, 0.0386214, 0.356179, -0.00295498, -0.0273326, 0, -0.357235, 122.701, -4.68921, 65.9878, 0.232811, 0, 0.0598356, 0, 0.240378, 0, -0.0598356, 0, 0.232811, 25.0275, -0.453506, -69.0919, 0.167299, -0.0218966, 0.182973, 0.0475816, 0.243882, -0.01432, -0.17803, 0.044605, 0.168117, 83.3405, -17.9049, -32.9291, -0.330675, 0, 0.104068, 0, 0.346664, 0, -0.104068, 0, -0.330675, 5.49383, -0.453491, 63.2401, 0.324437, 0.0106638, 0.170542, -0.0060426, 0.366457, -0.0114188, -0.170768, 0.00729284, 0.324412, 166.913, -80.6828, -220.37, 0.393363, -0.0337483, -0.0333819, 0.0329476, 0.394697, -0.0107846, 0.0341725, 0.00793106, 0.394661, 199.688, -75.9352, -171.518, -0.253352, 0.000607778, -0.194389, 0.000396955, 0.319334, 0.000481071, 0.194389, 0.000140032, -0.253353, 148.591, -75.8798, -134.71, -0.158904, 0.195016, -0.127176, 0.144068, 0.203318, 0.131764, 0.182892, 0.00928001, -0.214289, 15.8479, -72.5052, -135.916, 0.111342, 0.20851, 0.16191, -0.0389889, 0.186783, -0.21373, -0.261096, 0.0610254, 0.100961, 167.888, -30.2565, 50.7041, -0.200484, -0.000856222, 0.0956852, -0.000902304, 0.222147, 9.72976e-05, -0.0956847, -0.000300836, -0.200486, 119.02, -25.9324, -48.3988, -0.338923, -0.00297445, -0.0492434, -0.00267993, 0.342477, -0.00224172, 0.0492603, -0.00183303, -0.338929, 225.145, -44.8999, -108.316, -0.0773628, 0.0474135, -0.32915, 0.00722958, 0.338099, 0.0470034, 0.332469, 0.00368074, -0.0776126, 248.276, -33.1656, -69.1339, -0.166528, -0.00155799, 0.317948, -0.000616464, 0.358918, 0.00143588, -0.317951, 0.000120111, -0.166529, 310.554, -38.2833, -114.835, -0.0224597, 0.000295065, 0.235344, 0.0120541, 0.236104, 0.000854349, -0.235035, 0.0120808, -0.0224454, 287, -74.3029, -156.525, 0.0934579, 0.00698565, -0.274888, -0.00224862, 0.29034, 0.00661385, 0.274967, 0, 0.093485, 89.9559, -1.77721, 32.6598, -0.00990528, 0.0547702, 0.395444, 0.00137148, 0.395568, -0.054753, -0.399216, 0, -0.00999978, 130.568, -10.524, 15.4905, 0.171281, 0.1335, 0.23961, -0.0439614, 0.2922, -0.131376, -0.270745, 0.0370112, 0.172916, 155.999, -17.2636, 18.5032, -0.231416, -0.00801432, -0.204633, -0.0218535, 0.307984, 0.0126517, 0.20362, 0.023946, -0.231209, 307.055, -37.9385, -128.332, -0.170922, 0.0258701, -0.203382, 0.0100691, 0.265529, 0.0253131, 0.204773, 0.0085369, -0.171006, 245.937, -32.5675, -83.2457, 0.258882, 0, 0.196962, 0, 0.325291, 0, -0.196962, 0, 0.258882, 2.74814, -0.453506, -63.2633, 0.312605, -0.0862419, -0.0987574, 0.105826, 0.316704, 0.0584117, 0.077405, -0.084696, 0.318979, 295.682, -45.326, -132.69, -0.163906, -0.021195, 0.242063, -0.0244555, 0.291942, 0.00900299, -0.241756, -0.0151624, -0.165025, 116.563, -71.1649, -85.4248, -0.232295, 0.0460926, 0.0452868, 0.0412246, 0.235839, -0.0285775, -0.0497589, -0.0197892, -0.235093, 60.0365, -22.0075, -36.5286, 0.207224, -0.11242, -0.0579606, 0.109584, 0.215132, -0.0254796, 0.0631598, -0.00441376, 0.234373, 198.106, -79.6786, -179.557, -0.204283, -0.0276945, -0.00242502, -0.0275304, 0.204028, -0.0109108, 0.00386553, -0.0104873, -0.205863, 192.48, -79.1606, -218.624, 0.187137, 0.000561565, 0.134816, 0.00498042, 0.230455, -0.00787321, -0.134725, 0.00929928, 0.186973, 315.877, -38.5379, -106.712, 0.157681, 0.0245929, -0.162103, -0.0171477, 0.226143, 0.0176286, 0.163059, 0, 0.158611, 129.087, -5.38367, 57.3624, -0.162781, 0.046194, -0.177809, 0.0381371, 0.24089, 0.0276681, 0.17971, -0.0092779, -0.166931, 235.913, -31.1922, -70.1863, -0.195479, -0.00946225, -0.0414667, -0.0085292, 0.199798, -0.00538412, 0.0416686, -0.0034931, -0.195633, 83.8485, -19.0329, -25.9214, -0.270245, 0.0122178, -0.0648999, 0.0101478, 0.27783, 0.0100478, 0.0652556, 0.00739327, -0.270334, 239.004, -31.772, -50.7206, 0.153434, 0.00876256, 0.330253, -0.00369203, 0.364156, -0.00794678, -0.330349, 0, 0.153478, 66.8092, -1.2202, 22.4798, 0.344263, 0.0171514, 0.13296, -0.00143134, 0.366859, -0.0436175, -0.134054, 0.0401293, 0.34192, 194.926, -30.319, -67.4613, 0.142159, 0.00586849, -0.177631, 0.00203739, 0.227396, 0.00914311, 0.177717, -0.00730125, 0.141986, 116.931, -75.7575, -133.866, -0.0935769, 0.000682359, 0.346093, 0.000329867, 0.35852, -0.000617672, -0.346093, 0.000157215, -0.0935773, 137.31, -75.8424, -169.483, -0.0395032, -0.0161241, 0.218858, -0.0142414, 0.222095, 0.0137921, -0.218988, -0.0115348, -0.0403766, 121.251, -70.816, -85.2587, -0.38928, 0.0100476, 0.0139253, 0.00958894, 0.389329, -0.0128558, -0.014245, -0.0125006, -0.389198, 116.209, -75.0593, -112.7, 0.274859, -0.028361, 0.278334, 0.00542694, 0.390648, 0.0344461, -0.279723, -0.0202889, 0.274163, 99.9017, -73.4438, -106.013, -0.0287538, 0, 0.263438, 0, 0.265003, 0, -0.263438, 0, -0.0287538, 11.9596, -0.453506, -53.7393, -0.264179, 0.00489793, 0.207862, 0.00761148, 0.336095, 0.00175417, -0.20778, 0.00608457, -0.264219, 292.764, -38.8335, -93.0218, 0.193791, -0.184435, 0.295069, 0.0943967, 0.352942, 0.158613, -0.33492, -0.00724115, 0.215437, 198.66, -79.5263, -186.263, -0.0649093, 0.00728715, 0.282468, -0.0697497, 0.280443, -0.023263, -0.273817, -0.0731648, -0.0610341, 168.503, -80.7116, -195.515, -0.124806, 0.00517403, 0.336457, -0.0847442, 0.346804, -0.0367684, -0.325651, -0.0922319, -0.119379, 101.452, -74.1173, -109.742, -0.296942, 0.07247, 0.140603, 0.0658896, 0.328547, -0.0301873, -0.143804, 0.000892791, -0.304163, 274.554, -37.9994, -68.4849, -0.204689, 0.0696297, 0.209466, 0.0293531, 0.291715, -0.0682866, -0.218775, -0.0260072, -0.205141, 162.126, -43.362, -100.931, 0.220966, 0.00645635, -0.152253, -0.00531649, 0.268341, 0.00366325, 0.152298, 0, 0.22103, 85.9378, -1.68051, 22.9904, -0.029891, 0.0518437, 0.373236, 0.00413871, 0.374431, -0.0516782, -0.376797, 0, -0.0301762, 135.951, -11.2692, 32.0798, -0.216183, 0, -0.194749, 0, 0.290968, 0, 0.194749, 0, -0.216183, 31.2537, -0.453491, 10.493, -0.204784, -0.0417939, 0.0405618, -0.0481809, 0.204874, -0.0321537, -0.0327198, -0.0401065, -0.206517, 246.41, -30.957, -7.6751, 0.199853, 0.000763291, 0.0533868, -0.00122536, 0.206852, 0.00162969, -0.0533782, -0.00189071, 0.199848, 100.514, -25.9864, -55.8749, 0.302875, 0.0343457, 0.089511, -0.0329374, 0.315825, -0.00973428, -0.0900388, 0, 0.30466, 121.096, -4.51465, 3.53968, 0.115433, -0.00363789, -0.303893, -0.125632, 0.295429, -0.0512575, 0.276733, 0.135637, 0.103493, 169.699, -25.8831, -95.2018, -0.0695655, 0.000729507, 0.291431, 0.0119195, 0.299375, 0.00209583, -0.291188, 0.0120803, -0.0695378, 299.455, -38.7369, -100.79, -0.261092, 0.000412274, -0.0601389, 0.000266967, 0.267927, 0.000677712, 0.0601397, 0.000600496, -0.261091, 184.144, -25.8924, -94.4894, 0.212251, -0.000776961, 0.183752, 0.000369942, 0.28074, 0.00075974, -0.183753, -0.000332256, 0.212251, 140.735, -25.9083, -78.0622, -0.270823, 0, 0.214719, 0, 0.345615, 0, -0.214719, 0, -0.270823, 11.1998, -0.453491, 33.3957, 0.117601, 0.0310891, -0.240889, -0.0427626, 0.26611, 0.0134675, 0.239093, 0.032303, 0.120894, 214.325, -33.0848, -53.9668, 0.0130999, 0.00317185, 0.217293, 0.00374274, 0.217652, -0.00340272, -0.217284, 0.0039403, 0.0130419, 282.906, -38.5021, -103.392, -0.257371, 0.00208832, -0.152125, 0.0151447, 0.297814, -0.0215342, 0.151384, -0.0262435, -0.256477, 95.3373, -78.6527, -188.257, 0.241256, -0.000722202, 0.0994615, 0.000549973, 0.260954, 0.000560791, -0.0994626, -0.000308839, 0.241257, 150.224, -25.8831, -79.105, 0.0332242, 0.0211491, 0.204556, 0.000741929, 0.207195, -0.0215424, -0.205645, 0.00416438, 0.0329705, 66.7603, -23.2097, -35.2434, -0.166914, -0.00295915, 0.174769, 0.00454791, 0.241499, 0.0084325, -0.174735, 0.0091123, -0.166727, 182.35, -45.2693, -106.053, 0.0250285, 0.00871791, 0.29809, -0.0012819, 0.299138, -0.00864094, -0.298214, -0.000554189, 0.0250552, 301.902, -38.4587, -148.493, -0.231754, 0.000644007, -0.0209676, 0.000660195, 0.2327, -0.000149857, 0.0209671, -0.000208734, -0.231754, 178.48, -75.9532, -166.547, 0.178663, 0.000935516, 0.341839, -0.00114788, 0.385712, -0.000455639, -0.341838, -0.000806257, 0.178665, 164.707, -25.8916, -75.3057, 0.182916, 0.0593754, 0.290028, -0.0200188, 0.342623, -0.0575175, -0.295366, 0.0135487, 0.183509, 166.395, -44.5358, -105.764, 0.320481, 0.00842835, 0.141435, -0.00771083, 0.350302, -0.00340296, -0.141476, 0, 0.320573, 64.9021, -1.1743, 63.0623, 0.166813, -0.0105564, 0.136443, 0.00915676, 0.215501, 0.00547808, -0.136544, 0.00155522, 0.167057, 255.048, -30.588, -15.1619, -0.221295, 0.000613471, 0.0531348, 0.000615294, 0.227584, -6.50243e-05, -0.0531347, 8.0427e-05, -0.221295, 197.826, -25.9493, -72.8073, 0.061048, -0.00670039, 0.370085, 0.000207219, 0.375085, 0.00675674, -0.370145, -0.00089511, 0.0610418, 49.1313, -72.9877, -106.754, -0.258226, 0.0195996, -0.0681683, 0.0189691, 0.267072, 0.00493193, 0.0683464, -7.29552e-05, -0.258922, 189.405, -34.3853, -4.2388, -0.37477, -0.0242788, 0.0787233, -0.0289208, 0.382112, -0.0198341, -0.0771389, -0.025305, -0.375031, 228.136, -76.0734, -179.822, -0.278089, 0.126234, -0.0152078, 0.122949, 0.276297, 0.0452051, 0.0324037, 0.0349968, -0.302035, 144.632, -14.0294, 33.9731, -0.262213, 0.0782251, 0.00560787, 0.0782416, 0.262268, 5.34635e-06, -0.00537231, 0.00160828, -0.273633, 6.82309, -3.96935, -194.575, -0.0282051, 0, 0.321804, 0, 0.323038, 0, -0.321804, 0, -0.0282051, 31.7052, -0.453506, -67.6856, 0.181459, -0.0145487, -0.0856695, 0.0175936, 0.200396, 0.00323352, 0.0850964, -0.0104079, 0.182013, 103.358, -72.231, -87.4935, 0.0533858, -0.029302, -0.359775, 0.0165897, 0.363504, -0.0271439, 0.360585, -0.0123857, 0.0545148, 232.524, -76.1221, -189.974, 0.155833, 0.00281109, 0.345084, 0.0192565, 0.377976, -0.0117749, -0.344558, 0.0223955, 0.155413, 165.333, -53.117, -114.697, 0.130205, 0.00640098, -0.295555, 0.000980252, 0.322941, 0.00742594, 0.295623, -0.00389011, 0.130151, 280.544, -74.1646, -164.649, 0.259459, 0.00875711, 0.151564, -0.0078424, 0.300483, -0.0039362, -0.151614, -0.000556681, 0.259577, 320.94, -39.0303, -157.545, -0.210098, 0.0139777, -0.238659, 0.00287797, 0.317849, 0.0160821, 0.23905, 0.00845818, -0.209948, 230.007, -31.2042, -57.1893, -0.344963, -0.00150246, -0.120404, -0.00173005, 0.365371, 0.0003974, 0.120401, 0.000945313, -0.344966, 108.572, -75.8967, -170.345, 0.0766319, 0.029074, -0.381713, 0.0156326, 0.388724, 0.0327463, 0.3825, -0.0217118, 0.075136, 108.776, -79.6033, -200.243, -0.212744, 0.00748722, 0.0420296, 0.00663533, 0.216825, -0.00503907, -0.0421725, -0.00365532, -0.212816, 55.7197, -73.114, -109.472, -0.0581458, 0.00309007, 0.224129, -0.00109471, 0.23154, -0.00347626, -0.224147, -0.00193241, -0.0581239, 3.07156, -0.11882, 7.36697, 0.165043, -0.017289, 0.202172, 0.0182916, 0.260812, 0.0073714, -0.202084, 0.00948721, 0.165782, 52.1401, -5.588, -17.1553, 0.246037, 0.0347131, -0.0481757, -0.0340662, 0.250709, 0.00667039, 0.0486353, 0, 0.248384, 136.563, -11.354, 34.1276, 0.284003, 0.0324382, -0.0911898, -0.0308852, 0.298284, 0.00991684, 0.0917274, 0, 0.285678, 97.7613, -1.97702, 52.6768, 0.199878, 0.00563643, -0.0883074, -0.00231815, 0.218404, 0.00869317, 0.0884567, -0.00701253, 0.199768, 94.0811, -75.3765, -140.363, 0.107841, 0.056586, -0.232769, -0.0244349, 0.256536, 0.0510431, 0.238298, 0.000697109, 0.110573, 272.296, -37.4904, -72.5439, 0.107639, -0.00319159, -0.32772, 0.060368, 0.339234, 0.016524, 0.322128, -0.0625072, 0.106411, 20.8957, -76.4601, -93.8238, 0.135134, -0.00263865, -0.335079, 0.0282813, 0.360101, 0.00856991, 0.333894, -0.0294332, 0.134888, 147.494, -77.8043, -179.318, -0.19883, 0.000485552, -0.159845, 0.000308333, 0.255115, 0.000391417, 0.159845, 0.000111871, -0.19883, 144.152, -75.8611, -157.318, 0.0823379, 0.0447556, 0.312577, -0.0114005, 0.323239, -0.0432793, -0.315559, 0, 0.0831234, 132.832, -10.8374, 52.2525, -0.0596949, 0.000676231, 0.35025, 0.000267204, 0.3553, -0.000640441, -0.35025, 0.000155803, -0.0596953, 143.84, -75.8696, -136.827, 0.0297092, -0.0259259, 0.301814, 0.00862479, 0.303211, 0.0251969, -0.302803, 0.00609274, 0.0303299, 222.594, -74.5845, -141.271, -0.201035, -0.0218931, -0.145029, -0.0436593, 0.243843, 0.0237097, 0.140023, 0.0445979, -0.200829, 110.672, -16.2944, -28.3173, -0.255696, -0.0310578, -0.0199026, -0.0303644, 0.256359, -0.00994363, 0.0209452, -0.00750248, -0.257383, 182.691, -37.6777, -99.0017, 0.364617, -0.00152644, 0.0696105, 0.00167945, 0.371201, -0.000657119, -0.069607, 0.000960397, 0.364619, 109.537, -75.9242, -158.176, 0.0956489, 0.00599992, -0.187113, -0.00050946, 0.210128, 0.00647749, 0.187208, -0.00249366, 0.0956177, 172.505, -53.2794, -117.927, 0.194224, -0.0504349, 0.00488855, 0.0133012, 0.0694322, 0.187864, -0.0488943, -0.181456, 0.0705255, 66.7972, -30.2697, -50.2346, 0.30688, -0.0613766, 0.00809334, 0.0562572, 0.293559, 0.0930925, -0.0258401, -0.0897998, 0.298792, 262.457, -74.7536, -177.596, 0.233452, 0.0992543, 0.250981, -0.0629665, 0.342717, -0.0769636, -0.262447, 0.0060638, 0.241719, 211.706, -77.8878, -203.346, 0.177142, -0.00593275, -0.22571, 0.0188761, 0.286269, 0.00728989, 0.224997, -0.0193456, 0.177092, 120.377, -80.6429, -216.792, -0.146736, 0.0281681, 0.13581, 0.0176155, 0.19989, -0.0224261, -0.137577, -0.00444924, -0.147723, 116.347, -13.8877, -15.5341, -0.285219, 0.000791279, 0.019925, 0.000771482, 0.285914, -0.000310988, -0.0199258, -0.000256467, -0.28522, 195.445, -75.9958, -161.326, 0.161263, 0, 0.270542, 0, 0.314958, 0, -0.270542, 0, 0.161263, 19.4883, -0.453491, 27.8417, -0.248129, -0.0202859, 0.159694, -0.0254506, 0.294668, -0.00211291, -0.158952, -0.0155138, -0.248948, 87.0556, -73.1672, -83.3961, 0.0111301, 0.0169046, 0.242245, 0.0170155, 0.241849, -0.0176587, -0.242237, 0.017765, 0.00989006, 160.584, -35.1111, -19.1807, 0.254223, 0.00903262, 0.0617516, -0.00981765, 0.261579, 0.00215599, -0.0616316, -0.0044098, 0.254375, 51.7607, -73.1052, -117.062, -0.276502, 0.000779366, 0.0533913, 0.000717338, 0.28161, -0.000395788, -0.0533922, -0.000252606, -0.276503, 132.352, -75.8337, -176.768, -0.276339, 0.0811382, -0.24279, 0.0602783, 0.367844, 0.0543226, 0.248791, 0.000999578, -0.282836, 271.173, -37.2144, -82.9596, -0.0467066, -0.000634454, -0.241012, 0.000232074, 0.245496, -0.000691232, 0.241013, -0.000359343, -0.0467057, 134.038, -25.8713, -38.7159, -0.364278, 0.0398092, 0.0361092, 0.039615, 0.366063, -0.00392685, -0.0363221, 0, -0.366426, 100.688, -2.29532, 13.1192, -0.0393454, 0.121179, -0.264439, -0.0187912, 0.265231, 0.124338, 0.290274, 0.0335952, -0.0277944, 142.683, -16.0673, 57.0896, 0.0267746, 0.0194077, -0.263099, -0.00189284, 0.264458, 0.0193154, 0.263807, -7.22411e-05, 0.0268413, 178.683, -33.5973, -0.0876907, -0.190617, 0.0394863, 0.134636, 0.0491145, 0.23153, 0.00163257, -0.13143, 0.0292528, -0.194657, 58.9132, -71.9387, -175.028, -0.107874, 0, 0.219086, 0, 0.244203, 0, -0.219086, 0, -0.107874, 18.5394, -0.453491, 30.9804, -0.0333164, -0.00240684, -0.327873, 0.0264682, 0.328466, -0.00510073, 0.326812, -0.0268475, -0.0330115, 139.434, -78.1157, -182.404, -0.203419, -0.000890811, 0.0744898, -0.000643762, 0.216628, 0.000832616, -0.0744923, 0.000560476, -0.20342, 117.982, -75.8999, -154.122, -0.157568, 0.059367, -0.121621, 0.0462166, 0.199042, 0.0372821, 0.127201, 0.00122056, -0.164201, 4.61482, -3.26559, -201.93, -0.018039, -0.00292133, -0.335881, 0.0016411, 0.336361, -0.00301363, 0.33589, -0.00180029, -0.0180238, 203.959, -45.07, -105.706, -0.060607, 0, -0.199501, 0, 0.208504, 0, 0.199501, 0, -0.060607, 27.0013, -0.453491, 64.2231, -0.219873, 0.0111961, -0.128534, 0.00623981, 0.254597, 0.011503, 0.12887, 0.00677501, -0.219858, 232.554, -31.2709, -58.893, 0.345355, -0.00133161, -0.00957863, 0.00134407, 0.345487, 0.00043077, 0.00957689, -0.000467865, 0.345357, 116.044, -25.9692, -67.0757, 0.193181, 0.0629505, 0.210068, -0.0420266, 0.285389, -0.0468736, -0.215233, 0.000775516, 0.197698, 262.026, -35.1925, -84.481, 0.293202, -0.0202974, 0.0346638, 0.0183024, 0.294836, 0.0178314, -0.0357573, -0.0155226, 0.293362, 90.4282, -72.66, -78.1743, -0.0940989, 0.0201064, -0.257311, 0.00697611, 0.273977, 0.0188575, 0.258001, -7.48416e-05, -0.0943571, 207.056, -35.6848, -19.5091, -0.344257, -0.0307863, 0.105732, -0.0272917, 0.360055, 0.0159782, -0.106688, 0.00723496, -0.345261, 211.134, -75.2047, -159.169, -0.110114, 0.00938012, -0.291085, 0.0127147, 0.311055, 0.0052138, 0.290959, -0.0100429, -0.11039, 75.1986, -75.1182, -149.424, -0.196981, 0.0334491, -0.210666, -0.00287775, 0.28631, 0.0481506, 0.213285, 0.0347551, -0.193912, 202.637, -32.698, -45.9045, 0.0672471, -0.0237431, 0.338755, -0.0132356, 0.344888, 0.0268004, -0.339328, -0.0181578, 0.0660882, 96.4077, -73.276, -97.6931, 0.222084, 0.00108308, 0.322234, -0.000903673, 0.391351, -0.000692584, -0.322235, -0.000351045, 0.222085, 169.203, -75.9289, -168.314, 0.0309733, 0.0100669, -0.344035, -0.000265028, 0.345426, 0.0100837, 0.344182, -0.000639943, 0.0309678, 296.171, -38.2915, -148.412, 0.266788, 0.00917613, -0.168223, -0.0111089, 0.315334, -0.000417214, 0.168106, 0.00627543, 0.266945, 120.292, -79.7247, -200.339, 0.27734, -0.00101441, 0.239654, 0.000483918, 0.366539, 0.000991483, -0.239655, -0.000433799, 0.27734, 145.602, -25.8775, -63.6046, 0.354119, 0.00573373, 0.0924314, -0.0121827, 0.365036, 0.0240299, -0.0918043, -0.0263245, 0.35335, 94.5282, -79.2021, -195.953, 0.250121, 0.0243698, 0.0924308, -0.0193509, 0.266464, -0.0178905, -0.0936103, 0.0100319, 0.250668, 212.423, -35.8041, -19.3895, -0.154878, 0.00743019, -0.267135, 0.00372677, 0.308785, 0.00642798, 0.267212, 0, -0.154922, 61.3147, -1.08798, 27.8764, 0.0397027, 0.00570676, 0.223474, -0.0573976, 0.219622, 0.00458896, -0.216052, -0.0572973, 0.0398474, 190.483, -79.6115, -189.109, -0.194175, -0.0468426, -0.187121, -0.00947461, 0.267504, -0.0571335, 0.192662, -0.0340555, -0.1914, 265.397, -45.8196, -110.292, 0.250561, -0.00956068, -0.270233, -0.0144737, 0.36741, -0.0264189, 0.270014, 0.0285664, 0.249347, 311.407, -38.0935, -124.882, -0.0241327, 0.0485852, -0.30598, -0.01871, 0.306118, 0.0500828, 0.309248, 0.0223121, -0.0208476, 233.351, -30.8355, -81.919, 0.304432, -0.0248054, -0.245768, 0.0355314, 0.3904, 0.00460949, 0.244447, -0.0258538, 0.305406, 227.266, -76.0524, -178.672, 0.204479, 0.00806098, -0.236331, 0.00231513, 0.312351, 0.012657, 0.236457, -0.010029, 0.204246, 112.293, -75.006, -114.189, 0.164473, 0.0415689, 0.299754, -0.0210952, 0.341909, -0.0358401, -0.301886, -0.00124453, 0.165815, 49.6757, -73.3219, -133.234, 0.134826, 0.0120474, -0.321834, 0.000773688, 0.348885, 0.0133841, 0.322058, -0.00588164, 0.1347, 76.9086, -73.5895, -94.2766, -0.113938, 0.00292039, 0.167467, -0.0414583, 0.195748, -0.0316202, -0.162281, -0.0520587, -0.109502, 133.76, -70.5381, -94.4712, 0.218743, -0.0115067, -0.0856307, 0.0100959, 0.234901, -0.00577488, 0.0858085, 0.00169522, 0.21897, 234.781, -31.6395, -7.02798, -0.055146, 0.0138629, -0.343721, 0.0154398, 0.347859, 0.0115527, 0.343654, -0.0134041, -0.0556758, 72.2787, -74.5956, -136.667, -0.195563, 0.0386743, 0.222529, 0.0254842, 0.296251, -0.0290905, -0.224423, -6.0385e-05, -0.197217, 78.0366, -24.5917, -50.0129, 0.210752, 0.00795183, 0.287265, -0.0168029, 0.355967, 0.00247391, -0.286883, -0.0150076, 0.210888, 64.2873, -5.46829, -4.46031, 0.167055, 0.0071233, 0.167179, -0.0104297, 0.236216, 0.000357133, -0.167005, -0.00762664, 0.167207, 72.2753, -75.2892, -157.449, -0.14201, -0.00215535, 0.163007, -0.0028096, 0.216182, 0.000410765, -0.162997, -0.00184852, -0.142026, 9.65856, -0.25676, -0.328357, -0.012502, -0.0303175, 0.354424, 0.00607779, 0.354573, 0.0305446, -0.355666, 0.00712479, -0.0119364, 241.136, -73.1008, -136.21, -0.146975, 0.051371, -0.340664, 0.0203501, 0.371017, 0.0471683, 0.343914, 0, -0.148377, 134.983, -11.1353, 42.2136, 0.0869525, 0.0442741, -0.305376, 0.0191478, 0.315884, 0.0512496, 0.307975, -0.0321397, 0.0830326, 179.953, -56.0683, -122.079, 0.260638, 0.0763716, -0.187765, -0.044583, 0.31996, 0.0682545, 0.197739, -0.0285253, 0.26288, 160.794, -43.2377, -103.102, -0.081299, 0.00778819, 0.210413, -0.000742281, 0.225541, -0.00863494, -0.210556, -0.00380226, -0.0812134, 69.9862, -73.3681, -95.3243, -0.128921, 0.148299, -0.28934, 0.24233, 0.251341, 0.0208475, 0.216763, -0.192785, -0.195393, 172.786, -32.8862, -0.156656, -0.181176, 0.00447087, 0.220486, -0.01303, 0.284636, -0.0164786, -0.220146, -0.0205264, -0.180481, 83.5768, -79.6786, -204.946, 0.171171, 0.0814623, -0.212836, -0.052414, 0.273122, 0.0623834, 0.221783, 0.00167484, 0.179008, 1.22916, -2.14825, -219.465, -0.202884, -0.00575942, 0.137212, -0.00219351, 0.244884, 0.00703553, -0.137316, 0.00459774, -0.202844, 86.2845, -79.7316, -214.036, 0.228228, 0.00549635, 0.00988169, -0.00549121, 0.228442, -0.000237755, -0.00988454, 0, 0.228294, 82.0298, -1.58646, 17.7602, -0.175062, 0.0659795, -0.296497, 0.0451396, 0.344066, 0.0499131, 0.300376, -0.0132517, -0.180302, 240.008, -31.7457, -64.1665, 0.313613, 0.0231643, -0.0357736, -0.0230053, 0.315646, 0.00271122, 0.0358761, -8.62241e-05, 0.314455, 178.562, -33.59, -5.95327, 0.240976, -0.0209475, 0.0867476, 0.0204274, 0.256106, 0.00509811, -0.0868715, 0.00211506, 0.241831, 239.644, -75.4211, -205.034, -0.0843467, 0.0102249, -0.203198, -0.0182224, 0.218704, 0.0185692, 0.202638, 0.0239233, -0.0829102, 207.574, -30.2098, -73.8655, 0.0499883, 0.0130891, -0.293523, -0.0100124, 0.297643, 0.0115678, 0.293644, 0.00792051, 0.0503621, 236.826, -31.3517, -62.9136, -0.0866902, 0.000886954, -0.308537, 0.00051668, 0.320484, 0.000776127, 0.308538, -0.000287477, -0.0866913, 201.336, -76.007, -155.543, 0.103919, 0.113885, 0.324272, -0.105272, 0.333035, -0.0832255, -0.327169, -0.0709866, 0.129778, 265.377, -36.473, -89.2941, -0.121849, 0.120669, 0.236705, 0.0874482, 0.264116, -0.0896271, -0.250884, 0.0334539, -0.146202, 148.863, -17.6796, 47.5277, 0.094276, -0.00206408, -0.202185, 0.0374972, 0.219391, 0.0152447, 0.198688, -0.040425, 0.0930582, 29.3179, -76.9909, -97.1346, 0.209725, -0.0217777, -0.305881, 0.275409, 0.176347, 0.176277, 0.13486, -0.326266, 0.115695, 266.434, -41.0681, -95.2706, 0.293888, 0.00249644, -0.0190853, -0.00499896, 0.291909, -0.0387943, 0.0185874, 0.0390353, 0.291327, 297.07, -40.6524, -79.4226, -0.279743, -0.0133216, 0.102696, -0.0161394, 0.29781, -0.00533184, -0.102291, -0.0105566, -0.280009, 37.5098, 0.341812, 0.962712, 0.0496399, 0.0112569, 0.278284, -0.012699, 0.282467, -0.00916089, -0.278222, -0.0108844, 0.0500692, 60.2041, -74.0444, -134.851, 0.106451, 0.0401584, 0.243138, -0.0331283, 0.264781, -0.0292287, -0.244195, -0.0184149, 0.109955, 79.9379, -8.81425, -20.3191, -0.0269011, 0.0149345, 0.320218, 0.0361002, 0.319441, -0.0118655, -0.318527, 0.0349424, -0.0283887, 187.263, -30.2939, -64.416, 0.186812, 0, 0.142685, 0, 0.23507, 0, -0.142685, 0, 0.186812, -0.243347, -0.453506, -57.9008, -0.00777687, 0, -0.232282, 0, 0.232412, 0, 0.232282, 0, -0.00777687, 30.989, -0.453506, -40.7611, 0.0261891, 0.144745, 0.139215, -0.0173659, 0.1415, -0.143854, -0.200075, 0.00666479, 0.0307087, 14.2008, -68.7113, -183.047, -0.194957, 0.00796131, 0.249508, -0.0582628, 0.306387, -0.0553009, -0.24274, -0.0799335, -0.187119, 125.376, -79.3197, -194.475, 0.349417, 0.0732313, -0.118518, -0.0708644, 0.368941, 0.0190418, 0.119948, 0.00463927, 0.3565, 261.468, -35.1822, -74.1529, 0.284922, -0.0199516, 0.0831253, 0.0151665, 0.296464, 0.0191715, -0.08413, -0.0141247, 0.284976, 198.963, -53.5798, -119.922, 0.277172, 0.0220312, -0.182778, -0.0255395, 0.331758, 0.00125945, 0.182321, 0.0129799, 0.278043, 24.0697, -71.0186, -133.52, 0.052997, 0.0102726, -0.39471, 0.0113048, 0.398047, 0.0118773, 0.394682, -0.0127805, 0.0526606, 126.903, -75.3971, -114.623, 0.23394, -0.0114099, 0.00577329, 0.0116436, 0.233797, -0.00975461, -0.0052861, 0.010027, 0.234015, 61.2724, -5.6994, -2.01055, 0.330116, 0.0361085, -0.0356358, -0.0358999, 0.332034, 0.00387537, 0.0358459, 0, 0.332062, 120.325, -4.43082, 23.4946, -0.0587067, -0.0126682, 0.190996, -0.0163601, 0.199378, 0.00819555, -0.190715, -0.0132036, -0.0594961, 242.527, -74.6845, -172.657, -0.293942, -0.0398833, 0.0125973, -0.0404467, 0.293824, -0.0135216, -0.0106503, -0.0151029, -0.296327, 192.863, -78.5802, -208.345, -0.194503, 0.000554748, -0.118662, -0.00431119, 0.227657, 0.0081309, 0.118585, 0.00918641, -0.194334, 317.74, -38.4977, -107.822, -0.268576, -0.0239681, 0.0678665, -0.013544, 0.274329, 0.0432843, -0.0706887, 0.0385032, -0.266146, 122.83, -14.7419, -29.3425, -0.050618, 0.0265665, -0.198419, -0.0225172, 0.202609, 0.0328718, 0.198919, 0.0296952, -0.0467697, 150.789, -33.7964, -20.1888, 0.0257164, 0, 0.252859, 0, 0.254163, 0, -0.252859, 0, 0.0257164, 18.2069, -0.453506, -74.1727, -0.264166, 0.0196006, 0.039382, 0.0193755, 0.267085, -0.00296248, -0.0394932, -7.29588e-05, -0.264875, 179.157, -33.6314, 2.24207, 0.225981, 0, 0.0630571, 0, 0.234613, 0, -0.0630571, 0, 0.225981, 9.97897, -0.453506, -59.6465, 0.276464, 0.0545411, -0.0676826, -0.0502851, 0.284418, 0.0237936, 0.0709019, -0.0109544, 0.280787, 256.55, -34.4344, -51.6155, -0.198701, 0.120611, -0.00960692, 0.111569, 0.189794, 0.0751808, 0.0468147, 0.0596057, -0.219948, 240.855, -30.886, -33.9099, -0.359489, 0, 0.121108, 0, 0.379341, 0, -0.121108, 0, -0.359489, 30.48, -0.453506, -25.4901, 0.115823, 0.0833611, -0.234052, 0.0195423, 0.254378, 0.100271, 0.247684, -0.0590519, 0.101536, 269.38, -66.6076, -124.242, 0.309762, 0.10458, 0.0427314, -0.110716, 0.305825, 0.0541137, -0.022471, -0.0651868, 0.32243, 270.426, -37.4922, -85.9751, -0.234868, -0.013946, 0.306874, -0.042324, 0.384076, -0.0149385, -0.304261, -0.0426614, -0.234807, 247.665, -32.3972, -33.3127, 0.349747, 0.0429203, -0.0480166, -0.0423451, 0.353025, 0.00712014, 0.0485246, -0.00128499, 0.352299, 37.2082, -71.8403, -142.61, -0.265725, 0.067951, -0.21588, 0.0499684, 0.342338, 0.0462497, 0.220736, 0.00430476, -0.270348, 256.535, -34.0756, -84.2802, 0.280953, 0.00683687, -0.0423589, -0.00676047, 0.284128, 0.00101927, 0.0423712, 0, 0.281034, 36.1825, -0.4832, 12.175, -0.18673, 0.0424561, 0.314868, 0.0596961, 0.363406, -0.0135986, -0.312059, 0.0441137, -0.191012, 217.519, -36.0836, -32.3369, 0.318697, 0, -0.168429, 0, 0.360466, 0, 0.168429, 0, 0.318697, 12.3976, -0.453506, -75.5292, -0.177561, 0.0264079, -0.312986, 0.0131164, 0.359844, 0.0229204, 0.313824, -9.82975e-05, -0.178045, 186.743, -34.1902, -4.98302, 0.0560857, 0.0383584, -0.325951, -0.0459993, 0.328331, 0.0307234, 0.324961, 0.039856, 0.0606056, 202.115, -31.9069, -51.9197, -0.291817, 0.00484269, 0.0487615, 0.00424662, 0.295846, -0.00396732, -0.048817, -0.00321275, -0.29183, 98.9418, -25.8686, -45.8658, -0.00923304, 0.000395339, -0.207511, -7.34231e-05, 0.207716, 0.000398997, 0.207511, 9.10858e-05, -0.00923288, 168.781, -75.9141, -145.318, 0.00650006, 0.00429652, 0.204329, 0.010472, 0.204157, -0.00462603, -0.204106, 0.0106115, 0.00626983, 202.98, -31.0089, -61.6941, -0.308559, 0.0370828, -0.145147, 0.0335556, 0.340993, 0.0157847, 0.146003, 0, -0.310378, 112.839, -3.6167, 14.6946, -0.234505, -0.00269693, 0.134849, -0.00349094, 0.270502, -0.000660861, -0.134831, -0.002313, -0.234519, 15.1, -0.215958, -1.90347, -0.24561, -0.00186208, -0.0684446, 0.00378817, 0.254121, -0.0205072, 0.068365, -0.0207709, -0.24476, 126.404, -78.9663, -191.643, 0.386425, 0.000483138, -0.0228714, -0.0016504, 0.386595, -0.0197179, 0.0228169, 0.019781, 0.385922, 272.111, -74.3133, -155.958, -0.355882, -0.0299178, -0.0983973, -0.0303408, 0.369191, -0.00251664, 0.0982676, 0.00564141, -0.357128, 225.038, -74.1473, -152.982, -0.289611, 0, 0.254706, 0, 0.385681, 0, -0.254706, 0, -0.289611, 30.9115, -0.453491, 36.2807, -0.163303, -0.000798855, -0.262452, -3.78724e-05, 0.309109, -0.000917307, 0.262453, -0.000452457, -0.163302, 132.388, -25.8939, -51.1069, 0.223032, 0.0398907, -0.261842, -0.0574429, 0.341448, 0.00308969, 0.258559, 0.0414482, 0.22655, 211.241, -31.0956, -67.386, -0.279284, 0.029166, -0.282551, -0.0130823, 0.394507, 0.0536535, 0.283751, 0.0468956, -0.275629, 82.394, -75.5078, -163.543, 0.211124, 0.000591548, 0.0598794, -0.00054794, 0.219451, -0.00023602, -0.0598798, 7.75528e-05, 0.211125, 193.88, -25.9379, -74.9538, -0.20363, 0.00704188, 0.0115385, 0.00683499, 0.203928, -0.00383276, -0.0116623, -0.0034379, -0.203716, 69.5852, -73.5526, -107.092, -0.30874, 0.00250806, 0.183311, -0.0139432, 0.357673, -0.0283775, -0.182797, -0.0315183, -0.307444, 94.5184, -78.1322, -182.416, -0.147447, 0.0390393, 0.238001, -0.00386987, 0.278535, -0.0480856, -0.24115, -0.0283396, -0.144749, 165.915, -53.7863, -118.989, -0.195932, 0.0890462, 0.0143583, 0.090085, 0.1949, 0.0205755, -0.00447975, 0.0246869, -0.214232, 148.669, -16.0024, 34.9864, -0.0692791, 0.0447174, -0.255045, -0.0207945, 0.262202, 0.0516208, 0.258099, 0.0331282, -0.0643003, 63.474, -73.0959, -172.026, 0.196913, 0.114136, 0.156953, -0.0668911, 0.249815, -0.0977435, -0.182172, 0.0316426, 0.205543, 160.508, -20.3676, 26.7474, 0.167034, 0.00718031, 0.222687, -0.011455, 0.278227, -0.000378873, -0.222508, -0.00893334, 0.167188, 126.636, -75.5805, -120.551, -0.215904, 0, 0.213264, 0, 0.303473, 0, -0.213264, 0, -0.215904, 2.36724, -0.453491, 21.5315, -0.0241064, 0.0271878, -0.2169, 0.00822576, 0.218174, 0.0264332, 0.218443, -0.00521529, -0.0249316, 6.54403, -3.64182, -148.452, 0.118402, 0.0827412, 0.323199, -0.0307715, 0.344196, -0.0768436, -0.3322, -0.00239212, 0.122312, 42.6185, -7.29581, -50.6921, -0.314483, 0.000616755, 0.0781644, 0.00063282, 0.324051, -1.08628e-05, -0.0781642, 0.0001421, -0.314484, 137.001, -75.8453, -161.659, -0.00456254, 0.284929, 0.268477, 0.126175, 0.255238, -0.268735, -0.3706, 0.0833911, -0.0947993, 183.133, -32.0498, 4.10205, 0.243755, -0.0213454, 0.0541261, 0.021925, 0.249641, -0.000288735, -0.0538939, 0.0050163, 0.244687, 229.433, -73.8789, -147.282, 0.236546, -0.016286, -0.0128303, 0.0169157, 0.236566, 0.0115851, 0.0119878, -0.0124549, 0.236823, 105.999, -71.4729, -75.9869, -0.243731, -0.00258659, -0.136921, 0.0225946, 0.274929, -0.0454141, 0.135069, -0.0506583, -0.239477, 31.4103, -73.8477, -80.1831, -0.0632799, -0.0644795, -0.236718, 0.0471816, 0.236704, -0.0770883, 0.240763, -0.0633333, -0.04711, 276.847, -44.9322, -112.04, 0.154017, 0.000832647, 0.164924, -0.00207569, 0.225648, 0.000799198, -0.164913, -0.0020625, 0.154017, 99.7415, -26.0039, -58.1085, 0.184985, 0.0519733, 0.07996, -0.0897524, 0.153868, 0.107626, -0.0322388, -0.130145, 0.159177, 145.677, -18.0371, -2.84353, 0.246684, 0.0393469, -0.141077, -0.0341558, 0.284175, 0.0195335, 0.142423, 0, 0.249037, 135.865, -11.2574, 20.6049, -0.059252, 0.00540133, 0.216508, 0.00142576, 0.224469, -0.00520976, -0.21657, 0, -0.0592692, 89.251, -1.76024, 7.95672, 0.217237, 0.00639817, 0.153373, -0.00522677, 0.265923, -0.00369018, -0.153417, 0, 0.2173, 69.6086, -1.28755, 43.0881, -0.210642, 0.0227022, -0.0968322, 0.0247608, 0.231622, 0.000440361, 0.0963264, -0.00989468, -0.211862, 68.8915, 0.967194, 1.15532, -0.190905, 0.0312786, -0.190504, -0.00113138, 0.267731, 0.0450922, 0.193051, 0.0324998, -0.188121, 218.641, -33.5155, -54.5732, -0.115994, 0.155371, 0.0549108, 0.121772, 0.126058, -0.099452, -0.111026, -0.0240632, -0.166445, 49.0556, -18.9, -25.2604, -0.143612, 0.158346, 0.040542, 0.163213, 0.141846, 0.024138, -0.00886366, 0.0463436, -0.212403, 168.959, -29.2535, 43.9727, 0.192581, 0.0532076, 0.196978, -0.0514806, 0.274768, -0.023889, -0.197436, -0.0197455, 0.198362, 259.713, -45.0677, -105.875, -0.378232, -0.0340472, -0.0745296, -0.0463207, 0.379215, 0.0618382, 0.0675889, 0.0693568, -0.374693, 86.6238, -18.5982, -27.5265, 0.246013, -0.00139142, -0.232315, 0.000410571, 0.338366, -0.00159182, 0.232319, 0.000875446, 0.246011, 134.871, -75.8849, -133.08, 0.18554, -0.0316666, -0.32061, 0.0093935, 0.370351, -0.0311435, 0.322033, 0.00744185, 0.185628, 207.469, -75.4834, -160.896, 0.287462, 0.0111289, -0.145816, -0.00746424, 0.322284, 0.00988212, 0.146049, -0.0054332, 0.287507, 76.6731, -73.2627, -75.3745, 0.284743, 0.0429547, -0.0415493, -0.0492052, 0.283311, -0.0443167, 0.033916, 0.0503986, 0.284535, 317.238, -39.4243, -150.895, 0.310277, 0.000757383, 0.0221538, 0.000138377, 0.310814, -0.012564, -0.0221663, 0.012542, 0.310024, 308.243, -38.9931, -94.9713, 0.189235, 0.0428152, -0.345244, -0.0205792, 0.393705, 0.0375451, 0.347279, 0, 0.190351, 104.518, -2.71179, 39.7121, -0.0166518, -0.00212736, 0.290817, -0.023813, 0.290325, 0.000760257, -0.289848, -0.02373, -0.0167699, 167.628, -77.6648, -179.416, -0.32152, -0.00124118, 0.0180376, -0.00126366, 0.322025, -0.000365888, -0.0180361, -0.000436092, -0.321522, 121.881, -25.9565, -74.3556, -0.0519169, 0.000747767, 0.272504, 0.000236247, 0.277405, -0.000716207, -0.272505, 9.80334e-05, -0.0519173, 191.755, -25.9303, -79.9319, 0.0402198, 0, -0.319227, 0, 0.32175, 0, 0.319227, 0, 0.0402198, 6.13251, -0.453506, -58.6976, -0.251755, 0.00901084, -0.161243, 0.0127896, 0.298809, -0.00327044, 0.160987, -0.00964755, -0.251895, 77.9321, -74.9055, -140.282, 0.0662286, 0.00450468, -0.279803, 0.0190932, 0.286789, 0.00913648, 0.279187, -0.0206817, 0.0657498, 95.1083, -79.6164, -201.571, -0.247252, -0.00538775, 0.23551, -0.00390123, 0.341465, 0.00371595, -0.235539, 0, -0.247283, 46.5488, -7.85107, -2.15838, -0.205622, 0.0142484, -0.250546, 0.00236472, 0.324005, 0.0164853, 0.25094, 0.00862202, -0.205455, 240.458, -31.9255, -47.3561, -0.348708, 0.000682483, 0.0835834, 0.000700336, 0.358585, -6.16858e-06, -0.0835833, 0.000157244, -0.348709, 138.113, -75.8507, -154.346, -0.336716, -0.0322734, 0.141965, -0.00361245, 0.359458, 0.0731485, -0.145542, 0.0657433, -0.330256, 92.5503, -18.2249, -26.6585, -0.267798, -0.0245721, -0.20772, -0.00858781, 0.338459, -0.0289661, 0.208992, -0.0175784, -0.267358, 98.8906, -73.2987, -101.805, 0.10322, -0.0224191, -0.258428, 0.0171398, 0.278118, -0.0172813, 0.258832, -0.00947635, 0.104203, 234.268, -75.8956, -187.453, 0.21101, 0.00569779, 0.296218, -0.0246062, 0.362748, 0.0105507, -0.295249, -0.0261595, 0.210823, 83.0495, -78.8859, -194.068, 0.2658, 0.00294112, 0.0169342, -0.00258386, 0.266282, -0.00569131, -0.0169924, 0.00551517, 0.265755, 110.095, -77.7205, -173.736, -0.215178, -0.022068, 0.169505, -0.0231162, 0.273763, 0.00629665, -0.169365, -0.00932796, -0.216215, 240.847, -75.2929, -185.331, 0.243817, 0.00658413, -0.0755611, -0.00386012, 0.255125, 0.0097751, 0.0757492, -0.0081916, 0.24371, 109.829, -75.9113, -144.363, -0.0573027, 0.013811, 0.342046, -0.0109005, 0.346555, -0.0158193, -0.342151, -0.0133539, -0.0567811, 61.2888, -74.7539, -152.143, 0.183986, 0.0143471, 0.0903465, -0.0146247, 0.204934, -0.00276126, -0.090302, -0.00395794, 0.184524, 212.585, -59.3035, -123.315, 0.273382, 0.000579835, 0.25934, 0.000160582, 0.376822, -0.00101178, -0.259341, 0.000844556, 0.273381, 181.64, -25.8912, -93.3139, -0.256914, -0.0147702, -0.176895, -0.00906782, 0.311876, -0.012871, 0.177278, -0.00545259, -0.257016, 69.1624, -19.7605, -27.7612, -0.26926, 0.0344041, -0.166082, 0.0292819, 0.316361, 0.0180613, 0.167061, 0, -0.270848, 122.06, -4.61948, 49.1383, -0.237577, 0.117056, -0.101252, 0.092861, 0.256206, 0.0783071, 0.123818, 0.0324521, -0.253008, 163.518, -21.2407, 22.7839, -0.192501, 0.0101867, -0.22359, 0.0104165, 0.294999, 0.00447189, 0.223579, -0.00497321, -0.192719, 65.5359, -73.0717, -86.8607, -0.0764504, 0.0328953, 0.259545, 0.00834294, 0.270568, -0.031835, -0.261488, -0.000984852, -0.076898, 41.8553, -72.4146, -145.173, 0.218144, 0.00685241, -0.0640464, -0.00450376, 0.227233, 0.00897204, 0.0642543, -0.0073366, 0.218067, 74.9931, -75.1213, -149.712, -0.280928, 0.102501, -0.111963, 0.0937424, 0.302394, 0.0416288, 0.119392, 0.0037551, -0.296132, 43.3623, -7.51082, -73.6182, -0.0480998, -0.0275245, 0.333073, -0.00117413, 0.336517, 0.0276395, -0.334206, 0.00277914, -0.0480338, 227.617, -76.4874, -195.037, 0.250548, -0.0841815, -0.198902, 0.116852, 0.30903, 0.0164018, 0.181643, -0.082685, 0.263802, 281.756, -43.895, -113.161, -0.0659262, 0.0272415, -0.37787, -0.0406559, 0.380825, 0.0345477, 0.376663, 0.0458732, -0.0624085, 155.391, -31.1, -43.1666, -0.322031, -0.0289754, 0.160162, -0.0314005, 0.359453, 0.00189388, -0.159704, -0.0122477, -0.323327, 235.967, -75.7302, -186.62, -0.367486, -0.00283795, 0.126324, -0.0129661, 0.3873, -0.0290183, -0.125689, -0.0316564, -0.366349, 132.824, -78.2994, -184.059, 0.0479553, 0.126166, 0.202494, 0.0432137, 0.198534, -0.133933, -0.234636, 0.0623507, 0.0167191, 240.227, -31.5771, -30.4378, 0.316562, -0.0110224, -0.155398, 0.0127945, 0.352586, 0.00105473, 0.155262, -0.00658161, 0.316752, 31.89, 0.174911, 2.18161, -0.299288, 0.000851572, 0.101137, 0.000842495, 0.315915, -0.000166856, -0.101137, 0.000111642, -0.299289, 193.6, -25.9352, -80.2441, 0.0626512, -0.0282278, 0.342698, 0.0103289, 0.348337, 0.026804, -0.343703, 0.00532275, 0.0632735, 233.682, -73.4418, -153.307, -0.167814, 0.0410552, 0.338172, 0.0182496, 0.377521, -0.036776, -0.340166, 0, -0.168803, 121.749, -4.58571, 33.0381, -0.156946, -0.0165713, 0.166159, -0.0200044, 0.228255, 0.00386909, -0.165781, -0.0118548, -0.157771, 114.116, -70.9585, -78.0301, 0.281958, 0.0339781, -0.277569, -0.0335376, 0.395435, 0.0143386, 0.277623, 0.013261, 0.283636, 227.383, -37.772, -0.39248, 0.172978, 0.02996, -0.10179, -0.0434472, 0.197603, -0.0156716, 0.096805, 0.0351519, 0.174853, 324.745, -40.929, -148.835, -0.0327703, 0.0354948, 0.304291, 0.0406873, 0.30382, -0.0310581, -0.30364, 0.0368807, -0.0370022, 212.954, -31.8821, -62.5554, -0.220561, 0.0487457, 0.0137857, 0.0486889, 0.220991, -0.00242703, -0.0139848, 0.00060052, -0.225871, 287.163, -40.7764, -70.0867, 0.287229, 0.0341591, 0.252087, -0.0382268, 0.38169, -0.00816524, -0.251503, -0.019003, 0.289138, 265.105, -73.7113, -148.217, 0.201529, -0.0180183, -0.32277, 0.0151898, 0.380461, -0.0117547, 0.322916, -0.00665167, 0.201991, 75.4849, -19.4511, -27.1902, -0.223909, 0.000949325, 0.271836, 0.000699629, 0.352179, -0.000653626, -0.271837, 0.000124458, -0.22391, 203.673, -25.9645, -74.9448, -0.359863, 0.00896185, -0.096109, 0.00865838, 0.372476, 0.0023124, 0.0961368, 0, -0.359967, 91.7691, -1.82083, 20.8297, -0.213518, 0.0245761, -0.0740319, 0.02322, 0.225988, 0.00805093, 0.0744684, 0, -0.214777, 128.739, -5.34579, 43.6592, -0.273753, 0.0028668, -0.198591, -0.024023, 0.335216, 0.0379544, 0.197153, 0.0448266, -0.271125, 287.326, -40.8002, -77.6939, 0.192813, 0.0255189, 0.106011, -0.00933833, 0.218431, -0.0355959, -0.108639, 0.0265153, 0.191209, 218.032, -36.0111, -33.428, -0.199212, 0.00357898, -0.111814, 0.0111564, 0.227855, -0.0125834, 0.111314, -0.0164317, -0.198846, 80.7768, -78.1911, -184.928, -0.118667, 0.000771487, 0.172143, -0.00113555, 0.209073, -0.00171979, -0.172141, -0.00191101, -0.118657, 123.528, -25.8984, -36.9623, 0.0492728, -0.0173873, 0.390193, 0.00132021, 0.39329, 0.0173586, -0.390578, -0.000864093, 0.0492829, 251.902, -72.1738, -144.512, 0.161143, 0.0462286, -0.292416, -0.0223118, 0.333878, 0.0404879, 0.295206, 0, 0.16268, 144.138, -12.4028, 26.0108, 0.0733014, -0.00101599, -0.359718, 0.000628591, 0.36711, -0.00090878, 0.359719, -0.000434474, 0.0733028, 140.14, -25.9134, -80.9283, -0.128528, 0.0339578, -0.284579, 0.0139773, 0.312257, 0.0309478, 0.286257, 0, -0.129286, 114.867, -3.83728, 25.9478, 0.198783, 0.0400545, 0.252702, -0.0308429, 0.321425, -0.0266855, -0.253991, -0.00768343, 0.201015, -0.0552051, -2.20923, -122.925, -0.271302, 0.00661486, -0.044516, 0.00652758, 0.27493, 0.00107106, 0.0445289, 0, -0.27138, 85.9626, -1.68111, 53.5347, -0.16192, 0.118894, 0.135499, 0.119883, 0.207043, -0.0384122, -0.134626, 0.0413695, -0.197177, 150.502, -20.1477, 56.1698, 0.218954, 0.0834067, -0.187155, -0.0668383, 0.287996, 0.0501525, 0.193691, 0.00509562, 0.228872, 213.724, -78.4312, -205.679, -0.158163, 0.0499048, -0.134477, 0.0389801, 0.2076, 0.0311949, 0.138041, -0.00144279, -0.162889, 40.9002, -6.7634, -33.5194, -0.0175002, 0.00078736, -0.324156, 0.000720032, 0.324628, 0.000749633, 0.324156, -0.000678572, -0.0175019, 166.958, -25.8705, -62.638, -0.226055, 0, 0.203715, 0, 0.304303, 0, -0.203715, 0, -0.226055, -0.858466, -0.453491, 61.3671, -0.225875, -0.00087294, 0.0166083, -0.00089308, 0.226485, -0.000241873, -0.0166072, -0.000306709, -0.225877, 114.328, -25.9788, -69.3266, 0.140576, -0.0170223, 0.358456, 0.0054265, 0.385035, 0.0161564, -0.358819, -0.000845955, 0.140679, 254.116, -72.0654, -139.71, 0.256052, 0.108529, -0.282511, -0.086451, 0.380869, 0.0679593, 0.290029, 0.0177139, 0.269671, 176.179, -32.8788, 46.022, 0.223878, 0.00691588, -0.0502928, -0.00512053, 0.229338, 0.00874284, 0.0505072, -0.00740457, 0.223814, 87.14, -75.562, -152.015, 0.243277, -0.0030458, -0.286657, 0.0159001, 0.375529, 0.00950381, 0.286232, -0.0182718, 0.24311, 74.4011, -5.62456, -6.67172, -0.0963704, 0.00524758, 0.195631, 0.00231893, 0.21808, -0.00470741, -0.195688, 0, -0.0963983, 47.5403, -0.756516, 43.1109, 0.193658, 0.0563855, 0.221544, -0.0457633, 0.294036, -0.0348324, -0.22398, -0.0113248, 0.19867, 249.593, -33.39, -59.134, -0.182518, 0, 0.174495, 0, 0.25251, 0, -0.174495, 0, -0.182518, 33.5885, -0.453506, -53.5295, -0.221473, -0.0164463, -0.103954, -0.00991275, 0.244379, -0.0175437, 0.104779, -0.0116431, -0.221389, 233.869, -50.9547, -114.128, -0.273086, 0, 0.00799154, 0, 0.273203, 0, -0.00799154, 0, -0.273086, 27.8511, -0.453506, -35.7992, 0.266312, 0.00097191, 0.228925, -0.000942377, 0.351182, -0.000394675, -0.228925, -0.000315013, 0.266313, 189.595, -75.9696, -150.422, -0.176626, 0.0169682, 0.343206, 0.0169004, 0.385852, -0.0103791, -0.343209, 0.0102678, -0.177136, 230.096, -31.0508, -63.1006, -0.0468756, -0.00232693, -0.315152, 0.0253331, 0.31756, -0.00611275, 0.314141, -0.0259561, -0.0465335, 146.512, -78.4904, -187.623, -0.0811315, -0.00204366, -0.267813, 0.0212272, 0.278902, -0.00855887, 0.266978, -0.0227963, -0.0807046, 121.33, -78.0675, -180.192, 0.242253, -0.0337098, -0.0561333, 0.0357043, 0.248344, 0.00495003, 0.0548863, -0.0127652, 0.244537, 190.874, -79.1607, -214.384, 0.0114712, 0.0202599, 0.209802, -0.0126557, 0.209799, -0.0195677, -0.210397, -0.0115151, 0.0126157, 51.8488, -20.1322, -36.9718, -0.121506, 0.168084, -0.337837, 0.272139, 0.284896, 0.0438673, 0.261393, -0.218476, -0.202711, 162.989, -26.2704, 0.933259, 0.0328651, 0.00720099, -0.28451, 0.0710452, 0.277126, 0.0152209, 0.275591, -0.0722997, 0.030005, 172.298, -79.051, -188.772, 0.196622, -0.000889941, -0.0580678, 0.000834066, 0.205018, -0.000317861, 0.0580687, 6.86085e-05, 0.196624, 300.725, -38.3254, -116.63, -0.352937, -0.0958644, -0.108676, 0.0721214, 0.131974, -0.350637, 0.125694, -0.344903, -0.103962, 61.3138, -39.31, -52.1697, 0.0210925, 0.0245466, 0.22473, -0.0022938, 0.225717, -0.0244392, -0.226055, 0, 0.0212169, 129.025, -5.37689, 43.9178, 0.245668, 0.0482615, 0.247267, -0.0340151, 0.34856, -0.0342366, -0.249626, 0, 0.248011, 135.604, -11.2212, 24.2104, -0.296193, -0.00121801, -0.00171476, -0.00122242, 0.296197, 0.000759285, 0.00171162, 0.000766342, -0.296195, 127.583, -75.8559, -155.842, 0.202876, 0.000388918, -0.0244351, -0.000396843, 0.204343, -4.24574e-05, 0.0244349, 8.96066e-05, 0.202877, 141.328, -75.8631, -140.598, -0.216496, -0.0038962, -0.0264723, -0.0038042, 0.218108, -0.000989619, 0.0264856, -0.000520496, -0.216528, 48.9527, -72.9639, -95.4372, -0.0956724, 0.0345819, 0.207576, -0.000125131, 0.228013, -0.0380442, -0.210437, -0.0158577, -0.0943491, 78.1298, -8.63898, -21.742, -0.235209, 0.0321101, -0.178492, 0.0255788, 0.295267, 0.0194109, 0.179544, 0, -0.236596, 125.89, -5.03601, 41.5274, 0.207078, -0.000856105, -0.0803418, 0.000906939, 0.222117, -2.92303e-05, 0.0803412, -0.000300795, 0.20708, 118.697, -25.9395, -52.6879, 0.34901, -0.0375444, -0.0646439, 0.0447272, 0.352181, 0.0369382, 0.059899, -0.0442197, 0.349074, 71.5916, -78.2053, -184.15, 0.115456, -0.0227443, -0.239698, 0.00503492, 0.266002, -0.0228149, 0.240722, 0.00534504, 0.115442, 203.589, -75.9529, -154.039, 0.109917, 0.124021, 0.241027, -0.202785, 0.210212, -0.0156884, -0.17987, -0.161203, 0.164975, 167.808, -28.16, 2.17615, -0.250984, 0.0307144, 0.0288087, 0.0304082, 0.25263, -0.00442276, -0.0291317, -0.000919559, -0.252817, 40.8585, -72.2985, -146.569, -0.0338863, -0.00992802, -0.20078, -0.010264, 0.203432, -0.00832689, 0.200763, 0.00872472, -0.0343148, 56.805, -5.82191, -4.23767, 0.253879, -0.0602192, -0.0276655, 0.0660919, 0.222051, 0.123172, -0.00485608, -0.126147, 0.23002, 290.035, -51.8591, -133.486, -0.120776, 0.0426345, 0.372976, 0.0131343, 0.392044, -0.040561, -0.375175, 0, -0.121488, 114.303, -3.77591, 24.625, -0.0203433, -0.0237645, -0.225655, 0.00490626, 0.226461, -0.0242917, 0.22685, -0.00702899, -0.0197108, 219.606, -76.3021, -168.951, 0.138301, 0.00638307, 0.226395, -0.00332756, 0.265296, -0.00544711, -0.226461, 0, 0.138341, 84.7921, -1.65294, 42.4273, 0.304013, 0.00747095, 0.06319, -0.00731462, 0.310511, -0.00152036, -0.0632083, 0, 0.304101, 60.6528, -1.07204, 55.5355, -0.330681, 0.00908021, -0.145172, 0.0447039, 0.349447, -0.0799721, 0.138416, -0.0911675, -0.320994, 138.719, -79.5405, -193.992, 0.203419, 0.0123677, -0.294849, -0.00204938, 0.35816, 0.0136095, 0.295101, -0.00603801, 0.20334, 67.1369, -72.7996, -67.4352, -0.148728, -0.000881002, 0.166278, -4.51892e-05, 0.223087, 0.00114158, -0.166281, 0.000727375, -0.148726, 214.201, -25.8766, -92.1383, 0.319734, 0.033578, 0.0281862, -0.0366185, 0.318636, 0.0357974, -0.0241046, -0.0386638, 0.319493, 200.293, -78.7232, -220.273, -0.123911, 0.0487609, 0.302241, 0.0717323, 0.321606, -0.0224767, -0.297627, 0.057211, -0.13125, 326.755, -39.2749, -159.847, -0.239518, -0.00240426, -0.225853, 0.016656, 0.328114, -0.0211566, 0.225251, -0.0268187, -0.238594, 112.01, -79.288, -194.289, -0.182728, -0.00237351, -0.281769, -0.0055129, 0.335795, 0.000746522, 0.281725, 0.00503149, -0.182741, 206.889, -25.8781, -95.778, -0.135822, 0.0281404, -0.358592, 0.0100658, 0.383453, 0.0262788, 0.359554, -0.000104747, -0.136195, 186.181, -34.1481, -2.00764, -0.159509, 0.0303154, -0.228617, 0.0173466, 0.278763, 0.024862, 0.229965, 0, -0.16045, 101.724, -2.40794, 51.1985, -0.159353, 0.00432392, 0.225344, -0.0137205, 0.275281, -0.0149846, -0.224968, -0.0198518, -0.158706, 79.1247, -78.4163, -188.411, -0.144874, 0.0102381, 0.258732, 0.000637458, 0.296489, -0.0113753, -0.258934, -0.00499834, -0.144789, 59.227, -73.116, -102.409, -0.071274, 0.0364703, 0.306278, 0.0453613, 0.31217, -0.0266158, -0.305088, 0.0378942, -0.0755093, 216.43, -34.0744, -47.8401, -0.206262, -0.000163421, 0.020514, -0.000142855, 0.20728, 0.000214886, -0.0205142, 0.000199693, -0.206262, 176.009, -25.897, -69.6938, 0.14289, 0.0054495, -0.16297, 0.037677, 0.209721, 0.0400475, 0.158648, -0.0547143, 0.137271, 157.974, -78.4723, -187.98, 0.194608, 0.00144506, 0.267119, 0.010622, 0.330187, -0.0095249, -0.266911, 0.0141938, 0.19438, 159.667, -35.8315, -6.18491, -0.195095, 0.00235122, -0.197168, -0.0244953, 0.274929, 0.0275164, 0.195655, 0.0367647, -0.19316, 285.103, -38.9672, -91.2593, 0.181899, 0.000799049, -0.274679, 0.000132986, 0.329447, 0.00104644, 0.274681, -0.000688646, 0.181897, 167.391, -25.8716, -62.6591, -0.269327, 0, 0.224934, 0, 0.350902, 0, -0.224934, 0, -0.269327, -2.9614, -0.453491, 30.8525, -0.200471, 0.00914767, -0.17323, 0.00984225, 0.26491, 0.00259899, 0.173192, -0.00446596, -0.200663, 72.7764, -73.4595, -95.0306, -0.168363, 0.0175032, -0.114869, 0.0105863, 0.203701, 0.0155228, 0.115712, 0.00683118, -0.168557, 217.35, -36.7657, -4.68803, -0.335343, 0.0518962, -0.0720655, 0.0556723, 0.342173, -0.0126536, 0.0691898, -0.0237973, -0.339099, 85.9992, -9.07578, -10.8615, 0.207789, 0.00629746, 0.159155, -0.00499944, 0.261738, -0.0038293, -0.159201, 0, 0.207849, 92.5828, -1.84042, 62.5131, -0.304859, 0.000596778, 0.073331, 0.000612384, 0.313555, -5.88379e-06, -0.0733309, 0.000137497, -0.30486, 133.311, -75.8374, -163.45, -0.20566, 0.00861947, 0.212552, 0.00559968, 0.29576, -0.00657565, -0.212653, -0.000547931, -0.205735, 300.234, -38.4205, -154.114, 0.229804, 0, -0.256617, 0, 0.344473, 0, 0.256617, 0, 0.229804, -0.570328, -0.453506, -35.8451, 0.116201, 0.0329661, 0.244991, -0.0150257, 0.27115, -0.0293593, -0.246742, -0.000986972, 0.117164, 47.4645, -73.0538, -133.417, -0.124203, 0.00106153, -0.362899, 0.000669263, 0.383565, 0.000892926, 0.3629, -0.000344061, -0.124205, 157.209, -75.8943, -167.107, -0.191798, 0.00905134, 0.323586, 0.00461517, 0.376157, -0.00778634, -0.323679, 0, -0.191853, 47.0949, -0.745773, 34.4529, -0.245447, 0.00062108, 0.215042, 0.000561449, 0.326324, -0.00030165, -0.215042, 0.000143097, -0.245447, 161.661, -75.9002, -145.715, -0.316716, 0.0668899, -0.146774, 0.0663964, 0.348814, 0.0156931, 0.146997, -0.0134346, -0.323322, 246.352, -32.5737, -54.0797, 0.176716, 0.00875683, -0.350301, 0.0108187, 0.392003, 0.015257, 0.350243, -0.0165268, 0.176274, 63.7369, -5.46918, -4.77265, 0.129926, 0.0299647, 0.242984, -0.0141294, 0.275539, -0.0264244, -0.244417, 0, 0.130692, 129.635, -5.44328, 44.3862, -0.227807, 0.000718607, 0.301098, 0.000565611, 0.377566, -0.000473173, -0.301098, 0.000165567, -0.227807, 182.243, -75.9423, -140.706, 0.212543, 0.00551107, 0.153576, 0.00351249, 0.261868, -0.0142582, -0.153635, 0.0136111, 0.212136, 174.644, -32.422, -23.0344, -0.00726376, 0.00056753, 0.204938, -0.000163729, 0.205067, -0.00057369, -0.204939, -0.000183946, -0.00726327, 181.888, -75.9697, -174.279, -0.198971, 0.0443169, -0.326228, -0.0166677, 0.379333, 0.0616969, 0.328802, 0.0460472, -0.194286, 189.258, -32.4133, -35.3731, 0.146691, -0.0751441, 0.233233, -0.089081, 0.236879, 0.132346, -0.228273, -0.140728, 0.0982316, 277.35, -50.9418, -125.497, 0.164996, -0.00279714, 0.253317, -0.044404, 0.297308, 0.0322051, -0.24941, -0.0547819, 0.161847, 34.8335, -74.4968, -83.8803, 0.187332, 0.0444886, 0.123089, -0.0356, 0.224135, -0.0268295, -0.125947, 0.0028184, 0.190664, 260.556, -34.9409, -78.9372, -0.182453, 0.000388502, -0.09153, 0.000307118, 0.204124, 0.000254213, 0.0915303, 8.95107e-05, -0.182453, 190.99, -75.9661, -125.215, 0.162938, 0.241893, 0.119717, -0.130347, 0.192978, -0.212515, -0.236335, 0.0603369, 0.199746, 142.657, -12.4304, 36.4809, 0.142596, -0.017462, -0.146255, 0.00923867, 0.204224, -0.0153756, 0.147004, 0.00410368, 0.142836, 241.349, -73.1963, -130.551, 0.0843718, 0.0137438, -0.244618, -0.00809232, 0.258732, 0.0117456, 0.24487, 0.00381488, 0.0846731, 24.8878, -72.0712, -105.711, 0.0983016, 0.0093145, -0.347472, 0.00862034, 0.360923, 0.0121138, 0.34749, -0.0115886, 0.097996, 92.4417, -74.662, -119.429, -0.127238, 0.0116651, -0.312986, 0.00967126, 0.337812, 0.00865869, 0.313053, -0.00569497, -0.127478, 60.2799, -73.1059, -99.6549, 0.043151, 0.00484317, 0.226366, 0.0108469, 0.230132, -0.00699142, -0.226158, 0.0119616, 0.0428554, 187.705, -31.8332, -39.6495, -0.284775, 0.0241789, 0.0735584, 0.0199639, 0.293805, -0.0192865, -0.0748124, -0.0136347, -0.285148, 261.451, -73.028, -140.307, 0.160065, -0.0335972, -0.345095, -0.0484222, 0.374202, -0.0588905, 0.343329, 0.06844, 0.152583, 118.64, -14.6262, -33.527, 0.203789, 0.00797747, 0.108888, -0.00887158, 0.231022, -0.000321848, -0.108819, -0.00389466, 0.203944, 57.5152, -72.8745, -91.5884, 0.219105, 0.00254241, -0.0707106, -0.00388333, 0.230183, -0.00375669, 0.0706496, 0.00476751, 0.219088, 113.768, -77.7269, -175.389, 0.335795, 0.000956023, 0.0810633, -0.00100204, 0.345441, 7.68664e-05, -0.0810627, -0.000309864, 0.335797, 153.186, -75.8797, -163.33, -0.369934, 0.00915754, -0.0895119, 0.00890069, 0.38061, 0.00215367, 0.0895378, 0, -0.370041, 67.6686, -1.24088, 60.8371, 0.21756, -0.0311248, -0.291938, 0.0127084, 0.364015, -0.0293386, 0.293317, 0.00731453, 0.217808, 204.62, -75.9583, -149.385, 0.0922477, 0.00501941, -0.187092, -0.00221973, 0.208597, 0.00450193, 0.187146, 0, 0.0922744, 42.6468, -0.638748, 63.6242, 0.149224, -0.0050264, 0.253351, -0.232912, 0.113099, 0.13943, -0.0998198, -0.27141, 0.0534093, 31.1049, -3.81184, -76.9341, 0.256896, 0.00402998, -0.15873, -0.00210341, 0.301967, 0.00426236, 0.158767, -0.00252019, 0.256892, 7.3511, -0.200027, 4.47927, 0.141325, 0.000310086, 0.204337, 0.0102655, 0.248123, -0.00747645, -0.204079, 0.0126957, 0.141127, 280.782, -74.1401, -159.554, 0.320694, 0, -0.0415987, 0, 0.323381, 0, 0.0415987, 0, 0.320694, 32.4869, -0.453491, 19.7261, 0.17644, -0.00759762, -0.270669, -0.000934149, 0.323042, -0.00967664, 0.270774, 0.00606517, 0.176338, 90.5649, -79.4936, -221.35, -0.187462, 0, 0.269446, 0, 0.328243, 0, -0.269446, 0, -0.187462, 13.5531, -0.453491, 51.8172, -0.316926, -0.00144037, -0.149157, -0.00168915, 0.35027, 0.000206621, 0.149155, 0.000906243, -0.316929, 125.05, -75.8674, -155.419, 0.159929, 0.109803, 0.171551, -0.174694, 0.186097, 0.0437464, -0.10473, -0.142742, 0.188998, 156.702, -25.4478, -2.83103, -0.305267, -0.0285693, 0.176444, -0.0220272, 0.35255, 0.0189743, -0.177379, 0.00538713, -0.306014, 251.042, -72.3689, -131.458, -0.255141, 0, -0.118466, 0, 0.281303, 0, 0.118466, 0, -0.255141, 23.5108, -0.453506, -31.0894, 0.236984, 0, 0.103884, 0, 0.258754, 0, -0.103884, 0, 0.236984, 17.2821, -0.453506, -75.224, 0.282005, 0.0403047, -0.0481461, -0.0386381, 0.286015, 0.0131187, 0.0494936, -0.00636626, 0.284569, 81.0706, -9.05733, -21.8558, -0.129846, 0.00764419, -0.28993, 0.00312444, 0.317678, 0.0069765, 0.290014, 0, -0.129884, 65.7201, -1.19398, 17.2667, -0.277854, -0.00208531, -0.065783, 0.00333664, 0.284586, -0.0231146, 0.0657314, -0.0232609, -0.276899, 121.853, -79.1639, -193.653, -0.309474, -0.065806, -0.110778, -0.0390976, 0.322581, -0.0823991, 0.122775, -0.0631491, -0.305475, 243.396, -31.0307, -4.91024, 0.0895826, 0.0236255, -0.309095, -0.0431145, 0.319565, 0.0119303, 0.306984, 0.0379871, 0.0918742, 62.8223, -74.5166, -159.708, -0.0688418, 0.00898355, 0.366977, 0.00165635, 0.373378, -0.00882953, -0.367083, 0, -0.0688618, 62.3424, -1.1127, 66.0528, 0.281663, -0.000249534, 0.144361, 0.000361143, 0.316503, -0.000157538, -0.144361, 0.000304918, 0.281663, 161.843, -25.897, -81.2905, 0.00141374, -0.00529831, -0.256235, 0.0173094, 0.255656, -0.00519083, 0.255705, -0.0172768, 0.00176806, 111.254, -79.6406, -199.164, 0.235139, 0.0245429, -0.0989804, -0.0258803, 0.254984, 0.00174363, 0.0986391, 0.00839503, 0.23641, 255.349, -34.2511, -59.5328, 0.119055, -0.016551, 0.203713, -0.00720239, 0.235268, 0.023324, -0.204257, -0.0179429, 0.117915, 141.234, -39.9374, -97.1815, -0.280625, -0.00117976, -0.0596558, -0.00130832, 0.286895, 0.000480745, 0.0596531, 0.000742276, -0.280628, 124.957, -75.8651, -156.465, 0.00689732, 0.0443883, -0.356237, 0.00771994, 0.356202, 0.0445334, 0.358909, -0.00851475, 0.00588809, 9.54132, -2.96153, -104.369, -0.0124773, 0.00709529, 0.281922, -0.0708877, 0.273059, -0.0100095, -0.272957, -0.0712384, -0.0102876, 194.556, -80.226, -191.059, -0.253249, 0.00687467, -0.0830556, 0.00919525, 0.266384, -0.00598863, 0.0828308, -0.00855308, -0.253272, 124.803, -75.7104, -126.07, 0.165546, 0.051158, -0.300079, -0.0774683, 0.337417, 0.0147861, 0.294386, 0.0600235, 0.172638, 303.886, -38.9756, -142.038, -0.0666712, 0.00560951, 0.258444, 0.0148173, 0.266546, -0.0019629, -0.25808, 0.0138542, -0.066878, 190.573, -31.7115, -43.1524, 0.379574, 0.0504031, -0.0706602, -0.0495373, 0.386095, 0.00930241, 0.0712698, -7.86981e-05, 0.382793, 84.8354, -25.479, -48.6797, 0.341422, -0.00662486, -0.1448, 0.00644461, 0.370857, -0.00177174, 0.144808, -0.00088502, 0.341481, 52.1747, -72.8552, -74.0168, -0.29736, 0.00640877, -0.0675443, 0.00273435, 0.304524, 0.0168561, 0.0677926, 0.0158282, -0.296951, 176.96, -31.2261, -46.9797, 0.0739663, -0.000983845, -0.227533, -0.000284532, 0.239252, -0.00112702, 0.227535, 0.000619011, 0.0739643, 117.546, -75.8978, -155.65, -0.276247, -0.00130758, 0.157474, -0.000728534, 0.317977, 0.00136228, -0.157478, 0.000822694, -0.276246, 109.295, -75.9108, -163.728, -0.21364, 0.00538787, 0.0166713, 0.000987725, 0.20735, -0.0543542, -0.0174924, -0.0540955, -0.206681, 194.204, -80.4663, -192.015, -0.172742, 0.00822745, 0.113334, 0.00250663, 0.206449, -0.0111666, -0.113604, -0.00795514, -0.172577, 52.0972, -73.2915, -123.697, 0.313948, 0.000622007, -0.0907848, -0.000637336, 0.326811, 3.51175e-05, 0.0907847, 0.00014331, 0.313948, 135.4, -75.8442, -157.156, -0.191357, 0.0741304, -0.176658, 0.0458761, 0.260152, 0.0594735, 0.186008, 0.0120995, -0.196407, 181.466, -32.8126, 12.2062, 0.101122, 0.0967017, -0.187861, -0.0713893, 0.211657, 0.0705232, 0.198863, 0.0268093, 0.120844, 148.611, -15.3485, 30.0321, 0.146678, 0.0263495, 0.327579, 0.0280788, 0.356409, -0.0412411, -0.327436, 0.0423669, 0.143206, 66.809, -71.9307, -183.942, 0.217784, -0.0371759, -0.166667, 0.0381176, 0.273879, -0.0112817, 0.166454, -0.0140777, 0.220646, 199.154, -77.2593, -199.261, -0.0693835, -0.0219564, 0.310679, -0.000931604, 0.318308, 0.0222875, -0.311452, 0.00393921, -0.0692779, 250.01, -72.2894, -142.614, -0.202857, -0.0008962, -0.079667, -0.0010403, 0.217939, 0.000197246, 0.0796653, 0.000563867, -0.202859, 118.987, -75.8574, -168.923, -0.111797, 0.0226397, -0.304924, -0.0146198, 0.3239, 0.0294088, 0.305414, 0.0237921, -0.11021, 158.921, -35.5895, -11.086, 0.217913, 0.0954395, -0.206, 0.160634, 0.136969, 0.233381, 0.160441, -0.266761, 0.0461294, 162.518, -24.4592, 2.30714, -0.0511944, 0.0266263, -0.371404, -0.0409194, 0.372225, 0.0323255, 0.370102, 0.0448372, -0.0478005, 142.43, -31.8831, -28.9688, -0.286721, -0.00161878, 0.244741, -0.097903, 0.346252, -0.112406, -0.224312, -0.149055, -0.263774, 322.122, -37.7958, -134.451, -0.294144, -0.0187803, 0.0350108, -0.020926, 0.295573, -0.017261, -0.0337721, -0.019574, -0.294237, 236.64, -74.3336, -161.71, 0.181255, -0.0174297, -0.112071, 0.0138956, 0.213097, -0.0106678, 0.112564, 0.00175987, 0.181778, 216.419, -77.3284, -204.108, 0.00671537, -0.000163548, -0.207332, -0.000194449, 0.207441, -0.000169932, 0.207332, 0.000199848, 0.00671521, 157.34, -25.8958, -86.1985, 0.255124, -0.0135587, 0.275805, -0.0213169, 0.373412, 0.0380757, -0.275314, -0.0414768, 0.252631, 237.477, -31.6579, -23.327, 0.241426, -0.00224537, 0.190368, -0.0137513, 0.306429, 0.0210538, -0.189884, -0.0250463, 0.240517, 128.157, -78.2511, -183.05, -0.145548, 0.0499913, -0.21651, 0.0363539, 0.260691, 0.0357538, 0.219213, -0.0100406, -0.149683, 239.527, -31.8627, -69.6021, -0.150331, 0.0622958, -0.145002, 0.0439087, 0.208862, 0.044209, 0.151586, 0.00128078, -0.156607, 2.47447, -2.57137, -211.034, -0.037609, 0.0480677, 0.345117, 0.00520734, 0.34716, -0.0477848, -0.348409, 0, -0.0379678, 131.744, -10.6867, 62.8357, -0.182045, 0.00306673, 0.356046, 0.00942353, 0.399785, 0.00137473, -0.355935, 0.00901598, -0.182065, 225.492, -30.772, -72.7136, 0.328168, -0.0059635, -0.000283896, 0.00596984, 0.327957, 0.0117843, 6.95559e-05, -0.0117875, 0.328011, 33.2092, 0.13028, -0.262975, 0.224313, 0, 0.282812, 0, 0.36097, 0, -0.282812, 0, 0.224313, 11.4466, -0.453506, -32.4007, 0.307642, 0.00448541, -0.0110062, -0.00468105, 0.307788, -0.0054088, 0.0109244, 0.00557211, 0.307627, 305.235, -38.9799, -94.9717, -0.198339, -0.000581992, -0.0698874, -0.0004662, 0.210292, -0.000428151, 0.0698883, -0.00024888, -0.19834, 141.214, -25.9082, -79.1256, 0.275645, 0.00769454, 0.162155, -0.00663207, 0.319804, -0.00390148, -0.162202, 0, 0.275725, 91.0168, -1.80273, 51.8392, -0.359472, -0.0295811, -0.0748388, -0.0263866, 0.366966, -0.0183066, 0.076024, -0.0125037, -0.360222, 240.492, -75.1102, -179.129, 0.272444, 0.000838453, -0.13251, -0.000635135, 0.302959, 0.000611112, 0.132511, -0.000271757, 0.272444, 203.897, -75.9956, -135.063, -0.143651, -0.00211206, -0.177402, 0.0308411, 0.224491, -0.0276462, 0.174713, -0.0413645, -0.140981, 22.9043, -75.7752, -90.2094, 0.344529, 0.00092872, 0.00197121, -0.000928008, 0.344535, -0.000127069, -0.00197154, 0.000121757, 0.34453, 184.602, -25.9128, -74.3955, -0.0642671, 0.00773913, -0.301022, 0.0775778, 0.297837, -0.00890533, 0.290957, -0.0777028, -0.0641159, 182.843, -78.9506, -187.337, -0.300103, 0.000695418, -0.208428, 0.000479777, 0.365382, 0.000528292, 0.208428, 0.000160224, -0.300103, 139.485, -75.8618, -135.429, -0.205664, 0.200903, -0.0408024, 0.19428, 0.209455, 0.0520423, 0.0654358, 0.00956013, -0.282757, 16.6375, -73.4168, -132.538, -0.156377, 0.0270343, -0.251095, 0.00479546, 0.295599, 0.0288393, 0.252501, 0.0111287, -0.156054, 196.011, -35.1476, 3.03903, -0.103786, 0.00720005, 0.259124, -0.00564277, 0.278991, -0.0100122, -0.259162, -0.00895789, -0.103552, 100.598, -75.5049, -139.125, -0.168923, -0.00440788, 0.179865, -0.00344686, 0.246751, 0.00280985, -0.179886, -0.000588851, -0.168957, 50.3211, -72.9367, -94.3015, -0.252795, -0.00731403, 0.181217, -0.00254066, 0.310984, 0.00900729, -0.181347, 0.00583877, -0.25274, 88.3047, -79.6767, -214.433, 0.213055, 0.00658871, -0.229974, -0.0164116, 0.313074, -0.00623467, 0.229482, 0.0162727, 0.213066, 188.281, -31.0689, -54.588, -0.10226, -0.0136418, 0.23646, -0.0540709, 0.2521, -0.00883948, -0.230598, -0.0530631, -0.102787, 229.632, -30.9681, -35.4728, -0.188768, -0.0142969, -0.0856299, -0.0140811, 0.207266, -0.00356427, 0.0856657, 0.00256502, -0.189275, 251.6, -72.1991, -141.052, 0.341097, 0.0167466, -0.13502, -0.0302104, 0.364663, -0.0310901, 0.132659, 0.0399851, 0.34009, 219.565, -30.2712, -78.3528, -0.197867, 0.000743441, 0.33679, 0.00052428, 0.390613, -0.000554232, -0.33679, 0.000171288, -0.197868, 194.071, -75.9701, -129.61, 0.0173496, 0.000404224, -0.323408, -0.0165479, 0.32345, -0.000483452, 0.322985, 0.01655, 0.0173475, 283.928, -74.8131, -146.478, -0.193604, 0.000506618, -0.0762415, -0.002603, 0.207906, 0.00799144, 0.0761987, 0.0083894, -0.19344, 327.613, -38.2901, -113.563, 0.223712, 0, -0.114661, 0, 0.251384, 0, 0.114661, 0, 0.223712, 18.2051, -0.453506, -38.2852, 0.269708, 0.00756643, 0.161725, -0.00648922, 0.314479, -0.00389113, -0.161772, 0, 0.269786, 77.0883, -1.46754, 64.3997, 0.247201, 0.0398628, -0.215397, -0.0292642, 0.327877, 0.0270938, 0.217091, -0.00119345, 0.248925, 53.4859, -73.8311, -145.845, 0.140843, 0.0285109, 0.180385, -0.0218852, 0.228791, -0.0190741, -0.181308, -0.0054691, 0.142428, 12.2894, -4.45665, -152.588, 0.37466, 0.00318502, 0.0284614, 0.00062469, 0.372424, -0.0499001, -0.0286322, 0.0498022, 0.371336, 302.315, -39.7682, -86.37, -0.0284676, 0.00277001, -0.325539, -0.0429108, 0.323898, 0.0065085, 0.32271, 0.0433131, -0.0278517, 295.666, -39.818, -85.5721, -0.0133609, 0.152482, 0.143076, 0.0782648, 0.136593, -0.138264, -0.193897, 0.0446273, -0.065668, 172.265, -26.8682, 25.3749, -0.310669, 0.00767947, -0.073204, 0.00747476, 0.319177, 0.0017613, 0.0732252, 0, -0.310759, 73.1443, -1.37263, 31.1842, 0.131153, 0.0751111, -0.228978, -0.0483519, 0.263594, 0.0587713, 0.236082, 0.0122596, 0.139243, 176.014, -32.2677, 33.899, 0.0728084, 0, 0.218064, 0, 0.229898, 0, -0.218064, 0, 0.0728084, 6.67641, -0.453506, -11.2033, 0.267507, 0.00101488, 0.264938, -0.000627457, 0.3765, -0.000808695, -0.264939, 0.000133053, 0.267508, 193.268, -25.9371, -72.391, 0.071591, -0.0203306, -0.22679, 0.00154606, 0.237773, -0.0208272, 0.227694, 0.00477781, 0.0714481, 204.796, -75.7957, -156.73, 0.0244334, 0.000501128, 0.204364, 0.00818037, 0.205653, -0.00148232, -0.204201, 0.00829847, 0.0243936, 313.23, -38.8355, -99.1789, 0.195741, 0.0231615, -0.0396077, -0.0273409, 0.198253, -0.0191858, 0.036847, 0.0240658, 0.196171, 220.901, -36.1515, -35.033, -0.158958, 0, -0.125037, 0, 0.202242, 0, 0.125037, 0, -0.158958, 1.30796, -0.453491, 43.5342, -0.0354731, 0.0899305, -0.188786, 0.140043, 0.152417, 0.0462915, 0.155292, -0.116908, -0.0848701, 164.095, -28.2944, -0.855003, -0.174204, 0.171913, -0.0429397, 0.164032, 0.179231, 0.0521014, 0.0670183, 0.00818065, -0.239137, 15.1112, -70.0988, -173.158, -0.0921238, 0.0296566, 0.256674, 0.0100184, 0.272706, -0.0279132, -0.258188, 0, -0.0926669, 121.211, -4.52711, 22.4394, 0.0589609, 0.000287724, -0.224448, 0.000453089, 0.232063, 0.000416509, 0.224448, -0.000544044, 0.0589601, 153.846, -39.4765, -100.045, 0.396901, 0.00107548, -0.0406647, -0.00108425, 0.398979, -3.06483e-05, 0.0406645, 0.000140997, 0.396903, 176.615, -25.8889, -80.6044, 0.132343, 0.0602611, -0.330651, -0.0642519, 0.353343, 0.03868, 0.329898, 0.0446435, 0.140178, 58.5677, -72.8565, -167.298, -0.215588, -0.00138554, 0.25894, -0.000216577, 0.336938, 0.00162258, -0.258943, 0.00087175, -0.215586, 118.365, -75.8409, -176.276, 0.0726116, -0.0277713, 0.316641, 0.0125906, 0.324794, 0.0255991, -0.317607, 0.00652642, 0.0734055, 221.924, -74.4139, -152.611, 0.18306, 0.00904267, -0.29898, 0.00487848, 0.35039, 0.0135846, 0.299077, -0.0112504, 0.182779, 91.4814, -74.4397, -113.277, -0.0501574, 0.0236333, 0.211452, 0.00545459, 0.217319, -0.0229952, -0.212698, 0, -0.0504531, 124.502, -4.88501, 52.1798, 0.169598, -0.0243615, 0.31114, -0.00475356, 0.35387, 0.0302984, -0.312056, -0.0186307, 0.168639, 97.5126, -71.4762, -64.953, 0.301874, 0, -0.198825, 0, 0.361468, 0, 0.198825, 0, 0.301874, 12.8957, -0.453506, -42.7756, 0.163878, 0.0268109, 0.265729, -0.00512651, 0.312023, -0.0283202, -0.267029, 0.0104638, 0.163624, 214.066, -36.5343, -3.17541, -0.161732, 0.00146012, -0.136356, -0.0199604, 0.209003, 0.0259129, 0.134896, 0.0326767, -0.159649, 165.978, -77.7749, -178.354, -0.2563, 0.000709976, 0.0110216, 0.000699434, 0.256537, -0.000260407, -0.0110223, -0.000230116, -0.256301, 163.301, -75.9072, -162.564, 0.0253119, -0.0220393, 0.346703, -0.0213546, 0.346866, 0.0236087, -0.346746, -0.0229708, 0.0238548, 244.772, -73.6086, -158.566, -0.00866481, 0.0265142, 0.243656, 0.000942293, 0.24381, -0.0264974, -0.245092, 0, -0.00871589, 114.922, -3.84329, 14.719, 0.0806718, 0.00729422, 0.195257, -0.00607811, 0.211236, -0.00537992, -0.195298, -0.0035611, 0.080822, 81.9129, -74.0353, -110.475, 0.152126, 0.0186844, 0.317185, -0.00339633, 0.351741, -0.0190911, -0.317717, 0.00518626, 0.152076, 38.5004, -72.6358, -116.457, 0.1946, 0.00606293, 0.334511, -0.0271044, 0.385994, 0.00877181, -0.333466, -0.0278359, 0.194497, 95.0374, -78.9074, -191.756, 0.226061, 0.00555386, 0.165593, -0.00647505, 0.280203, -0.000558283, -0.16556, -0.00337528, 0.226129, 273.644, -74.2167, -180.322, -0.346484, 0.00537968, -0.138453, 0.0404157, 0.360589, -0.0871314, 0.132532, -0.0958978, -0.335393, 105.147, -73.8487, -108.525, -0.212136, -0.00817459, -0.275406, -0.0101588, 0.347574, -0.0024917, 0.27534, 0.00652576, -0.212279, 77.5959, -79.8483, -218.708, 0.258455, -0.00989622, 0.0780983, 0.0088967, 0.26999, 0.00476934, -0.0782184, -0.0019907, 0.258601, 331.191, -37.0359, -132.467, 0.0683, 0.104954, -0.221252, -0.0612373, 0.229719, 0.0900664, 0.237103, 0.0290971, 0.0869958, 160.368, -18.9458, 16.0271, 0.233256, 0.00520423, 0.120586, -0.00607541, 0.262563, 0.000420334, -0.120546, -0.0031628, 0.233313, 292.584, -74.3868, -163.282, -0.134869, 0.00418906, -0.257344, 0.0680271, 0.280784, -0.0310811, 0.248225, -0.0746738, -0.131306, 139.685, -72.0114, -99.6786, -0.311963, 0.00499016, -0.0643056, 0.00950069, 0.317697, -0.0214368, 0.0637954, -0.0229106, -0.311266, 100.573, -78.9994, -191.825, -0.0860701, 0.00854389, -0.319856, 0.0124871, 0.331063, 0.00548311, 0.319726, -0.0106298, -0.0863192, 118.587, -75.5246, -125.279, -0.14743, 0.025533, -0.182728, 0.0160329, 0.234787, 0.0198715, 0.183805, 0, -0.148299, 127.544, -5.21591, 39.4189, 0.330537, 0.00879743, 0.0840811, -0.0112207, 0.340888, 0.0084433, -0.0837922, -0.0109453, 0.330546, 120.711, -75.4798, -122.179, -0.176397, 0.046115, -0.253618, -0.0189868, 0.304155, 0.0685099, 0.257076, 0.0541065, -0.168964, 310.431, -39.4362, -145.027, 0.0617463, -0.0042875, -0.231935, 0.00165659, 0.240013, -0.00399581, 0.231969, -0.00057277, 0.0617659, 48.5337, -72.9947, -105.216, -0.265404, 0.000758615, -0.0936132, 0.000682333, 0.281429, 0.000346134, 0.0936138, 9.94556e-05, -0.265405, 188.455, -25.9239, -72.6225, -0.219245, 0.00788617, -0.0640545, 0.00864899, 0.228378, -0.00148655, 0.063956, -0.00385009, -0.219382, 63.7184, -73.1205, -93.4758, -0.0766946, 0.103536, -0.254302, 0.0215463, 0.265492, 0.101593, 0.273724, 0.00811133, -0.0792497, 54.5914, -79.7386, -57.332, 0.106755, 0.00597988, 0.188072, 0.0179043, 0.214928, -0.0169967, -0.187313, 0.0239519, 0.105562, 133.284, -14.0276, -21.7745, 0.130636, 0.00861533, 0.333394, -0.00314312, 0.358074, -0.00802152, -0.33349, 0, 0.130673, 70.8997, -1.31863, 60.1071, 0.103474, 0, 0.173272, 0, 0.201817, 0, -0.173272, 0, 0.103474, 14.9727, -0.453506, -57.8185, -0.229588, -0.00763272, -0.0212056, -0.0096234, 0.229477, 0.0215925, 0.0203796, 0.0223738, -0.228698, 163.15, -53.1585, -114.278, 0.172565, -0.0053174, -0.203321, 0.0107052, 0.266509, 0.00211588, 0.203108, -0.00952909, 0.172634, 148.616, -25.9467, -91.7934, 0.375963, 0.0323258, -0.0184706, -0.0328901, 0.376205, -0.011062, 0.017446, 0.0126161, 0.377188, 200.734, -35.7671, 8.10585, -0.318533, 0.0225083, -0.17925, 0.00963802, 0.364944, 0.0286987, 0.1804, 0.0202456, -0.318035, 19.0517, -71.3267, -120.974, 0.0853647, 0.0316282, 0.210148, -0.0333196, 0.225659, -0.0204279, -0.209886, -0.0229598, 0.0887141, 166.056, -53.9162, -120.071, -0.253663, -0.00716861, -0.109571, -0.0150575, 0.275485, 0.0168356, 0.108768, 0.0214191, -0.253205, 322.884, -37.4143, -129.777, 0.194341, 0.0124966, -0.246387, 0.00176112, 0.313574, 0.0172935, 0.246697, -0.012083, 0.193973, 63.9002, -73.6995, -122.077, 0.0491101, 0.000586927, -0.206311, 4.91487e-05, 0.212075, 0.000615025, 0.206311, -0.000190233, 0.0491097, 204.815, -76.0037, -141.149, 0.28462, -0.00536964, 0.0659943, 0.00580151, 0.29216, -0.00124908, -0.0659577, 0.0025268, 0.284668, 108.192, -5.10701, -5.8124, -0.224519, 0.00662693, 0.159542, 0.00540196, 0.275431, -0.00383862, -0.159588, 0, -0.224584, 58.5346, -1.02109, 68.1105, 0.230212, -0.0762909, -0.304317, 0.134794, 0.364893, 0.0104927, 0.283302, -0.111621, 0.242296, 267.91, -74.9429, -181.942, 0.301442, 0.0400899, -0.06798, -0.0486351, 0.305746, -0.0353535, 0.0621539, 0.0448112, 0.302034, 153.39, -32.6511, -30.3298, 0.314764, 0, 0.178369, 0, 0.36179, 0, -0.178369, 0, 0.314764, 27.0018, -0.453506, -32.9004, -0.267867, 0.000995312, -0.0317446, 0.0012785, 0.26973, -0.00233119, 0.0317345, -0.00246543, -0.267859, 110.152, -25.8622, -38.411, -0.28841, 0.0336485, -0.24194, 0.0378256, 0.375985, 0.00720034, 0.241322, -0.018719, -0.290277, 277.228, -74.0556, -133.34, 0.166351, 0.0363911, -0.182704, 0.00317401, 0.244355, 0.0515607, 0.186266, -0.0366642, 0.162291, 285.687, -49.67, -126.306, 0.138502, 0.0285506, 0.363403, 0.0329149, 0.386183, -0.042885, -0.363034, 0.0459062, 0.134755, 70.4725, -74.1544, -167.514, 0.222821, -0.00221839, 0.124878, 0.00126677, 0.255425, 0.00227717, -0.124891, -0.0013671, 0.22282, 243.528, -44.7235, -105.219, -0.318509, 0.00667824, 0.109956, 0.00498753, 0.33693, -0.0060163, -0.110046, -0.00405861, -0.318522, 290.269, -74.3008, -159.952, -0.160549, 0.016795, 0.163091, 0.0117375, 0.228855, -0.0120127, -0.163533, -6.25156e-05, -0.160977, 185.019, -34.0663, -14.7323, 0.305012, 0, -0.149913, 0, 0.339862, 0, 0.149913, 0, 0.305012, 17.15, -0.453506, -35.96, -0.0908049, 0.000388035, 0.18254, 0.000252872, 0.203879, -0.000307603, -0.182541, 8.94031e-05, -0.0908052, 181.39, -75.9448, -131.334, -0.35781, 0.0127795, -0.0947368, 0.0139499, 0.370087, -0.0027644, 0.0945715, -0.00623907, -0.358027, 53.2831, -72.9494, -104.698, -0.278642, 0.00202774, 0.218682, 0.006721, 0.35411, 0.00528031, -0.218588, 0.00830312, -0.278599, 241.193, -32.9452, -98.6718, 0.205242, -0.000537559, 0.0337853, 0.000480967, 0.208004, 0.000387735, -0.0337861, -0.000304464, 0.205242, 123.899, -25.9489, -73.4375, 0.267521, -0.00248113, -0.0184877, 0.00578453, 0.26372, 0.0483112, 0.0177338, -0.0485929, 0.263135, 24.7637, -74.8801, -85.4466, -0.29681, 0.0957916, 0.158613, 0.0920553, 0.33617, -0.0307621, -0.160811, 0.015635, -0.310365, 175.312, -32.7222, 47.9678, 0.316936, 0.00108668, 0.231789, -0.00108505, 0.392651, -0.000357189, -0.231789, -0.000352211, 0.316938, 173.875, -75.9309, -156.07, 0.345229, -0.0161551, 0.10683, 0.0116351, 0.361154, 0.0170147, -0.107416, -0.012802, 0.345188, 51.5469, 1.01334, 2.19268, -0.161155, 0.00962936, 0.275863, -0.00405141, 0.31932, -0.013513, -0.276002, -0.0103098, -0.160876, 84.4792, -74.5993, -124.682, -0.28944, -0.017345, -0.224501, -0.00977464, 0.366244, -0.0156941, 0.224957, -0.00640312, -0.289534, 65.1052, -19.9141, -25.5523, -0.0967195, 0.0111791, 0.22024, 0.0284426, 0.239115, 0.000353505, -0.218681, 0.026156, -0.0973627, 165.695, -30.1815, -56.2251, 0.0362927, -0.00181149, -0.245372, 0.0202538, 0.247217, 0.0011706, 0.244542, -0.0202066, 0.036319, 116.88, -78.2116, -181.556, 0.314529, 0.0261578, -0.201812, -0.018105, 0.373637, 0.0202117, 0.202694, -0.00721616, 0.314967, 221.139, -59.8689, -121.579, -0.11681, 0.00775448, -0.191831, 0.00726786, 0.224565, 0.00465214, 0.19185, -0.0037858, -0.116974, 63.5681, -72.8228, -76.1234, 0.330445, 0.00531057, 0.162704, -0.0464259, 0.355956, 0.0826707, -0.15603, -0.0946658, 0.319981, 133.231, -71.9913, -99.9652, -0.124008, -0.0256754, 0.262939, 0.0367164, 0.285971, 0.0452407, -0.261625, 0.0523028, -0.118281, 72.4287, -19.3527, -30.3696, 0.136684, 0.00599385, -0.208273, -0.00328865, 0.249119, 0.00501109, 0.208333, 0, 0.136724, 73.2715, -1.3757, 50.4049, -0.240265, 0.00241588, 0.153296, 0.022338, 0.282489, 0.030559, -0.151679, 0.0377757, -0.238326, 292.547, -41.1149, -75.6748, 0.251431, 0.121417, 0.0924096, -0.100311, 0.265752, -0.0762423, -0.114975, 0.0336612, 0.268602, 153.961, -18.8182, 38.1284, 0.205377, 0.228828, 0.121877, -0.188885, 0.238569, -0.129627, -0.177591, 0.010889, 0.278817, 15.5755, -72.6371, -127.303, -0.07697, -0.00119938, 0.281329, 0.000411366, 0.291667, 0.001356, -0.281331, 0.000754621, -0.0769674, 111.88, -75.9446, -146.58, 0.27687, -0.0208128, 0.122452, 0.0125547, 0.302322, 0.0229977, -0.123572, -0.0159168, 0.276697, 106.597, -71.3883, -75.1615, -0.327043, -0.0349148, -0.0620504, -0.0323507, 0.332717, -0.0167069, 0.063425, -0.010327, -0.328476, 228.987, -75.2395, -166.432, -0.0625476, 0.000771476, 0.271651, -7.05708e-05, 0.278758, -0.00080791, -0.271652, -0.000250049, -0.0625471, 136.386, -75.8416, -173.04, 0.114313, 0.000532945, -0.25562, -0.00032966, 0.280016, 0.000436384, 0.25562, 0.00012279, 0.114314, 152.68, -75.8863, -137.857, -0.250779, 0.0456203, 0.174674, 0.0677877, 0.300892, 0.0187373, -0.167324, 0.0535261, -0.254205, 329.507, -39.5349, -160.73, 0.272886, 0.000198617, -0.281833, 0.00469568, 0.392239, 0.00482303, 0.281794, -0.00672842, 0.272843, 15.6172, -0.280701, -6.483, -0.239422, 0.000677749, -0.0767739, 0.000618249, 0.25143, 0.00029156, 0.0767744, 8.8854e-05, -0.239423, 181.002, -25.8994, -84.7152, 0.184488, 0.0311666, -0.331208, 0.000255866, 0.378715, 0.0357796, 0.332671, -0.0175752, 0.183649, 251.838, -72.8435, -153.378, 0.115539, 0.0251724, -0.200574, -0.0125648, 0.231472, 0.0218123, 0.201757, 0, 0.11622, 127.636, -5.22586, 4.14018, -0.128888, 0.280738, -0.231047, 0.0253793, 0.251484, 0.291411, 0.362702, 0.0821644, -0.102495, 173.218, -29.6098, 30.511, 0.108991, 0.0145182, 0.209883, 0.0152023, 0.235214, -0.0241649, -0.209835, 0.024582, 0.107266, 133.486, -30.4995, -35.6404, 0.231762, 0.0356243, 0.111734, -0.0320897, 0.25729, -0.0154706, -0.1128, 0, 0.233973, 132.365, -10.7728, 60.9421, -0.256969, 0.0356086, -0.0103356, 0.0355798, 0.257176, 0.00143107, 0.0104342, 0, -0.25942, 130.372, -10.4968, 31.177, 0.0902206, 0.0003153, -0.183976, -0.000551163, 0.204906, 8.08838e-05, 0.183975, 0.000459248, 0.0902211, 190.52, -25.9232, -85.1237, 0.00362501, -0.0144995, 0.228671, -0.0149114, 0.2282, 0.014706, -0.228645, -0.0151123, 0.00266636, 250.869, -73.5435, -163.432, 0.359397, 0.00402547, 0.0609816, -0.00270505, 0.364456, -0.00811588, -0.0610544, 0.00754854, 0.359328, 83.7462, -77.4974, -170.457, 0.127001, -0.0231557, 0.31196, -0.0077212, 0.336355, 0.0281099, -0.312723, -0.0177086, 0.125998, 93.6123, -72.2177, -73.9359, 0.172276, -0.00115979, 0.204224, 0.00081616, 0.267182, 0.000828842, -0.204225, 8.94117e-05, 0.172278, 314.843, -38.2651, -113.472, 0.298627, 0.0762441, 0.069753, -0.0758681, 0.306586, -0.0103088, -0.0701618, -0.00700485, 0.308035, 257.551, -34.2172, -72.8377, -0.24516, 0.123245, 0.095898, 0.0266434, 0.208896, -0.200354, -0.15387, -0.160195, -0.187486, 166.225, -27.8698, 1.33725, -0.227693, -0.0621869, -0.211292, -0.0033367, 0.30484, -0.0861238, 0.220228, -0.0596761, -0.219759, 251.774, -29.049, -3.51838, 0.0841547, -0.0808389, 0.189403, -0.0477954, 0.191353, 0.102908, -0.20031, -0.0796206, 0.0550179, 296.89, -52.4794, -140.814, 0.120435, -0.0193373, -0.280222, 0.0261729, 0.30434, -0.0097529, 0.279666, -0.0201546, 0.121587, 232.86, -75.2417, -171.797, -0.0906327, 0.0179563, -0.278105, -0.0234278, 0.290917, 0.0264185, 0.277698, 0.0304034, -0.0885369, 130.899, -30.3211, -35.8196, 0.155029, 0.00432926, -0.257151, 0.0639383, 0.290181, 0.0434318, 0.249113, -0.0771731, 0.148884, 125.52, -72.1937, -101.159, -0.32332, -0.0143297, 0.0228862, -0.0143442, 0.324128, 0.000300735, -0.0228771, -0.000712138, -0.323637, 252.874, -72.1232, -141.011, -0.299174, 0.00626801, -0.102531, 0.00716426, 0.316233, -0.00157229, 0.102472, -0.0038093, -0.299235, 281.146, -74.2432, -170.183, -0.31356, 0, -0.186006, 0, 0.364579, 0, 0.186006, 0, -0.31356, 28.5428, -0.453491, 36.3261, 0.343924, 0.00836338, 0.0504331, -0.00827488, 0.347602, -0.00121343, -0.0504477, 0, 0.344024, 71.0295, -1.32175, 38.0587, 0.268588, -0.025842, 0.175363, 0.0156347, 0.320581, 0.0232955, -0.176566, -0.0109232, 0.268821, 237.598, -75.3431, -179.119, 0.18594, 0.00366742, 0.142215, -0.013136, 0.233485, 0.0111536, -0.141655, -0.0168377, 0.185641, 77.5348, -78.5586, -190.731, -0.374109, 0.0172232, -0.116371, 0.0133415, 0.391651, 0.0150753, 0.116879, 0.0104221, -0.374201, 238.251, -31.887, -45.1549, 0.0924273, 0.0223483, -0.300799, -0.042581, 0.31242, 0.0101278, 0.298607, 0.0376333, 0.0945499, 138.618, -33.2393, -15.4464, -0.29737, 0.0101658, 0.258642, -0.000636555, 0.39391, -0.0162143, -0.258841, -0.0126477, -0.297102, 94.7473, -74.7374, -119.925, 0.00968212, 0.0258851, 0.36435, 0.0430007, 0.361863, -0.0268511, -0.362729, 0.0435891, 0.00654225, 147.861, -31.3177, -36.8874, -0.304768, 0.0501844, 0.196176, 0.0421981, 0.362448, -0.0271624, -0.198047, 0, -0.307675, 142.87, -12.2274, 19.1032, -0.233543, -0.0295695, -0.283147, -0.00913067, 0.366822, -0.0307767, 0.284541, -0.0124988, -0.233387, 254.648, -73.8416, -175.388, 0.0746727, 0, 0.188144, 0, 0.202421, 0, -0.188144, 0, 0.0746727, 12.1757, -0.453491, 67.0536, -0.199361, 0.00421013, 0.0195952, 0.00520165, 0.200052, 0.00993924, -0.0193557, 0.0103981, -0.199158, 184.495, -30.9696, -54.9659, -0.3595, 0, 0.134253, 0, 0.38375, 0, -0.134253, 0, -0.3595, 30.49, -0.453491, 46.6747, -0.319933, 0.0539776, -0.157855, 0.0593661, 0.355896, 0.00137643, 0.155908, -0.0247518, -0.324451, 79.4093, -8.536, -17.4709, 0.18176, 0.0064791, 0.17337, -0.0102515, 0.251056, 0.00136529, -0.173188, -0.00806093, 0.18187, 105.137, -75.3107, -129.429, -0.377263, 0, -0.0916259, 0, 0.38823, 0, 0.0916259, 0, -0.377263, 15.5634, -0.453491, 58.8092, 0.225729, -0.0213235, 0.0856661, 0.0350831, 0.237499, -0.033327, -0.0810095, 0.0434375, 0.224272, 78.7353, -18.5989, -31.3951, -0.148274, 0.00742925, 0.207895, 0.00845126, 0.255303, -0.00309584, -0.207856, 0.00508076, -0.148428, 160.095, -80.4352, -222.839, -0.254102, 0.0313958, 0.242502, 0.010578, 0.350814, -0.0343345, -0.244297, -0.0174658, -0.253722, 279.02, -74.1837, -132.692, 0.134458, 0.0351001, 0.214908, -0.018617, 0.253504, -0.0297561, -0.216958, 0, 0.135741, 140.171, -11.8536, 8.6687, 0.186566, -0.0176963, -0.109575, 0.0143507, 0.216357, -0.0105076, 0.110063, 0.00178679, 0.187108, 256.092, -74.1309, -198.365, -0.106223, 0.00105515, -0.366164, 0.00062243, 0.38126, 0.00091809, 0.366165, -0.000341993, -0.106224, 176.361, -75.9467, -165.876, -0.0808109, 0.000584877, -0.296487, 2.37915e-05, 0.307302, 0.000599729, 0.296487, 0.000134755, -0.0808108, 127.801, -75.8211, -175.984, 0.151304, 0.0054801, -0.170218, -0.00364077, 0.227743, 0.00409589, 0.170267, 0, 0.151347, 84.2414, -1.63969, 11.5269, -0.130704, 0.0487506, 0.326933, 0.0180972, 0.352092, -0.0452671, -0.330052, 0, -0.131951, 137.883, -11.5368, 28.8623, -0.235181, 0.0193429, 0.137368, 0.0330521, 0.270405, 0.018511, -0.134728, 0.0325723, -0.235248, 137.626, -30.9596, -33.7819, -0.0771901, 0.170745, 0.141186, 0.141791, 0.152953, -0.107455, -0.170244, 0.0499726, -0.153511, 164.345, -28.4906, 57.4039, 0.336242, -0.0314752, 0.150009, 0.0317632, 0.368112, 0.00604152, -0.149948, 0.00739686, 0.337658, 206.581, -75.4155, -168.054, -0.275514, -0.0013815, 0.159315, -0.00114264, 0.31826, 0.000783755, -0.159317, 0.000106505, -0.275516, 292.797, -38.3608, -113.927, -0.124753, -0.0211979, -0.371619, -0.0234009, 0.391607, -0.0144824, 0.371487, 0.0175496, -0.12571, 39.0542, -8.14037, -17.7309, -0.355859, 0.0262195, -0.0318041, 0.0261241, 0.357277, 0.00223653, 0.0318825, -9.75963e-05, -0.356816, 194.905, -34.7927, -18.2828, -0.308272, 0.179214, -0.0790806, 0.152446, 0.312084, 0.112989, 0.123011, 0.062358, -0.338205, 159.657, -23.5724, 46.999, 0.0498176, -0.0259691, -0.374444, 0.0231532, 0.377221, -0.0230813, 0.374629, -0.0198601, 0.0512196, 78.6391, -73.3033, -74.9775, 0.0399914, 0.0468633, -0.38903, 0.044631, 0.387961, 0.0513225, 0.389292, -0.0492926, 0.0340805, 164.744, -53.7198, -119.869, -0.207425, 0.00730572, -0.221752, 0.00499068, 0.303643, 0.00533541, 0.221817, 0, -0.207485, 67.8089, -1.24425, 44.6241, -0.197572, 0, 0.187521, 0, 0.272394, 0, -0.187521, 0, -0.197572, 4.89416, -0.453491, 35.0835, 0.138713, 0.0215311, 0.222164, -0.0217246, 0.261631, -0.0117918, -0.222145, -0.0121416, 0.139878, 263.568, -73.3471, -143.429, -0.238129, 0.0489973, -0.0874489, 0.0522596, 0.253026, -0.000536856, 0.0855393, -0.018183, -0.243117, 262.893, -45.7924, -107.39, -0.309111, 0.0152887, -0.227693, 0.0210747, 0.383634, -0.00285101, 0.227231, -0.0147827, -0.309476, 66.8957, -74.1047, -129.497, 0.181559, -0.00125848, 0.230053, -0.090248, 0.269184, 0.0726968, -0.211616, -0.115879, 0.166374, 316.439, -38.0323, -134.939, -0.0236903, 0.0403142, 0.290196, 0.00328015, 0.291162, -0.0401805, -0.292965, 0, -0.0239163, 134.823, -11.1131, 61.7278, 0.155744, -0.00127682, 0.268615, 0.00133542, 0.310498, 0.000701626, -0.268614, 0.000803344, 0.155747, 125.513, -75.8481, -162.152, -0.121787, 0.0257461, 0.254027, 0.0207191, 0.281513, -0.0185986, -0.254487, 0.0105984, -0.123081, 186.576, -34.6512, 12.773, 0.325832, 0.000883111, 0.0341389, -0.000866239, 0.327615, -0.000207171, -0.0341393, 0.000115777, 0.325833, 185.896, -25.9121, -86.2561, 0.371298, 0, 0.0829081, 0, 0.380442, 0, -0.0829081, 0, 0.371298, 26.1748, -0.453506, -69.2682, -0.116894, 0.0456312, -0.282456, -0.0328386, 0.300964, 0.0622113, 0.284228, 0.0535389, -0.108977, 316.745, -40.6147, -143.784, -0.168131, 0.00533541, -0.325294, -0.00343931, 0.366115, 0.00778259, 0.325319, 0.00662804, -0.168036, 271.142, -38.4606, -96.213, 0.117021, -0.00465238, -0.270643, 0.0018464, 0.294859, -0.0042703, 0.270677, 0, 0.117036, 45.8614, -7.86194, -3.86865, -0.156445, -0.000946252, 0.168748, -0.000206725, 0.23011, 0.00109868, -0.168751, 0.000595358, -0.156444, 102.455, -75.9677, -152.685, -0.282587, 0.0378732, 0.203544, 0.0307312, 0.348261, -0.0221353, -0.204744, 0, -0.284253, 115.016, -3.85352, 37.1902, 0.37884, -0.026367, -0.0598116, 0.0291605, 0.383002, 0.0158585, 0.0585006, -0.0201644, 0.379425, 89.5598, -72.6687, -77.2026, -0.0285919, -0.00894811, 0.246295, -0.0282333, 0.246434, 0.00567559, -0.244835, -0.0273727, -0.0294169, 250.415, -32.3055, -33.3862, 0.238885, 0.10455, 0.121963, -0.0890754, 0.268093, -0.055348, -0.133683, 0.00819082, 0.254821, 53.115, -79.52, -45.6399, 0.200507, 0.0322167, 0.0716713, -0.0352929, 0.212418, 0.00325168, -0.0702076, -0.0147732, 0.203052, 68.2615, -7.1898, -22.4253, -0.0811453, 0.00561221, -0.254407, -0.0115053, 0.266674, 0.00955255, 0.254208, 0.0138609, -0.0807763, 183.566, -31.9521, -35.6862, 0.00752375, 0.043375, -0.356688, 0.000393158, 0.356765, 0.0433926, 0.359315, -0.0012986, 0.00742126, 46.9444, -73.0056, -137.566, -0.137742, -0.00144816, 0.339852, 0.000564132, 0.366703, 0.00179122, -0.339854, 0.00119563, -0.137738, 215.196, -25.8934, -85.7871, 0.266287, 0, -0.169761, 0, 0.315796, 0, 0.169761, 0, 0.266287, 21.2514, -0.453506, -9.61748, 0.192239, -0.00317271, 0.173733, 0.00890338, 0.258928, -0.00512324, -0.173534, 0.00976994, 0.192197, 207.846, -45.0457, -103.699, 0.0530634, -0.0152093, 0.214776, -0.00767566, 0.220928, 0.0175414, -0.215177, -0.0116315, 0.0523388, 101.583, -71.7403, -75.2926, 0.283234, 0.00495219, -0.140345, 0.00567011, 0.315279, 0.0225679, 0.140318, -0.0227363, 0.282377, 89.4963, -78.7247, -190.429, -0.27228, 0.110669, -0.216273, 0.241485, 0.158826, -0.222749, 0.0265774, -0.309329, -0.191747, 159.51, -23.0034, 1.97838, -0.210726, -0.0148517, -0.217995, -0.011897, 0.303187, -0.00915544, 0.218177, 0.00218802, -0.21105, 244.847, -31.1121, -11.7872, -0.141472, 0, -0.226454, 0, 0.267013, 0, 0.226454, 0, -0.141472, 20.5877, -0.453491, 40.5317, -0.162254, 0.00838959, -0.281891, 0.0132324, 0.325085, 0.00205866, 0.281705, -0.0104379, -0.162458, 137.465, -75.8303, -119.627, -0.343243, -0.0280339, -0.0571879, -0.0256829, 0.347772, -0.016331, 0.0582816, -0.0118497, -0.343998, 252.802, -74.1273, -179.407, -0.29984, 0.172515, 0.180556, 0.130778, 0.348827, -0.116117, -0.212742, -0.0287118, -0.325856, 242.299, -30.2769, -91.5083, -0.180088, -0.0243771, -0.280557, -0.00835005, 0.333333, -0.0236029, 0.28149, -0.00570771, -0.180191, 199.54, -53.4671, -116.825, -0.115634, 0.0118602, 0.189074, 0.00905839, 0.221605, -0.00836087, -0.189229, 0.00336071, -0.115939, 42.1591, -73.045, -102.297, 0.36452, 0.000718555, 0.0982857, -0.000650679, 0.377538, -0.00034691, -0.0982862, 0.000165555, 0.364521, 168.559, -75.922, -126.636, -0.176271, 0.00868427, 0.128392, 0.00206677, 0.217912, -0.0119018, -0.128669, -0.00839684, -0.176083, 88.8551, -74.3475, -113.085, 0.241263, 0.00848731, 0.257346, -0.00580484, 0.352753, -0.0061918, -0.25742, 0, 0.241333, 52.9171, -0.885895, 54.5223, -0.056417, 0.0603661, 0.247561, -0.00923624, 0.252905, -0.0637741, -0.254647, -0.0225472, -0.0525339, 160.774, -43.4041, -105.024, -0.343065, 0, 0.180953, 0, 0.387863, 0, -0.180953, 0, -0.343065, 8.8844, -0.453506, -42.2069, 0.15739, 0.000819452, 0.297491, 0.0116117, 0.336286, -0.00706956, -0.297266, 0.0135698, 0.157233, 317.647, -38.4682, -108.549, 0.21786, 0.0316348, 0.130455, -0.0302749, 0.253859, -0.0110009, -0.130777, -0.00606833, 0.21987, 4.75604, -2.65848, -116.638, -0.158079, -0.0237735, -0.162432, -0.0115057, 0.226548, -0.0219601, 0.163759, -0.00703167, -0.158341, 204.457, -78.2149, -179.361, -0.0680687, 0.255123, 0.202093, 0.17176, 0.203532, -0.199087, -0.276456, 0.0636368, -0.173451, 136.669, -13.7271, 64.6359, 0.295842, -0.00856574, -0.146591, -0.00371497, 0.329175, -0.026732, 0.146794, 0.0255936, 0.294756, 331.13, -37.9343, -120.328, 0.191989, 0.0251535, 0.128992, -0.0208787, 0.231298, -0.0140278, -0.129752, 0, 0.193121, 128.875, -5.36061, 1.72418, 0.120328, 0.220383, 0.167635, -0.139373, 0.206143, -0.170966, -0.23926, -0.00924703, 0.183897, 19.2664, -76.8679, -104.785, 0.273876, -0.0211533, -0.00312711, 0.0212199, 0.273818, 0.00622743, 0.00263743, -0.00645009, 0.274621, 202.875, -35.6572, -98.0754, 0.207094, 0.00700211, 0.204426, -0.00498323, 0.290995, -0.00491904, -0.204485, 0, 0.207154, 66.2115, -1.20581, 20.9211, -0.0130862, 0.00734965, -0.252278, -0.00464105, 0.252567, 0.00759881, 0.252343, 0.00502633, -0.0129431, 168.56, -80.6747, -223.184, -0.333371, -0.0377701, 0.127944, -0.0510159, 0.354298, -0.0283357, -0.123262, -0.0444855, -0.334305, 59.0781, -80.6823, -193.253, -0.292662, 0.00886397, 0.180109, 0.00176317, 0.343466, -0.0140385, -0.180318, -0.011028, -0.29246, 106.25, -75.776, -143.025, -0.139413, -0.00488123, -0.33072, 0.32847, 0.0400801, -0.139056, 0.0388204, -0.356658, -0.0111004, 198.651, -75.0802, -124.965, 0.290478, 0.038575, 0.0634898, -0.0280029, 0.294192, -0.0506263, -0.0688101, 0.0431179, 0.288621, 160.389, -34.3528, -24.9804, 0.281175, 0.00732268, 0.116402, -0.00676582, 0.304317, -0.00280094, -0.116435, 0, 0.281256, 40.9645, -0.598267, 54.025, -0.167396, -0.247596, 0.0247306, -0.148522, 0.075507, -0.249353, 0.199641, -0.151432, -0.164768, 58.0859, -42.0335, -49.3155, 0.272286, 0.0509278, 0.171378, -0.0303738, 0.320878, -0.0470963, -0.176186, 0.0233879, 0.272974, 234.329, -31.049, -81.1172, -0.353628, -0.00359371, 0.0698601, -0.00412281, 0.360449, -0.00232737, -0.0698308, -0.00308211, -0.353639, 12.7148, -0.237106, -1.59171, -0.0523367, -0.00740696, 0.19846, -0.0238007, 0.20399, 0.00133679, -0.197167, -0.0226583, -0.0528413, 256.981, -31.5301, -28.5519, -0.261619, 0.000586082, -0.162417, 0.000426708, 0.307935, 0.000423847, 0.162418, 0.000135033, -0.261619, 167.851, -75.9147, -139.882, 0.310027, 0.0525535, 0.0188463, -0.0496469, 0.308149, -0.0425777, -0.0255389, 0.0389334, 0.311554, 53.2498, -72.3925, -163.792, 0.220689, 0.0283499, 0.0555143, -0.0288225, 0.227499, -0.00159931, -0.0552704, -0.00543821, 0.222497, 7.21949, -3.2115, -126.93, -0.249284, 0.0283554, -0.0764401, 0.0271095, 0.260741, 0.00831282, 0.0768908, 0, -0.250754, 100.616, -2.28749, 14.2759, 0.0901927, 0.00613249, 0.219976, -0.00938696, 0.237625, -0.00277576, -0.219861, -0.0076297, 0.0903583, 91.4668, -74.4023, -112.124, -0.340648, 0.00263884, -0.163335, 0.0167082, 0.376323, -0.0287663, 0.162499, -0.0331618, -0.339441, 98.9835, -78.5359, -186.642, -0.226017, -0.0175203, -0.159009, -0.00376975, 0.275743, -0.0250241, 0.159927, -0.0182608, -0.225309, 250.917, -72.9791, -154.955, 0.167713, 0.0169801, -0.159399, -0.0122643, 0.231377, 0.0117437, 0.159831, -6.32047e-05, 0.16816, 184.807, -34.0495, -10.3968, -0.182223, -0.0107803, -0.236701, 0.019612, 0.296892, -0.0286198, 0.236134, -0.0329774, -0.180284, 245.575, -32.0507, -29.5098, -0.042084, -0.19603, 0.0634558, -0.206039, 0.0395535, -0.0144554, 0.00153966, -0.0650633, -0.199974, 219.133, -78.9433, -216.062, 0.104371, -0.00673372, -0.266662, -0.0025533, 0.28631, -0.00822921, 0.266735, 0.00537552, 0.104264, 82.788, -79.6606, -222.199, 0.167727, -0.000609315, 0.165694, 0.000190934, 0.235769, 0.000673725, -0.165695, -0.000345105, 0.167727, 139.198, -25.8773, -51.8765, -0.137713, -0.0211063, 0.253683, -0.0144229, 0.288609, 0.0161827, -0.25415, -0.0049419, -0.138378, 206.493, -52.9662, -117.267, -0.135001, 0.00947948, 0.370139, 0.00324815, 0.39399, -0.00890561, -0.370246, 0, -0.13504, 87.0545, -1.7074, 26.0404, 0.330218, 0, -0.134929, 0, 0.35672, 0, 0.134929, 0, 0.330218, 18.5471, -0.453491, 11.6543, -0.247218, 0.000893152, -0.207446, 0.000870267, 0.322724, 0.000352359, 0.207446, -0.000289486, -0.247219, 195.803, -75.9766, -138.945, 0.242118, -0.00156049, 0.312286, 0.00197436, 0.395148, 0.000443822, -0.312283, 0.00128838, 0.242122, 207, -25.9189, -87.905, 0.0953234, 0.00517948, -0.192992, -0.00229374, 0.21525, 0.0046439, 0.193048, 0, 0.095351, 41.9562, -0.622131, 43.0418, 0.19407, 0.0057734, 0.141082, -0.00466985, 0.239932, -0.0033948, -0.141122, 0, 0.194126, 36.3604, -0.487488, 5.64435, 0.343172, -0.0249041, 0.116018, 0.0174456, 0.361752, 0.02605, -0.117371, -0.0190457, 0.343087, 108.36, -70.9984, -70.0614, 0.107428, 0.0115242, -0.380558, -0.00242549, 0.39543, 0.0112898, 0.380725, -0.000732581, 0.107453, 298.177, -38.3428, -144.525, 0.364721, 0.00103772, -0.0870274, -0.000931317, 0.374961, 0.000568011, 0.0870286, -0.000336343, 0.364722, 195.921, -75.9739, -135.669, 0.336972, -0.0262032, -0.130645, 0.0311923, 0.360925, 0.00806414, 0.129545, -0.0187452, 0.337893, 102.452, -72.6912, -95.0867, 0.329603, 0.0792006, 0.142433, -0.0723061, 0.35906, -0.0323344, -0.146053, 0.000975707, 0.337439, 275.54, -38.244, -58.5824, 0.120482, 0.00832004, 0.248365, -0.0116478, 0.275902, -0.00359217, -0.248231, -0.00890795, 0.120715, 79.5251, -75.1573, -146.594, -0.0369757, 0.00639401, -0.21626, 0.00147841, 0.219398, 0.00623401, 0.21635, -0.000406461, -0.037003, 301.867, -38.468, -154.079, -0.144984, 0.0421941, -0.30609, 0.0254282, 0.338594, 0.0346303, 0.307937, -0.00809385, -0.146974, 1.95579, -2.09036, -107.469, -0.000823387, 0.00045973, -0.368345, -0.0188215, 0.367865, 0.000501204, 0.367865, 0.0188226, -0.00079882, 278.985, -74.7251, -148.076, 0.164056, 0.00461156, 0.145711, 0.00412177, 0.219127, -0.0115758, -0.145726, 0.0113895, 0.163713, 164.232, -31.7071, -32.5732, -0.267162, 0.0897838, -0.242971, 0.0721243, 0.36103, 0.0541042, 0.248786, -0.00824879, -0.276604, 258.263, -34.3862, -72.4932, 0.111641, 0.0118335, -0.244942, -0.0114281, 0.269089, 0.00779125, 0.244961, 0.00716067, 0.111996, 234.021, -31.1221, -66.9087, -0.207508, 0.0239038, -0.0724903, 0.0225664, 0.219806, 0.00788328, 0.0729177, 0, -0.208732, 113.89, -3.73097, 13.3399, 0.170074, 0.0036158, 0.156019, -0.0138811, 0.230198, 0.00979658, -0.155442, -0.0166007, 0.16983, 96.6667, -79.6919, -202.279, 0.293203, 0.0262967, 0.0242152, -0.027384, 0.293837, 0.0124758, -0.0229785, -0.0146291, 0.294115, 275.555, -74.6031, -147.346, -0.305238, 0, -0.011937, 0, 0.305471, 0, 0.011937, 0, -0.305238, 34.0539, -0.453491, 40.7659, -0.189002, 0.25624, -0.189194, 0.168961, 0.267147, 0.193027, 0.27001, 0.0121934, -0.253222, 15.6185, -71.0358, -163.29, 0.211814, -0.0382589, -0.0141324, 0.0374967, 0.212074, -0.0121282, 0.0160457, 0.00945274, 0.2149, 267.208, -45.7581, -116.459, -0.327188, 0.00696589, 0.0529431, 0.0096159, 0.330997, 0.0158759, -0.0525264, 0.0172042, -0.326877, 206.015, -30.914, -64.7487, 0.243229, -0.015553, -0.0319307, 0.0175011, 0.24478, 0.0140847, 0.0309059, -0.0162103, 0.243319, 250.113, -73.4333, -161.042, 0.254601, 0.0185487, -0.277404, -0.0144676, 0.376521, 0.0118978, 0.277646, 0.00261066, 0.254998, 3.00001, -0.0631409, -8.71426, 0.259068, -0.018755, 0.0854861, 0.0132807, 0.272431, 0.0195217, -0.0865058, -0.0143431, 0.259012, 88.5979, -72.9727, -81.7197, -0.200797, 0.000563092, -0.0575988, 0.000520909, 0.208895, 0.000226223, 0.0575992, 7.38223e-05, -0.200798, 179.053, -25.901, -65.3668, -0.02439, 0.00627099, 0.21379, 0.000314565, 0.215177, -0.00627577, -0.213882, -0.000398641, -0.0243887, 299.437, -38.3766, -142.947, -0.284699, -0.0282224, -0.200665, -0.0261415, 0.34827, -0.0118932, 0.200947, 0.00532172, -0.285847, 235.742, -73.4121, -144.327, 0.263275, 0.00668094, 0.0881716, -0.00633511, 0.277648, -0.00212164, -0.0881971, 0, 0.263352, 37.0725, -0.504608, 18.0123, 0.222262, 0.0176746, -0.0925332, -0.027155, 0.239072, -0.0195609, 0.0902075, 0.0284188, 0.222104, 66.2526, -73.421, -171.059, -0.0610456, 0.00827892, -0.315103, 0.0116893, 0.320796, 0.00616391, 0.314995, -0.0103002, -0.0612953, 93.036, -74.8843, -125.875, 0.371303, -0.0322719, -0.0826197, 0.030081, 0.380328, -0.0133717, 0.0834423, 0.00649551, 0.372462, 223.758, -34.0157, -98.0746, 0.187467, 0.0072814, 0.165166, -0.00576954, 0.249847, -0.00446603, -0.165226, -0.000462872, 0.187555, 319.529, -38.9884, -157.127, 0.172687, 0, -0.179814, 0, 0.249307, 0, 0.179814, 0, 0.172687, 23.6119, -0.453506, -9.19647, -0.248626, 0.0355747, -0.212595, 0.0270379, 0.327126, 0.0231196, 0.213848, 0, -0.250091, 119.289, -4.31813, 45.2329, -0.235309, -0.0149604, -0.0176527, -0.0137171, 0.235454, -0.016697, 0.0186353, -0.0155927, -0.235192, 242.731, -73.7547, -158.813, -0.24295, -0.0177299, -0.138496, -0.00619924, 0.279042, -0.0248476, 0.139488, -0.0184793, -0.242326, 240.441, -74.9042, -173.974, 0.188105, -0.040892, -0.0764628, 0.0327286, 0.202622, -0.0278464, 0.0802967, 0.0132069, 0.190474, 13.801, -61.3594, -220.333, -0.056295, 0.0114625, 0.376116, -0.0104469, 0.380108, -0.0131478, -0.376146, -0.0122724, -0.0559254, 80.2739, -75.247, -148.672, -0.340588, 0.0038624, -0.0796008, 0.00211181, 0.349691, 0.00793194, 0.0796665, 0.00724274, -0.340518, 83.1547, -77.4042, -174.644, 0.103278, 0.000327434, 0.186049, 0.000258066, 0.212792, -0.000517755, -0.186049, 0.000476922, 0.103277, 190.911, -25.9077, -92.2956, 0.298924, 0.0072079, -0.0197744, -0.00719218, 0.299578, 0.000475776, 0.0197801, 0, 0.299011, 71.9842, -1.34474, 49.741, -0.248566, 0.0697325, 0.129926, 0.0587251, 0.280402, -0.0381448, -0.135258, -0.0064066, -0.255329, 258.01, -34.3858, -75.2261, -0.393544, 0.029042, 0.0416164, 0.0288696, 0.395738, -0.0031619, -0.0417362, -0.000108103, -0.394601, 191.404, -34.5336, -9.90113, 0.283322, 0.026246, -0.0469235, -0.0276476, 0.286979, -0.00641803, 0.0461116, 0.0108042, 0.284463, 212.3, -36.033, -13.0113, 0.119921, 0.0062044, -0.228259, -0.00288561, 0.257843, 0.00549252, 0.228325, 0, 0.119955, 49.2047, -0.796555, 48.1323, -0.132099, 0, -0.362495, 0, 0.385815, 0, 0.362495, 0, -0.132099, 11.9956, -0.453506, -42.1438, 0.223108, 0.0189825, 0.130881, -0.0164091, 0.258664, -0.00954381, -0.131228, -7.06584e-05, 0.223711, 194.949, -34.7937, -9.87645, 0.0629024, 0.00675291, -0.273498, -0.0015136, 0.280638, 0.00658109, 0.273577, 0, 0.0629206, 49.3945, -0.801132, 30.1224, -0.239829, 0, -0.0655933, 0, 0.248637, 0, 0.0655933, 0, -0.239829, 14.2244, -0.453506, -42.9107, -0.19931, -0.0166353, -0.11367, -0.00851982, 0.229136, -0.0185949, 0.114564, -0.0119006, -0.199136, 114.476, -71.052, -80.3339, 0.333813, -0.0284757, 0.0989123, 0.028121, 0.348147, 0.00532379, -0.0990137, 0.00287519, 0.334983, 223.543, -76.7344, -205.476, -0.387752, -0.0251372, -0.0827659, -0.0190496, 0.395621, -0.0309097, 0.0843752, -0.0261996, -0.387335, 219.429, -76.8835, -183.702, -0.105237, 0.00236456, -0.289811, -0.0057275, 0.308248, 0.00459478, 0.289764, 0.00695162, -0.105164, 226.925, -31.1716, -55.4848, -0.25303, 0.00629895, -0.0670863, 0.00608859, 0.261773, 0.00161428, 0.0671057, 0, -0.253104, 46.0827, -0.721436, 28.678, 0.272126, 0.0885642, 0.118827, -0.0804018, 0.296933, -0.0371818, -0.124495, 0.00182085, 0.283749, 11.433, -5.33147, -196.668, 0.247514, -0.0336837, -0.306576, 0.0149734, 0.393941, -0.0311937, 0.308057, 0.00791587, 0.24784, 248.352, -72.6161, -129.623, 0.0253576, 0.0276894, -0.273548, 0.0303386, 0.272749, 0.0304209, 0.273266, -0.0328506, 0.0220063, 153.905, -52.4358, -119.037, 0.16104, 0, -0.250964, 0, 0.29819, 0, 0.250964, 0, 0.16104, 21.596, -0.453506, -56.3632, -0.202388, 0, -0.17707, 0, 0.268913, 0, 0.17707, 0, -0.202388, 1.02036, -0.453491, 50.123, 0.162096, -0.0161613, 0.118182, 0.00901383, 0.200488, 0.0150534, -0.118941, -0.00683125, 0.162203, 226.44, -76.4189, -184.294, -0.252077, 0.0208636, 0.0294671, 0.0193296, 0.253521, -0.0141449, -0.0304953, -0.0117652, -0.252543, 253.809, -73.1142, -155.717, 0.0244233, 0.00568331, -0.218976, 0.00639996, 0.22022, 0.00642942, 0.218956, -0.00707085, 0.0242376, 106.815, -75.6482, -138.591, 0.0430457, 0.0149103, 0.317925, 0.0326191, 0.318923, -0.0193736, -0.316598, 0.0348859, 0.0412299, 187.598, -30.3284, -64.2442, -0.305161, 0.00683019, 0.111773, 0.012208, 0.324549, 0.0134975, -0.111314, 0.0168691, -0.304939, 177.056, -32.2457, -27.4023, 0.143084, 0.00747275, 0.202479, -0.0108473, 0.247804, -0.00148017, -0.202327, -0.00800078, 0.143272, 88.3192, -74.9537, -132.073, -0.237001, 0.110814, 0.0600259, 0.114853, 0.242546, 0.0057063, -0.051883, 0.0307219, -0.261566, 167.761, -21.9538, 13.1061, -0.31987, 0, -0.183273, 0, 0.368654, 0, 0.183273, 0, -0.31987, 15.75, -0.453491, 62.5633, 0.193942, 0.0358467, -0.312886, -0.0289778, 0.367929, 0.0241909, 0.313597, 0.0118291, 0.195738, 250.241, -33.0738, -80.537, -0.126234, 0.230179, -0.0102695, 0.229061, 0.124107, -0.0339323, -0.0248779, -0.0252577, -0.260319, 11.9919, -63.5381, -82.0556, -0.335352, 0.160877, -0.116265, 0.134756, 0.352121, 0.0985475, 0.145739, 0.0446011, -0.358651, 149.563, -14.3595, 18.7906, -0.201982, 0.00261774, -0.319504, -0.00686947, 0.377868, 0.00743862, 0.319441, 0.00978111, -0.201862, 97.7158, -1.16818, -2.45437, -0.329454, 0.0923909, -0.0598303, 0.0689469, 0.0260377, -0.339447, -0.0858025, -0.333829, -0.0430345, 148.42, -46.97, -113.601, -0.27101, 0.0648206, -0.202441, 0.059826, 0.338022, 0.0281433, 0.203972, -0.013019, -0.277229, 246.482, -32.9257, -62.5698, -0.180577, -0.0243136, 0.239654, -0.0109562, 0.300035, 0.0221841, -0.240635, 0.00458467, -0.180851, 236.667, -73.274, -148.464, 0.119186, 0.00848317, -0.306524, 0.0067674, 0.32871, 0.0117286, 0.306566, -0.0105543, 0.11891, 121.338, -75.4509, -120.773, -0.0676868, 0.00755036, -0.306424, 0.00162856, 0.313811, 0.00737263, 0.306513, 0, -0.0677064, 81.8488, -1.58209, 23.3452, 0.197166, 0.0562616, -0.0139268, -0.0567339, 0.197444, -0.00556412, 0.011857, 0.00918296, 0.204961, 176.272, -32.49, 37.0932, 0.0862067, 0.000424104, 0.205479, -7.39691e-05, 0.22283, -0.000428883, -0.205479, 9.77135e-05, 0.0862067, 151.184, -75.8792, -147.31, -0.255863, -0.00127275, 0.149603, -0.060163, 0.272237, -0.10058, -0.136978, -0.117193, -0.235269, 314.844, -38.1373, -135.165, -0.3297, 0.0158867, -0.0902712, 0.00540539, 0.339808, 0.04006, 0.0914989, 0.0371703, -0.327643, 204.102, -30.2285, -72.2109, -0.248951, 0.0270736, 0.00120049, 0.0270732, 0.248954, -0.000130553, -0.00120757, 0, -0.250418, 108.918, -3.19035, 51.2707, -0.185566, 0.191232, 0.28441, 0.166425, 0.333011, -0.115324, -0.299602, 0.0665395, -0.240218, 149.047, -19.7272, 58.2486, 0.256017, 0.0219952, 0.00734368, -0.0217268, 0.255979, -0.00924266, -0.00810347, 0.0085843, 0.256794, 212.519, -36.6701, 4.83548, 0.169002, 0, -0.294375, 0, 0.339438, 0, 0.294375, 0, 0.169002, 28.6836, -0.453506, -27.0964, 0.0840858, 0.0211933, 0.290871, -0.0115149, 0.302725, -0.0187282, -0.291415, -0.00584661, 0.084669, 250.422, -61.9667, -124.048, -0.210897, -0.00118433, 0.173097, -0.000857534, 0.272837, 0.000821957, -0.173099, 9.13041e-05, -0.210898, 297.868, -38.3383, -115.238, -0.257761, 0.00419825, -0.135447, 0.0384069, 0.2814, -0.0643678, 0.129955, -0.0748377, -0.24963, 119.716, -73.2075, -105.296, -0.1775, 0.0873856, -0.0752561, 0.0694328, 0.191266, 0.0583289, 0.0920805, 0.0242265, -0.18905, 140.284, -14.4289, 52.8101, -0.345508, -0.00848184, -0.103584, -0.0100681, 0.360637, 0.00405228, 0.103442, 0.00677103, -0.345588, 84.8016, -79.7045, -217.341, 0.270467, 0.000854035, 0.148577, -0.000881804, 0.30859, -0.000168581, -0.148577, -0.000276807, 0.270468, 171.023, -75.9303, -164.311, -0.120798, 0.0260145, 0.189002, 0.0368361, 0.222673, -0.00710582, -0.187194, 0.0270302, -0.123363, 190.034, -34.0809, -22.3827, -0.16273, -0.00241046, 0.249105, -0.0134233, 0.297195, -0.00589309, -0.248754, -0.0144604, -0.162641, 68.7036, -5.48558, -2.8656, 0.185887, 0.00529349, -0.0869565, -0.00200083, 0.205115, 0.00820922, 0.0870945, -0.00658586, 0.185781, 103.438, -74.9505, -119.577, 0.0432198, 0.224232, 0.206848, 0.0500723, 0.200866, -0.22821, -0.30093, 0.0656268, -0.00826453, 174.157, -30.3746, 29.644, -0.306585, 0.088419, 0.0499767, 0.089587, 0.310296, 0.000599293, -0.0478515, 0.0144317, -0.31908, 169.298, -31.5921, 60.5181, 0.197524, -0.0261786, 0.237054, 0.0208181, 0.308517, 0.0167238, -0.237585, 0.00526907, 0.198548, 234.772, -33.0103, -102.222, 0.226696, 0.000604691, 0.101436, 0.00353833, 0.248153, -0.00938696, -0.101377, 0.0100134, 0.226502, 316.972, -38.7348, -101.9, -0.30578, -0.0122401, -0.134235, -0.0102171, 0.333937, -0.00717601, 0.134404, -0.0024622, -0.30594, 325.866, -37.2328, -132.7, -0.00971232, -0.0263461, -0.308035, -0.00704109, 0.308125, -0.0261318, 0.309079, 0.00619148, -0.0102748, 232.194, -73.7638, -141.264, 0.33654, 0.0765911, 0.0854993, -0.0739947, 0.347229, -0.0197956, -0.0877559, 0.00094356, 0.344577, 272.149, -37.4535, -74.1963, -0.105069, 0.0397665, 0.210233, 0.0443645, 0.233172, -0.0219334, -0.209311, 0.0294604, -0.11018, 56.9657, -71.6855, -174.404, -0.334799, 0.0102711, 0.215568, 0.00171117, 0.39799, -0.0163053, -0.215806, -0.0127787, -0.334559, 104.99, -75.6697, -140.728, 0.197468, 0.0277156, -0.239067, -0.00569356, 0.309692, 0.0312004, 0.240601, -0.0154184, 0.196947, 269.48, -74.0726, -147.61, -0.279437, 0.0123559, 0.13485, 0.00592321, 0.310043, -0.0161342, -0.135285, -0.011947, -0.279244, 64.9456, -73.9844, -128.392, 0.176328, 0.0591363, 0.240176, -0.0319152, 0.297929, -0.0499255, -0.245281, 0.00374634, 0.179154, 254.661, -33.6819, -86.008, -0.101972, -0.00258566, 0.279708, -0.00238272, 0.297712, 0.00188342, -0.27971, -0.00159343, -0.101988, 190.632, -45.1923, -106.911, 0.0322623, 0.0174171, -0.246731, 0.00251817, 0.248785, 0.0178914, 0.247332, -0.00480486, 0.0320017, 195.859, -58.1398, -123.688, 0.25148, 0, 0.158032, 0, 0.297012, 0, -0.158032, 0, 0.25148, 30.4397, -0.453491, 61.9087, -0.0393003, -0.000833059, 0.198736, 0.000352579, 0.202584, 0.000918912, -0.198738, 0.00052414, -0.0392984, 143.711, -75.8785, -121.487, -0.0885165, 0.00631195, -0.23492, 0.0614757, 0.242912, -0.016637, 0.226822, -0.0633736, -0.0871678, 151.518, -79.4178, -192.247, -0.162521, 0.0230863, -0.136579, 0.017674, 0.212289, 0.0148528, 0.137384, 0, -0.163479, 104.6, -2.72073, 35.5345, -0.249331, 0.00104442, 0.283284, 0.000435926, 0.37738, -0.00100765, -0.283285, -0.000338513, -0.249331, 168.366, -75.9224, -163.775, -0.22586, 0.001869, -0.0915496, -0.00033249, 0.243647, 0.00579437, 0.091568, 0.00549473, -0.225793, 217.273, -31.0182, -59.0065, -0.00844652, -0.000894228, -0.205832, -0.000105546, 0.206005, -0.000890649, 0.205834, 6.8939e-05, -0.0084469, 310.154, -38.283, -121.064, 0.0647632, -0.00207292, -0.311501, 0.00408964, 0.31814, -0.00126683, 0.311481, -0.00374607, 0.064784, 260.222, -31.7708, -95.8699, -0.125833, 0.0365829, -0.193847, 0.00559895, 0.230496, 0.0398648, 0.197189, 0.0168002, -0.124832, 234.94, -31.1359, -81.2571, 0.114306, -0.000298795, -0.361336, -0.000257991, 0.378985, -0.000395002, 0.361336, 0.000365113, 0.114305, 170.043, -25.892, -79.5054, 0.354165, -0.0184888, 0.164384, 0.0138911, 0.390395, 0.0139806, -0.164836, -0.00682536, 0.354372, 72.8951, -19.5624, -26.5368, 0.313311, 0, 0.201162, 0, 0.37233, 0, -0.201162, 0, 0.313311, -0.681106, -0.453506, -30.2788, -0.308416, 0.017541, 0.217564, 0.0379315, 0.375194, 0.0235214, -0.214949, 0.0410411, -0.308018, 170.98, -30.055, -59.6411, 0.163164, -0.000346683, -0.118524, 0.000126228, 0.201669, -0.000416113, 0.118524, 0.000262477, 0.163164, 294.883, -51.8495, -135.097, -0.35163, -0.00291451, -0.188726, 0.0128153, 0.397749, -0.0300198, 0.188313, -0.0325104, -0.350359, 120.861, -78.1319, -180.938, -0.345328, 0.162081, 0.0928414, 0.168091, 0.354756, 0.00589572, -0.0814564, 0.0449348, -0.381427, 168.592, -22.6978, 15.9823, -0.134879, 0.00211905, -0.344709, -0.00730866, 0.370056, 0.00513462, 0.344638, 0.00867701, -0.134798, 241.212, -32.951, -98.4287, -0.00421673, 0.004751, 0.226017, 0.011823, 0.225752, -0.00452484, -0.225758, 0.0117339, -0.00445854, 167.719, -31.9683, -28.9591, 0.0859777, 0.000437286, 0.213062, -7.0208e-05, 0.229756, -0.000443216, -0.213063, 0.00010075, 0.0859777, 147.661, -75.8744, -142.709, -5.18716e-05, 0.0261799, -0.210146, 0.00506723, 0.210086, 0.0261712, 0.211709, -0.00502195, -0.000677892, 5.80871, -3.3006, -138.012, 0.25482, 0.00407063, 0.0507675, -0.00763388, 0.259155, 0.0175376, -0.050355, -0.0186889, 0.254249, 74.2016, -77.7376, -180.072, -0.0201501, -0.00154549, -0.375295, -0.00105385, 0.375834, -0.00149113, 0.375296, 0.000972385, -0.0201542, 116.085, -75.9227, -148.37, 0.168752, 0.090009, -0.267426, -0.0608999, 0.315876, 0.0678871, 0.275517, 0.0146912, 0.178802, 177.012, -32.3791, 30.1747, -0.178707, 0.00484945, 0.280776, 0.00768624, 0.332769, -0.000855351, -0.280713, 0.00602435, -0.17877, 286.465, -38.5602, -103.045, 0.10465, 0.075427, -0.213061, 0.130376, 0.171646, 0.124803, 0.184625, -0.163965, 0.0326371, 142.015, -14.0738, -0.0920233, 0.0379337, 0.000697597, -0.255998, -0.000192722, 0.258793, 0.000676656, 0.255999, 9.1456e-05, 0.0379341, 203.942, -25.9651, -75.235, -0.17364, 0.00761664, 0.136071, 0.00369933, 0.220573, -0.00762597, -0.136233, -0.0037185, -0.17364, 74.7904, -73.61, -99.8317, -0.126789, -0.00724527, -0.280818, -0.00825385, 0.30806, -0.00422151, 0.280791, 0.00578388, -0.126926, 100.197, -79.6283, -202.114, -0.0519148, -0.0197458, 0.307093, -0.0236174, 0.310769, 0.0159896, -0.306819, -0.0205804, -0.0531919, 252.584, -73.3221, -161.734, 0.276017, -0.000839439, -0.171225, 0.000963961, 0.324813, -3.84909e-05, 0.171225, -0.000475443, 0.276018, 130.172, -25.9034, -53.6285, 0.0816387, 0.116893, -0.190853, -0.0879981, 0.203557, 0.0870318, 0.20578, 0.0406731, 0.112935, 154.93, -19.7523, 41.4658, 0.312024, -0.00687014, -0.146142, 0.0114406, 0.344333, 0.00823948, 0.145855, -0.0123117, 0.311991, 135.702, -25.9579, -84.8987, 0.106913, -0.00389062, 0.299215, 0.0125911, 0.317516, -0.000370351, -0.298976, 0.0119806, 0.106983, 190.677, -45.2583, -103.641, 0.166217, -0.00191853, 0.123966, -0.0209523, 0.203921, 0.0312494, -0.122197, -0.0375745, 0.163265, 25.1842, -75.0764, -86.5334, 0.261487, -0.0287987, -0.299, 0.0344817, 0.396676, -0.00805097, 0.298398, -0.020602, 0.262944, 117.423, -71.5024, -93.1249, 0.277324, 0.0314319, -0.203412, -0.0330117, 0.343683, 0.00810014, 0.203162, 0.012939, 0.278982, 212.792, -36.1289, -11.6591, -0.0760513, -0.0014674, -0.348646, -0.00121478, 0.356843, -0.00123692, 0.348647, 0.000923251, -0.0760554, 100.554, -75.9658, -156.404, -0.191787, 0.00818909, -0.0741964, 0.010491, 0.205486, -0.00443804, 0.0739061, -0.00791805, -0.19191, 58.1321, -73.5127, -123.195, -0.261389, 0.0321432, -0.137979, 0.0284259, 0.295571, 0.0150051, 0.138792, 0, -0.26293, 107.764, -3.06487, 44.175, 0.0273865, 0.0279106, -0.255185, -0.00297827, 0.25665, 0.0277512, 0.25669, 0, 0.027548, 109.247, -3.22614, 27.7796, 0.158236, 0.0686606, 0.1672, -0.0461244, 0.230201, -0.0508804, -0.174765, 0.00141164, 0.164815, 3.15254, -3.10626, -156.791, -0.244303, -0.0194624, 0.111245, -0.0234737, 0.268078, -0.00464975, -0.110468, -0.013923, -0.245033, 102.392, -73.0668, -102.235, 0.126852, -0.00429329, 0.204133, 0.00177881, 0.240336, 0.00394932, -0.204171, -0.000573543, 0.126863, 51.4408, -72.9143, -93.2933, -0.385145, 0.0287736, 0.0111507, 0.0280932, 0.384706, -0.0223696, -0.0127683, -0.0214874, -0.385569, 100.714, -79.6289, -211.498, -0.0626309, 0.00594229, -0.238903, 0.00150691, 0.246976, 0.00574804, 0.238972, 0, -0.062649, 88.9481, -1.75296, 41.4358, 0.14454, -0.000830532, -0.287028, 0.000793681, 0.321367, -0.000530215, 0.287028, -0.000470398, 0.144542, 146.227, -25.8581, -51.2894, -0.0875913, 0.000755247, -0.258456, 0.00047425, 0.272895, 0.000636716, 0.258456, -0.000244789, -0.0875923, 142.25, -75.853, -167.569, 0.0559887, 0.00800828, -0.305379, 0.00835993, 0.310309, 0.0096703, 0.30537, -0.00996346, 0.0557257, 122.371, -75.7786, -130.149, 0.106088, -0.0937733, -0.173361, 0.0790623, 0.200591, -0.0601203, 0.180545, -0.0327394, 0.128194, 265.176, -69.6298, -130.402, 0.113103, 0.000581721, -0.211501, 0.000167779, 0.239843, 0.000749397, 0.211501, -0.000501345, 0.113102, 158.887, -25.8841, -78.512, 0.128391, 0, -0.228549, 0, 0.262143, 0, 0.228549, 0, 0.128391, 17.9948, -0.453506, -57.1711, 0.205034, 0.0507882, -0.298561, -0.0320316, 0.362163, 0.0396101, 0.301152, 0.00394271, 0.207484, 248.71, -33.3022, -62.1861, -0.114149, 0, 0.341745, 0, 0.360305, 0, -0.341745, 0, -0.114149, 6.06964, -0.453491, 50.2984, -0.221454, 0.0414095, -0.280076, -0.00848038, 0.354447, 0.0591108, 0.282993, 0.0430262, -0.217399, 216.276, -32.735, -58.7261, -0.109384, 0.160569, -0.0858606, 0.151618, 0.135785, 0.0607758, 0.100829, -0.0299892, -0.184536, 14.9625, -72.3997, -96.0053, -0.117568, 0.00605119, -0.222331, 0.00282871, 0.251502, 0.00534933, 0.222395, 0, -0.117602, 89.278, -1.76089, 33.9226, -0.288694, 0.0084683, -0.156331, 0.0124613, 0.328135, -0.00523738, 0.156063, -0.0105358, -0.28877, 104.558, -75.4687, -134.815, 0.231049, 0.000854415, 0.216993, -0.000546125, 0.316969, -0.000666574, -0.216994, 0.000112015, 0.231049, 191.817, -25.9324, -74.6689, 0.3219, 0, -0.0868936, 0, 0.333421, 0, 0.0868936, 0, 0.3219, 17.2207, -0.453491, 8.84528, -0.290783, 0, 0.0943757, 0, 0.305715, 0, -0.0943757, 0, -0.290783, 17.5695, -0.453506, -65.3034, 0.321539, 0.000632899, 0.0847994, -0.000574789, 0.332533, -0.000302394, -0.0847998, 0.00014582, 0.32154, 136.732, -75.8483, -153.72, 0.267095, 0.0543944, 0.281297, -0.0343596, 0.387879, -0.0423792, -0.28444, 0.00422267, 0.269263, 242.625, -32.3437, -71.8338, 0.288192, -0.0142281, 0.0362675, 0.0143784, 0.290457, -0.000305766, -0.0362082, 0.00209615, 0.288543, 243.916, -31.1696, -10.1401, 0.243221, 0, -0.191717, 0, 0.309696, 0, 0.191717, 0, 0.243221, 32.0156, -0.453506, -56.4001, 0.0384751, -0.0175534, 0.21114, 0.00489623, 0.21461, 0.0169497, -0.211812, 0.00177236, 0.0387449, 225.158, -76.5772, -208.523, 0.0853839, -0.00107945, 0.236429, -0.0931486, 0.23089, 0.0346938, -0.217309, -0.0993939, 0.0780251, 328.62, -40.5299, -140.873, 0.311631, 0.0461147, 0.117523, -0.0431484, 0.333055, -0.0162722, -0.118644, 0, 0.314604, 131.824, -10.6979, 57.4854, -0.0966856, 0.058, 0.27577, 0.0227232, 0.292205, -0.0534897, -0.280886, 0.00367435, -0.099252, 257.264, -34.2628, -80.9035, 0.232041, 0.00621883, -0.085638, 0.0159801, 0.239329, 0.0606786, 0.0843633, -0.0624386, 0.224053, 158.686, -79.3541, -191.289, 0.201572, 0.000102107, 0.00644328, -0.000212551, 0.201645, 0.00345397, -0.00644059, -0.003459, 0.201542, 19.8752, -0.228577, -3.31825, -0.0544752, 0.00538544, -0.201554, 0.00787474, 0.208678, 0.00344744, 0.201472, -0.00670026, -0.0546321, 106.887, -75.5956, -136.894, -0.0215996, 0.0203981, 0.383436, 0.00680807, 0.384002, -0.0200447, -0.383918, 0.00566194, -0.021928, 28.2821, -72.0882, -116.784, 0.00451132, -0.00681432, 0.262621, 0.020481, 0.261869, 0.00644299, -0.26191, 0.0203605, 0.0050274, 314.321, -37.7871, -127.847, 0.0479307, 0.00110053, -0.394756, 0.000221451, 0.397655, 0.0011355, 0.394758, -0.0003567, 0.0479299, 130.224, -75.8289, -178.047, -0.310736, 0, -0.157451, 0, 0.34835, 0, 0.157451, 0, -0.310736, 1.6427, -0.453491, 61.6998, -0.262887, 0.000761329, 0.10325, 0.000745121, 0.282436, -0.000185414, -0.10325, 9.98114e-05, -0.262888, 183.349, -25.9076, -79.4218, 0.0993014, 0.11857, 0.185672, -0.0130827, 0.206477, -0.124859, -0.219913, 0.0412565, 0.0912679, 171.401, -24.6441, 18.6116, 0.0446747, 0.0449886, 0.358349, -0.0141938, 0.36102, -0.0435544, -0.360883, -0.00862992, 0.0460741, 3.35602, -2.89334, -133.761, -0.141604, 0.0496408, -0.205886, 0.0525389, 0.248159, 0.0236982, 0.205166, -0.0292871, -0.148169, 52.6603, -5.65477, -16.9665, 0.116258, 0.0438819, 0.315397, -0.0152419, 0.336142, -0.0411499, -0.31807, -6.85161e-05, 0.117253, 84.434, -25.4249, -40.3214, -0.173251, 0.049355, 0.0969098, 0.040782, 0.198461, -0.0281656, -0.100818, -0.00453443, -0.177929, 260.261, -34.8487, -70.9828, -0.238527, 0.00831688, 0.250136, 0.0057396, 0.345634, -0.00601894, -0.250208, 0, -0.238596, 47.1531, -0.747177, 18.8899, -0.190037, -0.0363594, -0.259359, 0.0444795, 0.311309, -0.0762333, 0.25809, -0.0804235, -0.177833, 210.833, -35.7228, -18.9498, -0.000624992, 0.000609938, -0.251476, 0.000527179, 0.251477, 0.000608628, 0.251477, -0.000525664, -0.000626268, 165.298, -25.8802, -69.169, -0.371866, 0.0432198, -0.0242835, 0.0398677, 0.369943, 0.047908, 0.0294652, 0.0449072, -0.371291, 211.846, -35.3042, -33.2982, -0.294179, 0.0382855, -0.0233523, 0.0343472, 0.291985, 0.0460153, 0.0288336, 0.0427944, -0.293069, 157.602, -33.7593, -26.5369, 0.22329, 0.000753507, 0.214281, 0.00809643, 0.309224, -0.0095242, -0.21413, 0.0124778, 0.223089, 311.418, -38.9673, -95.803, -0.271213, -0.0305635, 0.214945, 0.0152595, 0.340414, 0.0676581, -0.216571, 0.0622603, -0.26441, 112.717, -16.8436, -24.311, -0.117822, -0.0237225, -0.190831, 0.011541, 0.222526, -0.0347882, 0.191953, -0.0279403, -0.115042, 66.5517, -79.6942, -191.729, -0.0180512, -0.00126434, 0.319647, 0.000970925, 0.320155, 0.00132117, -0.319648, 0.00104386, -0.0180471, 211.349, -25.8859, -92.7378, 0.303598, 0.00335497, 0.0114834, -0.00311404, 0.30375, -0.00641388, -0.0115511, 0.00629121, 0.303549, 89.0451, -77.5334, -171.543, 0.128081, 0.0532998, -0.236035, -0.0284445, 0.268525, 0.0452015, 0.2403, 0.00337659, 0.131158, 255.275, -33.8471, -82.573, -0.08036, 0.280661, -0.216874, 0.248087, 0.203401, 0.1713, 0.253491, -0.110091, -0.236399, 150.06, -40.4309, -104.33, -0.242334, 0.0195574, 0.099308, 0.0125151, 0.261486, -0.0209564, -0.100439, -0.014605, -0.242217, 90.8507, -79.4845, -222.121, 0.176039, 0.000496618, -0.1926, -0.000419505, 0.26093, 0.000289373, 0.1926, 0.000114421, 0.176039, 162.522, -75.9056, -137.207, 0.116345, -0.0199836, 0.214851, 0.0112957, 0.244322, 0.016608, -0.215483, 0.00201774, 0.116875, 242.315, -75.2849, -195.076, 0.325968, 0.0107479, 0.173828, -0.00602172, 0.369347, -0.0115449, -0.174056, 0.00735034, 0.325941, 139.921, -80.1833, -206, 0.0870803, 0.00828051, -0.308987, 0.00767417, 0.320858, 0.0107614, 0.309002, -0.0103021, 0.0868086, 110.136, -75.5183, -131.877, 0.202147, 0.104217, 0.109561, -0.0757829, 0.228106, -0.0771552, -0.13085, 0.0288928, 0.213943, 146.676, -14.044, 26.7141, -0.175816, 0.00661261, -0.186574, 0.0105221, 0.256229, -0.000834078, 0.186394, -0.00822704, -0.175939, 121.107, -75.8627, -133.786, -0.327015, 0.0203714, -0.194877, 0.0145384, 0.380634, 0.0153931, 0.195399, 0.00577245, -0.327287, 32.3619, -72.4718, -105.514, -0.156803, 0.00165042, -0.176748, 0.0166064, 0.235365, -0.0125347, 0.175974, -0.0207405, -0.15631, 96.6837, -78.6784, -188.442, -0.0100702, -0.00499916, 0.27967, -0.000847405, 0.279851, 0.00497187, -0.279714, -0.000667841, -0.0100837, 52.5819, -72.9062, -98.4169, -0.13484, -0.0507168, 0.14138, -0.148929, 0.0698202, -0.116994, -0.0195079, -0.18247, -0.0840624, 62.4695, -37.8256, -51.9229, -0.187873, 0.0355714, -0.141341, 0.0382748, 0.234537, 0.00815049, 0.140633, -0.0163115, -0.191037, 76.5958, -7.66147, -11.0319, 0.00634668, -0.00641433, 0.207728, 0.00300301, 0.207806, 0.00632499, -0.207805, 0.00280711, 0.00643572, 59.4274, -6.58522, -20.3157, 0.0769247, -0.00234724, 0.312059, -0.0248624, 0.320332, 0.00853823, -0.311076, -0.0261827, 0.0764854, 132.448, -77.953, -179.788, 0.0975898, 0.039376, 0.325188, 0.0282138, 0.337042, -0.0492784, -0.326346, 0.0409134, 0.0929833, 217.461, -36.4212, -29.4998, -0.280478, 0, -0.145779, 0, 0.316101, 0, 0.145779, 0, -0.280478, 28.1302, -0.453506, -41.8848, 0.115078, -0.0142701, -0.193439, 0.020088, 0.22459, -0.00461764, 0.192922, -0.0148732, 0.115868, 244.706, -73.7538, -160.695, -0.0556074, -0.0181231, 0.204576, -0.000627847, 0.211956, 0.0186063, -0.205376, 0.00425904, -0.0554476, 233.471, -73.9556, -126.286, 0.016051, -0.00929812, 0.300832, 0.00456066, 0.301232, 0.00906716, -0.300941, 0.00406915, 0.0161826, 61.3945, -6.58597, -15.7658, -0.246305, 0, 0.181144, 0, 0.305744, 0, -0.181144, 0, -0.246305, 19.3228, -0.453491, 17.5019, 0.113364, 0.000634399, 0.235719, -0.000767681, 0.261562, -0.000334752, -0.235719, -0.000546745, 0.113365, 159.516, -25.8878, -79.5121, 0.0705468, 0, -0.264948, 0, 0.274179, 0, 0.264948, 0, 0.0705468, 32.0915, -0.453506, -32.5305, -0.0373102, 0.251672, -0.00313512, 0.251136, 0.0374355, 0.0164292, 0.0167116, -0.000685283, -0.253892, 48.1419, -32.9419, -47.3576, -0.0394043, 0.0167403, 0.268969, 0.0173495, 0.271423, -0.0143513, -0.268931, 0.0150574, -0.0403358, 29.6098, -71.6575, -126.749, -0.358764, -0.00261694, -0.0916095, -0.00390784, 0.370234, 0.00472781, 0.0915635, 0.00554752, -0.358743, 223.811, -25.7619, -95.5501, -0.196783, 0.0190461, 0.169066, 0.0343559, 0.257622, 0.0109659, -0.166631, 0.0306239, -0.197398, 76.0136, -74.6733, -166.595, -0.0214453, -0.00084195, -0.303466, 0.000299802, 0.304223, -0.000865236, 0.303467, -0.000360048, -0.0214444, 149.099, -25.8938, -85.4799, -0.270015, -0.0153504, 0.179393, -0.0159232, 0.324127, 0.00376801, -0.179343, -0.00566677, -0.270425, 74.1548, -19.5342, -28.3382, -0.042135, -0.00256952, -0.2902, -0.00274031, 0.293233, -0.0021985, 0.290199, 0.00239589, -0.042156, 89.4848, -25.8343, -42.7101, 0.104506, -0.00691877, 0.372946, 0.00097671, 0.38731, 0.00691157, -0.373008, -0.000924284, 0.104507, 61.3969, -72.6781, -68.8578, 0.258771, 0.0138806, -0.017855, -0.0141173, 0.259356, -0.00297414, 0.0176685, 0.00393323, 0.259126, 37.0461, -72.6882, -107.774, 0.0973713, 0.0043235, 0.181213, 0.00736459, 0.205439, -0.00885874, -0.181114, 0.0106781, 0.0970638, 167.74, -32.2694, -23.1745, 0.260621, -0.00107995, 0.032376, 0.00115547, 0.262623, -0.000541166, -0.0323734, 0.000679478, 0.260623, 124.254, -75.9041, -142.562, -0.299899, -0.00124568, 0.0427205, -0.0011227, 0.302926, 0.000951597, -0.0427239, 0.00078375, -0.2999, 128.962, -75.8814, -143.825, -0.21072, 0.00845673, -0.262157, 0.0713266, 0.325453, -0.0468332, 0.252409, -0.0849077, -0.205623, 191.509, -79.2109, -187.471, 0.108606, 0.0301829, 0.236505, 0.0161871, 0.258353, -0.0404045, -0.237873, 0.0313614, 0.105231, 199.896, -31.3952, -53.9985, -0.224643, -0.01946, -0.0849473, -0.0195021, 0.24014, -0.00343868, 0.0849377, 0.00366945, -0.225458, 249.428, -72.408, -137.46, 0.0175026, 0.0089559, 0.258802, -0.00496919, 0.259357, -0.00863902, -0.25891, -0.00437234, 0.0176611, 70.808, -72.9112, -66.5375, -0.204769, -0.00147449, -0.323141, -0.000351633, 0.382558, -0.00152278, 0.323144, -0.000518066, -0.204769, 111.198, -25.9861, -65.7661, -0.167039, 0.00624265, -0.198503, 0.00401941, 0.259433, 0.00477651, 0.19856, 0, -0.167088, 39.0251, -0.55159, 46.683, -0.18986, -0.0103501, -0.209026, -0.00541655, 0.282372, -0.009062, 0.209212, -0.002082, -0.189925, 300.469, -38.1547, -131.473, 0.153268, 0, -0.268025, 0, 0.308753, 0, 0.268025, 0, 0.153268, 16.6501, -0.453491, 12.5012, 0.0327584, 0.000619708, 0.221511, -0.000289358, 0.22392, -0.000583656, -0.221512, -0.000200858, 0.0327591, 180.722, -75.967, -174.857, -0.203348, 0.00418578, 0.150127, -0.000236321, 0.252689, -0.00736548, -0.150185, -0.00606509, -0.203258, 68.1091, -6.48772, -12.2973, -0.0552184, 0.375117, 0.00808322, 0.370094, 0.0557975, -0.0611918, -0.061715, -0.00102141, -0.374189, 47.9715, -31.6991, -42.0377, -0.251506, 0.00906281, -0.280404, 0.00605129, 0.376672, 0.00674659, 0.280486, 0, -0.251579, 53.4627, -0.899017, 57.3542, -0.155722, 0.0769012, 0.178959, -0.12941, 0.130396, -0.16864, -0.145579, -0.198174, -0.0415181, 164.648, -21.0795, 5.01376, 0.280811, 0.0258936, -0.0711748, -0.0215156, 0.289332, 0.0203729, 0.0726183, -0.0144048, 0.281265, 274.791, -74.5808, -148.27, 0.095092, 0.0202106, 0.253384, -0.02126, 0.270219, -0.0135748, -0.253298, -0.0150928, 0.0962636, 107.707, -79.5689, -201.06, 0.232907, 0, -0.0345007, 0, 0.235449, 0, 0.0345007, 0, 0.232907, 22.7362, -0.453506, -23.5701, -0.198254, 0.11323, 0.274442, 0.00452141, 0.331122, -0.133349, -0.296849, -0.0705789, -0.185321, 273.034, -38.6737, -87.3342, -0.118011, 0.00548235, -0.329439, 0.0255428, 0.349032, -0.00334148, 0.328493, -0.0251703, -0.118091, 94.3826, -79.2698, -196.924, -0.0233233, -0.00675346, 0.217566, 0.0022203, 0.218793, 0.00702955, -0.21766, 0.00295552, -0.0232416, 61.0773, -6.6322, -13.066, -0.227314, 0.00093014, -0.247556, 0.000851162, 0.336089, 0.000481219, 0.247557, -0.000301475, -0.227316, 192.447, -76.0014, -176.8, 0.209381, -0.0179475, 0.0153581, 0.0182054, 0.209901, -0.00290915, -0.0150514, 0.00421776, 0.210129, 213.269, -75.2067, -149.986, 0.0228932, -0.0187527, 0.271813, -0.0127528, 0.272398, 0.0198672, -0.272161, -0.0143413, 0.021933, 87.5824, -73.0645, -82.1363, -0.363053, 0, 0.062507, 0, 0.368395, 0, -0.062507, 0, -0.363053, 8.91411, -0.453491, 42.5794, 0.00334219, -0.0176121, -0.205994, -0.00386785, 0.20598, -0.0176737, 0.206709, 0.00413896, 0.00299992, 215.53, -75.2077, -140.314, -0.193631, 0.00793065, -0.266748, 0.00465879, 0.329617, 0.00641801, 0.266825, 0, -0.193687, 88.026, -1.73076, 59.1169, -0.283847, 0.03512, 0.1055, 0.0454784, 0.300612, 0.0222878, -0.101467, 0.0364913, -0.285142, 213.799, -33.8337, -47.2909, -0.0897786, 0.0348584, 0.235207, 0.0124307, 0.251759, -0.0325667, -0.237451, 0, -0.0906351, 132.744, -10.8252, 48.9324, 0.193783, 0.0447182, -0.132244, -0.0554668, 0.232284, -0.00273116, 0.128107, 0.0329288, 0.198857, 203.455, -77.6578, -182.181, -0.245189, 0.0246025, -0.251844, 0.0220339, 0.351421, 0.0128785, 0.252081, -0.0067871, -0.246084, 253.799, -62.1947, -123.612, 0.228002, 0.00258137, -0.201871, -0.0286735, 0.30184, -0.0285255, 0.199841, 0.0403634, 0.226226, 274.519, -38.924, -90.9047, 0.129205, 0, -0.169717, 0, 0.213302, 0, 0.169717, 0, 0.129205, 25.4499, -0.453506, -64.9291, 0.320972, -0.00758382, 0.177477, -0.0053472, 0.365937, 0.0253074, -0.177559, -0.0247294, 0.320062, 111.274, -79.8597, -202.412, 0.136197, 0.000617822, -0.176878, -0.000218269, 0.223239, 0.000611688, 0.176879, -0.000200247, 0.136197, 199.44, -75.9861, -138.279, 0.151248, 0.0019676, -0.217629, -0.0139935, 0.264561, -0.00733324, 0.217188, 0.0156755, 0.151082, 170.825, -53.3683, -111.144, -0.147476, 0.0226126, -0.264465, 0.0257855, 0.302334, 0.0114715, 0.264174, -0.0168866, -0.148758, 95.8505, -79.5404, -216.426, 0.281034, -0.0289694, 0.189356, 0.0278379, 0.338806, 0.0105177, -0.189526, 0.00680798, 0.282327, 244.58, -72.9347, -129.818, 0.290995, 0.0442751, 0.0574115, -0.0325998, 0.29202, -0.0599675, -0.0647581, 0.0519477, 0.28817, 322.449, -39.3888, -155.536, 0.144155, 0.039144, 0.32982, -0.0156768, 0.359947, -0.0358677, -0.331764, 0, 0.145005, 122.158, -4.63016, 6.37987, -0.221743, 0.00686104, 0.265836, 0.00119188, 0.346152, -0.00793976, -0.265922, -0.0041697, -0.221707, 267.868, -73.9379, -166.688, -0.0554556, -0.0421332, -0.305822, 0.00833483, 0.3104, -0.0442752, 0.308598, -0.0159549, -0.0537609, 197.317, -77.9809, -208.447, -0.371142, -0.00151268, -0.127605, -0.00125768, 0.392465, -0.000994435, 0.127607, -0.000531483, -0.371144, 106.909, -25.99, -56.4868, 0.174385, -0.00071518, 0.214874, 0.000136155, 0.276732, 0.000810569, -0.214875, -0.000405065, 0.174384, 130.035, -25.8889, -43.6021, 0.106812, 0.00885864, 0.27382, -0.0120578, 0.293762, -0.00480029, -0.273697, -0.00948459, 0.107071, 89.0406, -75.8204, -158.245, -0.179985, -0.000200087, -0.178921, -0.000314274, 0.253786, 3.23345e-05, 0.178921, 0.000244497, -0.179985, 165.339, -25.8892, -86.1728, -0.254799, 0.0764682, 0.162194, 0.052434, 0.301276, -0.0596685, -0.171479, -0.0215005, -0.259248, 122.858, -2.93172, -0.0855423, -0.0768274, 0.0240154, 0.268886, 0.0156393, 0.27949, -0.0204939, -0.269503, 0.00937275, -0.0778408, 223.603, -36.7774, -20.3652, 0.213621, -0.0008357, 0.0371281, 0.000773076, 0.216823, 0.000432393, -0.0371295, -0.000293625, 0.213622, 120.872, -25.9248, -48.0322, 0.230401, -0.00100372, -0.0195543, 0.000993583, 0.23123, -0.000161985, 0.0195548, 7.73803e-05, 0.230403, 290.133, -38.3715, -116.375, -0.0602687, -0.0327028, -0.37777, -0.0127682, 0.38247, -0.0310727, 0.378968, 0.00768536, -0.0611251, 222.651, -74.8097, -129.82, 0.211054, 0.0349287, 0.242107, -0.0229521, 0.321185, -0.026329, -0.243534, 0, 0.212299, 126.08, -5.05661, 27.4305, 0.229968, 0.0354128, -0.200872, -0.050845, 0.303119, -0.0047713, 0.197531, 0.0367955, 0.23263, 183.682, -33.8333, -18.3095, 0.206347, 0.0190966, 0.172407, 0.006121, 0.266963, -0.0368962, -0.173353, 0.0321576, 0.203918, 136.829, -33.5594, -11.7265, -0.207951, 0.00819313, 0.114317, 0.00525067, 0.237267, -0.00745369, -0.11449, -0.00399995, -0.207978, 79.9699, -73.914, -107.258, 0.130317, 0.0173256, 0.299034, -0.00250607, 0.326161, -0.0178051, -0.299525, 0.00480909, 0.130253, 29.6919, -72.225, -112.586, -0.00634643, -0.00124481, 0.302648, 0.000756939, 0.302714, 0.00126095, -0.30265, 0.000783202, -0.00634325, 126.506, -75.8474, -160.845, 0.206843, -0.000623999, 0.0897396, 0.000466238, 0.22547, 0.000493157, -0.0897405, -0.000266844, 0.206843, 148.869, -25.8856, -78.0734, -0.288222, 0.0074378, 0.0086704, 0.00715227, 0.288204, -0.00947611, -0.0089074, -0.00925369, -0.288162, 102.321, -75.3977, -134.4, -0.284482, 0.0439437, -0.190798, 0.0357038, 0.342537, 0.0256567, 0.192511, 0.00140911, -0.28671, 72.7958, -23.9404, -32.8894, 0.0431403, 0.110079, 0.231136, -0.171351, 0.186566, -0.0568711, -0.190211, -0.143101, 0.103654, 161.503, -27.2968, -1.54845, -0.211875, 0, 0.219609, 0, 0.305154, 0, -0.219609, 0, -0.211875, 14.5642, -0.453491, 63.9626, 0.106911, -0.00106621, 0.236215, 0.00105079, 0.259282, 0.000694739, -0.236215, 0.000670833, 0.106914, 122.049, -75.8545, -165.173, -0.181246, 0.00169354, -0.342295, -0.0139091, 0.386962, 0.00927941, 0.342017, 0.0166344, -0.181016, 166.289, -36.0214, -2.44073, 0.0888007, 0.00638444, -0.250053, -0.00213656, 0.265353, 0.00601632, 0.250125, 0, 0.0888264, 71.4721, -1.3324, 57.0548, 0.333187, 0.00741972, -0.170694, -0.00454668, 0.374339, 0.00739684, 0.170795, -0.00450924, 0.333187, 256.509, -73.7285, -167.992, 0.0808187, -0.0147141, 0.18616, -0.0038292, 0.202673, 0.0176817, -0.186702, -0.0105262, 0.0802217, 98.8892, -73.4452, -104.624, 0.201729, -0.0173463, 0.021876, 0.0176829, 0.202871, -0.00219778, -0.0216049, 0.0040765, 0.202462, 222.869, -74.3845, -150.052, 0.201452, 0.0137855, -0.217721, -0.0330069, 0.294864, -0.0118706, 0.215645, 0.0322541, 0.201574, 201.143, -30.3516, -69.8214, 0.0492422, 0, -0.337037, 0, 0.340615, 0, 0.337037, 0, 0.0492422, 0.590487, -0.453506, -14.0313, -0.150096, 0.154667, -0.0195749, 0.151881, 0.151199, 0.0300759, 0.0351713, 0.00712165, -0.213415, 14.9639, -68.2544, -209.321, -0.0869118, 0, -0.184798, 0, 0.204216, 0, 0.184798, 0, -0.0869118, 13.2697, -0.453506, -36.049, -0.186152, 0.0054792, 0.131179, 0.00447885, 0.227729, -0.0031562, -0.131217, 0, -0.186206, 56.4905, -0.971893, 58.8469, 0.0138998, 0.252124, -0.188082, 0.0746179, 0.180249, 0.247138, 0.305571, -0.0554839, -0.0517936, 195.546, -79.018, -183.35, -0.178498, -0.00383372, 0.107944, -0.0023467, 0.208591, 0.00352774, -0.107987, 0.00180404, -0.178504, 99.3426, -5.26454, -6.40209, -0.241547, 0.000585874, -0.190819, 0.000376052, 0.307826, 0.0004691, 0.190819, 0.000134985, -0.241547, 182.956, -75.9467, -133.789, 0.313263, -0.00313539, 0.129229, -0.0205679, 0.333261, 0.0579444, -0.12762, -0.0614065, 0.307873, 40.3378, -74.7617, -85.599, -0.273633, -0.0021328, -0.102035, 0.00632069, 0.291067, -0.0230346, 0.101861, -0.0237906, -0.27267, 131.217, -78.5121, -186.517, -0.125859, 0.000346728, 0.247661, 0.0128124, 0.277444, 0.00612271, -0.24733, 0.014196, -0.12571, 277.354, -74.4765, -152.895, -0.310269, -0.0253861, 0.008435, -0.025306, 0.310373, 0.00326071, -0.00867244, 0.00256323, -0.311289, 261.126, -73.7582, -193.642, 0.246211, -0.000657986, 0.064826, 0.000541411, 0.254602, 0.000527924, -0.0648271, -0.000372671, 0.246211, 128.267, -25.9278, -66.8263, -0.231008, 0.000855545, -0.0198954, 0.0010342, 0.231853, -0.00203801, 0.0198869, -0.00211922, -0.231, 106.381, -25.8491, -38.4901, 0.271287, -0.00569829, -0.0484716, 0.00886557, 0.274956, 0.0172954, 0.0479934, -0.0185811, 0.270795, 118.321, -80.0825, -207.869, -0.0534878, 0, -0.37188, 0, 0.375707, 0, 0.37188, 0, -0.0534878, 24.2254, -0.453491, 16.9017, -0.283984, -0.0203421, -0.0831061, -0.0151166, 0.295485, -0.0206713, 0.0842135, -0.0155568, -0.28396, 95.0267, -73.445, -99.0956, -0.0234913, 0.00758258, -0.293025, 0.0100124, 0.293814, 0.00680032, 0.292952, -0.00943383, -0.0237296, 97.3263, -75.6316, -145.701, 0.0230534, 0.0250577, 0.259373, 0.00737563, 0.260219, -0.025795, -0.260476, 0.00958607, 0.0222253, 89.5352, -0.928162, -4.9643, -0.191368, 0.0228886, -0.246279, 0.0141114, 0.31189, 0.0180213, 0.246938, -8.51979e-05, -0.191888, 184.501, -34.0246, -1.18034, -0.188811, 0.000900541, 0.0822733, 0.00435827, 0.205768, 0.00774962, -0.0821627, 0.00884535, -0.188654, 170.657, -35.9591, -4.3352, -0.2238, 0.013852, 0.130069, 0.01395, 0.258822, -0.00356115, -0.130058, 0.00392513, -0.2242, 31.447, -72.4566, -103.287, -0.27255, 0.0197057, -0.0520147, 0.0129812, 0.275478, 0.0363447, 0.0540863, 0.0331833, -0.270834, 141.894, -31.8931, -28.5669, 0.234097, -0.0298502, -0.28446, 0.0146055, 0.368357, -0.0266345, 0.285648, 0.00562867, 0.234485, 237.453, -73.2146, -148.181, -0.0166774, 0.0252016, 0.216657, 0.0282034, 0.215715, -0.0229209, -0.216287, 0.0261855, -0.0196948, 195.341, -33.9875, -28.2603, -0.242556, 0.0180585, 0.0414499, 0.0177891, 0.246072, -0.00310832, -0.0415662, -6.72188e-05, -0.243207, 221.901, -36.7773, -30.6229, 0.282107, 0.0010033, 0.227682, -0.000984975, 0.362524, -0.000377066, -0.227682, -0.000325186, 0.282109, 136.268, -75.8439, -175.936, 0.159741, 0.0255403, -0.236915, -0.00243303, 0.285384, 0.0291249, 0.238276, -0.0142083, 0.159127, 265.81, -73.8758, -150.253, 0.307589, 0.00058886, -0.0333761, -0.000600059, 0.309395, -7.13581e-05, 0.0333759, 0.000135673, 0.30759, 174.693, -75.9331, -128.543, -0.324552, 0.0321714, -0.0617622, 0.0295939, 0.330206, 0.0164896, 0.0630379, 0.0106163, -0.325726, 260.212, -34.7712, -57.9605, 0.211796, -0.0114686, -0.0109835, 0.0109492, 0.211868, -0.0100892, 0.0115013, 0.00949473, 0.211866, 39.5195, -8.26018, -14.4952, -0.180896, 0.00125591, -0.124121, -0.00187432, 0.219324, 0.00495088, 0.124113, 0.00514267, -0.180832, 240.728, -32.8611, -102.146, 0.285217, 0.0191971, 0.222002, -0.0118698, 0.361393, -0.016001, -0.222514, 0.00532858, 0.285414, 27.4097, -72.1595, -108.804, -0.311253, 0.00136789, -0.0314931, 7.12117e-06, 0.312553, 0.0135052, 0.0315228, 0.0134358, -0.310963, 167.8, -35.9464, -4.33858 ) [sub_resource type="Curve3D" id=9] @@ -110,7 +110,7 @@ _data = { [sub_resource type="MultiMesh" id=10] transform_format = 1 instance_count = 1000 -mesh = SubResource( 7 ) +mesh = SubResource( 47 ) transform_array = PoolVector3Array( -0.137549, 0, -0.266494, 0, 0.299898, 0, 0.266494, 0, -0.137549, 6.76634, -4.27573, -19.1349, 0.23109, 0, -0.184142, 0, 0.295484, 0, 0.184142, 0, 0.23109, -3.9396, -4.27573, -5.54847, -0.188978, 0, 0.282428, 0, 0.339821, 0, -0.282428, 0, -0.188978, 31.0111, -4.27573, 31.166, -0.116023, 0, 0.204215, 0, 0.234873, 0, -0.204215, 0, -0.116023, 29.8644, -4.27573, -16.371, -0.301891, 0, -0.0816728, 0, 0.312744, 0, 0.0816728, 0, -0.301891, 29.0692, -4.27573, 29.7484, 0.318491, 0, 0.162829, 0, 0.357701, 0, -0.162829, 0, 0.318491, -11.4623, -4.27573, 73.3511, 0.203594, 0, 0.0142934, 0, 0.204095, 0, -0.0142934, 0, 0.203594, -5.96404, -4.27573, -16.941, 0.175108, 0, 0.219512, 0, 0.2808, 0, -0.219512, 0, 0.175108, -5.1491, -4.27573, 26.4897, -0.153794, 0, -0.266, 0, 0.30726, 0, 0.266, 0, -0.153794, 2.20389, -4.27573, 17.2732, 0.24781, 0, -0.0520686, 0, 0.253221, 0, 0.0520686, 0, 0.24781, 15.5203, -4.27573, 42.8948, 0.00175738, 0, 0.219026, 0, 0.219033, 0, -0.219026, 0, 0.00175738, -1.89767, -4.27573, -39.1818, -0.120941, 0, 0.248248, 0, 0.276141, 0, -0.248248, 0, -0.120941, -12.2113, -4.27573, 43.2501, 0.0562251, 0, 0.215646, 0, 0.222855, 0, -0.215646, 0, 0.0562251, -6.08189, -4.27573, 19.2486, 0.0994287, 0, 0.270583, 0, 0.288273, 0, -0.270583, 0, 0.0994287, -15.744, -4.27573, 67.1614, 0.0343151, 0, 0.269124, 0, 0.271303, 0, -0.269124, 0, 0.0343151, -13.6667, -4.27573, 3.67323, 0.284973, 0, 0.181426, 0, 0.337824, 0, -0.181426, 0, 0.284973, 27.6593, -4.27573, 11.971, -0.205881, 0, -0.171542, 0, 0.267981, 0, 0.171542, 0, -0.205881, 26.2019, -4.27573, -21.5813, -0.213471, 0, 0.212334, 0, 0.301091, 0, -0.212334, 0, -0.213471, -11.5653, -4.27573, 56.9528, -0.124647, 0, 0.202275, 0, 0.237596, 0, -0.202275, 0, -0.124647, 17.802, -4.27573, 8.11943, 0.13071, 0, -0.182125, 0, 0.224176, 0, 0.182125, 0, 0.13071, 1.06819, -4.27573, -42.1616, -0.161036, 0, -0.204924, 0, 0.260627, 0, 0.204924, 0, -0.161036, -1.99133, -4.27573, 71.7981, -0.220829, 0, 0.14717, 0, 0.265376, 0, -0.14717, 0, -0.220829, -1.69593, -4.27573, -27.003, -0.289358, 0, -0.259477, 0, 0.38866, 0, 0.259477, 0, -0.289358, 30.1524, -4.27573, -28.5574, -0.328508, 0, -0.129859, 0, 0.353243, 0, 0.129859, 0, -0.328508, 15.8796, -4.27573, 62.7616, 0.246288, 0, 0.281816, 0, 0.37427, 0, -0.281816, 0, 0.246288, 25.9351, -4.27573, -14.9143, -0.306789, 0, 0.181484, 0, 0.35645, 0, -0.181484, 0, -0.306789, 29.961, -4.27573, -31.9628, 0.027783, 0, -0.205484, 0, 0.207354, 0, 0.205484, 0, 0.027783, 22.009, -4.27573, -16.2845, -0.105143, 0, 0.206605, 0, 0.23182, 0, -0.206605, 0, -0.105143, -10.1267, -4.27573, 18.6591, -0.131694, 0, 0.370059, 0, 0.392793, 0, -0.370059, 0, -0.131694, 11.0161, -4.27573, 12.066, 0.111316, 0, -0.239896, 0, 0.264464, 0, 0.239896, 0, 0.111316, 19.903, -4.27573, 29.4633, -0.292017, 0, -0.0867477, 0, 0.304629, 0, 0.0867477, 0, -0.292017, -9.743, -4.27573, 32.474, -0.266858, 0, 0.0818084, 0, 0.279116, 0, -0.0818084, 0, -0.266858, -11.0217, -4.27573, -17.7472, -0.350635, 0, -0.129465, 0, 0.373773, 0, 0.129465, 0, -0.350635, 21.1181, -4.27573, 47.8516, -0.329452, 0, -0.15551, 0, 0.364311, 0, 0.15551, 0, -0.329452, 17.0451, -4.27573, 9.8383, -0.228466, 0, 0.149677, 0, 0.27313, 0, -0.149677, 0, -0.228466, 16.7048, -4.27573, -60.8096, -0.366876, 0, 0.0230659, 0, 0.367601, 0, -0.0230659, 0, -0.366876, -13.9542, -4.27573, -29.765, -0.321102, 0, 0.111582, 0, 0.339936, 0, -0.111582, 0, -0.321102, -6.92184, -4.27573, -44.925, -0.298796, 0, 0.0637683, 0, 0.305524, 0, -0.0637683, 0, -0.298796, 22.4163, -4.27573, -5.42767, -0.13344, 0, -0.239762, 0, 0.274394, 0, 0.239762, 0, -0.13344, -10.0098, -4.27573, 4.82684, 0.0324568, 0, -0.330018, 0, 0.33161, 0, 0.330018, 0, 0.0324568, 26.6587, -4.27573, -62.3892, -0.261228, 0, -0.104563, 0, 0.281378, 0, 0.104563, 0, -0.261228, 21.2881, -4.27573, 32.9025, 0.0462143, 0, 0.360664, 0, 0.363613, 0, -0.360664, 0, 0.0462143, -6.05405, -4.27573, 26.7109, -0.111222, 0, -0.17872, 0, 0.210502, 0, 0.17872, 0, -0.111222, 10.9809, -4.27573, -38.8209, 0.0629387, 0, -0.259057, 0, 0.266593, 0, 0.259057, 0, 0.0629387, 9.48964, -4.27573, 30.1454, 0.272597, 0, -0.227379, 0, 0.354979, 0, 0.227379, 0, 0.272597, 27.9602, -4.27573, -27.4972, 0.203312, 0, -0.172031, 0, 0.266328, 0, 0.172031, 0, 0.203312, 28.6774, -4.27573, -25.6816, -0.243881, 0, -0.054507, 0, 0.249898, 0, 0.054507, 0, -0.243881, 5.37108, -4.27573, -19.2243, 0.0391535, 0, -0.256876, 0, 0.259843, 0, 0.256876, 0, 0.0391535, 13.0932, -4.27573, -35.9682, -0.29487, 0, -0.243586, 0, 0.382469, 0, 0.243586, 0, -0.29487, 1.20262, -4.27573, -39.3066, -0.273006, 0, 0.204174, 0, 0.340909, 0, -0.204174, 0, -0.273006, 25.649, -4.27573, 32.9033, -0.183688, 0, -0.114845, 0, 0.216635, 0, 0.114845, 0, -0.183688, 16.424, -4.27573, 42.4885, 0.150625, 0, -0.340241, 0, 0.372091, 0, 0.340241, 0, 0.150625, 21.1292, -4.27573, -56.5665, 0.16375, 0, -0.31978, 0, 0.359268, 0, 0.31978, 0, 0.16375, 11.9234, -4.27573, 40.0484, 0.257976, 0, 0.124528, 0, 0.286459, 0, -0.124528, 0, 0.257976, 4.09913, -4.27573, -47.292, 0.312539, 0, 0.0646137, 0, 0.319148, 0, -0.0646137, 0, 0.312539, -5.67095, -4.27573, -52.1363, 0.159274, 0, 0.266298, 0, 0.310295, 0, -0.266298, 0, 0.159274, 25.5723, -4.27573, 12.1361, -0.383279, 0, 0.0980878, 0, 0.395632, 0, -0.0980878, 0, -0.383279, 2.57076, -4.27573, -1.87125, -0.149452, 0, -0.196297, 0, 0.246715, 0, 0.196297, 0, -0.149452, -9.25235, -4.27573, -29.9833, 0.208294, 0, -0.0353684, 0, 0.211275, 0, 0.0353684, 0, 0.208294, 19.2294, -4.27573, -10.0448, -0.0623698, 0, 0.274929, 0, 0.281914, 0, -0.274929, 0, -0.0623698, 0.916626, -4.27573, -62.1464, -0.219381, 0, 0.148991, 0, 0.265191, 0, -0.148991, 0, -0.219381, 28.435, -4.27573, -57.3958, -0.0391176, 0, -0.243448, 0, 0.246571, 0, 0.243448, 0, -0.0391176, 20.1397, -4.27573, 37.8277, -0.291824, 0, 0.105386, 0, 0.31027, 0, -0.105386, 0, -0.291824, -5.92091, -4.27573, -43.9748, -0.158101, 0, -0.227625, 0, 0.277145, 0, 0.227625, 0, -0.158101, 24.8491, -4.27573, 59.6573, 0.225673, 0, 0.317922, 0, 0.389876, 0, -0.317922, 0, 0.225673, -9.65821, -4.27573, 59.257, -0.285366, 0, 0.0977363, 0, 0.301639, 0, -0.0977363, 0, -0.285366, -6.48381, -4.27573, 56.309, -0.378844, 0, -0.0532704, 0, 0.382571, 0, 0.0532704, 0, -0.378844, 11.385, -4.27573, -21.7736, -0.0607265, 0, 0.209125, 0, 0.217764, 0, -0.209125, 0, -0.0607265, -8.62889, -4.27573, 14.9678, -0.0508014, 0, -0.237876, 0, 0.24324, 0, 0.237876, 0, -0.0508014, 20.7916, -4.27573, -52.0872, -0.235942, 0, -0.0587354, 0, 0.243143, 0, 0.0587354, 0, -0.235942, 8.89022, -4.27573, 41.9579, -0.131951, 0, 0.37665, 0, 0.399094, 0, -0.37665, 0, -0.131951, -13.7819, -4.27573, 42.9514, -0.162302, 0, -0.289738, 0, 0.332099, 0, 0.289738, 0, -0.162302, -9.40084, -4.27573, -63.1715, -0.247069, 0, -0.17689, 0, 0.303863, 0, 0.17689, 0, -0.247069, -4.04769, -4.27573, 64.6455, 0.169554, 0, 0.122382, 0, 0.209108, 0, -0.122382, 0, 0.169554, -13.5878, -4.27573, 54.7027, 0.312003, 0, 0.0183495, 0, 0.312542, 0, -0.0183495, 0, 0.312003, -6.66708, -4.27573, 42.1406, 0.22643, 0, -0.0569555, 0, 0.233483, 0, 0.0569555, 0, 0.22643, 9.45741, -4.27573, 40.4125, 0.383189, 0, 0.071463, 0, 0.389795, 0, -0.071463, 0, 0.383189, 23.6194, -4.27573, 42.3746, 0.0518034, 0, -0.221773, 0, 0.227743, 0, 0.221773, 0, 0.0518034, -8.79158, -4.27573, 8.96598, 0.0943721, 0, 0.333731, 0, 0.346818, 0, -0.333731, 0, 0.0943721, 14.0184, -4.27573, 59.8339, -0.31543, 0, 0.240805, 0, 0.396841, 0, -0.240805, 0, -0.31543, 18.1432, -4.27573, 46.132, 0.04733, 0, -0.22089, 0, 0.225903, 0, 0.22089, 0, 0.04733, 29.3496, -4.27573, 49.9494, 0.338421, 0, 0.0732774, 0, 0.346263, 0, -0.0732774, 0, 0.338421, 23.4746, -4.27573, -8.42073, 0.249647, 0, 0.062411, 0, 0.25733, 0, -0.062411, 0, 0.249647, 12.0497, -4.27573, -17.4285, 0.211216, 0, -0.20696, 0, 0.295711, 0, 0.20696, 0, 0.211216, 17.3291, -4.27573, -34.0643, -0.0103787, 0, 0.246577, 0, 0.246795, 0, -0.246577, 0, -0.0103787, 22.2869, -4.27573, 18.085, 0.357511, 0, 0.132866, 0, 0.381402, 0, -0.132866, 0, 0.357511, 19.6688, -4.27573, 24.0306, -0.0849694, 0, 0.185551, 0, 0.204081, 0, -0.185551, 0, -0.0849694, -3.61955, -4.27573, 11.0782, 0.0177697, 0, 0.302158, 0, 0.30268, 0, -0.302158, 0, 0.0177697, 2.9849, -4.27573, -15.2223, 0.250492, 0, -0.271889, 0, 0.369689, 0, 0.271889, 0, 0.250492, -5.74989, -4.27573, -33.7457, 0.0331397, 0, 0.268138, 0, 0.270179, 0, -0.268138, 0, 0.0331397, 9.33002, -4.27573, -56.0505, -0.311981, 0, -0.19605, 0, 0.368467, 0, 0.19605, 0, -0.311981, 17.5446, -4.27573, 56.4029, 0.0185263, 0, -0.29218, 0, 0.292766, 0, 0.29218, 0, 0.0185263, 6.1067, -4.27573, -33.6843, 0.251687, 0, 0.145824, 0, 0.290879, 0, -0.145824, 0, 0.251687, 6.98141, -4.27573, 7.95604, 0.319335, 0, -0.11698, 0, 0.340087, 0, 0.11698, 0, 0.319335, 23.1162, -4.27573, -53.6172, 0.307593, 0, -0.180577, 0, 0.356681, 0, 0.180577, 0, 0.307593, 25.586, -4.27573, 47.9499, 0.238776, 0, -0.235596, 0, 0.33544, 0, 0.235596, 0, 0.238776, 25.7784, -4.27573, 60.2886, 0.345622, 0, 0.142594, 0, 0.373882, 0, -0.142594, 0, 0.345622, 13.3622, -4.27573, 1.30245, 0.0484512, 0, -0.242261, 0, 0.247059, 0, 0.242261, 0, 0.0484512, -12.547, -4.27573, -20.2536, -0.30961, 0, -0.0421019, 0, 0.31246, 0, 0.0421019, 0, -0.30961, 9.28672, -4.27573, 68.5876, 0.0410626, 0, 0.267045, 0, 0.270183, 0, -0.267045, 0, 0.0410626, 15.3952, -4.27573, 68.7324, 0.204517, 0, 0.0864392, 0, 0.222033, 0, -0.0864392, 0, 0.204517, 2.55393, -4.27573, -40.3348, 0.185582, 0, 0.214432, 0, 0.283588, 0, -0.214432, 0, 0.185582, -9.37841, -4.27573, 41.8091, -0.25391, 0, -0.022664, 0, 0.25492, 0, 0.022664, 0, -0.25391, 11.3467, -4.27573, 6.32186, -0.160158, 0, -0.282488, 0, 0.324731, 0, 0.282488, 0, -0.160158, -0.170689, -4.27573, 66.7136, 0.164634, 0, 0.123271, 0, 0.20567, 0, -0.123271, 0, 0.164634, 10.8276, -4.27573, 60.1768, 0.187205, 0, 0.213556, 0, 0.283992, 0, -0.213556, 0, 0.187205, -12.1102, -4.27573, -1.50361, 0.142479, 0, -0.339237, 0, 0.367943, 0, 0.339237, 0, 0.142479, -4.00607, -4.27573, 39.1614, 0.225753, 0, -0.136164, 0, 0.263638, 0, 0.136164, 0, 0.225753, -0.0854568, -4.27573, -24.0106, 0.221377, 0, -0.322435, 0, 0.391117, 0, 0.322435, 0, 0.221377, -3.09148, -4.27573, 62.899, 0.086009, 0, 0.296815, 0, 0.309026, 0, -0.296815, 0, 0.086009, 0.879276, -4.27573, 30.1847, -0.181055, 0, 0.282136, 0, 0.335234, 0, -0.282136, 0, -0.181055, 27.0411, -4.27573, 46.0609, 0.333608, 0, -0.142048, 0, 0.362591, 0, 0.142048, 0, 0.333608, 12.3417, -4.27573, -26.8355, -0.0332773, 0, 0.37386, 0, 0.375338, 0, -0.37386, 0, -0.0332773, 14.3542, -4.27573, 30.3739, 0.130217, 0, 0.240396, 0, 0.273398, 0, -0.240396, 0, 0.130217, 17.2154, -4.27573, -22.8662, 0.107885, 0, -0.184758, 0, 0.21395, 0, 0.184758, 0, 0.107885, 12.0341, -4.27573, -54.9615, 0.216782, 0, -0.25017, 0, 0.331027, 0, 0.25017, 0, 0.216782, 4.83269, -4.27573, 49.7891, 0.336777, 0, -0.163158, 0, 0.374219, 0, 0.163158, 0, 0.336777, 5.89489, -4.27573, -61.4976, -0.338064, 0, -0.0449481, 0, 0.341039, 0, 0.0449481, 0, -0.338064, 25.8057, -4.27573, -9.20241, 0.348648, 0, 0.192759, 0, 0.398386, 0, -0.192759, 0, 0.348648, -5.12838, -4.27573, 51.7127, -0.143652, 0, 0.260337, 0, 0.29734, 0, -0.260337, 0, -0.143652, 25.1793, -4.27573, 14.0296, 0.257996, 0, 0.0321465, 0, 0.259991, 0, -0.0321465, 0, 0.257996, 27.5217, -4.27573, -15.284, 0.0877536, 0, 0.300046, 0, 0.312615, 0, -0.300046, 0, 0.0877536, -6.44317, -4.27573, -5.00096, 0.242704, 0, 0.218924, 0, 0.326853, 0, -0.218924, 0, 0.242704, 8.91492, -4.27573, -9.89884, -0.105531, 0, 0.302508, 0, 0.320387, 0, -0.302508, 0, -0.105531, -4.49842, -4.27573, -23.3083, -0.219486, 0, 0.0430843, 0, 0.223675, 0, -0.0430843, 0, -0.219486, 12.2778, -4.27573, 5.35227, -0.22892, 0, 0.159582, 0, 0.279053, 0, -0.159582, 0, -0.22892, 4.17486, -4.27573, 49.584, -0.254514, 0, 0.133974, 0, 0.287622, 0, -0.133974, 0, -0.254514, 12.6416, -4.27573, -20.369, 0.0941712, 0, -0.321672, 0, 0.335174, 0, 0.321672, 0, 0.0941712, -10.6053, -4.27573, 24.6887, 0.241508, 0, 0.297289, 0, 0.383023, 0, -0.297289, 0, 0.241508, -13.2146, -4.27573, 70.914, 0.262795, 0, -0.24264, 0, 0.357681, 0, 0.24264, 0, 0.262795, -8.36685, -4.27573, -59.914, -0.0122766, 0, 0.364447, 0, 0.364654, 0, -0.364447, 0, -0.0122766, -9.96298, -4.27573, -54.7055, -0.0613259, 0, 0.219876, 0, 0.228268, 0, -0.219876, 0, -0.0613259, -4.17901, -4.27573, 49.0998, 0.262623, 0, -0.0646769, 0, 0.27047, 0, 0.0646769, 0, 0.262623, 7.06806, -4.27573, -62.5081, -0.0708507, 0, 0.364384, 0, 0.371208, 0, -0.364384, 0, -0.0708507, 21.6682, -4.27573, -43.3462, -0.33015, 0, -0.0709952, 0, 0.337697, 0, 0.0709952, 0, -0.33015, 8.90112, -4.27573, 65.5207, 0.246231, 0, 0.188273, 0, 0.309962, 0, -0.188273, 0, 0.246231, 13.272, -4.27573, -9.33112, -0.0472749, 0, -0.225895, 0, 0.230789, 0, 0.225895, 0, -0.0472749, 10.2723, -4.27573, 47.4028, 0.307308, 0, 0.191775, 0, 0.362237, 0, -0.191775, 0, 0.307308, 15.2932, -4.27573, 49.2359, -0.18906, 0, -0.132026, 0, 0.230596, 0, 0.132026, 0, -0.18906, 0.894962, -4.27573, 32.6454, -0.0616326, 0, 0.211208, 0, 0.220017, 0, -0.211208, 0, -0.0616326, 14.0131, -4.27573, -65.3054, -0.0970544, 0, -0.336014, 0, 0.34975, 0, 0.336014, 0, -0.0970544, 6.95904, -4.27573, -21.2383, 0.235218, 0, -0.296794, 0, 0.3787, 0, 0.296794, 0, 0.235218, 23.6343, -4.27573, -28.6072, 0.0378538, 0, -0.239208, 0, 0.242185, 0, 0.239208, 0, 0.0378538, 28.1347, -4.27573, 11.7838, 0.203103, 0, 0.0835924, 0, 0.219633, 0, -0.0835924, 0, 0.203103, 5.03315, -4.27573, 7.16507, -0.16226, 0, -0.120122, 0, 0.201885, 0, 0.120122, 0, -0.16226, -12.3194, -4.27573, 30.2811, 0.130683, 0, 0.174683, 0, 0.218156, 0, -0.174683, 0, 0.130683, 3.2312, -4.27573, -20.7654, -0.217175, 0, 0.00380195, 0, 0.217209, 0, -0.00380195, 0, -0.217175, 20.9136, -4.27573, 15.0824, -0.22874, 0, 0.153437, 0, 0.275436, 0, -0.153437, 0, -0.22874, -2.21675, -4.27573, 36.7243, 0.376144, 0, -0.0894978, 0, 0.386645, 0, 0.0894978, 0, 0.376144, -9.96478, -4.27573, -7.38182, -0.359282, 0, 0.126847, 0, 0.381017, 0, -0.126847, 0, -0.359282, 4.15004, -4.27573, 4.17607, -0.123846, 0, -0.228339, 0, 0.259763, 0, 0.228339, 0, -0.123846, 3.92868, -4.27573, -24.8307, -0.294611, 0, -0.0517916, 0, 0.299128, 0, 0.0517916, 0, -0.294611, -5.36039, -4.27573, 50.4683, 0.0490083, 0, 0.282002, 0, 0.286229, 0, -0.282002, 0, 0.0490083, 28.4295, -4.27573, 39.0042, 0.291932, 0, 0.194968, 0, 0.351052, 0, -0.194968, 0, 0.291932, 20.5258, -4.27573, 1.001, 0.181324, 0, 0.33074, 0, 0.377184, 0, -0.33074, 0, 0.181324, 14.4307, -4.27573, 13.8704, -0.170233, 0, 0.138288, 0, 0.219323, 0, -0.138288, 0, -0.170233, 15.229, -4.27573, 43.281, -0.147691, 0, 0.240817, 0, 0.282498, 0, -0.240817, 0, -0.147691, 21.6046, -4.27573, -34.5345, 0.15701, 0, 0.328032, 0, 0.363671, 0, -0.328032, 0, 0.15701, -1.03844, -4.27573, 8.49475, 0.0847518, 0, 0.300616, 0, 0.312335, 0, -0.300616, 0, 0.0847518, -0.795849, -4.27573, 64.3847, 0.101971, 0, -0.385439, 0, 0.3987, 0, 0.385439, 0, 0.101971, -5.66915, -4.27573, 41.0738, 0.197673, 0, 0.077502, 0, 0.212324, 0, -0.077502, 0, 0.197673, 9.64391, -4.27573, -51.1577, 0.350731, 0, -0.102524, 0, 0.365409, 0, 0.102524, 0, 0.350731, 5.79487, -4.27573, -25.79, -0.00973508, 0, -0.327686, 0, 0.32783, 0, 0.327686, 0, -0.00973508, 15.9071, -4.27573, 32.9832, 0.246102, 0, 0.0602146, 0, 0.253361, 0, -0.0602146, 0, 0.246102, 11.6776, -4.27573, 27.0348, -0.146161, 0, 0.288664, 0, 0.323558, 0, -0.288664, 0, -0.146161, -7.47716, -4.27573, -24.4399, -0.162004, 0, -0.136488, 0, 0.211836, 0, 0.136488, 0, -0.162004, -10.7318, -4.27573, 7.35707, -0.268484, 0, 0.133858, 0, 0.300003, 0, -0.133858, 0, -0.268484, 9.16007, -4.27573, -24.2334, 0.209902, 0, -0.0962498, 0, 0.230918, 0, 0.0962498, 0, 0.209902, 10.4056, -4.27573, -44.78, -0.278611, 0, 0.0608636, 0, 0.285181, 0, -0.0608636, 0, -0.278611, 17.4053, -4.27573, 28.0503, -0.110022, 0, 0.188602, 0, 0.218348, 0, -0.188602, 0, -0.110022, -12.1775, -4.27573, 51.1204, 0.0230869, 0, 0.228311, 0, 0.229476, 0, -0.228311, 0, 0.0230869, 27.9049, -4.27573, 12.8472, 0.133014, 0, -0.339535, 0, 0.36466, 0, 0.339535, 0, 0.133014, 27.8039, -4.27573, 35.2462, 0.0975938, 0, 0.203387, 0, 0.22559, 0, -0.203387, 0, 0.0975938, -4.02893, -4.27573, 66.3477, 0.144229, 0, 0.213113, 0, 0.25733, 0, -0.213113, 0, 0.144229, -7.96315, -4.27573, 70.7205, -0.26295, 0, 0.224798, 0, 0.345943, 0, -0.224798, 0, -0.26295, 22.1388, -4.27573, 52.4961, 0.0325691, 0, 0.322281, 0, 0.323922, 0, -0.322281, 0, 0.0325691, 2.80855, -4.27573, 71.7565, 0.134077, 0, -0.257818, 0, 0.290597, 0, 0.257818, 0, 0.134077, -14.4579, -4.27573, 11.9422, -0.179378, 0, -0.234362, 0, 0.295131, 0, 0.234362, 0, -0.179378, 13.184, -4.27573, -46.7572, 0.153235, 0, 0.223287, 0, 0.27081, 0, -0.223287, 0, 0.153235, -11.102, -4.27573, 15.698, -0.265459, 0, -0.223204, 0, 0.346827, 0, 0.223204, 0, -0.265459, -3.27538, -4.27573, -45.3853, 0.223156, 0, 0.111757, 0, 0.249576, 0, -0.111757, 0, 0.223156, 19.9635, -4.27573, -52.5889, -0.0675576, 0, -0.256095, 0, 0.264856, 0, 0.256095, 0, -0.0675576, 24.9064, -4.27573, -14.4262, -0.278406, 0, -0.156345, 0, 0.319302, 0, 0.156345, 0, -0.278406, -1.80928, -4.27573, 58.1621, 0.184281, 0, 0.264552, 0, 0.322408, 0, -0.264552, 0, 0.184281, -5.18184, -4.27573, 14.9585, 0.138032, 0, -0.227167, 0, 0.265815, 0, 0.227167, 0, 0.138032, 2.15144, -4.27573, -49.6058, -0.0816422, 0, 0.3329, 0, 0.342765, 0, -0.3329, 0, -0.0816422, 20.3842, -4.27573, -33.5091, -0.141831, 0, 0.259864, 0, 0.29605, 0, -0.259864, 0, -0.141831, -4.8508, -4.27573, -49.6746, -0.139988, 0, 0.214194, 0, 0.255882, 0, -0.214194, 0, -0.139988, 18.3297, -4.27573, -64.5781, 0.32272, 0, 0.100918, 0, 0.338131, 0, -0.100918, 0, 0.32272, 32.1272, -4.27573, 17.395, 0.313267, 0, 0.0922361, 0, 0.326564, 0, -0.0922361, 0, 0.313267, 12.5617, -4.27573, -8.52681, 0.193177, 0, 0.334123, 0, 0.385947, 0, -0.334123, 0, 0.193177, -6.00584, -4.27573, -0.994428, 0.0502529, 0, -0.293236, 0, 0.297511, 0, 0.293236, 0, 0.0502529, 2.59774, -4.27573, -62.6082, 0.0768613, 0, -0.228351, 0, 0.240939, 0, 0.228351, 0, 0.0768613, 17.0239, -4.27573, 64.1333, -0.233162, 0, 0.0522175, 0, 0.238938, 0, -0.0522175, 0, -0.233162, -5.17002, -4.27573, 21.6682, -0.272446, 0, -0.145899, 0, 0.309052, 0, 0.145899, 0, -0.272446, 26.526, -4.27573, 63.0603, -0.28666, 0, -0.143725, 0, 0.320672, 0, 0.143725, 0, -0.28666, -10.6337, -4.27573, -48.6355, -0.09848, 0, 0.175525, 0, 0.201265, 0, -0.175525, 0, -0.09848, -12.9806, -4.27573, -16.0607, -0.19241, 0, -0.349478, 0, 0.398944, 0, 0.349478, 0, -0.19241, -5.34772, -4.27573, -64.0006, 0.29607, 0, 0.0633313, 0, 0.302768, 0, -0.0633313, 0, 0.29607, 22.7168, -4.27573, -10.4622, -0.363275, 0, -0.13283, 0, 0.386798, 0, 0.13283, 0, -0.363275, 18.5457, -4.27573, 41.5872, 0.328343, 0, -0.212755, 0, 0.391247, 0, 0.212755, 0, 0.328343, 6.94201, -4.27573, -49.4731, -0.0512686, 0, -0.259628, 0, 0.264641, 0, 0.259628, 0, -0.0512686, 14.5184, -4.27573, -59.2632, 0.344423, 0, -0.111007, 0, 0.361869, 0, 0.111007, 0, 0.344423, 10.2588, -4.27573, 57.3419, -0.117966, 0, -0.315703, 0, 0.337023, 0, 0.315703, 0, -0.117966, 27.8907, -4.27573, 72.3988, -0.394215, 0, 0.0238496, 0, 0.394936, 0, -0.0238496, 0, -0.394215, 19.6649, -4.27573, -18.2082, -0.229061, 0, 0.087685, 0, 0.245271, 0, -0.087685, 0, -0.229061, 20.6727, -4.27573, 22.7431, -0.117046, 0, -0.359091, 0, 0.377686, 0, 0.359091, 0, -0.117046, 22.9611, -4.27573, -24.793, -0.229538, 0, 0.197408, 0, 0.30275, 0, -0.197408, 0, -0.229538, 7.5817, -4.27573, -1.04064, 0.0443213, 0, -0.226676, 0, 0.230968, 0, 0.226676, 0, 0.0443213, 3.60508, -4.27573, 67.6856, -0.0923927, 0, 0.274917, 0, 0.290027, 0, -0.274917, 0, -0.0923927, 3.21224, -4.27573, -52.8363, 0.186103, 0, 0.211024, 0, 0.281363, 0, -0.211024, 0, 0.186103, 8.51082, -4.27573, -1.23953, -0.0788543, 0, 0.31969, 0, 0.329272, 0, -0.31969, 0, -0.0788543, -10.932, -4.27573, -8.3734, -0.394383, 0, -0.0339318, 0, 0.39584, 0, 0.0339318, 0, -0.394383, 12.01, -4.27573, -50.4224, 0.0398862, 0, 0.213737, 0, 0.217427, 0, -0.213737, 0, 0.0398862, 17.8331, -4.27573, 70.3906, -0.248409, 0, 0.139383, 0, 0.284841, 0, -0.139383, 0, -0.248409, 21.2268, -4.27573, 24.2909, 0.27841, 0, 0.0424075, 0, 0.281621, 0, -0.0424075, 0, 0.27841, 5.91456, -4.27573, 17.8373, 0.154746, 0, -0.266791, 0, 0.308421, 0, 0.266791, 0, 0.154746, 30.806, -4.27573, 21.6786, -0.244444, 0, 0.013074, 0, 0.244793, 0, -0.013074, 0, -0.244444, -9.04514, -4.27573, 29.008, 0.0822535, 0, -0.280517, 0, 0.292328, 0, 0.280517, 0, 0.0822535, -3.94885, -4.27573, -3.26041, 0.278201, 0, 0.0258298, 0, 0.279397, 0, -0.0258298, 0, 0.278201, 29.6614, -4.27573, 60.0539, -0.204903, 0, -0.124829, 0, 0.239933, 0, 0.124829, 0, -0.204903, 26.822, -4.27573, 7.8776, 0.343341, 0, 0.129759, 0, 0.367043, 0, -0.129759, 0, 0.343341, 13.6255, -4.27573, -58.0183, -0.226277, 0, -0.213019, 0, 0.310771, 0, 0.213019, 0, -0.226277, 3.81536, -4.27573, 4.69759, 0.0927804, 0, 0.259693, 0, 0.275769, 0, -0.259693, 0, 0.0927804, 2.38668, -4.27573, 13.5997, 0.223409, 0, 0.173424, 0, 0.282821, 0, -0.173424, 0, 0.223409, 1.5031, -4.27573, -2.82358, -0.0365944, 0, -0.295932, 0, 0.298186, 0, 0.295932, 0, -0.0365944, 21.8011, -4.27573, -64.815, -0.170192, 0, 0.127044, 0, 0.212381, 0, -0.127044, 0, -0.170192, 2.66367, -4.27573, -51.1743, -0.234195, 0, 0.137499, 0, 0.271575, 0, -0.137499, 0, -0.234195, -5.10139, -4.27573, -44.8036, -0.162537, 0, -0.280474, 0, 0.324166, 0, 0.280474, 0, -0.162537, -13.1581, -4.27573, 17.1323, -0.240423, 0, -0.125563, 0, 0.271236, 0, 0.125563, 0, -0.240423, -13.965, -4.27573, -42.7665, 0.0501972, 0, -0.210722, 0, 0.216619, 0, 0.210722, 0, 0.0501972, 3.46437, -4.27573, -7.82122, 0.00400428, 0, 0.269635, 0, 0.269664, 0, -0.269635, 0, 0.00400428, 0.297802, -4.27573, -17.2313, 0.235202, 0, 0.0848742, 0, 0.250047, 0, -0.0848742, 0, 0.235202, 8.21424, -4.27573, -8.92406, 0.132077, 0, -0.298595, 0, 0.326502, 0, 0.298595, 0, 0.132077, -2.45904, -4.27573, -29.5994, -0.259503, 0, 0.134766, 0, 0.29241, 0, -0.134766, 0, -0.259503, -7.0526, -4.27573, 66.8237, 0.161296, 0, -0.259833, 0, 0.305826, 0, 0.259833, 0, 0.161296, -8.64648, -4.27573, 15.0553, 0.0796054, 0, 0.326304, 0, 0.335874, 0, -0.326304, 0, 0.0796054, 1.69088, -4.27573, 64.3584, -0.199254, 0, 0.106653, 0, 0.226002, 0, -0.106653, 0, -0.199254, 26.6287, -4.27573, -62.6225, 0.0636305, 0, -0.219933, 0, 0.228952, 0, 0.219933, 0, 0.0636305, 16.769, -4.27573, -34.4443, -0.345988, 0, 0.147211, 0, 0.376004, 0, -0.147211, 0, -0.345988, 10.7803, -4.27573, -4.30575, -0.137424, 0, 0.184436, 0, 0.230004, 0, -0.184436, 0, -0.137424, 6.15682, -4.27573, -56.9878, -0.167979, 0, -0.136696, 0, 0.21657, 0, 0.136696, 0, -0.167979, -0.497494, -4.27573, 12.0731, 0.286602, 0, -0.261085, 0, 0.387693, 0, 0.261085, 0, 0.286602, 10.6323, -4.27573, -59.1336, -0.0835299, 0, 0.242322, 0, 0.256315, 0, -0.242322, 0, -0.0835299, 29.0149, -4.27573, -29.9234, 0.26577, 0, 0.0631708, 0, 0.273175, 0, -0.0631708, 0, 0.26577, -5.35033, -4.27573, -21.1094, 0.287717, 0, 0.253752, 0, 0.383629, 0, -0.253752, 0, 0.287717, 12.7903, -4.27573, -60.1987, -0.214034, 0, -0.0607846, 0, 0.222498, 0, 0.0607846, 0, -0.214034, 22.032, -4.27573, 25.2604, 0.282818, 0, 0.188238, 0, 0.339735, 0, -0.188238, 0, 0.282818, 29.8204, -4.27573, -7.77231, 0.21904, 0, -0.140432, 0, 0.260191, 0, 0.140432, 0, 0.21904, 9.96554, -4.27573, -21.9064, 0.388733, 0, 0.0601526, 0, 0.39336, 0, -0.0601526, 0, 0.388733, 1.43061, -4.27573, -48.5358, 0.0827802, 0, -0.199601, 0, 0.216086, 0, 0.199601, 0, 0.0827802, 13.7814, -4.27573, 28.0955, -0.208727, 0, 0.25429, 0, 0.328984, 0, -0.25429, 0, -0.208727, 3.52387, -4.27573, 28.3022, 0.279994, 0, -0.162639, 0, 0.323803, 0, 0.162639, 0, 0.279994, 30.4217, -4.27573, -23.9116, 0.0675719, 0, -0.285057, 0, 0.292956, 0, 0.285057, 0, 0.0675719, 16.367, -4.27573, -21.8771, 0.28706, 0, -0.12894, 0, 0.314689, 0, 0.12894, 0, 0.28706, 22.2544, -4.27573, 67.8583, -0.216169, 0, -0.0587349, 0, 0.224006, 0, 0.0587349, 0, -0.216169, 7.83028, -4.27573, -14.1028, -0.229985, 0, -0.102023, 0, 0.251598, 0, 0.102023, 0, -0.229985, 29.6914, -4.27573, 21.7513, -0.0232453, 0, -0.227382, 0, 0.228567, 0, 0.227382, 0, -0.0232453, 14.6749, -4.27573, 67.9349, 0.223629, 0, 0.130917, 0, 0.259132, 0, -0.130917, 0, 0.223629, 24.4191, -4.27573, -14.7357, 0.220942, 0, 0.168204, 0, 0.277683, 0, -0.168204, 0, 0.220942, 25.422, -4.27573, 47.4324, -0.233938, 0, -0.153126, 0, 0.279597, 0, 0.153126, 0, -0.233938, 22.6903, -4.27573, -55.8991, -0.100528, 0, 0.270234, 0, 0.288327, 0, -0.270234, 0, -0.100528, -11.3117, -4.27573, 61.7263, 0.187256, 0, -0.337145, 0, 0.385657, 0, 0.337145, 0, 0.187256, 12.2466, -4.27573, 62.843, -0.141746, 0, -0.313242, 0, 0.343821, 0, 0.313242, 0, -0.141746, -8.09855, -4.27573, 39.6361, 0.280616, 0, 0.0350361, 0, 0.282795, 0, -0.0350361, 0, 0.280616, 28.5849, -4.27573, 43.5178, 0.227358, 0, -0.251372, 0, 0.338939, 0, 0.251372, 0, 0.227358, 21.6748, -4.27573, 56.0767, -0.192649, 0, -0.294163, 0, 0.351632, 0, 0.294163, 0, -0.192649, 6.86407, -4.27573, -2.24692, -0.0285026, 0, 0.252361, 0, 0.253966, 0, -0.252361, 0, -0.0285026, 26.0002, -4.27573, -55.546, -0.177808, 0, 0.347171, 0, 0.390056, 0, -0.347171, 0, -0.177808, 18.45, -4.27573, 39.4571, 0.110948, 0, 0.377657, 0, 0.393616, 0, -0.377657, 0, 0.110948, 3.04382, -4.27573, -57.6423, -0.225706, 0, -0.0476077, 0, 0.230672, 0, 0.0476077, 0, -0.225706, 3.26832, -4.27573, -48.1949, -0.299522, 0, 0.113988, 0, 0.320479, 0, -0.113988, 0, -0.299522, -12.9066, -4.27573, -43.729, -0.330751, 0, 0.0833561, 0, 0.341093, 0, -0.0833561, 0, -0.330751, 26.95, -4.27573, 1.70308, -0.120274, 0, 0.214561, 0, 0.245972, 0, -0.214561, 0, -0.120274, 28.7255, -4.27573, 58.1521, 0.157591, 0, 0.357071, 0, 0.390301, 0, -0.357071, 0, 0.157591, -7.8286, -4.27573, 26.897, 0.198071, 0, 0.0863447, 0, 0.216073, 0, -0.0863447, 0, 0.198071, -0.91254, -4.27573, -64.1749, -0.176246, 0, -0.208052, 0, 0.272669, 0, 0.208052, 0, -0.176246, 10.8055, -4.27573, 42.7477, 0.171225, 0, -0.191202, 0, 0.256664, 0, 0.191202, 0, 0.171225, 14.7773, -4.27573, -18.6428, 0.292762, 0, 0.0171435, 0, 0.293263, 0, -0.0171435, 0, 0.292762, -8.68683, -4.27573, -36.8624, -0.213316, 0, -0.023641, 0, 0.214622, 0, 0.023641, 0, -0.213316, 19.0658, -4.27573, 22.1166, 0.0591174, 0, 0.226286, 0, 0.233881, 0, -0.226286, 0, 0.0591174, 15.5199, -4.27573, -45.9748, -0.17766, 0, -0.247342, 0, 0.304534, 0, 0.247342, 0, -0.17766, -9.45018, -4.27573, 22.8786, -0.257445, 0, 0.294882, 0, 0.39145, 0, -0.294882, 0, -0.257445, 12.9739, -4.27573, -46.2859, 0.23093, 0, -0.106865, 0, 0.254458, 0, 0.106865, 0, 0.23093, 0.564022, -4.27573, 61.8895, 0.199648, 0, 0.23231, 0, 0.306312, 0, -0.23231, 0, 0.199648, -8.13869, -4.27573, -65.2002, -0.324955, 0, -0.0174367, 0, 0.325422, 0, 0.0174367, 0, -0.324955, -4.66839, -4.27573, 53.8687, 0.107866, 0, -0.367164, 0, 0.382681, 0, 0.367164, 0, 0.107866, 10.6286, -4.27573, -12.5139, -0.00502047, 0, 0.254149, 0, 0.254199, 0, -0.254149, 0, -0.00502047, 15.1779, -4.27573, 7.48941, -0.237181, 0, -0.0326456, 0, 0.239417, 0, 0.0326456, 0, -0.237181, 2.77778, -4.27573, 29.1016, -0.0535963, 0, 0.352417, 0, 0.356469, 0, -0.352417, 0, -0.0535963, 5.17947, -4.27573, 34.8593, 0.202276, 0, -0.152008, 0, 0.253025, 0, 0.152008, 0, 0.202276, 3.53874, -4.27573, -6.03221, 0.111768, 0, 0.288135, 0, 0.309053, 0, -0.288135, 0, 0.111768, 5.60281, -4.27573, -49.7379, 0.181188, 0, -0.13327, 0, 0.224922, 0, 0.13327, 0, 0.181188, 3.95484, -4.27573, -49.844, 0.355043, 0, -0.101675, 0, 0.369315, 0, 0.101675, 0, 0.355043, -4.40934, -4.27573, 60.8425, 0.0705316, 0, -0.253358, 0, 0.262992, 0, 0.253358, 0, 0.0705316, 0.821419, -4.27573, -66.363, -0.253873, 0, 0.207549, 0, 0.327914, 0, -0.207549, 0, -0.253873, 10.7834, -4.27573, 45.0526, 0.281892, 0, 0.000781224, 0, 0.281893, 0, -0.000781224, 0, 0.281892, 21.2441, -4.27573, -5.71826, -0.231506, 0, -0.00532902, 0, 0.231567, 0, 0.00532902, 0, -0.231506, 21.2127, -4.27573, -38.9899, 0.207806, 0, 0.0627912, 0, 0.217085, 0, -0.0627912, 0, 0.207806, 23.413, -4.27573, 68.8948, 0.0183603, 0, 0.297257, 0, 0.297823, 0, -0.297257, 0, 0.0183603, 15.7914, -4.27573, -51.1208, -0.184794, 0, -0.324875, 0, 0.373755, 0, 0.324875, 0, -0.184794, 2.06512, -4.27573, -46.5805, 0.00680279, 0, -0.329024, 0, 0.329094, 0, 0.329024, 0, 0.00680279, 4.95422, -4.27573, 61.1069, 0.246679, 0, 0.160149, 0, 0.294106, 0, -0.160149, 0, 0.246679, 1.33726, -4.27573, -20.3366, -0.0301939, 0, 0.387145, 0, 0.38832, 0, -0.387145, 0, -0.0301939, 3.46014, -4.27573, 1.70397, 0.0979646, 0, -0.309316, 0, 0.324459, 0, 0.309316, 0, 0.0979646, 16.493, -4.27573, 37.6051, -0.340394, 0, -0.149574, 0, 0.371808, 0, 0.149574, 0, -0.340394, 28.0847, -4.27573, -50.4911, 0.281315, 0, -0.00422123, 0, 0.281346, 0, 0.00422123, 0, 0.281315, 16.3389, -4.27573, 33.6567, -0.219585, 0, -0.141702, 0, 0.261337, 0, 0.141702, 0, -0.219585, -11.8843, -4.27573, 29.0472, -0.28077, 0, -0.0815227, 0, 0.292365, 0, 0.0815227, 0, -0.28077, 24.5437, -4.27573, 30.968, -0.244876, 0, 0.124297, 0, 0.274616, 0, -0.124297, 0, -0.244876, -9.43328, -4.27573, 38.7161, -0.265601, 0, 0.153055, 0, 0.306545, 0, -0.153055, 0, -0.265601, 11.1414, -4.27573, -57.5118, -0.253163, 0, -0.15285, 0, 0.295727, 0, 0.15285, 0, -0.253163, 25.4114, -4.27573, -53.4152, 0.137546, 0, 0.346725, 0, 0.373011, 0, -0.346725, 0, 0.137546, -4.9613, -4.27573, -25.951, 0.256459, 0, 0.288362, 0, 0.385906, 0, -0.288362, 0, 0.256459, 1.96579, -4.27573, -30.6439, 0.0457562, 0, 0.281477, 0, 0.285172, 0, -0.281477, 0, 0.0457562, 0.690453, -4.27573, 46.7687, 0.330172, 0, -0.022755, 0, 0.330955, 0, 0.022755, 0, 0.330172, -11.2757, -4.27573, -1.2541, -0.202319, 0, -0.336563, 0, 0.392693, 0, 0.336563, 0, -0.202319, 0.964287, -4.27573, -58.4786, 0.239756, 0, -0.279093, 0, 0.367934, 0, 0.279093, 0, 0.239756, -5.79796, -4.27573, 45.8722, -0.152308, 0, -0.143259, 0, 0.209096, 0, 0.143259, 0, -0.152308, 16.0188, -4.27573, -57.1319, 0.148916, 0, -0.179817, 0, 0.233474, 0, 0.179817, 0, 0.148916, -12.4953, -4.27573, 56.4589, -0.382786, 0, 0.0582959, 0, 0.3872, 0, -0.0582959, 0, -0.382786, 13.6965, -4.27573, -40.707, -0.29349, 0, -0.0177951, 0, 0.294029, 0, 0.0177951, 0, -0.29349, -4.80307, -4.27573, 37.0779, -0.25492, 0, -0.273986, 0, 0.374236, 0, 0.273986, 0, -0.25492, 24.7686, -4.27573, 60.8172, -0.21555, 0, -0.236757, 0, 0.320181, 0, 0.236757, 0, -0.21555, 16.5784, -4.27573, 6.66205, 0.109107, 0, -0.283547, 0, 0.303814, 0, 0.283547, 0, 0.109107, 27.4141, -4.27573, 62.6122, 0.175561, 0, 0.325129, 0, 0.369501, 0, -0.325129, 0, 0.175561, 20.516, -4.27573, -2.80726, -0.237499, 0, 0.230819, 0, 0.331184, 0, -0.230819, 0, -0.237499, 31.5409, -4.27573, -21.1816, -0.329351, 0, 0.167538, 0, 0.369515, 0, -0.167538, 0, -0.329351, 2.13614, -4.27573, 67.2215, 0.0504614, 0, 0.256891, 0, 0.2618, 0, -0.256891, 0, 0.0504614, 11.5795, -4.27573, -52.3804, 0.345684, 0, -0.0180684, 0, 0.346156, 0, 0.0180684, 0, 0.345684, 29.6479, -4.27573, 69.0012, 0.182185, 0, -0.188745, 0, 0.262329, 0, 0.188745, 0, 0.182185, 18.0616, -4.27573, 31.2337, -0.357408, 0, -0.0119759, 0, 0.357608, 0, 0.0119759, 0, -0.357408, -14.0434, -4.27573, 46.0308, 0.359915, 0, -0.0880601, 0, 0.370532, 0, 0.0880601, 0, 0.359915, 5.26901, -4.27573, 3.10905, -0.0240777, 0, -0.215925, 0, 0.217263, 0, 0.215925, 0, -0.0240777, 27.4645, -4.27573, -7.82591, -0.106591, 0, 0.224234, 0, 0.248279, 0, -0.224234, 0, -0.106591, -10.5758, -4.27573, -1.08673, 0.0282823, 0, 0.398526, 0, 0.399528, 0, -0.398526, 0, 0.0282823, -5.19239, -4.27573, -54.9792, 0.316597, 0, 0.118775, 0, 0.338144, 0, -0.118775, 0, 0.316597, 2.4525, -4.27573, 18.6583, -0.177236, 0, -0.259237, 0, 0.314033, 0, 0.259237, 0, -0.177236, 8.67197, -4.27573, -7.41208, 0.302265, 0, 0.18223, 0, 0.352948, 0, -0.18223, 0, 0.302265, 3.26255, -4.27573, -38.3784, 0.328231, 0, -0.167516, 0, 0.368507, 0, 0.167516, 0, 0.328231, 7.98789, -4.27573, 58.1326, -0.156679, 0, 0.276803, 0, 0.31807, 0, -0.276803, 0, -0.156679, 0.545845, -4.27573, 38.6959, 0.18927, 0, 0.240628, 0, 0.306145, 0, -0.240628, 0, 0.18927, 32.0688, -4.27573, 51.1113, 0.246038, 0, -0.119077, 0, 0.273339, 0, 0.119077, 0, 0.246038, -12.018, -4.27573, 59.6612, 0.285812, 0, -0.204878, 0, 0.351658, 0, 0.204878, 0, 0.285812, 13.2025, -4.27573, 15.4662, 0.344735, 0, 0.200188, 0, 0.398645, 0, -0.200188, 0, 0.344735, -2.36362, -4.27573, -18.5317, 0.301214, 0, -0.150929, 0, 0.336912, 0, 0.150929, 0, 0.301214, 19.4079, -4.27573, 10.1739, 0.293293, 0, -0.0880207, 0, 0.306216, 0, 0.0880207, 0, 0.293293, 28.1173, -4.27573, 62.1202, -0.096249, 0, -0.217836, 0, 0.238152, 0, 0.217836, 0, -0.096249, -1.92593, -4.27573, -35.5953, -0.0741644, 0, -0.238189, 0, 0.249468, 0, 0.238189, 0, -0.0741644, -4.87063, -4.27573, -5.79468, -0.243024, 0, 0.154475, 0, 0.287964, 0, -0.154475, 0, -0.243024, -9.89835, -4.27573, -21.8902, -0.332761, 0, -0.0711284, 0, 0.340278, 0, 0.0711284, 0, -0.332761, 24.2918, -4.27573, 24.5627, -0.139558, 0, -0.289168, 0, 0.321084, 0, 0.289168, 0, -0.139558, 19.2385, -4.27573, -59.9048, 0.125711, 0, 0.246805, 0, 0.276976, 0, -0.246805, 0, 0.125711, 28.228, -4.27573, 41.4643, -0.0410161, 0, -0.327784, 0, 0.33034, 0, 0.327784, 0, -0.0410161, 8.36282, -4.27573, -4.17681, -0.295695, 0, 0.261039, 0, 0.394433, 0, -0.261039, 0, -0.295695, -11.8095, -4.27573, 43.6833, 0.0236108, 0, -0.275588, 0, 0.276598, 0, 0.275588, 0, 0.0236108, 26.7279, -4.27573, -52.0245, 0.20582, 0, 0.019194, 0, 0.206713, 0, -0.019194, 0, 0.20582, 11.6622, -4.27573, 0.699364, -0.278682, 0, -0.181837, 0, 0.332758, 0, 0.181837, 0, -0.278682, 21.7045, -4.27573, 30.5015, 0.171747, 0, 0.318176, 0, 0.36157, 0, -0.318176, 0, 0.171747, 4.45033, -4.27573, 25.9893, 0.241804, 0, -0.190432, 0, 0.307789, 0, 0.190432, 0, 0.241804, 22.114, -4.27573, 68.4377, 0.212187, 0, 0.0923801, 0, 0.231424, 0, -0.0923801, 0, 0.212187, -11.2076, -4.27573, 55.296, -0.140791, 0, -0.332381, 0, 0.360969, 0, 0.332381, 0, -0.140791, -5.04457, -4.27573, 10.41, -0.0612704, 0, 0.225503, 0, 0.233678, 0, -0.225503, 0, -0.0612704, 23.2949, -4.27573, -0.619436, -0.174729, 0, 0.252189, 0, 0.306805, 0, -0.252189, 0, -0.174729, 1.13909, -4.27573, 62.8406, -0.336177, 0, -0.155513, 0, 0.370404, 0, 0.155513, 0, -0.336177, -8.65537, -4.27573, 54.7253, -0.252251, 0, -0.0244085, 0, 0.253429, 0, 0.0244085, 0, -0.252251, 18.1747, -4.27573, 12.0062, -0.00562318, 0, -0.374164, 0, 0.374206, 0, 0.374164, 0, -0.00562318, 8.82148, -4.27573, 52.4325, 0.217495, 0, -0.135311, 0, 0.256151, 0, 0.135311, 0, 0.217495, 3.51258, -4.27573, 48.9955, 0.21715, 0, 0.236291, 0, 0.320917, 0, -0.236291, 0, 0.21715, -8.41079, -4.27573, -14.1564, -0.297384, 0, -0.179225, 0, 0.347216, 0, 0.179225, 0, -0.297384, 10.8569, -4.27573, 64.4463, 0.0634923, 0, 0.332749, 0, 0.338753, 0, -0.332749, 0, 0.0634923, 15.1881, -4.27573, -15.437, -0.315431, 0, 0.181834, 0, 0.364088, 0, -0.181834, 0, -0.315431, 10.611, -4.27573, 45.7352, 0.355179, 0, -0.00791488, 0, 0.355267, 0, 0.00791488, 0, 0.355179, 4.27439, -4.27573, 41.3847, 0.173937, 0, -0.198878, 0, 0.26421, 0, 0.198878, 0, 0.173937, 8.75681, -4.27573, -26.9599, 0.0288858, 0, -0.315575, 0, 0.316894, 0, 0.315575, 0, 0.0288858, 11.1697, -4.27573, 20.519, 0.263389, 0, -0.145899, 0, 0.301099, 0, 0.145899, 0, 0.263389, -10.2106, -4.27573, -39.0494, 0.151056, 0, 0.180796, 0, 0.235595, 0, -0.180796, 0, 0.151056, 13.87, -4.27573, 8.19294, -0.307675, 0, 0.00882389, 0, 0.307801, 0, -0.00882389, 0, -0.307675, -11.563, -4.27573, -24.6253, 0.374342, 0, 0.0343127, 0, 0.375911, 0, -0.0343127, 0, 0.374342, 31.7833, -4.27573, -6.46431, -0.193396, 0, -0.112031, 0, 0.223502, 0, 0.112031, 0, -0.193396, 27.8593, -4.27573, -33.4512, -0.226004, 0, 0.0234414, 0, 0.227217, 0, -0.0234414, 0, -0.226004, -5.29654, -4.27573, 5.69125, -0.133757, 0, 0.222873, 0, 0.259929, 0, -0.222873, 0, -0.133757, 19.7877, -4.27573, -45.8082, -0.24673, 0, 0.08503, 0, 0.260971, 0, -0.08503, 0, -0.24673, 8.5298, -4.27573, 42.8899, 0.0237897, 0, 0.204071, 0, 0.205453, 0, -0.204071, 0, 0.0237897, 25.5333, -4.27573, -27.3976, 0.214876, 0, 0.27208, 0, 0.346697, 0, -0.27208, 0, 0.214876, 6.07795, -4.27573, -33.037, -0.0936311, 0, 0.285301, 0, 0.300272, 0, -0.285301, 0, -0.0936311, -8.08975, -4.27573, -34.5458, -0.298906, 0, -0.117998, 0, 0.321353, 0, 0.117998, 0, -0.298906, 26.5143, -4.27573, 56.542, 0.23032, 0, -0.0601895, 0, 0.238055, 0, 0.0601895, 0, 0.23032, -6.88711, -4.27573, 21.2601, -0.350037, 0, 0.0797966, 0, 0.359017, 0, -0.0797966, 0, -0.350037, 7.21524, -4.27573, -44.4537, 0.0053139, 0, 0.214034, 0, 0.2141, 0, -0.214034, 0, 0.0053139, -13.8405, -4.27573, 67.7883, -0.234482, 0, -0.268011, 0, 0.356107, 0, 0.268011, 0, -0.234482, -3.43995, -4.27573, 57.7609, 0.102929, 0, -0.380258, 0, 0.393942, 0, 0.380258, 0, 0.102929, 22.2333, -4.27573, 60.4704, -0.273016, 0, 0.221465, 0, 0.351546, 0, -0.221465, 0, -0.273016, 18.8313, -4.27573, -17.6645, -0.217968, 0, 0.0426035, 0, 0.222092, 0, -0.0426035, 0, -0.217968, 11.9702, -4.27573, -60.7562, -0.0535205, 0, 0.268066, 0, 0.273356, 0, -0.268066, 0, -0.0535205, -11.3736, -4.27573, -62.0607, -0.373875, 0, -0.0256791, 0, 0.374756, 0, 0.0256791, 0, -0.373875, 20.8988, -4.27573, -26.3173, -0.096372, 0, -0.201407, 0, 0.223276, 0, 0.201407, 0, -0.096372, -14.2089, -4.27573, 71.7382, -0.135852, 0, -0.187082, 0, 0.231205, 0, 0.187082, 0, -0.135852, -1.01765, -4.27573, -39.9033, -0.0822161, 0, -0.379212, 0, 0.388023, 0, 0.379212, 0, -0.0822161, 19.2421, -4.27573, 32.2741, 0.311378, 0, 0.065862, 0, 0.318267, 0, -0.065862, 0, 0.311378, 12.7955, -4.27573, -56.9931, -0.0781647, 0, -0.197916, 0, 0.212792, 0, 0.197916, 0, -0.0781647, -14.0799, -4.27573, 62.6507, -0.0150544, 0, -0.291793, 0, 0.292181, 0, 0.291793, 0, -0.0150544, -8.17292, -4.27573, 5.88078, -0.252925, 0, -0.0319807, 0, 0.254939, 0, 0.0319807, 0, -0.252925, -10.9099, -4.27573, -3.87649, 0.275379, 0, -0.199, 0, 0.339757, 0, 0.199, 0, 0.275379, 8.86898, -4.27573, 22.3672, 0.238913, 0, -0.130988, 0, 0.272465, 0, 0.130988, 0, 0.238913, 6.79324, -4.27573, -21.9788, -0.152398, 0, 0.169024, 0, 0.227583, 0, -0.169024, 0, -0.152398, 20.0506, -4.27573, -60.9422, -0.0162744, 0, -0.392598, 0, 0.392935, 0, 0.392598, 0, -0.0162744, 15.1195, -4.27573, 39.5486, 0.295663, 0, -0.0683243, 0, 0.303454, 0, 0.0683243, 0, 0.295663, 11.2333, -4.27573, 48.6329, 0.337701, 0, 0.175944, 0, 0.380786, 0, -0.175944, 0, 0.337701, 21.6376, -4.27573, 36.7285, 0.138302, 0, -0.22316, 0, 0.262541, 0, 0.22316, 0, 0.138302, 10.4827, -4.27573, 69.7998, 0.236269, 0, 0.00221372, 0, 0.236279, 0, -0.00221372, 0, 0.236269, 0.546555, -4.27573, 18.4838, -0.308972, 0, 0.100381, 0, 0.324869, 0, -0.100381, 0, -0.308972, -2.76287, -4.27573, -60.8509, -0.0956485, 0, -0.368839, 0, 0.381039, 0, 0.368839, 0, -0.0956485, 29.7715, -4.27573, 66.3397, -0.236227, 0, -0.183116, 0, 0.298889, 0, 0.183116, 0, -0.236227, 6.01719, -4.27573, 57.0031, -0.0277111, 0, 0.333936, 0, 0.335084, 0, -0.333936, 0, -0.0277111, 0.942768, -4.27573, -58.9108, 0.114842, 0, -0.182491, 0, 0.215619, 0, 0.182491, 0, 0.114842, -5.24897, -4.27573, 17.1812, -0.285831, 0, 0.274639, 0, 0.396391, 0, -0.274639, 0, -0.285831, 22.2498, -4.27573, 8.21857, -0.261454, 0, 0.0169084, 0, 0.262, 0, -0.0169084, 0, -0.261454, -2.83065, -4.27573, -17.467, 0.142299, 0, 0.349385, 0, 0.377252, 0, -0.349385, 0, 0.142299, 13.8407, -4.27573, -57.1367, -0.00766578, 0, -0.248327, 0, 0.248445, 0, 0.248327, 0, -0.00766578, -0.191105, -4.27573, -46.069, 0.257323, 0, 0.0346495, 0, 0.259645, 0, -0.0346495, 0, 0.257323, 20.4425, -4.27573, 21.2349, 0.1737, 0, -0.239784, 0, 0.296088, 0, 0.239784, 0, 0.1737, 4.91773, -4.27573, -47.7527, 0.0189897, 0, 0.398303, 0, 0.398756, 0, -0.398303, 0, 0.0189897, -1.48014, -4.27573, 31.4941, 0.142024, 0, 0.259049, 0, 0.295427, 0, -0.259049, 0, 0.142024, 1.87695, -4.27573, -34.4475, 0.264787, 0, -0.203751, 0, 0.334106, 0, 0.203751, 0, 0.264787, 21.5788, -4.27573, -1.51607, 0.174669, 0, -0.154093, 0, 0.232925, 0, 0.154093, 0, 0.174669, 8.03508, -4.27573, 25.82, 0.35865, 0, -0.123866, 0, 0.379437, 0, 0.123866, 0, 0.35865, -4.80189, -4.27573, 68.8769, -0.185322, 0, 0.293486, 0, 0.3471, 0, -0.293486, 0, -0.185322, 8.40047, -4.27573, -64.8499, -0.179284, 0, -0.0918135, 0, 0.201426, 0, 0.0918135, 0, -0.179284, -7.23125, -4.27573, 50.1162, -0.368786, 0, -0.129128, 0, 0.390739, 0, 0.129128, 0, -0.368786, 24.9234, -4.27573, 29.7112, 0.377221, 0, -0.108747, 0, 0.392583, 0, 0.108747, 0, 0.377221, 25.8535, -4.27573, 57.9754, -0.286979, 0, 0.155025, 0, 0.326175, 0, -0.155025, 0, -0.286979, 19.0254, -4.27573, 20.2202, -0.06065, 0, 0.304384, 0, 0.310367, 0, -0.304384, 0, -0.06065, 13.6279, -4.27573, 7.11915, 0.269651, 0, -0.125312, 0, 0.297346, 0, 0.125312, 0, 0.269651, 21.3873, -4.27573, -16.1831, -0.116113, 0, 0.268057, 0, 0.292124, 0, -0.268057, 0, -0.116113, -13.0677, -4.27573, -0.676749, 0.294849, 0, -0.238171, 0, 0.379027, 0, 0.238171, 0, 0.294849, 11.2629, -4.27573, 26.294, 0.181911, 0, 0.30573, 0, 0.355756, 0, -0.30573, 0, 0.181911, 22.1242, -4.27573, 2.79478, -0.0554365, 0, -0.210589, 0, 0.217764, 0, 0.210589, 0, -0.0554365, 2.21599, -4.27573, -37.0114, -0.132361, 0, 0.299374, 0, 0.327329, 0, -0.299374, 0, -0.132361, 26.0267, -4.27573, 36.4529, -0.0690458, 0, 0.274689, 0, 0.283233, 0, -0.274689, 0, -0.0690458, -5.3671, -4.27573, 58.385, 0.140764, 0, -0.175511, 0, 0.224986, 0, 0.175511, 0, 0.140764, -1.54066, -4.27573, 33.4537, 0.218409, 0, -0.0929187, 0, 0.237353, 0, 0.0929187, 0, 0.218409, -2.41269, -4.27573, 68.8999, -0.0359829, 0, 0.353873, 0, 0.355697, 0, -0.353873, 0, -0.0359829, -2.53505, -4.27573, 73.0033, 0.0549053, 0, 0.257441, 0, 0.263231, 0, -0.257441, 0, 0.0549053, 25.1218, -4.27573, 61.3025, -0.387087, 0, -0.0228855, 0, 0.387763, 0, 0.0228855, 0, -0.387087, 5.48334, -4.27573, -2.25146, -0.233882, 0, -0.150407, 0, 0.27807, 0, 0.150407, 0, -0.233882, 14.2018, -4.27573, -26.4882, 0.37459, 0, 0.0900569, 0, 0.385263, 0, -0.0900569, 0, 0.37459, 0.490902, -4.27573, -36.7194, 0.343665, 0, 0.0279396, 0, 0.344799, 0, -0.0279396, 0, 0.343665, 19.2576, -4.27573, 18.2921, -0.000454209, 0, 0.259692, 0, 0.259693, 0, -0.259692, 0, -0.000454209, 16.9312, -4.27573, 46.8346, 0.249701, 0, -0.000663994, 0, 0.249702, 0, 0.000663994, 0, 0.249701, -2.2071, -4.27573, 73.1256, 0.0966423, 0, -0.348759, 0, 0.361901, 0, 0.348759, 0, 0.0966423, 15.2905, -4.27573, 30.7834, 0.163813, 0, -0.201926, 0, 0.260017, 0, 0.201926, 0, 0.163813, 13.4366, -4.27573, 40.0095, -0.200811, 0, 0.308843, 0, 0.368387, 0, -0.308843, 0, -0.200811, 7.06421, -4.27573, 5.77152, 0.263942, 0, -0.030526, 0, 0.265702, 0, 0.030526, 0, 0.263942, 20.7232, -4.27573, 33.0218, -0.206918, 0, 0.322767, 0, 0.383398, 0, -0.322767, 0, -0.206918, 5.68472, -4.27573, 56.6983, -0.0680689, 0, 0.379968, 0, 0.386017, 0, -0.379968, 0, -0.0680689, -0.727802, -4.27573, 32.7939, -0.0681155, 0, -0.229844, 0, 0.239725, 0, 0.229844, 0, -0.0681155, -0.858803, -4.27573, 68.1685, -0.194047, 0, -0.125962, 0, 0.231346, 0, 0.125962, 0, -0.194047, -13.6653, -4.27573, 62.4315, -0.383245, 0, 0.091306, 0, 0.393972, 0, -0.091306, 0, -0.383245, -12.0581, -4.27573, 54.7265, -0.255591, 0, -0.306465, 0, 0.399058, 0, 0.306465, 0, -0.255591, -0.205151, -4.27573, 51.8953, -0.267003, 0, 0.261447, 0, 0.373691, 0, -0.261447, 0, -0.267003, -9.12243, -4.27573, 64.2177, 0.111528, 0, -0.367525, 0, 0.384074, 0, 0.367525, 0, 0.111528, 8.92076, -4.27573, 8.46206, 0.119391, 0, 0.188201, 0, 0.222876, 0, -0.188201, 0, 0.119391, 29.779, -4.27573, -53.4377, 0.288529, 0, 0.0177411, 0, 0.289074, 0, -0.0177411, 0, 0.288529, 29.5806, -4.27573, 28.829, -0.103727, 0, -0.368215, 0, 0.382546, 0, 0.368215, 0, -0.103727, -6.57629, -4.27573, -58.7243, -0.179407, 0, 0.121936, 0, 0.216922, 0, -0.121936, 0, -0.179407, 1.36457, -4.27573, 51.9713, -0.23091, 0, -0.223391, 0, 0.321284, 0, 0.223391, 0, -0.23091, 31.5777, -4.27573, -33.3569, -0.272468, 0, -0.0795024, 0, 0.28383, 0, 0.0795024, 0, -0.272468, 26.836, -4.27573, 7.48367, 0.201447, 0, -0.194284, 0, 0.27987, 0, 0.194284, 0, 0.201447, 17.2465, -4.27573, 31.6307, -0.21938, 0, -0.260342, 0, 0.340449, 0, 0.260342, 0, -0.21938, -5.13771, -4.27573, 55.0824, 0.261941, 0, -0.193276, 0, 0.325528, 0, 0.193276, 0, 0.261941, 1.2922, -4.27573, 57.6867, 0.319359, 0, -0.0720188, 0, 0.327379, 0, 0.0720188, 0, 0.319359, 24.4479, -4.27573, -13.2455, 0.196764, 0, -0.320889, 0, 0.376411, 0, 0.320889, 0, 0.196764, 19.2742, -4.27573, 52.9305, -0.211119, 0, 0.082193, 0, 0.226555, 0, -0.082193, 0, -0.211119, 8.5067, -4.27573, -38.7203, 0.0355087, 0, -0.277085, 0, 0.279351, 0, 0.277085, 0, 0.0355087, 22.0777, -4.27573, 66.1693, -0.180768, 0, 0.147043, 0, 0.233021, 0, -0.147043, 0, -0.180768, 13.5699, -4.27573, 60.1206, 0.194329, 0, 0.142576, 0, 0.241022, 0, -0.142576, 0, 0.194329, 2.42891, -4.27573, -46.2558, 0.285986, 0, -0.077996, 0, 0.296431, 0, 0.077996, 0, 0.285986, -6.81728, -4.27573, -3.67236, -0.220035, 0, 0.193534, 0, 0.293037, 0, -0.193534, 0, -0.220035, 21.6773, -4.27573, -61.966, -0.0622488, 0, -0.330111, 0, 0.335929, 0, 0.330111, 0, -0.0622488, 6.56054, -4.27573, 16.107, 0.218136, 0, -0.196891, 0, 0.293852, 0, 0.196891, 0, 0.218136, 3.14642, -4.27573, -58.1638, 0.211533, 0, -0.0381584, 0, 0.214947, 0, 0.0381584, 0, 0.211533, 0.228428, -4.27573, -53.7913, -0.0280645, 0, 0.312092, 0, 0.313352, 0, -0.312092, 0, -0.0280645, 28.7787, -4.27573, 43.7957, -0.222639, 0, -0.218352, 0, 0.311843, 0, 0.218352, 0, -0.222639, -9.08815, -4.27573, -43.7882, -0.0838831, 0, -0.284872, 0, 0.296966, 0, 0.284872, 0, -0.0838831, 12.2716, -4.27573, 70.6874, 0.0640373, 0, 0.264082, 0, 0.271735, 0, -0.264082, 0, 0.0640373, 28.4937, -4.27573, -35.5266, -0.0308579, 0, 0.349808, 0, 0.351166, 0, -0.349808, 0, -0.0308579, 30.961, -4.27573, 1.40335, -0.021355, 0, -0.222644, 0, 0.223666, 0, 0.222644, 0, -0.021355, -11.716, -4.27573, -51.5915, 0.16971, 0, -0.194572, 0, 0.258185, 0, 0.194572, 0, 0.16971, 15.6249, -4.27573, 62.1425, -0.21403, 0, 0.131809, 0, 0.251361, 0, -0.131809, 0, -0.21403, 11.6553, -4.27573, 2.86062, 0.0653987, 0, 0.208981, 0, 0.218975, 0, -0.208981, 0, 0.0653987, -5.80557, -4.27573, -52.0697, -0.277467, 0, -0.167614, 0, 0.324164, 0, 0.167614, 0, -0.277467, -4.60216, -4.27573, -9.31257, -0.185057, 0, 0.235557, 0, 0.299555, 0, -0.235557, 0, -0.185057, 15.3727, -4.27573, 22.9865, 0.251233, 0, -0.19696, 0, 0.319235, 0, 0.19696, 0, 0.251233, -6.08796, -4.27573, -62.4979, 0.0278874, 0, -0.31714, 0, 0.318363, 0, 0.31714, 0, 0.0278874, 10.9633, -4.27573, 60.4217, 0.0982373, 0, 0.305671, 0, 0.321069, 0, -0.305671, 0, 0.0982373, 25.197, -4.27573, -3.50932, -0.0876673, 0, 0.385056, 0, 0.39491, 0, -0.385056, 0, -0.0876673, 2.20253, -4.27573, 48.4837, 0.315163, 0, 0.0933536, 0, 0.328698, 0, -0.0933536, 0, 0.315163, -4.72281, -4.27573, 27.7319, -0.318301, 0, 0.185493, 0, 0.368407, 0, -0.185493, 0, -0.318301, -7.19946, -4.27573, -0.846861, 0.249069, 0, 0.0220299, 0, 0.250041, 0, -0.0220299, 0, 0.249069, 28.453, -4.27573, -5.91319, -0.0818189, 0, -0.203036, 0, 0.218902, 0, 0.203036, 0, -0.0818189, 29.5047, -4.27573, -22.4648, 0.0958617, 0, 0.324197, 0, 0.338072, 0, -0.324197, 0, 0.0958617, 4.57002, -4.27573, -63.7454, 0.305872, 0, -0.0551997, 0, 0.310813, 0, 0.0551997, 0, 0.305872, -14.1395, -4.27573, 4.76411, 0.077899, 0, 0.275244, 0, 0.286055, 0, -0.275244, 0, 0.077899, -11.3402, -4.27573, 25.3265, 0.240146, 0, 0.122215, 0, 0.269456, 0, -0.122215, 0, 0.240146, -0.931305, -4.27573, -45.1935, 0.358483, 0, -0.102631, 0, 0.372885, 0, 0.102631, 0, 0.358483, 0.285652, -4.27573, 49.6981, 0.00527296, 0, -0.368766, 0, 0.368803, 0, 0.368766, 0, 0.00527296, 15.4523, -4.27573, 13.669, 0.0427606, 0, 0.196654, 0, 0.201249, 0, -0.196654, 0, 0.0427606, 14.2963, -4.27573, -55.6923, 0.290186, 0, 0.0695979, 0, 0.298416, 0, -0.0695979, 0, 0.290186, 10.7924, -4.27573, -24.2758, 0.172722, 0, -0.242929, 0, 0.298073, 0, 0.242929, 0, 0.172722, 9.18798, -4.27573, -20.5898, 0.142342, 0, 0.335833, 0, 0.364753, 0, -0.335833, 0, 0.142342, -3.45624, -4.27573, 72.3023, -0.257192, 0, -0.175439, 0, 0.311331, 0, 0.175439, 0, -0.257192, -10.9024, -4.27573, -61.0269, -0.245094, 0, 0.0884742, 0, 0.260574, 0, -0.0884742, 0, -0.245094, 13.8005, -4.27573, -9.0607, -0.0160433, 0, -0.323583, 0, 0.32398, 0, 0.323583, 0, -0.0160433, 31.0029, -4.27573, 55.0506, 0.114085, 0, 0.246322, 0, 0.271459, 0, -0.246322, 0, 0.114085, 3.65583, -4.27573, 30.1042, 0.189022, 0, 0.300896, 0, 0.355342, 0, -0.300896, 0, 0.189022, 7.78833, -4.27573, -13.8833, -0.135703, 0, 0.326787, 0, 0.353843, 0, -0.326787, 0, -0.135703, 8.72228, -4.27573, -31.3724, 0.117205, 0, -0.218668, 0, 0.248099, 0, 0.218668, 0, 0.117205, 6.78676, -4.27573, -49.5933, -0.181409, 0, -0.117007, 0, 0.21587, 0, 0.117007, 0, -0.181409, -6.18626, -4.27573, -39.5521, 0.349551, 0, -0.0375891, 0, 0.351566, 0, 0.0375891, 0, 0.349551, 10.8247, -4.27573, -15.8706, 0.156042, 0, -0.235663, 0, 0.282641, 0, 0.235663, 0, 0.156042, 26.0962, -4.27573, 49.1661, 0.352842, 0, 0.137206, 0, 0.37858, 0, -0.137206, 0, 0.352842, 10.8154, -4.27573, -22.2488, 0.1839, 0, -0.333124, 0, 0.380513, 0, 0.333124, 0, 0.1839, 13.3213, -4.27573, 50.9781, -0.367575, 0, 0.0496501, 0, 0.370913, 0, -0.0496501, 0, -0.367575, 13.5401, -4.27573, 37.642, 0.238702, 0, 0.0361748, 0, 0.241428, 0, -0.0361748, 0, 0.238702, 20.1529, -4.27573, -33.8677, 0.237289, 0, 0.261027, 0, 0.352762, 0, -0.261027, 0, 0.237289, 20.7735, -4.27573, 72.3759, 0.285694, 0, 0.126165, 0, 0.312312, 0, -0.126165, 0, 0.285694, 5.64388, -4.27573, -55.6946, 0.195713, 0, 0.279372, 0, 0.341105, 0, -0.279372, 0, 0.195713, 5.41839, -4.27573, 42.932, -0.246607, 0, 0.30922, 0, 0.395514, 0, -0.30922, 0, -0.246607, 17.1086, -4.27573, -7.32953, -0.0919511, 0, -0.189182, 0, 0.210344, 0, 0.189182, 0, -0.0919511, 2.15649, -4.27573, -48.4005, -0.196865, 0, -0.124677, 0, 0.233024, 0, 0.124677, 0, -0.196865, 5.5575, -4.27573, -38.6569, 0.124089, 0, -0.245485, 0, 0.275065, 0, 0.245485, 0, 0.124089, -10.7825, -4.27573, 56.5171, 0.204565, 0, 0.133929, 0, 0.244507, 0, -0.133929, 0, 0.204565, 9.23029, -4.27573, 61.721, -0.325292, 0, 0.169908, 0, 0.366993, 0, -0.169908, 0, -0.325292, 11.3586, -4.27573, 23.1976, 0.19194, 0, -0.106279, 0, 0.219399, 0, 0.106279, 0, 0.19194, 24.8725, -4.27573, 66.4163, 0.0297011, 0, -0.278336, 0, 0.279917, 0, 0.278336, 0, 0.0297011, 19.3296, -4.27573, 39.7569, 0.24547, 0, 0.117048, 0, 0.271948, 0, -0.117048, 0, 0.24547, 7.14396, -4.27573, 33.21, 0.230912, 0, -0.247255, 0, 0.338312, 0, 0.247255, 0, 0.230912, 19.5444, -4.27573, 50.4397, -0.147312, 0, -0.328689, 0, 0.360191, 0, 0.328689, 0, -0.147312, 15.4511, -4.27573, 15.2965, -0.193271, 0, 0.056378, 0, 0.201326, 0, -0.056378, 0, -0.193271, 28.1465, -4.27573, 48.6392, -0.207622, 0, -0.108003, 0, 0.234033, 0, 0.108003, 0, -0.207622, 21.2998, -4.27573, 27.497, 0.200867, 0, -0.145003, 0, 0.247737, 0, 0.145003, 0, 0.200867, 9.20402, -4.27573, -66.4796, 0.321768, 0, 0.168845, 0, 0.363378, 0, -0.168845, 0, 0.321768, -6.06765, -4.27573, 54.047, 0.291018, 0, 0.261924, 0, 0.39153, 0, -0.261924, 0, 0.291018, -9.41748, -4.27573, -37.807, -0.00217763, 0, 0.357897, 0, 0.357904, 0, -0.357897, 0, -0.00217763, 12.7627, -4.27573, -3.11019, 0.29991, 0, 0.137209, 0, 0.329806, 0, -0.137209, 0, 0.29991, 11.7902, -4.27573, 45.4788, 0.259088, 0, 0.128095, 0, 0.289024, 0, -0.128095, 0, 0.259088, 28.0896, -4.27573, -11.6725, -0.284413, 0, -0.140924, 0, 0.317412, 0, 0.140924, 0, -0.284413, 2.82423, -4.27573, 55.2345, 0.348708, 0, 0.0282684, 0, 0.349852, 0, -0.0282684, 0, 0.348708, -4.311, -4.27573, -1.87529, -0.100859, 0, 0.247865, 0, 0.2676, 0, -0.247865, 0, -0.100859, 10.3342, -4.27573, -53.8659, 0.152364, 0, -0.211458, 0, 0.260632, 0, 0.211458, 0, 0.152364, -6.61935, -4.27573, 28.3249, -0.16861, 0, 0.212024, 0, 0.270894, 0, -0.212024, 0, -0.16861, 24.6554, -4.27573, 21.5516, 0.223961, 0, -0.1237, 0, 0.255852, 0, 0.1237, 0, 0.223961, 28.7469, -4.27573, 6.15298, 0.320913, 0, -0.0358985, 0, 0.322914, 0, 0.0358985, 0, 0.320913, 24.2288, -4.27573, -2.30421, -0.234447, 0, 0.18687, 0, 0.299809, 0, -0.18687, 0, -0.234447, 3.67675, -4.27573, 64.926, 0.297932, 0, -0.0700663, 0, 0.306061, 0, 0.0700663, 0, 0.297932, -13.4399, -4.27573, -48.0617, 0.0414534, 0, 0.256307, 0, 0.259638, 0, -0.256307, 0, 0.0414534, 9.28312, -4.27573, -38.6854, -0.119602, 0, 0.180473, 0, 0.216506, 0, -0.180473, 0, -0.119602, -2.10912, -4.27573, 24.3904, 0.205704, 0, -0.278014, 0, 0.345841, 0, 0.278014, 0, 0.205704, 21.275, -4.27573, -13.5139, -0.204517, 0, 0.286432, 0, 0.351953, 0, -0.286432, 0, -0.204517, 31.4813, -4.27573, -22.2416, -0.384178, 0, -0.0815434, 0, 0.392737, 0, 0.0815434, 0, -0.384178, 7.46446, -4.27573, -36.6067, 0.0440015, 0, 0.277415, 0, 0.280883, 0, -0.277415, 0, 0.0440015, 25.9605, -4.27573, 62.3811, 0.186156, 0, -0.340368, 0, 0.387949, 0, 0.340368, 0, 0.186156, 26.6697, -4.27573, 8.10803, -0.156241, 0, 0.207132, 0, 0.259451, 0, -0.207132, 0, -0.156241, 28.1353, -4.27573, -31.8123, -0.0406961, 0, 0.275484, 0, 0.278474, 0, -0.275484, 0, -0.0406961, -8.72324, -4.27573, -28.4938, -0.181433, 0, 0.348601, 0, 0.392989, 0, -0.348601, 0, -0.181433, -4.90696, -4.27573, 18.3785, -0.239876, 0, -0.256255, 0, 0.351009, 0, 0.256255, 0, -0.239876, -12.7153, -4.27573, -47.1024, -0.188258, 0, -0.162199, 0, 0.248495, 0, 0.162199, 0, -0.188258, 11.0581, -4.27573, 11.2504, -0.186551, 0, 0.300964, 0, 0.354091, 0, -0.300964, 0, -0.186551, -7.88931, -4.27573, -23.9574, 0.136486, 0, -0.2947, 0, 0.324772, 0, 0.2947, 0, 0.136486, -5.49671, -4.27573, 57.9799, -0.357103, 0, -0.110839, 0, 0.373909, 0, 0.110839, 0, -0.357103, 31.2856, -4.27573, 68.5711, -0.0114038, 0, -0.27342, 0, 0.273658, 0, 0.27342, 0, -0.0114038, 29.567, -4.27573, 4.98114, -0.349651, 0, -0.032743, 0, 0.35118, 0, 0.032743, 0, -0.349651, 8.37723, -4.27573, 71.3404, 0.235468, 0, 0.263122, 0, 0.353098, 0, -0.263122, 0, 0.235468, 15.8633, -4.27573, 43.2979, 0.261646, 0, 0.219772, 0, 0.341699, 0, -0.219772, 0, 0.261646, 5.36826, -4.27573, 74.4448, 0.270207, 0, -0.157066, 0, 0.31254, 0, 0.157066, 0, 0.270207, 6.92848, -4.27573, 22.5369, -0.238663, 0, -0.151894, 0, 0.282899, 0, 0.151894, 0, -0.238663, 18.0422, -4.27573, 12.5935, -0.005568, 0, 0.221712, 0, 0.221782, 0, -0.221712, 0, -0.005568, 10.0479, -4.27573, -19.9694, -0.0715179, 0, -0.30265, 0, 0.310986, 0, 0.30265, 0, -0.0715179, 14.5393, -4.27573, -3.33255, -0.392362, 0, -0.0537138, 0, 0.396022, 0, 0.0537138, 0, -0.392362, -4.30886, -4.27573, -6.65972, 0.0666745, 0, 0.343197, 0, 0.349613, 0, -0.343197, 0, 0.0666745, -3.73199, -4.27573, -54.5435, 0.184508, 0, -0.115166, 0, 0.2175, 0, 0.115166, 0, 0.184508, 27.1232, -4.27573, 32.7685, -0.0253172, 0, 0.29802, 0, 0.299093, 0, -0.29802, 0, -0.0253172, 0.517746, -4.27573, 13.0366, -0.220685, 0, 0.228605, 0, 0.317745, 0, -0.228605, 0, -0.220685, -4.18476, -4.27573, -33.6115, 0.238933, 0, 0.00580871, 0, 0.239003, 0, -0.00580871, 0, 0.238933, -10.0191, -4.27573, -23.9933, 0.137511, 0, -0.290799, 0, 0.321673, 0, 0.290799, 0, 0.137511, -10.8899, -4.27573, 41.1532, -0.312643, 0, -0.248021, 0, 0.399074, 0, 0.248021, 0, -0.312643, 31.025, -4.27573, 43.9872, -0.374284, 0, 0.0985767, 0, 0.387047, 0, -0.0985767, 0, -0.374284, 17.6162, -4.27573, 35.5001, -0.207819, 0, -0.268458, 0, 0.339497, 0, 0.268458, 0, -0.207819, -3.2854, -4.27573, 33.6695, -0.102887, 0, 0.36003, 0, 0.374443, 0, -0.36003, 0, -0.102887, 16.2799, -4.27573, -45.2607, 0.260539, 0, -0.270193, 0, 0.375346, 0, 0.270193, 0, 0.260539, -11.0226, -4.27573, 0.291976, -0.217652, 0, 0.0870918, 0, 0.23443, 0, -0.0870918, 0, -0.217652, 7.04277, -4.27573, 5.88284, -0.261094, 0, 0.239037, 0, 0.35399, 0, -0.239037, 0, -0.261094, -1.66542, -4.27573, 10.9123, -0.0930203, 0, -0.222591, 0, 0.241246, 0, 0.222591, 0, -0.0930203, 16.1458, -4.27573, 38.4074, 0.245163, 0, 0.0501544, 0, 0.250241, 0, -0.0501544, 0, 0.245163, 30.3405, -4.27573, 26.4426, 0.165585, 0, 0.1681, 0, 0.235958, 0, -0.1681, 0, 0.165585, -12.4142, -4.27573, 13.2124, -0.222616, 0, 0.177339, 0, 0.284617, 0, -0.177339, 0, -0.222616, 8.35199, -4.27573, -11.2075, -0.209321, 0, -0.118887, 0, 0.240726, 0, 0.118887, 0, -0.209321, 18.3778, -4.27573, 34.9733, -0.151777, 0, 0.262956, 0, 0.303615, 0, -0.262956, 0, -0.151777, 23.9313, -4.27573, -9.25226, -0.277361, 0, 0.106678, 0, 0.297169, 0, -0.106678, 0, -0.277361, 5.48055, -4.27573, -44.0461, -0.29226, 0, 0.174727, 0, 0.340508, 0, -0.174727, 0, -0.29226, 3.57766, -4.27573, -54.951, 0.144085, 0, 0.272912, 0, 0.308613, 0, -0.272912, 0, 0.144085, 13.1341, -4.27573, -60.4292, 0.309004, 0, -0.123909, 0, 0.332922, 0, 0.123909, 0, 0.309004, 3.63644, -4.27573, 72.3164, -0.186163, 0, 0.245336, 0, 0.307971, 0, -0.245336, 0, -0.186163, 3.55027, -4.27573, 32.9604, 0.175007, 0, 0.263598, 0, 0.316404, 0, -0.263598, 0, 0.175007, 15.62, -4.27573, 20.053, -0.256325, 0, 0.137668, 0, 0.290955, 0, -0.137668, 0, -0.256325, 1.18734, -4.27573, -41.4964, 0.138559, 0, -0.186723, 0, 0.232516, 0, 0.186723, 0, 0.138559, 5.04972, -4.27573, -65.3891, 0.29343, 0, 0.137648, 0, 0.324111, 0, -0.137648, 0, 0.29343, -3.85188, -4.27573, 17.2382, -0.0510921, 0, -0.350895, 0, 0.354595, 0, 0.350895, 0, -0.0510921, 11.2716, -4.27573, -11.8141, 0.222152, 0, 0.0650352, 0, 0.231476, 0, -0.0650352, 0, 0.222152, 6.06292, -4.27573, 73.7483, -0.204483, 0, -0.285766, 0, 0.351391, 0, 0.285766, 0, -0.204483, 27.5495, -4.27573, 40.3808, 0.01002, 0, 0.28727, 0, 0.287445, 0, -0.28727, 0, 0.01002, -3.95608, -4.27573, 65.8022, 0.0544702, 0, -0.236397, 0, 0.242591, 0, 0.236397, 0, 0.0544702, 11.3494, -4.27573, -66.0042, 0.202037, 0, 0.303129, 0, 0.364289, 0, -0.303129, 0, 0.202037, -0.198074, -4.27573, -47.6286, -0.191654, 0, -0.0920851, 0, 0.212628, 0, 0.0920851, 0, -0.191654, -4.90189, -4.27573, -31.511, -0.170443, 0, 0.196394, 0, 0.260041, 0, -0.196394, 0, -0.170443, 15.8368, -4.27573, -20.4953, -0.219388, 0, -0.274766, 0, 0.351607, 0, 0.274766, 0, -0.219388, 16.9034, -4.27573, 10.7796, -0.264418, 0, -0.00569596, 0, 0.264479, 0, 0.00569596, 0, -0.264418, -5.65819, -4.27573, 68.2033, 0.234668, 0, -0.316633, 0, 0.394114, 0, 0.316633, 0, 0.234668, -12.8209, -4.27573, 65.7151, -0.285402, 0, -0.131851, 0, 0.314387, 0, 0.131851, 0, -0.285402, 0.249893, -4.27573, -57.3021, 0.102404, 0, -0.20906, 0, 0.232793, 0, 0.20906, 0, 0.102404, -7.3877, -4.27573, 40.5245, -0.0328078, 0, 0.271024, 0, 0.273002, 0, -0.271024, 0, -0.0328078, 18.806, -4.27573, -47.7483, -0.30211, 0, 0.221354, 0, 0.374524, 0, -0.221354, 0, -0.30211, 19.5325, -4.27573, 58.9111, -0.204016, 0, 0.292976, 0, 0.357012, 0, -0.292976, 0, -0.204016, -3.99787, -4.27573, -21.5103, -0.159086, 0, 0.289183, 0, 0.330053, 0, -0.289183, 0, -0.159086, 23.475, -4.27573, 33.2588, 0.150906, 0, 0.270165, 0, 0.309454, 0, -0.270165, 0, 0.150906, 29.2778, -4.27573, -27.4082, -0.0801429, 0, 0.209556, 0, 0.224358, 0, -0.209556, 0, -0.0801429, 28.6306, -4.27573, -19.2095, -0.136695, 0, -0.336547, 0, 0.363248, 0, 0.336547, 0, -0.136695, -3.80444, -4.27573, 25.1538, 0.100644, 0, 0.187216, 0, 0.212554, 0, -0.187216, 0, 0.100644, 22.695, -4.27573, 56.5179, 0.110438, 0, -0.199612, 0, 0.228126, 0, 0.199612, 0, 0.110438, 12.2207, -4.27573, -61.6819, 0.13507, 0, -0.1886, 0, 0.231979, 0, 0.1886, 0, 0.13507, 11.3891, -4.27573, -54.9267, -0.244705, 0, -0.0439893, 0, 0.248628, 0, 0.0439893, 0, -0.244705, -9.8319, -4.27573, 56.5129, -0.0698969, 0, -0.198927, 0, 0.21085, 0, 0.198927, 0, -0.0698969, -2.81915, -4.27573, 64.0245, -0.341088, 0, 0.142234, 0, 0.369556, 0, -0.142234, 0, -0.341088, 1.412, -4.27573, -22.3498, -0.382718, 0, -0.0621991, 0, 0.38774, 0, 0.0621991, 0, -0.382718, -3.4056, -4.27573, 44.8292, -0.159017, 0, 0.137014, 0, 0.209904, 0, -0.137014, 0, -0.159017, 11.2066, -4.27573, 29.3269, 0.208307, 0, 0.0983091, 0, 0.23034, 0, -0.0983091, 0, 0.208307, 29.8727, -4.27573, 68.5831, 0.0479521, 0, -0.26759, 0, 0.271853, 0, 0.26759, 0, 0.0479521, 14.9306, -4.27573, -0.968092, -0.142352, 0, 0.238033, 0, 0.277352, 0, -0.238033, 0, -0.142352, 20.795, -4.27573, -49.5008, -0.318193, 0, 0.0938937, 0, 0.331757, 0, -0.0938937, 0, -0.318193, 30.6501, -4.27573, 18.6796, 0.131062, 0, -0.239419, 0, 0.272944, 0, 0.239419, 0, 0.131062, -11.976, -4.27573, 38.745, -0.281509, 0, 0.086581, 0, 0.294523, 0, -0.086581, 0, -0.281509, 7.738, -4.27573, -11.1951, -0.206089, 0, -0.142207, 0, 0.250391, 0, 0.142207, 0, -0.206089, 9.52035, -4.27573, -20.0586, 0.18478, 0, -0.352625, 0, 0.398105, 0, 0.352625, 0, 0.18478, -10.0653, -4.27573, 63.0778, 0.126157, 0, 0.155969, 0, 0.200604, 0, -0.155969, 0, 0.126157, 26.6553, -4.27573, 6.7972, -0.0555241, 0, 0.365607, 0, 0.369799, 0, -0.365607, 0, -0.0555241, 11.3694, -4.27573, -31.7046, -0.181498, 0, 0.154115, 0, 0.238103, 0, -0.154115, 0, -0.181498, 5.44493, -4.27573, -1.45432, 0.219492, 0, 0.24815, 0, 0.331293, 0, -0.24815, 0, 0.219492, 31.643, -4.27573, -40.6902, 0.307503, 0, 0.0827421, 0, 0.31844, 0, -0.0827421, 0, 0.307503, 3.87365, -4.27573, 13.6849, -0.0699064, 0, -0.231673, 0, 0.241991, 0, 0.231673, 0, -0.0699064, 12.0611, -4.27573, 42.6877, 0.10589, 0, -0.170636, 0, 0.200822, 0, 0.170636, 0, 0.10589, 7.79159, -4.27573, -50.7604, -0.127848, 0, 0.282628, 0, 0.310199, 0, -0.282628, 0, -0.127848, -12.1136, -4.27573, 7.23855, 0.00620393, 0, -0.371909, 0, 0.371961, 0, 0.371909, 0, 0.00620393, 2.91929, -4.27573, -55.0519, -0.306881, 0, 0.0205989, 0, 0.307571, 0, -0.0205989, 0, -0.306881, -0.46093, -4.27573, -7.29732, 0.145265, 0, -0.196233, 0, 0.24415, 0, 0.196233, 0, 0.145265, 14.1041, -4.27573, -30.197, -0.177917, 0, 0.170341, 0, 0.246314, 0, -0.170341, 0, -0.177917, 6.81518, -4.27573, 12.7523, -0.136541, 0, -0.254384, 0, 0.288712, 0, 0.254384, 0, -0.136541, -9.98573, -4.27573, 47.2664, -0.134899, 0, -0.154767, 0, 0.205306, 0, 0.154767, 0, -0.134899, 3.12743, -4.27573, -47.7884, 0.19519, 0, -0.342277, 0, 0.394021, 0, 0.342277, 0, 0.19519, -5.40433, -4.27573, -27.9816, -0.310513, 0, 0.0895487, 0, 0.323168, 0, -0.0895487, 0, -0.310513, 3.98737, -4.27573, -15.9081, -0.204983, 0, -0.231503, 0, 0.309211, 0, 0.231503, 0, -0.204983, -4.84299, -4.27573, -29.0547, 0.0258156, 0, -0.22832, 0, 0.229775, 0, 0.22832, 0, 0.0258156, -2.70165, -4.27573, -46.2718, 0.261289, 0, -0.199977, 0, 0.329033, 0, 0.199977, 0, 0.261289, 30.0247, -4.27573, 60.3003, 0.295188, 0, 0.0480475, 0, 0.299073, 0, -0.0480475, 0, 0.295188, -7.99403, -4.27573, -65.6585, 0.218155, 0, -0.100861, 0, 0.240342, 0, 0.100861, 0, 0.218155, -9.39708, -4.27573, -28.9174, 0.200755, 0, -0.226992, 0, 0.303031, 0, 0.226992, 0, 0.200755, -12.0705, -4.27573, 40.5505, 0.113769, 0, -0.169599, 0, 0.204224, 0, 0.169599, 0, 0.113769, 1.28879, -4.27573, 13.968, -0.264023, 0, -0.181295, 0, 0.320275, 0, 0.181295, 0, -0.264023, 10.8951, -4.27573, 16.6128, -0.213771, 0, 0.195569, 0, 0.289734, 0, -0.195569, 0, -0.213771, 15.2907, -4.27573, 37.8462, 0.0413207, 0, 0.309763, 0, 0.312507, 0, -0.309763, 0, 0.0413207, 5.12513, -4.27573, -38.5982, -0.348083, 0, 0.152753, 0, 0.380125, 0, -0.152753, 0, -0.348083, 29.1453, -4.27573, 9.25751, -0.125254, 0, -0.185717, 0, 0.224008, 0, 0.185717, 0, -0.125254, -3.70218, -4.27573, 52.1473, -0.22986, 0, 0.0413496, 0, 0.23355, 0, -0.0413496, 0, -0.22986, 31.3212, -4.27573, 42.8555, -0.0493612, 0, -0.384052, 0, 0.387211, 0, 0.384052, 0, -0.0493612, 15.7689, -4.27573, -30.1533, 0.260776, 0, -0.228551, 0, 0.346756, 0, 0.228551, 0, 0.260776, 0.281582, -4.27573, -10.313, 0.175135, 0, -0.335427, 0, 0.378396, 0, 0.335427, 0, 0.175135, 16.5203, -4.27573, -20.6926, -0.215569, 0, -0.333574, 0, 0.397167, 0, 0.333574, 0, -0.215569, 30.1033, -4.27573, 45.4793, -0.300924, 0, -0.0998897, 0, 0.31707, 0, 0.0998897, 0, -0.300924, -6.77734, -4.27573, 37.0908, -0.175869, 0, 0.292909, 0, 0.341651, 0, -0.292909, 0, -0.175869, 7.90862, -4.27573, -10.7083, -0.201829, 0, 0.0779935, 0, 0.216374, 0, -0.0779935, 0, -0.201829, 29.1124, -4.27573, 27.1924, -0.363962, 0, -0.146209, 0, 0.392231, 0, 0.146209, 0, -0.363962, -2.87345, -4.27573, -36.5602, 0.230557, 0, 0.255003, 0, 0.343778, 0, -0.255003, 0, 0.230557, -7.19817, -4.27573, 39.0656, -0.172354, 0, -0.151327, 0, 0.229359, 0, 0.151327, 0, -0.172354, 27.606, -4.27573, -7.72618, 0.234323, 0, 0.280595, 0, 0.365569, 0, -0.280595, 0, 0.234323, 13.2953, -4.27573, -56.1152, -0.328924, 0, 0.0189902, 0, 0.329471, 0, -0.0189902, 0, -0.328924, -13.9955, -4.27573, 65.1406, 0.152932, 0, -0.364184, 0, 0.394991, 0, 0.364184, 0, 0.152932, 21.4775, -4.27573, 4.22081, -0.228408, 0, -0.121346, 0, 0.258641, 0, 0.121346, 0, -0.228408, 17.673, -4.27573, 69.7619, -0.119514, 0, -0.323583, 0, 0.344948, 0, 0.323583, 0, -0.119514, -10.0567, -4.27573, 67.2665, 0.264946, 0, 0.127453, 0, 0.294007, 0, -0.127453, 0, 0.264946, 26.3307, -4.27573, -20.3616, -0.213963, 0, -0.0264581, 0, 0.215592, 0, 0.0264581, 0, -0.213963, -6.12347, -4.27573, 45.1892, -0.0535684, 0, -0.293078, 0, 0.297934, 0, 0.293078, 0, -0.0535684, 14.3345, -4.27573, 16.3266, -0.208223, 0, -0.234521, 0, 0.313619, 0, 0.234521, 0, -0.208223, 2.45069, -4.27573, -15.9732, 0.191012, 0, -0.224368, 0, 0.294663, 0, 0.224368, 0, 0.191012, 20.6643, -4.27573, 0.489771, -0.242718, 0, 0.152137, 0, 0.286458, 0, -0.152137, 0, -0.242718, 0.271255, -4.27573, -16.0842, -0.151406, 0, 0.218504, 0, 0.265834, 0, -0.218504, 0, -0.151406, 9.73954, -4.27573, -29.0592, 0.279508, 0, 0.242831, 0, 0.370259, 0, -0.242831, 0, 0.279508, 28.1285, -4.27573, 22.4162, -0.226956, 0, 0.124646, 0, 0.258932, 0, -0.124646, 0, -0.226956, 25.0403, -4.27573, 20.123, -0.219354, 0, 0.216517, 0, 0.308214, 0, -0.216517, 0, -0.219354, 29.5193, -4.27573, -3.9643, -0.246736, 0, 0.154298, 0, 0.29101, 0, -0.154298, 0, -0.246736, 5.65569, -4.27573, 0.397436, -0.104879, 0, -0.27153, 0, 0.291081, 0, 0.27153, 0, -0.104879, 7.29461, -4.27573, 53.1917, 0.0339389, 0, 0.327777, 0, 0.329529, 0, -0.327777, 0, 0.0339389, 19.5295, -4.27573, -10.2069, 0.31521, 0, 0.0200312, 0, 0.315845, 0, -0.0200312, 0, 0.31521, -11.0707, -4.27573, -28.2973, -0.32015, 0, -0.0744881, 0, 0.328701, 0, 0.0744881, 0, -0.32015, 3.87397, -4.27573, 2.59228, 0.286169, 0, -0.0800104, 0, 0.297144, 0, 0.0800104, 0, 0.286169, 12.1682, -4.27573, 16.6736, 0.0380016, 0, -0.224946, 0, 0.228133, 0, 0.224946, 0, 0.0380016, -2.22505, -4.27573, -17.9933, 0.152678, 0, 0.21908, 0, 0.267033, 0, -0.21908, 0, 0.152678, 11.0425, -4.27573, -0.730266, -0.295758, 0, 0.018271, 0, 0.296322, 0, -0.018271, 0, -0.295758, 25.0344, -4.27573, 1.78374, 0.360335, 0, 0.00905132, 0, 0.360449, 0, -0.00905132, 0, 0.360335, 19.3774, -4.27573, -31.291, -0.119964, 0, -0.354472, 0, 0.374221, 0, 0.354472, 0, -0.119964, 1.78168, -4.27573, 34.0152, -0.0492864, 0, 0.297789, 0, 0.301841, 0, -0.297789, 0, -0.0492864, 16.4145, -4.27573, -32.4776, -0.00831146, 0, 0.388995, 0, 0.389084, 0, -0.388995, 0, -0.00831146, -9.88988, -4.27573, -11.3748, 0.267004, 0, 0.247612, 0, 0.364146, 0, -0.247612, 0, 0.267004, 17.3248, -4.27573, -49.9931, 0.278419, 0, -0.0498455, 0, 0.282845, 0, 0.0498455, 0, 0.278419, -7.11995, -4.27573, -0.463111, 0.211495, 0, -0.3092, 0, 0.374613, 0, 0.3092, 0, 0.211495, 3.65499, -4.27573, 37.6103, 0.232699, 0, -0.0575025, 0, 0.239699, 0, 0.0575025, 0, 0.232699, 6.60626, -4.27573, -49.6068, -0.0647538, 0, 0.212676, 0, 0.222316, 0, -0.212676, 0, -0.0647538, 25.0653, -4.27573, 17.8792, 0.312068, 0, 0.12778, 0, 0.337215, 0, -0.12778, 0, 0.312068, -12.5386, -4.27573, -46.1418, -0.2585, 0, -0.285872, 0, 0.385415, 0, 0.285872, 0, -0.2585, 13.7397, -4.27573, -43.5326, -0.373717, 0, -0.137599, 0, 0.398244, 0, 0.137599, 0, -0.373717, -11.5538, -4.27573, 2.78064, 0.269362, 0, 0.00510549, 0, 0.269411, 0, -0.00510549, 0, 0.269362, 2.72365, -4.27573, -6.87372, -0.324127, 0, 0.159091, 0, 0.361065, 0, -0.159091, 0, -0.324127, 10.2304, -4.27573, 29.4405, 0.347304, 0, -0.116182, 0, 0.366221, 0, 0.116182, 0, 0.347304, 13.7614, -4.27573, 13.2709, 0.174055, 0, -0.231306, 0, 0.289478, 0, 0.231306, 0, 0.174055, 15.0935, -4.27573, 72.0926, -0.124051, 0, -0.200205, 0, 0.235522, 0, 0.200205, 0, -0.124051, 19.016, -4.27573, 62.0557, -0.280522, 0, 0.267855, 0, 0.387864, 0, -0.267855, 0, -0.280522, 29.7898, -4.27573, 42.8037, 0.162276, 0, -0.332457, 0, 0.369947, 0, 0.332457, 0, 0.162276, 24.9104, -4.27573, -9.88748, 0.226109, 0, -0.267245, 0, 0.350064, 0, 0.267245, 0, 0.226109, 23.7861, -4.27573, 49.6285, 0.229841, 0, -0.0234795, 0, 0.231037, 0, 0.0234795, 0, 0.229841, 14.8176, -4.27573, -23.3259, 0.272531, 0, 0.155238, 0, 0.313643, 0, -0.155238, 0, 0.272531, 31.2576, -4.27573, -33.7273, 0.35543, 0, 0.012242, 0, 0.355641, 0, -0.012242, 0, 0.35543, -13.0636, -4.27573, 47.6708, 0.0195993, 0, -0.35847, 0, 0.359006, 0, 0.35847, 0, 0.0195993, 25.3339, -4.27573, 50.0884, 0.230105, 0, 0.085177, 0, 0.245364, 0, -0.085177, 0, 0.230105, -9.08797, -4.27573, -51.3178, -0.00262749, 0, -0.284099, 0, 0.284111, 0, 0.284099, 0, -0.00262749, 27.8584, -4.27573, -3.39982, -0.227261, 0, 0.119793, 0, 0.256901, 0, -0.119793, 0, -0.227261, 9.59314, -4.27573, 65.6848, -0.123847, 0, -0.182144, 0, 0.220259, 0, 0.182144, 0, -0.123847, 4.59049, -4.27573, -11.219, 0.108705, 0, -0.266778, 0, 0.288075, 0, 0.266778, 0, 0.108705, 28.1593, -4.27573, -48.3281, -0.214073, 0, -0.0882267, 0, 0.231541, 0, 0.0882267, 0, -0.214073, 6.12522, -4.27573, 38.5978, 0.077713, 0, 0.207019, 0, 0.221124, 0, -0.207019, 0, 0.077713, -12.8036, -4.27573, -13.8997, -0.207281, 0, -0.0258706, 0, 0.20889, 0, 0.0258706, 0, -0.207281, 28.2871, -4.27573, 56.004, -0.325945, 0, 0.0328383, 0, 0.327595, 0, -0.0328383, 0, -0.325945, 22.1687, -4.27573, -6.36583, -0.0975993, 0, -0.386835, 0, 0.398957, 0, 0.386835, 0, -0.0975993, 3.83162, -4.27573, 18.6428, 0.219369, 0, 0.324625, 0, 0.391795, 0, -0.324625, 0, 0.219369, 29.9907, -4.27573, 68.2664, 0.205307, 0, 0.168503, 0, 0.265601, 0, -0.168503, 0, 0.205307, 15.2584, -4.27573, 50.9692, 0.290798, 0, -0.227181, 0, 0.369019, 0, 0.227181, 0, 0.290798, 8.11853, -4.27573, 60.8571, 0.34528, 0, 0.161639, 0, 0.381242, 0, -0.161639, 0, 0.34528, -8.00148, -4.27573, 67.9214, 0.246642, 0, -0.161254, 0, 0.294678, 0, 0.161254, 0, 0.246642, -1.57851, -4.27573, 68.5122, -0.322591, 0, -0.141522, 0, 0.352269, 0, 0.141522, 0, -0.322591, 13.6838, -4.27573, -18.2283, 0.0663726, 0, -0.235114, 0, 0.244303, 0, 0.235114, 0, 0.0663726, 25.1794, -4.27573, 24.6503, 0.304024, 0, -0.0142246, 0, 0.304356, 0, 0.0142246, 0, 0.304024, -4.09578, -4.27573, 0.539799, 0.254047, 0, 0.1918, 0, 0.318319, 0, -0.1918, 0, 0.254047, 13.4685, -4.27573, 32.0587, 0.152004, 0, 0.138338, 0, 0.20553, 0, -0.138338, 0, 0.152004, 24.5523, -4.27573, -36.2147, -0.248555, 0, 0.0232023, 0, 0.249635, 0, -0.0232023, 0, -0.248555, 0.181797, -4.27573, 57.1878, 0.0561498, 0, 0.21842, 0, 0.225522, 0, -0.21842, 0, 0.0561498, 13.058, -4.27573, -10.3275, -0.320561, 0, -0.00892648, 0, 0.320685, 0, 0.00892648, 0, -0.320561, 2.53148, -4.27573, 36.5626, -0.184091, 0, 0.204239, 0, 0.27496, 0, -0.204239, 0, -0.184091, 30.7329, -4.27573, 32.1122, -0.121901, 0, -0.290509, 0, 0.315048, 0, 0.290509, 0, -0.121901, 22.8111, -4.27573, -1.27033, 0.114432, 0, -0.22786, 0, 0.25498, 0, 0.22786, 0, 0.114432, -0.744381, -4.27573, -5.21818, -0.379673, 0, 0.0409062, 0, 0.38187, 0, -0.0409062, 0, -0.379673, 10.7122, -4.27573, 59.9627, -0.355491, 0, -0.0446676, 0, 0.358286, 0, 0.0446676, 0, -0.355491, -10.0829, -4.27573, 42.9039, 0.300176, 0, 0.206224, 0, 0.364189, 0, -0.206224, 0, 0.300176, -2.28898, -4.27573, -10.9533, 0.239337, 0, 0.151609, 0, 0.283315, 0, -0.151609, 0, 0.239337, 23.4594, -4.27573, 52.6051, -0.177675, 0, 0.3362, 0, 0.380262, 0, -0.3362, 0, -0.177675, 21.7657, -4.27573, -16.9779, 0.0622949, 0, 0.196248, 0, 0.205898, 0, -0.196248, 0, 0.0622949, 28.8446, -4.27573, -53.8378, 0.000337634, 0, 0.222933, 0, 0.222933, 0, -0.222933, 0, 0.000337634, -10.5683, -4.27573, 53.6247, 0.328971, 0, 0.0365695, 0, 0.330997, 0, -0.0365695, 0, 0.328971, -5.86455, -4.27573, 69.0618, -0.36261, 0, -0.125746, 0, 0.383794, 0, 0.125746, 0, -0.36261, 6.26912, -4.27573, 32.8152, 0.0228806, 0, -0.352003, 0, 0.352745, 0, 0.352003, 0, 0.0228806, 15.534, -4.27573, 23.7975, 0.183576, 0, -0.261965, 0, 0.319885, 0, 0.261965, 0, 0.183576, -1.24392, -4.27573, 72.7603, 0.0606455, 0, 0.348055, 0, 0.353299, 0, -0.348055, 0, 0.0606455, 27.2722, -4.27573, -66.9382, -0.2998, 0, -0.0883586, 0, 0.31255, 0, 0.0883586, 0, -0.2998, 12.2154, -4.27573, -63.4712, -0.102256, 0, 0.271373, 0, 0.289999, 0, -0.271373, 0, -0.102256, 18.8019, -4.27573, -63.1011, -0.21994, 0, -0.21084, 0, 0.304675, 0, 0.21084, 0, -0.21994, 17.2986, -4.27573, 21.3038, -0.189313, 0, 0.182659, 0, 0.263066, 0, -0.182659, 0, -0.189313, 16.4342, -4.27573, -9.4629, 0.35287, 0, -0.133103, 0, 0.377138, 0, 0.133103, 0, 0.35287, -0.00421143, -4.27573, 46.8903, -0.212688, 0, -0.108185, 0, 0.238622, 0, 0.108185, 0, -0.212688, 23.3527, -4.27573, 40.0204, 0.304128, 0, -0.201849, 0, 0.365016, 0, 0.201849, 0, 0.304128, -7.35763, -4.27573, 1.46844, -0.0256241, 0, 0.253159, 0, 0.254453, 0, -0.253159, 0, -0.0256241, 14.2293, -4.27573, 6.93891, 0.0685081, 0, 0.232986, 0, 0.24285, 0, -0.232986, 0, 0.0685081, 23.6387, -4.27573, 68.3616, 0.127879, 0, -0.332886, 0, 0.356604, 0, 0.332886, 0, 0.127879, -12.0108, -4.27573, 60.0821, 0.19517, 0, -0.314179, 0, 0.369865, 0, 0.314179, 0, 0.19517, 12.7534, -4.27573, -20.0081, 0.201553, 0, 0.178049, 0, 0.268933, 0, -0.178049, 0, 0.201553, 14.8548, -4.27573, -18.9405, -0.0207257, 0, -0.237995, 0, 0.238896, 0, 0.237995, 0, -0.0207257, 22.6539, -4.27573, 6.71714, -0.287456, 0, 0.100335, 0, 0.304464, 0, -0.100335, 0, -0.287456, -4.87764, -4.27573, 53.4825, -0.349434, 0, -0.00632724, 0, 0.349491, 0, 0.00632724, 0, -0.349434, 21.6777, -4.27573, 32.9395, 0.14544, 0, 0.237654, 0, 0.278625, 0, -0.237654, 0, 0.14544, 1.73735, -4.27573, 67.6698, 0.188793, 0, -0.254218, 0, 0.316654, 0, 0.254218, 0, 0.188793, -10.6727, -4.27573, -15.8914, 0.0886017, 0, -0.239967, 0, 0.255802, 0, 0.239967, 0, 0.0886017, 3.46728, -4.27573, -7.59153, -0.278686, 0, 0.191418, 0, 0.338093, 0, -0.191418, 0, -0.278686, 28.8545, -4.27573, 65.3647, 0.256033, 0, -0.154127, 0, 0.298844, 0, 0.154127, 0, 0.256033, 16.7537, -4.27573, 71.2651, 0.279625, 0, 0.0368394, 0, 0.282042, 0, -0.0368394, 0, 0.279625, 9.95982, -4.27573, 4.83137, -0.288233, 0, 0.247346, 0, 0.379813, 0, -0.247346, 0, -0.288233, -13.3916, -4.27573, 8.62946, 0.107527, 0, 0.174386, 0, 0.204872, 0, -0.174386, 0, 0.107527, 16.2241, -4.27573, 68.7757, -0.294487, 0, -0.108792, 0, 0.31394, 0, 0.108792, 0, -0.294487, 7.11086, -4.27573, -48.119, -0.312368, 0, 0.177003, 0, 0.359032, 0, -0.177003, 0, -0.312368, 21.5499, -4.27573, 18.2643, 0.247474, 0, 0.170753, 0, 0.300666, 0, -0.170753, 0, 0.247474, 7.17891, -4.27573, -45.9519, -0.296229, 0, -0.0101965, 0, 0.296405, 0, 0.0101965, 0, -0.296229, -4.67898, -4.27573, -38.7334, -0.257328, 0, -0.2188, 0, 0.337774, 0, 0.2188, 0, -0.257328, -0.0570602, -4.27573, -30.3434, 0.0375823, 0, 0.23153, 0, 0.23456, 0, -0.23153, 0, 0.0375823, 3.00147, -4.27573, -23.9131, 0.176959, 0, 0.192696, 0, 0.261623, 0, -0.192696, 0, 0.176959, -2.65792, -4.27573, 52.6219, -0.0125737, 0, -0.274907, 0, 0.275195, 0, 0.274907, 0, -0.0125737, 28.8735, -4.27573, 21.3358, -0.324575, 0, 0.23121, 0, 0.398506, 0, -0.23121, 0, -0.324575, 0.680969, -4.27573, 32.5644, 0.0847983, 0, -0.264012, 0, 0.277296, 0, 0.264012, 0, 0.0847983, -5.38327, -4.27573, -27.6583, -0.11925, 0, 0.200206, 0, 0.23303, 0, -0.200206, 0, -0.11925, 10.637, -4.27573, 32.9361, 0.0769903, 0, 0.273649, 0, 0.284274, 0, -0.273649, 0, 0.0769903, 4.45314, -4.27573, 9.21219, 0.210677, 0, 0.296407, 0, 0.363651, 0, -0.296407, 0, 0.210677, 31.8227, -4.27573, 1.59594, 0.327841, 0, -0.0162973, 0, 0.328246, 0, 0.0162973, 0, 0.327841, 12.8336, -4.27573, 51.0376, -0.0858242, 0, 0.304877, 0, 0.316727, 0, -0.304877, 0, -0.0858242, -8.32726, -4.27573, 58.6978, -0.0520736, 0, 0.232127, 0, 0.237896, 0, -0.232127, 0, -0.0520736, 24.6531, -4.27573, 72.3392, -0.0730664, 0, -0.254136, 0, 0.264431, 0, 0.254136, 0, -0.0730664, 11.8628, -4.27573, 2.85276, -0.293717, 0, -0.22295, 0, 0.36875, 0, 0.22295, 0, -0.293717, 18.6842, -4.27573, 24.012, 0.383454, 0, 0.0647216, 0, 0.388878, 0, -0.0647216, 0, 0.383454, 29.5666, -4.27573, 20.5106, 0.218356, 0, 0.0362495, 0, 0.221345, 0, -0.0362495, 0, 0.218356, 1.7851, -4.27573, -0.274841, -0.333687, 0, -0.00125441, 0, 0.33369, 0, 0.00125441, 0, -0.333687, 32.1073, -4.27573, -40.0098, 0.210682, 0, 0.256043, 0, 0.331579, 0, -0.256043, 0, 0.210682, 12.8537, -4.27573, -46.0984, 0.0535113, 0, -0.196675, 0, 0.203825, 0, 0.196675, 0, 0.0535113, -7.28249, -4.27573, 67.4571, 0.234192, 0, 0.236645, 0, 0.332937, 0, -0.236645, 0, 0.234192, 27.3955, -4.27573, 51.8781, -0.305467, 0, 0.11127, 0, 0.325101, 0, -0.11127, 0, -0.305467, 16.901, -4.27573, -62.341, -0.165638, 0, -0.185998, 0, 0.24906, 0, 0.185998, 0, -0.165638, 27.3336, -4.27573, -3.02373, 0.259687, 0, 0.277057, 0, 0.379733, 0, -0.277057, 0, 0.259687, 11.774, -4.27573, -23.7006, -0.275447, 0, -0.269458, 0, 0.38533, 0, 0.269458, 0, -0.275447, 15.5479, -4.27573, -24.5109, -0.0872113, 0, -0.297039, 0, 0.309577, 0, 0.297039, 0, -0.0872113, -8.34306, -4.27573, -8.30164, 0.13643, 0, 0.211873, 0, 0.251999, 0, -0.211873, 0, 0.13643, -0.434937, -4.27573, -60.0108, 0.0627529, 0, 0.211566, 0, 0.220676, 0, -0.211566, 0, 0.0627529, -10.5177, -4.27573, 39.9254, 0.117887, 0, -0.351803, 0, 0.37103, 0, 0.351803, 0, 0.117887, -0.60144, -4.27573, 9.52282, 0.239637, 0, -0.141165, 0, 0.278124, 0, 0.141165, 0, 0.239637, -6.94427, -4.27573, 3.71091, -0.326065, 0, -0.0583089, 0, 0.331237, 0, 0.0583089, 0, -0.326065, -9.074, -4.27573, 2.6835, -0.165417, 0, 0.328913, 0, 0.368167, 0, -0.328913, 0, -0.165417, -6.55677, -4.27573, 8.01073, 0.317688, 0, -0.0460299, 0, 0.321006, 0, 0.0460299, 0, 0.317688, 12.5039, -4.27573, -56.4591, -0.300622, 0, 0.111374, 0, 0.32059, 0, -0.111374, 0, -0.300622, -1.62085, -4.27573, -39.735, -0.022619, 0, 0.222726, 0, 0.223871, 0, -0.222726, 0, -0.022619, 0.794109, -4.27573, -53.9039, 0.257625, 0, -0.0583626, 0, 0.264153, 0, 0.0583626, 0, 0.257625, 30.371, -4.27573, -43.2361, 0.345485, 0, -0.0673311, 0, 0.351985, 0, 0.0673311, 0, 0.345485, 13.4961, -4.27573, 58.7366, -0.0459138, 0, 0.394107, 0, 0.396773, 0, -0.394107, 0, -0.0459138, 7.28592, -4.27573, -67.6389, 0.221849, 0, 0.300982, 0, 0.373908, 0, -0.300982, 0, 0.221849, 10.6659, -4.27573, 28.7328, 0.234973, 0, 0.10378, 0, 0.256871, 0, -0.10378, 0, 0.234973, -4.14808, -4.27573, 8.91297, 0.0599822, 0, 0.343942, 0, 0.349134, 0, -0.343942, 0, 0.0599822, 1.5114, -4.27573, 15.1497, -0.226294, 0, -0.278605, 0, 0.358929, 0, 0.278605, 0, -0.226294, -0.590614, -4.27573, -12.1297, -0.0256713, 0, -0.253719, 0, 0.255014, 0, 0.253719, 0, -0.0256713, -8.54022, -4.27573, -28.595, -0.305344, 0, 0.0420259, 0, 0.308223, 0, -0.0420259, 0, -0.305344, 26.5122, -4.27573, -14.6519, -0.0569839, 0, -0.29074, 0, 0.296272, 0, 0.29074, 0, -0.0569839, 21.5823, -4.27573, -33.4905, -0.171488, 0, 0.167167, 0, 0.239485, 0, -0.167167, 0, -0.171488, 26.9234, -4.27573, 55.2553, 0.365315, 0, -0.0275375, 0, 0.366351, 0, 0.0275375, 0, 0.365315, 13.5375, -4.27573, 62.0942, -0.113352, 0, -0.223475, 0, 0.250579, 0, 0.223475, 0, -0.113352, 21.9552, -4.27573, -63.4501, -0.355286, 0, 0.12185, 0, 0.375601, 0, -0.12185, 0, -0.355286, 7.45759, -4.27573, -35.1943, -0.0900678, 0, 0.21744, 0, 0.235356, 0, -0.21744, 0, -0.0900678, -9.38494, -4.27573, 17.3472, -0.232604, 0, -0.108445, 0, 0.256642, 0, 0.108445, 0, -0.232604, -12.8879, -4.27573, -62.791, -0.384266, 0, -0.0126308, 0, 0.384473, 0, 0.0126308, 0, -0.384266, 0.940491, -4.27573, 9.29037, 0.22232, 0, 0.255405, 0, 0.338612, 0, -0.255405, 0, 0.22232, 19.5065, -4.27573, 44.3393, 0.107281, 0, 0.286842, 0, 0.306247, 0, -0.286842, 0, 0.107281, 30.9119, -4.27573, 1.60889, -0.137947, 0, -0.233985, 0, 0.271621, 0, 0.233985, 0, -0.137947, 29.7088, -4.27573, 41.8595, -0.327134, 0, 0.0137014, 0, 0.32742, 0, -0.0137014, 0, -0.327134, 14.3008, -4.27573, 45.0221, 0.0212172, 0, 0.322762, 0, 0.323459, 0, -0.322762, 0, 0.0212172, 6.62798, -4.27573, 47.3091, 0.114546, 0, -0.315811, 0, 0.335942, 0, 0.315811, 0, 0.114546, 28.8627, -4.27573, -9.84405, -0.225416, 0, 0.32915, 0, 0.398939, 0, -0.32915, 0, -0.225416, 27.2579, -4.27573, -1.625, 0.25651, 0, -0.109011, 0, 0.278713, 0, 0.109011, 0, 0.25651, 22.0304, -4.27573, 4.51903, 0.257283, 0, 0.0899759, 0, 0.272563, 0, -0.0899759, 0, 0.257283, -2.07174, -4.27573, 2.99592, 0.177391, 0, 0.312214, 0, 0.359089, 0, -0.312214, 0, 0.177391, -9.22231, -4.27573, 23.374, 0.0737173, 0, -0.35378, 0, 0.361379, 0, 0.35378, 0, 0.0737173, 28.2422, -4.27573, -2.0627, -0.257538, 0, 0.187026, 0, 0.318284, 0, -0.187026, 0, -0.257538, -8.62487, -4.27573, 13.8912, -0.231101, 0, 0.275889, 0, 0.359892, 0, -0.275889, 0, -0.231101, -2.68457, -4.27573, 52.8048, -0.0655005, 0, -0.193871, 0, 0.204637, 0, 0.193871, 0, -0.0655005, 15.6669, -4.27573, 46.3069, -0.240567, 0, -0.0607881, 0, 0.248128, 0, 0.0607881, 0, -0.240567, 9.65602, -4.27573, -1.66281, -0.0745521, 0, 0.252845, 0, 0.263607, 0, -0.252845, 0, -0.0745521, -7.33889, -4.27573, 58.6502, 0.259436, 0, 0.256224, 0, 0.364634, 0, -0.256224, 0, 0.259436, 27.2723, -4.27573, 45.5143, -0.19627, 0, 0.135968, 0, 0.238766, 0, -0.135968, 0, -0.19627, 12.7105, -4.27573, 12.2714, 0.228105, 0, -0.321029, 0, 0.393816, 0, 0.321029, 0, 0.228105, 1.36924, -4.27573, 7.22971, 0.0413527, 0, 0.198197, 0, 0.202465, 0, -0.198197, 0, 0.0413527, -9.37472, -4.27573, -52.0361, 0.0181664, 0, 0.248384, 0, 0.249047, 0, -0.248384, 0, 0.0181664, 2.30934, -4.27573, 41.1024, 0.296043, 0, 0.0924373, 0, 0.310139, 0, -0.0924373, 0, 0.296043, 24.5635, -4.27573, 3.69563, 0.350984, 0, 0.057129, 0, 0.355603, 0, -0.057129, 0, 0.350984, 11.5794, -4.27573, -26.1189, -0.213027, 0, 0.0755774, 0, 0.226036, 0, -0.0755774, 0, -0.213027, 10.7967, -4.27573, 62.3529, 0.130518, 0, 0.229487, 0, 0.264006, 0, -0.229487, 0, 0.130518, -0.635681, -4.27573, 63.5153, -0.159557, 0, -0.183056, 0, 0.242833, 0, 0.183056, 0, -0.159557, 28.7444, -4.27573, -47.1213, -0.0297351, 0, -0.319171, 0, 0.320553, 0, 0.319171, 0, -0.0297351, 11.7612, -4.27573, 25.7431, 0.298635, 0, 0.184773, 0, 0.351175, 0, -0.184773, 0, 0.298635, 18.9573, -4.27573, 22.7597, 0.0513862, 0, 0.393839, 0, 0.397177, 0, -0.393839, 0, 0.0513862, -0.827412, -4.27573, 27.5899, -0.259529, 0, -0.281069, 0, 0.382564, 0, 0.281069, 0, -0.259529, 0.830162, -4.27573, -3.77134, 0.0822496, 0, 0.226117, 0, 0.240612, 0, -0.226117, 0, 0.0822496, 23.4721, -4.27573, -8.08542, 0.115961, 0, 0.323708, 0, 0.343852, 0, -0.323708, 0, 0.115961, -4.77686, -4.27573, 71.7179, -0.1245, 0, -0.285175, 0, 0.311167, 0, 0.285175, 0, -0.1245, -9.70367, -4.27573, -63.6202, 0.0899327, 0, -0.204045, 0, 0.222985, 0, 0.204045, 0, 0.0899327, 19.5885, -4.27573, 32.9731, 0.365277, 0, 0.0738953, 0, 0.372676, 0, -0.0738953, 0, 0.365277, 13.1007, -4.27573, -18.9821, -0.24941, 0, 0.0302115, 0, 0.251233, 0, -0.0302115, 0, -0.24941, 20.6534, -4.27573, -57.3001, 0.29328, 0, 0.229844, 0, 0.372615, 0, -0.229844, 0, 0.29328, 19.9631, -4.27573, -36.7068, -0.232752, 0, 0.254162, 0, 0.344633, 0, -0.254162, 0, -0.232752, 26.7864, -4.27573, 61.5336, -0.0635429, 0, -0.210572, 0, 0.219951, 0, 0.210572, 0, -0.0635429, -7.9682, -4.27573, -59.0107, 0.148254, 0, -0.219209, 0, 0.264636, 0, 0.219209, 0, 0.148254, 16.9559, -4.27573, 17.8909, -0.293334, 0, 0.0676977, 0, 0.301045, 0, -0.0676977, 0, -0.293334, 0.18681, -4.27573, -3.31694, -0.290736, 0, 0.031558, 0, 0.292444, 0, -0.031558, 0, -0.290736, 24.1659, -4.27573, -55.4345, -0.12321, 0, -0.171131, 0, 0.210871, 0, 0.171131, 0, -0.12321, -6.05555, -4.27573, 70.6081, -0.0456313, 0, -0.261496, 0, 0.265448, 0, 0.261496, 0, -0.0456313, 29.6388, -4.27573, -24.2394, 0.378058, 0, 0.011311, 0, 0.378227, 0, -0.011311, 0, 0.378058, 24.7313, -4.27573, -64.0887, 0.174045, 0, -0.216017, 0, 0.277408, 0, 0.216017, 0, 0.174045, 19.3087, -4.27573, 35.3927, -0.0829004, 0, 0.256126, 0, 0.269208, 0, -0.256126, 0, -0.0829004, 0.445477, -4.27573, -57.8643, 0.195925, 0, 0.102652, 0, 0.221188, 0, -0.102652, 0, 0.195925, 13.704, -4.27573, -48.7596, 0.265217, 0, -0.206413, 0, 0.336075, 0, 0.206413, 0, 0.265217, 10.1451, -4.27573, 62.6342, 0.129936, 0, -0.235112, 0, 0.268628, 0, 0.235112, 0, 0.129936, 21.9485, -4.27573, 46.5276, -0.0200543, 0, 0.271225, 0, 0.271965, 0, -0.271225, 0, -0.0200543, 10.0096, -4.27573, 3.78642, 0.374863, 0, 0.137447, 0, 0.399267, 0, -0.137447, 0, 0.374863, 9.93492, -4.27573, 53.9229, 0.158882, 0, -0.250581, 0, 0.296706, 0, 0.250581, 0, 0.158882, 4.91589, -4.27573, 2.80502, -0.172959, 0, 0.193674, 0, 0.259662, 0, -0.193674, 0, -0.172959, 20.7764, -4.27573, 39.6721, -0.321407, 0, -0.136055, 0, 0.349018, 0, 0.136055, 0, -0.321407, -3.95365, -4.27573, -7.79221, 0.288873, 0, -0.0874276, 0, 0.301813, 0, 0.0874276, 0, 0.288873, 31.2438, -4.27573, -20.4342, 0.369908, 0, -0.132221, 0, 0.392828, 0, 0.132221, 0, 0.369908, -8.18038, -4.27573, -35.0051, -0.113146, 0, -0.200175, 0, 0.22994, 0, 0.200175, 0, -0.113146, 22.7131, -4.27573, -61.3347, -0.038176, 0, 0.307304, 0, 0.309666, 0, -0.307304, 0, -0.038176, -7.91276, -4.27573, -45.6538, 0.252155, 0, 0.0524158, 0, 0.257545, 0, -0.0524158, 0, 0.252155, 15.854, -4.27573, 60.0758, -0.176632, 0, 0.318943, 0, 0.364587, 0, -0.318943, 0, -0.176632, 18.5023, -4.27573, 55.2142, -0.325386, 0, -0.22777, 0, 0.397184, 0, 0.22777, 0, -0.325386, -3.7994, -4.27573, 31.4474, -0.293739, 0, 0.0277259, 0, 0.295045, 0, -0.0277259, 0, -0.293739, 14.564, -4.27573, -0.881126, 0.250294, 0, 0.0679478, 0, 0.259353, 0, -0.0679478, 0, 0.250294, -9.00517, -4.27573, -18.3751, 0.335988, 0, 0.130316, 0, 0.360375, 0, -0.130316, 0, 0.335988, -6.63701, -4.27573, 30.8651, -0.233469, 0, 0.128927, 0, 0.266702, 0, -0.128927, 0, -0.233469, 17.1595, -4.27573, -35.0864, 0.317366, 0, 0.209331, 0, 0.380185, 0, -0.209331, 0, 0.317366, 24.1312, -4.27573, -63.2623, 0.216352, 0, -0.190523, 0, 0.288283, 0, 0.190523, 0, 0.216352, -10.3604, -4.27573, 63.3639, -0.134703, 0, -0.176023, 0, 0.221651, 0, 0.176023, 0, -0.134703, -7.75996, -4.27573, 34.4209, 0.305424, 0, -0.091498, 0, 0.318835, 0, 0.091498, 0, 0.305424, 29.8302, -4.27573, -8.84459, 0.203404, 0, -0.0576312, 0, 0.211411, 0, 0.0576312, 0, 0.203404, 12.1537, -4.27573, 5.74903, 0.0457285, 0, -0.233128, 0, 0.23757, 0, 0.233128, 0, 0.0457285, 6.09895, -4.27573, 7.86959, 0.239912, 0, -0.219062, 0, 0.324878, 0, 0.219062, 0, 0.239912, 31.4143, -4.27573, -24.3929, -0.171016, 0, -0.234667, 0, 0.29037, 0, 0.234667, 0, -0.171016, 24.6605, -4.27573, 48.6087, 0.209263, 0, -0.06192, 0, 0.218232, 0, 0.06192, 0, 0.209263, -8.24717, -4.27573, -2.09755, -0.387593, 0, 0.0838451, 0, 0.396559, 0, -0.0838451, 0, -0.387593, 17.6014, -4.27573, -28.87, -0.0622563, 0, -0.30234, 0, 0.308683, 0, 0.30234, 0, -0.0622563, 12.3924, -4.27573, -52.3029, 0.00318508, 0, 0.290929, 0, 0.290946, 0, -0.290929, 0, 0.00318508, -3.0375, -4.27573, -30.9791, -0.268477, 0, -0.124845, 0, 0.296085, 0, 0.124845, 0, -0.268477, -0.76366, -4.27573, -3.67079, 0.123923, 0, 0.288445, 0, 0.313939, 0, -0.288445, 0, 0.123923, 22.4837, -4.27573, -52.0147, -0.106893, 0, -0.326328, 0, 0.343389, 0, 0.326328, 0, -0.106893, 28.9801, -4.27573, -2.15746, -0.207312, 0, 0.203552, 0, 0.290537, 0, -0.203552, 0, -0.207312, 28.3926, -4.27573, -16.4806, -0.141429, 0, 0.211271, 0, 0.254239, 0, -0.211271, 0, -0.141429, -0.195564, -4.27573, -41.1405, -0.180995, 0, -0.325196, 0, 0.372171, 0, 0.325196, 0, -0.180995, -6.27978, -4.27573, -10.1378, 0.0726571, 0, 0.223751, 0, 0.235253, 0, -0.223751, 0, 0.0726571, -9.25179, -4.27573, 28.3085, -0.164556, 0, -0.209352, 0, 0.266283, 0, 0.209352, 0, -0.164556, 13.448, -4.27573, -18.8762, -0.207746, 0, 0.276844, 0, 0.346123, 0, -0.276844, 0, -0.207746, 11.1705, -4.27573, -2.34309, 0.217519, 0, -0.0187944, 0, 0.218329, 0, 0.0187944, 0, 0.217519, 3.30015, -4.27573, -60.6032, -0.265581, 0, -0.128152, 0, 0.294883, 0, 0.128152, 0, -0.265581, -9.9853, -4.27573, 6.80464, -0.200465, 0, -0.126368, 0, 0.23697, 0, 0.126368, 0, -0.200465, 17.9548, -4.27573, -39.7337, 0.386023, 0, 0.082597, 0, 0.394761, 0, -0.082597, 0, 0.386023, -11.5002, -4.27573, -48.8349, -0.00711353, 0, -0.366932, 0, 0.367001, 0, 0.366932, 0, -0.00711353, 28.941, -4.27573, -62.4204, -0.260844, 0, -0.195214, 0, 0.325804, 0, 0.195214, 0, -0.260844, 30.1738, -4.27573, -20.0132, 0.0698279, 0, 0.355882, 0, 0.362668, 0, -0.355882, 0, 0.0698279, 24.4485, -4.27573, -27.0758, -0.157851, 0, 0.347481, 0, 0.381655, 0, -0.347481, 0, -0.157851, 27.1536, -4.27573, 60.7049, -0.0299599, 0, 0.203165, 0, 0.205362, 0, -0.203165, 0, -0.0299599, -6.63581, -4.27573, -42.0027, 0.143929, 0, -0.321681, 0, 0.352412, 0, 0.321681, 0, 0.143929, 9.61455, -4.27573, -52.6249, 0.300424, 0, -0.240379, 0, 0.384755, 0, 0.240379, 0, 0.300424, 0.581184, -4.27573, 16.717, 0.336481, 0, -0.200884, 0, 0.391885, 0, 0.200884, 0, 0.336481, 13.7149, -4.27573, -36.934, -0.138375, 0, 0.155835, 0, 0.208404, 0, -0.155835, 0, -0.138375, 1.12393, -4.27573, -43.2465, -0.321158, 0, 0.238205, 0, 0.399855, 0, -0.238205, 0, -0.321158, 3.51435, -4.27573, -7.10532, 0.202221, 0, 0.0491249, 0, 0.208103, 0, -0.0491249, 0, 0.202221, 2.27929, -4.27573, -59.8629, -0.351743, 0, 0.0133016, 0, 0.351994, 0, -0.0133016, 0, -0.351743, 17.4443, -4.27573, 1.6278, -0.0510699, 0, -0.28299, 0, 0.287561, 0, 0.28299, 0, -0.0510699, 7.48924, -4.27573, 59.7045, 0.299873, 0, 0.247976, 0, 0.389122, 0, -0.247976, 0, 0.299873, 20.8771, -4.27573, -64.2382, 0.129255, 0, 0.169882, 0, 0.213464, 0, -0.169882, 0, 0.129255, 17.803, -4.27573, -48.4564, -0.372509, 0, -0.0247898, 0, 0.373333, 0, 0.0247898, 0, -0.372509, 16.5905, -4.27573, -26.1743, 0.329696, 0, -0.0130617, 0, 0.329954, 0, 0.0130617, 0, 0.329696, -3.07944, -4.27573, -59.4934, -0.126978, 0, 0.279553, 0, 0.307039, 0, -0.279553, 0, -0.126978, 5.33356, -4.27573, -13.2382, 0.3195, 0, 0.00270236, 0, 0.319512, 0, -0.00270236, 0, 0.3195, 10.1053, -4.27573, 70.0627, 0.190451, 0, 0.330069, 0, 0.381074, 0, -0.330069, 0, 0.190451, 12.6199, -4.27573, 69.1055, -0.273265, 0, -0.27261, 0, 0.385992, 0, 0.27261, 0, -0.273265, -2.93132, -4.27573, 9.02082, 0.23305, 0, 0.182497, 0, 0.296002, 0, -0.182497, 0, 0.23305, -0.177505, -4.27573, 37.9201, -0.196141, 0, 0.174195, 0, 0.262326, 0, -0.174195, 0, -0.196141, 13.4764, -4.27573, 21.9801, -0.0390826, 0, -0.276713, 0, 0.279459, 0, 0.276713, 0, -0.0390826, 14.5646, -4.27573, -26.2112, 0.220177, 0, -0.0930403, 0, 0.239028, 0, 0.0930403, 0, 0.220177, -11.2397, -4.27573, 47.5554, 0.282066, 0, 0.0213675, 0, 0.282874, 0, -0.0213675, 0, 0.282066, 23.5726, -4.27573, -32.1968, -0.305461, 0, -0.192256, 0, 0.360927, 0, 0.192256, 0, -0.305461, 0.130531, -4.27573, 45.4705, 0.0306734, 0, -0.289331, 0, 0.290952, 0, 0.289331, 0, 0.0306734, 11.8704, -4.27573, 51.3322, -0.0947784, 0, 0.259065, 0, 0.275858, 0, -0.259065, 0, -0.0947784, -0.384438, -4.27573, 5.0923, -0.195521, 0, -0.128185, 0, 0.233795, 0, 0.128185, 0, -0.195521, 29.7946, -4.27573, 58.9742, 0.153203, 0, -0.135434, 0, 0.204483, 0, 0.135434, 0, 0.153203, -7.94444, -4.27573, 35.2542, -0.0286908, 0, 0.281593, 0, 0.283051, 0, -0.281593, 0, -0.0286908, 5.3127, -4.27573, -13.0723, -0.0851896, 0, -0.18899, 0, 0.207303, 0, 0.18899, 0, -0.0851896, 4.41947, -4.27573, 71.6559, -0.236265, 0, -0.0598056, 0, 0.243716, 0, 0.0598056, 0, -0.236265, -2.24166, -4.27573, 18.8516, 0.0743811, 0, 0.216655, 0, 0.229068, 0, -0.216655, 0, 0.0743811, 30.2211, -4.27573, -49.7693, 0.180887, 0, -0.219992, 0, 0.28481, 0, 0.219992, 0, 0.180887, 8.26025, -4.27573, 15.6031, -0.178558, 0, 0.140546, 0, 0.227236, 0, -0.140546, 0, -0.178558, 19.9646, -4.27573, -24.6092, -0.339177, 0, -0.00518883, 0, 0.339217, 0, 0.00518883, 0, -0.339177, 26.2477, -4.27573, 69.0015, 0.171131, 0, 0.136866, 0, 0.21913, 0, -0.136866, 0, 0.171131, 6.48644, -4.27573, 55.1852, -0.247827, 0, 0.233431, 0, 0.340453, 0, -0.233431, 0, -0.247827, 10.9073, -4.27573, -43.2606, 0.29727, 0, 0.0879533, 0, 0.310009, 0, -0.0879533, 0, 0.29727, 29.8867, -4.27573, 23.9966, -0.222238, 0, -0.252951, 0, 0.336711, 0, 0.252951, 0, -0.222238, 6.66706, -4.27573, -43.0615, 0.053037, 0, -0.391535, 0, 0.395111, 0, 0.391535, 0, 0.053037, 26.8904, -4.27573, 69.0391, 0.355661, 0, -0.160836, 0, 0.390337, 0, 0.160836, 0, 0.355661, -4.67128, -4.27573, 72.7899, -0.230974, 0, -0.244858, 0, 0.336607, 0, 0.244858, 0, -0.230974, -8.77511, -4.27573, -61.1632, -0.00509976, 0, -0.213164, 0, 0.213225, 0, 0.213164, 0, -0.00509976, -6.65824, -4.27573, -29.4149, -0.13075, 0, -0.20567, 0, 0.243713, 0, 0.20567, 0, -0.13075, 22.4205, -4.27573, -65.9937, -0.135459, 0, 0.191466, 0, 0.234538, 0, -0.191466, 0, -0.135459, -8.23227, -4.27573, -21.4919, 0.101349, 0, -0.229019, 0, 0.250442, 0, 0.229019, 0, 0.101349, 21.0927, -4.27573, -13.2049, 0.047855, 0, 0.377461, 0, 0.380482, 0, -0.377461, 0, 0.047855, 30.0573, -4.27573, 40.4255, 0.216125, 0, 0.185107, 0, 0.284561, 0, -0.185107, 0, 0.216125, -13.2703, -4.27573, -41.3736, -0.271435, 0, -0.218604, 0, 0.348518, 0, 0.218604, 0, -0.271435, 17.8222, -4.27573, 51.7527, 0.356602, 0, 0.0953207, 0, 0.369122, 0, -0.0953207, 0, 0.356602, 31.3877, -4.27573, 57.0997, -0.0996905, 0, 0.27482, 0, 0.292343, 0, -0.27482, 0, -0.0996905, 0.810165, -4.27573, 22.2893, 0.357162, 0, -0.0521174, 0, 0.360945, 0, 0.0521174, 0, 0.357162, -0.608261, -4.27573, -63.0527, -0.384015, 0, 0.0133429, 0, 0.384247, 0, -0.0133429, 0, -0.384015, 1.54248, -4.27573, 62.2231, 0.352186, 0, 0.02733, 0, 0.353245, 0, -0.02733, 0, 0.352186, 9.26063, -4.27573, 21.7746, -0.225131, 0, 0.0636879, 0, 0.233966, 0, -0.0636879, 0, -0.225131, 22.3888, -4.27573, -58.9742, 0.250532, 0, -0.192197, 0, 0.315763, 0, 0.192197, 0, 0.250532, -9.49015, -4.27573, 11.8813, 0.0311837, 0, 0.270036, 0, 0.27183, 0, -0.270036, 0, 0.0311837, 6.39832, -4.27573, 5.24258, 0.0452368, 0, 0.234434, 0, 0.238758, 0, -0.234434, 0, 0.0452368, 12.7475, -4.27573, -1.41294, 0.267142, 0, 0.0888498, 0, 0.28153, 0, -0.0888498, 0, 0.267142, 21.4401, -4.27573, -0.608724 ) [sub_resource type="Curve3D" id=11] @@ -411,13 +411,11 @@ transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0341525, 183.479, 0.0170984 [node name="grass" type="Path" parent="Environment/grass-scatters"] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0117989, 183.341, 0.032819 ) -curve = SubResource( 2 ) +curve = SubResource( 1 ) script = ExtResource( 6 ) bake_interval = 5.0 -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":3000,"_rng":Object(RandomNumberGenerator,"seed":5556550819656167535,"state":5075664136633145122,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":5570693362334884271,"state":3772973385647095650,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":3000,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":true,"invert_ray_direction":false,"floor_direction":Vector3( 0, -8, 0 )) ],"just_created":false,"undo_redo":null) @@ -437,10 +435,8 @@ curve = SubResource( 4 ) script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 4 -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":1000,"_rng":Object(RandomNumberGenerator,"seed":7130113821131403273,"state":3162033508817414964,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-1562316951065661101,"state":7204121588814879542,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":1000,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -461,10 +457,8 @@ curve = SubResource( 6 ) script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 1 -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":3000,"_rng":Object(RandomNumberGenerator,"seed":5557790195088634304,"state":4521817505467859295,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-3045112914189766672,"state":-7201922416439918641,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":3000,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":true,"invert_ray_direction":false,"floor_direction":Vector3( 0, -8, 0 )) ],"just_created":false,"undo_redo":null) @@ -485,10 +479,8 @@ curve = SubResource( 9 ) script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 3 -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":1000,"_rng":Object(RandomNumberGenerator,"seed":5993195602826176246,"state":1502369763576178141,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-4835668975019017070,"state":-1006414484669393335,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":1000,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -527,10 +519,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 2 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":Object(RandomNumberGenerator,"seed":-128620941668748357,"state":-201925249234886786,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-5428359995348934761,"state":-2746082144228443862,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -623,10 +613,8 @@ curve = SubResource( 12 ) script = ExtResource( 6 ) bake_interval = 5.0 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":120,"_rng":Object(RandomNumberGenerator,"seed":864029209076508767,"state":7240156540465134674,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":1553212523692346415,"state":89277435494741986,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":120,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -4, 0 )) ],"just_created":false,"undo_redo":null) @@ -989,10 +977,8 @@ curve = SubResource( 13 ) script = ExtResource( 6 ) bake_interval = 5.0 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100,"_rng":Object(RandomNumberGenerator,"seed":1009880751013623311,"state":1034232510706725954,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":2725799953364770839,"state":1629781496755605418,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -1310,10 +1296,8 @@ curve = SubResource( 14 ) script = ExtResource( 6 ) bake_interval = 5.0 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":35,"_rng":Object(RandomNumberGenerator,"seed":-5399036623874946151,"state":3288454034054902660,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":8488990407274927729,"state":-5421379130108935300,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":35,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -1436,10 +1420,8 @@ curve = SubResource( 15 ) script = ExtResource( 6 ) bake_interval = 5.0 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100,"_rng":Object(RandomNumberGenerator,"seed":4387459533245650017,"state":4533414439990179500,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":2725799953364770839,"state":1629781496755605418,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -1757,10 +1739,8 @@ curve = SubResource( 16 ) script = ExtResource( 6 ) bake_interval = 5.0 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100.0,"_rng":Object(RandomNumberGenerator,"seed":8816611147728734861,"state":6474431019998351464,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":2725799953364770839,"state":1629781496755605418,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100.0,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -2060,10 +2040,8 @@ curve = SubResource( 17 ) script = ExtResource( 6 ) bake_interval = 5.0 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":50,"_rng":Object(RandomNumberGenerator,"seed":7732641319289960517,"state":-964548447396879936,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":8467516051146619451,"state":-2044174301466557442,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":50,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -2231,10 +2209,8 @@ curve = SubResource( 18 ) script = ExtResource( 6 ) bake_interval = 5.0 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":55,"_rng":Object(RandomNumberGenerator,"seed":1694192312831352967,"state":436840859082371930,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-6540206396216108471,"state":-3988530326075615116,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":55,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -2417,10 +2393,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 4 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":Object(RandomNumberGenerator,"seed":-7325840406763388725,"state":-8966221084210226354,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":6684335615283113801,"state":406838509348227444,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -2514,10 +2488,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 1 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":120,"_rng":Object(RandomNumberGenerator,"seed":6697686051177056914,"state":-8796880999470887863,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-4861776993857301392,"state":6063248221251971663,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":120,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -4, 0 )) ],"just_created":false,"undo_redo":null) @@ -2881,10 +2853,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 1 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100,"_rng":Object(RandomNumberGenerator,"seed":-3884983834846172456,"state":-637921452994039145,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":2919718453492436216,"state":-2648241208606387657,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -3203,10 +3173,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 1 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100.0,"_rng":Object(RandomNumberGenerator,"seed":-103833403340608936,"state":-6809969582869046249,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":2919718453492436216,"state":-2648241208606387657,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100.0,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -3525,10 +3493,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 1 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":10,"_rng":Object(RandomNumberGenerator,"seed":-6193821942035847552,"state":-7954004469532391649,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-5252614328602611396,"state":8317620692481601067,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":10,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -3577,10 +3543,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 4 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":45,"_rng":Object(RandomNumberGenerator,"seed":6230815531025472357,"state":-3375854143537910176,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-336389380187329503,"state":9176676707129844588,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":45,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -3734,10 +3698,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 1 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":Object(RandomNumberGenerator,"seed":6178852706074792726,"state":-8443305111969937539,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":6962036273044592574,"state":-4322542471016779515,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -3831,10 +3793,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 1 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":30,"_rng":Object(RandomNumberGenerator,"seed":-1725787450753065084,"state":-1931257467519678253,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-1183500440823861708,"state":6634041799598190019,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":30,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -3945,10 +3905,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 5 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":Object(RandomNumberGenerator,"seed":-3977665906267324592,"state":9087912458553955247,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-5706060653110413534,"state":1983298836136563097,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -4042,10 +4000,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 2 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":120,"_rng":Object(RandomNumberGenerator,"seed":-4068575971832473451,"state":7097555851280744400,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":7169977562302602417,"state":-6409525066700350276,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":120,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -4, 0 )) ],"just_created":false,"undo_redo":null) @@ -4406,10 +4362,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 2 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":Object(RandomNumberGenerator,"seed":-8161498102903143293,"state":-8092035672165135706,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-5428359995348934761,"state":-2746082144228443862,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -4503,10 +4457,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 2 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100.0,"_rng":Object(RandomNumberGenerator,"seed":-974943242299981531,"state":-9080225085644779232,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":3113636953620101593,"state":-6926263913968380732,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":100.0,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -4822,10 +4774,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 2 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":Object(RandomNumberGenerator,"seed":484470521868371017,"state":8082416774248315508,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-5428359995348934761,"state":-2746082144228443862,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -4919,10 +4869,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 3 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":60,"_rng":Object(RandomNumberGenerator,"seed":-240552778307323824,"state":-3204094895988762449,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":5380259008586891594,"state":2541879066244985505,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":60,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -5121,10 +5069,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 2 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":Object(RandomNumberGenerator,"seed":-8707538787643024433,"state":992125099344434946,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-5428359995348934761,"state":-2746082144228443862,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":25,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -5218,10 +5164,8 @@ script = ExtResource( 6 ) bake_interval = 5.0 global_seed = 2 use_instancing = false -modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":30,"_rng":Object(RandomNumberGenerator,"seed":3100801676944300115,"state":-2770384097888586186,"script":null) -) -, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":Object(RandomNumberGenerator,"seed":-3516773959821461819,"state":-4864618006094045632,"script":null) -) +modifier_stack = Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/core/modifier_stack.gd" ),"stack":[ Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/distribute_inside_random.gd" ),"enabled":true,"display_name":"Distribute Inside (Random)","category":"Distribute","warning":"","warning_ignore_no_transforms":true,"override_global_seed":false,"custom_seed":0.0,"instance_count":30,"_rng":null) +, Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/randomize_transforms.gd" ),"enabled":true,"display_name":"Randomize Transforms","category":"Edit","warning":"","warning_ignore_no_transforms":false,"override_global_seed":false,"custom_seed":0,"local_space":true,"position":Vector3( 1, 0, 1 ),"rotation":Vector3( 0, 360, 0 ),"scale":Vector3( 1, 1, 1 ),"_rng":null) , Object(Node,"_import_path":NodePath(""),"pause_mode":0,"process_priority":0,"script":Resource( "res://addons/scatter/src/modifiers/project_on_floor.gd" ),"enabled":true,"display_name":"Project On Floor","category":"Edit","warning":"","warning_ignore_no_transforms":false,"ray_length":10.0,"ray_offset":4.0,"remove_points_on_miss":true,"align_with_floor_normal":false,"invert_ray_direction":false,"floor_direction":Vector3( 0, -1, 0 )) ],"just_created":false,"undo_redo":null) @@ -5649,6 +5593,579 @@ transform = Transform( -2.01807, 0.0809144, 0.374187, 0.0787104, 2.05246, -0.019 [node name="fence-lod108" parent="Environment/fence" instance=ExtResource( 44 )] transform = Transform( -2.01446, 0.0809145, 0.393155, 0.0785251, 2.05246, -0.0200644, -0.393637, -0.00464756, -2.016, 55.3766, 177.788, -11.5691 ) +[node name="fence-lod109" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -0.405251, -0.0499402, 2.01308, 0.0114166, 2.05334, 0.053238, -2.01365, 0.0216922, -0.404835, 47.2371, 176.962, -3.80504 ) + +[node name="fence-lod169" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -0.405251, -0.0499402, 2.01308, 0.0114166, 2.05334, 0.053238, -2.01365, 0.0216922, -0.404835, 46.8201, 176.974, -5.87727 ) + +[node name="fence-lod170" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -0.349203, -0.0499402, 2.02356, 0.0128904, 2.05334, 0.0529005, -2.02412, 0.0216922, -0.34877, 46.4688, 176.988, -7.94845 ) + +[node name="fence-lod171" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -0.349203, -0.0499402, 2.02356, 0.0128904, 2.05334, 0.0529005, -2.02412, 0.0216922, -0.34877, 46.112, 177.001, -10.0161 ) + +[node name="fence-lod172" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -0.349203, -0.0499402, 2.02356, 0.0128904, 2.05334, 0.0529005, -2.02412, 0.0216922, -0.34877, 45.7499, 177.014, -12.1151 ) + +[node name="fence-lod173" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.731474, -0.103185, 1.91664, 0.186779, 2.04518, 0.0388223, -1.91029, 0.160457, 0.737701, 46.4368, 177.217, -14.1299 ) + +[node name="fence-lod174" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.14624, -0.0967718, 1.70176, 0.173258, 2.04674, -0.000310926, -1.69566, 0.143714, 1.15033, 47.6284, 177.377, -15.8744 ) + +[node name="fence-lod175" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.14624, -0.0967718, 1.70176, 0.173258, 2.04674, -0.000310926, -1.69566, 0.143714, 1.15033, 48.8034, 177.555, -17.6126 ) + +[node name="fence-lod176" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.14711, -0.0858445, 1.70176, 0.153746, 2.0483, -0.000310913, -1.69696, 0.127549, 1.15033, 49.9651, 177.695, -19.3312 ) + +[node name="fence-lod177" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.36072, 0.0551018, 1.53773, -0.0601452, 2.05308, -0.0203471, -1.53753, -0.0315472, 1.36169, 51.3486, 177.617, -20.8489 ) + +[node name="fence-lod178" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72992, 0.24666, 1.07968, -0.328468, 2.02664, 0.0632917, -1.05766, -0.225955, 1.74629, 53.0327, 177.266, -21.8447 ) + +[node name="fence-lod179" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73936, 0.167688, 1.07968, -0.23591, 2.03948, 0.0632916, -1.06684, -0.177595, 1.74629, 54.8233, 177.017, -22.9428 ) + +[node name="fence-lod180" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73936, 0.167688, 1.07968, -0.23591, 2.03948, 0.0632916, -1.06684, -0.177595, 1.74629, 56.629, 176.772, -24.0503 ) + +[node name="fence-lod181" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02557, 0.0231713, 0.340147, -0.0482754, 2.04815, 0.147958, -0.337498, -0.153898, 2.02031, 58.7292, 176.698, -24.3937 ) + +[node name="fence-lod182" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05336, 0.0258108, 0.0472011, -0.0267379, 2.05349, 0.0402545, -0.0466819, -0.0408547, 2.05314, 60.8339, 176.671, -24.4711 ) + +[node name="fence-lod183" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05336, 0.0258108, 0.0472011, -0.0267379, 2.05349, 0.0402545, -0.0466819, -0.0408547, 2.05314, 62.9569, 176.644, -24.5194 ) + +[node name="fence-lod184" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.04582, 0.177625, 0.0472011, -0.17856, 2.04589, 0.0402545, -0.043532, -0.0441958, 2.05314, 65.0544, 176.471, -24.5642 ) + +[node name="fence-lod185" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.276285, -0.15021, -0.272017, 2.03487, 0.0669296, 0.157808, -0.046248, 2.04748, 67.0881, 176.172, -24.3861 ) + +[node name="fence-lod186" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.276285, -0.15021, -0.272017, 2.03487, 0.0669296, 0.157808, -0.046248, 2.04748, 69.1456, 175.896, -24.2261 ) + +[node name="fence-lod187" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.276285, -0.15021, -0.272017, 2.03487, 0.0669296, 0.157808, -0.046248, 2.04748, 71.2009, 175.621, -24.0663 ) + +[node name="fence-lod188" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.276285, -0.15021, -0.272017, 2.03487, 0.0669296, 0.157808, -0.046248, 2.04748, 73.2794, 175.342, -23.9048 ) + +[node name="fence-lod189" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.276286, -0.15021, -0.272017, 2.03487, 0.0669296, 0.157808, -0.046248, 2.04748, 75.3171, 175.044, -23.7455 ) + +[node name="fence-lod190" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.276286, -0.15021, -0.272017, 2.03487, 0.0669296, 0.157808, -0.046248, 2.04748, 77.3954, 174.748, -23.5834 ) + +[node name="fence-lod191" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.270475, -0.160437, -0.272017, 2.03595, -0.00920904, 0.157808, 0.0303467, 2.04778, 79.4598, 174.472, -23.4405 ) + +[node name="fence-lod192" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.270475, -0.160437, -0.272017, 2.03595, -0.00920904, 0.157808, 0.0303467, 2.04778, 81.5278, 174.192, -23.2798 ) + +[node name="fence-lod193" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.270475, -0.160437, -0.272017, 2.03595, -0.00920904, 0.157808, 0.0303467, 2.04778, 83.5494, 173.901, -23.1227 ) + +[node name="fence-lod194" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.270475, -0.160437, -0.272017, 2.03595, -0.00920904, 0.157808, 0.0303467, 2.04778, 85.6464, 173.616, -22.9597 ) + +[node name="fence-lod195" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.270475, -0.160437, -0.272017, 2.03595, -0.00920904, 0.157808, 0.0303467, 2.04778, 87.6427, 173.326, -22.8046 ) + +[node name="fence-lod196" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.270475, -0.160437, -0.272017, 2.03595, -0.00920904, 0.157808, 0.0303467, 2.04778, 89.7452, 173.065, -22.641 ) + +[node name="fence-lod197" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02984, 0.270475, -0.160437, -0.272017, 2.03595, -0.00920904, 0.157808, 0.0303467, 2.04778, 91.7918, 172.774, -22.482 ) + +[node name="fence-lod198" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02252, 0.270476, -0.235381, -0.272171, 2.03595, 0.000855178, 0.233417, 0.0303467, 2.04054, 93.83, 172.467, -22.2217 ) + +[node name="fence-lod199" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02252, 0.270476, -0.235381, -0.272171, 2.03595, 0.000855178, 0.233417, 0.0303467, 2.04054, 95.927, 172.185, -21.9797 ) + +[node name="fence-lod200" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02252, 0.270476, -0.235381, -0.272171, 2.03595, 0.000855178, 0.233417, 0.0303467, 2.04054, 97.9963, 171.89, -21.7408 ) + +[node name="fence-lod201" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02252, 0.270476, -0.235381, -0.272171, 2.03595, 0.000855178, 0.233417, 0.0303467, 2.04054, 100.075, 171.612, -21.5009 ) + +[node name="fence-lod202" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02252, 0.270476, -0.235381, -0.272171, 2.03595, 0.000855178, 0.233417, 0.0303467, 2.04054, 102.151, 171.319, -21.2613 ) + +[node name="fence-lod203" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.03368, 0.270476, -0.10068, -0.271628, 2.03595, -0.0172037, 0.0975263, 0.0303467, 2.05153, 104.235, 171.022, -21.1507 ) + +[node name="fence-lod204" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.03368, 0.270476, -0.10068, -0.271628, 2.03595, -0.0172037, 0.0975263, 0.0303467, 2.05153, 106.321, 170.743, -21.0507 ) + +[node name="fence-lod205" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.03368, 0.270476, -0.10068, -0.271628, 2.03595, -0.0172037, 0.0975263, 0.0303467, 2.05153, 108.423, 170.454, -20.95 ) + +[node name="fence-lod206" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.03368, 0.270476, -0.10068, -0.271628, 2.03595, -0.0172037, 0.0975263, 0.0303467, 2.05153, 110.463, 170.169, -20.8522 ) + +[node name="fence-lod207" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.03082, 0.270476, -0.147538, -0.271953, 2.03595, -0.010937, 0.144796, 0.0303467, 2.04874, 112.535, 169.872, -20.7108 ) + +[node name="fence-lod208" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.02827, 0.270476, -0.179277, -0.272091, 2.03595, -0.00668294, 0.176815, 0.0303467, 2.04623, 114.622, 169.593, -20.5397 ) + +[node name="fence-lod209" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.03833, 0.179505, -0.179277, -0.180775, 2.04608, -0.00668294, 0.177995, 0.0224095, 2.04623, 116.733, 169.388, -20.3553 ) + +[node name="fence-lod210" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05111, 0.0717571, 0.083319, -0.0706002, 2.05263, -0.029786, -0.084301, 0.0268793, 2.05217, 118.826, 169.244, -20.4316 ) + +[node name="fence-lod211" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05234, 0.0115214, 0.083319, -0.0103205, 2.05382, -0.0297859, -0.0834757, 0.0293421, 2.05217, 120.946, 169.272, -20.5172 ) + +[node name="fence-lod213" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.04565, 0.165942, 0.083319, -0.164856, 2.04722, -0.0297859, -0.0854472, 0.0229768, 2.05217, 124.118, 168.783, -13.0808 ) + +[node name="fence-lod214" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.04565, 0.165942, 0.083319, -0.164856, 2.04722, -0.0297859, -0.0854472, 0.0229768, 2.05217, 126.232, 168.613, -13.1691 ) + +[node name="fence-lod215" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.04565, 0.165942, 0.083319, -0.164856, 2.04722, -0.0297859, -0.0854472, 0.0229768, 2.05217, 128.361, 168.441, -13.258 ) + +[node name="fence-lod216" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.988573, -0.0841563, 1.79857, 0.23615, 2.04015, -0.0343387, -1.78497, 0.223301, 0.991561, 129.434, 168.687, -15.1912 ) + +[node name="fence-lod217" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.990914, -0.0494832, 1.79857, 0.164555, 2.04717, -0.0343387, -1.7917, 0.160652, 0.991561, 130.428, 168.831, -16.9893 ) + +[node name="fence-lod218" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.990914, -0.0494832, 1.79857, 0.164555, 2.04717, -0.0343387, -1.7917, 0.160652, 0.991561, 131.445, 168.999, -18.8277 ) + +[node name="fence-lod219" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.990914, -0.0494832, 1.79857, 0.164555, 2.04717, -0.0343387, -1.7917, 0.160652, 0.991561, 132.459, 169.168, -20.6607 ) + +[node name="fence-lod220" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.990914, -0.0494832, 1.79857, 0.164555, 2.04717, -0.0343387, -1.7917, 0.160652, 0.991561, 133.462, 169.334, -22.4739 ) + +[node name="fence-lod221" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -0.480075, -0.0759688, 1.99574, 0.0452488, 2.05163, 0.0889822, -1.99666, 0.0647605, -0.477837, 132.96, 169.418, -24.5172 ) + +[node name="fence-lod222" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -0.478133, 0.00887696, 1.99763, -0.00352956, 2.05403, -0.00997254, -1.99763, -0.00575391, -0.478115, 132.479, 169.395, -26.5316 ) + +[node name="fence-lod223" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -0.478133, 0.00887696, 1.99763, -0.00352956, 2.05403, -0.00997254, -1.99763, -0.00575391, -0.478115, 131.983, 169.391, -28.6047 ) + +[node name="fence-lod224" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -1.18696, 0.00887696, 1.67638, 0.000433687, 2.05403, -0.0105698, -1.67639, -0.00575391, -1.18696, 130.753, 169.391, -30.3963 ) + +[node name="fence-lod225" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -1.62514, 0.0451912, 1.25541, 0.0493921, 2.05344, -0.00997972, -1.25524, 0.0222917, -1.62575, 129.117, 169.491, -31.6678 ) + +[node name="fence-lod226" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -1.62514, 0.0451912, 1.25541, 0.0493921, 2.05344, -0.00997972, -1.25524, 0.0222917, -1.62575, 127.449, 169.542, -32.9563 ) + +[node name="fence-lod227" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -1.62555, -0.0265055, 1.25541, -0.0411926, 2.05362, -0.00997972, -1.25501, -0.0330739, -1.62575, 125.786, 169.525, -34.2409 ) + +[node name="fence-lod228" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -1.99321, -0.116205, 0.482483, -0.106933, 2.05061, 0.0521317, -0.484619, 0.0254693, -1.99592, 123.712, 169.413, -34.763 ) + +[node name="fence-lod229" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -1.99321, -0.116205, 0.482483, -0.106933, 2.05061, 0.0521317, -0.484619, 0.0254693, -1.99592, 121.654, 169.303, -35.2634 ) + +[node name="fence-lod230" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.0364, -0.116205, 0.242373, -0.112367, 2.05061, 0.0390644, -0.244175, 0.0254693, -2.03935, 119.557, 169.187, -35.5055 ) + +[node name="fence-lod231" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.04414, -0.19813, -0.0372721, -0.198149, 2.04448, -0.000771342, 0.0371724, 0.00282788, -2.05374, 117.459, 168.928, -35.4602 ) + +[node name="fence-lod232" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.0365, -0.226114, -0.143889, -0.226192, 2.04155, -0.00683907, 0.143765, 0.00906432, -2.04902, 115.348, 168.675, -35.3085 ) + +[node name="fence-lod233" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03907, -0.201644, -0.143889, -0.201662, 2.04412, -0.00683906, 0.143863, 0.0073374, -2.04902, 113.235, 168.456, -35.1593 ) + +[node name="fence-lod234" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03907, -0.201644, -0.143889, -0.201662, 2.04412, -0.00683906, 0.143863, 0.0073374, -2.04902, 111.162, 168.251, -35.0131 ) + +[node name="fence-lod235" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03907, -0.201644, -0.143889, -0.201662, 2.04412, -0.00683906, 0.143863, 0.0073374, -2.04902, 109.05, 168.042, -34.8641 ) + +[node name="fence-lod236" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03907, -0.201644, -0.143889, -0.201662, 2.04412, -0.00683906, 0.143863, 0.0073374, -2.04902, 106.937, 167.833, -34.715 ) + +[node name="fence-lod237" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03907, -0.201644, -0.143889, -0.201662, 2.04412, -0.00683906, 0.143863, 0.0073374, -2.04902, 104.83, 167.624, -34.5663 ) + +[node name="fence-lod238" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03907, -0.201644, -0.143889, -0.201662, 2.04412, -0.00683906, 0.143863, 0.0073374, -2.04902, 102.681, 167.412, -34.4147 ) + +[node name="fence-lod239" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03907, -0.201644, -0.143889, -0.201662, 2.04412, -0.00683906, 0.143863, 0.0073374, -2.04902, 100.544, 167.201, -34.2639 ) + +[node name="fence-lod240" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03907, -0.201644, -0.143889, -0.201662, 2.04412, -0.00683906, 0.143863, 0.0073374, -2.04902, 98.4256, 166.991, -34.1145 ) + +[node name="fence-lod241" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03907, -0.201644, -0.143889, -0.201662, 2.04412, -0.00683906, 0.143863, 0.0073374, -2.04902, 96.3383, 166.785, -33.9672 ) + +[node name="fence-lod242" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03421, -0.201644, -0.201229, -0.201389, 2.04412, -0.0125129, 0.201483, 0.00733738, -2.04415, 94.2164, 166.575, -33.7577 ) + +[node name="fence-lod243" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03421, -0.201644, -0.201229, -0.201389, 2.04412, -0.0125129, 0.201483, 0.00733738, -2.04415, 92.1315, 166.351, -33.5511 ) + +[node name="fence-lod244" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03397, -0.204023, -0.201229, -0.203779, 2.04389, -0.0125129, 0.201474, 0.00757298, -2.04415, 90.0551, 166.111, -33.3452 ) + +[node name="fence-lod245" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.04017, -0.204023, -0.123535, -0.204108, 2.04389, -0.00473437, 0.123392, 0.00757301, -2.05035, 87.9658, 165.902, -33.2228 ) + +[node name="fence-lod246" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.04017, -0.204023, -0.123535, -0.204108, 2.04389, -0.00473437, 0.123392, 0.00757301, -2.05035, 85.8556, 165.691, -33.0952 ) + +[node name="fence-lod247" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.04017, -0.204023, -0.123535, -0.204108, 2.04389, -0.00473437, 0.123392, 0.00757301, -2.05035, 83.7687, 165.482, -32.969 ) + +[node name="fence-lod248" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.04017, -0.204023, -0.123535, -0.204108, 2.04389, -0.00473437, 0.123392, 0.00757301, -2.05035, 81.6446, 165.26, -32.8405 ) + +[node name="fence-lod249" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03884, -0.204023, -0.143718, -0.204052, 2.04389, -0.00675398, 0.143676, 0.00757302, -2.04903, 79.4995, 165.038, -32.6842 ) + +[node name="fence-lod250" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03884, -0.204023, -0.143718, -0.204052, 2.04389, -0.00675398, 0.143676, 0.00757302, -2.04903, 77.423, 164.827, -32.5379 ) + +[node name="fence-lod251" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03364, -0.204023, -0.20453, -0.203759, 2.04389, -0.0128436, 0.204792, 0.007573, -2.04383, 75.3423, 164.607, -32.3111 ) + +[node name="fence-lod252" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03364, -0.204023, -0.20453, -0.203759, 2.04389, -0.0128436, 0.204792, 0.007573, -2.04383, 73.2662, 164.389, -32.1019 ) + +[node name="fence-lod253" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03364, -0.204023, -0.20453, -0.203759, 2.04389, -0.0128436, 0.204792, 0.007573, -2.04383, 71.1345, 164.157, -31.8872 ) + +[node name="fence-lod254" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03364, -0.204023, -0.20453, -0.203759, 2.04389, -0.0128436, 0.204792, 0.007573, -2.04383, 69.0453, 163.927, -31.6766 ) + +[node name="fence-lod255" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03364, -0.204023, -0.20453, -0.203759, 2.04389, -0.0128436, 0.204792, 0.007573, -2.04383, 67.0016, 163.709, -31.4707 ) + +[node name="fence-lod256" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03364, -0.204023, -0.20453, -0.203759, 2.04389, -0.0128436, 0.204792, 0.007573, -2.04383, 64.9394, 163.481, -31.2629 ) + +[node name="fence-lod257" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.03364, -0.204023, -0.20453, -0.203759, 2.04389, -0.0128436, 0.204792, 0.007573, -2.04383, 62.8778, 163.258, -31.0552 ) + +[node name="fence-lod258" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -2.04311, -0.204023, -0.0570366, -0.204154, 2.04389, 0.00191438, 0.0565637, 0.00757302, -2.05328, 60.7904, 163.049, -31.0011 ) + +[node name="fence-lod260" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.582456, 0.0649259, 1.96869, -0.156092, 2.04801, -0.0213609, -1.96355, -0.143546, 0.585678, 49.1848, 163.563, -35.0311 ) + +[node name="fence-lod261" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.581791, 0.0706358, 1.96869, -0.176172, 2.04638, -0.0213609, -1.96205, -0.162799, 0.585678, 49.778, 163.387, -37.0316 ) + +[node name="fence-lod262" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.581791, 0.0706358, 1.96869, -0.176172, 2.04638, -0.0213609, -1.96205, -0.162799, 0.585678, 50.3805, 163.205, -39.0634 ) + +[node name="fence-lod263" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 0.938512, 0.0978641, 1.82451, -0.236257, 2.04039, 0.0120847, -1.81178, -0.215373, 0.943529, 51.3266, 162.984, -40.9627 ) + +[node name="fence-lod264" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.35099, 0.390277, 1.49723, -0.505115, 1.98999, -0.0629451, -1.46248, -0.326782, 1.40484, 52.6114, 162.445, -42.4268 ) + +[node name="fence-lod265" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.3571, 0.368488, 1.49723, -0.473029, 1.99786, -0.0629451, -1.46755, -0.303206, 1.40484, 54.0305, 161.947, -43.9615 ) + +[node name="fence-lod266" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.3571, 0.368488, 1.49723, -0.473029, 1.99786, -0.0629451, -1.46755, -0.303206, 1.40484, 55.4265, 161.461, -45.4711 ) + +[node name="fence-lod267" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.00467, 0.177897, 0.410878, -0.177331, 2.04628, -0.020783, -0.41112, -0.0151885, 2.01245, 57.5056, 161.298, -45.9543 ) + +[node name="fence-lod268" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.00492, 0.175028, 0.410878, -0.174402, 2.04653, -0.020783, -0.411141, -0.0146001, 2.01245, 59.5214, 161.109, -46.3678 ) + +[node name="fence-lod269" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.97995, 0.192307, 0.511845, -0.190741, 2.04495, -0.0304856, -0.512428, -0.0181443, 1.98905, 61.5241, 160.89, -46.895 ) + +[node name="fence-lod270" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.97418, 0.244518, 0.511845, -0.244669, 2.0392, -0.0304856, -0.51177, -0.031668, 1.98905, 63.529, 160.649, -47.4146 ) + +[node name="fence-lod271" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.9723, 0.259224, 0.511845, -0.259859, 2.03732, -0.0304856, -0.51152, -0.035481, 1.98905, 65.5201, 160.38, -47.9311 ) + +[node name="fence-lod272" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.9723, 0.259224, 0.511845, -0.259859, 2.03732, -0.0304856, -0.51152, -0.035481, 1.98905, 67.5418, 160.114, -48.4555 ) + +[node name="fence-lod273" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.96706, 0.259224, 0.531647, -0.25954, 2.03732, -0.0330965, -0.53149, -0.035481, 1.9838, 69.549, 159.849, -48.9919 ) + +[node name="fence-lod274" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.96706, 0.259224, 0.531647, -0.25954, 2.03732, -0.0330965, -0.53149, -0.035481, 1.9838, 71.58, 159.581, -49.5407 ) + +[node name="fence-lod275" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.96706, 0.259224, 0.531647, -0.25954, 2.03732, -0.0330965, -0.53149, -0.035481, 1.9838, 73.5826, 159.317, -50.0818 ) + +[node name="fence-lod276" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.96706, 0.259224, 0.531647, -0.25954, 2.03732, -0.0330965, -0.53149, -0.035481, 1.9838, 75.6615, 159.042, -50.6435 ) + +[node name="fence-lod277" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.96706, 0.259224, 0.531647, -0.25954, 2.03732, -0.0330965, -0.53149, -0.035481, 1.9838, 77.7211, 158.771, -51.2 ) + +[node name="fence-lod278" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.96706, 0.259224, 0.531647, -0.25954, 2.03732, -0.0330965, -0.53149, -0.035481, 1.9838, 79.8118, 158.495, -51.7649 ) + +[node name="fence-lod279" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.96706, 0.259224, 0.531647, -0.25954, 2.03732, -0.0330965, -0.53149, -0.035481, 1.9838, 81.8536, 158.225, -52.3166 ) + +[node name="fence-lod280" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.9694, 0.240811, 0.531647, -0.24047, 2.03966, -0.0330965, -0.531799, -0.0305075, 1.9838, 83.8781, 157.981, -52.8632 ) + +[node name="fence-lod281" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.9656, 0.270034, 0.531647, -0.270737, 2.03587, -0.0330965, -0.531287, -0.0384025, 1.9838, 85.9132, 157.703, -53.4132 ) + +[node name="fence-lod282" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.85896, 0.211974, 0.847645, -0.197781, 2.04306, -0.0771676, -0.851064, -0.0117796, 1.86943, 87.8266, 157.507, -54.2678 ) + +[node name="fence-lod283" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73955, 0.0498014, 1.09118, -0.009137, 2.05251, -0.0791117, -1.09227, 0.0621439, 1.73847, 89.7134, 157.495, -55.4505 ) + +[node name="fence-lod284" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73865, 0.049488, 1.09263, -0.038725, 2.05345, -0.0313859, -1.09305, 0.00596716, 1.73908, 91.4911, 157.466, -56.5676 ) + +[node name="fence-lod285" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73865, 0.049488, 1.09263, -0.038725, 2.05345, -0.0313859, -1.09305, 0.00596716, 1.73908, 93.2973, 157.425, -57.7031 ) + +[node name="fence-lod286" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73865, 0.049488, 1.09263, -0.038725, 2.05345, -0.0313859, -1.09305, 0.00596716, 1.73908, 95.0825, 157.386, -58.8255 ) + +[node name="fence-lod287" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73865, 0.049488, 1.09263, -0.038725, 2.05345, -0.0313859, -1.09305, 0.00596716, 1.73908, 96.8753, 157.346, -59.9525 ) + +[node name="fence-lod288" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73865, 0.049488, 1.09263, -0.038725, 2.05345, -0.0313859, -1.09305, 0.00596716, 1.73908, 98.6685, 157.306, -61.0799 ) + +[node name="fence-lod289" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73865, 0.049488, 1.09263, -0.038725, 2.05345, -0.0313859, -1.09305, 0.00596716, 1.73908, 100.417, 157.267, -62.1793 ) + +[node name="fence-lod290" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.73865, 0.049488, 1.09263, -0.038725, 2.05345, -0.0313859, -1.09305, 0.00596716, 1.73908, 102.165, 157.228, -63.2782 ) + +[node name="fence-lod291" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.69097, -0.0203962, 1.16592, 0.0475273, 2.05324, -0.0330119, -1.16512, 0.0541535, 1.69079, 103.903, 157.279, -64.4593 ) + +[node name="fence-lod292" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.6911, 0.00117882, 1.16592, 0.0213281, 2.05368, -0.0330119, -1.16572, 0.0392844, 1.69079, 105.673, 157.286, -65.6791 ) + +[node name="fence-lod293" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.6911, 0.00117882, 1.16592, 0.0213281, 2.05368, -0.0330119, -1.16572, 0.0392844, 1.69079, 107.378, 157.307, -66.8545 ) + +[node name="fence-lod294" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.6911, 0.00117882, 1.16592, 0.0213281, 2.05368, -0.0330119, -1.16572, 0.0392844, 1.69079, 109.081, 157.329, -68.0289 ) + +[node name="fence-lod295" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.6911, 0.00117882, 1.16592, 0.0213281, 2.05368, -0.0330119, -1.16572, 0.0392844, 1.69079, 110.772, 157.35, -69.1942 ) + +[node name="fence-lod296" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.6911, 0.00117882, 1.16592, 0.0213281, 2.05368, -0.0330119, -1.16572, 0.0392844, 1.69079, 112.502, 157.372, -70.3867 ) + +[node name="fence-lod297" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.69085, 0.0287741, 1.16592, -0.0121869, 2.05375, -0.0330119, -1.16621, 0.0202569, 1.69079, 114.205, 157.339, -71.5621 ) + +[node name="fence-lod298" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.69106, 0.0111844, 1.16592, 0.00917686, 2.05377, -0.0330119, -1.16593, 0.0323866, 1.69079, 115.95, 157.361, -72.765 ) + +[node name="fence-lod299" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.69106, 0.0111844, 1.16592, 0.00917686, 2.05377, -0.0330119, -1.16593, 0.0323866, 1.69079, 117.676, 157.37, -73.9546 ) + +[node name="fence-lod300" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.69106, 0.0111844, 1.16592, 0.00917686, 2.05377, -0.0330119, -1.16593, 0.0323866, 1.69079, 119.409, 157.366, -75.1501 ) + +[node name="fence-lod301" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.69106, 0.0111844, 1.16592, 0.00917686, 2.05377, -0.0330119, -1.16593, 0.0323866, 1.69079, 121.149, 157.378, -76.3494 ) + +[node name="fence-lod302" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.69106, 0.0111844, 1.16592, 0.00917686, 2.05377, -0.0330119, -1.16593, 0.0323866, 1.69079, 122.903, 157.38, -77.5592 ) + +[node name="fence-lod303" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72295, 0.0111844, 1.11825, 0.00825154, 2.05377, -0.0332553, -1.11827, 0.0323866, 1.72268, 124.668, 157.388, -78.6997 ) + +[node name="fence-lod304" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 126.438, 157.374, -79.8489 ) + +[node name="fence-lod305" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 128.21, 157.362, -80.9992 ) + +[node name="fence-lod306" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 129.941, 157.351, -82.1232 ) + +[node name="fence-lod307" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 131.699, 157.339, -83.2642 ) + +[node name="fence-lod308" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 133.453, 157.327, -84.4031 ) + +[node name="fence-lod309" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 135.178, 157.316, -85.523 ) + +[node name="fence-lod310" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 136.985, 157.303, -86.6964 ) + +[node name="fence-lod311" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 138.749, 157.292, -87.842 ) + +[node name="fence-lod312" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 140.54, 157.28, -89.0046 ) + +[node name="fence-lod313" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 142.308, 157.284, -90.152 ) + +[node name="fence-lod314" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 144.062, 157.273, -91.2909 ) + +[node name="fence-lod315" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 145.823, 157.261, -92.4345 ) + +[node name="fence-lod316" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 147.585, 157.249, -93.5783 ) + +[node name="fence-lod317" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 149.359, 157.237, -94.7303 ) + +[node name="fence-lod318" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 1.72277, 0.0277829, 1.11825, -0.011535, 2.05375, -0.0332553, -1.11853, 0.0216117, 1.72268, 151.078, 157.226, -95.8463 ) + +[node name="fence-lod319" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05169, -0.0218495, -0.0961971, 0.0209213, 2.05385, -0.0202889, 0.0964026, 0.0192855, 2.05172, 153.161, 157.254, -95.7494 ) + +[node name="fence-lod320" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05142, -0.0400392, -0.0961971, 0.0391303, 2.05358, -0.0202889, 0.0965698, 0.0184301, 2.05172, 155.274, 157.3, -95.6499 ) + +[node name="fence-lod321" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05169, -0.0218495, -0.0961971, 0.0209213, 2.05385, -0.0202889, 0.0964026, 0.0192855, 2.05172, 157.421, 157.326, -95.549 ) + +[node name="fence-lod322" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05169, -0.0218495, -0.0961971, 0.0209213, 2.05385, -0.0202889, 0.0964026, 0.0192855, 2.05172, 159.531, 157.351, -95.4498 ) + +[node name="fence-lod323" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05164, -0.0260033, -0.0961971, 0.0250795, 2.0538, -0.0202889, 0.0964414, 0.0190903, 2.05172, 161.634, 157.383, -95.3509 ) + +[node name="fence-lod324" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05164, -0.0260033, -0.0961971, 0.0250795, 2.0538, -0.0202889, 0.0964414, 0.0190903, 2.05172, 163.756, 157.409, -95.2511 ) + +[node name="fence-lod325" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05164, -0.0260033, -0.0961971, 0.0250795, 2.0538, -0.0202889, 0.0964414, 0.0190903, 2.05172, 165.84, 157.435, -95.1532 ) + +[node name="fence-lod326" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05178, 0.00998575, -0.0961971, -0.0109475, 2.05393, -0.0202889, 0.0960918, 0.0207789, 2.05172, 167.955, 157.438, -95.054 ) + +[node name="fence-lod327" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05164, -0.0260033, -0.0961971, 0.0250795, 2.0538, -0.0202889, 0.0964414, 0.0190903, 2.05172, 170.004, 157.457, -94.9577 ) + +[node name="fence-lod328" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05164, -0.0260033, -0.0961971, 0.0250795, 2.0538, -0.0202889, 0.0964414, 0.0190903, 2.05172, 172.089, 157.491, -94.8596 ) + +[node name="fence-lod329" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05164, -0.0260033, -0.0961971, 0.0250795, 2.0538, -0.0202889, 0.0964414, 0.0190903, 2.05172, 174.228, 157.481, -94.7594 ) + +[node name="fence-lod330" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 176.335, 157.463, -94.8287 ) + +[node name="fence-lod331" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 178.464, 157.461, -94.9226 ) + +[node name="fence-lod332" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 180.582, 157.456, -95.016 ) + +[node name="fence-lod333" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 182.669, 157.453, -95.1081 ) + +[node name="fence-lod334" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 184.759, 157.451, -95.2003 ) + +[node name="fence-lod335" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 186.834, 157.44, -95.2919 ) + +[node name="fence-lod336" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 188.941, 157.443, -95.3848 ) + +[node name="fence-lod337" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 191.039, 157.441, -95.4774 ) + +[node name="fence-lod338" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 193.135, 157.438, -95.5698 ) + +[node name="fence-lod339" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 195.249, 157.43, -95.6632 ) + +[node name="fence-lod340" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 197.38, 157.431, -95.7571 ) + +[node name="fence-lod341" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 199.472, 157.429, -95.8494 ) + +[node name="fence-lod342" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 201.532, 157.426, -95.9403 ) + +[node name="fence-lod343" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 203.641, 157.424, -96.0333 ) + +[node name="fence-lod344" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05206, 0.003078, 0.0905038, -0.00229021, 2.05398, -0.0179277, -0.0905265, 0.0178092, 2.052, 205.754, 157.422, -96.1265 ) + +[node name="fence-lod345" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05405, 0.003078, -0.00454195, -0.00311726, 2.05398, -0.0178025, 0.00451507, 0.0178092, 2.05399, 207.846, 157.418, -96.114 ) + +[node name="fence-lod346" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05382, -0.0312343, -0.00425103, 0.031153, 2.05349, -0.0369427, 0.00481158, 0.0368735, 2.05374, 209.945, 157.449, -96.109 ) + +[node name="fence-lod347" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05382, -0.0312343, -0.00425103, 0.031153, 2.05349, -0.0369427, 0.00481158, 0.0368735, 2.05374, 212.07, 157.481, -96.1041 ) + +[node name="fence-lod348" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05382, -0.0312343, -0.00425103, 0.031153, 2.05349, -0.0369427, 0.00481158, 0.0368735, 2.05374, 214.182, 157.513, -96.0991 ) + +[node name="fence-lod349" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05401, -0.0142425, -0.00425103, 0.0141639, 2.05367, -0.0369427, 0.00450637, 0.036912, 2.05374, 216.329, 157.53, -96.0944 ) + +[node name="fence-lod350" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05401, -0.0142425, -0.00425103, 0.0141639, 2.05367, -0.0369427, 0.00450637, 0.036912, 2.05374, 218.435, 157.544, -96.0898 ) + +[node name="fence-lod351" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05401, -0.0142425, -0.00425103, 0.0141639, 2.05367, -0.0369427, 0.00450637, 0.036912, 2.05374, 220.543, 157.559, -96.0851 ) + +[node name="fence-lod352" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05401, -0.0142425, -0.00425103, 0.0141639, 2.05367, -0.0369427, 0.00450637, 0.036912, 2.05374, 222.668, 157.573, -96.0805 ) + +[node name="fence-lod353" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05401, -0.0142425, -0.00425103, 0.0141639, 2.05367, -0.0369427, 0.00450637, 0.036912, 2.05374, 224.741, 157.588, -96.0759 ) + +[node name="fence-lod354" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05401, -0.0142425, -0.00425103, 0.0141639, 2.05367, -0.0369427, 0.00450637, 0.036912, 2.05374, 226.81, 157.602, -96.0714 ) + +[node name="fence-lod355" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05401, -0.0142425, -0.00425103, 0.0141639, 2.05367, -0.0369427, 0.00450637, 0.036912, 2.05374, 228.918, 157.617, -96.0668 ) + +[node name="fence-lod356" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05401, -0.0142425, -0.00425103, 0.0141639, 2.05367, -0.0369427, 0.00450637, 0.036912, 2.05374, 231.018, 157.631, -96.0621 ) + +[node name="fence-lod259" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( -1.84199, -0.204023, 0.885782, -0.180569, 2.04389, 0.0952772, -0.890853, 0.00757303, -1.85082, 58.8936, 162.863, -31.9161 ) + +[node name="fence-post-lod" parent="Environment/fence/fence-lod259" instance=ExtResource( 39 )] +transform = Transform( 1, 2.79397e-09, 5.96046e-08, -1.67638e-08, 1, 2.79397e-09, 0, -3.72529e-09, 1, 3.8147e-06, -0.012764, -1.90735e-06 ) + +[node name="fence-lod212" parent="Environment/fence" instance=ExtResource( 44 )] +transform = Transform( 2.05236, 0.00743792, 0.083319, -0.00623409, 2.05383, -0.029786, -0.0834172, 0.0295082, 2.05217, 123.004, 169.292, -20.6005 ) + +[node name="fence-post-lod" parent="Environment/fence/fence-lod212" instance=ExtResource( 39 )] +transform = Transform( 1, 1.74623e-10, 0, 5.82077e-11, 1, 0, 3.72529e-09, -9.31323e-10, 1, 0, 0, 0 ) + [node name="fence-post-lod" parent="Environment/fence" instance=ExtResource( 39 )] transform = Transform( -2.01936, -0.161844, 0.339398, -0.185178, 2.04168, -0.128184, -0.32725, -0.156614, -2.02178, 55.393, 177.739, -11.5233 ) @@ -5847,6 +6364,24 @@ speed_scale = 0.3 process_material = SubResource( 37 ) draw_pass_1 = SubResource( 39 ) +[node name="Particles28" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.63142, 0, 0, 0, 3.63142, 0, 0, 0, 3.63142, -10.4563, -16.7483, -23.6319 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles29" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.63142, 0, 0, 0, 3.63142, 0, 0, 0, 3.63142, -10.4563, -16.7483, 35.2415 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + [node name="Particles2" type="Particles" parent="Environment/particles"] pause_mode = 2 transform = Transform( 3.63142, 0, 0, 0, 3.63142, 0, 0, 0, 3.63142, 18.7734, -16.7483, 5.95379 ) @@ -5910,6 +6445,87 @@ speed_scale = 0.3 process_material = SubResource( 37 ) draw_pass_1 = SubResource( 39 ) +[node name="Particles30" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.47903, 0.337995, 0.984556, -0.351148, 3.6144, 1.0465e-08, -0.979942, -0.0952035, 3.49541, 74.3182, -40.6736, -41.1132 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles31" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.27723, 6.0993e-05, 1.56428, -6.24434e-05, 3.63142, -1.07718e-05, -1.56428, -1.71771e-05, 3.27723, 102.693, -43.5375, -49.1056 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles32" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.27723, 6.0993e-05, 1.56428, -6.24434e-05, 3.63142, -1.07718e-05, -1.56428, -1.71771e-05, 3.27723, 130.457, -41.6581, -62.3578 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles33" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.27723, 6.0993e-05, 1.56428, -6.24434e-05, 3.63142, -1.07718e-05, -1.56428, -1.71771e-05, 3.27723, 143.199, -41.6582, -35.6631 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles34" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.27723, 6.0993e-05, 1.56428, -6.24434e-05, 3.63142, -1.07718e-05, -1.56428, -1.71771e-05, 3.27723, 157.152, -42.1567, -74.9957 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles35" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.27723, 6.0993e-05, 1.56428, -6.24434e-05, 3.63142, -1.07718e-05, -1.56428, -1.71771e-05, 3.27723, 169.894, -42.1568, -48.301 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles36" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.27723, 6.0993e-05, 1.56428, -6.24434e-05, 3.63142, -1.07718e-05, -1.56428, -1.71771e-05, 3.27723, 183.494, -42.1567, -88.0746 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles37" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.27723, 6.0993e-05, 1.56428, -6.24434e-05, 3.63142, -1.07718e-05, -1.56428, -1.71771e-05, 3.27723, 196.236, -42.1568, -61.38 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles38" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.56595, 6.0993e-05, 0.686437, -6.31404e-05, 3.63142, 5.33813e-06, -0.686437, -1.71771e-05, 3.56595, 218.535, -40.5494, -87.528 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + [node name="Particles9" type="Particles" parent="Environment/particles"] pause_mode = 2 transform = Transform( 3.47254, 0, 1.06239, 0, 3.63142, 0, -1.06239, 0, 3.47254, 74.9767, -89.1793, -72.1874 ) @@ -5939,7 +6555,7 @@ draw_pass_1 = SubResource( 39 ) [node name="Particles12" type="Particles" parent="Environment/particles"] pause_mode = 2 -transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 99.604, -89.1793, -162.649 ) +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 99.604, -89.1793, -170.699 ) cast_shadow = 0 amount = 300 speed_scale = 0.3 @@ -5948,7 +6564,133 @@ draw_pass_1 = SubResource( 39 ) [node name="Particles13" type="Particles" parent="Environment/particles"] pause_mode = 2 -transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 128.754, -89.1793, -162.558 ) +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 128.754, -89.1793, -170.608 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles14" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 157.842, -89.1793, -170.517 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles19" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 99.604, -89.1793, -141.18 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles22" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 70.1873, -89.1793, -170.699 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles23" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 70.1873, -89.1793, -141.18 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles24" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 40.5025, -88.1891, -132.776 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles25" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 40.5025, -88.1891, -103.257 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles26" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 70.29, -88.1891, -109.116 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles27" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.58698, 0, 0.566389, 0, 3.63142, 0, -0.566389, 0, 3.58698, 103.461, -88.7404, -114.354 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles20" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 128.754, -89.1793, -141.089 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles21" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 157.842, -89.1793, -140.998 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles15" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 186.799, -89.1793, -170.162 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles18" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.6314, 0, -0.0113451, 0, 3.63142, 0, 0.0113451, 0, 3.6314, 186.708, -89.1793, -141.083 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles16" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.26058, 0, -1.59868, 0, 3.63142, 0, 1.59868, 0, 3.26058, 215.366, -89.1793, -147.968 ) +cast_shadow = 0 +amount = 300 +speed_scale = 0.3 +process_material = SubResource( 37 ) +draw_pass_1 = SubResource( 39 ) + +[node name="Particles17" type="Particles" parent="Environment/particles"] +pause_mode = 2 +transform = Transform( 3.62354, 0, -0.239087, 0, 3.63142, 0, 0.239087, 0, 3.62354, 242.974, -89.1793, -142.186 ) cast_shadow = 0 amount = 300 speed_scale = 0.3 -- 2.45.2