diff --git a/python/examples/drawing_from_input_drawing.py b/python/examples/drawing_from_input_drawing.py
index bd87a68243605faf10039e4127cd817e37cdc391..5d2126b922acc5d6028818f412f1570c6719a75b 100644
--- a/python/examples/drawing_from_input_drawing.py
+++ b/python/examples/drawing_from_input_drawing.py
@@ -62,6 +62,7 @@ def getArgs():
             help="cap robot's speed with the speed slider \
                     to something between 0 and 1, 1.0 by default because for dmp. \
                     BE CAREFUL WITH THIS.", default=1.0)
+    # TODO: make this optional
     parser.add_argument('--max-iterations', type=int, \
             help="maximum allowable iteration number (it runs at 500Hz)", default=50000)
     parser.add_argument('--debug-prints', action=argparse.BooleanOptionalAction, \
@@ -193,8 +194,9 @@ def getMarker(args, robot):
 
     # slighly up from goal to not hit marker weirdly
     TgoalUP = Tgoal.copy() 
-    #TgoalUP.translation += np.array([0,0,0.2])
-    TgoalUP.translation += np.array([0,0,0.3])
+    TgoalUP.translation += np.array([0,0,0.2])
+    q_init = robot.getQ()
+    #TgoalUP.translation += np.array([0,0,0.3])
 
     # instantiate controller
     #clik_controller = getClikController(args)
@@ -207,26 +209,29 @@ def getMarker(args, robot):
 
     print("going to above marker")
     robot.Mgoal = TgoalUP.copy()
-    #compliantMoveL(args, robot, TgoalUP.copy())
-    moveL(args, robot, TgoalUP.copy())
+    compliantMoveL(args, robot, TgoalUP.copy())
+    #moveL(args, robot, TgoalUP.copy())
     #log_dict, final_iteration = loop_manager.run()
     print("going down to marker")
     robot.Mgoal = Tgoal.copy()
-    #compliantMoveL(args, robot, Tgoal.copy())
-    moveL(args, robot, Tgoal.copy())
+    compliantMoveL(args, robot, Tgoal.copy())
+    #moveL(args, robot, Tgoal.copy())
     #log_dict, final_iteration = loop_manager.run()
     print("picking up marker")
     robot.gripper.move(255,255,255)
     time.sleep(2)
     print("going up")
     robot.Mgoal = TgoalUP.copy()
-    #compliantMoveL(args, robot, TgoalUP.copy())
-    moveL(args, robot, TgoalUP.copy())
+    compliantMoveL(args, robot, TgoalUP.copy())
+    #moveL(args, robot, TgoalUP.copy())
     #log_dict, final_iteration = loop_manager.run()
     print("going back")
+    # TODO: this HAS to be a movej
+    # in fact all of them should be
     robot.Mgoal = Tinit.copy()
     #compliantMoveL(args, robot, Tinit.copy())
-    moveL(args, robot, Tinit.copy())
+    moveJ(args, robot, q_init)
+    #moveL(args, robot, Tinit.copy())
     #log_dict, final_iteration = loop_manager.run()
     print("got back")
 #    robot.stopHandler(None, None)
@@ -248,6 +253,8 @@ def findMarkerOffset(args, robot, rotation_matrix, translation_vector, q_init):
     # TODO make this more general
     # so TODO: calculate TCP speed based on the rotation matrix
     # and then go
+    moveJ(args, robot, q_init)
+    Tinit = robot.getMtool().copy()
     if args.board_axis == 'z':
         axis_of_rot = rotation_matrix[:,2]
     elif args.board_axis == 'y':
@@ -275,6 +282,12 @@ def findMarkerOffset(args, robot, rotation_matrix, translation_vector, q_init):
     print("translation_vector - current_translation", \
             translation_vector - current_translation)
     marker_offset = np.linalg.norm(translation_vector - current_translation)
+
+    print("going back")
+    # TODO: this HAS to be a movej
+    # in fact all of them should be
+    robot.Mgoal = Tinit.copy()
+    compliantMoveL(args, robot, Tinit)
 #    robot.setSpeedSlider(old_speed_slider)
     return marker_offset
 
@@ -353,8 +366,8 @@ def controlLoopWriting(dmp, tc, controller, robot, i, past_data):
     wrench = mapping.T @ wrench
 
     wrench = Z @ wrench
-    if i % 100 == 0:
-        print(*wrench.round(1))
+#    if i % 100 == 0:
+#        print(*wrench.round(1))
     pin.forwardKinematics(robot.model, robot.data, q)
     J = pin.computeJointJacobian(robot.model, robot.data, q, robot.JOINT_ID)
     dq = robot.getQd()[:6].reshape((6,1))
@@ -461,9 +474,11 @@ if __name__ == "__main__":
     if args.find_marker_offset:
         # find the marker offset
         # TODO find a better q init (just moveL away from the board)
+        # THIS Q_INIT IS NOT SUITED FOR THIS PURPOSE!!!!!
+        exit()
         marker_offset = findMarkerOffset(args, robot, rotation_matrix, translation_vector, q_init)
         print('marker_offset', marker_offset)
-        robot.stopHandler(None,None)
+        #robot.stopHandler(None,None)
         # Z
         #path = path + np.array([0.0, 0.0, -1 * marker_offset])
         # Y
@@ -484,8 +499,9 @@ if __name__ == "__main__":
         # and this is the best number to change to get it to work [upside_down_emoji]
         # but this is very close
         #path = path + np.array([0.0, 0.0, -0.0785])
-        #path = path + np.array([0.0, 0.0, -0.1043])
-        path = path + np.array([0.0, 0.0, -0.0920])
+        #path = path + np.array([0.0, 0.0, -0.1003])
+        # THIS ONE
+        path = path + np.array([0.0, 0.0, -0.0830])
         #path = path + np.array([0.0, 0.0, -0.0903])
         #path = path + np.array([0.0, 0.0, -0.0790])
         #path = path + np.array([0.0, 0.0, -0.1003])
diff --git a/python/examples/joint_trajectory.csv b/python/examples/joint_trajectory.csv
index 29cc02484481838eda9809c91cf8b83cfff771e1..eef2cb90bcbc083e896dda469c66a964e525f5b0 100644
--- a/python/examples/joint_trajectory.csv
+++ b/python/examples/joint_trajectory.csv
@@ -1,4690 +1,499 @@
-0.00000,1.21192,-1.33063,-1.35815,-1.11449,1.85620,-0.21660
-0.00107,1.21180,-1.33029,-1.35878,-1.11423,1.85629,-0.21667
-0.00213,1.21168,-1.32996,-1.35940,-1.11397,1.85639,-0.21675
-0.00320,1.21156,-1.32964,-1.36000,-1.11371,1.85648,-0.21682
-0.00427,1.21144,-1.32932,-1.36060,-1.11346,1.85657,-0.21690
-0.00533,1.21142,-1.32925,-1.36072,-1.11341,1.85659,-0.21691
-0.00640,1.21118,-1.32861,-1.36192,-1.11291,1.85677,-0.21706
-0.00746,1.21096,-1.32798,-1.36309,-1.11242,1.85694,-0.21720
-0.00853,1.21073,-1.32736,-1.36425,-1.11194,1.85712,-0.21734
-0.00960,1.21051,-1.32675,-1.36538,-1.11146,1.85729,-0.21748
-0.01066,1.21029,-1.32615,-1.36650,-1.11099,1.85746,-0.21762
-0.01173,1.21008,-1.32556,-1.36760,-1.11053,1.85762,-0.21775
-0.01280,1.20987,-1.32498,-1.36868,-1.11007,1.85779,-0.21788
-0.01386,1.20966,-1.32441,-1.36975,-1.10963,1.85794,-0.21801
-0.01493,1.20946,-1.32385,-1.37079,-1.10918,1.85810,-0.21814
-0.01599,1.20926,-1.32329,-1.37182,-1.10875,1.85825,-0.21826
-0.01706,1.20907,-1.32275,-1.37283,-1.10832,1.85840,-0.21838
-0.01813,1.20888,-1.32222,-1.37382,-1.10790,1.85855,-0.21850
-0.01919,1.20869,-1.32170,-1.37480,-1.10749,1.85870,-0.21862
-0.02026,1.20851,-1.32118,-1.37576,-1.10708,1.85884,-0.21874
-0.02133,1.20833,-1.32068,-1.37671,-1.10668,1.85898,-0.21885
-0.02239,1.20815,-1.32018,-1.37763,-1.10628,1.85912,-0.21896
-0.02346,1.20798,-1.31969,-1.37855,-1.10589,1.85925,-0.21907
-0.02453,1.20781,-1.31921,-1.37945,-1.10551,1.85938,-0.21917
-0.02559,1.20764,-1.31874,-1.38033,-1.10514,1.85951,-0.21928
-0.02666,1.20748,-1.31828,-1.38120,-1.10476,1.85964,-0.21938
-0.02772,1.20732,-1.31782,-1.38205,-1.10440,1.85976,-0.21948
-0.02879,1.20716,-1.31737,-1.38289,-1.10404,1.85989,-0.21958
-0.02986,1.20701,-1.31693,-1.38372,-1.10368,1.86001,-0.21968
-0.03092,1.20686,-1.31650,-1.38453,-1.10334,1.86012,-0.21977
-0.03199,1.20671,-1.31607,-1.38533,-1.10299,1.86024,-0.21986
-0.03306,1.20656,-1.31565,-1.38612,-1.10266,1.86035,-0.21995
-0.03412,1.20642,-1.31524,-1.38689,-1.10232,1.86046,-0.22004
-0.03519,1.20628,-1.31484,-1.38765,-1.10200,1.86057,-0.22013
-0.03626,1.20614,-1.31444,-1.38840,-1.10167,1.86068,-0.22022
-0.03732,1.20600,-1.31405,-1.38913,-1.10136,1.86079,-0.22030
-0.03839,1.20587,-1.31366,-1.38986,-1.10104,1.86089,-0.22038
-0.03945,1.20574,-1.31329,-1.39057,-1.10074,1.86099,-0.22047
-0.04052,1.20561,-1.31291,-1.39127,-1.10043,1.86109,-0.22054
-0.04159,1.20549,-1.31255,-1.39195,-1.10013,1.86119,-0.22062
-0.04265,1.20537,-1.31219,-1.39263,-1.09984,1.86128,-0.22070
-0.04372,1.20524,-1.31184,-1.39330,-1.09955,1.86138,-0.22077
-0.04479,1.20513,-1.31149,-1.39395,-1.09927,1.86147,-0.22085
-0.04585,1.20501,-1.31115,-1.39459,-1.09899,1.86156,-0.22092
-0.04692,1.20490,-1.31081,-1.39523,-1.09871,1.86165,-0.22099
-0.04798,1.20479,-1.31048,-1.39585,-1.09844,1.86173,-0.22106
-0.04905,1.20468,-1.31016,-1.39646,-1.09817,1.86182,-0.22113
-0.05012,1.20457,-1.30984,-1.39706,-1.09791,1.86190,-0.22119
-0.05118,1.20450,-1.30964,-1.39744,-1.09775,1.86195,-0.22124
-0.05225,1.20437,-1.30923,-1.39820,-1.09742,1.86205,-0.22132
-0.05332,1.20425,-1.30882,-1.39896,-1.09709,1.86215,-0.22140
-0.05438,1.20412,-1.30842,-1.39970,-1.09677,1.86225,-0.22147
-0.05545,1.20400,-1.30803,-1.40043,-1.09646,1.86234,-0.22155
-0.05652,1.20388,-1.30765,-1.40115,-1.09615,1.86244,-0.22162
-0.05758,1.20376,-1.30727,-1.40186,-1.09584,1.86253,-0.22170
-0.05865,1.20365,-1.30690,-1.40255,-1.09554,1.86262,-0.22177
-0.05971,1.20354,-1.30653,-1.40324,-1.09524,1.86271,-0.22184
-0.06078,1.20343,-1.30617,-1.40391,-1.09495,1.86279,-0.22191
-0.06185,1.20332,-1.30582,-1.40457,-1.09466,1.86288,-0.22197
-0.06291,1.20321,-1.30547,-1.40522,-1.09438,1.86296,-0.22204
-0.06398,1.20311,-1.30513,-1.40586,-1.09410,1.86304,-0.22210
-0.06505,1.20300,-1.30479,-1.40649,-1.09383,1.86312,-0.22217
-0.06611,1.20290,-1.30446,-1.40711,-1.09356,1.86320,-0.22223
-0.06718,1.20281,-1.30414,-1.40771,-1.09330,1.86328,-0.22229
-0.06824,1.20271,-1.30382,-1.40831,-1.09303,1.86335,-0.22235
-0.06931,1.20268,-1.30372,-1.40850,-1.09296,1.86338,-0.22237
-0.07038,1.20246,-1.30305,-1.40973,-1.09243,1.86355,-0.22251
-0.07144,1.20224,-1.30240,-1.41094,-1.09192,1.86372,-0.22264
-0.07251,1.20203,-1.30176,-1.41214,-1.09141,1.86388,-0.22278
-0.07358,1.20182,-1.30113,-1.41331,-1.09091,1.86404,-0.22291
-0.07464,1.20161,-1.30050,-1.41446,-1.09042,1.86420,-0.22304
-0.07571,1.20141,-1.29990,-1.41560,-1.08994,1.86436,-0.22316
-0.07678,1.20121,-1.29930,-1.41671,-1.08946,1.86451,-0.22328
-0.07784,1.20102,-1.29871,-1.41781,-1.08900,1.86466,-0.22341
-0.07891,1.20083,-1.29813,-1.41888,-1.08854,1.86481,-0.22352
-0.07997,1.20064,-1.29756,-1.41994,-1.08808,1.86495,-0.22364
-0.08104,1.20046,-1.29700,-1.42098,-1.08764,1.86510,-0.22375
-0.08211,1.20028,-1.29645,-1.42201,-1.08720,1.86524,-0.22387
-0.08317,1.20010,-1.29591,-1.42302,-1.08677,1.86537,-0.22398
-0.08424,1.19993,-1.29538,-1.42401,-1.08634,1.86551,-0.22408
-0.08531,1.19976,-1.29486,-1.42498,-1.08592,1.86564,-0.22419
-0.08637,1.19960,-1.29434,-1.42594,-1.08551,1.86577,-0.22429
-0.08744,1.19943,-1.29384,-1.42688,-1.08511,1.86590,-0.22440
-0.08851,1.19927,-1.29334,-1.42780,-1.08471,1.86602,-0.22450
-0.08957,1.19911,-1.29286,-1.42871,-1.08431,1.86614,-0.22459
-0.09064,1.19896,-1.29238,-1.42961,-1.08393,1.86626,-0.22469
-0.09170,1.19881,-1.29191,-1.43049,-1.08355,1.86638,-0.22478
-0.09277,1.19866,-1.29144,-1.43135,-1.08317,1.86649,-0.22488
-0.09384,1.19852,-1.29099,-1.43220,-1.08280,1.86661,-0.22497
-0.09490,1.19837,-1.29054,-1.43304,-1.08244,1.86672,-0.22505
-0.09597,1.19823,-1.29010,-1.43386,-1.08208,1.86683,-0.22514
-0.09704,1.19810,-1.28967,-1.43467,-1.08173,1.86693,-0.22523
-0.09810,1.19796,-1.28925,-1.43546,-1.08139,1.86704,-0.22531
-0.09917,1.19783,-1.28883,-1.43624,-1.08105,1.86714,-0.22539
-0.10023,1.19770,-1.28842,-1.43701,-1.08071,1.86724,-0.22547
-0.10130,1.19757,-1.28802,-1.43777,-1.08038,1.86734,-0.22555
-0.10237,1.19745,-1.28762,-1.43851,-1.08006,1.86744,-0.22563
-0.10343,1.19733,-1.28723,-1.43924,-1.07974,1.86753,-0.22570
-0.10450,1.19721,-1.28685,-1.43996,-1.07942,1.86763,-0.22578
-0.10557,1.19709,-1.28647,-1.44067,-1.07911,1.86772,-0.22585
-0.10663,1.19697,-1.28610,-1.44136,-1.07881,1.86781,-0.22592
-0.10770,1.19686,-1.28574,-1.44204,-1.07851,1.86790,-0.22599
-0.10877,1.19675,-1.28538,-1.44272,-1.07821,1.86798,-0.22606
-0.10983,1.19664,-1.28503,-1.44338,-1.07792,1.86807,-0.22613
-0.11090,1.19653,-1.28468,-1.44402,-1.07764,1.86815,-0.22619
-0.11196,1.19643,-1.28434,-1.44466,-1.07736,1.86823,-0.22626
-0.11303,1.19633,-1.28401,-1.44529,-1.07708,1.86831,-0.22632
-0.11410,1.19623,-1.28368,-1.44591,-1.07681,1.86839,-0.22638
-0.11516,1.19613,-1.28336,-1.44652,-1.07654,1.86847,-0.22645
-0.11623,1.19603,-1.28304,-1.44711,-1.07627,1.86854,-0.22650
-0.11730,1.19595,-1.28278,-1.44760,-1.07606,1.86861,-0.22655
-0.11836,1.19583,-1.28240,-1.44832,-1.07575,1.86870,-0.22663
-0.11943,1.19571,-1.28202,-1.44903,-1.07544,1.86879,-0.22670
-0.12049,1.19560,-1.28164,-1.44973,-1.07513,1.86888,-0.22677
-0.12156,1.19549,-1.28128,-1.45042,-1.07483,1.86897,-0.22684
-0.12263,1.19537,-1.28091,-1.45110,-1.07453,1.86906,-0.22691
-0.12369,1.19527,-1.28056,-1.45176,-1.07424,1.86914,-0.22698
-0.12476,1.19516,-1.28021,-1.45241,-1.07396,1.86922,-0.22704
-0.12583,1.19505,-1.27987,-1.45306,-1.07367,1.86931,-0.22711
-0.12689,1.19495,-1.27953,-1.45369,-1.07340,1.86939,-0.22717
-0.12796,1.19485,-1.27920,-1.45431,-1.07312,1.86946,-0.22723
-0.12903,1.19475,-1.27887,-1.45492,-1.07285,1.86954,-0.22730
-0.13009,1.19466,-1.27855,-1.45552,-1.07259,1.86962,-0.22736
-0.13116,1.19456,-1.27824,-1.45611,-1.07233,1.86969,-0.22741
-0.13222,1.19452,-1.27810,-1.45637,-1.07222,1.86972,-0.22744
-0.13329,1.19441,-1.27770,-1.45710,-1.07190,1.86981,-0.22751
-0.13436,1.19429,-1.27731,-1.45783,-1.07158,1.86990,-0.22758
-0.13542,1.19418,-1.27693,-1.45855,-1.07128,1.86998,-0.22765
-0.13649,1.19408,-1.27655,-1.45925,-1.07097,1.87007,-0.22771
-0.13756,1.19397,-1.27617,-1.45994,-1.07067,1.87015,-0.22778
-0.13862,1.19387,-1.27581,-1.46062,-1.07038,1.87023,-0.22784
-0.13969,1.19376,-1.27545,-1.46129,-1.07009,1.87031,-0.22791
-0.14075,1.19366,-1.27509,-1.46195,-1.06980,1.87039,-0.22797
-0.14182,1.19357,-1.27474,-1.46259,-1.06952,1.87047,-0.22803
-0.14289,1.19347,-1.27440,-1.46323,-1.06924,1.87054,-0.22809
-0.14395,1.19337,-1.27407,-1.46385,-1.06897,1.87061,-0.22815
-0.14502,1.19328,-1.27374,-1.46447,-1.06870,1.87069,-0.22820
-0.14609,1.19319,-1.27341,-1.46507,-1.06844,1.87076,-0.22826
-0.14715,1.19310,-1.27309,-1.46566,-1.06818,1.87083,-0.22831
-0.14822,1.19304,-1.27286,-1.46610,-1.06799,1.87088,-0.22836
-0.14929,1.19290,-1.27240,-1.46695,-1.06762,1.87098,-0.22844
-0.15035,1.19277,-1.27194,-1.46778,-1.06727,1.87109,-0.22852
-0.15142,1.19264,-1.27150,-1.46860,-1.06692,1.87119,-0.22860
-0.15248,1.19251,-1.27106,-1.46941,-1.06657,1.87129,-0.22868
-0.15355,1.19238,-1.27063,-1.47020,-1.06623,1.87139,-0.22876
-0.15462,1.19226,-1.27021,-1.47098,-1.06590,1.87148,-0.22884
-0.15568,1.19214,-1.26980,-1.47175,-1.06557,1.87158,-0.22891
-0.15675,1.19202,-1.26939,-1.47250,-1.06525,1.87167,-0.22899
-0.15782,1.19190,-1.26899,-1.47324,-1.06493,1.87176,-0.22906
-0.15888,1.19179,-1.26859,-1.47397,-1.06461,1.87185,-0.22913
-0.15995,1.19168,-1.26821,-1.47468,-1.06430,1.87193,-0.22920
-0.16102,1.19157,-1.26783,-1.47539,-1.06400,1.87202,-0.22927
-0.16208,1.19146,-1.26745,-1.47608,-1.06370,1.87210,-0.22933
-0.16315,1.19136,-1.26709,-1.47676,-1.06341,1.87218,-0.22940
-0.16421,1.19125,-1.26673,-1.47743,-1.06312,1.87227,-0.22946
-0.16528,1.19115,-1.26637,-1.47809,-1.06283,1.87234,-0.22953
-0.16635,1.19105,-1.26602,-1.47873,-1.06255,1.87242,-0.22959
-0.16741,1.19096,-1.26568,-1.47937,-1.06228,1.87250,-0.22965
-0.16848,1.19086,-1.26534,-1.47999,-1.06200,1.87257,-0.22971
-0.16955,1.19077,-1.26501,-1.48061,-1.06174,1.87264,-0.22976
-0.17061,1.19067,-1.26468,-1.48121,-1.06147,1.87272,-0.22982
-0.17168,1.19059,-1.26436,-1.48181,-1.06121,1.87279,-0.22988
-0.17274,1.19050,-1.26405,-1.48239,-1.06096,1.87285,-0.22993
-0.17381,1.19048,-1.26400,-1.48248,-1.06092,1.87287,-0.22994
-0.17488,1.19034,-1.26355,-1.48331,-1.06056,1.87298,-0.23003
-0.17594,1.19019,-1.26310,-1.48414,-1.06021,1.87309,-0.23012
-0.17701,1.19005,-1.26267,-1.48495,-1.05986,1.87320,-0.23021
-0.17808,1.18992,-1.26224,-1.48575,-1.05952,1.87330,-0.23029
-0.17914,1.18978,-1.26181,-1.48653,-1.05919,1.87341,-0.23038
-0.18021,1.18965,-1.26140,-1.48731,-1.05885,1.87351,-0.23046
-0.18128,1.18952,-1.26099,-1.48806,-1.05853,1.87361,-0.23054
-0.18234,1.18940,-1.26059,-1.48881,-1.05821,1.87371,-0.23062
-0.18341,1.18927,-1.26019,-1.48954,-1.05789,1.87381,-0.23069
-0.18447,1.18915,-1.25981,-1.49026,-1.05758,1.87390,-0.23077
-0.18554,1.18903,-1.25943,-1.49097,-1.05728,1.87399,-0.23084
-0.18661,1.18891,-1.25905,-1.49167,-1.05697,1.87409,-0.23092
-0.18767,1.18880,-1.25868,-1.49235,-1.05668,1.87418,-0.23099
-0.18874,1.18868,-1.25832,-1.49302,-1.05639,1.87426,-0.23106
-0.18981,1.18857,-1.25797,-1.49369,-1.05610,1.87435,-0.23113
-0.19087,1.18846,-1.25762,-1.49434,-1.05582,1.87443,-0.23120
-0.19194,1.18836,-1.25727,-1.49498,-1.05554,1.87452,-0.23126
-0.19300,1.18825,-1.25693,-1.49561,-1.05527,1.87460,-0.23133
-0.19407,1.18815,-1.25660,-1.49622,-1.05500,1.87468,-0.23139
-0.19514,1.18805,-1.25628,-1.49683,-1.05473,1.87476,-0.23145
-0.19620,1.18795,-1.25596,-1.49743,-1.05447,1.87483,-0.23151
-0.19727,1.18785,-1.25564,-1.49802,-1.05422,1.87491,-0.23157
-0.19834,1.18775,-1.25532,-1.49861,-1.05396,1.87499,-0.23164
-0.19940,1.18761,-1.25492,-1.49937,-1.05363,1.87510,-0.23172
-0.20047,1.18747,-1.25452,-1.50011,-1.05331,1.87520,-0.23181
-0.20154,1.18734,-1.25414,-1.50083,-1.05300,1.87531,-0.23190
-0.20260,1.18721,-1.25375,-1.50155,-1.05269,1.87541,-0.23198
-0.20367,1.18707,-1.25338,-1.50225,-1.05239,1.87551,-0.23206
-0.20473,1.18695,-1.25301,-1.50294,-1.05209,1.87561,-0.23214
-0.20580,1.18682,-1.25265,-1.50362,-1.05179,1.87571,-0.23222
-0.20687,1.18670,-1.25229,-1.50429,-1.05151,1.87581,-0.23230
-0.20793,1.18658,-1.25194,-1.50495,-1.05122,1.87590,-0.23237
-0.20900,1.18646,-1.25160,-1.50559,-1.05094,1.87599,-0.23245
-0.21007,1.18634,-1.25126,-1.50623,-1.05066,1.87608,-0.23252
-0.21113,1.18623,-1.25092,-1.50685,-1.05039,1.87617,-0.23259
-0.21220,1.18611,-1.25060,-1.50747,-1.05013,1.87626,-0.23266
-0.21327,1.18600,-1.25028,-1.50807,-1.04986,1.87635,-0.23273
-0.21433,1.18590,-1.24996,-1.50866,-1.04960,1.87643,-0.23279
-0.21540,1.18579,-1.24965,-1.50925,-1.04935,1.87651,-0.23286
-0.21646,1.18568,-1.24934,-1.50983,-1.04909,1.87660,-0.23293
-0.21753,1.18555,-1.24898,-1.51052,-1.04880,1.87670,-0.23301
-0.21860,1.18542,-1.24862,-1.51119,-1.04850,1.87680,-0.23309
-0.21966,1.18529,-1.24826,-1.51185,-1.04822,1.87690,-0.23317
-0.22073,1.18516,-1.24792,-1.51251,-1.04793,1.87700,-0.23325
-0.22180,1.18504,-1.24758,-1.51315,-1.04766,1.87710,-0.23333
-0.22286,1.18491,-1.24724,-1.51378,-1.04738,1.87719,-0.23341
-0.22393,1.18479,-1.24692,-1.51440,-1.04711,1.87729,-0.23348
-0.22499,1.18468,-1.24659,-1.51501,-1.04685,1.87738,-0.23356
-0.22606,1.18456,-1.24627,-1.51560,-1.04659,1.87747,-0.23363
-0.22713,1.18445,-1.24596,-1.51619,-1.04633,1.87755,-0.23370
-0.22819,1.18434,-1.24566,-1.51677,-1.04608,1.87764,-0.23377
-0.22926,1.18423,-1.24537,-1.51731,-1.04584,1.87772,-0.23383
-0.23033,1.18407,-1.24492,-1.51815,-1.04548,1.87785,-0.23394
-0.23139,1.18391,-1.24447,-1.51898,-1.04513,1.87797,-0.23404
-0.23246,1.18375,-1.24404,-1.51979,-1.04479,1.87809,-0.23414
-0.23353,1.18360,-1.24361,-1.52059,-1.04445,1.87821,-0.23423
-0.23459,1.18345,-1.24319,-1.52137,-1.04411,1.87833,-0.23433
-0.23566,1.18330,-1.24277,-1.52215,-1.04378,1.87845,-0.23442
-0.23672,1.18315,-1.24237,-1.52290,-1.04346,1.87856,-0.23451
-0.23779,1.18301,-1.24197,-1.52365,-1.04314,1.87867,-0.23460
-0.23886,1.18287,-1.24157,-1.52438,-1.04283,1.87878,-0.23469
-0.23992,1.18273,-1.24119,-1.52510,-1.04252,1.87889,-0.23478
-0.24099,1.18260,-1.24081,-1.52581,-1.04222,1.87899,-0.23486
-0.24206,1.18246,-1.24043,-1.52651,-1.04192,1.87910,-0.23494
-0.24312,1.18233,-1.24007,-1.52719,-1.04162,1.87920,-0.23503
-0.24419,1.18220,-1.23971,-1.52787,-1.04133,1.87930,-0.23511
-0.24525,1.18208,-1.23935,-1.52853,-1.04105,1.87939,-0.23518
-0.24632,1.18196,-1.23901,-1.52918,-1.04077,1.87949,-0.23526
-0.24739,1.18183,-1.23866,-1.52982,-1.04049,1.87958,-0.23534
-0.24845,1.18172,-1.23833,-1.53044,-1.04022,1.87968,-0.23541
-0.24952,1.18160,-1.23800,-1.53106,-1.03996,1.87977,-0.23548
-0.25059,1.18149,-1.23767,-1.53167,-1.03969,1.87986,-0.23556
-0.25165,1.18137,-1.23736,-1.53227,-1.03943,1.87994,-0.23563
-0.25272,1.18126,-1.23704,-1.53285,-1.03918,1.88003,-0.23569
-0.25379,1.18116,-1.23673,-1.53343,-1.03893,1.88011,-0.23576
-0.25485,1.18105,-1.23642,-1.53402,-1.03868,1.88020,-0.23583
-0.25592,1.18089,-1.23603,-1.53475,-1.03836,1.88032,-0.23593
-0.25698,1.18074,-1.23564,-1.53548,-1.03805,1.88043,-0.23602
-0.25805,1.18060,-1.23526,-1.53620,-1.03774,1.88055,-0.23611
-0.25912,1.18045,-1.23489,-1.53690,-1.03744,1.88066,-0.23621
-0.26018,1.18031,-1.23452,-1.53759,-1.03714,1.88077,-0.23629
-0.26125,1.18017,-1.23416,-1.53827,-1.03685,1.88088,-0.23638
-0.26232,1.18003,-1.23380,-1.53894,-1.03657,1.88098,-0.23647
-0.26338,1.17990,-1.23345,-1.53959,-1.03628,1.88109,-0.23655
-0.26445,1.17977,-1.23311,-1.54024,-1.03601,1.88119,-0.23663
-0.26552,1.17964,-1.23278,-1.54087,-1.03573,1.88129,-0.23672
-0.26658,1.17951,-1.23244,-1.54149,-1.03546,1.88139,-0.23680
-0.26765,1.17939,-1.23212,-1.54210,-1.03520,1.88149,-0.23687
-0.26871,1.17926,-1.23180,-1.54271,-1.03494,1.88158,-0.23695
-0.26978,1.17914,-1.23149,-1.54330,-1.03468,1.88167,-0.23703
-0.27085,1.17903,-1.23118,-1.54388,-1.03443,1.88177,-0.23710
-0.27191,1.17891,-1.23087,-1.54445,-1.03418,1.88186,-0.23717
-0.27298,1.17880,-1.23060,-1.54498,-1.03395,1.88194,-0.23724
-0.27405,1.17864,-1.23021,-1.54571,-1.03364,1.88206,-0.23734
-0.27511,1.17848,-1.22982,-1.54643,-1.03333,1.88219,-0.23744
-0.27618,1.17833,-1.22945,-1.54714,-1.03303,1.88231,-0.23754
-0.27724,1.17818,-1.22908,-1.54784,-1.03273,1.88243,-0.23763
-0.27831,1.17803,-1.22871,-1.54853,-1.03243,1.88254,-0.23773
-0.27938,1.17788,-1.22836,-1.54920,-1.03214,1.88266,-0.23782
-0.28044,1.17774,-1.22801,-1.54986,-1.03186,1.88277,-0.23791
-0.28151,1.17759,-1.22766,-1.55052,-1.03158,1.88288,-0.23800
-0.28258,1.17746,-1.22732,-1.55116,-1.03130,1.88299,-0.23809
-0.28364,1.17732,-1.22699,-1.55179,-1.03103,1.88309,-0.23817
-0.28471,1.17719,-1.22666,-1.55240,-1.03076,1.88320,-0.23826
-0.28578,1.17705,-1.22634,-1.55301,-1.03050,1.88330,-0.23834
-0.28684,1.17693,-1.22603,-1.55361,-1.03024,1.88340,-0.23842
-0.28791,1.17680,-1.22572,-1.55420,-1.02999,1.88350,-0.23850
-0.28897,1.17667,-1.22541,-1.55478,-1.02974,1.88359,-0.23858
-0.29004,1.17655,-1.22511,-1.55534,-1.02949,1.88369,-0.23866
-0.29111,1.17644,-1.22483,-1.55588,-1.02926,1.88378,-0.23873
-0.29217,1.17624,-1.22434,-1.55680,-1.02887,1.88393,-0.23886
-0.29324,1.17604,-1.22385,-1.55770,-1.02849,1.88409,-0.23898
-0.29431,1.17584,-1.22338,-1.55858,-1.02812,1.88424,-0.23911
-0.29537,1.17565,-1.22291,-1.55945,-1.02776,1.88438,-0.23923
-0.29644,1.17547,-1.22246,-1.56031,-1.02740,1.88453,-0.23934
-0.29750,1.17529,-1.22201,-1.56115,-1.02704,1.88467,-0.23946
-0.29857,1.17511,-1.22157,-1.56197,-1.02669,1.88481,-0.23957
-0.29964,1.17493,-1.22113,-1.56279,-1.02635,1.88495,-0.23969
-0.30070,1.17476,-1.22071,-1.56358,-1.02601,1.88508,-0.23980
-0.30177,1.17459,-1.22029,-1.56437,-1.02568,1.88521,-0.23990
-0.30284,1.17442,-1.21987,-1.56514,-1.02535,1.88534,-0.24001
-0.30390,1.17425,-1.21947,-1.56590,-1.02503,1.88547,-0.24011
-0.30497,1.17409,-1.21907,-1.56664,-1.02472,1.88559,-0.24021
-0.30604,1.17393,-1.21868,-1.56737,-1.02441,1.88572,-0.24031
-0.30710,1.17378,-1.21830,-1.56809,-1.02410,1.88584,-0.24041
-0.30817,1.17363,-1.21792,-1.56880,-1.02380,1.88596,-0.24051
-0.30923,1.17348,-1.21755,-1.56949,-1.02350,1.88607,-0.24060
-0.31030,1.17333,-1.21719,-1.57017,-1.02321,1.88619,-0.24070
-0.31137,1.17319,-1.21683,-1.57085,-1.02293,1.88630,-0.24079
-0.31243,1.17304,-1.21648,-1.57151,-1.02264,1.88641,-0.24088
-0.31350,1.17291,-1.21614,-1.57215,-1.02237,1.88652,-0.24097
-0.31457,1.17277,-1.21580,-1.57279,-1.02209,1.88662,-0.24105
-0.31563,1.17263,-1.21546,-1.57342,-1.02183,1.88673,-0.24114
-0.31670,1.17250,-1.21514,-1.57403,-1.02156,1.88683,-0.24122
-0.31776,1.17237,-1.21481,-1.57464,-1.02130,1.88693,-0.24130
-0.31883,1.17225,-1.21450,-1.57523,-1.02105,1.88703,-0.24138
-0.31990,1.17212,-1.21419,-1.57582,-1.02079,1.88713,-0.24146
-0.32096,1.17200,-1.21388,-1.57639,-1.02055,1.88722,-0.24154
-0.32203,1.17188,-1.21358,-1.57696,-1.02030,1.88731,-0.24161
-0.32310,1.17176,-1.21328,-1.57754,-1.02005,1.88741,-0.24169
-0.32416,1.17158,-1.21287,-1.57830,-1.01973,1.88755,-0.24180
-0.32523,1.17140,-1.21247,-1.57906,-1.01941,1.88768,-0.24191
-0.32630,1.17123,-1.21207,-1.57980,-1.01909,1.88782,-0.24202
-0.32736,1.17106,-1.21169,-1.58053,-1.01878,1.88795,-0.24213
-0.32843,1.17089,-1.21130,-1.58125,-1.01848,1.88808,-0.24224
-0.32949,1.17073,-1.21093,-1.58196,-1.01818,1.88821,-0.24234
-0.33056,1.17057,-1.21056,-1.58265,-1.01788,1.88833,-0.24244
-0.33163,1.17041,-1.21020,-1.58333,-1.01759,1.88845,-0.24254
-0.33269,1.17026,-1.20985,-1.58400,-1.01731,1.88857,-0.24264
-0.33376,1.17011,-1.20950,-1.58466,-1.01702,1.88869,-0.24274
-0.33483,1.16996,-1.20916,-1.58531,-1.01675,1.88881,-0.24283
-0.33589,1.16981,-1.20882,-1.58594,-1.01648,1.88892,-0.24292
-0.33696,1.16967,-1.20849,-1.58657,-1.01621,1.88903,-0.24301
-0.33803,1.16953,-1.20817,-1.58718,-1.01594,1.88914,-0.24310
-0.33909,1.16939,-1.20785,-1.58779,-1.01569,1.88925,-0.24319
-0.34016,1.16925,-1.20754,-1.58838,-1.01543,1.88935,-0.24328
-0.34122,1.16912,-1.20723,-1.58896,-1.01518,1.88946,-0.24336
-0.34229,1.16899,-1.20693,-1.58954,-1.01493,1.88956,-0.24345
-0.34336,1.16886,-1.20663,-1.59010,-1.01469,1.88966,-0.24353
-0.34442,1.16873,-1.20634,-1.59066,-1.01445,1.88976,-0.24361
-0.34549,1.16868,-1.20621,-1.59089,-1.01435,1.88980,-0.24364
-0.34656,1.16850,-1.20583,-1.59161,-1.01404,1.88994,-0.24375
-0.34762,1.16833,-1.20546,-1.59232,-1.01374,1.89007,-0.24386
-0.34869,1.16816,-1.20509,-1.59301,-1.01345,1.89020,-0.24397
-0.34975,1.16800,-1.20473,-1.59369,-1.01316,1.89033,-0.24407
-0.35082,1.16783,-1.20438,-1.59436,-1.01287,1.89046,-0.24418
-0.35189,1.16767,-1.20403,-1.59502,-1.01259,1.89058,-0.24428
-0.35295,1.16752,-1.20369,-1.59567,-1.01232,1.89070,-0.24438
-0.35402,1.16736,-1.20336,-1.59631,-1.01204,1.89082,-0.24448
-0.35509,1.16721,-1.20303,-1.59693,-1.01178,1.89094,-0.24457
-0.35615,1.16707,-1.20270,-1.59755,-1.01151,1.89105,-0.24467
-0.35722,1.16692,-1.20239,-1.59815,-1.01126,1.89117,-0.24476
-0.35829,1.16678,-1.20207,-1.59875,-1.01100,1.89128,-0.24485
-0.35935,1.16664,-1.20177,-1.59933,-1.01075,1.89139,-0.24494
-0.36042,1.16650,-1.20147,-1.59990,-1.01050,1.89149,-0.24503
-0.36148,1.16636,-1.20117,-1.60047,-1.01026,1.89160,-0.24511
-0.36255,1.16623,-1.20088,-1.60102,-1.01002,1.89170,-0.24520
-0.36362,1.16612,-1.20064,-1.60147,-1.00983,1.89179,-0.24526
-0.36468,1.16596,-1.20030,-1.60212,-1.00955,1.89191,-0.24537
-0.36575,1.16580,-1.19996,-1.60277,-1.00928,1.89204,-0.24547
-0.36682,1.16564,-1.19963,-1.60340,-1.00901,1.89216,-0.24557
-0.36788,1.16549,-1.19930,-1.60402,-1.00874,1.89228,-0.24567
-0.36895,1.16534,-1.19898,-1.60463,-1.00848,1.89240,-0.24577
-0.37001,1.16519,-1.19866,-1.60524,-1.00822,1.89251,-0.24586
-0.37108,1.16504,-1.19835,-1.60583,-1.00797,1.89263,-0.24595
-0.37215,1.16490,-1.19805,-1.60641,-1.00772,1.89274,-0.24605
-0.37321,1.16476,-1.19775,-1.60698,-1.00748,1.89285,-0.24613
-0.37428,1.16462,-1.19746,-1.60754,-1.00724,1.89295,-0.24622
-0.37535,1.16448,-1.19717,-1.60809,-1.00700,1.89306,-0.24631
-0.37641,1.16438,-1.19696,-1.60849,-1.00683,1.89314,-0.24637
-0.37748,1.16420,-1.19659,-1.60920,-1.00653,1.89328,-0.24649
-0.37855,1.16402,-1.19622,-1.60990,-1.00623,1.89342,-0.24661
-0.37961,1.16384,-1.19586,-1.61058,-1.00594,1.89356,-0.24672
-0.38068,1.16366,-1.19550,-1.61126,-1.00566,1.89369,-0.24683
-0.38174,1.16349,-1.19516,-1.61192,-1.00537,1.89383,-0.24694
-0.38281,1.16333,-1.19481,-1.61258,-1.00510,1.89396,-0.24705
-0.38388,1.16316,-1.19448,-1.61322,-1.00483,1.89408,-0.24715
-0.38494,1.16300,-1.19415,-1.61385,-1.00456,1.89421,-0.24726
-0.38601,1.16284,-1.19382,-1.61447,-1.00429,1.89433,-0.24736
-0.38708,1.16268,-1.19350,-1.61508,-1.00403,1.89445,-0.24746
-0.38814,1.16253,-1.19319,-1.61567,-1.00378,1.89457,-0.24756
-0.38921,1.16238,-1.19288,-1.61626,-1.00353,1.89469,-0.24765
-0.39028,1.16223,-1.19258,-1.61684,-1.00328,1.89481,-0.24775
-0.39134,1.16208,-1.19228,-1.61741,-1.00304,1.89492,-0.24784
-0.39241,1.16194,-1.19199,-1.61796,-1.00280,1.89503,-0.24793
-0.39347,1.16180,-1.19171,-1.61851,-1.00256,1.89514,-0.24802
-0.39454,1.16168,-1.19147,-1.61896,-1.00237,1.89523,-0.24809
-0.39561,1.16148,-1.19111,-1.61966,-1.00207,1.89539,-0.24823
-0.39667,1.16127,-1.19076,-1.62035,-1.00178,1.89555,-0.24836
-0.39774,1.16108,-1.19041,-1.62103,-1.00149,1.89570,-0.24848
-0.39881,1.16088,-1.19007,-1.62170,-1.00120,1.89585,-0.24861
-0.39987,1.16069,-1.18973,-1.62235,-1.00092,1.89600,-0.24873
-0.40094,1.16050,-1.18940,-1.62299,-1.00065,1.89615,-0.24885
-0.40200,1.16032,-1.18907,-1.62363,-1.00038,1.89629,-0.24897
-0.40307,1.16013,-1.18876,-1.62425,-1.00011,1.89643,-0.24909
-0.40414,1.15996,-1.18844,-1.62486,-0.99985,1.89657,-0.24920
-0.40520,1.15978,-1.18814,-1.62546,-0.99959,1.89670,-0.24931
-0.40627,1.15961,-1.18783,-1.62605,-0.99934,1.89684,-0.24942
-0.40734,1.15944,-1.18754,-1.62663,-0.99909,1.89697,-0.24953
-0.40840,1.15927,-1.18725,-1.62720,-0.99884,1.89710,-0.24964
-0.40947,1.15911,-1.18696,-1.62776,-0.99860,1.89723,-0.24974
-0.41054,1.15895,-1.18668,-1.62831,-0.99836,1.89735,-0.24985
-0.41160,1.15879,-1.18640,-1.62885,-0.99813,1.89747,-0.24995
-0.41267,1.15868,-1.18620,-1.62923,-0.99796,1.89756,-0.25002
-0.41373,1.15846,-1.18586,-1.62991,-0.99767,1.89773,-0.25016
-0.41480,1.15824,-1.18552,-1.63058,-0.99738,1.89790,-0.25030
-0.41587,1.15803,-1.18519,-1.63124,-0.99710,1.89806,-0.25043
-0.41693,1.15782,-1.18487,-1.63188,-0.99682,1.89822,-0.25057
-0.41800,1.15762,-1.18455,-1.63252,-0.99655,1.89838,-0.25070
-0.41907,1.15742,-1.18423,-1.63314,-0.99628,1.89854,-0.25083
-0.42013,1.15722,-1.18392,-1.63375,-0.99602,1.89869,-0.25095
-0.42120,1.15703,-1.18362,-1.63435,-0.99576,1.89884,-0.25108
-0.42226,1.15684,-1.18332,-1.63494,-0.99550,1.89899,-0.25120
-0.42333,1.15665,-1.18303,-1.63552,-0.99525,1.89913,-0.25132
-0.42440,1.15647,-1.18275,-1.63609,-0.99501,1.89927,-0.25144
-0.42546,1.15629,-1.18246,-1.63665,-0.99476,1.89941,-0.25156
-0.42653,1.15611,-1.18219,-1.63720,-0.99452,1.89955,-0.25167
-0.42760,1.15593,-1.18191,-1.63775,-0.99429,1.89969,-0.25178
-0.42866,1.15576,-1.18165,-1.63828,-0.99406,1.89982,-0.25189
-0.42973,1.15567,-1.18151,-1.63856,-0.99394,1.89989,-0.25195
-0.43080,1.15545,-1.18117,-1.63923,-0.99365,1.90006,-0.25209
-0.43186,1.15523,-1.18083,-1.63990,-0.99336,1.90024,-0.25224
-0.43293,1.15501,-1.18051,-1.64055,-0.99308,1.90040,-0.25238
-0.43399,1.15480,-1.18018,-1.64119,-0.99281,1.90057,-0.25251
-0.43506,1.15459,-1.17987,-1.64182,-0.99254,1.90073,-0.25265
-0.43613,1.15438,-1.17956,-1.64244,-0.99227,1.90089,-0.25278
-0.43719,1.15418,-1.17925,-1.64305,-0.99201,1.90105,-0.25291
-0.43826,1.15398,-1.17895,-1.64364,-0.99175,1.90120,-0.25304
-0.43933,1.15379,-1.17866,-1.64423,-0.99150,1.90135,-0.25316
-0.44039,1.15359,-1.17837,-1.64481,-0.99125,1.90150,-0.25329
-0.44146,1.15340,-1.17809,-1.64537,-0.99100,1.90165,-0.25341
-0.44253,1.15322,-1.17781,-1.64593,-0.99076,1.90179,-0.25353
-0.44359,1.15304,-1.17753,-1.64648,-0.99052,1.90193,-0.25365
-0.44466,1.15286,-1.17726,-1.64702,-0.99029,1.90207,-0.25376
-0.44572,1.15268,-1.17700,-1.64755,-0.99006,1.90221,-0.25388
-0.44679,1.15259,-1.17686,-1.64782,-0.98994,1.90228,-0.25394
-0.44786,1.15233,-1.17652,-1.64852,-0.98964,1.90248,-0.25410
-0.44892,1.15208,-1.17618,-1.64920,-0.98935,1.90268,-0.25426
-0.44999,1.15183,-1.17585,-1.64987,-0.98906,1.90287,-0.25442
-0.45106,1.15159,-1.17553,-1.65053,-0.98877,1.90305,-0.25458
-0.45212,1.15135,-1.17521,-1.65118,-0.98849,1.90324,-0.25474
-0.45319,1.15112,-1.17490,-1.65182,-0.98822,1.90342,-0.25489
-0.45425,1.15089,-1.17459,-1.65244,-0.98795,1.90360,-0.25504
-0.45532,1.15066,-1.17429,-1.65306,-0.98768,1.90377,-0.25518
-0.45639,1.15044,-1.17399,-1.65366,-0.98742,1.90395,-0.25533
-0.45745,1.15022,-1.17370,-1.65425,-0.98716,1.90412,-0.25547
-0.45852,1.15000,-1.17342,-1.65483,-0.98691,1.90428,-0.25561
-0.45959,1.14979,-1.17314,-1.65541,-0.98666,1.90445,-0.25574
-0.46065,1.14958,-1.17286,-1.65597,-0.98641,1.90461,-0.25588
-0.46172,1.14938,-1.17259,-1.65652,-0.98617,1.90477,-0.25601
-0.46279,1.14918,-1.17233,-1.65707,-0.98593,1.90492,-0.25614
-0.46385,1.14898,-1.17207,-1.65760,-0.98570,1.90508,-0.25627
-0.46492,1.14878,-1.17181,-1.65813,-0.98547,1.90523,-0.25640
-0.46598,1.14858,-1.17155,-1.65867,-0.98523,1.90539,-0.25653
-0.46705,1.14829,-1.17116,-1.65946,-0.98490,1.90561,-0.25672
-0.46812,1.14800,-1.17077,-1.66023,-0.98457,1.90584,-0.25691
-0.46918,1.14771,-1.17040,-1.66100,-0.98424,1.90606,-0.25709
-0.47025,1.14743,-1.17003,-1.66174,-0.98392,1.90628,-0.25727
-0.47132,1.14715,-1.16967,-1.66248,-0.98361,1.90649,-0.25745
-0.47238,1.14688,-1.16931,-1.66320,-0.98330,1.90670,-0.25763
-0.47345,1.14661,-1.16896,-1.66391,-0.98299,1.90691,-0.25780
-0.47451,1.14635,-1.16862,-1.66461,-0.98269,1.90711,-0.25797
-0.47558,1.14609,-1.16828,-1.66529,-0.98240,1.90731,-0.25814
-0.47665,1.14584,-1.16795,-1.66597,-0.98211,1.90751,-0.25830
-0.47771,1.14559,-1.16763,-1.66663,-0.98182,1.90770,-0.25847
-0.47878,1.14535,-1.16731,-1.66728,-0.98154,1.90789,-0.25862
-0.47985,1.14510,-1.16700,-1.66792,-0.98127,1.90807,-0.25878
-0.48091,1.14487,-1.16669,-1.66855,-0.98100,1.90826,-0.25893
-0.48198,1.14463,-1.16639,-1.66916,-0.98073,1.90844,-0.25909
-0.48305,1.14441,-1.16609,-1.66977,-0.98047,1.90862,-0.25923
-0.48411,1.14418,-1.16580,-1.67036,-0.98021,1.90879,-0.25938
-0.48518,1.14396,-1.16551,-1.67095,-0.97996,1.90896,-0.25952
-0.48624,1.14374,-1.16523,-1.67152,-0.97971,1.90913,-0.25967
-0.48731,1.14353,-1.16496,-1.67209,-0.97947,1.90930,-0.25981
-0.48838,1.14332,-1.16469,-1.67264,-0.97923,1.90946,-0.25994
-0.48944,1.14311,-1.16442,-1.67319,-0.97899,1.90962,-0.26008
-0.49051,1.14290,-1.16416,-1.67372,-0.97876,1.90978,-0.26021
-0.49158,1.14270,-1.16391,-1.67425,-0.97853,1.90994,-0.26034
-0.49264,1.14251,-1.16365,-1.67476,-0.97830,1.91009,-0.26047
-0.49371,1.14238,-1.16350,-1.67509,-0.97816,1.91018,-0.26055
-0.49478,1.14213,-1.16316,-1.67577,-0.97787,1.91039,-0.26072
-0.49584,1.14187,-1.16283,-1.67645,-0.97758,1.91058,-0.26088
-0.49691,1.14162,-1.16250,-1.67711,-0.97730,1.91078,-0.26104
-0.49797,1.14137,-1.16218,-1.67776,-0.97702,1.91097,-0.26121
-0.49904,1.14113,-1.16187,-1.67840,-0.97675,1.91116,-0.26136
-0.50011,1.14089,-1.16156,-1.67903,-0.97648,1.91134,-0.26152
-0.50117,1.14066,-1.16126,-1.67965,-0.97621,1.91152,-0.26167
-0.50224,1.14043,-1.16096,-1.68025,-0.97595,1.91170,-0.26182
-0.50331,1.14020,-1.16067,-1.68085,-0.97570,1.91188,-0.26197
-0.50437,1.13998,-1.16038,-1.68143,-0.97544,1.91205,-0.26211
-0.50544,1.13976,-1.16010,-1.68201,-0.97520,1.91222,-0.26226
-0.50650,1.13954,-1.15982,-1.68257,-0.97495,1.91239,-0.26240
-0.50757,1.13933,-1.15955,-1.68313,-0.97471,1.91255,-0.26254
-0.50864,1.13912,-1.15929,-1.68367,-0.97448,1.91271,-0.26267
-0.50970,1.13892,-1.15903,-1.68421,-0.97425,1.91287,-0.26280
-0.51077,1.13871,-1.15877,-1.68474,-0.97402,1.91303,-0.26294
-0.51184,1.13852,-1.15852,-1.68525,-0.97379,1.91318,-0.26306
-0.51290,1.13834,-1.15829,-1.68572,-0.97359,1.91332,-0.26318
-0.51397,1.13810,-1.15799,-1.68633,-0.97333,1.91351,-0.26334
-0.51504,1.13787,-1.15770,-1.68693,-0.97307,1.91369,-0.26349
-0.51610,1.13764,-1.15741,-1.68752,-0.97282,1.91387,-0.26364
-0.51717,1.13741,-1.15713,-1.68810,-0.97257,1.91404,-0.26379
-0.51823,1.13719,-1.15685,-1.68867,-0.97232,1.91421,-0.26393
-0.51930,1.13697,-1.15657,-1.68923,-0.97208,1.91438,-0.26407
-0.52037,1.13676,-1.15631,-1.68978,-0.97185,1.91455,-0.26421
-0.52143,1.13654,-1.15604,-1.69032,-0.97161,1.91471,-0.26435
-0.52250,1.13634,-1.15579,-1.69086,-0.97138,1.91487,-0.26449
-0.52357,1.13613,-1.15553,-1.69138,-0.97116,1.91503,-0.26462
-0.52463,1.13593,-1.15528,-1.69189,-0.97094,1.91519,-0.26475
-0.52570,1.13580,-1.15512,-1.69222,-0.97079,1.91529,-0.26483
-0.52676,1.13552,-1.15475,-1.69297,-0.97048,1.91551,-0.26502
-0.52783,1.13523,-1.15439,-1.69371,-0.97017,1.91573,-0.26521
-0.52890,1.13496,-1.15403,-1.69443,-0.96986,1.91594,-0.26539
-0.52996,1.13468,-1.15368,-1.69515,-0.96956,1.91615,-0.26557
-0.53103,1.13441,-1.15333,-1.69585,-0.96927,1.91636,-0.26574
-0.53210,1.13415,-1.15299,-1.69653,-0.96897,1.91656,-0.26592
-0.53316,1.13389,-1.15266,-1.69721,-0.96869,1.91677,-0.26609
-0.53423,1.13363,-1.15233,-1.69787,-0.96841,1.91696,-0.26625
-0.53530,1.13338,-1.15201,-1.69852,-0.96813,1.91716,-0.26642
-0.53636,1.13313,-1.15170,-1.69917,-0.96786,1.91735,-0.26658
-0.53743,1.13289,-1.15139,-1.69979,-0.96759,1.91754,-0.26674
-0.53849,1.13265,-1.15108,-1.70041,-0.96733,1.91772,-0.26689
-0.53956,1.13242,-1.15079,-1.70102,-0.96707,1.91790,-0.26705
-0.54063,1.13219,-1.15049,-1.70162,-0.96682,1.91808,-0.26720
-0.54169,1.13196,-1.15021,-1.70220,-0.96657,1.91826,-0.26735
-0.54276,1.13174,-1.14992,-1.70278,-0.96632,1.91843,-0.26749
-0.54383,1.13152,-1.14965,-1.70335,-0.96608,1.91860,-0.26764
-0.54489,1.13130,-1.14938,-1.70390,-0.96584,1.91877,-0.26778
-0.54596,1.13109,-1.14911,-1.70445,-0.96561,1.91894,-0.26792
-0.54702,1.13088,-1.14885,-1.70499,-0.96538,1.91910,-0.26806
-0.54809,1.13067,-1.14859,-1.70551,-0.96515,1.91926,-0.26819
-0.54916,1.13047,-1.14834,-1.70603,-0.96493,1.91941,-0.26832
-0.55022,1.13027,-1.14809,-1.70654,-0.96471,1.91957,-0.26845
-0.55129,1.13019,-1.14798,-1.70676,-0.96462,1.91963,-0.26851
-0.55236,1.12992,-1.14763,-1.70747,-0.96432,1.91984,-0.26868
-0.55342,1.12966,-1.14728,-1.70817,-0.96403,1.92004,-0.26885
-0.55449,1.12940,-1.14694,-1.70885,-0.96374,1.92024,-0.26902
-0.55556,1.12915,-1.14660,-1.70952,-0.96346,1.92043,-0.26919
-0.55662,1.12891,-1.14627,-1.71018,-0.96318,1.92062,-0.26935
-0.55769,1.12866,-1.14595,-1.71083,-0.96291,1.92081,-0.26951
-0.55875,1.12842,-1.14563,-1.71147,-0.96264,1.92100,-0.26967
-0.55982,1.12819,-1.14532,-1.71209,-0.96238,1.92118,-0.26982
-0.56089,1.12796,-1.14502,-1.71271,-0.96212,1.92136,-0.26997
-0.56195,1.12773,-1.14472,-1.71331,-0.96187,1.92154,-0.27012
-0.56302,1.12750,-1.14442,-1.71391,-0.96162,1.92171,-0.27027
-0.56409,1.12728,-1.14414,-1.71449,-0.96137,1.92188,-0.27041
-0.56515,1.12707,-1.14385,-1.71506,-0.96113,1.92205,-0.27055
-0.56622,1.12685,-1.14357,-1.71563,-0.96089,1.92221,-0.27069
-0.56729,1.12665,-1.14330,-1.71618,-0.96066,1.92237,-0.27083
-0.56835,1.12644,-1.14303,-1.71672,-0.96043,1.92253,-0.27097
-0.56942,1.12624,-1.14277,-1.71726,-0.96020,1.92269,-0.27110
-0.57048,1.12604,-1.14251,-1.71778,-0.95998,1.92285,-0.27123
-0.57155,1.12584,-1.14225,-1.71829,-0.95976,1.92300,-0.27136
-0.57262,1.12565,-1.14200,-1.71880,-0.95955,1.92315,-0.27148
-0.57368,1.12563,-1.14197,-1.71887,-0.95952,1.92316,-0.27150
-0.57475,1.12539,-1.14163,-1.71954,-0.95924,1.92335,-0.27166
-0.57582,1.12516,-1.14130,-1.72019,-0.95897,1.92353,-0.27181
-0.57688,1.12493,-1.14097,-1.72084,-0.95870,1.92371,-0.27196
-0.57795,1.12470,-1.14065,-1.72147,-0.95844,1.92388,-0.27211
-0.57901,1.12448,-1.14034,-1.72209,-0.95818,1.92405,-0.27226
-0.58008,1.12426,-1.14003,-1.72270,-0.95793,1.92422,-0.27240
-0.58115,1.12405,-1.13973,-1.72330,-0.95768,1.92439,-0.27254
-0.58221,1.12384,-1.13943,-1.72389,-0.95743,1.92455,-0.27268
-0.58328,1.12363,-1.13914,-1.72447,-0.95719,1.92471,-0.27281
-0.58435,1.12342,-1.13885,-1.72504,-0.95695,1.92487,-0.27295
-0.58541,1.12322,-1.13857,-1.72560,-0.95672,1.92503,-0.27308
-0.58648,1.12303,-1.13829,-1.72615,-0.95649,1.92518,-0.27321
-0.58755,1.12283,-1.13802,-1.72669,-0.95627,1.92533,-0.27334
-0.58861,1.12264,-1.13775,-1.72722,-0.95604,1.92548,-0.27346
-0.58968,1.12245,-1.13749,-1.72774,-0.95583,1.92562,-0.27359
-0.59074,1.12227,-1.13723,-1.72826,-0.95561,1.92576,-0.27371
-0.59181,1.12218,-1.13710,-1.72852,-0.95550,1.92584,-0.27377
-0.59288,1.12198,-1.13681,-1.72909,-0.95527,1.92599,-0.27390
-0.59394,1.12179,-1.13652,-1.72965,-0.95503,1.92614,-0.27402
-0.59501,1.12160,-1.13624,-1.73020,-0.95481,1.92628,-0.27415
-0.59608,1.12142,-1.13596,-1.73074,-0.95458,1.92643,-0.27427
-0.59714,1.12124,-1.13569,-1.73128,-0.95436,1.92657,-0.27439
-0.59821,1.12106,-1.13542,-1.73180,-0.95414,1.92671,-0.27451
-0.59927,1.12088,-1.13516,-1.73231,-0.95393,1.92684,-0.27462
-0.60034,1.12079,-1.13503,-1.73257,-0.95382,1.92691,-0.27468
-0.60141,1.12062,-1.13475,-1.73312,-0.95360,1.92705,-0.27480
-0.60247,1.12044,-1.13447,-1.73365,-0.95338,1.92718,-0.27491
-0.60354,1.12027,-1.13420,-1.73418,-0.95316,1.92732,-0.27502
-0.60461,1.12010,-1.13393,-1.73470,-0.95295,1.92745,-0.27514
-0.60567,1.12000,-1.13377,-1.73501,-0.95282,1.92753,-0.27520
-0.60674,1.11983,-1.13350,-1.73554,-0.95261,1.92766,-0.27532
-0.60781,1.11966,-1.13323,-1.73606,-0.95239,1.92779,-0.27543
-0.60887,1.11949,-1.13296,-1.73657,-0.95218,1.92792,-0.27554
-0.60994,1.11946,-1.13292,-1.73666,-0.95214,1.92795,-0.27556
-0.61100,1.11914,-1.13248,-1.73751,-0.95180,1.92819,-0.27577
-0.61207,1.11883,-1.13206,-1.73836,-0.95145,1.92843,-0.27598
-0.61314,1.11852,-1.13164,-1.73918,-0.95112,1.92867,-0.27618
-0.61420,1.11822,-1.13123,-1.73999,-0.95078,1.92890,-0.27638
-0.61527,1.11792,-1.13082,-1.74079,-0.95046,1.92913,-0.27657
-0.61634,1.11763,-1.13043,-1.74158,-0.95014,1.92935,-0.27676
-0.61740,1.11734,-1.13004,-1.74235,-0.94982,1.92957,-0.27695
-0.61847,1.11706,-1.12966,-1.74310,-0.94951,1.92979,-0.27714
-0.61954,1.11679,-1.12928,-1.74385,-0.94921,1.93000,-0.27732
-0.62060,1.11651,-1.12892,-1.74458,-0.94891,1.93021,-0.27750
-0.62167,1.11624,-1.12856,-1.74529,-0.94862,1.93042,-0.27768
-0.62273,1.11598,-1.12820,-1.74600,-0.94833,1.93062,-0.27786
-0.62380,1.11572,-1.12785,-1.74669,-0.94804,1.93082,-0.27803
-0.62487,1.11547,-1.12751,-1.74737,-0.94776,1.93102,-0.27820
-0.62593,1.11522,-1.12718,-1.74804,-0.94749,1.93121,-0.27836
-0.62700,1.11497,-1.12685,-1.74869,-0.94722,1.93140,-0.27852
-0.62807,1.11473,-1.12652,-1.74934,-0.94695,1.93159,-0.27868
-0.62913,1.11449,-1.12621,-1.74997,-0.94669,1.93177,-0.27884
-0.63020,1.11425,-1.12590,-1.75059,-0.94643,1.93195,-0.27900
-0.63126,1.11402,-1.12559,-1.75120,-0.94618,1.93213,-0.27915
-0.63233,1.11380,-1.12529,-1.75180,-0.94593,1.93231,-0.27930
-0.63340,1.11357,-1.12500,-1.75239,-0.94569,1.93248,-0.27945
-0.63446,1.11335,-1.12471,-1.75297,-0.94545,1.93265,-0.27959
-0.63553,1.11314,-1.12442,-1.75354,-0.94521,1.93282,-0.27974
-0.63660,1.11293,-1.12414,-1.75410,-0.94498,1.93298,-0.27988
-0.63766,1.11272,-1.12387,-1.75465,-0.94475,1.93314,-0.28001
-0.63873,1.11251,-1.12360,-1.75519,-0.94453,1.93330,-0.28015
-0.63980,1.11231,-1.12334,-1.75572,-0.94430,1.93346,-0.28028
-0.64086,1.11211,-1.12308,-1.75624,-0.94409,1.93361,-0.28041
-0.64193,1.11192,-1.12282,-1.75675,-0.94387,1.93376,-0.28054
-0.64299,1.11172,-1.12257,-1.75725,-0.94366,1.93391,-0.28067
-0.64406,1.11166,-1.12249,-1.75742,-0.94359,1.93396,-0.28071
-0.64513,1.11140,-1.12216,-1.75809,-0.94332,1.93416,-0.28089
-0.64619,1.11114,-1.12183,-1.75874,-0.94305,1.93436,-0.28106
-0.64726,1.11089,-1.12151,-1.75939,-0.94278,1.93455,-0.28122
-0.64833,1.11064,-1.12120,-1.76002,-0.94252,1.93474,-0.28139
-0.64939,1.11040,-1.12089,-1.76064,-0.94227,1.93493,-0.28155
-0.65046,1.11016,-1.12059,-1.76125,-0.94201,1.93512,-0.28171
-0.65152,1.10992,-1.12029,-1.76185,-0.94176,1.93530,-0.28186
-0.65259,1.10969,-1.12000,-1.76244,-0.94152,1.93548,-0.28202
-0.65366,1.10946,-1.11971,-1.76302,-0.94128,1.93565,-0.28217
-0.65472,1.10924,-1.11943,-1.76359,-0.94104,1.93583,-0.28232
-0.65579,1.10902,-1.11915,-1.76415,-0.94081,1.93600,-0.28247
-0.65686,1.10880,-1.11888,-1.76470,-0.94058,1.93616,-0.28261
-0.65792,1.10859,-1.11861,-1.76524,-0.94036,1.93633,-0.28275
-0.65899,1.10838,-1.11835,-1.76577,-0.94014,1.93649,-0.28289
-0.66006,1.10817,-1.11809,-1.76629,-0.93992,1.93665,-0.28303
-0.66112,1.10797,-1.11784,-1.76680,-0.93971,1.93681,-0.28316
-0.66219,1.10777,-1.11760,-1.76730,-0.93950,1.93696,-0.28329
-0.66325,1.10762,-1.11741,-1.76767,-0.93935,1.93708,-0.28339
-0.66432,1.10734,-1.11706,-1.76838,-0.93906,1.93729,-0.28358
-0.66539,1.10706,-1.11672,-1.76907,-0.93877,1.93751,-0.28376
-0.66645,1.10679,-1.11638,-1.76975,-0.93849,1.93772,-0.28395
-0.66752,1.10652,-1.11605,-1.77042,-0.93822,1.93792,-0.28412
-0.66859,1.10626,-1.11573,-1.77107,-0.93795,1.93813,-0.28430
-0.66965,1.10600,-1.11541,-1.77172,-0.93769,1.93833,-0.28447
-0.67072,1.10574,-1.11510,-1.77235,-0.93742,1.93852,-0.28464
-0.67179,1.10549,-1.11479,-1.77298,-0.93717,1.93872,-0.28481
-0.67285,1.10524,-1.11449,-1.77359,-0.93692,1.93891,-0.28498
-0.67392,1.10500,-1.11419,-1.77419,-0.93667,1.93910,-0.28514
-0.67498,1.10476,-1.11390,-1.77478,-0.93643,1.93928,-0.28530
-0.67605,1.10452,-1.11362,-1.77536,-0.93619,1.93946,-0.28545
-0.67712,1.10429,-1.11334,-1.77592,-0.93595,1.93964,-0.28561
-0.67818,1.10406,-1.11306,-1.77648,-0.93572,1.93982,-0.28576
-0.67925,1.10384,-1.11279,-1.77703,-0.93549,1.93999,-0.28591
-0.68032,1.10362,-1.11253,-1.77757,-0.93527,1.94016,-0.28606
-0.68138,1.10340,-1.11227,-1.77810,-0.93505,1.94033,-0.28620
-0.68245,1.10319,-1.11201,-1.77862,-0.93483,1.94049,-0.28634
-0.68351,1.10298,-1.11176,-1.77913,-0.93462,1.94065,-0.28648
-0.68458,1.10277,-1.11152,-1.77964,-0.93441,1.94081,-0.28662
-0.68565,1.10257,-1.11128,-1.78013,-0.93420,1.94097,-0.28676
-0.68671,1.10254,-1.11124,-1.78020,-0.93418,1.94099,-0.28677
-0.68778,1.10227,-1.11093,-1.78084,-0.93391,1.94120,-0.28695
-0.68885,1.10201,-1.11062,-1.78147,-0.93365,1.94140,-0.28713
-0.68991,1.10175,-1.11031,-1.78210,-0.93340,1.94160,-0.28730
-0.69098,1.10149,-1.11001,-1.78271,-0.93314,1.94180,-0.28747
-0.69205,1.10124,-1.10972,-1.78331,-0.93290,1.94199,-0.28764
-0.69311,1.10099,-1.10943,-1.78390,-0.93265,1.94218,-0.28781
-0.69418,1.10075,-1.10915,-1.78448,-0.93241,1.94237,-0.28797
-0.69524,1.10051,-1.10887,-1.78505,-0.93218,1.94255,-0.28813
-0.69631,1.10028,-1.10859,-1.78561,-0.93195,1.94273,-0.28828
-0.69738,1.10005,-1.10833,-1.78616,-0.93172,1.94291,-0.28844
-0.69844,1.09982,-1.10806,-1.78670,-0.93150,1.94309,-0.28859
-0.69951,1.09959,-1.10781,-1.78723,-0.93128,1.94326,-0.28874
-0.70058,1.09937,-1.10755,-1.78775,-0.93106,1.94343,-0.28889
-0.70164,1.09916,-1.10730,-1.78826,-0.93085,1.94360,-0.28903
-0.70271,1.09894,-1.10706,-1.78877,-0.93064,1.94376,-0.28917
-0.70377,1.09873,-1.10682,-1.78926,-0.93043,1.94392,-0.28931
-0.70484,1.09860,-1.10666,-1.78958,-0.93030,1.94403,-0.28940
-0.70591,1.09828,-1.10627,-1.79036,-0.92999,1.94427,-0.28962
-0.70697,1.09797,-1.10589,-1.79113,-0.92968,1.94451,-0.28982
-0.70804,1.09766,-1.10552,-1.79188,-0.92938,1.94474,-0.29003
-0.70911,1.09736,-1.10515,-1.79262,-0.92908,1.94498,-0.29023
-0.71017,1.09707,-1.10479,-1.79335,-0.92878,1.94520,-0.29043
-0.71124,1.09678,-1.10443,-1.79406,-0.92850,1.94543,-0.29062
-0.71231,1.09649,-1.10409,-1.79476,-0.92821,1.94565,-0.29082
-0.71337,1.09621,-1.10374,-1.79545,-0.92793,1.94586,-0.29101
-0.71444,1.09593,-1.10341,-1.79613,-0.92766,1.94608,-0.29119
-0.71550,1.09566,-1.10308,-1.79679,-0.92739,1.94629,-0.29137
-0.71657,1.09539,-1.10276,-1.79744,-0.92713,1.94649,-0.29155
-0.71764,1.09512,-1.10244,-1.79808,-0.92687,1.94670,-0.29173
-0.71870,1.09486,-1.10213,-1.79871,-0.92661,1.94690,-0.29191
-0.71977,1.09461,-1.10182,-1.79933,-0.92636,1.94709,-0.29208
-0.72084,1.09436,-1.10152,-1.79994,-0.92611,1.94729,-0.29225
-0.72190,1.09411,-1.10123,-1.80053,-0.92587,1.94748,-0.29241
-0.72297,1.09387,-1.10094,-1.80112,-0.92563,1.94766,-0.29257
-0.72403,1.09363,-1.10066,-1.80169,-0.92540,1.94785,-0.29273
-0.72510,1.09339,-1.10038,-1.80226,-0.92516,1.94803,-0.29289
-0.72617,1.09316,-1.10011,-1.80281,-0.92494,1.94821,-0.29305
-0.72723,1.09293,-1.09984,-1.80336,-0.92471,1.94838,-0.29320
-0.72830,1.09271,-1.09958,-1.80389,-0.92450,1.94856,-0.29335
-0.72937,1.09249,-1.09932,-1.80442,-0.92428,1.94873,-0.29350
-0.73043,1.09227,-1.09907,-1.80494,-0.92407,1.94889,-0.29364
-0.73150,1.09206,-1.09882,-1.80544,-0.92386,1.94906,-0.29379
-0.73257,1.09185,-1.09857,-1.80594,-0.92365,1.94922,-0.29393
-0.73363,1.09164,-1.09833,-1.80643,-0.92345,1.94938,-0.29407
-0.73470,1.09157,-1.09826,-1.80659,-0.92339,1.94943,-0.29411
-0.73576,1.09132,-1.09797,-1.80719,-0.92315,1.94963,-0.29428
-0.73683,1.09106,-1.09768,-1.80778,-0.92291,1.94982,-0.29445
-0.73790,1.09081,-1.09740,-1.80835,-0.92267,1.95001,-0.29462
-0.73896,1.09057,-1.09712,-1.80892,-0.92244,1.95020,-0.29479
-0.74003,1.09033,-1.09685,-1.80948,-0.92221,1.95039,-0.29495
-0.74110,1.09009,-1.09659,-1.81002,-0.92199,1.95057,-0.29511
-0.74216,1.08986,-1.09633,-1.81056,-0.92177,1.95075,-0.29526
-0.74323,1.08963,-1.09607,-1.81109,-0.92155,1.95093,-0.29542
-0.74430,1.08940,-1.09582,-1.81160,-0.92134,1.95110,-0.29557
-0.74536,1.08918,-1.09557,-1.81211,-0.92113,1.95127,-0.29572
-0.74643,1.08896,-1.09533,-1.81261,-0.92092,1.95144,-0.29587
-0.74749,1.08875,-1.09509,-1.81310,-0.92072,1.95160,-0.29601
-0.74856,1.08857,-1.09490,-1.81350,-0.92056,1.95174,-0.29613
-0.74963,1.08832,-1.09462,-1.81408,-0.92032,1.95193,-0.29630
-0.75069,1.08808,-1.09434,-1.81466,-0.92009,1.95212,-0.29646
-0.75176,1.08784,-1.09406,-1.81522,-0.91986,1.95231,-0.29662
-0.75283,1.08760,-1.09379,-1.81577,-0.91964,1.95249,-0.29678
-0.75389,1.08736,-1.09353,-1.81632,-0.91941,1.95267,-0.29694
-0.75496,1.08713,-1.09327,-1.81685,-0.91920,1.95285,-0.29710
-0.75602,1.08691,-1.09301,-1.81737,-0.91898,1.95302,-0.29725
-0.75709,1.08668,-1.09276,-1.81789,-0.91877,1.95319,-0.29740
-0.75816,1.08646,-1.09251,-1.81839,-0.91857,1.95336,-0.29755
-0.75922,1.08625,-1.09227,-1.81889,-0.91836,1.95353,-0.29769
-0.76029,1.08603,-1.09204,-1.81938,-0.91817,1.95369,-0.29784
-0.76136,1.08592,-1.09191,-1.81964,-0.91806,1.95378,-0.29791
-0.76242,1.08564,-1.09158,-1.82030,-0.91779,1.95399,-0.29810
-0.76349,1.08536,-1.09126,-1.82095,-0.91753,1.95421,-0.29829
-0.76456,1.08509,-1.09094,-1.82159,-0.91728,1.95441,-0.29847
-0.76562,1.08483,-1.09063,-1.82222,-0.91702,1.95462,-0.29865
-0.76669,1.08456,-1.09033,-1.82284,-0.91678,1.95482,-0.29883
-0.76775,1.08430,-1.09003,-1.82345,-0.91653,1.95502,-0.29900
-0.76882,1.08405,-1.08974,-1.82404,-0.91629,1.95521,-0.29918
-0.76989,1.08380,-1.08945,-1.82463,-0.91606,1.95541,-0.29935
-0.77095,1.08355,-1.08917,-1.82520,-0.91583,1.95560,-0.29951
-0.77202,1.08331,-1.08889,-1.82577,-0.91560,1.95578,-0.29968
-0.77309,1.08307,-1.08862,-1.82632,-0.91538,1.95597,-0.29984
-0.77415,1.08284,-1.08835,-1.82686,-0.91516,1.95615,-0.30000
-0.77522,1.08261,-1.08809,-1.82740,-0.91494,1.95632,-0.30015
-0.77628,1.08238,-1.08783,-1.82793,-0.91473,1.95650,-0.30030
-0.77735,1.08216,-1.08758,-1.82844,-0.91452,1.95667,-0.30046
-0.77842,1.08194,-1.08733,-1.82895,-0.91431,1.95684,-0.30060
-0.77948,1.08172,-1.08709,-1.82945,-0.91411,1.95701,-0.30075
-0.78055,1.08151,-1.08685,-1.82993,-0.91391,1.95717,-0.30089
-0.78162,1.08133,-1.08665,-1.83035,-0.91374,1.95731,-0.30102
-0.78268,1.08099,-1.08626,-1.83113,-0.91344,1.95757,-0.30124
-0.78375,1.08066,-1.08588,-1.83190,-0.91313,1.95782,-0.30147
-0.78482,1.08033,-1.08551,-1.83265,-0.91283,1.95807,-0.30169
-0.78588,1.08001,-1.08515,-1.83339,-0.91254,1.95831,-0.30191
-0.78695,1.07969,-1.08479,-1.83411,-0.91225,1.95856,-0.30212
-0.78801,1.07938,-1.08444,-1.83482,-0.91197,1.95879,-0.30233
-0.78908,1.07908,-1.08410,-1.83552,-0.91169,1.95903,-0.30254
-0.79015,1.07877,-1.08376,-1.83621,-0.91142,1.95926,-0.30274
-0.79121,1.07848,-1.08343,-1.83689,-0.91115,1.95949,-0.30294
-0.79228,1.07819,-1.08311,-1.83755,-0.91088,1.95971,-0.30314
-0.79335,1.07790,-1.08279,-1.83820,-0.91062,1.95993,-0.30334
-0.79441,1.07762,-1.08248,-1.83884,-0.91037,1.96014,-0.30353
-0.79548,1.07734,-1.08217,-1.83947,-0.91012,1.96036,-0.30372
-0.79655,1.07707,-1.08187,-1.84008,-0.90987,1.96057,-0.30390
-0.79761,1.07680,-1.08157,-1.84069,-0.90963,1.96077,-0.30408
-0.79868,1.07653,-1.08128,-1.84128,-0.90939,1.96098,-0.30426
-0.79974,1.07627,-1.08100,-1.84187,-0.90915,1.96117,-0.30444
-0.80081,1.07602,-1.08072,-1.84244,-0.90892,1.96137,-0.30461
-0.80188,1.07576,-1.08045,-1.84301,-0.90870,1.96156,-0.30478
-0.80294,1.07552,-1.08018,-1.84356,-0.90847,1.96175,-0.30495
-0.80401,1.07527,-1.07991,-1.84410,-0.90825,1.96194,-0.30512
-0.80508,1.07503,-1.07966,-1.84464,-0.90804,1.96213,-0.30528
-0.80614,1.07480,-1.07940,-1.84516,-0.90783,1.96231,-0.30544
-0.80721,1.07456,-1.07915,-1.84568,-0.90762,1.96249,-0.30560
-0.80827,1.07434,-1.07891,-1.84618,-0.90742,1.96266,-0.30575
-0.80934,1.07411,-1.07867,-1.84668,-0.90722,1.96283,-0.30591
-0.81041,1.07389,-1.07843,-1.84717,-0.90702,1.96300,-0.30606
-0.81147,1.07367,-1.07820,-1.84765,-0.90682,1.96317,-0.30620
-0.81254,1.07363,-1.07815,-1.84775,-0.90678,1.96321,-0.30624
-0.81361,1.07337,-1.07788,-1.84831,-0.90656,1.96340,-0.30641
-0.81467,1.07313,-1.07761,-1.84887,-0.90634,1.96359,-0.30657
-0.81574,1.07288,-1.07734,-1.84941,-0.90612,1.96378,-0.30674
-0.81681,1.07264,-1.07708,-1.84994,-0.90591,1.96396,-0.30690
-0.81787,1.07241,-1.07683,-1.85047,-0.90570,1.96414,-0.30706
-0.81894,1.07218,-1.07658,-1.85098,-0.90549,1.96432,-0.30722
-0.82000,1.07195,-1.07634,-1.85148,-0.90529,1.96449,-0.30738
-0.82107,1.07173,-1.07610,-1.85198,-0.90509,1.96467,-0.30753
-0.82214,1.07150,-1.07586,-1.85247,-0.90489,1.96483,-0.30768
-0.82320,1.07129,-1.07563,-1.85295,-0.90470,1.96500,-0.30783
-0.82427,1.07124,-1.07558,-1.85305,-0.90466,1.96504,-0.30786
-0.82534,1.07101,-1.07533,-1.85357,-0.90445,1.96522,-0.30802
-0.82640,1.07078,-1.07508,-1.85408,-0.90425,1.96539,-0.30817
-0.82747,1.07055,-1.07484,-1.85458,-0.90404,1.96557,-0.30833
-0.82853,1.07033,-1.07460,-1.85508,-0.90385,1.96574,-0.30848
-0.82960,1.07011,-1.07436,-1.85556,-0.90365,1.96591,-0.30863
-0.83067,1.06989,-1.07413,-1.85604,-0.90346,1.96608,-0.30878
-0.83173,1.06966,-1.07388,-1.85655,-0.90326,1.96625,-0.30893
-0.83280,1.06943,-1.07364,-1.85705,-0.90306,1.96642,-0.30909
-0.83387,1.06921,-1.07340,-1.85754,-0.90286,1.96659,-0.30924
-0.83493,1.06899,-1.07317,-1.85802,-0.90267,1.96676,-0.30939
-0.83600,1.06886,-1.07303,-1.85831,-0.90255,1.96686,-0.30948
-0.83707,1.06863,-1.07278,-1.85881,-0.90235,1.96704,-0.30963
-0.83813,1.06841,-1.07254,-1.85931,-0.90215,1.96721,-0.30979
-0.83920,1.06819,-1.07230,-1.85980,-0.90196,1.96738,-0.30994
-0.84026,1.06797,-1.07207,-1.86028,-0.90177,1.96755,-0.31009
-0.84133,1.06784,-1.07193,-1.86057,-0.90165,1.96765,-0.31018
-0.84240,1.06762,-1.07169,-1.86106,-0.90145,1.96782,-0.31033
-0.84346,1.06740,-1.07145,-1.86155,-0.90126,1.96799,-0.31048
-0.84453,1.06718,-1.07122,-1.86202,-0.90107,1.96815,-0.31063
-0.84560,1.06716,-1.07120,-1.86207,-0.90105,1.96817,-0.31064
-0.84666,1.06694,-1.07097,-1.86255,-0.90086,1.96834,-0.31079
-0.84773,1.06683,-1.07085,-1.86279,-0.90077,1.96842,-0.31086
-0.84880,1.06661,-1.07062,-1.86327,-0.90057,1.96859,-0.31101
-0.84986,1.06648,-1.07048,-1.86356,-0.90046,1.96869,-0.31110
-0.85093,1.06626,-1.07024,-1.86405,-0.90026,1.96886,-0.31125
-0.85199,1.06604,-1.07000,-1.86454,-0.90007,1.96903,-0.31140
-0.85306,1.06582,-1.06977,-1.86501,-0.89988,1.96919,-0.31155
-0.85413,1.06585,-1.06982,-1.86493,-0.89991,1.96917,-0.31153
-0.85519,1.06610,-1.07025,-1.86415,-0.90018,1.96899,-0.31136
-0.85626,1.06635,-1.07068,-1.86339,-0.90044,1.96880,-0.31119
-0.85733,1.06660,-1.07110,-1.86263,-0.90070,1.96862,-0.31102
-0.85839,1.06684,-1.07151,-1.86189,-0.90096,1.96844,-0.31085
-0.85946,1.06708,-1.07191,-1.86116,-0.90121,1.96826,-0.31069
-0.86052,1.06731,-1.07231,-1.86045,-0.90146,1.96809,-0.31053
-0.86159,1.06754,-1.07270,-1.85974,-0.90170,1.96792,-0.31038
-0.86266,1.06776,-1.07309,-1.85905,-0.90194,1.96776,-0.31022
-0.86372,1.06798,-1.07346,-1.85838,-0.90218,1.96759,-0.31007
-0.86479,1.06820,-1.07383,-1.85771,-0.90241,1.96743,-0.30992
-0.86586,1.06841,-1.07420,-1.85705,-0.90264,1.96727,-0.30978
-0.86692,1.06862,-1.07455,-1.85641,-0.90286,1.96712,-0.30964
-0.86799,1.06882,-1.07490,-1.85578,-0.90308,1.96697,-0.30950
-0.86906,1.06902,-1.07525,-1.85515,-0.90330,1.96682,-0.30936
-0.87012,1.06922,-1.07559,-1.85454,-0.90352,1.96667,-0.30922
-0.87119,1.06941,-1.07592,-1.85394,-0.90373,1.96653,-0.30909
-0.87225,1.06961,-1.07624,-1.85335,-0.90394,1.96638,-0.30896
-0.87332,1.06979,-1.07656,-1.85277,-0.90414,1.96624,-0.30883
-0.87439,1.06998,-1.07688,-1.85220,-0.90434,1.96611,-0.30871
-0.87545,1.07016,-1.07719,-1.85164,-0.90454,1.96597,-0.30859
-0.87652,1.07033,-1.07749,-1.85109,-0.90474,1.96584,-0.30846
-0.87759,1.07051,-1.07779,-1.85055,-0.90493,1.96571,-0.30835
-0.87865,1.07068,-1.07808,-1.85002,-0.90512,1.96558,-0.30823
-0.87972,1.07085,-1.07837,-1.84950,-0.90530,1.96546,-0.30811
-0.88078,1.07101,-1.07865,-1.84898,-0.90549,1.96533,-0.30800
-0.88185,1.07117,-1.07893,-1.84848,-0.90567,1.96521,-0.30789
-0.88292,1.07133,-1.07920,-1.84798,-0.90584,1.96509,-0.30778
-0.88398,1.07138,-1.07930,-1.84781,-0.90591,1.96506,-0.30775
-0.88505,1.07158,-1.07972,-1.84708,-0.90616,1.96491,-0.30762
-0.88612,1.07177,-1.08013,-1.84637,-0.90641,1.96477,-0.30748
-0.88718,1.07196,-1.08053,-1.84566,-0.90666,1.96462,-0.30736
-0.88825,1.07214,-1.08093,-1.84497,-0.90690,1.96449,-0.30723
-0.88932,1.07232,-1.08131,-1.84429,-0.90714,1.96435,-0.30711
-0.89038,1.07250,-1.08170,-1.84362,-0.90737,1.96422,-0.30699
-0.89145,1.07268,-1.08207,-1.84297,-0.90760,1.96409,-0.30687
-0.89251,1.07285,-1.08244,-1.84232,-0.90783,1.96396,-0.30675
-0.89358,1.07302,-1.08280,-1.84169,-0.90806,1.96383,-0.30663
-0.89465,1.07318,-1.08315,-1.84107,-0.90828,1.96371,-0.30652
-0.89571,1.07334,-1.08350,-1.84045,-0.90850,1.96358,-0.30641
-0.89678,1.07350,-1.08385,-1.83985,-0.90871,1.96346,-0.30630
-0.89785,1.07366,-1.08418,-1.83926,-0.90892,1.96335,-0.30620
-0.89891,1.07381,-1.08451,-1.83868,-0.90913,1.96323,-0.30609
-0.89998,1.07396,-1.08484,-1.83811,-0.90933,1.96312,-0.30599
-0.90104,1.07411,-1.08516,-1.83755,-0.90953,1.96301,-0.30589
-0.90211,1.07425,-1.08547,-1.83700,-0.90973,1.96290,-0.30579
-0.90318,1.07440,-1.08578,-1.83645,-0.90992,1.96279,-0.30570
-0.90424,1.07454,-1.08608,-1.83592,-0.91012,1.96269,-0.30560
-0.90531,1.07467,-1.08638,-1.83540,-0.91030,1.96258,-0.30551
-0.90638,1.07481,-1.08667,-1.83488,-0.91049,1.96248,-0.30542
-0.90744,1.07494,-1.08696,-1.83438,-0.91067,1.96238,-0.30533
-0.90851,1.07498,-1.08707,-1.83419,-0.91074,1.96235,-0.30530
-0.90958,1.07515,-1.08758,-1.83333,-0.91104,1.96222,-0.30519
-0.91064,1.07531,-1.08809,-1.83248,-0.91133,1.96210,-0.30507
-0.91171,1.07548,-1.08858,-1.83165,-0.91162,1.96198,-0.30496
-0.91277,1.07563,-1.08907,-1.83083,-0.91190,1.96186,-0.30486
-0.91384,1.07579,-1.08955,-1.83003,-0.91218,1.96174,-0.30475
-0.91491,1.07594,-1.09002,-1.82924,-0.91246,1.96162,-0.30465
-0.91597,1.07609,-1.09048,-1.82846,-0.91273,1.96151,-0.30455
-0.91704,1.07624,-1.09094,-1.82770,-0.91300,1.96140,-0.30445
-0.91811,1.07638,-1.09139,-1.82695,-0.91326,1.96129,-0.30435
-0.91917,1.07652,-1.09182,-1.82621,-0.91352,1.96119,-0.30426
-0.92024,1.07666,-1.09226,-1.82549,-0.91378,1.96108,-0.30416
-0.92131,1.07679,-1.09268,-1.82478,-0.91403,1.96098,-0.30407
-0.92237,1.07692,-1.09309,-1.82408,-0.91427,1.96088,-0.30398
-0.92344,1.07705,-1.09350,-1.82339,-0.91452,1.96078,-0.30390
-0.92450,1.07718,-1.09390,-1.82271,-0.91476,1.96069,-0.30381
-0.92557,1.07730,-1.09430,-1.82205,-0.91499,1.96059,-0.30373
-0.92664,1.07742,-1.09469,-1.82140,-0.91523,1.96050,-0.30365
-0.92770,1.07754,-1.09507,-1.82075,-0.91546,1.96041,-0.30357
-0.92877,1.07766,-1.09544,-1.82012,-0.91568,1.96032,-0.30349
-0.92984,1.07778,-1.09581,-1.81950,-0.91590,1.96024,-0.30341
-0.93090,1.07789,-1.09617,-1.81889,-0.91612,1.96015,-0.30333
-0.93197,1.07800,-1.09652,-1.81829,-0.91634,1.96007,-0.30326
-0.93303,1.07810,-1.09687,-1.81770,-0.91655,1.95999,-0.30319
-0.93410,1.07821,-1.09721,-1.81713,-0.91676,1.95991,-0.30312
-0.93517,1.07831,-1.09755,-1.81656,-0.91696,1.95983,-0.30305
-0.93623,1.07842,-1.09788,-1.81600,-0.91716,1.95975,-0.30298
-0.93730,1.07851,-1.09820,-1.81545,-0.91736,1.95968,-0.30291
-0.93837,1.07861,-1.09852,-1.81491,-0.91756,1.95960,-0.30285
-0.93943,1.07871,-1.09884,-1.81438,-0.91775,1.95953,-0.30278
-0.94050,1.07880,-1.09914,-1.81386,-0.91794,1.95946,-0.30272
-0.94157,1.07887,-1.09937,-1.81346,-0.91808,1.95941,-0.30267
-0.94263,1.07899,-1.09987,-1.81265,-0.91837,1.95931,-0.30259
-0.94370,1.07911,-1.10035,-1.81185,-0.91865,1.95922,-0.30251
-0.94476,1.07923,-1.10083,-1.81106,-0.91893,1.95913,-0.30243
-0.94583,1.07935,-1.10130,-1.81028,-0.91921,1.95904,-0.30235
-0.94690,1.07946,-1.10176,-1.80952,-0.91948,1.95895,-0.30227
-0.94796,1.07958,-1.10221,-1.80877,-0.91974,1.95887,-0.30220
-0.94903,1.07969,-1.10266,-1.80803,-0.92000,1.95879,-0.30213
-0.95010,1.07979,-1.10310,-1.80731,-0.92026,1.95870,-0.30205
-0.95116,1.07990,-1.10353,-1.80660,-0.92052,1.95863,-0.30198
-0.95223,1.08000,-1.10395,-1.80590,-0.92077,1.95855,-0.30192
-0.95329,1.08010,-1.10436,-1.80521,-0.92101,1.95847,-0.30185
-0.95436,1.08020,-1.10477,-1.80454,-0.92126,1.95840,-0.30178
-0.95543,1.08029,-1.10517,-1.80387,-0.92149,1.95832,-0.30172
-0.95649,1.08039,-1.10556,-1.80322,-0.92173,1.95825,-0.30166
-0.95756,1.08048,-1.10595,-1.80258,-0.92196,1.95818,-0.30159
-0.95863,1.08057,-1.10633,-1.80195,-0.92219,1.95811,-0.30153
-0.95969,1.08066,-1.10670,-1.80133,-0.92241,1.95805,-0.30148
-0.96076,1.08074,-1.10706,-1.80072,-0.92263,1.95798,-0.30142
-0.96183,1.08083,-1.10742,-1.80012,-0.92285,1.95792,-0.30136
-0.96289,1.08091,-1.10778,-1.79953,-0.92307,1.95785,-0.30131
-0.96396,1.08099,-1.10812,-1.79895,-0.92328,1.95779,-0.30125
-0.96502,1.08107,-1.10847,-1.79838,-0.92349,1.95773,-0.30120
-0.96609,1.08115,-1.10880,-1.79782,-0.92369,1.95767,-0.30115
-0.96716,1.08122,-1.10913,-1.79727,-0.92389,1.95762,-0.30110
-0.96822,1.08130,-1.10945,-1.79673,-0.92409,1.95756,-0.30105
-0.96929,1.08137,-1.10977,-1.79620,-0.92428,1.95750,-0.30100
-0.97036,1.08143,-1.11006,-1.79572,-0.92446,1.95745,-0.30096
-0.97142,1.08150,-1.11045,-1.79508,-0.92469,1.95740,-0.30091
-0.97249,1.08157,-1.11083,-1.79446,-0.92491,1.95735,-0.30087
-0.97356,1.08164,-1.11121,-1.79384,-0.92514,1.95730,-0.30083
-0.97462,1.08170,-1.11158,-1.79324,-0.92535,1.95725,-0.30078
-0.97569,1.08176,-1.11195,-1.79264,-0.92557,1.95720,-0.30074
-0.97675,1.08182,-1.11230,-1.79206,-0.92578,1.95716,-0.30070
-0.97782,1.08188,-1.11266,-1.79148,-0.92599,1.95711,-0.30066
-0.97889,1.08194,-1.11300,-1.79092,-0.92619,1.95707,-0.30062
-0.97995,1.08200,-1.11334,-1.79036,-0.92639,1.95702,-0.30059
-0.98102,1.08206,-1.11367,-1.78982,-0.92659,1.95698,-0.30055
-0.98209,1.08211,-1.11400,-1.78928,-0.92679,1.95694,-0.30051
-0.98315,1.08216,-1.11432,-1.78875,-0.92698,1.95690,-0.30048
-0.98422,1.08217,-1.11437,-1.78868,-0.92701,1.95690,-0.30048
-0.98528,1.08222,-1.11480,-1.78799,-0.92725,1.95686,-0.30044
-0.98635,1.08227,-1.11522,-1.78732,-0.92749,1.95682,-0.30041
-0.98742,1.08231,-1.11564,-1.78665,-0.92773,1.95679,-0.30038
-0.98848,1.08236,-1.11605,-1.78600,-0.92796,1.95675,-0.30035
-0.98955,1.08240,-1.11645,-1.78536,-0.92819,1.95672,-0.30032
-0.99062,1.08245,-1.11684,-1.78473,-0.92841,1.95668,-0.30029
-0.99168,1.08249,-1.11723,-1.78411,-0.92863,1.95665,-0.30027
-0.99275,1.08253,-1.11761,-1.78350,-0.92885,1.95662,-0.30024
-0.99382,1.08257,-1.11799,-1.78290,-0.92907,1.95659,-0.30021
-0.99488,1.08261,-1.11835,-1.78231,-0.92928,1.95656,-0.30019
-0.99595,1.08264,-1.11872,-1.78173,-0.92949,1.95653,-0.30017
-0.99701,1.08268,-1.11907,-1.78116,-0.92969,1.95650,-0.30014
-0.99808,1.08272,-1.11942,-1.78060,-0.92990,1.95648,-0.30012
-0.99915,1.08275,-1.11976,-1.78005,-0.93010,1.95645,-0.30010
-1.00021,1.08278,-1.12010,-1.77950,-0.93029,1.95643,-0.30008
-1.00128,1.08282,-1.12043,-1.77897,-0.93049,1.95640,-0.30006
-1.00235,1.08282,-1.12051,-1.77885,-0.93053,1.95640,-0.30005
-1.00341,1.08286,-1.12093,-1.77818,-0.93077,1.95637,-0.30003
-1.00448,1.08289,-1.12135,-1.77751,-0.93100,1.95635,-0.30001
-1.00554,1.08292,-1.12177,-1.77686,-0.93124,1.95632,-0.29999
-1.00661,1.08295,-1.12217,-1.77622,-0.93147,1.95630,-0.29997
-1.00768,1.08298,-1.12257,-1.77559,-0.93169,1.95628,-0.29995
-1.00874,1.08300,-1.12296,-1.77497,-0.93191,1.95626,-0.29994
-1.00981,1.08303,-1.12335,-1.77436,-0.93213,1.95624,-0.29992
-1.01088,1.08305,-1.12372,-1.77376,-0.93235,1.95622,-0.29990
-1.01194,1.08308,-1.12410,-1.77317,-0.93256,1.95620,-0.29989
-1.01301,1.08310,-1.12446,-1.77259,-0.93277,1.95618,-0.29987
-1.01408,1.08313,-1.12482,-1.77202,-0.93297,1.95617,-0.29986
-1.01514,1.08315,-1.12517,-1.77146,-0.93318,1.95615,-0.29985
-1.01621,1.08317,-1.12552,-1.77091,-0.93338,1.95613,-0.29983
-1.01727,1.08319,-1.12586,-1.77037,-0.93357,1.95612,-0.29982
-1.01834,1.08321,-1.12617,-1.76988,-0.93375,1.95610,-0.29981
-1.01941,1.08322,-1.12658,-1.76922,-0.93398,1.95610,-0.29981
-1.02047,1.08323,-1.12699,-1.76858,-0.93421,1.95609,-0.29980
-1.02154,1.08324,-1.12740,-1.76796,-0.93443,1.95608,-0.29980
-1.02261,1.08324,-1.12779,-1.76734,-0.93465,1.95608,-0.29979
-1.02367,1.08325,-1.12818,-1.76673,-0.93487,1.95607,-0.29979
-1.02474,1.08326,-1.12857,-1.76613,-0.93508,1.95607,-0.29979
-1.02581,1.08326,-1.12894,-1.76554,-0.93529,1.95606,-0.29978
-1.02687,1.08327,-1.12931,-1.76496,-0.93550,1.95606,-0.29978
-1.02794,1.08327,-1.12967,-1.76440,-0.93571,1.95605,-0.29978
-1.02900,1.08328,-1.13003,-1.76384,-0.93591,1.95605,-0.29978
-1.03007,1.08328,-1.13038,-1.76329,-0.93611,1.95605,-0.29978
-1.03114,1.08329,-1.13073,-1.76275,-0.93630,1.95605,-0.29978
-1.03220,1.08329,-1.13090,-1.76247,-0.93640,1.95604,-0.29978
-1.03327,1.08329,-1.13130,-1.76185,-0.93662,1.95604,-0.29978
-1.03434,1.08329,-1.13169,-1.76124,-0.93684,1.95605,-0.29978
-1.03540,1.08329,-1.13208,-1.76064,-0.93705,1.95605,-0.29978
-1.03647,1.08328,-1.13246,-1.76005,-0.93727,1.95605,-0.29978
-1.03753,1.08328,-1.13283,-1.75947,-0.93747,1.95605,-0.29979
-1.03860,1.08328,-1.13320,-1.75890,-0.93768,1.95605,-0.29979
-1.03967,1.08328,-1.13356,-1.75834,-0.93788,1.95605,-0.29979
-1.04073,1.08327,-1.13391,-1.75779,-0.93808,1.95606,-0.29980
-1.04180,1.08327,-1.13426,-1.75725,-0.93828,1.95606,-0.29980
-1.04287,1.08327,-1.13447,-1.75692,-0.93839,1.95606,-0.29980
-1.04393,1.08325,-1.13486,-1.75633,-0.93860,1.95608,-0.29982
-1.04500,1.08323,-1.13524,-1.75575,-0.93881,1.95609,-0.29983
-1.04607,1.08322,-1.13561,-1.75517,-0.93902,1.95610,-0.29984
-1.04713,1.08320,-1.13598,-1.75461,-0.93922,1.95612,-0.29986
-1.04820,1.08318,-1.13634,-1.75405,-0.93942,1.95613,-0.29987
-1.04926,1.08316,-1.13670,-1.75351,-0.93961,1.95614,-0.29988
-1.05033,1.08314,-1.13702,-1.75302,-0.93979,1.95616,-0.29990
-1.05140,1.08309,-1.13743,-1.75241,-0.94000,1.95620,-0.29994
-1.05246,1.08303,-1.13783,-1.75182,-0.94020,1.95624,-0.29998
-1.05353,1.08298,-1.13822,-1.75123,-0.94040,1.95629,-0.30002
-1.05460,1.08292,-1.13861,-1.75066,-0.94060,1.95633,-0.30006
-1.05566,1.08287,-1.13900,-1.75010,-0.94080,1.95637,-0.30009
-1.05673,1.08281,-1.13937,-1.74954,-0.94099,1.95641,-0.30013
-1.05779,1.08276,-1.13974,-1.74900,-0.94119,1.95645,-0.30017
-1.05886,1.08271,-1.14010,-1.74846,-0.94137,1.95649,-0.30021
-1.05993,1.08270,-1.14014,-1.74840,-0.94139,1.95650,-0.30021
-1.06099,1.08261,-1.14055,-1.74781,-0.94159,1.95657,-0.30027
-1.06206,1.08252,-1.14096,-1.74724,-0.94179,1.95663,-0.30033
-1.06313,1.08244,-1.14135,-1.74667,-0.94198,1.95670,-0.30039
-1.06419,1.08235,-1.14174,-1.74611,-0.94217,1.95676,-0.30045
-1.06526,1.08227,-1.14212,-1.74557,-0.94236,1.95683,-0.30051
-1.06633,1.08219,-1.14250,-1.74503,-0.94254,1.95689,-0.30057
-1.06739,1.08213,-1.14272,-1.74470,-0.94266,1.95693,-0.30061
-1.06846,1.08199,-1.14315,-1.74413,-0.94284,1.95704,-0.30070
-1.06952,1.08186,-1.14356,-1.74356,-0.94303,1.95714,-0.30080
-1.07059,1.08172,-1.14397,-1.74301,-0.94321,1.95724,-0.30089
-1.07166,1.08159,-1.14437,-1.74246,-0.94339,1.95735,-0.30098
-1.07272,1.08146,-1.14476,-1.74192,-0.94357,1.95745,-0.30107
-1.07379,1.08133,-1.14515,-1.74139,-0.94375,1.95754,-0.30116
-1.07486,1.08127,-1.14531,-1.74118,-0.94382,1.95759,-0.30120
-1.07592,1.08108,-1.14575,-1.74060,-0.94400,1.95773,-0.30133
-1.07699,1.08089,-1.14618,-1.74004,-0.94417,1.95788,-0.30146
-1.07806,1.08071,-1.14661,-1.73949,-0.94435,1.95802,-0.30159
-1.07912,1.08052,-1.14703,-1.73895,-0.94452,1.95816,-0.30171
-1.08019,1.08034,-1.14744,-1.73841,-0.94469,1.95830,-0.30184
-1.08125,1.08016,-1.14784,-1.73788,-0.94486,1.95843,-0.30196
-1.08232,1.07999,-1.14824,-1.73737,-0.94502,1.95857,-0.30208
-1.08339,1.07991,-1.14841,-1.73716,-0.94509,1.95863,-0.30214
-1.08445,1.07968,-1.14886,-1.73660,-0.94526,1.95881,-0.30230
-1.08552,1.07944,-1.14930,-1.73605,-0.94543,1.95898,-0.30246
-1.08659,1.07921,-1.14973,-1.73551,-0.94559,1.95916,-0.30262
-1.08765,1.07899,-1.15016,-1.73497,-0.94575,1.95933,-0.30277
-1.08872,1.07876,-1.15058,-1.73445,-0.94592,1.95950,-0.30293
-1.08978,1.07854,-1.15100,-1.73393,-0.94607,1.95967,-0.30308
-1.09085,1.07832,-1.15140,-1.73343,-0.94623,1.95984,-0.30323
-1.09192,1.07813,-1.15177,-1.73297,-0.94637,1.95999,-0.30336
-1.09298,1.07787,-1.15220,-1.73245,-0.94653,1.96018,-0.30354
-1.09405,1.07762,-1.15262,-1.73194,-0.94668,1.96038,-0.30371
-1.09512,1.07737,-1.15304,-1.73143,-0.94683,1.96057,-0.30388
-1.09618,1.07713,-1.15345,-1.73093,-0.94698,1.96075,-0.30405
-1.09725,1.07688,-1.15386,-1.73044,-0.94713,1.96094,-0.30422
-1.09832,1.07683,-1.15394,-1.73034,-0.94716,1.96098,-0.30425
-1.09938,1.07657,-1.15436,-1.72984,-0.94731,1.96118,-0.30443
-1.10045,1.07631,-1.15478,-1.72934,-0.94746,1.96138,-0.30461
-1.10151,1.07605,-1.15519,-1.72885,-0.94761,1.96157,-0.30479
-1.10258,1.07580,-1.15559,-1.72837,-0.94775,1.96177,-0.30497
-1.10365,1.07553,-1.15600,-1.72789,-0.94789,1.96197,-0.30515
-1.10471,1.07540,-1.15620,-1.72765,-0.94796,1.96207,-0.30524
-1.10578,1.07521,-1.15649,-1.72732,-0.94806,1.96222,-0.30537
-1.10685,1.07493,-1.15689,-1.72685,-0.94820,1.96243,-0.30556
-1.10791,1.07475,-1.15714,-1.72657,-0.94828,1.96256,-0.30568
-1.10898,1.07443,-1.15755,-1.72612,-0.94840,1.96281,-0.30591
-1.11004,1.07411,-1.15795,-1.72568,-0.94852,1.96306,-0.30613
-1.11111,1.07406,-1.15799,-1.72564,-0.94853,1.96309,-0.30616
-1.11218,1.07365,-1.15839,-1.72527,-0.94861,1.96340,-0.30644
-1.11324,1.07325,-1.15878,-1.72490,-0.94870,1.96371,-0.30672
-1.11431,1.07304,-1.15897,-1.72473,-0.94873,1.96387,-0.30686
-1.11538,1.07254,-1.15931,-1.72450,-0.94876,1.96425,-0.30720
-1.11644,1.07205,-1.15965,-1.72426,-0.94878,1.96462,-0.30754
-1.11751,1.07195,-1.15971,-1.72423,-0.94878,1.96470,-0.30761
-1.11858,1.07141,-1.16001,-1.72408,-0.94877,1.96511,-0.30798
-1.11964,1.07088,-1.16030,-1.72394,-0.94876,1.96552,-0.30835
-1.12071,1.07035,-1.16059,-1.72381,-0.94875,1.96591,-0.30870
-1.12177,1.07019,-1.16067,-1.72377,-0.94874,1.96604,-0.30881
-1.12284,1.06962,-1.16093,-1.72371,-0.94869,1.96647,-0.30920
-1.12391,1.06907,-1.16118,-1.72365,-0.94865,1.96689,-0.30959
-1.12497,1.06852,-1.16143,-1.72359,-0.94861,1.96731,-0.30997
-1.12604,1.06797,-1.16168,-1.72353,-0.94857,1.96772,-0.31034
-1.12711,1.06749,-1.16189,-1.72349,-0.94853,1.96809,-0.31067
-1.12817,1.06691,-1.16209,-1.72353,-0.94845,1.96854,-0.31107
-1.12924,1.06633,-1.16228,-1.72358,-0.94837,1.96897,-0.31147
-1.13030,1.06577,-1.16246,-1.72362,-0.94829,1.96940,-0.31186
-1.13137,1.06521,-1.16265,-1.72366,-0.94821,1.96982,-0.31224
-1.13244,1.06467,-1.16283,-1.72370,-0.94814,1.97024,-0.31262
-1.13350,1.06413,-1.16301,-1.72374,-0.94806,1.97065,-0.31299
-1.13457,1.06384,-1.16309,-1.72378,-0.94801,1.97087,-0.31319
-1.13564,1.06306,-1.16321,-1.72407,-0.94782,1.97146,-0.31372
-1.13670,1.06230,-1.16333,-1.72436,-0.94763,1.97204,-0.31425
-1.13777,1.06155,-1.16344,-1.72463,-0.94744,1.97261,-0.31476
-1.13884,1.06081,-1.16355,-1.72491,-0.94725,1.97317,-0.31527
-1.13990,1.06008,-1.16366,-1.72517,-0.94707,1.97372,-0.31578
-1.14097,1.05937,-1.16378,-1.72544,-0.94690,1.97427,-0.31627
-1.14203,1.05866,-1.16389,-1.72569,-0.94672,1.97480,-0.31676
-1.14310,1.05797,-1.16399,-1.72594,-0.94655,1.97533,-0.31724
-1.14417,1.05729,-1.16410,-1.72619,-0.94639,1.97585,-0.31771
-1.14523,1.05662,-1.16421,-1.72643,-0.94623,1.97636,-0.31817
-1.14630,1.05596,-1.16431,-1.72667,-0.94607,1.97686,-0.31863
-1.14737,1.05531,-1.16442,-1.72690,-0.94591,1.97735,-0.31908
-1.14843,1.05467,-1.16452,-1.72712,-0.94576,1.97784,-0.31953
-1.14950,1.05404,-1.16462,-1.72734,-0.94561,1.97832,-0.31996
-1.15057,1.05342,-1.16472,-1.72756,-0.94546,1.97879,-0.32039
-1.15163,1.05281,-1.16482,-1.72777,-0.94532,1.97925,-0.32082
-1.15270,1.05221,-1.16492,-1.72798,-0.94518,1.97971,-0.32123
-1.15376,1.05162,-1.16502,-1.72819,-0.94504,1.98016,-0.32164
-1.15483,1.05104,-1.16511,-1.72839,-0.94491,1.98060,-0.32205
-1.15590,1.05047,-1.16521,-1.72858,-0.94477,1.98104,-0.32244
-1.15696,1.04990,-1.16530,-1.72877,-0.94464,1.98146,-0.32284
-1.15803,1.04935,-1.16540,-1.72896,-0.94452,1.98189,-0.32322
-1.15910,1.04881,-1.16549,-1.72914,-0.94439,1.98230,-0.32360
-1.16016,1.04827,-1.16558,-1.72932,-0.94427,1.98271,-0.32397
-1.16123,1.04774,-1.16567,-1.72950,-0.94415,1.98311,-0.32434
-1.16229,1.04723,-1.16576,-1.72967,-0.94404,1.98351,-0.32470
-1.16336,1.04671,-1.16585,-1.72984,-0.94392,1.98390,-0.32506
-1.16443,1.04625,-1.16592,-1.73001,-0.94382,1.98425,-0.32539
-1.16549,1.04562,-1.16596,-1.73032,-0.94363,1.98473,-0.32582
-1.16656,1.04500,-1.16600,-1.73063,-0.94345,1.98520,-0.32626
-1.16763,1.04440,-1.16605,-1.73094,-0.94328,1.98566,-0.32668
-1.16869,1.04380,-1.16609,-1.73124,-0.94311,1.98611,-0.32710
-1.16976,1.04321,-1.16613,-1.73153,-0.94294,1.98656,-0.32751
-1.17083,1.04263,-1.16617,-1.73182,-0.94277,1.98700,-0.32791
-1.17189,1.04206,-1.16621,-1.73210,-0.94261,1.98744,-0.32831
-1.17296,1.04150,-1.16625,-1.73238,-0.94245,1.98786,-0.32871
-1.17402,1.04095,-1.16629,-1.73265,-0.94230,1.98828,-0.32909
-1.17509,1.04041,-1.16634,-1.73291,-0.94215,1.98870,-0.32947
-1.17616,1.03987,-1.16638,-1.73317,-0.94200,1.98910,-0.32985
-1.17722,1.03935,-1.16642,-1.73343,-0.94185,1.98950,-0.33022
-1.17829,1.03883,-1.16646,-1.73368,-0.94171,1.98990,-0.33058
-1.17936,1.03832,-1.16650,-1.73392,-0.94157,1.99029,-0.33094
-1.18042,1.03782,-1.16654,-1.73416,-0.94143,1.99067,-0.33129
-1.18149,1.03733,-1.16658,-1.73440,-0.94129,1.99104,-0.33164
-1.18255,1.03684,-1.16662,-1.73463,-0.94116,1.99141,-0.33198
-1.18362,1.03635,-1.16665,-1.73487,-0.94102,1.99179,-0.33232
-1.18469,1.03577,-1.16666,-1.73522,-0.94084,1.99223,-0.33273
-1.18575,1.03520,-1.16666,-1.73557,-0.94065,1.99267,-0.33313
-1.18682,1.03463,-1.16667,-1.73591,-0.94047,1.99310,-0.33353
-1.18789,1.03408,-1.16668,-1.73624,-0.94029,1.99352,-0.33392
-1.18895,1.03353,-1.16668,-1.73656,-0.94012,1.99393,-0.33431
-1.19002,1.03299,-1.16669,-1.73688,-0.93995,1.99434,-0.33469
-1.19109,1.03246,-1.16670,-1.73720,-0.93978,1.99475,-0.33506
-1.19215,1.03194,-1.16671,-1.73750,-0.93961,1.99514,-0.33543
-1.19322,1.03143,-1.16671,-1.73780,-0.93945,1.99553,-0.33579
-1.19428,1.03092,-1.16672,-1.73810,-0.93930,1.99592,-0.33615
-1.19535,1.03043,-1.16673,-1.73839,-0.93914,1.99630,-0.33650
-1.19642,1.02994,-1.16674,-1.73867,-0.93899,1.99667,-0.33684
-1.19748,1.02946,-1.16675,-1.73895,-0.93884,1.99703,-0.33718
-1.19855,1.02898,-1.16676,-1.73923,-0.93869,1.99739,-0.33752
-1.19962,1.02852,-1.16677,-1.73949,-0.93855,1.99775,-0.33785
-1.20068,1.02806,-1.16678,-1.73976,-0.93841,1.99810,-0.33817
-1.20175,1.02796,-1.16678,-1.73981,-0.93838,1.99817,-0.33824
-1.20282,1.02747,-1.16677,-1.74013,-0.93821,1.99854,-0.33858
-1.20388,1.02699,-1.16676,-1.74045,-0.93805,1.99891,-0.33893
-1.20495,1.02651,-1.16675,-1.74075,-0.93789,1.99928,-0.33926
-1.20601,1.02604,-1.16674,-1.74106,-0.93774,1.99963,-0.33960
-1.20708,1.02558,-1.16674,-1.74135,-0.93758,1.99998,-0.33992
-1.20815,1.02513,-1.16673,-1.74164,-0.93744,2.00033,-0.34024
-1.20921,1.02468,-1.16672,-1.74193,-0.93729,2.00067,-0.34056
-1.21028,1.02454,-1.16672,-1.74202,-0.93724,2.00077,-0.34066
-1.21135,1.02404,-1.16671,-1.74235,-0.93707,2.00116,-0.34102
-1.21241,1.02355,-1.16670,-1.74267,-0.93690,2.00153,-0.34137
-1.21348,1.02306,-1.16669,-1.74299,-0.93674,2.00190,-0.34171
-1.21454,1.02258,-1.16668,-1.74330,-0.93658,2.00227,-0.34205
-1.21561,1.02211,-1.16667,-1.74361,-0.93642,2.00263,-0.34239
-1.21668,1.02164,-1.16666,-1.74391,-0.93626,2.00298,-0.34272
-1.21774,1.02119,-1.16666,-1.74420,-0.93611,2.00333,-0.34304
-1.21881,1.02074,-1.16665,-1.74449,-0.93596,2.00367,-0.34336
-1.21988,1.02033,-1.16664,-1.74475,-0.93583,2.00398,-0.34365
-1.22094,1.01982,-1.16663,-1.74509,-0.93565,2.00436,-0.34401
-1.22201,1.01932,-1.16661,-1.74543,-0.93547,2.00474,-0.34437
-1.22308,1.01883,-1.16660,-1.74576,-0.93530,2.00512,-0.34472
-1.22414,1.01835,-1.16658,-1.74609,-0.93514,2.00548,-0.34506
-1.22521,1.01787,-1.16657,-1.74641,-0.93497,2.00584,-0.34540
-1.22627,1.01741,-1.16655,-1.74672,-0.93481,2.00620,-0.34573
-1.22734,1.01695,-1.16654,-1.74703,-0.93465,2.00655,-0.34606
-1.22841,1.01649,-1.16653,-1.74733,-0.93450,2.00689,-0.34638
-1.22947,1.01605,-1.16652,-1.74762,-0.93435,2.00723,-0.34670
-1.23054,1.01561,-1.16651,-1.74791,-0.93420,2.00757,-0.34701
-1.23161,1.01555,-1.16651,-1.74795,-0.93418,2.00761,-0.34705
-1.23267,1.01500,-1.16648,-1.74835,-0.93398,2.00802,-0.34744
-1.23374,1.01447,-1.16645,-1.74874,-0.93378,2.00843,-0.34783
-1.23480,1.01394,-1.16642,-1.74912,-0.93359,2.00883,-0.34821
-1.23587,1.01341,-1.16640,-1.74949,-0.93340,2.00923,-0.34858
-1.23694,1.01290,-1.16637,-1.74985,-0.93321,2.00962,-0.34894
-1.23800,1.01239,-1.16635,-1.75021,-0.93303,2.01000,-0.34930
-1.23907,1.01190,-1.16632,-1.75056,-0.93285,2.01038,-0.34966
-1.24014,1.01141,-1.16630,-1.75091,-0.93267,2.01075,-0.35001
-1.24120,1.01093,-1.16628,-1.75125,-0.93250,2.01111,-0.35035
-1.24227,1.01045,-1.16626,-1.75158,-0.93233,2.01147,-0.35069
-1.24334,1.00999,-1.16624,-1.75191,-0.93216,2.01182,-0.35103
-1.24440,1.00953,-1.16622,-1.75223,-0.93200,2.01217,-0.35135
-1.24547,1.00908,-1.16620,-1.75254,-0.93184,2.01251,-0.35168
-1.24653,1.00864,-1.16619,-1.75285,-0.93169,2.01285,-0.35199
-1.24760,1.00820,-1.16617,-1.75315,-0.93153,2.01318,-0.35231
-1.24867,1.00784,-1.16616,-1.75340,-0.93140,2.01345,-0.35256
-1.24973,1.00727,-1.16612,-1.75382,-0.93119,2.01388,-0.35297
-1.25080,1.00671,-1.16609,-1.75424,-0.93098,2.01430,-0.35337
-1.25187,1.00616,-1.16605,-1.75465,-0.93077,2.01472,-0.35376
-1.25293,1.00562,-1.16602,-1.75504,-0.93057,2.01513,-0.35415
-1.25400,1.00509,-1.16599,-1.75544,-0.93037,2.01553,-0.35453
-1.25507,1.00457,-1.16596,-1.75582,-0.93018,2.01592,-0.35491
-1.25613,1.00405,-1.16593,-1.75620,-0.92999,2.01631,-0.35528
-1.25720,1.00355,-1.16591,-1.75657,-0.92980,2.01670,-0.35564
-1.25826,1.00305,-1.16588,-1.75693,-0.92962,2.01707,-0.35600
-1.25933,1.00256,-1.16586,-1.75729,-0.92944,2.01744,-0.35635
-1.26040,1.00208,-1.16583,-1.75763,-0.92926,2.01781,-0.35670
-1.26146,1.00160,-1.16581,-1.75798,-0.92909,2.01817,-0.35704
-1.26253,1.00113,-1.16578,-1.75831,-0.92892,2.01852,-0.35738
-1.26360,1.00067,-1.16576,-1.75864,-0.92875,2.01887,-0.35771
-1.26466,1.00022,-1.16574,-1.75897,-0.92858,2.01921,-0.35803
-1.26573,0.99978,-1.16572,-1.75929,-0.92842,2.01955,-0.35835
-1.26679,0.99934,-1.16570,-1.75960,-0.92827,2.01988,-0.35867
-1.26786,0.99891,-1.16568,-1.75990,-0.92811,2.02021,-0.35898
-1.26893,0.99864,-1.16567,-1.76010,-0.92801,2.02041,-0.35917
-1.26999,0.99808,-1.16564,-1.76051,-0.92780,2.02083,-0.35958
-1.27106,0.99753,-1.16561,-1.76091,-0.92760,2.02124,-0.35997
-1.27213,0.99699,-1.16559,-1.76131,-0.92740,2.02165,-0.36036
-1.27319,0.99646,-1.16556,-1.76170,-0.92720,2.02205,-0.36074
-1.27426,0.99594,-1.16554,-1.76208,-0.92700,2.02244,-0.36112
-1.27533,0.99543,-1.16551,-1.76246,-0.92681,2.02283,-0.36149
-1.27639,0.99492,-1.16549,-1.76282,-0.92663,2.02321,-0.36186
-1.27746,0.99442,-1.16547,-1.76318,-0.92644,2.02359,-0.36222
-1.27852,0.99393,-1.16544,-1.76354,-0.92626,2.02396,-0.36257
-1.27959,0.99345,-1.16542,-1.76389,-0.92609,2.02432,-0.36292
-1.28066,0.99298,-1.16540,-1.76423,-0.92591,2.02468,-0.36326
-1.28172,0.99251,-1.16538,-1.76456,-0.92574,2.02503,-0.36360
-1.28279,0.99205,-1.16537,-1.76489,-0.92558,2.02538,-0.36393
-1.28386,0.99160,-1.16535,-1.76521,-0.92541,2.02572,-0.36426
-1.28492,0.99116,-1.16533,-1.76553,-0.92525,2.02605,-0.36458
-1.28599,0.99072,-1.16532,-1.76584,-0.92510,2.02638,-0.36490
-1.28705,0.99029,-1.16530,-1.76614,-0.92494,2.02671,-0.36521
-1.28812,0.99002,-1.16529,-1.76633,-0.92485,2.02691,-0.36541
-1.28919,0.98948,-1.16527,-1.76672,-0.92465,2.02732,-0.36580
-1.29025,0.98895,-1.16526,-1.76710,-0.92445,2.02771,-0.36618
-1.29132,0.98843,-1.16524,-1.76747,-0.92426,2.02811,-0.36656
-1.29239,0.98792,-1.16522,-1.76783,-0.92408,2.02849,-0.36693
-1.29345,0.98742,-1.16521,-1.76819,-0.92389,2.02887,-0.36730
-1.29452,0.98692,-1.16520,-1.76854,-0.92371,2.02924,-0.36766
-1.29559,0.98643,-1.16518,-1.76889,-0.92354,2.02961,-0.36801
-1.29665,0.98595,-1.16517,-1.76923,-0.92336,2.02997,-0.36836
-1.29772,0.98548,-1.16516,-1.76956,-0.92319,2.03033,-0.36870
-1.29878,0.98501,-1.16515,-1.76988,-0.92303,2.03068,-0.36904
-1.29985,0.98456,-1.16514,-1.77020,-0.92286,2.03103,-0.36938
-1.30092,0.98411,-1.16513,-1.77052,-0.92270,2.03136,-0.36970
-1.30198,0.98366,-1.16512,-1.77082,-0.92255,2.03170,-0.37003
-1.30305,0.98323,-1.16511,-1.77112,-0.92239,2.03203,-0.37034
-1.30412,0.98280,-1.16510,-1.77142,-0.92224,2.03235,-0.37066
-1.30518,0.98275,-1.16510,-1.77146,-0.92222,2.03239,-0.37069
-1.30625,0.98222,-1.16510,-1.77181,-0.92204,2.03279,-0.37108
-1.30731,0.98170,-1.16510,-1.77216,-0.92185,2.03318,-0.37146
-1.30838,0.98119,-1.16511,-1.77250,-0.92168,2.03356,-0.37183
-1.30945,0.98068,-1.16511,-1.77283,-0.92150,2.03394,-0.37220
-1.31051,0.98019,-1.16511,-1.77316,-0.92133,2.03431,-0.37256
-1.31158,0.97970,-1.16512,-1.77348,-0.92116,2.03468,-0.37292
-1.31265,0.97922,-1.16512,-1.77379,-0.92100,2.03504,-0.37327
-1.31371,0.97875,-1.16513,-1.77410,-0.92083,2.03539,-0.37361
-1.31478,0.97828,-1.16513,-1.77440,-0.92067,2.03574,-0.37395
-1.31585,0.97783,-1.16514,-1.77470,-0.92052,2.03609,-0.37429
-1.31691,0.97738,-1.16514,-1.77499,-0.92037,2.03642,-0.37462
-1.31798,0.97693,-1.16515,-1.77528,-0.92022,2.03676,-0.37494
-1.31904,0.97649,-1.16516,-1.77556,-0.92007,2.03709,-0.37526
-1.32011,0.97600,-1.16517,-1.77588,-0.91990,2.03746,-0.37562
-1.32118,0.97552,-1.16518,-1.77618,-0.91974,2.03782,-0.37597
-1.32224,0.97505,-1.16519,-1.77648,-0.91958,2.03817,-0.37632
-1.32331,0.97459,-1.16520,-1.77678,-0.91943,2.03852,-0.37666
-1.32438,0.97413,-1.16522,-1.77707,-0.91927,2.03887,-0.37700
-1.32544,0.97368,-1.16523,-1.77735,-0.91912,2.03920,-0.37733
-1.32651,0.97323,-1.16524,-1.77763,-0.91898,2.03954,-0.37765
-1.32758,0.97292,-1.16525,-1.77782,-0.91887,2.03977,-0.37788
-1.32864,0.97240,-1.16526,-1.77816,-0.91869,2.04017,-0.37827
-1.32971,0.97188,-1.16528,-1.77850,-0.91852,2.04055,-0.37865
-1.33077,0.97137,-1.16529,-1.77882,-0.91834,2.04093,-0.37902
-1.33184,0.97087,-1.16530,-1.77914,-0.91817,2.04130,-0.37939
-1.33291,0.97038,-1.16532,-1.77945,-0.91801,2.04167,-0.37975
-1.33397,0.96990,-1.16533,-1.77976,-0.91785,2.04203,-0.38010
-1.33504,0.96943,-1.16534,-1.78006,-0.91769,2.04239,-0.38045
-1.33611,0.96896,-1.16536,-1.78036,-0.91753,2.04274,-0.38080
-1.33717,0.96850,-1.16537,-1.78065,-0.91738,2.04309,-0.38113
-1.33824,0.96805,-1.16539,-1.78093,-0.91723,2.04342,-0.38147
-1.33930,0.96760,-1.16540,-1.78121,-0.91708,2.04376,-0.38180
-1.34037,0.96716,-1.16541,-1.78149,-0.91694,2.04409,-0.38212
-1.34144,0.96711,-1.16542,-1.78152,-0.91692,2.04413,-0.38216
-1.34250,0.96660,-1.16544,-1.78183,-0.91675,2.04451,-0.38253
-1.34357,0.96610,-1.16547,-1.78213,-0.91659,2.04488,-0.38290
-1.34464,0.96560,-1.16550,-1.78243,-0.91642,2.04525,-0.38327
-1.34570,0.96512,-1.16552,-1.78273,-0.91627,2.04562,-0.38363
-1.34677,0.96464,-1.16555,-1.78301,-0.91611,2.04598,-0.38398
-1.34784,0.96417,-1.16557,-1.78330,-0.91596,2.04633,-0.38433
-1.34890,0.96370,-1.16560,-1.78357,-0.91581,2.04668,-0.38467
-1.34997,0.96325,-1.16563,-1.78384,-0.91567,2.04702,-0.38501
-1.35103,0.96280,-1.16565,-1.78411,-0.91552,2.04735,-0.38534
-1.35210,0.96243,-1.16567,-1.78433,-0.91541,2.04763,-0.38561
-1.35317,0.96190,-1.16571,-1.78463,-0.91524,2.04802,-0.38600
-1.35423,0.96138,-1.16575,-1.78494,-0.91507,2.04841,-0.38639
-1.35530,0.96087,-1.16579,-1.78524,-0.91491,2.04879,-0.38677
-1.35637,0.96037,-1.16582,-1.78553,-0.91475,2.04917,-0.38714
-1.35743,0.95987,-1.16586,-1.78581,-0.91459,2.04954,-0.38751
-1.35850,0.95938,-1.16590,-1.78609,-0.91444,2.04991,-0.38787
-1.35956,0.95890,-1.16593,-1.78637,-0.91429,2.05026,-0.38823
-1.36063,0.95843,-1.16597,-1.78664,-0.91414,2.05062,-0.38858
-1.36170,0.95796,-1.16601,-1.78690,-0.91400,2.05097,-0.38892
-1.36276,0.95751,-1.16604,-1.78716,-0.91385,2.05131,-0.38926
-1.36383,0.95705,-1.16608,-1.78742,-0.91372,2.05164,-0.38960
-1.36490,0.95682,-1.16610,-1.78754,-0.91365,2.05182,-0.38977
-1.36596,0.95631,-1.16617,-1.78780,-0.91349,2.05220,-0.39015
-1.36703,0.95580,-1.16623,-1.78806,-0.91335,2.05258,-0.39053
-1.36810,0.95530,-1.16630,-1.78831,-0.91320,2.05295,-0.39090
-1.36916,0.95481,-1.16636,-1.78855,-0.91306,2.05332,-0.39127
-1.37023,0.95433,-1.16642,-1.78879,-0.91292,2.05368,-0.39163
-1.37129,0.95385,-1.16648,-1.78902,-0.91279,2.05403,-0.39198
-1.37236,0.95338,-1.16655,-1.78925,-0.91265,2.05438,-0.39233
-1.37343,0.95292,-1.16661,-1.78948,-0.91252,2.05473,-0.39267
-1.37449,0.95282,-1.16662,-1.78953,-0.91250,2.05480,-0.39275
-1.37556,0.95228,-1.16672,-1.78976,-0.91235,2.05521,-0.39316
-1.37663,0.95174,-1.16682,-1.79000,-0.91220,2.05561,-0.39356
-1.37769,0.95121,-1.16691,-1.79023,-0.91206,2.05600,-0.39395
-1.37876,0.95068,-1.16700,-1.79045,-0.91192,2.05639,-0.39434
-1.37983,0.95017,-1.16709,-1.79067,-0.91179,2.05677,-0.39473
-1.38089,0.94967,-1.16719,-1.79089,-0.91165,2.05715,-0.39510
-1.38196,0.94917,-1.16728,-1.79110,-0.91152,2.05752,-0.39547
-1.38302,0.94868,-1.16736,-1.79130,-0.91139,2.05789,-0.39584
-1.38409,0.94820,-1.16745,-1.79151,-0.91127,2.05824,-0.39620
-1.38516,0.94772,-1.16754,-1.79170,-0.91115,2.05860,-0.39655
-1.38622,0.94744,-1.16759,-1.79182,-0.91107,2.05881,-0.39677
-1.38729,0.94690,-1.16772,-1.79201,-0.91095,2.05921,-0.39717
-1.38836,0.94637,-1.16785,-1.79219,-0.91082,2.05960,-0.39757
-1.38942,0.94585,-1.16797,-1.79237,-0.91070,2.05999,-0.39796
-1.39049,0.94533,-1.16809,-1.79254,-0.91058,2.06037,-0.39834
-1.39155,0.94483,-1.16821,-1.79272,-0.91046,2.06075,-0.39872
-1.39262,0.94433,-1.16833,-1.79288,-0.91034,2.06112,-0.39909
-1.39369,0.94385,-1.16845,-1.79305,-0.91023,2.06148,-0.39946
-1.39475,0.94337,-1.16856,-1.79321,-0.91012,2.06184,-0.39982
-1.39582,0.94326,-1.16860,-1.79324,-0.91010,2.06192,-0.39990
-1.39689,0.94268,-1.16880,-1.79334,-0.90999,2.06235,-0.40034
-1.39795,0.94211,-1.16900,-1.79344,-0.90989,2.06277,-0.40076
-1.39902,0.94155,-1.16920,-1.79354,-0.90978,2.06319,-0.40118
-1.40009,0.94100,-1.16939,-1.79364,-0.90968,2.06359,-0.40160
-1.40115,0.94045,-1.16959,-1.79373,-0.90959,2.06400,-0.40201
-1.40222,0.93992,-1.16978,-1.79382,-0.90949,2.06439,-0.40241
-1.40328,0.93939,-1.16996,-1.79391,-0.90940,2.06478,-0.40281
-1.40435,0.93888,-1.17015,-1.79400,-0.90931,2.06517,-0.40319
-1.40542,0.93837,-1.17033,-1.79409,-0.90922,2.06555,-0.40358
-1.40648,0.93787,-1.17051,-1.79417,-0.90913,2.06592,-0.40396
-1.40755,0.93746,-1.17065,-1.79423,-0.90907,2.06622,-0.40426
-1.40862,0.93690,-1.17091,-1.79425,-0.90899,2.06664,-0.40469
-1.40968,0.93634,-1.17115,-1.79428,-0.90891,2.06705,-0.40511
-1.41075,0.93579,-1.17140,-1.79430,-0.90884,2.06745,-0.40552
-1.41181,0.93525,-1.17164,-1.79432,-0.90877,2.06785,-0.40593
-1.41288,0.93472,-1.17187,-1.79434,-0.90870,2.06825,-0.40633
-1.41395,0.93420,-1.17211,-1.79435,-0.90863,2.06863,-0.40672
-1.41501,0.93369,-1.17234,-1.79437,-0.90857,2.06901,-0.40711
-1.41608,0.93318,-1.17256,-1.79439,-0.90850,2.06939,-0.40749
-1.41715,0.93268,-1.17279,-1.79439,-0.90845,2.06976,-0.40787
-1.41821,0.93213,-1.17311,-1.79431,-0.90841,2.07017,-0.40829
-1.41928,0.93159,-1.17342,-1.79423,-0.90837,2.07057,-0.40870
-1.42035,0.93105,-1.17372,-1.79415,-0.90833,2.07097,-0.40911
-1.42141,0.93053,-1.17402,-1.79407,-0.90830,2.07135,-0.40950
-1.42248,0.93001,-1.17431,-1.79399,-0.90827,2.07174,-0.40990
-1.42354,0.92951,-1.17460,-1.79391,-0.90824,2.07211,-0.41028
-1.42461,0.92901,-1.17489,-1.79384,-0.90821,2.07248,-0.41066
-1.42568,0.92851,-1.17517,-1.79376,-0.90818,2.07285,-0.41103
-1.42674,0.92836,-1.17526,-1.79373,-0.90817,2.07296,-0.41115
-1.42781,0.92784,-1.17561,-1.79358,-0.90816,2.07335,-0.41155
-1.42888,0.92732,-1.17595,-1.79344,-0.90815,2.07373,-0.41194
-1.42994,0.92681,-1.17628,-1.79329,-0.90814,2.07411,-0.41233
-1.43101,0.92631,-1.17661,-1.79315,-0.90813,2.07448,-0.41271
-1.43208,0.92581,-1.17694,-1.79301,-0.90813,2.07485,-0.41309
-1.43314,0.92533,-1.17725,-1.79287,-0.90812,2.07521,-0.41346
-1.43421,0.92485,-1.17757,-1.79273,-0.90811,2.07556,-0.41382
-1.43527,0.92470,-1.17767,-1.79268,-0.90812,2.07567,-0.41394
-1.43634,0.92418,-1.17810,-1.79240,-0.90815,2.07605,-0.41433
-1.43741,0.92368,-1.17852,-1.79213,-0.90818,2.07643,-0.41472
-1.43847,0.92317,-1.17893,-1.79187,-0.90822,2.07680,-0.41510
-1.43954,0.92268,-1.17933,-1.79161,-0.90825,2.07716,-0.41548
-1.44061,0.92220,-1.17973,-1.79135,-0.90829,2.07752,-0.41585
-1.44167,0.92172,-1.18012,-1.79109,-0.90832,2.07788,-0.41621
-1.44274,0.92125,-1.18051,-1.79084,-0.90836,2.07822,-0.41657
-1.44380,0.92079,-1.18089,-1.79059,-0.90839,2.07857,-0.41693
-1.44487,0.92033,-1.18126,-1.79035,-0.90843,2.07890,-0.41727
-1.44594,0.91989,-1.18162,-1.79011,-0.90847,2.07923,-0.41762
-1.44700,0.91944,-1.18198,-1.78987,-0.90850,2.07956,-0.41795
-1.44807,0.91935,-1.18207,-1.78981,-0.90852,2.07963,-0.41803
-1.44914,0.91885,-1.18259,-1.78938,-0.90861,2.08000,-0.41841
-1.45020,0.91836,-1.18310,-1.78895,-0.90870,2.08036,-0.41878
-1.45127,0.91788,-1.18360,-1.78854,-0.90879,2.08072,-0.41915
-1.45234,0.91741,-1.18409,-1.78812,-0.90888,2.08107,-0.41952
-1.45340,0.91694,-1.18458,-1.78772,-0.90897,2.08141,-0.41987
-1.45447,0.91648,-1.18505,-1.78732,-0.90905,2.08175,-0.42023
-1.45553,0.91603,-1.18552,-1.78693,-0.90914,2.08208,-0.42057
-1.45660,0.91559,-1.18598,-1.78655,-0.90923,2.08241,-0.42091
-1.45767,0.91515,-1.18643,-1.78617,-0.90932,2.08274,-0.42125
-1.45873,0.91472,-1.18687,-1.78579,-0.90940,2.08305,-0.42158
-1.45980,0.91430,-1.18731,-1.78542,-0.90949,2.08337,-0.42191
-1.46087,0.91388,-1.18774,-1.78506,-0.90957,2.08368,-0.42223
-1.46193,0.91347,-1.18816,-1.78471,-0.90966,2.08398,-0.42255
-1.46300,0.91307,-1.18858,-1.78435,-0.90974,2.08428,-0.42286
-1.46406,0.91267,-1.18898,-1.78401,-0.90983,2.08457,-0.42316
-1.46513,0.91228,-1.18938,-1.78367,-0.90991,2.08486,-0.42347
-1.46620,0.91190,-1.18978,-1.78333,-0.90999,2.08515,-0.42376
-1.46726,0.91167,-1.19002,-1.78312,-0.91005,2.08532,-0.42394
-1.46833,0.91126,-1.19054,-1.78262,-0.91018,2.08562,-0.42426
-1.46940,0.91085,-1.19104,-1.78214,-0.91031,2.08592,-0.42457
-1.47046,0.91046,-1.19154,-1.78166,-0.91044,2.08621,-0.42488
-1.47153,0.91006,-1.19202,-1.78119,-0.91057,2.08650,-0.42518
-1.47260,0.90968,-1.19250,-1.78073,-0.91069,2.08679,-0.42548
-1.47366,0.90930,-1.19297,-1.78027,-0.91082,2.08707,-0.42577
-1.47473,0.90893,-1.19343,-1.77983,-0.91094,2.08734,-0.42606
-1.47579,0.90856,-1.19389,-1.77938,-0.91106,2.08762,-0.42635
-1.47686,0.90820,-1.19433,-1.77895,-0.91118,2.08788,-0.42663
-1.47793,0.90785,-1.19477,-1.77852,-0.91131,2.08815,-0.42690
-1.47899,0.90750,-1.19520,-1.77810,-0.91142,2.08841,-0.42717
-1.48006,0.90715,-1.19563,-1.77769,-0.91154,2.08866,-0.42744
-1.48113,0.90681,-1.19604,-1.77728,-0.91166,2.08891,-0.42771
-1.48219,0.90648,-1.19645,-1.77688,-0.91178,2.08916,-0.42797
-1.48326,0.90615,-1.19689,-1.77644,-0.91191,2.08940,-0.42822
-1.48433,0.90584,-1.19759,-1.77558,-0.91218,2.08964,-0.42847
-1.48539,0.90552,-1.19829,-1.77473,-0.91244,2.08987,-0.42871
-1.48646,0.90521,-1.19897,-1.77389,-0.91271,2.09010,-0.42895
-1.48752,0.90491,-1.19965,-1.77307,-0.91297,2.09033,-0.42919
-1.48859,0.90461,-1.20031,-1.77226,-0.91322,2.09055,-0.42942
-1.48966,0.90431,-1.20096,-1.77147,-0.91348,2.09077,-0.42965
-1.49072,0.90402,-1.20159,-1.77068,-0.91373,2.09099,-0.42988
-1.49179,0.90374,-1.20222,-1.76991,-0.91398,2.09120,-0.43010
-1.49286,0.90345,-1.20284,-1.76916,-0.91422,2.09141,-0.43033
-1.49392,0.90318,-1.20344,-1.76841,-0.91446,2.09162,-0.43054
-1.49499,0.90290,-1.20404,-1.76768,-0.91470,2.09182,-0.43076
-1.49605,0.90263,-1.20462,-1.76696,-0.91494,2.09202,-0.43097
-1.49712,0.90237,-1.20519,-1.76625,-0.91517,2.09222,-0.43118
-1.49819,0.90211,-1.20576,-1.76555,-0.91540,2.09242,-0.43138
-1.49925,0.90185,-1.20631,-1.76487,-0.91563,2.09261,-0.43158
-1.50032,0.90159,-1.20686,-1.76420,-0.91585,2.09280,-0.43178
-1.50139,0.90135,-1.20739,-1.76353,-0.91608,2.09298,-0.43198
-1.50245,0.90110,-1.20792,-1.76288,-0.91629,2.09317,-0.43217
-1.50352,0.90086,-1.20843,-1.76224,-0.91651,2.09335,-0.43236
-1.50459,0.90062,-1.20894,-1.76161,-0.91672,2.09353,-0.43255
-1.50565,0.90038,-1.20944,-1.76099,-0.91693,2.09370,-0.43274
-1.50672,0.90015,-1.20993,-1.76038,-0.91714,2.09387,-0.43292
-1.50778,0.89992,-1.21041,-1.75978,-0.91735,2.09405,-0.43310
-1.50885,0.89970,-1.21089,-1.75919,-0.91755,2.09421,-0.43328
-1.50992,0.89948,-1.21135,-1.75860,-0.91775,2.09438,-0.43345
-1.51098,0.89926,-1.21181,-1.75803,-0.91795,2.09454,-0.43363
-1.51205,0.89904,-1.21226,-1.75747,-0.91814,2.09470,-0.43380
-1.51312,0.89883,-1.21270,-1.75692,-0.91833,2.09486,-0.43397
-1.51418,0.89862,-1.21313,-1.75637,-0.91852,2.09502,-0.43413
-1.51525,0.89842,-1.21356,-1.75584,-0.91871,2.09517,-0.43429
-1.51631,0.89821,-1.21398,-1.75531,-0.91890,2.09532,-0.43445
-1.51738,0.89801,-1.21439,-1.75480,-0.91908,2.09547,-0.43461
-1.51845,0.89782,-1.21479,-1.75429,-0.91926,2.09562,-0.43477
-1.51951,0.89762,-1.21519,-1.75379,-0.91944,2.09577,-0.43492
-1.52058,0.89755,-1.21536,-1.75357,-0.91952,2.09582,-0.43498
-1.52165,0.89735,-1.21591,-1.75284,-0.91977,2.09597,-0.43514
-1.52271,0.89716,-1.21644,-1.75213,-0.92002,2.09611,-0.43529
-1.52378,0.89698,-1.21697,-1.75143,-0.92026,2.09625,-0.43544
-1.52485,0.89679,-1.21748,-1.75074,-0.92051,2.09639,-0.43558
-1.52591,0.89661,-1.21799,-1.75006,-0.92075,2.09652,-0.43573
-1.52698,0.89643,-1.21849,-1.74940,-0.92098,2.09666,-0.43587
-1.52804,0.89626,-1.21898,-1.74874,-0.92122,2.09679,-0.43601
-1.52911,0.89608,-1.21946,-1.74810,-0.92145,2.09692,-0.43615
-1.53018,0.89591,-1.21993,-1.74746,-0.92167,2.09705,-0.43629
-1.53124,0.89574,-1.22040,-1.74684,-0.92190,2.09718,-0.43642
-1.53231,0.89557,-1.22085,-1.74623,-0.92212,2.09730,-0.43655
-1.53338,0.89541,-1.22130,-1.74562,-0.92234,2.09743,-0.43669
-1.53444,0.89525,-1.22174,-1.74503,-0.92255,2.09755,-0.43682
-1.53551,0.89509,-1.22218,-1.74445,-0.92276,2.09767,-0.43694
-1.53657,0.89493,-1.22260,-1.74387,-0.92297,2.09779,-0.43707
-1.53764,0.89478,-1.22302,-1.74331,-0.92318,2.09790,-0.43719
-1.53871,0.89462,-1.22343,-1.74276,-0.92338,2.09802,-0.43732
-1.53977,0.89447,-1.22383,-1.74221,-0.92358,2.09813,-0.43744
-1.54084,0.89432,-1.22423,-1.74167,-0.92378,2.09824,-0.43756
-1.54191,0.89418,-1.22462,-1.74115,-0.92397,2.09835,-0.43768
-1.54297,0.89405,-1.22498,-1.74065,-0.92416,2.09845,-0.43778
-1.54404,0.89391,-1.22551,-1.73990,-0.92443,2.09855,-0.43789
-1.54511,0.89378,-1.22604,-1.73915,-0.92470,2.09865,-0.43799
-1.54617,0.89365,-1.22655,-1.73842,-0.92497,2.09875,-0.43809
-1.54724,0.89353,-1.22706,-1.73770,-0.92523,2.09884,-0.43820
-1.54830,0.89340,-1.22755,-1.73699,-0.92549,2.09894,-0.43830
-1.54937,0.89328,-1.22804,-1.73630,-0.92575,2.09903,-0.43840
-1.55044,0.89316,-1.22852,-1.73561,-0.92600,2.09912,-0.43850
-1.55150,0.89303,-1.22899,-1.73494,-0.92625,2.09922,-0.43859
-1.55257,0.89292,-1.22946,-1.73428,-0.92649,2.09931,-0.43869
-1.55364,0.89280,-1.22991,-1.73363,-0.92674,2.09940,-0.43879
-1.55470,0.89268,-1.23036,-1.73298,-0.92698,2.09948,-0.43888
-1.55577,0.89257,-1.23080,-1.73236,-0.92721,2.09957,-0.43897
-1.55684,0.89245,-1.23123,-1.73174,-0.92744,2.09966,-0.43907
-1.55790,0.89234,-1.23165,-1.73113,-0.92767,2.09974,-0.43916
-1.55897,0.89223,-1.23207,-1.73053,-0.92790,2.09982,-0.43925
-1.56003,0.89212,-1.23248,-1.72994,-0.92812,2.09991,-0.43933
-1.56110,0.89201,-1.23288,-1.72936,-0.92834,2.09999,-0.43942
-1.56217,0.89191,-1.23328,-1.72879,-0.92856,2.10007,-0.43951
-1.56323,0.89180,-1.23367,-1.72823,-0.92877,2.10015,-0.43959
-1.56430,0.89170,-1.23405,-1.72768,-0.92898,2.10023,-0.43968
-1.56537,0.89160,-1.23442,-1.72714,-0.92919,2.10030,-0.43976
-1.56643,0.89153,-1.23471,-1.72673,-0.92934,2.10035,-0.43981
-1.56750,0.89148,-1.23529,-1.72583,-0.92968,2.10039,-0.43986
-1.56856,0.89144,-1.23586,-1.72494,-0.93001,2.10043,-0.43990
-1.56963,0.89139,-1.23642,-1.72407,-0.93034,2.10047,-0.43994
-1.57070,0.89134,-1.23697,-1.72321,-0.93066,2.10051,-0.43998
-1.57176,0.89129,-1.23751,-1.72237,-0.93098,2.10055,-0.44002
-1.57283,0.89125,-1.23805,-1.72154,-0.93129,2.10059,-0.44006
-1.57390,0.89120,-1.23857,-1.72072,-0.93160,2.10062,-0.44010
-1.57496,0.89115,-1.23908,-1.71992,-0.93191,2.10066,-0.44014
-1.57603,0.89110,-1.23959,-1.71914,-0.93221,2.10070,-0.44018
-1.57710,0.89106,-1.24009,-1.71836,-0.93250,2.10074,-0.44022
-1.57816,0.89101,-1.24057,-1.71760,-0.93280,2.10077,-0.44026
-1.57923,0.89096,-1.24105,-1.71685,-0.93308,2.10081,-0.44030
-1.58029,0.89092,-1.24152,-1.71611,-0.93337,2.10085,-0.44034
-1.58136,0.89087,-1.24199,-1.71539,-0.93365,2.10088,-0.44038
-1.58243,0.89083,-1.24244,-1.71468,-0.93392,2.10092,-0.44042
-1.58349,0.89078,-1.24289,-1.71398,-0.93419,2.10096,-0.44045
-1.58456,0.89074,-1.24333,-1.71329,-0.93446,2.10099,-0.44049
-1.58563,0.89069,-1.24376,-1.71261,-0.93472,2.10103,-0.44053
-1.58669,0.89065,-1.24419,-1.71194,-0.93498,2.10106,-0.44057
-1.58776,0.89061,-1.24460,-1.71129,-0.93524,2.10110,-0.44061
-1.58882,0.89056,-1.24501,-1.71064,-0.93549,2.10113,-0.44064
-1.58989,0.89052,-1.24542,-1.71001,-0.93574,2.10117,-0.44068
-1.59096,0.89047,-1.24581,-1.70939,-0.93599,2.10120,-0.44072
-1.59202,0.89043,-1.24620,-1.70877,-0.93623,2.10124,-0.44076
-1.59309,0.89039,-1.24658,-1.70817,-0.93647,2.10127,-0.44079
-1.59416,0.89035,-1.24696,-1.70758,-0.93670,2.10130,-0.44083
-1.59522,0.89030,-1.24733,-1.70700,-0.93693,2.10134,-0.44087
-1.59629,0.89026,-1.24769,-1.70643,-0.93716,2.10137,-0.44090
-1.59736,0.89022,-1.24805,-1.70586,-0.93738,2.10140,-0.44094
-1.59842,0.89018,-1.24840,-1.70531,-0.93760,2.10143,-0.44097
-1.59949,0.89017,-1.24851,-1.70512,-0.93768,2.10144,-0.44098
-1.60055,0.89016,-1.24897,-1.70438,-0.93797,2.10145,-0.44099
-1.60162,0.89015,-1.24942,-1.70365,-0.93826,2.10146,-0.44100
-1.60269,0.89014,-1.24986,-1.70293,-0.93854,2.10147,-0.44102
-1.60375,0.89013,-1.25029,-1.70222,-0.93882,2.10148,-0.44103
-1.60482,0.89012,-1.25072,-1.70153,-0.93909,2.10149,-0.44104
-1.60589,0.89011,-1.25114,-1.70084,-0.93936,2.10150,-0.44105
-1.60695,0.89010,-1.25155,-1.70017,-0.93963,2.10152,-0.44106
-1.60802,0.89009,-1.25196,-1.69951,-0.93989,2.10153,-0.44108
-1.60909,0.89008,-1.25235,-1.69886,-0.94015,2.10154,-0.44109
-1.61015,0.89006,-1.25274,-1.69822,-0.94040,2.10155,-0.44110
-1.61122,0.89005,-1.25313,-1.69759,-0.94065,2.10156,-0.44111
-1.61228,0.89004,-1.25350,-1.69697,-0.94090,2.10157,-0.44113
-1.61335,0.89003,-1.25388,-1.69637,-0.94114,2.10158,-0.44114
-1.61442,0.89001,-1.25424,-1.69577,-0.94138,2.10160,-0.44115
-1.61548,0.89000,-1.25460,-1.69518,-0.94162,2.10161,-0.44117
-1.61655,0.88999,-1.25495,-1.69460,-0.94185,2.10162,-0.44118
-1.61762,0.88997,-1.25530,-1.69403,-0.94208,2.10163,-0.44120
-1.61868,0.88996,-1.25564,-1.69348,-0.94231,2.10165,-0.44121
-1.61975,0.88996,-1.25582,-1.69317,-0.94243,2.10165,-0.44121
-1.62081,0.88998,-1.25629,-1.69238,-0.94274,2.10163,-0.44119
-1.62188,0.89001,-1.25675,-1.69160,-0.94305,2.10161,-0.44118
-1.62295,0.89004,-1.25720,-1.69084,-0.94336,2.10160,-0.44116
-1.62401,0.89006,-1.25764,-1.69008,-0.94365,2.10158,-0.44114
-1.62508,0.89009,-1.25808,-1.68934,-0.94395,2.10157,-0.44113
-1.62615,0.89011,-1.25851,-1.68862,-0.94424,2.10155,-0.44111
-1.62721,0.89013,-1.25893,-1.68790,-0.94453,2.10154,-0.44110
-1.62828,0.89016,-1.25934,-1.68720,-0.94481,2.10153,-0.44108
-1.62935,0.89018,-1.25975,-1.68650,-0.94509,2.10151,-0.44107
-1.63041,0.89020,-1.26015,-1.68582,-0.94536,2.10150,-0.44106
-1.63148,0.89022,-1.26055,-1.68515,-0.94563,2.10149,-0.44105
-1.63254,0.89023,-1.26093,-1.68449,-0.94589,2.10148,-0.44103
-1.63361,0.89025,-1.26131,-1.68385,-0.94616,2.10147,-0.44102
-1.63468,0.89027,-1.26169,-1.68321,-0.94641,2.10146,-0.44101
-1.63574,0.89028,-1.26205,-1.68258,-0.94667,2.10145,-0.44100
-1.63681,0.89030,-1.26242,-1.68197,-0.94692,2.10144,-0.44100
-1.63788,0.89031,-1.26277,-1.68136,-0.94716,2.10143,-0.44099
-1.63894,0.89033,-1.26312,-1.68077,-0.94741,2.10142,-0.44098
-1.64001,0.89034,-1.26346,-1.68018,-0.94765,2.10142,-0.44097
-1.64107,0.89036,-1.26380,-1.67961,-0.94788,2.10141,-0.44097
-1.64214,0.89037,-1.26413,-1.67904,-0.94811,2.10140,-0.44096
-1.64321,0.89038,-1.26443,-1.67853,-0.94832,2.10139,-0.44095
-1.64427,0.89041,-1.26484,-1.67782,-0.94861,2.10137,-0.44093
-1.64534,0.89044,-1.26525,-1.67712,-0.94889,2.10135,-0.44091
-1.64641,0.89047,-1.26565,-1.67644,-0.94916,2.10134,-0.44089
-1.64747,0.89050,-1.26604,-1.67577,-0.94943,2.10132,-0.44087
-1.64854,0.89052,-1.26642,-1.67511,-0.94970,2.10130,-0.44085
-1.64961,0.89055,-1.26680,-1.67446,-0.94996,2.10128,-0.44084
-1.65067,0.89058,-1.26717,-1.67382,-0.95022,2.10127,-0.44082
-1.65174,0.89060,-1.26754,-1.67319,-0.95048,2.10125,-0.44080
-1.65280,0.89062,-1.26790,-1.67257,-0.95073,2.10124,-0.44079
-1.65387,0.89065,-1.26825,-1.67196,-0.95098,2.10122,-0.44077
-1.65494,0.89067,-1.26860,-1.67136,-0.95122,2.10121,-0.44076
-1.65600,0.89069,-1.26894,-1.67078,-0.95146,2.10119,-0.44075
-1.65707,0.89071,-1.26927,-1.67020,-0.95170,2.10118,-0.44073
-1.65814,0.89073,-1.26960,-1.66963,-0.95193,2.10117,-0.44072
-1.65920,0.89075,-1.26992,-1.66907,-0.95216,2.10116,-0.44071
-1.66027,0.89075,-1.26997,-1.66900,-0.95219,2.10115,-0.44071
-1.66134,0.89078,-1.27041,-1.66825,-0.95249,2.10113,-0.44069
-1.66240,0.89081,-1.27084,-1.66751,-0.95279,2.10111,-0.44067
-1.66347,0.89084,-1.27126,-1.66679,-0.95307,2.10110,-0.44065
-1.66453,0.89087,-1.27168,-1.66608,-0.95336,2.10108,-0.44063
-1.66560,0.89089,-1.27209,-1.66538,-0.95364,2.10106,-0.44061
-1.66667,0.89092,-1.27249,-1.66469,-0.95392,2.10104,-0.44059
-1.66773,0.89094,-1.27288,-1.66402,-0.95419,2.10103,-0.44058
-1.66880,0.89097,-1.27327,-1.66335,-0.95446,2.10101,-0.44056
-1.66987,0.89099,-1.27365,-1.66270,-0.95472,2.10100,-0.44055
-1.67093,0.89101,-1.27403,-1.66205,-0.95498,2.10098,-0.44053
-1.67200,0.89103,-1.27440,-1.66142,-0.95524,2.10097,-0.44052
-1.67306,0.89106,-1.27476,-1.66080,-0.95549,2.10096,-0.44050
-1.67413,0.89107,-1.27512,-1.66019,-0.95574,2.10094,-0.44049
-1.67520,0.89109,-1.27547,-1.65959,-0.95598,2.10093,-0.44048
-1.67626,0.89111,-1.27581,-1.65900,-0.95623,2.10092,-0.44047
-1.67733,0.89113,-1.27615,-1.65842,-0.95646,2.10091,-0.44046
-1.67840,0.89115,-1.27648,-1.65785,-0.95670,2.10090,-0.44045
-1.67946,0.89116,-1.27681,-1.65728,-0.95693,2.10089,-0.44044
-1.68053,0.89117,-1.27688,-1.65715,-0.95698,2.10088,-0.44043
-1.68160,0.89120,-1.27733,-1.65639,-0.95729,2.10086,-0.44041
-1.68266,0.89123,-1.27777,-1.65563,-0.95759,2.10084,-0.44039
-1.68373,0.89126,-1.27820,-1.65490,-0.95788,2.10082,-0.44037
-1.68479,0.89129,-1.27863,-1.65417,-0.95818,2.10080,-0.44035
-1.68586,0.89132,-1.27904,-1.65345,-0.95846,2.10078,-0.44032
-1.68693,0.89135,-1.27945,-1.65275,-0.95875,2.10076,-0.44031
-1.68799,0.89138,-1.27986,-1.65206,-0.95902,2.10074,-0.44029
-1.68906,0.89141,-1.28025,-1.65138,-0.95930,2.10072,-0.44027
-1.69013,0.89143,-1.28064,-1.65071,-0.95957,2.10071,-0.44025
-1.69119,0.89146,-1.28102,-1.65005,-0.95984,2.10069,-0.44024
-1.69226,0.89148,-1.28140,-1.64941,-0.96010,2.10067,-0.44022
-1.69332,0.89150,-1.28177,-1.64877,-0.96036,2.10066,-0.44020
-1.69439,0.89152,-1.28213,-1.64815,-0.96061,2.10064,-0.44019
-1.69546,0.89154,-1.28249,-1.64753,-0.96086,2.10063,-0.44018
-1.69652,0.89157,-1.28284,-1.64693,-0.96111,2.10062,-0.44016
-1.69759,0.89158,-1.28319,-1.64633,-0.96135,2.10060,-0.44015
-1.69866,0.89160,-1.28352,-1.64575,-0.96159,2.10059,-0.44014
-1.69972,0.89162,-1.28386,-1.64517,-0.96183,2.10058,-0.44013
-1.70079,0.89164,-1.28418,-1.64461,-0.96206,2.10057,-0.44012
-1.70186,0.89165,-1.28430,-1.64442,-0.96214,2.10056,-0.44011
-1.70292,0.89169,-1.28475,-1.64364,-0.96245,2.10054,-0.44008
-1.70399,0.89173,-1.28519,-1.64287,-0.96276,2.10051,-0.44005
-1.70505,0.89176,-1.28563,-1.64211,-0.96307,2.10048,-0.44003
-1.70612,0.89180,-1.28606,-1.64137,-0.96336,2.10046,-0.44000
-1.70719,0.89184,-1.28648,-1.64064,-0.96366,2.10043,-0.43998
-1.70825,0.89187,-1.28690,-1.63992,-0.96395,2.10041,-0.43995
-1.70932,0.89190,-1.28731,-1.63921,-0.96424,2.10039,-0.43993
-1.71039,0.89194,-1.28771,-1.63852,-0.96452,2.10037,-0.43991
-1.71145,0.89197,-1.28810,-1.63783,-0.96479,2.10034,-0.43988
-1.71252,0.89200,-1.28849,-1.63716,-0.96507,2.10032,-0.43986
-1.71358,0.89203,-1.28887,-1.63650,-0.96534,2.10030,-0.43984
-1.71465,0.89206,-1.28925,-1.63585,-0.96560,2.10028,-0.43982
-1.71572,0.89208,-1.28962,-1.63521,-0.96587,2.10027,-0.43980
-1.71678,0.89211,-1.28998,-1.63458,-0.96612,2.10025,-0.43979
-1.71785,0.89214,-1.29034,-1.63396,-0.96638,2.10023,-0.43977
-1.71892,0.89216,-1.29068,-1.63336,-0.96663,2.10021,-0.43975
-1.71998,0.89218,-1.29103,-1.63276,-0.96687,2.10020,-0.43974
-1.72105,0.89221,-1.29137,-1.63217,-0.96712,2.10018,-0.43972
-1.72212,0.89223,-1.29170,-1.63159,-0.96735,2.10017,-0.43971
-1.72318,0.89225,-1.29203,-1.63102,-0.96759,2.10015,-0.43969
-1.72425,0.89226,-1.29216,-1.63079,-0.96769,2.10015,-0.43969
-1.72531,0.89229,-1.29251,-1.63017,-0.96794,2.10012,-0.43966
-1.72638,0.89232,-1.29286,-1.62957,-0.96819,2.10010,-0.43964
-1.72745,0.89235,-1.29320,-1.62897,-0.96844,2.10008,-0.43962
-1.72851,0.89238,-1.29354,-1.62838,-0.96868,2.10006,-0.43960
-1.72958,0.89241,-1.29387,-1.62780,-0.96892,2.10005,-0.43959
-1.73065,0.89243,-1.29419,-1.62723,-0.96916,2.10003,-0.43957
-1.73171,0.89244,-1.29432,-1.62700,-0.96925,2.10002,-0.43956
-1.73278,0.89248,-1.29464,-1.62644,-0.96949,2.10000,-0.43954
-1.73385,0.89249,-1.29480,-1.62615,-0.96961,2.09999,-0.43953
-1.73491,0.89253,-1.29512,-1.62558,-0.96984,2.09996,-0.43950
-1.73598,0.89258,-1.29525,-1.62533,-0.96996,2.09993,-0.43946
-1.73704,0.89295,-1.29523,-1.62501,-0.97015,2.09966,-0.43918
-1.73811,0.89332,-1.29521,-1.62470,-0.97034,2.09940,-0.43890
-1.73918,0.89358,-1.29520,-1.62449,-0.97047,2.09921,-0.43870
-1.74024,0.89400,-1.29510,-1.62427,-0.97063,2.09891,-0.43838
-1.74131,0.89441,-1.29501,-1.62404,-0.97079,2.09861,-0.43806
-1.74238,0.89482,-1.29491,-1.62383,-0.97095,2.09832,-0.43775
-1.74344,0.89522,-1.29482,-1.62361,-0.97111,2.09803,-0.43744
-1.74451,0.89530,-1.29480,-1.62358,-0.97114,2.09797,-0.43737
-1.74557,0.89574,-1.29464,-1.62343,-0.97127,2.09766,-0.43704
-1.74664,0.89617,-1.29449,-1.62329,-0.97140,2.09735,-0.43671
-1.74771,0.89659,-1.29435,-1.62315,-0.97153,2.09704,-0.43639
-1.74877,0.89697,-1.29421,-1.62303,-0.97165,2.09677,-0.43609
-1.74984,0.89742,-1.29402,-1.62294,-0.97176,2.09644,-0.43575
-1.75091,0.89787,-1.29383,-1.62285,-0.97187,2.09612,-0.43540
-1.75197,0.89831,-1.29364,-1.62277,-0.97198,2.09581,-0.43507
-1.75304,0.89874,-1.29346,-1.62268,-0.97209,2.09549,-0.43473
-1.75411,0.89913,-1.29329,-1.62261,-0.97218,2.09521,-0.43444
-1.75517,0.89959,-1.29305,-1.62259,-0.97227,2.09488,-0.43409
-1.75624,0.90004,-1.29282,-1.62257,-0.97236,2.09456,-0.43374
-1.75730,0.90048,-1.29259,-1.62255,-0.97244,2.09424,-0.43340
-1.75837,0.90092,-1.29237,-1.62254,-0.97252,2.09392,-0.43306
-1.75944,0.90127,-1.29219,-1.62252,-0.97258,2.09367,-0.43280
-1.76050,0.90172,-1.29195,-1.62252,-0.97266,2.09334,-0.43245
-1.76157,0.90216,-1.29172,-1.62252,-0.97273,2.09302,-0.43211
-1.76264,0.90259,-1.29149,-1.62252,-0.97280,2.09271,-0.43178
-1.76370,0.90277,-1.29139,-1.62252,-0.97283,2.09258,-0.43165
-1.76477,0.90320,-1.29115,-1.62254,-0.97289,2.09227,-0.43132
-1.76583,0.90324,-1.29112,-1.62254,-0.97290,2.09224,-0.43128
-1.76690,0.90368,-1.29087,-1.62257,-0.97296,2.09192,-0.43095
-1.76797,0.90403,-1.29068,-1.62260,-0.97301,2.09167,-0.43068
-1.76903,0.90442,-1.29045,-1.62263,-0.97306,2.09139,-0.43039
-1.77010,0.90476,-1.29025,-1.62266,-0.97310,2.09114,-0.43012
-1.77117,0.90510,-1.29003,-1.62272,-0.97313,2.09089,-0.42986
-1.77223,0.90554,-1.28973,-1.62285,-0.97315,2.09057,-0.42953
-1.77330,0.90596,-1.28943,-1.62298,-0.97317,2.09027,-0.42920
-1.77437,0.90613,-1.28930,-1.62304,-0.97317,2.09014,-0.42907
-1.77543,0.90655,-1.28894,-1.62327,-0.97316,2.08984,-0.42875
-1.77650,0.90696,-1.28858,-1.62350,-0.97314,2.08954,-0.42844
-1.77756,0.90736,-1.28823,-1.62372,-0.97312,2.08924,-0.42813
-1.77863,0.90776,-1.28788,-1.62394,-0.97309,2.08895,-0.42782
-1.77970,0.90792,-1.28772,-1.62407,-0.97307,2.08884,-0.42771
-1.78076,0.90825,-1.28715,-1.62470,-0.97289,2.08860,-0.42745
-1.78183,0.90858,-1.28659,-1.62532,-0.97272,2.08836,-0.42720
-1.78290,0.90890,-1.28604,-1.62593,-0.97255,2.08812,-0.42695
-1.78396,0.90922,-1.28550,-1.62654,-0.97238,2.08789,-0.42671
-1.78503,0.90954,-1.28497,-1.62713,-0.97221,2.08766,-0.42647
-1.78610,0.90985,-1.28444,-1.62771,-0.97204,2.08743,-0.42623
-1.78716,0.91015,-1.28393,-1.62828,-0.97188,2.08720,-0.42600
-1.78823,0.91045,-1.28342,-1.62884,-0.97172,2.08698,-0.42577
-1.78929,0.91075,-1.28293,-1.62939,-0.97156,2.08676,-0.42554
-1.79036,0.91104,-1.28244,-1.62994,-0.97140,2.08655,-0.42532
-1.79143,0.91133,-1.28196,-1.63047,-0.97124,2.08634,-0.42510
-1.79249,0.91162,-1.28149,-1.63100,-0.97109,2.08613,-0.42488
-1.79356,0.91190,-1.28102,-1.63151,-0.97094,2.08592,-0.42467
-1.79463,0.91217,-1.28057,-1.63202,-0.97079,2.08572,-0.42445
-1.79569,0.91245,-1.28012,-1.63252,-0.97064,2.08552,-0.42425
-1.79676,0.91271,-1.27968,-1.63301,-0.97049,2.08532,-0.42404
-1.79782,0.91298,-1.27925,-1.63349,-0.97035,2.08513,-0.42384
-1.79889,0.91324,-1.27882,-1.63397,-0.97021,2.08494,-0.42364
-1.79996,0.91350,-1.27841,-1.63444,-0.97007,2.08475,-0.42344
-1.80102,0.91375,-1.27799,-1.63490,-0.96993,2.08456,-0.42325
-1.80209,0.91390,-1.27775,-1.63518,-0.96984,2.08445,-0.42313
-1.80316,0.91412,-1.27728,-1.63575,-0.96966,2.08429,-0.42296
-1.80422,0.91434,-1.27682,-1.63631,-0.96948,2.08412,-0.42280
-1.80529,0.91455,-1.27638,-1.63686,-0.96930,2.08397,-0.42263
-1.80636,0.91476,-1.27594,-1.63740,-0.96913,2.08381,-0.42247
-1.80742,0.91497,-1.27550,-1.63794,-0.96896,2.08365,-0.42231
-1.80849,0.91518,-1.27508,-1.63846,-0.96879,2.08350,-0.42215
-1.80955,0.91538,-1.27466,-1.63897,-0.96862,2.08335,-0.42199
-1.81062,0.91559,-1.27425,-1.63948,-0.96845,2.08320,-0.42184
-1.81169,0.91578,-1.27384,-1.63998,-0.96829,2.08305,-0.42169
-1.81275,0.91580,-1.27380,-1.64004,-0.96827,2.08304,-0.42167
-1.81382,0.91596,-1.27332,-1.64068,-0.96805,2.08292,-0.42155
-1.81489,0.91611,-1.27286,-1.64131,-0.96784,2.08281,-0.42143
-1.81595,0.91627,-1.27240,-1.64193,-0.96762,2.08269,-0.42131
-1.81702,0.91642,-1.27195,-1.64253,-0.96741,2.08258,-0.42120
-1.81808,0.91657,-1.27151,-1.64313,-0.96721,2.08247,-0.42108
-1.81915,0.91672,-1.27107,-1.64372,-0.96700,2.08236,-0.42097
-1.82022,0.91686,-1.27065,-1.64429,-0.96680,2.08225,-0.42086
-1.82128,0.91701,-1.27023,-1.64486,-0.96661,2.08214,-0.42074
-1.82235,0.91715,-1.26982,-1.64542,-0.96641,2.08203,-0.42063
-1.82342,0.91729,-1.26941,-1.64597,-0.96622,2.08193,-0.42053
-1.82448,0.91743,-1.26901,-1.64651,-0.96603,2.08182,-0.42042
-1.82555,0.91756,-1.26861,-1.64706,-0.96584,2.08173,-0.42032
-1.82662,0.91762,-1.26813,-1.64778,-0.96557,2.08167,-0.42027
-1.82768,0.91769,-1.26766,-1.64849,-0.96531,2.08162,-0.42021
-1.82875,0.91776,-1.26720,-1.64919,-0.96506,2.08157,-0.42016
-1.82981,0.91783,-1.26675,-1.64987,-0.96481,2.08152,-0.42011
-1.83088,0.91789,-1.26630,-1.65055,-0.96456,2.08147,-0.42006
-1.83195,0.91796,-1.26586,-1.65121,-0.96431,2.08142,-0.42000
-1.83301,0.91802,-1.26543,-1.65186,-0.96407,2.08137,-0.41995
-1.83408,0.91809,-1.26500,-1.65250,-0.96384,2.08132,-0.41990
-1.83515,0.91815,-1.26459,-1.65313,-0.96360,2.08127,-0.41985
-1.83621,0.91821,-1.26418,-1.65375,-0.96337,2.08122,-0.41980
-1.83728,0.91828,-1.26377,-1.65436,-0.96315,2.08117,-0.41975
-1.83835,0.91834,-1.26338,-1.65495,-0.96293,2.08112,-0.41970
-1.83941,0.91840,-1.26299,-1.65554,-0.96271,2.08107,-0.41965
-1.84048,0.91846,-1.26261,-1.65612,-0.96249,2.08102,-0.41960
-1.84154,0.91852,-1.26223,-1.65669,-0.96228,2.08098,-0.41956
-1.84261,0.91858,-1.26186,-1.65725,-0.96207,2.08093,-0.41951
-1.84368,0.91862,-1.26160,-1.65765,-0.96192,2.08090,-0.41948
-1.84474,0.91860,-1.26116,-1.65837,-0.96164,2.08091,-0.41949
-1.84581,0.91859,-1.26074,-1.65908,-0.96137,2.08092,-0.41950
-1.84688,0.91857,-1.26032,-1.65978,-0.96110,2.08093,-0.41951
-1.84794,0.91856,-1.25990,-1.66046,-0.96083,2.08093,-0.41952
-1.84901,0.91855,-1.25950,-1.66113,-0.96057,2.08094,-0.41952
-1.85007,0.91853,-1.25910,-1.66180,-0.96032,2.08095,-0.41953
-1.85114,0.91852,-1.25871,-1.66245,-0.96007,2.08095,-0.41954
-1.85221,0.91851,-1.25832,-1.66308,-0.95982,2.08096,-0.41954
-1.85327,0.91850,-1.25794,-1.66371,-0.95957,2.08096,-0.41955
-1.85434,0.91849,-1.25757,-1.66433,-0.95933,2.08096,-0.41955
-1.85541,0.91849,-1.25720,-1.66494,-0.95910,2.08097,-0.41956
-1.85647,0.91848,-1.25685,-1.66553,-0.95886,2.08097,-0.41956
-1.85754,0.91847,-1.25649,-1.66612,-0.95863,2.08097,-0.41957
-1.85861,0.91846,-1.25615,-1.66670,-0.95841,2.08098,-0.41957
-1.85967,0.91846,-1.25580,-1.66726,-0.95819,2.08098,-0.41957
-1.86074,0.91845,-1.25547,-1.66782,-0.95797,2.08098,-0.41957
-1.86180,0.91844,-1.25543,-1.66789,-0.95794,2.08098,-0.41958
-1.86287,0.91839,-1.25506,-1.66854,-0.95768,2.08102,-0.41962
-1.86394,0.91834,-1.25469,-1.66919,-0.95743,2.08105,-0.41965
-1.86500,0.91829,-1.25432,-1.66982,-0.95718,2.08109,-0.41969
-1.86607,0.91825,-1.25397,-1.67044,-0.95693,2.08112,-0.41972
-1.86714,0.91820,-1.25362,-1.67105,-0.95668,2.08115,-0.41975
-1.86820,0.91815,-1.25327,-1.67166,-0.95645,2.08118,-0.41979
-1.86927,0.91811,-1.25293,-1.67225,-0.95621,2.08121,-0.41982
-1.87033,0.91807,-1.25260,-1.67283,-0.95598,2.08124,-0.41985
-1.87140,0.91803,-1.25227,-1.67340,-0.95575,2.08127,-0.41988
-1.87247,0.91798,-1.25195,-1.67396,-0.95552,2.08130,-0.41991
-1.87353,0.91794,-1.25169,-1.67442,-0.95534,2.08132,-0.41994
-1.87460,0.91781,-1.25131,-1.67515,-0.95504,2.08142,-0.42004
-1.87567,0.91768,-1.25094,-1.67586,-0.95475,2.08151,-0.42013
-1.87673,0.91755,-1.25057,-1.67657,-0.95447,2.08160,-0.42023
-1.87780,0.91743,-1.25021,-1.67726,-0.95419,2.08169,-0.42032
-1.87887,0.91730,-1.24985,-1.67793,-0.95391,2.08178,-0.42041
-1.87993,0.91718,-1.24950,-1.67860,-0.95364,2.08186,-0.42050
-1.88100,0.91707,-1.24916,-1.67926,-0.95337,2.08195,-0.42059
-1.88206,0.91695,-1.24882,-1.67990,-0.95310,2.08203,-0.42068
-1.88313,0.91684,-1.24849,-1.68053,-0.95285,2.08211,-0.42076
-1.88420,0.91672,-1.24817,-1.68116,-0.95259,2.08219,-0.42084
-1.88526,0.91662,-1.24785,-1.68177,-0.95234,2.08226,-0.42092
-1.88633,0.91651,-1.24753,-1.68237,-0.95209,2.08234,-0.42100
-1.88740,0.91640,-1.24722,-1.68296,-0.95185,2.08242,-0.42108
-1.88846,0.91630,-1.24692,-1.68354,-0.95161,2.08249,-0.42116
-1.88953,0.91620,-1.24662,-1.68411,-0.95138,2.08256,-0.42123
-1.89060,0.91610,-1.24633,-1.68467,-0.95114,2.08263,-0.42131
-1.89166,0.91601,-1.24604,-1.68522,-0.95092,2.08270,-0.42138
-1.89273,0.91591,-1.24578,-1.68572,-0.95071,2.08277,-0.42145
-1.89379,0.91573,-1.24548,-1.68637,-0.95044,2.08290,-0.42159
-1.89486,0.91555,-1.24518,-1.68700,-0.95017,2.08303,-0.42172
-1.89593,0.91537,-1.24488,-1.68763,-0.94990,2.08315,-0.42185
-1.89699,0.91519,-1.24459,-1.68825,-0.94964,2.08328,-0.42199
-1.89806,0.91502,-1.24430,-1.68885,-0.94938,2.08340,-0.42211
-1.89913,0.91485,-1.24402,-1.68945,-0.94913,2.08352,-0.42224
-1.90019,0.91469,-1.24375,-1.69003,-0.94888,2.08364,-0.42236
-1.90126,0.91453,-1.24348,-1.69060,-0.94864,2.08376,-0.42249
-1.90232,0.91437,-1.24321,-1.69117,-0.94840,2.08387,-0.42261
-1.90339,0.91421,-1.24295,-1.69172,-0.94817,2.08398,-0.42272
-1.90446,0.91406,-1.24269,-1.69227,-0.94793,2.08409,-0.42284
-1.90552,0.91391,-1.24244,-1.69280,-0.94771,2.08420,-0.42295
-1.90659,0.91376,-1.24219,-1.69333,-0.94748,2.08431,-0.42306
-1.90766,0.91372,-1.24214,-1.69345,-0.94743,2.08434,-0.42309
-1.90872,0.91347,-1.24187,-1.69409,-0.94715,2.08452,-0.42328
-1.90979,0.91323,-1.24160,-1.69472,-0.94688,2.08469,-0.42346
-1.91086,0.91299,-1.24134,-1.69534,-0.94661,2.08486,-0.42365
-1.91192,0.91275,-1.24109,-1.69594,-0.94635,2.08503,-0.42382
-1.91299,0.91252,-1.24084,-1.69654,-0.94609,2.08520,-0.42400
-1.91405,0.91229,-1.24059,-1.69713,-0.94583,2.08537,-0.42417
-1.91512,0.91207,-1.24035,-1.69770,-0.94558,2.08553,-0.42434
-1.91619,0.91185,-1.24011,-1.69827,-0.94533,2.08568,-0.42451
-1.91725,0.91164,-1.23987,-1.69883,-0.94509,2.08584,-0.42467
-1.91832,0.91143,-1.23964,-1.69937,-0.94485,2.08599,-0.42483
-1.91939,0.91122,-1.23942,-1.69991,-0.94462,2.08614,-0.42499
-1.92045,0.91101,-1.23920,-1.70044,-0.94439,2.08629,-0.42514
-1.92152,0.91081,-1.23898,-1.70096,-0.94416,2.08643,-0.42529
-1.92258,0.91062,-1.23876,-1.70147,-0.94394,2.08658,-0.42544
-1.92365,0.91041,-1.23855,-1.70198,-0.94371,2.08672,-0.42560
-1.92472,0.91012,-1.23833,-1.70258,-0.94345,2.08694,-0.42582
-1.92578,0.90983,-1.23811,-1.70317,-0.94318,2.08715,-0.42604
-1.92685,0.90954,-1.23790,-1.70375,-0.94292,2.08735,-0.42626
-1.92792,0.90926,-1.23769,-1.70431,-0.94267,2.08756,-0.42647
-1.92898,0.90899,-1.23748,-1.70487,-0.94242,2.08775,-0.42668
-1.93005,0.90872,-1.23728,-1.70542,-0.94217,2.08795,-0.42689
-1.93112,0.90845,-1.23708,-1.70596,-0.94193,2.08814,-0.42709
-1.93218,0.90819,-1.23688,-1.70649,-0.94170,2.08833,-0.42729
-1.93325,0.90793,-1.23669,-1.70701,-0.94146,2.08852,-0.42748
-1.93431,0.90768,-1.23651,-1.70752,-0.94123,2.08870,-0.42768
-1.93538,0.90743,-1.23632,-1.70802,-0.94101,2.08888,-0.42786
-1.93645,0.90719,-1.23614,-1.70851,-0.94079,2.08905,-0.42805
-1.93751,0.90695,-1.23596,-1.70900,-0.94057,2.08923,-0.42823
-1.93858,0.90671,-1.23579,-1.70947,-0.94036,2.08940,-0.42841
-1.93965,0.90668,-1.23577,-1.70953,-0.94033,2.08942,-0.42844
-1.94071,0.90636,-1.23558,-1.71010,-0.94007,2.08966,-0.42868
-1.94178,0.90604,-1.23540,-1.71065,-0.93982,2.08989,-0.42893
-1.94284,0.90573,-1.23522,-1.71119,-0.93957,2.09011,-0.42917
-1.94391,0.90542,-1.23504,-1.71173,-0.93933,2.09033,-0.42940
-1.94498,0.90512,-1.23487,-1.71226,-0.93909,2.09055,-0.42963
-1.94604,0.90482,-1.23470,-1.71277,-0.93886,2.09077,-0.42986
-1.94711,0.90453,-1.23453,-1.71328,-0.93863,2.09098,-0.43008
-1.94818,0.90425,-1.23437,-1.71378,-0.93840,2.09119,-0.43030
-1.94924,0.90396,-1.23421,-1.71426,-0.93818,2.09139,-0.43052
-1.95031,0.90369,-1.23405,-1.71474,-0.93796,2.09159,-0.43073
-1.95138,0.90342,-1.23389,-1.71522,-0.93774,2.09179,-0.43094
-1.95244,0.90315,-1.23374,-1.71568,-0.93753,2.09198,-0.43114
-1.95351,0.90289,-1.23359,-1.71613,-0.93732,2.09217,-0.43134
-1.95457,0.90283,-1.23356,-1.71623,-0.93728,2.09221,-0.43139
-1.95564,0.90251,-1.23341,-1.71674,-0.93705,2.09245,-0.43163
-1.95671,0.90219,-1.23325,-1.71724,-0.93682,2.09267,-0.43187
-1.95777,0.90189,-1.23310,-1.71774,-0.93659,2.09290,-0.43211
-1.95884,0.90158,-1.23296,-1.71822,-0.93637,2.09312,-0.43234
-1.95991,0.90129,-1.23281,-1.71869,-0.93615,2.09333,-0.43257
-1.96097,0.90099,-1.23267,-1.71916,-0.93593,2.09354,-0.43280
-1.96204,0.90071,-1.23253,-1.71962,-0.93572,2.09375,-0.43302
-1.96311,0.90042,-1.23240,-1.72007,-0.93552,2.09396,-0.43323
-1.96417,0.90014,-1.23226,-1.72051,-0.93531,2.09416,-0.43345
-1.96524,0.90007,-1.23223,-1.72061,-0.93527,2.09421,-0.43350
-1.96630,0.89966,-1.23209,-1.72118,-0.93500,2.09451,-0.43382
-1.96737,0.89925,-1.23195,-1.72174,-0.93474,2.09481,-0.43414
-1.96844,0.89885,-1.23181,-1.72228,-0.93448,2.09510,-0.43445
-1.96950,0.89845,-1.23168,-1.72282,-0.93423,2.09538,-0.43475
-1.97057,0.89807,-1.23154,-1.72335,-0.93398,2.09566,-0.43505
-1.97164,0.89769,-1.23141,-1.72387,-0.93374,2.09594,-0.43535
-1.97270,0.89731,-1.23129,-1.72438,-0.93350,2.09621,-0.43563
-1.97377,0.89694,-1.23116,-1.72488,-0.93327,2.09648,-0.43592
-1.97483,0.89658,-1.23104,-1.72537,-0.93304,2.09674,-0.43620
-1.97590,0.89622,-1.23092,-1.72585,-0.93281,2.09700,-0.43648
-1.97697,0.89587,-1.23080,-1.72632,-0.93259,2.09725,-0.43675
-1.97803,0.89553,-1.23069,-1.72679,-0.93237,2.09750,-0.43701
-1.97910,0.89519,-1.23057,-1.72724,-0.93216,2.09775,-0.43727
-1.98017,0.89486,-1.23046,-1.72769,-0.93195,2.09799,-0.43753
-1.98123,0.89453,-1.23035,-1.72813,-0.93174,2.09823,-0.43778
-1.98230,0.89421,-1.23025,-1.72856,-0.93154,2.09846,-0.43803
-1.98337,0.89389,-1.23014,-1.72899,-0.93134,2.09869,-0.43828
-1.98443,0.89358,-1.23004,-1.72941,-0.93115,2.09891,-0.43852
-1.98550,0.89332,-1.22996,-1.72975,-0.93098,2.09910,-0.43872
-1.98656,0.89283,-1.22984,-1.73034,-0.93070,2.09946,-0.43911
-1.98763,0.89234,-1.22972,-1.73093,-0.93043,2.09981,-0.43949
-1.98870,0.89186,-1.22960,-1.73150,-0.93016,2.10016,-0.43986
-1.98976,0.89139,-1.22949,-1.73206,-0.92989,2.10050,-0.44022
-1.99083,0.89093,-1.22938,-1.73261,-0.92963,2.10083,-0.44058
-1.99190,0.89048,-1.22927,-1.73315,-0.92937,2.10116,-0.44093
-1.99296,0.89003,-1.22917,-1.73368,-0.92912,2.10148,-0.44128
-1.99403,0.88959,-1.22906,-1.73420,-0.92888,2.10180,-0.44162
-1.99509,0.88916,-1.22896,-1.73471,-0.92863,2.10211,-0.44196
-1.99616,0.88874,-1.22886,-1.73521,-0.92840,2.10242,-0.44229
-1.99723,0.88832,-1.22877,-1.73570,-0.92816,2.10272,-0.44261
-1.99829,0.88791,-1.22867,-1.73619,-0.92793,2.10302,-0.44293
-1.99936,0.88751,-1.22858,-1.73666,-0.92771,2.10331,-0.44325
-2.00043,0.88711,-1.22849,-1.73713,-0.92749,2.10359,-0.44356
-2.00149,0.88672,-1.22840,-1.73759,-0.92727,2.10388,-0.44386
-2.00256,0.88634,-1.22831,-1.73804,-0.92706,2.10415,-0.44416
-2.00363,0.88596,-1.22823,-1.73848,-0.92685,2.10443,-0.44445
-2.00469,0.88559,-1.22814,-1.73891,-0.92664,2.10469,-0.44474
-2.00576,0.88523,-1.22806,-1.73934,-0.92644,2.10496,-0.44503
-2.00682,0.88487,-1.22798,-1.73975,-0.92625,2.10522,-0.44531
-2.00789,0.88452,-1.22790,-1.74016,-0.92605,2.10547,-0.44558
-2.00896,0.88418,-1.22782,-1.74057,-0.92586,2.10572,-0.44585
-2.01002,0.88384,-1.22775,-1.74096,-0.92567,2.10597,-0.44612
-2.01109,0.88350,-1.22768,-1.74135,-0.92549,2.10621,-0.44638
-2.01216,0.88326,-1.22762,-1.74163,-0.92536,2.10639,-0.44657
-2.01322,0.88279,-1.22753,-1.74216,-0.92511,2.10673,-0.44694
-2.01429,0.88233,-1.22744,-1.74268,-0.92486,2.10706,-0.44730
-2.01536,0.88188,-1.22735,-1.74318,-0.92462,2.10738,-0.44765
-2.01642,0.88143,-1.22727,-1.74368,-0.92439,2.10771,-0.44800
-2.01749,0.88100,-1.22718,-1.74417,-0.92416,2.10802,-0.44835
-2.01855,0.88057,-1.22710,-1.74465,-0.92393,2.10833,-0.44868
-2.01962,0.88015,-1.22702,-1.74512,-0.92371,2.10864,-0.44902
-2.02069,0.87973,-1.22694,-1.74558,-0.92349,2.10894,-0.44934
-2.02175,0.87932,-1.22686,-1.74603,-0.92328,2.10923,-0.44966
-2.02282,0.87892,-1.22679,-1.74648,-0.92307,2.10952,-0.44998
-2.02389,0.87853,-1.22671,-1.74692,-0.92286,2.10981,-0.45029
-2.02495,0.87814,-1.22664,-1.74735,-0.92266,2.11009,-0.45060
-2.02602,0.87776,-1.22657,-1.74777,-0.92246,2.11036,-0.45090
-2.02708,0.87738,-1.22650,-1.74818,-0.92226,2.11063,-0.45119
-2.02815,0.87702,-1.22643,-1.74859,-0.92207,2.11090,-0.45148
-2.02922,0.87665,-1.22636,-1.74899,-0.92188,2.11116,-0.45177
-2.03028,0.87630,-1.22630,-1.74938,-0.92170,2.11142,-0.45205
-2.03135,0.87595,-1.22624,-1.74976,-0.92152,2.11167,-0.45233
-2.03242,0.87560,-1.22617,-1.75014,-0.92134,2.11192,-0.45260
-2.03348,0.87529,-1.22612,-1.75048,-0.92118,2.11215,-0.45284
-2.03455,0.87488,-1.22605,-1.75092,-0.92097,2.11244,-0.45317
-2.03562,0.87448,-1.22599,-1.75134,-0.92077,2.11273,-0.45348
-2.03668,0.87409,-1.22592,-1.75176,-0.92057,2.11302,-0.45380
-2.03775,0.87370,-1.22586,-1.75218,-0.92038,2.11330,-0.45410
-2.03881,0.87332,-1.22580,-1.75258,-0.92018,2.11358,-0.45440
-2.03988,0.87294,-1.22574,-1.75298,-0.92000,2.11385,-0.45470
-2.04095,0.87258,-1.22568,-1.75337,-0.91981,2.11411,-0.45499
-2.04201,0.87221,-1.22563,-1.75376,-0.91963,2.11437,-0.45528
-2.04308,0.87186,-1.22557,-1.75413,-0.91945,2.11463,-0.45556
-2.04415,0.87151,-1.22552,-1.75450,-0.91928,2.11489,-0.45584
-2.04521,0.87115,-1.22546,-1.75487,-0.91910,2.11514,-0.45612
-2.04628,0.87072,-1.22542,-1.75529,-0.91890,2.11545,-0.45647
-2.04734,0.87029,-1.22539,-1.75569,-0.91870,2.11576,-0.45680
-2.04841,0.86988,-1.22535,-1.75610,-0.91851,2.11606,-0.45713
-2.04948,0.86947,-1.22531,-1.75649,-0.91832,2.11636,-0.45746
-2.05054,0.86906,-1.22528,-1.75688,-0.91813,2.11665,-0.45778
-2.05161,0.86866,-1.22524,-1.75725,-0.91795,2.11694,-0.45810
-2.05268,0.86827,-1.22521,-1.75763,-0.91777,2.11722,-0.45841
-2.05374,0.86789,-1.22517,-1.75799,-0.91759,2.11750,-0.45872
-2.05481,0.86751,-1.22514,-1.75835,-0.91742,2.11777,-0.45902
-2.05588,0.86714,-1.22511,-1.75870,-0.91725,2.11804,-0.45931
-2.05694,0.86677,-1.22508,-1.75905,-0.91708,2.11830,-0.45960
-2.05801,0.86644,-1.22505,-1.75936,-0.91693,2.11854,-0.45987
-2.05907,0.86603,-1.22502,-1.75976,-0.91674,2.11884,-0.46020
-2.06014,0.86562,-1.22498,-1.76014,-0.91656,2.11913,-0.46052
-2.06121,0.86522,-1.22495,-1.76052,-0.91637,2.11942,-0.46085
-2.06227,0.86482,-1.22492,-1.76090,-0.91619,2.11971,-0.46116
-2.06334,0.86443,-1.22489,-1.76127,-0.91602,2.11999,-0.46147
-2.06441,0.86405,-1.22485,-1.76163,-0.91585,2.12026,-0.46178
-2.06547,0.86367,-1.22482,-1.76198,-0.91568,2.12054,-0.46208
-2.06654,0.86331,-1.22479,-1.76233,-0.91551,2.12080,-0.46237
-2.06761,0.86294,-1.22477,-1.76267,-0.91535,2.12106,-0.46266
-2.06867,0.86276,-1.22475,-1.76284,-0.91526,2.12120,-0.46281
-2.06974,0.86238,-1.22473,-1.76319,-0.91510,2.12147,-0.46311
-2.07080,0.86201,-1.22470,-1.76353,-0.91493,2.12174,-0.46341
-2.07187,0.86164,-1.22468,-1.76387,-0.91477,2.12200,-0.46370
-2.07294,0.86146,-1.22467,-1.76404,-0.91469,2.12213,-0.46385
-2.07400,0.86108,-1.22464,-1.76439,-0.91452,2.12240,-0.46415
-2.07507,0.86071,-1.22461,-1.76473,-0.91436,2.12267,-0.46445
-2.07614,0.86035,-1.22459,-1.76507,-0.91420,2.12293,-0.46474
-2.07720,0.86027,-1.22459,-1.76512,-0.91417,2.12299,-0.46480
-2.07827,0.85982,-1.22470,-1.76534,-0.91403,2.12332,-0.46517
-2.07933,0.85937,-1.22480,-1.76555,-0.91390,2.12364,-0.46552
-2.08040,0.85893,-1.22490,-1.76576,-0.91377,2.12395,-0.46587
-2.08147,0.85850,-1.22500,-1.76597,-0.91364,2.12426,-0.46622
-2.08253,0.85812,-1.22509,-1.76614,-0.91353,2.12454,-0.46653
-2.08360,0.85762,-1.22526,-1.76629,-0.91342,2.12489,-0.46693
-2.08467,0.85714,-1.22543,-1.76644,-0.91330,2.12524,-0.46731
-2.08573,0.85666,-1.22559,-1.76658,-0.91319,2.12558,-0.46770
-2.08680,0.85619,-1.22576,-1.76672,-0.91308,2.12592,-0.46807
-2.08787,0.85573,-1.22592,-1.76686,-0.91298,2.12625,-0.46844
-2.08893,0.85528,-1.22607,-1.76699,-0.91287,2.12657,-0.46881
-2.09000,0.85484,-1.22623,-1.76713,-0.91277,2.12689,-0.46917
-2.09106,0.85456,-1.22633,-1.76720,-0.91271,2.12709,-0.46939
-2.09213,0.85403,-1.22657,-1.76726,-0.91262,2.12747,-0.46981
-2.09320,0.85352,-1.22681,-1.76733,-0.91253,2.12784,-0.47023
-2.09426,0.85300,-1.22705,-1.76739,-0.91244,2.12820,-0.47064
-2.09533,0.85250,-1.22728,-1.76745,-0.91236,2.12856,-0.47104
-2.09640,0.85201,-1.22751,-1.76751,-0.91228,2.12892,-0.47144
-2.09746,0.85152,-1.22774,-1.76757,-0.91220,2.12927,-0.47183
-2.09853,0.85105,-1.22796,-1.76762,-0.91212,2.12961,-0.47222
-2.09959,0.85058,-1.22818,-1.76768,-0.91204,2.12994,-0.47260
-2.10066,0.85012,-1.22839,-1.76773,-0.91197,2.13027,-0.47297
-2.10173,0.84966,-1.22861,-1.76778,-0.91190,2.13060,-0.47334
-2.10279,0.84939,-1.22874,-1.76781,-0.91185,2.13080,-0.47356
-2.10386,0.84889,-1.22901,-1.76780,-0.91179,2.13115,-0.47396
-2.10493,0.84840,-1.22928,-1.76779,-0.91174,2.13150,-0.47436
-2.10599,0.84792,-1.22954,-1.76779,-0.91168,2.13185,-0.47475
-2.10706,0.84744,-1.22980,-1.76778,-0.91163,2.13219,-0.47514
-2.10813,0.84698,-1.23006,-1.76778,-0.91157,2.13252,-0.47551
-2.10919,0.84652,-1.23031,-1.76777,-0.91152,2.13285,-0.47589
-2.11026,0.84607,-1.23056,-1.76776,-0.91147,2.13317,-0.47625
-2.11132,0.84597,-1.23062,-1.76775,-0.91147,2.13324,-0.47633
-2.11239,0.84544,-1.23097,-1.76765,-0.91144,2.13362,-0.47676
-2.11346,0.84492,-1.23132,-1.76755,-0.91141,2.13399,-0.47718
-2.11452,0.84441,-1.23166,-1.76745,-0.91138,2.13436,-0.47760
-2.11559,0.84391,-1.23199,-1.76735,-0.91136,2.13472,-0.47801
-2.11666,0.84342,-1.23232,-1.76726,-0.91133,2.13507,-0.47841
-2.11772,0.84293,-1.23265,-1.76716,-0.91131,2.13542,-0.47880
-2.11879,0.84245,-1.23297,-1.76707,-0.91129,2.13576,-0.47919
-2.11985,0.84198,-1.23328,-1.76698,-0.91127,2.13610,-0.47958
-2.12092,0.84152,-1.23359,-1.76688,-0.91125,2.13643,-0.47995
-2.12199,0.84107,-1.23389,-1.76679,-0.91123,2.13675,-0.48032
-2.12305,0.84062,-1.23419,-1.76670,-0.91121,2.13707,-0.48069
-2.12412,0.84017,-1.23451,-1.76659,-0.91120,2.13740,-0.48106
-2.12519,0.83957,-1.23503,-1.76629,-0.91123,2.13782,-0.48154
-2.12625,0.83899,-1.23554,-1.76600,-0.91126,2.13823,-0.48202
-2.12732,0.83842,-1.23604,-1.76571,-0.91130,2.13864,-0.48249
-2.12839,0.83786,-1.23653,-1.76543,-0.91133,2.13904,-0.48295
-2.12945,0.83730,-1.23701,-1.76514,-0.91136,2.13944,-0.48340
-2.13052,0.83676,-1.23749,-1.76487,-0.91140,2.13983,-0.48385
-2.13158,0.83622,-1.23796,-1.76459,-0.91143,2.14021,-0.48428
-2.13265,0.83570,-1.23842,-1.76432,-0.91147,2.14058,-0.48471
-2.13372,0.83518,-1.23887,-1.76406,-0.91151,2.14095,-0.48514
-2.13478,0.83467,-1.23931,-1.76380,-0.91154,2.14131,-0.48556
-2.13585,0.83417,-1.23975,-1.76354,-0.91158,2.14167,-0.48597
-2.13692,0.83368,-1.24018,-1.76328,-0.91162,2.14202,-0.48637
-2.13798,0.83320,-1.24060,-1.76303,-0.91166,2.14237,-0.48677
-2.13905,0.83272,-1.24102,-1.76279,-0.91170,2.14271,-0.48716
-2.14012,0.83225,-1.24142,-1.76254,-0.91174,2.14304,-0.48755
-2.14118,0.83179,-1.24183,-1.76230,-0.91178,2.14337,-0.48793
-2.14225,0.83134,-1.24222,-1.76206,-0.91182,2.14369,-0.48830
-2.14331,0.83090,-1.24261,-1.76183,-0.91186,2.14401,-0.48867
-2.14438,0.83046,-1.24299,-1.76160,-0.91190,2.14432,-0.48903
-2.14545,0.83003,-1.24336,-1.76137,-0.91194,2.14463,-0.48938
-2.14651,0.82961,-1.24373,-1.76115,-0.91198,2.14493,-0.48973
-2.14758,0.82919,-1.24409,-1.76093,-0.91202,2.14523,-0.49008
-2.14865,0.82879,-1.24444,-1.76071,-0.91206,2.14552,-0.49041
-2.14971,0.82846,-1.24474,-1.76053,-0.91210,2.14575,-0.49069
-2.15078,0.82799,-1.24519,-1.76020,-0.91217,2.14608,-0.49107
-2.15184,0.82754,-1.24564,-1.75988,-0.91224,2.14641,-0.49145
-2.15291,0.82709,-1.24609,-1.75957,-0.91231,2.14673,-0.49182
-2.15398,0.82665,-1.24652,-1.75925,-0.91238,2.14704,-0.49218
-2.15504,0.82622,-1.24695,-1.75895,-0.91245,2.14735,-0.49254
-2.15611,0.82580,-1.24737,-1.75864,-0.91252,2.14765,-0.49289
-2.15718,0.82538,-1.24778,-1.75835,-0.91259,2.14795,-0.49324
-2.15824,0.82497,-1.24819,-1.75805,-0.91266,2.14824,-0.49358
-2.15931,0.82456,-1.24859,-1.75776,-0.91273,2.14853,-0.49392
-2.16038,0.82416,-1.24898,-1.75748,-0.91280,2.14882,-0.49425
-2.16144,0.82377,-1.24936,-1.75720,-0.91286,2.14910,-0.49458
-2.16251,0.82339,-1.24974,-1.75692,-0.91293,2.14937,-0.49490
-2.16357,0.82301,-1.25012,-1.75665,-0.91300,2.14964,-0.49521
-2.16464,0.82293,-1.25021,-1.75658,-0.91302,2.14970,-0.49528
-2.16571,0.82247,-1.25075,-1.75611,-0.91314,2.15002,-0.49566
-2.16677,0.82203,-1.25128,-1.75566,-0.91326,2.15034,-0.49603
-2.16784,0.82159,-1.25180,-1.75521,-0.91338,2.15065,-0.49639
-2.16891,0.82116,-1.25232,-1.75477,-0.91350,2.15096,-0.49675
-2.16997,0.82074,-1.25282,-1.75433,-0.91362,2.15126,-0.49711
-2.17104,0.82032,-1.25332,-1.75391,-0.91374,2.15155,-0.49745
-2.17210,0.81991,-1.25381,-1.75348,-0.91385,2.15185,-0.49780
-2.17317,0.81951,-1.25429,-1.75307,-0.91397,2.15213,-0.49813
-2.17424,0.81912,-1.25476,-1.75266,-0.91408,2.15242,-0.49846
-2.17530,0.81873,-1.25522,-1.75226,-0.91420,2.15269,-0.49879
-2.17637,0.81834,-1.25567,-1.75186,-0.91431,2.15297,-0.49911
-2.17744,0.81797,-1.25612,-1.75147,-0.91442,2.15323,-0.49943
-2.17850,0.81760,-1.25656,-1.75109,-0.91453,2.15350,-0.49974
-2.17957,0.81723,-1.25699,-1.75071,-0.91464,2.15376,-0.50004
-2.18064,0.81687,-1.25742,-1.75034,-0.91475,2.15401,-0.50034
-2.18170,0.81652,-1.25783,-1.74997,-0.91486,2.15427,-0.50064
-2.18277,0.81617,-1.25824,-1.74961,-0.91497,2.15451,-0.50093
-2.18383,0.81583,-1.25864,-1.74926,-0.91507,2.15476,-0.50122
-2.18490,0.81550,-1.25904,-1.74891,-0.91518,2.15500,-0.50150
-2.18597,0.81533,-1.25925,-1.74873,-0.91524,2.15512,-0.50165
-2.18703,0.81494,-1.25975,-1.74827,-0.91537,2.15540,-0.50198
-2.18810,0.81455,-1.26024,-1.74782,-0.91550,2.15567,-0.50230
-2.18917,0.81417,-1.26072,-1.74738,-0.91563,2.15594,-0.50262
-2.19023,0.81380,-1.26119,-1.74694,-0.91577,2.15620,-0.50293
-2.19130,0.81344,-1.26166,-1.74651,-0.91589,2.15646,-0.50324
-2.19237,0.81308,-1.26211,-1.74609,-0.91602,2.15672,-0.50354
-2.19343,0.81272,-1.26256,-1.74568,-0.91615,2.15697,-0.50384
-2.19450,0.81238,-1.26300,-1.74527,-0.91628,2.15722,-0.50413
-2.19556,0.81203,-1.26344,-1.74486,-0.91640,2.15746,-0.50442
-2.19663,0.81170,-1.26386,-1.74447,-0.91652,2.15770,-0.50471
-2.19770,0.81137,-1.26428,-1.74408,-0.91665,2.15794,-0.50499
-2.19876,0.81104,-1.26469,-1.74369,-0.91677,2.15817,-0.50526
-2.19983,0.81072,-1.26510,-1.74332,-0.91689,2.15840,-0.50553
-2.20090,0.81041,-1.26550,-1.74295,-0.91701,2.15862,-0.50580
-2.20196,0.81034,-1.26558,-1.74286,-0.91703,2.15867,-0.50586
-2.20303,0.80998,-1.26607,-1.74239,-0.91718,2.15893,-0.50616
-2.20409,0.80963,-1.26656,-1.74192,-0.91733,2.15918,-0.50646
-2.20516,0.80928,-1.26703,-1.74147,-0.91747,2.15943,-0.50676
-2.20623,0.80894,-1.26749,-1.74102,-0.91761,2.15967,-0.50705
-2.20729,0.80860,-1.26795,-1.74057,-0.91775,2.15991,-0.50733
-2.20836,0.80827,-1.26840,-1.74014,-0.91789,2.16014,-0.50761
-2.20943,0.80794,-1.26884,-1.73971,-0.91803,2.16037,-0.50789
-2.21049,0.80762,-1.26927,-1.73929,-0.91817,2.16060,-0.50816
-2.21156,0.80731,-1.26970,-1.73887,-0.91830,2.16083,-0.50843
-2.21263,0.80700,-1.27012,-1.73846,-0.91844,2.16105,-0.50869
-2.21369,0.80669,-1.27053,-1.73806,-0.91857,2.16127,-0.50895
-2.21476,0.80639,-1.27093,-1.73766,-0.91870,2.16148,-0.50921
-2.21582,0.80618,-1.27123,-1.73737,-0.91880,2.16163,-0.50939
-2.21689,0.80581,-1.27179,-1.73680,-0.91898,2.16189,-0.50971
-2.21796,0.80544,-1.27233,-1.73625,-0.91915,2.16215,-0.51001
-2.21902,0.80509,-1.27287,-1.73570,-0.91933,2.16240,-0.51032
-2.22009,0.80474,-1.27340,-1.73516,-0.91950,2.16265,-0.51062
-2.22116,0.80439,-1.27392,-1.73462,-0.91968,2.16290,-0.51091
-2.22222,0.80405,-1.27443,-1.73410,-0.91985,2.16314,-0.51120
-2.22329,0.80372,-1.27493,-1.73359,-0.92001,2.16338,-0.51149
-2.22435,0.80339,-1.27543,-1.73308,-0.92018,2.16361,-0.51177
-2.22542,0.80306,-1.27591,-1.73258,-0.92035,2.16384,-0.51204
-2.22649,0.80274,-1.27639,-1.73209,-0.92051,2.16407,-0.51231
-2.22755,0.80243,-1.27686,-1.73161,-0.92067,2.16429,-0.51258
-2.22862,0.80212,-1.27731,-1.73113,-0.92083,2.16451,-0.51284
-2.22969,0.80182,-1.27777,-1.73066,-0.92099,2.16472,-0.51310
-2.23075,0.80152,-1.27821,-1.73020,-0.92115,2.16493,-0.51336
-2.23182,0.80123,-1.27865,-1.72975,-0.92130,2.16514,-0.51361
-2.23289,0.80094,-1.27907,-1.72931,-0.92145,2.16535,-0.51386
-2.23395,0.80066,-1.27950,-1.72887,-0.92160,2.16555,-0.51410
-2.23502,0.80038,-1.27991,-1.72844,-0.92175,2.16575,-0.51434
-2.23608,0.80010,-1.28032,-1.72801,-0.92190,2.16594,-0.51458
-2.23715,0.79988,-1.28064,-1.72767,-0.92202,2.16610,-0.51477
-2.23822,0.79958,-1.28112,-1.72716,-0.92219,2.16631,-0.51502
-2.23928,0.79929,-1.28159,-1.72666,-0.92236,2.16652,-0.51528
-2.24035,0.79900,-1.28205,-1.72617,-0.92253,2.16672,-0.51552
-2.24142,0.79872,-1.28250,-1.72568,-0.92270,2.16693,-0.51577
-2.24248,0.79844,-1.28294,-1.72521,-0.92287,2.16713,-0.51601
-2.24355,0.79816,-1.28338,-1.72474,-0.92303,2.16732,-0.51625
-2.24462,0.79789,-1.28380,-1.72428,-0.92319,2.16751,-0.51648
-2.24568,0.79762,-1.28422,-1.72382,-0.92335,2.16770,-0.51671
-2.24675,0.79736,-1.28464,-1.72338,-0.92351,2.16789,-0.51693
-2.24781,0.79710,-1.28504,-1.72294,-0.92366,2.16807,-0.51716
-2.24888,0.79694,-1.28530,-1.72266,-0.92376,2.16818,-0.51729
-2.24995,0.79664,-1.28587,-1.72201,-0.92398,2.16840,-0.51755
-2.25101,0.79635,-1.28642,-1.72138,-0.92420,2.16861,-0.51781
-2.25208,0.79605,-1.28697,-1.72075,-0.92442,2.16882,-0.51806
-2.25315,0.79576,-1.28751,-1.72014,-0.92463,2.16902,-0.51831
-2.25421,0.79548,-1.28804,-1.71953,-0.92484,2.16922,-0.51855
-2.25528,0.79520,-1.28856,-1.71894,-0.92505,2.16942,-0.51879
-2.25634,0.79493,-1.28907,-1.71835,-0.92525,2.16961,-0.51903
-2.25741,0.79466,-1.28957,-1.71777,-0.92545,2.16980,-0.51926
-2.25848,0.79439,-1.29006,-1.71721,-0.92566,2.16999,-0.51949
-2.25954,0.79413,-1.29055,-1.71665,-0.92585,2.17018,-0.51972
-2.26061,0.79387,-1.29102,-1.71610,-0.92605,2.17036,-0.51994
-2.26168,0.79362,-1.29149,-1.71556,-0.92624,2.17054,-0.52016
-2.26274,0.79337,-1.29195,-1.71503,-0.92643,2.17072,-0.52037
-2.26381,0.79313,-1.29240,-1.71451,-0.92662,2.17089,-0.52059
-2.26488,0.79289,-1.29284,-1.71399,-0.92681,2.17106,-0.52080
-2.26594,0.79265,-1.29328,-1.71349,-0.92699,2.17123,-0.52100
-2.26701,0.79242,-1.29371,-1.71299,-0.92717,2.17140,-0.52120
-2.26807,0.79219,-1.29413,-1.71250,-0.92735,2.17156,-0.52140
-2.26914,0.79196,-1.29454,-1.71202,-0.92753,2.17172,-0.52160
-2.27021,0.79174,-1.29495,-1.71155,-0.92771,2.17188,-0.52179
-2.27127,0.79156,-1.29528,-1.71116,-0.92785,2.17200,-0.52195
-2.27234,0.79132,-1.29576,-1.71058,-0.92806,2.17217,-0.52215
-2.27341,0.79109,-1.29624,-1.71000,-0.92827,2.17233,-0.52235
-2.27447,0.79087,-1.29670,-1.70944,-0.92847,2.17250,-0.52255
-2.27554,0.79064,-1.29716,-1.70889,-0.92868,2.17266,-0.52275
-2.27660,0.79042,-1.29761,-1.70834,-0.92888,2.17281,-0.52294
-2.27767,0.79020,-1.29806,-1.70780,-0.92907,2.17297,-0.52313
-2.27874,0.78999,-1.29849,-1.70728,-0.92927,2.17312,-0.52331
-2.27980,0.78978,-1.29892,-1.70676,-0.92946,2.17327,-0.52350
-2.28087,0.78957,-1.29934,-1.70625,-0.92965,2.17341,-0.52368
-2.28194,0.78937,-1.29975,-1.70574,-0.92984,2.17356,-0.52386
-2.28300,0.78917,-1.30016,-1.70525,-0.93003,2.17370,-0.52403
-2.28407,0.78897,-1.30056,-1.70476,-0.93021,2.17384,-0.52420
-2.28514,0.78893,-1.30064,-1.70466,-0.93025,2.17387,-0.52424
-2.28620,0.78874,-1.30107,-1.70413,-0.93045,2.17401,-0.52441
-2.28727,0.78854,-1.30149,-1.70360,-0.93065,2.17415,-0.52458
-2.28833,0.78835,-1.30191,-1.70309,-0.93084,2.17428,-0.52475
-2.28940,0.78816,-1.30232,-1.70258,-0.93103,2.17442,-0.52491
-2.29047,0.78798,-1.30272,-1.70208,-0.93122,2.17455,-0.52507
-2.29153,0.78785,-1.30300,-1.70173,-0.93135,2.17464,-0.52519
-2.29260,0.78766,-1.30340,-1.70122,-0.93155,2.17477,-0.52535
-2.29367,0.78748,-1.30380,-1.70072,-0.93174,2.17490,-0.52551
-2.29473,0.78739,-1.30400,-1.70047,-0.93183,2.17497,-0.52559
-2.29580,0.78721,-1.30440,-1.69997,-0.93202,2.17509,-0.52574
-2.29687,0.78709,-1.30467,-1.69962,-0.93216,2.17518,-0.52585
-2.29793,0.78695,-1.30501,-1.69919,-0.93232,2.17528,-0.52597
-2.29900,0.78684,-1.30557,-1.69837,-0.93263,2.17536,-0.52608
-2.30006,0.78672,-1.30613,-1.69756,-0.93293,2.17545,-0.52618
-2.30113,0.78660,-1.30668,-1.69677,-0.93324,2.17553,-0.52628
-2.30220,0.78649,-1.30722,-1.69599,-0.93353,2.17562,-0.52639
-2.30326,0.78638,-1.30775,-1.69522,-0.93382,2.17570,-0.52649
-2.30433,0.78627,-1.30826,-1.69447,-0.93411,2.17578,-0.52658
-2.30540,0.78616,-1.30878,-1.69373,-0.93440,2.17586,-0.52668
-2.30646,0.78605,-1.30928,-1.69299,-0.93468,2.17594,-0.52678
-2.30753,0.78594,-1.30977,-1.69228,-0.93496,2.17601,-0.52687
-2.30859,0.78584,-1.31025,-1.69157,-0.93523,2.17609,-0.52697
-2.30966,0.78573,-1.31073,-1.69088,-0.93550,2.17617,-0.52706
-2.31073,0.78563,-1.31120,-1.69019,-0.93576,2.17624,-0.52715
-2.31179,0.78553,-1.31166,-1.68952,-0.93603,2.17631,-0.52724
-2.31286,0.78543,-1.31211,-1.68886,-0.93628,2.17639,-0.52733
-2.31393,0.78533,-1.31255,-1.68821,-0.93654,2.17646,-0.52742
-2.31499,0.78523,-1.31299,-1.68757,-0.93679,2.17653,-0.52751
-2.31606,0.78514,-1.31342,-1.68694,-0.93704,2.17660,-0.52759
-2.31713,0.78504,-1.31384,-1.68632,-0.93728,2.17667,-0.52768
-2.31819,0.78495,-1.31425,-1.68572,-0.93752,2.17674,-0.52776
-2.31926,0.78486,-1.31466,-1.68512,-0.93776,2.17680,-0.52785
-2.32032,0.78476,-1.31506,-1.68453,-0.93799,2.17687,-0.52793
-2.32139,0.78467,-1.31545,-1.68395,-0.93823,2.17693,-0.52801
-2.32246,0.78459,-1.31583,-1.68338,-0.93845,2.17700,-0.52809
-2.32352,0.78450,-1.31621,-1.68282,-0.93868,2.17706,-0.52817
-2.32459,0.78441,-1.31659,-1.68227,-0.93890,2.17713,-0.52825
-2.32566,0.78437,-1.31682,-1.68191,-0.93904,2.17716,-0.52829
-2.32672,0.78433,-1.31737,-1.68104,-0.93938,2.17719,-0.52832
-2.32779,0.78430,-1.31791,-1.68018,-0.93972,2.17721,-0.52835
-2.32885,0.78427,-1.31844,-1.67934,-0.94005,2.17724,-0.52838
-2.32992,0.78424,-1.31896,-1.67851,-0.94038,2.17726,-0.52842
-2.33099,0.78420,-1.31947,-1.67769,-0.94070,2.17729,-0.52845
-2.33205,0.78417,-1.31997,-1.67689,-0.94102,2.17732,-0.52848
-2.33312,0.78414,-1.32046,-1.67610,-0.94133,2.17734,-0.52851
-2.33419,0.78411,-1.32094,-1.67532,-0.94164,2.17737,-0.52854
-2.33525,0.78407,-1.32142,-1.67455,-0.94194,2.17739,-0.52857
-2.33632,0.78404,-1.32189,-1.67380,-0.94224,2.17742,-0.52860
-2.33739,0.78401,-1.32235,-1.67306,-0.94254,2.17744,-0.52864
-2.33845,0.78398,-1.32280,-1.67234,-0.94283,2.17747,-0.52867
-2.33952,0.78394,-1.32324,-1.67162,-0.94312,2.17749,-0.52870
-2.34058,0.78391,-1.32368,-1.67092,-0.94340,2.17752,-0.52873
-2.34165,0.78388,-1.32411,-1.67023,-0.94368,2.17754,-0.52876
-2.34272,0.78385,-1.32453,-1.66955,-0.94396,2.17757,-0.52879
-2.34378,0.78382,-1.32494,-1.66888,-0.94423,2.17759,-0.52882
-2.34485,0.78379,-1.32535,-1.66822,-0.94449,2.17762,-0.52885
-2.34592,0.78375,-1.32575,-1.66758,-0.94476,2.17764,-0.52888
-2.34698,0.78372,-1.32614,-1.66694,-0.94502,2.17767,-0.52892
-2.34805,0.78369,-1.32653,-1.66632,-0.94527,2.17769,-0.52895
-2.34911,0.78366,-1.32691,-1.66570,-0.94552,2.17772,-0.52898
-2.35018,0.78363,-1.32728,-1.66510,-0.94577,2.17774,-0.52901
-2.35125,0.78360,-1.32765,-1.66450,-0.94602,2.17777,-0.52904
-2.35231,0.78357,-1.32801,-1.66392,-0.94626,2.17779,-0.52907
-2.35338,0.78354,-1.32836,-1.66334,-0.94650,2.17781,-0.52910
-2.35445,0.78351,-1.32871,-1.66278,-0.94673,2.17784,-0.52913
-2.35551,0.78350,-1.32893,-1.66241,-0.94688,2.17785,-0.52914
-2.35658,0.78353,-1.32940,-1.66159,-0.94722,2.17783,-0.52911
-2.35765,0.78357,-1.32987,-1.66078,-0.94754,2.17780,-0.52909
-2.35871,0.78360,-1.33032,-1.65998,-0.94787,2.17778,-0.52906
-2.35978,0.78363,-1.33077,-1.65920,-0.94819,2.17776,-0.52904
-2.36084,0.78366,-1.33121,-1.65843,-0.94850,2.17775,-0.52901
-2.36191,0.78369,-1.33165,-1.65767,-0.94881,2.17773,-0.52899
-2.36298,0.78372,-1.33207,-1.65693,-0.94912,2.17771,-0.52897
-2.36404,0.78375,-1.33249,-1.65620,-0.94942,2.17769,-0.52895
-2.36511,0.78378,-1.33290,-1.65548,-0.94972,2.17768,-0.52893
-2.36618,0.78380,-1.33331,-1.65477,-0.95001,2.17766,-0.52891
-2.36724,0.78383,-1.33371,-1.65407,-0.95030,2.17765,-0.52889
-2.36831,0.78385,-1.33410,-1.65339,-0.95058,2.17763,-0.52888
-2.36938,0.78388,-1.33448,-1.65271,-0.95086,2.17762,-0.52886
-2.37044,0.78390,-1.33486,-1.65205,-0.95113,2.17761,-0.52884
-2.37151,0.78392,-1.33523,-1.65140,-0.95141,2.17759,-0.52883
-2.37257,0.78394,-1.33559,-1.65076,-0.95167,2.17758,-0.52881
-2.37364,0.78396,-1.33595,-1.65013,-0.95194,2.17757,-0.52880
-2.37471,0.78398,-1.33631,-1.64951,-0.95220,2.17756,-0.52879
-2.37577,0.78400,-1.33665,-1.64890,-0.95245,2.17755,-0.52878
-2.37684,0.78402,-1.33699,-1.64830,-0.95270,2.17754,-0.52876
-2.37791,0.78404,-1.33733,-1.64771,-0.95295,2.17753,-0.52875
-2.37897,0.78405,-1.33766,-1.64713,-0.95320,2.17752,-0.52874
-2.38004,0.78407,-1.33798,-1.64656,-0.95344,2.17751,-0.52873
-2.38110,0.78408,-1.33815,-1.64627,-0.95356,2.17750,-0.52872
-2.38217,0.78414,-1.33854,-1.64555,-0.95386,2.17746,-0.52868
-2.38324,0.78420,-1.33892,-1.64484,-0.95416,2.17743,-0.52863
-2.38430,0.78426,-1.33930,-1.64415,-0.95445,2.17739,-0.52858
-2.38537,0.78431,-1.33967,-1.64346,-0.95473,2.17735,-0.52854
-2.38644,0.78437,-1.34004,-1.64279,-0.95502,2.17732,-0.52850
-2.38750,0.78442,-1.34040,-1.64213,-0.95529,2.17728,-0.52846
-2.38857,0.78447,-1.34075,-1.64148,-0.95557,2.17725,-0.52841
-2.38964,0.78452,-1.34110,-1.64084,-0.95584,2.17722,-0.52838
-2.39070,0.78457,-1.34144,-1.64021,-0.95610,2.17719,-0.52834
-2.39177,0.78462,-1.34178,-1.63959,-0.95636,2.17716,-0.52830
-2.39283,0.78466,-1.34211,-1.63898,-0.95662,2.17713,-0.52826
-2.39390,0.78471,-1.34243,-1.63839,-0.95687,2.17710,-0.52823
-2.39497,0.78475,-1.34275,-1.63780,-0.95712,2.17707,-0.52820
-2.39603,0.78479,-1.34306,-1.63722,-0.95737,2.17704,-0.52816
-2.39710,0.78483,-1.34337,-1.63665,-0.95761,2.17701,-0.52813
-2.39817,0.78486,-1.34353,-1.63636,-0.95774,2.17700,-0.52811
-2.39923,0.78494,-1.34390,-1.63566,-0.95803,2.17694,-0.52804
-2.40030,0.78502,-1.34426,-1.63497,-0.95832,2.17689,-0.52798
-2.40136,0.78510,-1.34461,-1.63429,-0.95861,2.17684,-0.52791
-2.40243,0.78518,-1.34496,-1.63362,-0.95889,2.17678,-0.52785
-2.40350,0.78526,-1.34530,-1.63297,-0.95917,2.17673,-0.52778
-2.40456,0.78533,-1.34564,-1.63232,-0.95944,2.17668,-0.52772
-2.40563,0.78541,-1.34597,-1.63169,-0.95971,2.17663,-0.52767
-2.40670,0.78548,-1.34629,-1.63107,-0.95998,2.17659,-0.52761
-2.40776,0.78555,-1.34661,-1.63046,-0.96024,2.17654,-0.52755
-2.40883,0.78561,-1.34693,-1.62985,-0.96050,2.17650,-0.52750
-2.40990,0.78568,-1.34724,-1.62926,-0.96075,2.17645,-0.52744
-2.41096,0.78574,-1.34754,-1.62868,-0.96100,2.17641,-0.52739
-2.41203,0.78581,-1.34784,-1.62811,-0.96124,2.17637,-0.52734
-2.41309,0.78587,-1.34813,-1.62754,-0.96149,2.17633,-0.52729
-2.41416,0.78588,-1.34817,-1.62747,-0.96152,2.17632,-0.52728
-2.41523,0.78599,-1.34853,-1.62676,-0.96182,2.17624,-0.52719
-2.41629,0.78610,-1.34888,-1.62606,-0.96212,2.17617,-0.52710
-2.41736,0.78620,-1.34923,-1.62537,-0.96241,2.17610,-0.52701
-2.41843,0.78631,-1.34957,-1.62469,-0.96270,2.17603,-0.52693
-2.41949,0.78641,-1.34991,-1.62402,-0.96298,2.17596,-0.52685
-2.42056,0.78651,-1.35024,-1.62337,-0.96326,2.17590,-0.52676
-2.42163,0.78660,-1.35056,-1.62272,-0.96354,2.17583,-0.52669
-2.42269,0.78670,-1.35088,-1.62209,-0.96381,2.17577,-0.52661
-2.42376,0.78679,-1.35119,-1.62147,-0.96407,2.17571,-0.52653
-2.42482,0.78688,-1.35150,-1.62086,-0.96434,2.17565,-0.52646
-2.42589,0.78697,-1.35180,-1.62025,-0.96460,2.17559,-0.52639
-2.42696,0.78705,-1.35210,-1.61966,-0.96485,2.17553,-0.52632
-2.42802,0.78714,-1.35240,-1.61908,-0.96510,2.17547,-0.52625
-2.42909,0.78722,-1.35268,-1.61850,-0.96535,2.17542,-0.52618
-2.43016,0.78730,-1.35297,-1.61794,-0.96559,2.17536,-0.52611
-2.43122,0.78734,-1.35309,-1.61770,-0.96570,2.17533,-0.52608
-2.43229,0.78748,-1.35346,-1.61693,-0.96602,2.17524,-0.52596
-2.43335,0.78763,-1.35383,-1.61617,-0.96634,2.17514,-0.52584
-2.43442,0.78777,-1.35419,-1.61543,-0.96666,2.17504,-0.52572
-2.43549,0.78790,-1.35454,-1.61470,-0.96697,2.17495,-0.52561
-2.43655,0.78804,-1.35489,-1.61398,-0.96728,2.17486,-0.52550
-2.43762,0.78817,-1.35524,-1.61327,-0.96758,2.17477,-0.52539
-2.43869,0.78830,-1.35557,-1.61258,-0.96787,2.17468,-0.52528
-2.43975,0.78842,-1.35591,-1.61189,-0.96817,2.17460,-0.52517
-2.44082,0.78855,-1.35623,-1.61122,-0.96846,2.17451,-0.52507
-2.44189,0.78867,-1.35655,-1.61056,-0.96874,2.17443,-0.52497
-2.44295,0.78879,-1.35687,-1.60991,-0.96902,2.17435,-0.52487
-2.44402,0.78890,-1.35718,-1.60927,-0.96929,2.17427,-0.52478
-2.44508,0.78902,-1.35749,-1.60864,-0.96956,2.17419,-0.52468
-2.44615,0.78913,-1.35779,-1.60802,-0.96983,2.17412,-0.52459
-2.44722,0.78923,-1.35808,-1.60741,-0.97009,2.17404,-0.52450
-2.44828,0.78934,-1.35837,-1.60682,-0.97035,2.17397,-0.52441
-2.44935,0.78945,-1.35866,-1.60623,-0.97061,2.17390,-0.52433
-2.45042,0.78955,-1.35894,-1.60565,-0.97086,2.17383,-0.52424
-2.45148,0.78965,-1.35921,-1.60508,-0.97110,2.17376,-0.52416
-2.45255,0.78974,-1.35948,-1.60452,-0.97135,2.17370,-0.52408
-2.45361,0.78978,-1.35957,-1.60433,-0.97143,2.17367,-0.52405
-2.45468,0.78997,-1.35995,-1.60353,-0.97177,2.17354,-0.52389
-2.45575,0.79015,-1.36031,-1.60274,-0.97211,2.17342,-0.52374
-2.45681,0.79033,-1.36067,-1.60196,-0.97244,2.17330,-0.52359
-2.45788,0.79050,-1.36102,-1.60120,-0.97277,2.17318,-0.52344
-2.45895,0.79067,-1.36137,-1.60045,-0.97309,2.17306,-0.52330
-2.46001,0.79084,-1.36171,-1.59971,-0.97341,2.17294,-0.52316
-2.46108,0.79100,-1.36205,-1.59899,-0.97372,2.17283,-0.52302
-2.46215,0.79116,-1.36238,-1.59828,-0.97402,2.17272,-0.52289
-2.46321,0.79132,-1.36270,-1.59757,-0.97433,2.17261,-0.52276
-2.46428,0.79148,-1.36302,-1.59688,-0.97462,2.17251,-0.52263
-2.46534,0.79163,-1.36334,-1.59621,-0.97492,2.17240,-0.52250
-2.46641,0.79177,-1.36365,-1.59554,-0.97521,2.17230,-0.52238
-2.46748,0.79192,-1.36395,-1.59488,-0.97549,2.17220,-0.52226
-2.46854,0.79206,-1.36425,-1.59424,-0.97577,2.17211,-0.52214
-2.46961,0.79220,-1.36454,-1.59360,-0.97605,2.17201,-0.52202
-2.47068,0.79234,-1.36483,-1.59298,-0.97632,2.17192,-0.52191
-2.47174,0.79247,-1.36512,-1.59237,-0.97658,2.17183,-0.52180
-2.47281,0.79260,-1.36540,-1.59176,-0.97685,2.17174,-0.52169
-2.47388,0.79273,-1.36567,-1.59117,-0.97711,2.17165,-0.52158
-2.47494,0.79285,-1.36594,-1.59059,-0.97736,2.17156,-0.52148
-2.47601,0.79298,-1.36621,-1.59001,-0.97761,2.17148,-0.52138
-2.47707,0.79310,-1.36647,-1.58945,-0.97786,2.17139,-0.52128
-2.47814,0.79321,-1.36673,-1.58890,-0.97810,2.17131,-0.52118
-2.47921,0.79327,-1.36684,-1.58866,-0.97821,2.17128,-0.52114
-2.48027,0.79345,-1.36716,-1.58793,-0.97852,2.17115,-0.52098
-2.48134,0.79362,-1.36749,-1.58722,-0.97883,2.17103,-0.52084
-2.48241,0.79380,-1.36780,-1.58651,-0.97913,2.17091,-0.52069
-2.48347,0.79397,-1.36812,-1.58582,-0.97943,2.17079,-0.52055
-2.48454,0.79413,-1.36842,-1.58514,-0.97973,2.17068,-0.52041
-2.48560,0.79430,-1.36872,-1.58448,-0.98002,2.17057,-0.52027
-2.48667,0.79446,-1.36902,-1.58382,-0.98030,2.17046,-0.52014
-2.48774,0.79461,-1.36931,-1.58317,-0.98059,2.17035,-0.52001
-2.48880,0.79477,-1.36960,-1.58254,-0.98086,2.17024,-0.51988
-2.48987,0.79492,-1.36988,-1.58191,-0.98114,2.17014,-0.51976
-2.49094,0.79506,-1.37016,-1.58130,-0.98140,2.17004,-0.51963
-2.49200,0.79521,-1.37043,-1.58069,-0.98167,2.16994,-0.51951
-2.49307,0.79535,-1.37070,-1.58010,-0.98193,2.16984,-0.51940
-2.49414,0.79549,-1.37096,-1.57952,-0.98219,2.16974,-0.51928
-2.49520,0.79562,-1.37122,-1.57894,-0.98244,2.16965,-0.51917
-2.49627,0.79576,-1.37148,-1.57838,-0.98269,2.16956,-0.51906
-2.49733,0.79589,-1.37173,-1.57782,-0.98293,2.16947,-0.51895
-2.49840,0.79599,-1.37194,-1.57737,-0.98313,2.16939,-0.51886
-2.49947,0.79617,-1.37225,-1.57667,-0.98343,2.16927,-0.51871
-2.50053,0.79635,-1.37255,-1.57598,-0.98373,2.16915,-0.51856
-2.50160,0.79652,-1.37285,-1.57531,-0.98402,2.16903,-0.51842
-2.50267,0.79669,-1.37315,-1.57465,-0.98431,2.16891,-0.51828
-2.50373,0.79685,-1.37344,-1.57399,-0.98460,2.16880,-0.51814
-2.50480,0.79702,-1.37373,-1.57335,-0.98488,2.16869,-0.51801
-2.50586,0.79718,-1.37401,-1.57272,-0.98515,2.16858,-0.51787
-2.50693,0.79733,-1.37429,-1.57210,-0.98543,2.16847,-0.51774
-2.50800,0.79748,-1.37456,-1.57149,-0.98569,2.16836,-0.51762
-2.50906,0.79763,-1.37483,-1.57089,-0.98596,2.16826,-0.51749
-2.51013,0.79778,-1.37509,-1.57030,-0.98621,2.16816,-0.51737
-2.51120,0.79792,-1.37535,-1.56972,-0.98647,2.16806,-0.51725
-2.51226,0.79806,-1.37560,-1.56915,-0.98672,2.16796,-0.51713
-2.51333,0.79820,-1.37585,-1.56859,-0.98697,2.16787,-0.51702
-2.51440,0.79834,-1.37610,-1.56804,-0.98721,2.16777,-0.51691
-2.51546,0.79841,-1.37623,-1.56774,-0.98734,2.16772,-0.51684
-2.51653,0.79862,-1.37657,-1.56697,-0.98767,2.16758,-0.51667
-2.51759,0.79882,-1.37691,-1.56621,-0.98800,2.16743,-0.51650
-2.51866,0.79902,-1.37723,-1.56547,-0.98832,2.16730,-0.51633
-2.51973,0.79922,-1.37756,-1.56473,-0.98864,2.16716,-0.51617
-2.52079,0.79941,-1.37788,-1.56401,-0.98895,2.16703,-0.51601
-2.52186,0.79960,-1.37819,-1.56331,-0.98926,2.16690,-0.51585
-2.52293,0.79978,-1.37850,-1.56261,-0.98957,2.16677,-0.51570
-2.52399,0.79997,-1.37880,-1.56192,-0.98986,2.16664,-0.51554
-2.52506,0.80014,-1.37910,-1.56125,-0.99016,2.16652,-0.51540
-2.52612,0.80032,-1.37939,-1.56059,-0.99045,2.16640,-0.51525
-2.52719,0.80049,-1.37968,-1.55993,-0.99073,2.16628,-0.51511
-2.52826,0.80065,-1.37996,-1.55929,-0.99101,2.16617,-0.51497
-2.52932,0.80082,-1.38024,-1.55866,-0.99129,2.16605,-0.51483
-2.53039,0.80098,-1.38051,-1.55804,-0.99156,2.16594,-0.51470
-2.53146,0.80113,-1.38078,-1.55743,-0.99183,2.16583,-0.51457
-2.53252,0.80129,-1.38105,-1.55683,-0.99209,2.16572,-0.51444
-2.53359,0.80144,-1.38131,-1.55625,-0.99235,2.16562,-0.51432
-2.53466,0.80159,-1.38157,-1.55567,-0.99261,2.16552,-0.51419
-2.53572,0.80173,-1.38182,-1.55510,-0.99286,2.16541,-0.51407
-2.53679,0.80188,-1.38207,-1.55453,-0.99311,2.16532,-0.51395
-2.53785,0.80201,-1.38231,-1.55398,-0.99335,2.16522,-0.51384
-2.53892,0.80207,-1.38241,-1.55376,-0.99345,2.16518,-0.51379
-2.53999,0.80222,-1.38266,-1.55320,-0.99370,2.16508,-0.51367
-2.54105,0.80236,-1.38290,-1.55264,-0.99394,2.16498,-0.51355
-2.54212,0.80250,-1.38314,-1.55209,-0.99419,2.16488,-0.51343
-2.54319,0.80252,-1.38317,-1.55204,-0.99421,2.16487,-0.51342
-2.54425,0.80266,-1.38341,-1.55149,-0.99446,2.16477,-0.51330
-2.54532,0.80275,-1.38355,-1.55116,-0.99460,2.16471,-0.51323
-2.54639,0.80289,-1.38379,-1.55061,-0.99484,2.16461,-0.51311
-2.54745,0.80294,-1.38389,-1.55040,-0.99494,2.16457,-0.51307
-2.54852,0.80269,-1.38365,-1.55099,-0.99472,2.16475,-0.51329
-2.54958,0.80244,-1.38343,-1.55156,-0.99449,2.16492,-0.51350
-2.55065,0.80220,-1.38320,-1.55213,-0.99428,2.16508,-0.51371
-2.55172,0.80196,-1.38298,-1.55269,-0.99406,2.16524,-0.51391
-2.55278,0.80173,-1.38276,-1.55324,-0.99385,2.16540,-0.51411
-2.55385,0.80150,-1.38255,-1.55378,-0.99364,2.16556,-0.51431
-2.55492,0.80128,-1.38234,-1.55431,-0.99344,2.16572,-0.51450
-2.55598,0.80106,-1.38213,-1.55483,-0.99324,2.16587,-0.51469
-2.55705,0.80084,-1.38193,-1.55534,-0.99304,2.16602,-0.51488
-2.55811,0.80063,-1.38173,-1.55585,-0.99285,2.16616,-0.51506
-2.55918,0.80043,-1.38155,-1.55631,-0.99267,2.16630,-0.51522
-2.56025,0.80017,-1.38129,-1.55695,-0.99242,2.16648,-0.51545
-2.56131,0.79991,-1.38104,-1.55758,-0.99217,2.16666,-0.51567
-2.56238,0.79966,-1.38080,-1.55820,-0.99192,2.16683,-0.51589
-2.56345,0.79941,-1.38055,-1.55881,-0.99168,2.16700,-0.51610
-2.56451,0.79916,-1.38032,-1.55941,-0.99145,2.16717,-0.51631
-2.56558,0.79892,-1.38008,-1.56000,-0.99122,2.16734,-0.51652
-2.56665,0.79869,-1.37985,-1.56057,-0.99099,2.16750,-0.51672
-2.56771,0.79845,-1.37963,-1.56114,-0.99076,2.16766,-0.51692
-2.56878,0.79823,-1.37941,-1.56170,-0.99054,2.16782,-0.51712
-2.56984,0.79800,-1.37919,-1.56225,-0.99032,2.16797,-0.51731
-2.57091,0.79778,-1.37898,-1.56279,-0.99011,2.16812,-0.51750
-2.57198,0.79757,-1.37877,-1.56332,-0.98990,2.16827,-0.51768
-2.57304,0.79736,-1.37856,-1.56384,-0.98969,2.16842,-0.51786
-2.57411,0.79715,-1.37836,-1.56435,-0.98949,2.16856,-0.51804
-2.57518,0.79695,-1.37816,-1.56485,-0.98929,2.16870,-0.51822
-2.57624,0.79687,-1.37808,-1.56504,-0.98922,2.16875,-0.51828
-2.57731,0.79652,-1.37775,-1.56590,-0.98886,2.16900,-0.51858
-2.57837,0.79618,-1.37742,-1.56675,-0.98852,2.16923,-0.51888
-2.57944,0.79584,-1.37709,-1.56759,-0.98818,2.16947,-0.51916
-2.58051,0.79551,-1.37677,-1.56841,-0.98785,2.16969,-0.51945
-2.58157,0.79518,-1.37646,-1.56921,-0.98752,2.16992,-0.51973
-2.58264,0.79486,-1.37615,-1.57000,-0.98720,2.17014,-0.52000
-2.58371,0.79455,-1.37585,-1.57078,-0.98688,2.17036,-0.52027
-2.58477,0.79424,-1.37555,-1.57154,-0.98657,2.17057,-0.52054
-2.58584,0.79393,-1.37526,-1.57229,-0.98626,2.17078,-0.52079
-2.58691,0.79364,-1.37497,-1.57303,-0.98596,2.17098,-0.52105
-2.58797,0.79335,-1.37469,-1.57376,-0.98566,2.17119,-0.52130
-2.58904,0.79306,-1.37441,-1.57447,-0.98537,2.17138,-0.52155
-2.59010,0.79278,-1.37414,-1.57517,-0.98508,2.17158,-0.52179
-2.59117,0.79250,-1.37387,-1.57586,-0.98480,2.17177,-0.52202
-2.59224,0.79223,-1.37361,-1.57653,-0.98452,2.17196,-0.52226
-2.59330,0.79196,-1.37335,-1.57719,-0.98425,2.17214,-0.52248
-2.59437,0.79170,-1.37310,-1.57785,-0.98398,2.17232,-0.52271
-2.59544,0.79145,-1.37285,-1.57849,-0.98372,2.17250,-0.52293
-2.59650,0.79119,-1.37260,-1.57912,-0.98346,2.17267,-0.52315
-2.59757,0.79095,-1.37236,-1.57974,-0.98321,2.17284,-0.52336
-2.59864,0.79070,-1.37213,-1.58034,-0.98296,2.17301,-0.52357
-2.59970,0.79046,-1.37189,-1.58094,-0.98271,2.17318,-0.52377
-2.60077,0.79023,-1.37167,-1.58153,-0.98247,2.17334,-0.52397
-2.60183,0.79000,-1.37144,-1.58210,-0.98223,2.17350,-0.52417
-2.60290,0.78977,-1.37122,-1.58267,-0.98199,2.17365,-0.52436
-2.60397,0.78955,-1.37101,-1.58323,-0.98176,2.17381,-0.52455
-2.60503,0.78934,-1.37079,-1.58377,-0.98154,2.17396,-0.52474
-2.60610,0.78912,-1.37058,-1.58431,-0.98131,2.17411,-0.52492
-2.60717,0.78891,-1.37038,-1.58484,-0.98110,2.17425,-0.52510
-2.60823,0.78871,-1.37018,-1.58536,-0.98088,2.17439,-0.52528
-2.60930,0.78850,-1.36998,-1.58587,-0.98067,2.17453,-0.52545
-2.61036,0.78831,-1.36979,-1.58637,-0.98046,2.17467,-0.52562
-2.61143,0.78828,-1.36976,-1.58644,-0.98043,2.17469,-0.52565
-2.61250,0.78800,-1.36950,-1.58712,-0.98015,2.17488,-0.52589
-2.61356,0.78773,-1.36924,-1.58779,-0.97987,2.17507,-0.52612
-2.61463,0.78746,-1.36899,-1.58845,-0.97959,2.17525,-0.52635
-2.61570,0.78720,-1.36875,-1.58909,-0.97933,2.17543,-0.52657
-2.61676,0.78694,-1.36851,-1.58973,-0.97906,2.17561,-0.52679
-2.61783,0.78669,-1.36827,-1.59035,-0.97880,2.17579,-0.52701
-2.61890,0.78644,-1.36803,-1.59096,-0.97854,2.17596,-0.52722
-2.61996,0.78620,-1.36780,-1.59156,-0.97829,2.17612,-0.52743
-2.62103,0.78596,-1.36758,-1.59215,-0.97804,2.17629,-0.52764
-2.62209,0.78573,-1.36736,-1.59274,-0.97780,2.17645,-0.52784
-2.62316,0.78550,-1.36714,-1.59331,-0.97756,2.17661,-0.52804
-2.62423,0.78527,-1.36693,-1.59387,-0.97733,2.17677,-0.52823
-2.62529,0.78505,-1.36672,-1.59442,-0.97709,2.17692,-0.52842
-2.62636,0.78483,-1.36651,-1.59496,-0.97687,2.17707,-0.52861
-2.62743,0.78462,-1.36631,-1.59549,-0.97664,2.17722,-0.52879
-2.62849,0.78441,-1.36611,-1.59601,-0.97642,2.17736,-0.52897
-2.62956,0.78420,-1.36591,-1.59653,-0.97621,2.17751,-0.52915
-2.63062,0.78400,-1.36572,-1.59703,-0.97599,2.17765,-0.52933
-2.63169,0.78384,-1.36556,-1.59745,-0.97582,2.17776,-0.52947
-2.63276,0.78357,-1.36532,-1.59808,-0.97555,2.17794,-0.52969
-2.63382,0.78332,-1.36509,-1.59871,-0.97529,2.17812,-0.52991
-2.63489,0.78307,-1.36486,-1.59932,-0.97503,2.17829,-0.53013
-2.63596,0.78282,-1.36463,-1.59993,-0.97477,2.17846,-0.53034
-2.63702,0.78258,-1.36441,-1.60052,-0.97452,2.17863,-0.53055
-2.63809,0.78234,-1.36419,-1.60110,-0.97428,2.17879,-0.53075
-2.63916,0.78211,-1.36397,-1.60168,-0.97404,2.17896,-0.53096
-2.64022,0.78188,-1.36376,-1.60224,-0.97380,2.17911,-0.53115
-2.64129,0.78165,-1.36355,-1.60279,-0.97356,2.17927,-0.53135
-2.64235,0.78143,-1.36335,-1.60334,-0.97333,2.17942,-0.53154
-2.64342,0.78122,-1.36315,-1.60387,-0.97311,2.17957,-0.53172
-2.64449,0.78100,-1.36295,-1.60439,-0.97289,2.17972,-0.53191
-2.64555,0.78079,-1.36276,-1.60491,-0.97267,2.17986,-0.53209
-2.64662,0.78059,-1.36257,-1.60542,-0.97245,2.18001,-0.53226
-2.64769,0.78039,-1.36238,-1.60591,-0.97224,2.18015,-0.53244
-2.64875,0.78034,-1.36234,-1.60602,-0.97219,2.18018,-0.53248
-2.64982,0.78010,-1.36213,-1.60660,-0.97195,2.18034,-0.53269
-2.65089,0.77986,-1.36192,-1.60716,-0.97171,2.18051,-0.53289
-2.65195,0.77962,-1.36172,-1.60772,-0.97147,2.18067,-0.53310
-2.65302,0.77939,-1.36152,-1.60827,-0.97124,2.18083,-0.53329
-2.65408,0.77917,-1.36132,-1.60880,-0.97101,2.18099,-0.53349
-2.65515,0.77894,-1.36113,-1.60933,-0.97078,2.18114,-0.53368
-2.65622,0.77873,-1.36094,-1.60985,-0.97056,2.18129,-0.53387
-2.65728,0.77851,-1.36076,-1.61036,-0.97035,2.18144,-0.53406
-2.65835,0.77830,-1.36057,-1.61086,-0.97013,2.18159,-0.53424
-2.65942,0.77810,-1.36039,-1.61135,-0.96992,2.18173,-0.53442
-2.66048,0.77805,-1.36035,-1.61146,-0.96987,2.18176,-0.53446
-2.66155,0.77777,-1.36014,-1.61208,-0.96961,2.18195,-0.53470
-2.66261,0.77750,-1.35993,-1.61269,-0.96935,2.18214,-0.53493
-2.66368,0.77723,-1.35972,-1.61328,-0.96909,2.18233,-0.53516
-2.66475,0.77696,-1.35951,-1.61387,-0.96884,2.18251,-0.53539
-2.66581,0.77671,-1.35931,-1.61445,-0.96859,2.18269,-0.53562
-2.66688,0.77645,-1.35912,-1.61501,-0.96835,2.18286,-0.53583
-2.66795,0.77620,-1.35892,-1.61557,-0.96811,2.18303,-0.53605
-2.66901,0.77596,-1.35873,-1.61612,-0.96788,2.18320,-0.53626
-2.67008,0.77572,-1.35855,-1.61665,-0.96765,2.18337,-0.53647
-2.67115,0.77548,-1.35836,-1.61718,-0.96742,2.18353,-0.53667
-2.67221,0.77525,-1.35818,-1.61770,-0.96720,2.18369,-0.53687
-2.67328,0.77502,-1.35800,-1.61821,-0.96698,2.18385,-0.53707
-2.67434,0.77480,-1.35783,-1.61871,-0.96676,2.18400,-0.53726
-2.67541,0.77458,-1.35766,-1.61920,-0.96655,2.18415,-0.53745
-2.67648,0.77437,-1.35749,-1.61968,-0.96634,2.18430,-0.53764
-2.67754,0.77431,-1.35745,-1.61979,-0.96629,2.18434,-0.53768
-2.67861,0.77401,-1.35726,-1.62041,-0.96603,2.18454,-0.53795
-2.67968,0.77371,-1.35707,-1.62101,-0.96577,2.18475,-0.53820
-2.68074,0.77342,-1.35688,-1.62160,-0.96551,2.18495,-0.53846
-2.68181,0.77314,-1.35669,-1.62218,-0.96526,2.18515,-0.53871
-2.68287,0.77285,-1.35651,-1.62275,-0.96501,2.18534,-0.53895
-2.68394,0.77258,-1.35633,-1.62331,-0.96476,2.18553,-0.53919
-2.68501,0.77231,-1.35615,-1.62386,-0.96452,2.18572,-0.53943
-2.68607,0.77204,-1.35598,-1.62440,-0.96429,2.18590,-0.53966
-2.68714,0.77178,-1.35581,-1.62494,-0.96406,2.18608,-0.53988
-2.68821,0.77152,-1.35564,-1.62546,-0.96383,2.18626,-0.54011
-2.68927,0.77127,-1.35548,-1.62597,-0.96361,2.18643,-0.54033
-2.69034,0.77102,-1.35532,-1.62647,-0.96339,2.18660,-0.54054
-2.69141,0.77078,-1.35516,-1.62697,-0.96317,2.18677,-0.54075
-2.69247,0.77054,-1.35500,-1.62746,-0.96296,2.18694,-0.54096
-2.69354,0.77030,-1.35485,-1.62793,-0.96275,2.18710,-0.54117
-2.69460,0.77007,-1.35470,-1.62840,-0.96254,2.18726,-0.54137
-2.69567,0.76997,-1.35464,-1.62860,-0.96246,2.18733,-0.54145
-2.69674,0.76966,-1.35447,-1.62919,-0.96220,2.18754,-0.54172
-2.69780,0.76935,-1.35430,-1.62976,-0.96195,2.18775,-0.54199
-2.69887,0.76905,-1.35413,-1.63032,-0.96170,2.18796,-0.54225
-2.69994,0.76876,-1.35397,-1.63088,-0.96146,2.18816,-0.54251
-2.70100,0.76847,-1.35381,-1.63142,-0.96122,2.18836,-0.54276
-2.70207,0.76818,-1.35365,-1.63196,-0.96099,2.18855,-0.54301
-2.70313,0.76790,-1.35350,-1.63248,-0.96076,2.18875,-0.54325
-2.70420,0.76763,-1.35334,-1.63300,-0.96053,2.18894,-0.54349
-2.70527,0.76736,-1.35320,-1.63350,-0.96031,2.18912,-0.54372
-2.70633,0.76710,-1.35305,-1.63400,-0.96009,2.18930,-0.54396
-2.70740,0.76684,-1.35290,-1.63449,-0.95987,2.18948,-0.54418
-2.70847,0.76658,-1.35276,-1.63497,-0.95966,2.18966,-0.54440
-2.70953,0.76633,-1.35262,-1.63544,-0.95945,2.18983,-0.54462
-2.71060,0.76608,-1.35249,-1.63590,-0.95925,2.19000,-0.54484
-2.71167,0.76584,-1.35235,-1.63636,-0.95905,2.19016,-0.54505
-2.71273,0.76576,-1.35232,-1.63650,-0.95899,2.19022,-0.54512
-2.71380,0.76547,-1.35219,-1.63700,-0.95876,2.19042,-0.54538
-2.71486,0.76517,-1.35206,-1.63749,-0.95854,2.19062,-0.54563
-2.71593,0.76489,-1.35194,-1.63797,-0.95833,2.19082,-0.54588
-2.71700,0.76460,-1.35182,-1.63845,-0.95812,2.19101,-0.54613
-2.71806,0.76433,-1.35170,-1.63891,-0.95791,2.19120,-0.54637
-2.71913,0.76405,-1.35159,-1.63937,-0.95771,2.19139,-0.54661
-2.72020,0.76379,-1.35147,-1.63982,-0.95750,2.19158,-0.54684
-2.72126,0.76352,-1.35136,-1.64026,-0.95731,2.19176,-0.54707
-2.72233,0.76327,-1.35125,-1.64069,-0.95711,2.19193,-0.54730
-2.72340,0.76323,-1.35124,-1.64075,-0.95709,2.19196,-0.54733
-2.72446,0.76285,-1.35115,-1.64127,-0.95685,2.19222,-0.54767
-2.72553,0.76247,-1.35106,-1.64179,-0.95661,2.19248,-0.54799
-2.72659,0.76210,-1.35097,-1.64231,-0.95637,2.19273,-0.54832
-2.72766,0.76174,-1.35088,-1.64281,-0.95614,2.19298,-0.54863
-2.72873,0.76138,-1.35079,-1.64330,-0.95592,2.19322,-0.54894
-2.72979,0.76104,-1.35071,-1.64378,-0.95569,2.19346,-0.54925
-2.73086,0.76069,-1.35062,-1.64426,-0.95547,2.19369,-0.54955
-2.73193,0.76036,-1.35054,-1.64472,-0.95526,2.19392,-0.54985
-2.73299,0.76002,-1.35046,-1.64518,-0.95505,2.19415,-0.55014
-2.73406,0.75970,-1.35038,-1.64563,-0.95484,2.19437,-0.55042
-2.73512,0.75938,-1.35031,-1.64607,-0.95464,2.19459,-0.55070
-2.73619,0.75907,-1.35023,-1.64651,-0.95444,2.19481,-0.55098
-2.73726,0.75876,-1.35016,-1.64693,-0.95425,2.19502,-0.55125
-2.73832,0.75846,-1.35008,-1.64735,-0.95405,2.19522,-0.55151
-2.73939,0.75816,-1.35001,-1.64776,-0.95387,2.19543,-0.55178
-2.74046,0.75787,-1.34994,-1.64816,-0.95368,2.19563,-0.55203
-2.74152,0.75758,-1.34987,-1.64856,-0.95350,2.19582,-0.55228
-2.74259,0.75746,-1.34985,-1.64872,-0.95343,2.19591,-0.55239
-2.74366,0.75713,-1.34979,-1.64913,-0.95323,2.19613,-0.55268
-2.74472,0.75681,-1.34974,-1.64954,-0.95304,2.19635,-0.55296
-2.74579,0.75649,-1.34969,-1.64994,-0.95286,2.19657,-0.55324
-2.74685,0.75618,-1.34964,-1.65033,-0.95267,2.19678,-0.55352
-2.74792,0.75587,-1.34959,-1.65072,-0.95249,2.19699,-0.55379
-2.74899,0.75557,-1.34954,-1.65110,-0.95232,2.19720,-0.55405
-2.75005,0.75533,-1.34950,-1.65140,-0.95218,2.19736,-0.55427
-2.75112,0.75500,-1.34947,-1.65178,-0.95199,2.19759,-0.55456
-2.75219,0.75467,-1.34945,-1.65215,-0.95182,2.19782,-0.55485
-2.75325,0.75434,-1.34942,-1.65252,-0.95164,2.19804,-0.55514
-2.75432,0.75402,-1.34939,-1.65288,-0.95147,2.19826,-0.55542
-2.75538,0.75371,-1.34936,-1.65323,-0.95130,2.19847,-0.55569
-2.75645,0.75352,-1.34935,-1.65344,-0.95120,2.19860,-0.55586
-2.75752,0.75315,-1.34938,-1.65378,-0.95103,2.19885,-0.55619
-2.75858,0.75278,-1.34940,-1.65411,-0.95087,2.19910,-0.55652
-2.75965,0.75242,-1.34943,-1.65443,-0.95070,2.19935,-0.55683
-2.76072,0.75207,-1.34945,-1.65475,-0.95055,2.19959,-0.55715
-2.76178,0.75172,-1.34947,-1.65506,-0.95039,2.19983,-0.55745
-2.76285,0.75138,-1.34949,-1.65536,-0.95024,2.20006,-0.55775
-2.76392,0.75105,-1.34952,-1.65566,-0.95009,2.20029,-0.55805
-2.76498,0.75091,-1.34953,-1.65578,-0.95003,2.20038,-0.55817
-2.76605,0.75050,-1.34963,-1.65603,-0.94988,2.20066,-0.55853
-2.76711,0.75011,-1.34972,-1.65628,-0.94974,2.20093,-0.55888
-2.76818,0.74972,-1.34981,-1.65653,-0.94961,2.20120,-0.55923
-2.76925,0.74933,-1.34990,-1.65677,-0.94947,2.20146,-0.55957
-2.77031,0.74896,-1.34999,-1.65700,-0.94934,2.20171,-0.55990
-2.77138,0.74858,-1.35008,-1.65723,-0.94921,2.20197,-0.56023
-2.77245,0.74822,-1.35017,-1.65746,-0.94908,2.20221,-0.56055
-2.77351,0.74786,-1.35025,-1.65768,-0.94896,2.20246,-0.56087
-2.77458,0.74782,-1.35027,-1.65770,-0.94895,2.20248,-0.56091
-2.77565,0.74742,-1.35042,-1.65787,-0.94884,2.20276,-0.56127
-2.77671,0.74702,-1.35057,-1.65803,-0.94873,2.20303,-0.56162
-2.77778,0.74663,-1.35072,-1.65819,-0.94863,2.20330,-0.56197
-2.77884,0.74624,-1.35086,-1.65834,-0.94853,2.20356,-0.56231
-2.77991,0.74586,-1.35100,-1.65849,-0.94843,2.20382,-0.56265
-2.78098,0.74549,-1.35114,-1.65864,-0.94833,2.20407,-0.56298
-2.78204,0.74545,-1.35118,-1.65863,-0.94833,2.20410,-0.56302
-2.78311,0.74502,-1.35152,-1.65852,-0.94831,2.20439,-0.56340
-2.78418,0.74459,-1.35186,-1.65841,-0.94830,2.20468,-0.56378
-2.78524,0.74417,-1.35220,-1.65831,-0.94829,2.20497,-0.56415
-2.78631,0.74376,-1.35252,-1.65820,-0.94828,2.20525,-0.56452
-2.78737,0.74336,-1.35285,-1.65810,-0.94827,2.20552,-0.56488
-2.78844,0.74296,-1.35316,-1.65799,-0.94826,2.20579,-0.56523
-2.78951,0.74257,-1.35347,-1.65789,-0.94825,2.20606,-0.56558
-2.79057,0.74219,-1.35378,-1.65779,-0.94824,2.20632,-0.56592
-2.79164,0.74181,-1.35408,-1.65769,-0.94824,2.20658,-0.56626
-2.79271,0.74144,-1.35437,-1.65759,-0.94823,2.20683,-0.56659
-2.79377,0.74133,-1.35448,-1.65753,-0.94824,2.20690,-0.56669
-2.79484,0.74098,-1.35494,-1.65716,-0.94834,2.20714,-0.56700
-2.79591,0.74063,-1.35539,-1.65679,-0.94843,2.20738,-0.56732
-2.79697,0.74029,-1.35583,-1.65643,-0.94852,2.20761,-0.56762
-2.79804,0.73995,-1.35627,-1.65607,-0.94861,2.20784,-0.56792
-2.79910,0.73962,-1.35670,-1.65572,-0.94871,2.20807,-0.56822
-2.80017,0.73929,-1.35712,-1.65538,-0.94880,2.20829,-0.56851
-2.80124,0.73897,-1.35753,-1.65504,-0.94889,2.20851,-0.56880
-2.80230,0.73866,-1.35794,-1.65470,-0.94898,2.20872,-0.56908
-2.80337,0.73835,-1.35834,-1.65437,-0.94907,2.20893,-0.56935
-2.80444,0.73805,-1.35873,-1.65405,-0.94916,2.20914,-0.56963
-2.80550,0.73775,-1.35912,-1.65373,-0.94924,2.20935,-0.56990
-2.80657,0.73772,-1.35917,-1.65366,-0.94926,2.20936,-0.56992
-2.80763,0.73744,-1.35975,-1.65304,-0.94946,2.20956,-0.57017
-2.80870,0.73716,-1.36031,-1.65242,-0.94966,2.20975,-0.57042
-2.80977,0.73688,-1.36086,-1.65181,-0.94985,2.20994,-0.57067
-2.81083,0.73661,-1.36140,-1.65122,-0.95005,2.21012,-0.57091
-2.81190,0.73635,-1.36193,-1.65063,-0.95024,2.21030,-0.57115
-2.81297,0.73609,-1.36245,-1.65005,-0.95042,2.21048,-0.57138
-2.81403,0.73583,-1.36296,-1.64948,-0.95061,2.21065,-0.57161
-2.81510,0.73558,-1.36347,-1.64892,-0.95079,2.21083,-0.57184
-2.81617,0.73534,-1.36396,-1.64837,-0.95098,2.21100,-0.57206
-2.81723,0.73509,-1.36445,-1.64783,-0.95116,2.21116,-0.57228
-2.81830,0.73485,-1.36493,-1.64730,-0.95133,2.21133,-0.57250
-2.81936,0.73462,-1.36540,-1.64677,-0.95151,2.21149,-0.57271
-2.82043,0.73439,-1.36586,-1.64626,-0.95168,2.21165,-0.57292
-2.82150,0.73416,-1.36631,-1.64575,-0.95186,2.21180,-0.57313
-2.82256,0.73393,-1.36676,-1.64525,-0.95203,2.21196,-0.57333
-2.82363,0.73371,-1.36720,-1.64476,-0.95219,2.21211,-0.57353
-2.82470,0.73350,-1.36763,-1.64427,-0.95236,2.21226,-0.57373
-2.82576,0.73328,-1.36805,-1.64380,-0.95252,2.21240,-0.57392
-2.82683,0.73307,-1.36847,-1.64333,-0.95269,2.21255,-0.57411
-2.82790,0.73287,-1.36887,-1.64287,-0.95285,2.21269,-0.57430
-2.82896,0.73279,-1.36906,-1.64265,-0.95292,2.21274,-0.57437
-2.83003,0.73262,-1.36967,-1.64181,-0.95322,2.21286,-0.57452
-2.83109,0.73246,-1.37028,-1.64099,-0.95352,2.21297,-0.57466
-2.83216,0.73230,-1.37088,-1.64019,-0.95381,2.21308,-0.57481
-2.83323,0.73214,-1.37146,-1.63939,-0.95409,2.21319,-0.57495
-2.83429,0.73199,-1.37204,-1.63861,-0.95438,2.21330,-0.57509
-2.83536,0.73183,-1.37260,-1.63785,-0.95466,2.21341,-0.57523
-2.83643,0.73168,-1.37316,-1.63709,-0.95493,2.21351,-0.57537
-2.83749,0.73154,-1.37371,-1.63635,-0.95520,2.21361,-0.57551
-2.83856,0.73139,-1.37424,-1.63562,-0.95547,2.21372,-0.57564
-2.83962,0.73124,-1.37477,-1.63490,-0.95574,2.21382,-0.57577
-2.84069,0.73110,-1.37529,-1.63419,-0.95600,2.21391,-0.57590
-2.84176,0.73096,-1.37580,-1.63349,-0.95626,2.21401,-0.57603
-2.84282,0.73082,-1.37630,-1.63281,-0.95651,2.21411,-0.57616
-2.84389,0.73069,-1.37679,-1.63214,-0.95677,2.21420,-0.57628
-2.84496,0.73055,-1.37727,-1.63147,-0.95701,2.21430,-0.57640
-2.84602,0.73042,-1.37775,-1.63082,-0.95726,2.21439,-0.57653
-2.84709,0.73029,-1.37821,-1.63018,-0.95750,2.21448,-0.57665
-2.84816,0.73016,-1.37867,-1.62955,-0.95774,2.21457,-0.57676
-2.84922,0.73004,-1.37912,-1.62893,-0.95798,2.21466,-0.57688
-2.85029,0.72991,-1.37956,-1.62832,-0.95821,2.21474,-0.57699
-2.85135,0.72979,-1.38000,-1.62772,-0.95844,2.21483,-0.57711
-2.85242,0.72967,-1.38042,-1.62713,-0.95867,2.21491,-0.57722
-2.85349,0.72955,-1.38084,-1.62655,-0.95889,2.21499,-0.57733
-2.85455,0.72944,-1.38126,-1.62598,-0.95911,2.21508,-0.57744
-2.85562,0.72932,-1.38166,-1.62541,-0.95933,2.21516,-0.57755
-2.85669,0.72921,-1.38206,-1.62486,-0.95954,2.21524,-0.57765
-2.85775,0.72909,-1.38245,-1.62432,-0.95975,2.21531,-0.57776
-2.85882,0.72901,-1.38286,-1.62372,-0.95998,2.21537,-0.57783
-2.85988,0.72903,-1.38387,-1.62206,-0.96061,2.21536,-0.57781
-2.86095,0.72906,-1.38486,-1.62043,-0.96123,2.21535,-0.57779
-2.86202,0.72908,-1.38583,-1.61883,-0.96184,2.21534,-0.57777
-2.86308,0.72910,-1.38678,-1.61725,-0.96245,2.21533,-0.57775
-2.86415,0.72912,-1.38772,-1.61569,-0.96304,2.21532,-0.57773
-2.86522,0.72914,-1.38864,-1.61417,-0.96363,2.21531,-0.57771
-2.86628,0.72916,-1.38955,-1.61266,-0.96421,2.21530,-0.57770
-2.86735,0.72917,-1.39044,-1.61118,-0.96478,2.21530,-0.57769
-2.86842,0.72919,-1.39132,-1.60973,-0.96534,2.21529,-0.57767
-2.86948,0.72920,-1.39218,-1.60830,-0.96590,2.21529,-0.57766
-2.87055,0.72922,-1.39302,-1.60689,-0.96644,2.21528,-0.57765
-2.87161,0.72923,-1.39385,-1.60550,-0.96698,2.21528,-0.57764
-2.87268,0.72924,-1.39467,-1.60414,-0.96752,2.21527,-0.57764
-2.87375,0.72925,-1.39548,-1.60280,-0.96804,2.21527,-0.57763
-2.87481,0.72926,-1.39627,-1.60148,-0.96856,2.21527,-0.57762
-2.87588,0.72926,-1.39704,-1.60018,-0.96907,2.21527,-0.57762
-2.87695,0.72927,-1.39781,-1.59891,-0.96958,2.21527,-0.57761
-2.87801,0.72928,-1.39856,-1.59765,-0.97008,2.21527,-0.57761
-2.87908,0.72928,-1.39930,-1.59642,-0.97057,2.21527,-0.57761
-2.88015,0.72928,-1.40002,-1.59520,-0.97105,2.21527,-0.57761
-2.88121,0.72929,-1.40073,-1.59400,-0.97153,2.21527,-0.57761
-2.88228,0.72929,-1.40143,-1.59283,-0.97200,2.21527,-0.57761
-2.88334,0.72929,-1.40212,-1.59167,-0.97247,2.21527,-0.57761
-2.88441,0.72929,-1.40280,-1.59053,-0.97292,2.21527,-0.57761
-2.88548,0.72929,-1.40347,-1.58941,-0.97338,2.21528,-0.57761
-2.88654,0.72929,-1.40412,-1.58831,-0.97382,2.21528,-0.57762
-2.88761,0.72929,-1.40476,-1.58723,-0.97426,2.21529,-0.57762
-2.88868,0.72929,-1.40540,-1.58616,-0.97469,2.21529,-0.57763
-2.88974,0.72929,-1.40602,-1.58512,-0.97512,2.21529,-0.57763
-2.89081,0.72928,-1.40663,-1.58408,-0.97554,2.21530,-0.57764
-2.89187,0.72928,-1.40723,-1.58307,-0.97596,2.21530,-0.57765
-2.89294,0.72928,-1.40782,-1.58207,-0.97637,2.21531,-0.57765
-2.89401,0.72927,-1.40840,-1.58109,-0.97677,2.21532,-0.57766
-2.89507,0.72927,-1.40897,-1.58012,-0.97717,2.21532,-0.57767
-2.89614,0.72926,-1.40953,-1.57917,-0.97756,2.21533,-0.57768
-2.89721,0.72926,-1.41008,-1.57824,-0.97795,2.21534,-0.57769
-2.89827,0.72925,-1.41062,-1.57732,-0.97833,2.21534,-0.57770
-2.89934,0.72924,-1.41116,-1.57642,-0.97871,2.21535,-0.57771
-2.90041,0.72924,-1.41168,-1.57553,-0.97908,2.21536,-0.57772
-2.90147,0.72923,-1.41220,-1.57465,-0.97944,2.21537,-0.57773
-2.90254,0.72922,-1.41270,-1.57379,-0.97980,2.21537,-0.57774
-2.90360,0.72921,-1.41320,-1.57294,-0.98016,2.21538,-0.57775
-2.90467,0.72920,-1.41369,-1.57211,-0.98051,2.21539,-0.57777
-2.90574,0.72919,-1.41417,-1.57129,-0.98085,2.21540,-0.57778
-2.90680,0.72918,-1.41464,-1.57049,-0.98120,2.21541,-0.57779
-2.90787,0.72917,-1.41511,-1.56969,-0.98153,2.21542,-0.57780
-2.90894,0.72916,-1.41556,-1.56891,-0.98186,2.21543,-0.57782
-2.91000,0.72915,-1.41601,-1.56815,-0.98219,2.21544,-0.57783
-2.91107,0.72914,-1.41645,-1.56739,-0.98251,2.21545,-0.57785
-2.91213,0.72913,-1.41689,-1.56665,-0.98283,2.21546,-0.57786
-2.91320,0.72912,-1.41731,-1.56592,-0.98314,2.21547,-0.57788
-2.91427,0.72911,-1.41773,-1.56520,-0.98345,2.21548,-0.57789
-2.91533,0.72910,-1.41815,-1.56449,-0.98375,2.21549,-0.57791
-2.91640,0.72909,-1.41855,-1.56380,-0.98405,2.21550,-0.57792
-2.91747,0.72907,-1.41895,-1.56312,-0.98434,2.21551,-0.57794
-2.91853,0.72906,-1.41934,-1.56244,-0.98463,2.21552,-0.57795
-2.91960,0.72905,-1.41973,-1.56178,-0.98492,2.21553,-0.57797
-2.92067,0.72904,-1.42011,-1.56113,-0.98520,2.21554,-0.57798
-2.92173,0.72902,-1.42048,-1.56049,-0.98548,2.21555,-0.57800
-2.92280,0.72901,-1.42084,-1.55986,-0.98576,2.21556,-0.57802
-2.92386,0.72900,-1.42120,-1.55924,-0.98603,2.21557,-0.57803
-2.92493,0.72898,-1.42156,-1.55863,-0.98629,2.21558,-0.57805
-2.92600,0.72897,-1.42191,-1.55803,-0.98656,2.21559,-0.57807
-2.92706,0.72896,-1.42225,-1.55744,-0.98682,2.21560,-0.57808
-2.92813,0.72895,-1.42247,-1.55706,-0.98698,2.21561,-0.57809
-2.92920,0.72898,-1.42300,-1.55612,-0.98738,2.21559,-0.57807
-2.93026,0.72901,-1.42352,-1.55519,-0.98776,2.21557,-0.57804
-2.93133,0.72904,-1.42404,-1.55428,-0.98815,2.21556,-0.57802
-2.93239,0.72907,-1.42454,-1.55339,-0.98852,2.21554,-0.57800
-2.93346,0.72909,-1.42504,-1.55251,-0.98889,2.21552,-0.57798
-2.93453,0.72912,-1.42553,-1.55164,-0.98926,2.21551,-0.57796
-2.93559,0.72914,-1.42601,-1.55079,-0.98962,2.21550,-0.57794
-2.93666,0.72917,-1.42648,-1.54995,-0.98998,2.21548,-0.57793
-2.93773,0.72919,-1.42694,-1.54913,-0.99033,2.21547,-0.57791
-2.93879,0.72921,-1.42740,-1.54832,-0.99067,2.21546,-0.57789
-2.93986,0.72923,-1.42785,-1.54752,-0.99101,2.21545,-0.57788
-2.94093,0.72925,-1.42829,-1.54673,-0.99135,2.21544,-0.57787
-2.94199,0.72927,-1.42872,-1.54596,-0.99168,2.21542,-0.57785
-2.94306,0.72929,-1.42915,-1.54520,-0.99200,2.21541,-0.57784
-2.94412,0.72931,-1.42956,-1.54445,-0.99233,2.21540,-0.57783
-2.94519,0.72932,-1.42998,-1.54372,-0.99264,2.21540,-0.57782
-2.94626,0.72934,-1.43038,-1.54300,-0.99295,2.21539,-0.57781
-2.94732,0.72935,-1.43078,-1.54228,-0.99326,2.21538,-0.57780
-2.94839,0.72937,-1.43117,-1.54158,-0.99357,2.21537,-0.57779
-2.94946,0.72938,-1.43156,-1.54090,-0.99386,2.21536,-0.57778
-2.95052,0.72939,-1.43193,-1.54022,-0.99416,2.21536,-0.57777
-2.95159,0.72941,-1.43231,-1.53955,-0.99445,2.21535,-0.57777
-2.95266,0.72942,-1.43267,-1.53890,-0.99474,2.21534,-0.57776
-2.95372,0.72943,-1.43303,-1.53825,-0.99502,2.21534,-0.57775
-2.95479,0.72944,-1.43339,-1.53762,-0.99530,2.21533,-0.57775
-2.95585,0.72945,-1.43373,-1.53700,-0.99557,2.21533,-0.57774
-2.95692,0.72946,-1.43408,-1.53638,-0.99584,2.21532,-0.57774
-2.95799,0.72947,-1.43441,-1.53578,-0.99610,2.21532,-0.57774
-2.95905,0.72948,-1.43474,-1.53519,-0.99637,2.21531,-0.57773
-2.96012,0.72949,-1.43492,-1.53486,-0.99651,2.21531,-0.57773
-2.96119,0.72954,-1.43542,-1.53395,-0.99689,2.21528,-0.57768
-2.96225,0.72959,-1.43590,-1.53306,-0.99727,2.21524,-0.57764
-2.96332,0.72964,-1.43638,-1.53219,-0.99764,2.21521,-0.57760
-2.96438,0.72969,-1.43685,-1.53132,-0.99801,2.21518,-0.57755
-2.96545,0.72974,-1.43731,-1.53048,-0.99837,2.21515,-0.57751
-2.96652,0.72979,-1.43777,-1.52964,-0.99873,2.21512,-0.57748
-2.96758,0.72983,-1.43821,-1.52882,-0.99908,2.21509,-0.57744
-2.96865,0.72988,-1.43865,-1.52801,-0.99943,2.21506,-0.57740
-2.96972,0.72992,-1.43909,-1.52722,-0.99977,2.21504,-0.57737
-2.97078,0.72996,-1.43951,-1.52644,-1.00010,2.21501,-0.57733
-2.97185,0.73000,-1.43993,-1.52567,-1.00044,2.21499,-0.57730
-2.97292,0.73004,-1.44034,-1.52491,-1.00076,2.21496,-0.57727
-2.97398,0.73008,-1.44074,-1.52417,-1.00108,2.21494,-0.57724
-2.97505,0.73011,-1.44114,-1.52343,-1.00140,2.21491,-0.57721
-2.97611,0.73015,-1.44153,-1.52271,-1.00171,2.21489,-0.57718
-2.97718,0.73018,-1.44191,-1.52201,-1.00202,2.21487,-0.57715
-2.97825,0.73022,-1.44229,-1.52131,-1.00233,2.21485,-0.57713
-2.97931,0.73025,-1.44266,-1.52062,-1.00263,2.21483,-0.57710
-2.98038,0.73028,-1.44303,-1.51995,-1.00292,2.21481,-0.57708
-2.98145,0.73031,-1.44339,-1.51929,-1.00321,2.21479,-0.57705
-2.98251,0.73034,-1.44374,-1.51863,-1.00350,2.21477,-0.57703
-2.98358,0.73037,-1.44409,-1.51799,-1.00378,2.21475,-0.57701
-2.98464,0.73040,-1.44443,-1.51736,-1.00406,2.21474,-0.57699
-2.98571,0.73043,-1.44476,-1.51674,-1.00433,2.21472,-0.57697
-2.98678,0.73045,-1.44509,-1.51613,-1.00460,2.21470,-0.57695
-2.98784,0.73048,-1.44542,-1.51553,-1.00487,2.21469,-0.57693
-2.98891,0.73050,-1.44571,-1.51499,-1.00511,2.21467,-0.57691
-2.98998,0.73054,-1.44605,-1.51434,-1.00540,2.21465,-0.57688
-2.99104,0.73058,-1.44639,-1.51370,-1.00568,2.21463,-0.57685
-2.99211,0.73061,-1.44673,-1.51308,-1.00595,2.21460,-0.57682
-2.99318,0.73065,-1.44706,-1.51246,-1.00622,2.21458,-0.57680
-2.99424,0.73068,-1.44738,-1.51186,-1.00649,2.21456,-0.57677
-2.99531,0.73071,-1.44770,-1.51126,-1.00676,2.21454,-0.57674
-2.99637,0.73073,-1.44783,-1.51101,-1.00687,2.21453,-0.57673
-2.99744,0.73078,-1.44820,-1.51029,-1.00718,2.21450,-0.57669
-2.99851,0.73084,-1.44858,-1.50959,-1.00749,2.21446,-0.57664
-2.99957,0.73089,-1.44894,-1.50890,-1.00779,2.21443,-0.57660
-3.00064,0.73094,-1.44930,-1.50821,-1.00809,2.21440,-0.57656
-3.00171,0.73099,-1.44965,-1.50754,-1.00838,2.21436,-0.57651
-3.00277,0.73103,-1.45000,-1.50688,-1.00867,2.21433,-0.57647
-3.00384,0.73108,-1.45034,-1.50623,-1.00896,2.21430,-0.57644
-3.00491,0.73113,-1.45068,-1.50559,-1.00924,2.21427,-0.57640
-3.00597,0.73117,-1.45101,-1.50496,-1.00952,2.21425,-0.57636
-3.00704,0.73121,-1.45133,-1.50435,-1.00979,2.21422,-0.57633
-3.00810,0.73126,-1.45165,-1.50374,-1.01006,2.21419,-0.57629
-3.00917,0.73130,-1.45196,-1.50314,-1.01033,2.21416,-0.57626
-3.01024,0.73132,-1.45215,-1.50278,-1.01049,2.21415,-0.57624
-3.01130,0.73136,-1.45249,-1.50214,-1.01077,2.21412,-0.57620
-3.01237,0.73141,-1.45282,-1.50151,-1.01105,2.21409,-0.57617
-3.01344,0.73145,-1.45315,-1.50089,-1.01132,2.21407,-0.57614
-3.01450,0.73149,-1.45347,-1.50028,-1.01159,2.21404,-0.57610
-3.01557,0.73152,-1.45379,-1.49969,-1.01185,2.21402,-0.57607
-3.01663,0.73155,-1.45398,-1.49933,-1.01201,2.21400,-0.57605
-3.01770,0.73159,-1.45430,-1.49871,-1.01228,2.21398,-0.57602
-3.01877,0.73163,-1.45462,-1.49811,-1.01255,2.21395,-0.57598
-3.01983,0.73168,-1.45493,-1.49751,-1.01282,2.21392,-0.57595
-3.02090,0.73169,-1.45502,-1.49733,-1.01290,2.21391,-0.57594
-3.02197,0.73174,-1.45534,-1.49672,-1.01317,2.21388,-0.57590
-3.02303,0.73178,-1.45566,-1.49611,-1.01344,2.21385,-0.57586
-3.02410,0.73183,-1.45597,-1.49551,-1.01370,2.21382,-0.57583
-3.02517,0.73184,-1.45606,-1.49534,-1.01378,2.21382,-0.57582
-3.02623,0.73188,-1.45638,-1.49473,-1.01404,2.21379,-0.57578
-3.02730,0.73192,-1.45666,-1.49420,-1.01428,2.21376,-0.57575
-3.02836,0.73197,-1.45698,-1.49358,-1.01455,2.21373,-0.57571
-3.02943,0.73202,-1.45729,-1.49297,-1.01482,2.21370,-0.57567
-3.03050,0.73207,-1.45760,-1.49238,-1.01509,2.21367,-0.57563
-3.03156,0.73208,-1.45770,-1.49220,-1.01517,2.21366,-0.57562
-3.03263,0.73213,-1.45801,-1.49160,-1.01543,2.21363,-0.57558
-3.03370,0.73217,-1.45829,-1.49106,-1.01567,2.21360,-0.57554
-3.03476,0.73222,-1.45860,-1.49046,-1.01593,2.21357,-0.57550
-3.03583,0.73224,-1.45875,-1.49017,-1.01607,2.21355,-0.57548
-3.03689,0.73230,-1.45906,-1.48957,-1.01633,2.21352,-0.57544
-3.03796,0.73232,-1.45918,-1.48933,-1.01644,2.21351,-0.57542
-3.03903,0.73237,-1.45948,-1.48874,-1.01670,2.21347,-0.57537
-3.04009,0.73240,-1.45963,-1.48844,-1.01683,2.21345,-0.57534
-3.04116,0.73246,-1.45993,-1.48784,-1.01710,2.21341,-0.57529
-3.04223,0.73245,-1.46002,-1.48770,-1.01717,2.21342,-0.57531
-3.04329,0.73202,-1.45972,-1.48860,-1.01681,2.21371,-0.57570
-3.04436,0.73160,-1.45943,-1.48949,-1.01646,2.21399,-0.57609
-3.04543,0.73119,-1.45914,-1.49036,-1.01612,2.21426,-0.57647
-3.04649,0.73078,-1.45885,-1.49121,-1.01578,2.21453,-0.57684
-3.04756,0.73038,-1.45857,-1.49206,-1.01545,2.21480,-0.57721
-3.04862,0.72999,-1.45830,-1.49288,-1.01512,2.21506,-0.57756
-3.04969,0.72961,-1.45803,-1.49369,-1.01480,2.21531,-0.57792
-3.05076,0.72924,-1.45777,-1.49449,-1.01449,2.21556,-0.57826
-3.05182,0.72887,-1.45751,-1.49527,-1.01418,2.21581,-0.57860
-3.05289,0.72850,-1.45725,-1.49604,-1.01387,2.21605,-0.57894
-3.05396,0.72815,-1.45700,-1.49680,-1.01357,2.21629,-0.57926
-3.05502,0.72780,-1.45675,-1.49754,-1.01328,2.21652,-0.57959
-3.05609,0.72746,-1.45651,-1.49827,-1.01299,2.21675,-0.57990
-3.05716,0.72712,-1.45627,-1.49899,-1.01270,2.21697,-0.58021
-3.05822,0.72679,-1.45604,-1.49969,-1.01242,2.21720,-0.58052
-3.05929,0.72647,-1.45581,-1.50039,-1.01215,2.21741,-0.58082
-3.06035,0.72615,-1.45558,-1.50107,-1.01188,2.21762,-0.58111
-3.06142,0.72584,-1.45536,-1.50173,-1.01161,2.21783,-0.58140
-3.06249,0.72553,-1.45514,-1.50239,-1.01135,2.21804,-0.58168
-3.06355,0.72523,-1.45493,-1.50304,-1.01109,2.21824,-0.58196
-3.06462,0.72493,-1.45472,-1.50367,-1.01084,2.21844,-0.58223
-3.06569,0.72464,-1.45451,-1.50429,-1.01059,2.21863,-0.58250
-3.06675,0.72436,-1.45431,-1.50491,-1.01035,2.21882,-0.58276
-3.06782,0.72408,-1.45411,-1.50551,-1.01011,2.21901,-0.58302
-3.06888,0.72380,-1.45391,-1.50610,-1.00987,2.21919,-0.58328
-3.06995,0.72353,-1.45372,-1.50668,-1.00964,2.21937,-0.58353
-3.07102,0.72327,-1.45353,-1.50725,-1.00941,2.21955,-0.58377
-3.07208,0.72301,-1.45334,-1.50781,-1.00918,2.21972,-0.58401
-3.07315,0.72275,-1.45316,-1.50836,-1.00896,2.21989,-0.58425
-3.07422,0.72250,-1.45298,-1.50891,-1.00874,2.22006,-0.58448
-3.07528,0.72226,-1.45280,-1.50944,-1.00853,2.22022,-0.58470
-3.07635,0.72202,-1.45263,-1.50996,-1.00832,2.22038,-0.58493
-3.07742,0.72178,-1.45246,-1.51048,-1.00811,2.22054,-0.58515
-3.07848,0.72155,-1.45229,-1.51098,-1.00791,2.22070,-0.58536
-3.07955,0.72132,-1.45212,-1.51148,-1.00771,2.22085,-0.58557
-3.08061,0.72110,-1.45196,-1.51196,-1.00751,2.22100,-0.58578
-3.08168,0.72088,-1.45180,-1.51244,-1.00732,2.22115,-0.58598
-3.08275,0.72077,-1.45171,-1.51271,-1.00721,2.22122,-0.58608
-3.08381,0.72017,-1.45108,-1.51435,-1.00654,2.22162,-0.58664
-3.08488,0.71957,-1.45047,-1.51597,-1.00588,2.22201,-0.58719
-3.08595,0.71898,-1.44987,-1.51756,-1.00523,2.22240,-0.58773
-3.08701,0.71841,-1.44928,-1.51912,-1.00459,2.22278,-0.58826
-3.08808,0.71785,-1.44870,-1.52065,-1.00396,2.22316,-0.58878
-3.08914,0.71729,-1.44813,-1.52216,-1.00334,2.22352,-0.58929
-3.09021,0.71675,-1.44758,-1.52364,-1.00274,2.22388,-0.58980
-3.09128,0.71622,-1.44703,-1.52509,-1.00214,2.22424,-0.59029
-3.09234,0.71569,-1.44649,-1.52651,-1.00155,2.22458,-0.59078
-3.09341,0.71518,-1.44596,-1.52792,-1.00098,2.22493,-0.59125
-3.09448,0.71467,-1.44544,-1.52929,-1.00041,2.22526,-0.59172
-3.09554,0.71418,-1.44493,-1.53065,-0.99985,2.22559,-0.59218
-3.09661,0.71369,-1.44443,-1.53198,-0.99931,2.22591,-0.59263
-3.09768,0.71321,-1.44394,-1.53328,-0.99877,2.22623,-0.59307
-3.09874,0.71274,-1.44346,-1.53456,-0.99824,2.22654,-0.59351
-3.09981,0.71228,-1.44299,-1.53582,-0.99772,2.22684,-0.59394
-3.10087,0.71183,-1.44252,-1.53706,-0.99721,2.22714,-0.59436
-3.10194,0.71139,-1.44206,-1.53828,-0.99670,2.22744,-0.59477
-3.10301,0.71095,-1.44162,-1.53947,-0.99621,2.22773,-0.59517
-3.10407,0.71052,-1.44117,-1.54064,-0.99572,2.22801,-0.59557
-3.10514,0.71010,-1.44074,-1.54180,-0.99525,2.22829,-0.59596
-3.10621,0.70969,-1.44032,-1.54293,-0.99478,2.22856,-0.59634
-3.10727,0.70929,-1.43990,-1.54404,-0.99431,2.22883,-0.59672
-3.10834,0.70889,-1.43949,-1.54514,-0.99386,2.22909,-0.59709
-3.10940,0.70850,-1.43909,-1.54621,-0.99341,2.22935,-0.59745
-3.11047,0.70812,-1.43869,-1.54727,-0.99297,2.22960,-0.59781
-3.11154,0.70774,-1.43830,-1.54830,-0.99254,2.22985,-0.59816
-3.11260,0.70737,-1.43792,-1.54932,-0.99212,2.23010,-0.59850
-3.11367,0.70701,-1.43755,-1.55032,-0.99170,2.23034,-0.59884
-3.11474,0.70666,-1.43718,-1.55131,-0.99129,2.23057,-0.59917
-3.11580,0.70631,-1.43682,-1.55227,-0.99089,2.23080,-0.59949
-3.11687,0.70596,-1.43646,-1.55322,-0.99049,2.23103,-0.59981
-3.11794,0.70563,-1.43611,-1.55415,-0.99010,2.23125,-0.60012
-3.11900,0.70530,-1.43577,-1.55507,-0.98972,2.23147,-0.60043
-3.12007,0.70498,-1.43543,-1.55597,-0.98934,2.23169,-0.60073
-3.12113,0.70466,-1.43510,-1.55685,-0.98897,2.23190,-0.60103
-3.12220,0.70435,-1.43477,-1.55772,-0.98860,2.23210,-0.60132
-3.12327,0.70404,-1.43445,-1.55858,-0.98824,2.23231,-0.60160
-3.12433,0.70374,-1.43414,-1.55942,-0.98789,2.23250,-0.60188
-3.12540,0.70345,-1.43383,-1.56024,-0.98754,2.23270,-0.60216
-3.12647,0.70316,-1.43353,-1.56105,-0.98720,2.23289,-0.60243
-3.12753,0.70287,-1.43323,-1.56185,-0.98687,2.23308,-0.60269
-3.12860,0.70259,-1.43294,-1.56263,-0.98654,2.23326,-0.60295
-3.12967,0.70232,-1.43265,-1.56340,-0.98621,2.23345,-0.60321
-3.13073,0.70205,-1.43237,-1.56415,-0.98589,2.23362,-0.60346
-3.13180,0.70179,-1.43209,-1.56490,-0.98558,2.23380,-0.60370
-3.13286,0.70153,-1.43182,-1.56563,-0.98527,2.23397,-0.60394
-3.13393,0.70128,-1.43155,-1.56634,-0.98497,2.23414,-0.60418
-3.13500,0.70103,-1.43129,-1.56705,-0.98467,2.23430,-0.60441
-3.13606,0.70078,-1.43103,-1.56774,-0.98437,2.23447,-0.60464
-3.13713,0.70054,-1.43077,-1.56842,-0.98408,2.23462,-0.60487
-3.13820,0.70031,-1.43052,-1.56909,-0.98380,2.23478,-0.60508
-3.13926,0.70008,-1.43028,-1.56974,-0.98352,2.23493,-0.60530
-3.14033,0.69985,-1.43004,-1.57039,-0.98325,2.23508,-0.60551
-3.14139,0.69963,-1.42980,-1.57102,-0.98298,2.23523,-0.60572
-3.14246,0.69941,-1.42957,-1.57164,-0.98271,2.23538,-0.60592
-3.14353,0.69920,-1.42934,-1.57226,-0.98245,2.23552,-0.60612
-3.14459,0.69899,-1.42911,-1.57286,-0.98219,2.23566,-0.60632
-3.14566,0.69878,-1.42889,-1.57345,-0.98194,2.23580,-0.60651
-3.14673,0.69858,-1.42867,-1.57403,-0.98169,2.23593,-0.60670
-3.14779,0.69838,-1.42846,-1.57460,-0.98145,2.23606,-0.60689
-3.14886,0.69818,-1.42825,-1.57516,-0.98120,2.23619,-0.60707
-3.14993,0.69799,-1.42805,-1.57571,-0.98097,2.23632,-0.60725
-3.15099,0.69781,-1.42784,-1.57625,-0.98074,2.23644,-0.60742
-3.15206,0.69762,-1.42764,-1.57679,-0.98051,2.23656,-0.60759
-3.15312,0.69744,-1.42745,-1.57731,-0.98028,2.23669,-0.60776
-3.15419,0.69726,-1.42726,-1.57782,-0.98006,2.23680,-0.60793
-3.15526,0.69717,-1.42716,-1.57809,-0.97995,2.23686,-0.60801
-3.15632,0.69696,-1.42692,-1.57870,-0.97968,2.23700,-0.60821
-3.15739,0.69675,-1.42669,-1.57931,-0.97943,2.23714,-0.60840
-3.15846,0.69655,-1.42647,-1.57990,-0.97917,2.23727,-0.60859
-3.15952,0.69635,-1.42625,-1.58049,-0.97892,2.23741,-0.60878
-3.16059,0.69616,-1.42603,-1.58106,-0.97868,2.23754,-0.60896
-3.16165,0.69596,-1.42582,-1.58162,-0.97844,2.23766,-0.60914
-3.16272,0.69578,-1.42561,-1.58218,-0.97820,2.23779,-0.60932
-3.16379,0.69559,-1.42540,-1.58272,-0.97797,2.23791,-0.60949
-3.16485,0.69541,-1.42520,-1.58326,-0.97774,2.23803,-0.60966
-3.16592,0.69523,-1.42500,-1.58378,-0.97751,2.23815,-0.60983
-3.16699,0.69506,-1.42481,-1.58430,-0.97729,2.23826,-0.60999
-3.16805,0.69495,-1.42468,-1.58463,-0.97715,2.23834,-0.61009
-3.16912,0.69470,-1.42439,-1.58538,-0.97683,2.23850,-0.61033
-3.17019,0.69445,-1.42411,-1.58611,-0.97652,2.23866,-0.61056
-3.17125,0.69421,-1.42383,-1.58683,-0.97622,2.23882,-0.61078
-3.17232,0.69398,-1.42355,-1.58754,-0.97592,2.23898,-0.61100
-3.17338,0.69375,-1.42328,-1.58824,-0.97563,2.23913,-0.61122
-3.17445,0.69352,-1.42302,-1.58893,-0.97534,2.23928,-0.61143
-3.17552,0.69330,-1.42276,-1.58960,-0.97505,2.23942,-0.61164
-3.17658,0.69308,-1.42250,-1.59026,-0.97477,2.23957,-0.61184
-3.17765,0.69287,-1.42225,-1.59091,-0.97450,2.23971,-0.61204
-3.17872,0.69266,-1.42200,-1.59155,-0.97423,2.23985,-0.61224
-3.17978,0.69245,-1.42176,-1.59218,-0.97396,2.23998,-0.61243
-3.18085,0.69225,-1.42152,-1.59280,-0.97370,2.24012,-0.61262
-3.18192,0.69205,-1.42128,-1.59340,-0.97344,2.24025,-0.61281
-3.18298,0.69186,-1.42105,-1.59400,-0.97319,2.24037,-0.61299
-3.18405,0.69167,-1.42083,-1.59458,-0.97294,2.24050,-0.61317
-3.18511,0.69148,-1.42060,-1.59516,-0.97270,2.24062,-0.61335
-3.18618,0.69130,-1.42038,-1.59572,-0.97246,2.24074,-0.61352
-3.18725,0.69112,-1.42017,-1.59628,-0.97222,2.24086,-0.61369
-3.18831,0.69094,-1.41996,-1.59683,-0.97199,2.24098,-0.61385
-3.18938,0.69077,-1.41975,-1.59736,-0.97176,2.24110,-0.61402
-3.19045,0.69060,-1.41955,-1.59789,-0.97153,2.24121,-0.61418
-3.19151,0.69043,-1.41935,-1.59841,-0.97131,2.24132,-0.61433
-3.19258,0.69035,-1.41926,-1.59864,-0.97121,2.24137,-0.61440
-3.19364,0.69012,-1.41895,-1.59939,-0.97090,2.24152,-0.61463
-3.19471,0.68988,-1.41866,-1.60013,-0.97059,2.24168,-0.61485
-3.19578,0.68965,-1.41837,-1.60086,-0.97028,2.24183,-0.61506
-3.19684,0.68943,-1.41808,-1.60158,-0.96998,2.24197,-0.61527
-3.19791,0.68921,-1.41780,-1.60228,-0.96969,2.24212,-0.61548
-3.19898,0.68899,-1.41753,-1.60298,-0.96940,2.24226,-0.61569
-3.20004,0.68878,-1.41726,-1.60365,-0.96911,2.24240,-0.61589
-3.20111,0.68857,-1.41699,-1.60432,-0.96883,2.24254,-0.61608
-3.20218,0.68836,-1.41673,-1.60498,-0.96855,2.24267,-0.61628
-3.20324,0.68816,-1.41647,-1.60562,-0.96828,2.24280,-0.61647
-3.20431,0.68797,-1.41622,-1.60626,-0.96802,2.24293,-0.61665
-3.20537,0.68777,-1.41597,-1.60688,-0.96775,2.24306,-0.61683
-3.20644,0.68758,-1.41573,-1.60749,-0.96749,2.24319,-0.61701
-3.20751,0.68740,-1.41549,-1.60809,-0.96724,2.24331,-0.61719
-3.20857,0.68721,-1.41526,-1.60868,-0.96699,2.24343,-0.61736
-3.20964,0.68704,-1.41502,-1.60926,-0.96674,2.24355,-0.61753
-3.21071,0.68686,-1.41480,-1.60984,-0.96650,2.24366,-0.61769
-3.21177,0.68669,-1.41457,-1.61040,-0.96626,2.24377,-0.61786
-3.21284,0.68652,-1.41436,-1.61095,-0.96603,2.24389,-0.61802
-3.21390,0.68635,-1.41414,-1.61149,-0.96580,2.24400,-0.61817
-3.21497,0.68619,-1.41393,-1.61202,-0.96557,2.24410,-0.61832
-3.21604,0.68603,-1.41372,-1.61254,-0.96535,2.24421,-0.61847
-3.21710,0.68593,-1.41359,-1.61287,-0.96521,2.24427,-0.61857
-3.21817,0.68573,-1.41332,-1.61354,-0.96493,2.24441,-0.61876
-3.21924,0.68553,-1.41305,-1.61420,-0.96466,2.24454,-0.61895
-3.22030,0.68533,-1.41279,-1.61484,-0.96439,2.24467,-0.61913
-3.22137,0.68514,-1.41254,-1.61548,-0.96412,2.24479,-0.61932
-3.22244,0.68495,-1.41229,-1.61610,-0.96386,2.24492,-0.61949
-3.22350,0.68476,-1.41204,-1.61671,-0.96360,2.24504,-0.61967
-3.22457,0.68458,-1.41179,-1.61732,-0.96335,2.24516,-0.61984
-3.22563,0.68440,-1.41156,-1.61791,-0.96310,2.24527,-0.62001
-3.22670,0.68423,-1.41132,-1.61849,-0.96285,2.24539,-0.62017
-3.22777,0.68406,-1.41109,-1.61906,-0.96261,2.24550,-0.62034
-3.22883,0.68389,-1.41086,-1.61963,-0.96237,2.24561,-0.62050
-3.22990,0.68372,-1.41064,-1.62018,-0.96214,2.24572,-0.62065
-3.23097,0.68356,-1.41042,-1.62072,-0.96191,2.24582,-0.62080
-3.23203,0.68340,-1.41021,-1.62125,-0.96168,2.24593,-0.62095
-3.23310,0.68325,-1.41000,-1.62178,-0.96146,2.24603,-0.62110
-3.23417,0.68315,-1.40987,-1.62210,-0.96133,2.24609,-0.62119
-3.23523,0.68297,-1.40961,-1.62271,-0.96107,2.24621,-0.62136
-3.23630,0.68279,-1.40937,-1.62332,-0.96082,2.24633,-0.62153
-3.23736,0.68262,-1.40912,-1.62391,-0.96057,2.24644,-0.62169
-3.23843,0.68245,-1.40889,-1.62449,-0.96032,2.24655,-0.62185
-3.23950,0.68228,-1.40865,-1.62506,-0.96008,2.24666,-0.62201
-3.24056,0.68212,-1.40842,-1.62563,-0.95984,2.24677,-0.62217
-3.24163,0.68196,-1.40820,-1.62618,-0.95961,2.24688,-0.62232
-3.24270,0.68180,-1.40797,-1.62672,-0.95938,2.24698,-0.62247
-3.24376,0.68164,-1.40776,-1.62726,-0.95916,2.24708,-0.62262
-3.24483,0.68149,-1.40754,-1.62778,-0.95894,2.24718,-0.62276
-3.24589,0.68142,-1.40743,-1.62806,-0.95882,2.24723,-0.62283
-3.24696,0.68124,-1.40713,-1.62873,-0.95854,2.24735,-0.62300
-3.24803,0.68106,-1.40685,-1.62939,-0.95827,2.24746,-0.62317
-3.24909,0.68089,-1.40657,-1.63004,-0.95800,2.24757,-0.62333
-3.25016,0.68072,-1.40629,-1.63068,-0.95774,2.24768,-0.62349
-3.25123,0.68056,-1.40602,-1.63131,-0.95748,2.24779,-0.62364
-3.25229,0.68040,-1.40575,-1.63193,-0.95722,2.24789,-0.62380
-3.25336,0.68024,-1.40549,-1.63254,-0.95697,2.24800,-0.62395
-3.25443,0.68009,-1.40523,-1.63313,-0.95672,2.24810,-0.62409
-3.25549,0.67993,-1.40498,-1.63372,-0.95648,2.24820,-0.62424
-3.25656,0.67978,-1.40473,-1.63429,-0.95624,2.24830,-0.62438
-3.25762,0.67964,-1.40448,-1.63486,-0.95600,2.24839,-0.62452
-3.25869,0.67949,-1.40424,-1.63542,-0.95577,2.24849,-0.62465
-3.25976,0.67935,-1.40401,-1.63596,-0.95554,2.24858,-0.62479
-3.26082,0.67921,-1.40378,-1.63650,-0.95532,2.24867,-0.62492
-3.26189,0.67909,-1.40356,-1.63700,-0.95511,2.24875,-0.62504
-3.26296,0.67892,-1.40322,-1.63773,-0.95481,2.24886,-0.62520
-3.26402,0.67875,-1.40289,-1.63846,-0.95452,2.24897,-0.62535
-3.26509,0.67859,-1.40256,-1.63917,-0.95423,2.24907,-0.62551
-3.26615,0.67843,-1.40225,-1.63986,-0.95395,2.24918,-0.62566
-3.26722,0.67828,-1.40193,-1.64055,-0.95367,2.24928,-0.62581
-3.26829,0.67812,-1.40162,-1.64122,-0.95340,2.24938,-0.62595
-3.26935,0.67797,-1.40132,-1.64189,-0.95313,2.24948,-0.62610
-3.27042,0.67783,-1.40102,-1.64254,-0.95286,2.24957,-0.62624
-3.27149,0.67768,-1.40073,-1.64318,-0.95260,2.24967,-0.62637
-3.27255,0.67754,-1.40044,-1.64380,-0.95234,2.24976,-0.62651
-3.27362,0.67740,-1.40016,-1.64442,-0.95209,2.24985,-0.62664
-3.27469,0.67727,-1.39988,-1.64503,-0.95184,2.24994,-0.62677
-3.27575,0.67713,-1.39961,-1.64563,-0.95159,2.25002,-0.62689
-3.27682,0.67700,-1.39934,-1.64621,-0.95135,2.25011,-0.62702
-3.27788,0.67688,-1.39908,-1.64679,-0.95112,2.25019,-0.62714
-3.27895,0.67675,-1.39882,-1.64735,-0.95088,2.25027,-0.62726
-3.28002,0.67663,-1.39856,-1.64791,-0.95065,2.25035,-0.62738
-3.28108,0.67651,-1.39831,-1.64846,-0.95043,2.25043,-0.62749
-3.28215,0.67639,-1.39807,-1.64899,-0.95020,2.25051,-0.62760
-3.28322,0.67637,-1.39803,-1.64907,-0.95017,2.25052,-0.62762
-3.28428,0.67622,-1.39766,-1.64984,-0.94987,2.25062,-0.62776
-3.28535,0.67608,-1.39730,-1.65059,-0.94957,2.25071,-0.62790
-3.28642,0.67593,-1.39694,-1.65133,-0.94927,2.25081,-0.62803
-3.28748,0.67579,-1.39659,-1.65205,-0.94898,2.25090,-0.62817
-3.28855,0.67566,-1.39624,-1.65277,-0.94869,2.25099,-0.62830
-3.28961,0.67552,-1.39591,-1.65347,-0.94841,2.25107,-0.62843
-3.29068,0.67539,-1.39557,-1.65416,-0.94813,2.25116,-0.62855
-3.29175,0.67526,-1.39525,-1.65483,-0.94786,2.25124,-0.62868
-3.29281,0.67513,-1.39493,-1.65550,-0.94759,2.25133,-0.62880
-3.29388,0.67501,-1.39461,-1.65615,-0.94733,2.25141,-0.62892
-3.29495,0.67489,-1.39430,-1.65679,-0.94707,2.25149,-0.62903
-3.29601,0.67477,-1.39400,-1.65743,-0.94681,2.25156,-0.62914
-3.29708,0.67465,-1.39370,-1.65805,-0.94656,2.25164,-0.62926
-3.29814,0.67453,-1.39340,-1.65866,-0.94631,2.25171,-0.62936
-3.29921,0.67442,-1.39311,-1.65925,-0.94607,2.25179,-0.62947
-3.30028,0.67431,-1.39283,-1.65984,-0.94583,2.25186,-0.62958
-3.30134,0.67420,-1.39255,-1.66042,-0.94559,2.25193,-0.62968
-3.30241,0.67410,-1.39228,-1.66099,-0.94536,2.25200,-0.62978
-3.30348,0.67399,-1.39201,-1.66155,-0.94513,2.25207,-0.62988
-3.30454,0.67389,-1.39174,-1.66210,-0.94490,2.25213,-0.62997
-3.30561,0.67381,-1.39152,-1.66256,-0.94472,2.25219,-0.63005
-3.30668,0.67369,-1.39111,-1.66334,-0.94441,2.25226,-0.63016
-3.30774,0.67358,-1.39072,-1.66411,-0.94410,2.25234,-0.63027
-3.30881,0.67346,-1.39033,-1.66487,-0.94380,2.25241,-0.63038
-3.30987,0.67335,-1.38994,-1.66562,-0.94351,2.25248,-0.63049
-3.31094,0.67324,-1.38957,-1.66635,-0.94322,2.25255,-0.63059
-3.31201,0.67313,-1.38920,-1.66707,-0.94294,2.25262,-0.63070
-3.31307,0.67303,-1.38883,-1.66777,-0.94265,2.25269,-0.63079
-3.31414,0.67293,-1.38848,-1.66847,-0.94238,2.25276,-0.63089
-3.31521,0.67283,-1.38813,-1.66915,-0.94211,2.25282,-0.63099
-3.31627,0.67273,-1.38778,-1.66982,-0.94184,2.25289,-0.63108
-3.31734,0.67263,-1.38744,-1.67048,-0.94158,2.25295,-0.63117
-3.31840,0.67254,-1.38711,-1.67113,-0.94132,2.25301,-0.63126
-3.31947,0.67245,-1.38678,-1.67176,-0.94106,2.25307,-0.63135
-3.32054,0.67236,-1.38646,-1.67239,-0.94081,2.25313,-0.63143
-3.32160,0.67227,-1.38615,-1.67301,-0.94056,2.25319,-0.63152
-3.32267,0.67218,-1.38584,-1.67361,-0.94032,2.25324,-0.63160
-3.32374,0.67210,-1.38553,-1.67420,-0.94008,2.25330,-0.63168
-3.32480,0.67201,-1.38523,-1.67479,-0.93984,2.25335,-0.63176
-3.32587,0.67193,-1.38494,-1.67536,-0.93961,2.25340,-0.63183
-3.32694,0.67185,-1.38465,-1.67592,-0.93938,2.25345,-0.63191
-3.32800,0.67178,-1.38436,-1.67648,-0.93916,2.25351,-0.63198
-3.32907,0.67172,-1.38416,-1.67687,-0.93900,2.25354,-0.63203
-3.33013,0.67165,-1.38380,-1.67753,-0.93874,2.25359,-0.63210
-3.33120,0.67158,-1.38345,-1.67818,-0.93848,2.25363,-0.63217
-3.33227,0.67151,-1.38311,-1.67882,-0.93823,2.25368,-0.63223
-3.33333,0.67144,-1.38277,-1.67944,-0.93798,2.25372,-0.63230
-3.33440,0.67137,-1.38244,-1.68006,-0.93774,2.25377,-0.63236
-3.33547,0.67131,-1.38212,-1.68066,-0.93750,2.25381,-0.63242
-3.33653,0.67125,-1.38180,-1.68125,-0.93726,2.25385,-0.63248
-3.33760,0.67118,-1.38148,-1.68184,-0.93703,2.25389,-0.63254
-3.33866,0.67112,-1.38117,-1.68241,-0.93680,2.25393,-0.63260
-3.33973,0.67106,-1.38087,-1.68297,-0.93657,2.25397,-0.63265
-3.34080,0.67101,-1.38057,-1.68353,-0.93635,2.25400,-0.63271
-3.34186,0.67098,-1.38044,-1.68376,-0.93626,2.25402,-0.63273
-3.34293,0.67092,-1.38004,-1.68448,-0.93598,2.25406,-0.63278
-3.34400,0.67087,-1.37965,-1.68518,-0.93571,2.25409,-0.63284
-3.34506,0.67081,-1.37926,-1.68587,-0.93544,2.25413,-0.63289
-3.34613,0.67075,-1.37888,-1.68655,-0.93517,2.25417,-0.63294
-3.34720,0.67070,-1.37850,-1.68721,-0.93491,2.25420,-0.63299
-3.34826,0.67065,-1.37814,-1.68787,-0.93466,2.25424,-0.63304
-3.34933,0.67060,-1.37778,-1.68851,-0.93441,2.25427,-0.63309
-3.35039,0.67055,-1.37742,-1.68914,-0.93416,2.25430,-0.63314
-3.35146,0.67050,-1.37707,-1.68976,-0.93391,2.25433,-0.63318
-3.35253,0.67045,-1.37673,-1.69037,-0.93367,2.25436,-0.63323
-3.35359,0.67041,-1.37639,-1.69097,-0.93343,2.25439,-0.63327
-3.35466,0.67036,-1.37606,-1.69156,-0.93320,2.25442,-0.63331
-3.35573,0.67032,-1.37574,-1.69214,-0.93297,2.25445,-0.63335
-3.35679,0.67027,-1.37542,-1.69271,-0.93274,2.25448,-0.63339
-3.35786,0.67023,-1.37511,-1.69327,-0.93252,2.25450,-0.63343
-3.35893,0.67019,-1.37478,-1.69384,-0.93230,2.25453,-0.63347
-3.35999,0.67016,-1.37434,-1.69459,-0.93201,2.25455,-0.63350
-3.36106,0.67013,-1.37391,-1.69533,-0.93173,2.25457,-0.63353
-3.36212,0.67010,-1.37348,-1.69605,-0.93145,2.25459,-0.63355
-3.36319,0.67007,-1.37306,-1.69675,-0.93118,2.25461,-0.63358
-3.36426,0.67004,-1.37265,-1.69745,-0.93091,2.25463,-0.63361
-3.36532,0.67002,-1.37224,-1.69814,-0.93065,2.25464,-0.63363
-3.36639,0.66999,-1.37185,-1.69881,-0.93039,2.25466,-0.63365
-3.36746,0.66996,-1.37145,-1.69947,-0.93013,2.25468,-0.63368
-3.36852,0.66994,-1.37107,-1.70012,-0.92988,2.25469,-0.63370
-3.36959,0.66992,-1.37069,-1.70076,-0.92963,2.25471,-0.63372
-3.37065,0.66989,-1.37032,-1.70139,-0.92939,2.25472,-0.63374
-3.37172,0.66987,-1.36996,-1.70200,-0.92915,2.25474,-0.63376
-3.37279,0.66985,-1.36960,-1.70261,-0.92891,2.25475,-0.63378
-3.37385,0.66983,-1.36925,-1.70321,-0.92868,2.25476,-0.63380
-3.37492,0.66981,-1.36890,-1.70379,-0.92845,2.25477,-0.63381
-3.37599,0.66979,-1.36856,-1.70437,-0.92822,2.25479,-0.63383
-3.37705,0.66977,-1.36823,-1.70493,-0.92800,2.25480,-0.63384
-3.37812,0.66976,-1.36790,-1.70549,-0.92778,2.25481,-0.63386
-3.37919,0.66975,-1.36766,-1.70589,-0.92762,2.25482,-0.63387
-3.38025,0.66975,-1.36723,-1.70659,-0.92736,2.25482,-0.63387
-3.38132,0.66975,-1.36680,-1.70727,-0.92710,2.25481,-0.63386
-3.38238,0.66975,-1.36638,-1.70795,-0.92684,2.25481,-0.63386
-3.38345,0.66975,-1.36597,-1.70861,-0.92659,2.25481,-0.63385
-3.38452,0.66976,-1.36556,-1.70926,-0.92634,2.25481,-0.63385
-3.38558,0.66976,-1.36517,-1.70990,-0.92609,2.25481,-0.63384
-3.38665,0.66976,-1.36478,-1.71053,-0.92585,2.25480,-0.63384
-3.38772,0.66977,-1.36439,-1.71115,-0.92561,2.25480,-0.63383
-3.38878,0.66977,-1.36401,-1.71175,-0.92538,2.25480,-0.63383
-3.38985,0.66978,-1.36364,-1.71235,-0.92515,2.25479,-0.63382
-3.39091,0.66978,-1.36328,-1.71294,-0.92492,2.25479,-0.63381
-3.39198,0.66979,-1.36292,-1.71352,-0.92470,2.25479,-0.63381
-3.39305,0.66979,-1.36257,-1.71408,-0.92448,2.25478,-0.63380
-3.39411,0.66980,-1.36222,-1.71464,-0.92426,2.25478,-0.63379
-3.39518,0.66981,-1.36188,-1.71519,-0.92405,2.25477,-0.63378
-3.39625,0.66982,-1.36181,-1.71529,-0.92401,2.25477,-0.63377
-3.39731,0.66992,-1.36109,-1.71633,-0.92364,2.25470,-0.63368
-3.39838,0.67001,-1.36037,-1.71734,-0.92328,2.25464,-0.63359
-3.39945,0.67011,-1.35968,-1.71834,-0.92293,2.25458,-0.63349
-3.40051,0.67021,-1.35899,-1.71932,-0.92258,2.25452,-0.63340
-3.40158,0.67030,-1.35831,-1.72028,-0.92223,2.25445,-0.63331
-3.40264,0.67039,-1.35765,-1.72123,-0.92190,2.25439,-0.63322
-3.40371,0.67049,-1.35700,-1.72216,-0.92156,2.25433,-0.63313
-3.40478,0.67058,-1.35636,-1.72308,-0.92123,2.25427,-0.63304
-3.40584,0.67067,-1.35573,-1.72398,-0.92091,2.25421,-0.63295
-3.40691,0.67076,-1.35511,-1.72486,-0.92059,2.25416,-0.63286
-3.40798,0.67085,-1.35450,-1.72573,-0.92027,2.25410,-0.63277
-3.40904,0.67094,-1.35391,-1.72658,-0.91996,2.25404,-0.63269
-3.41011,0.67103,-1.35332,-1.72742,-0.91966,2.25398,-0.63260
-3.41118,0.67112,-1.35274,-1.72825,-0.91936,2.25393,-0.63251
-3.41224,0.67120,-1.35218,-1.72906,-0.91906,2.25387,-0.63243
-3.41331,0.67129,-1.35162,-1.72985,-0.91877,2.25381,-0.63235
-3.41437,0.67137,-1.35107,-1.73064,-0.91848,2.25376,-0.63226
-3.41544,0.67146,-1.35054,-1.73141,-0.91820,2.25370,-0.63218
-3.41651,0.67154,-1.35001,-1.73216,-0.91792,2.25365,-0.63210
-3.41757,0.67162,-1.34949,-1.73291,-0.91764,2.25360,-0.63202
-3.41864,0.67170,-1.34898,-1.73364,-0.91737,2.25354,-0.63194
-3.41971,0.67178,-1.34848,-1.73436,-0.91711,2.25349,-0.63186
-3.42077,0.67186,-1.34799,-1.73506,-0.91684,2.25344,-0.63178
-3.42184,0.67194,-1.34750,-1.73576,-0.91658,2.25339,-0.63170
-3.42290,0.67202,-1.34703,-1.73644,-0.91633,2.25333,-0.63162
-3.42397,0.67210,-1.34656,-1.73711,-0.91608,2.25328,-0.63154
-3.42504,0.67217,-1.34610,-1.73777,-0.91583,2.25323,-0.63147
-3.42610,0.67225,-1.34565,-1.73841,-0.91558,2.25318,-0.63139
-3.42717,0.67232,-1.34521,-1.73905,-0.91534,2.25313,-0.63132
-3.42824,0.67240,-1.34477,-1.73968,-0.91511,2.25309,-0.63124
-3.42930,0.67247,-1.34434,-1.74029,-0.91487,2.25304,-0.63117
-3.43037,0.67255,-1.34392,-1.74090,-0.91464,2.25299,-0.63110
-3.43144,0.67262,-1.34351,-1.74149,-0.91442,2.25294,-0.63103
-3.43250,0.67269,-1.34311,-1.74207,-0.91419,2.25289,-0.63095
-3.43357,0.67276,-1.34271,-1.74265,-0.91397,2.25285,-0.63088
-3.43463,0.67283,-1.34231,-1.74321,-0.91375,2.25280,-0.63081
-3.43570,0.67290,-1.34193,-1.74377,-0.91354,2.25276,-0.63074
-3.43677,0.67297,-1.34155,-1.74431,-0.91333,2.25271,-0.63067
-3.43783,0.67303,-1.34118,-1.74485,-0.91312,2.25267,-0.63061
-3.43890,0.67307,-1.34099,-1.74512,-0.91302,2.25264,-0.63057
-3.43997,0.67317,-1.34054,-1.74573,-0.91279,2.25258,-0.63047
-3.44103,0.67326,-1.34011,-1.74634,-0.91256,2.25252,-0.63038
-3.44210,0.67336,-1.33968,-1.74693,-0.91234,2.25245,-0.63029
-3.44316,0.67345,-1.33925,-1.74751,-0.91212,2.25239,-0.63019
-3.44423,0.67354,-1.33884,-1.74809,-0.91190,2.25233,-0.63010
-3.44530,0.67364,-1.33843,-1.74865,-0.91169,2.25227,-0.63001
-3.44636,0.67373,-1.33803,-1.74920,-0.91148,2.25221,-0.62992
-3.44743,0.67382,-1.33764,-1.74975,-0.91127,2.25215,-0.62983
-3.44850,0.67390,-1.33725,-1.75028,-0.91107,2.25210,-0.62974
-3.44956,0.67399,-1.33687,-1.75081,-0.91087,2.25204,-0.62966
-3.45063,0.67403,-1.33674,-1.75098,-0.91080,2.25201,-0.62962
-3.45170,0.67421,-1.33618,-1.75168,-0.91056,2.25190,-0.62945
-3.45276,0.67438,-1.33563,-1.75236,-0.91032,2.25178,-0.62928
-3.45383,0.67456,-1.33509,-1.75303,-0.91008,2.25167,-0.62911
-3.45489,0.67473,-1.33456,-1.75369,-0.90984,2.25156,-0.62894
-3.45596,0.67490,-1.33404,-1.75434,-0.90961,2.25145,-0.62877
-3.45703,0.67507,-1.33353,-1.75498,-0.90938,2.25134,-0.62861
-3.45809,0.67523,-1.33303,-1.75560,-0.90916,2.25123,-0.62845
-3.45916,0.67539,-1.33254,-1.75622,-0.90894,2.25112,-0.62829
-3.46023,0.67555,-1.33205,-1.75682,-0.90872,2.25102,-0.62814
-3.46129,0.67571,-1.33158,-1.75742,-0.90850,2.25092,-0.62798
-3.46236,0.67587,-1.33111,-1.75800,-0.90829,2.25081,-0.62783
-3.46343,0.67602,-1.33065,-1.75858,-0.90808,2.25071,-0.62768
-3.46449,0.67618,-1.33020,-1.75914,-0.90788,2.25061,-0.62753
-3.46556,0.67633,-1.32975,-1.75970,-0.90767,2.25051,-0.62738
-3.46662,0.67647,-1.32932,-1.76024,-0.90747,2.25042,-0.62724
-3.46769,0.67662,-1.32889,-1.76078,-0.90727,2.25032,-0.62709
-3.46876,0.67677,-1.32847,-1.76131,-0.90708,2.25023,-0.62695
-3.46982,0.67691,-1.32805,-1.76183,-0.90689,2.25013,-0.62681
-3.47089,0.67705,-1.32764,-1.76234,-0.90670,2.25004,-0.62668
-3.47196,0.67719,-1.32725,-1.76284,-0.90651,2.24995,-0.62654
-3.47302,0.67728,-1.32699,-1.76315,-0.90640,2.24989,-0.62645
-3.47409,0.67748,-1.32646,-1.76377,-0.90618,2.24976,-0.62625
-3.47515,0.67769,-1.32594,-1.76438,-0.90596,2.24962,-0.62605
-3.47622,0.67789,-1.32543,-1.76499,-0.90575,2.24949,-0.62585
-3.47729,0.67809,-1.32492,-1.76558,-0.90554,2.24936,-0.62566
-3.47835,0.67829,-1.32443,-1.76616,-0.90534,2.24923,-0.62547
-3.47942,0.67849,-1.32394,-1.76674,-0.90513,2.24910,-0.62528
-3.48049,0.67868,-1.32346,-1.76730,-0.90493,2.24898,-0.62509
-3.48155,0.67887,-1.32299,-1.76785,-0.90473,2.24885,-0.62491
-3.48262,0.67905,-1.32253,-1.76840,-0.90454,2.24873,-0.62473
-3.48369,0.67924,-1.32207,-1.76893,-0.90435,2.24861,-0.62455
-3.48475,0.67942,-1.32163,-1.76946,-0.90416,2.24849,-0.62437
-3.48582,0.67960,-1.32119,-1.76997,-0.90397,2.24837,-0.62420
-3.48688,0.67977,-1.32076,-1.77048,-0.90378,2.24826,-0.62403
-3.48795,0.67995,-1.32033,-1.77098,-0.90360,2.24814,-0.62386
-3.48902,0.68012,-1.31992,-1.77147,-0.90342,2.24803,-0.62369
-3.49008,0.68029,-1.31951,-1.77196,-0.90324,2.24792,-0.62353
-3.49115,0.68043,-1.31917,-1.77235,-0.90310,2.24783,-0.62339
-3.49222,0.68068,-1.31865,-1.77292,-0.90290,2.24766,-0.62315
-3.49328,0.68092,-1.31813,-1.77349,-0.90271,2.24750,-0.62292
-3.49435,0.68116,-1.31762,-1.77404,-0.90252,2.24735,-0.62269
-3.49541,0.68140,-1.31712,-1.77459,-0.90233,2.24719,-0.62246
-3.49648,0.68163,-1.31663,-1.77513,-0.90214,2.24704,-0.62223
-3.49755,0.68186,-1.31615,-1.77565,-0.90196,2.24689,-0.62201
-3.49861,0.68209,-1.31568,-1.77617,-0.90178,2.24674,-0.62179
-3.49968,0.68231,-1.31521,-1.77668,-0.90160,2.24659,-0.62157
-3.50075,0.68253,-1.31475,-1.77718,-0.90142,2.24645,-0.62136
-3.50181,0.68275,-1.31430,-1.77768,-0.90125,2.24631,-0.62115
-3.50288,0.68296,-1.31386,-1.77816,-0.90107,2.24617,-0.62095
-3.50395,0.68318,-1.31343,-1.77864,-0.90090,2.24603,-0.62074
-3.50501,0.68338,-1.31300,-1.77911,-0.90074,2.24589,-0.62054
-3.50608,0.68359,-1.31258,-1.77957,-0.90057,2.24575,-0.62034
-3.50714,0.68379,-1.31217,-1.78002,-0.90041,2.24562,-0.62015
-3.50821,0.68391,-1.31194,-1.78026,-0.90032,2.24554,-0.62003
-3.50928,0.68428,-1.31129,-1.78091,-0.90012,2.24530,-0.61968
-3.51034,0.68464,-1.31064,-1.78154,-0.89992,2.24506,-0.61933
-3.51141,0.68500,-1.31000,-1.78216,-0.89973,2.24483,-0.61899
-3.51248,0.68536,-1.30938,-1.78276,-0.89953,2.24460,-0.61865
-3.51354,0.68571,-1.30877,-1.78336,-0.89934,2.24437,-0.61831
-3.51461,0.68605,-1.30816,-1.78395,-0.89915,2.24414,-0.61798
-3.51567,0.68639,-1.30757,-1.78453,-0.89896,2.24392,-0.61766
-3.51674,0.68673,-1.30699,-1.78510,-0.89878,2.24370,-0.61734
-3.51781,0.68706,-1.30642,-1.78566,-0.89860,2.24348,-0.61702
-3.51887,0.68738,-1.30585,-1.78621,-0.89842,2.24327,-0.61671
-3.51994,0.68771,-1.30530,-1.78675,-0.89824,2.24306,-0.61641
-3.52101,0.68802,-1.30476,-1.78728,-0.89806,2.24285,-0.61610
-3.52207,0.68833,-1.30423,-1.78780,-0.89789,2.24264,-0.61581
-3.52314,0.68864,-1.30370,-1.78832,-0.89772,2.24244,-0.61551
-3.52421,0.68894,-1.30319,-1.78882,-0.89755,2.24224,-0.61522
-3.52527,0.68924,-1.30268,-1.78932,-0.89738,2.24205,-0.61494
-3.52634,0.68953,-1.30219,-1.78981,-0.89722,2.24185,-0.61466
-3.52740,0.68982,-1.30170,-1.79029,-0.89705,2.24166,-0.61438
-3.52847,0.69011,-1.30122,-1.79076,-0.89689,2.24147,-0.61411
-3.52954,0.69039,-1.30075,-1.79122,-0.89673,2.24129,-0.61384
-3.53060,0.69067,-1.30028,-1.79168,-0.89657,2.24110,-0.61357
-3.53167,0.69094,-1.29983,-1.79213,-0.89642,2.24092,-0.61331
-3.53274,0.69121,-1.29938,-1.79257,-0.89627,2.24075,-0.61306
-3.53380,0.69147,-1.29894,-1.79300,-0.89611,2.24057,-0.61280
-3.53487,0.69174,-1.29851,-1.79343,-0.89596,2.24040,-0.61255
-3.53594,0.69199,-1.29809,-1.79385,-0.89582,2.24023,-0.61231
-3.53700,0.69225,-1.29767,-1.79426,-0.89567,2.24006,-0.61206
-3.53807,0.69250,-1.29726,-1.79467,-0.89553,2.23989,-0.61182
-3.53913,0.69255,-1.29717,-1.79476,-0.89550,2.23986,-0.61177
-3.54020,0.69286,-1.29666,-1.79524,-0.89534,2.23965,-0.61147
-3.54127,0.69317,-1.29617,-1.79571,-0.89518,2.23945,-0.61118
-3.54233,0.69347,-1.29568,-1.79618,-0.89502,2.23925,-0.61089
-3.54340,0.69377,-1.29520,-1.79664,-0.89487,2.23905,-0.61061
-3.54447,0.69406,-1.29473,-1.79709,-0.89472,2.23885,-0.61033
-3.54553,0.69435,-1.29427,-1.79753,-0.89456,2.23866,-0.61005
-3.54660,0.69464,-1.29381,-1.79797,-0.89442,2.23847,-0.60978
-3.54766,0.69492,-1.29337,-1.79839,-0.89427,2.23829,-0.60951
-3.54873,0.69520,-1.29293,-1.79882,-0.89412,2.23810,-0.60925
-3.54980,0.69547,-1.29250,-1.79923,-0.89398,2.23792,-0.60899
-3.55086,0.69574,-1.29208,-1.79964,-0.89384,2.23774,-0.60873
-3.55193,0.69600,-1.29166,-1.80004,-0.89370,2.23757,-0.60848
-3.55300,0.69626,-1.29125,-1.80043,-0.89356,2.23739,-0.60823
-3.55406,0.69634,-1.29113,-1.80054,-0.89353,2.23734,-0.60816
-3.55513,0.69686,-1.29037,-1.80118,-0.89334,2.23700,-0.60767
-3.55620,0.69738,-1.28962,-1.80182,-0.89316,2.23666,-0.60719
-3.55726,0.69788,-1.28889,-1.80244,-0.89299,2.23633,-0.60671
-3.55833,0.69838,-1.28816,-1.80305,-0.89281,2.23600,-0.60624
-3.55939,0.69887,-1.28745,-1.80366,-0.89263,2.23568,-0.60578
-3.56046,0.69935,-1.28675,-1.80425,-0.89246,2.23536,-0.60533
-3.56153,0.69983,-1.28607,-1.80483,-0.89229,2.23504,-0.60488
-3.56259,0.70030,-1.28539,-1.80541,-0.89212,2.23473,-0.60443
-3.56366,0.70077,-1.28473,-1.80597,-0.89195,2.23442,-0.60400
-3.56473,0.70122,-1.28408,-1.80653,-0.89179,2.23412,-0.60357
-3.56579,0.70167,-1.28344,-1.80707,-0.89163,2.23382,-0.60315
-3.56686,0.70212,-1.28281,-1.80761,-0.89146,2.23353,-0.60273
-3.56792,0.70255,-1.28220,-1.80813,-0.89130,2.23324,-0.60232
-3.56899,0.70298,-1.28159,-1.80865,-0.89115,2.23295,-0.60191
-3.57006,0.70341,-1.28099,-1.80916,-0.89099,2.23267,-0.60152
-3.57112,0.70383,-1.28041,-1.80966,-0.89083,2.23239,-0.60112
-3.57219,0.70424,-1.27983,-1.81015,-0.89068,2.23212,-0.60074
-3.57326,0.70464,-1.27927,-1.81064,-0.89053,2.23185,-0.60035
-3.57432,0.70504,-1.27871,-1.81111,-0.89038,2.23158,-0.59998
-3.57539,0.70544,-1.27817,-1.81158,-0.89023,2.23132,-0.59961
-3.57646,0.70583,-1.27763,-1.81204,-0.89009,2.23106,-0.59924
-3.57752,0.70621,-1.27711,-1.81249,-0.88994,2.23080,-0.59888
-3.57859,0.70659,-1.27659,-1.81294,-0.88980,2.23055,-0.59853
-3.57965,0.70696,-1.27608,-1.81337,-0.88966,2.23030,-0.59818
-3.58072,0.70733,-1.27558,-1.81380,-0.88952,2.23006,-0.59783
-3.58179,0.70769,-1.27509,-1.81423,-0.88938,2.22982,-0.59750
-3.58285,0.70804,-1.27461,-1.81464,-0.88924,2.22958,-0.59716
-3.58392,0.70839,-1.27413,-1.81505,-0.88911,2.22934,-0.59683
-3.58499,0.70874,-1.27367,-1.81545,-0.88897,2.22911,-0.59651
-3.58605,0.70908,-1.27321,-1.81585,-0.88884,2.22888,-0.59619
-3.58712,0.70941,-1.27276,-1.81624,-0.88871,2.22866,-0.59587
-3.58819,0.70974,-1.27232,-1.81662,-0.88858,2.22844,-0.59556
-3.58925,0.71007,-1.27189,-1.81700,-0.88845,2.22822,-0.59526
-3.59032,0.71039,-1.27146,-1.81737,-0.88833,2.22800,-0.59496
-3.59138,0.71070,-1.27104,-1.81773,-0.88820,2.22779,-0.59466
-3.59245,0.71101,-1.27063,-1.81809,-0.88808,2.22758,-0.59437
-3.59352,0.71132,-1.27022,-1.81844,-0.88796,2.22738,-0.59408
-3.59458,0.71152,-1.26996,-1.81866,-0.88788,2.22724,-0.59390
-3.59565,0.71198,-1.26936,-1.81915,-0.88774,2.22694,-0.59347
-3.59672,0.71243,-1.26877,-1.81963,-0.88760,2.22664,-0.59305
-3.59778,0.71287,-1.26819,-1.82010,-0.88745,2.22634,-0.59264
-3.59885,0.71331,-1.26762,-1.82057,-0.88732,2.22605,-0.59223
-3.59991,0.71374,-1.26706,-1.82102,-0.88718,2.22576,-0.59183
-3.60098,0.71416,-1.26651,-1.82147,-0.88704,2.22548,-0.59144
-3.60205,0.71458,-1.26597,-1.82191,-0.88691,2.22520,-0.59105
-3.60311,0.71499,-1.26544,-1.82235,-0.88677,2.22492,-0.59067
-3.60418,0.71540,-1.26491,-1.82277,-0.88664,2.22465,-0.59029
-3.60525,0.71580,-1.26440,-1.82319,-0.88651,2.22438,-0.58992
-3.60631,0.71619,-1.26390,-1.82361,-0.88638,2.22411,-0.58955
-3.60738,0.71658,-1.26340,-1.82401,-0.88625,2.22385,-0.58919
-3.60845,0.71696,-1.26291,-1.82441,-0.88613,2.22359,-0.58883
-3.60951,0.71734,-1.26243,-1.82480,-0.88600,2.22334,-0.58848
-3.61058,0.71771,-1.26196,-1.82519,-0.88588,2.22309,-0.58814
-3.61164,0.71808,-1.26150,-1.82557,-0.88576,2.22284,-0.58780
-3.61271,0.71844,-1.26105,-1.82594,-0.88564,2.22260,-0.58746
-3.61378,0.71879,-1.26060,-1.82631,-0.88552,2.22236,-0.58713
-3.61484,0.71914,-1.26016,-1.82667,-0.88540,2.22212,-0.58681
-3.61591,0.71949,-1.25973,-1.82702,-0.88528,2.22189,-0.58649
-3.61698,0.71983,-1.25931,-1.82737,-0.88516,2.22166,-0.58617
-3.61804,0.72016,-1.25890,-1.82772,-0.88505,2.22144,-0.58586
-3.61911,0.72049,-1.25849,-1.82805,-0.88494,2.22121,-0.58555
-3.62017,0.72081,-1.25809,-1.82839,-0.88482,2.22099,-0.58525
-3.62124,0.72103,-1.25782,-1.82860,-0.88475,2.22085,-0.58505
-3.62231,0.72154,-1.25718,-1.82910,-0.88462,2.22050,-0.58458
-3.62337,0.72205,-1.25654,-1.82959,-0.88448,2.22016,-0.58411
-3.62444,0.72255,-1.25592,-1.83007,-0.88435,2.21983,-0.58365
-3.62551,0.72304,-1.25531,-1.83055,-0.88421,2.21950,-0.58320
-3.62657,0.72353,-1.25471,-1.83101,-0.88408,2.21917,-0.58275
-3.62764,0.72400,-1.25411,-1.83147,-0.88395,2.21885,-0.58231
-3.62871,0.72448,-1.25353,-1.83192,-0.88382,2.21853,-0.58188
-3.62977,0.72494,-1.25296,-1.83236,-0.88370,2.21822,-0.58145
-3.63084,0.72540,-1.25240,-1.83280,-0.88357,2.21791,-0.58103
-3.63190,0.72585,-1.25185,-1.83323,-0.88344,2.21760,-0.58062
-3.63297,0.72629,-1.25131,-1.83365,-0.88332,2.21730,-0.58021
-3.63404,0.72673,-1.25078,-1.83406,-0.88320,2.21701,-0.57980
-3.63510,0.72716,-1.25025,-1.83447,-0.88308,2.21671,-0.57941
-3.63617,0.72759,-1.24974,-1.83487,-0.88295,2.21643,-0.57902
-3.63724,0.72801,-1.24924,-1.83527,-0.88284,2.21614,-0.57863
-3.63830,0.72842,-1.24874,-1.83566,-0.88272,2.21586,-0.57825
-3.63937,0.72883,-1.24825,-1.83604,-0.88260,2.21559,-0.57788
-3.64044,0.72923,-1.24777,-1.83641,-0.88249,2.21532,-0.57751
-3.64150,0.72962,-1.24730,-1.83678,-0.88237,2.21505,-0.57715
-3.64257,0.73001,-1.24684,-1.83714,-0.88226,2.21478,-0.57679
-3.64363,0.73040,-1.24639,-1.83750,-0.88215,2.21452,-0.57644
-3.64470,0.73077,-1.24594,-1.83785,-0.88203,2.21427,-0.57609
-3.64577,0.73115,-1.24550,-1.83820,-0.88192,2.21401,-0.57575
-3.64683,0.73151,-1.24507,-1.83853,-0.88182,2.21376,-0.57541
-3.64790,0.73187,-1.24465,-1.83887,-0.88171,2.21352,-0.57508
-3.64897,0.73223,-1.24423,-1.83920,-0.88160,2.21327,-0.57475
-3.65003,0.73258,-1.24382,-1.83952,-0.88149,2.21304,-0.57443
-3.65110,0.73293,-1.24342,-1.83984,-0.88139,2.21280,-0.57412
-3.65216,0.73327,-1.24303,-1.84015,-0.88129,2.21257,-0.57380
-3.65323,0.73334,-1.24294,-1.84021,-0.88127,2.21252,-0.57374
-3.65430,0.73373,-1.24250,-1.84055,-0.88116,2.21225,-0.57338
-3.65536,0.73411,-1.24207,-1.84088,-0.88106,2.21199,-0.57303
-3.65643,0.73449,-1.24164,-1.84120,-0.88096,2.21174,-0.57268
-3.65750,0.73486,-1.24122,-1.84152,-0.88086,2.21148,-0.57234
-3.65856,0.73523,-1.24080,-1.84183,-0.88076,2.21123,-0.57201
-3.65963,0.73559,-1.24040,-1.84214,-0.88066,2.21099,-0.57168
-3.66070,0.73594,-1.24000,-1.84245,-0.88056,2.21074,-0.57135
-3.66176,0.73629,-1.23961,-1.84274,-0.88047,2.21050,-0.57103
-3.66283,0.73641,-1.23948,-1.84284,-0.88044,2.21043,-0.57093
-3.66389,0.73685,-1.23899,-1.84320,-0.88034,2.21012,-0.57053
-3.66496,0.73729,-1.23850,-1.84355,-0.88024,2.20983,-0.57013
-3.66603,0.73772,-1.23803,-1.84389,-0.88014,2.20954,-0.56974
-3.66709,0.73814,-1.23756,-1.84423,-0.88004,2.20925,-0.56936
-3.66816,0.73855,-1.23710,-1.84456,-0.87994,2.20896,-0.56898
-3.66923,0.73897,-1.23665,-1.84489,-0.87985,2.20868,-0.56860
-3.67029,0.73937,-1.23620,-1.84521,-0.87975,2.20841,-0.56824
-3.67136,0.73977,-1.23576,-1.84553,-0.87966,2.20814,-0.56787
-3.67242,0.74016,-1.23534,-1.84584,-0.87956,2.20787,-0.56752
-3.67349,0.74055,-1.23491,-1.84615,-0.87947,2.20761,-0.56717
-3.67456,0.74093,-1.23450,-1.84645,-0.87938,2.20734,-0.56682
-3.67562,0.74130,-1.23409,-1.84675,-0.87929,2.20709,-0.56648
-3.67669,0.74167,-1.23369,-1.84704,-0.87920,2.20684,-0.56614
-3.67776,0.74204,-1.23330,-1.84733,-0.87911,2.20659,-0.56581
-3.67882,0.74240,-1.23291,-1.84761,-0.87902,2.20634,-0.56549
-3.67989,0.74277,-1.23251,-1.84791,-0.87893,2.20608,-0.56514
-3.68096,0.74314,-1.23211,-1.84820,-0.87884,2.20583,-0.56481
-3.68202,0.74351,-1.23172,-1.84849,-0.87875,2.20558,-0.56448
-3.68309,0.74379,-1.23140,-1.84871,-0.87868,2.20538,-0.56422
-3.68415,0.74416,-1.23101,-1.84900,-0.87859,2.20513,-0.56389
-3.68522,0.74453,-1.23061,-1.84929,-0.87850,2.20488,-0.56355
-3.68629,0.74500,-1.23008,-1.84968,-0.87840,2.20456,-0.56313
-3.68735,0.74546,-1.22956,-1.85006,-0.87830,2.20424,-0.56271
-3.68842,0.74592,-1.22904,-1.85044,-0.87819,2.20393,-0.56230
-3.68949,0.74637,-1.22854,-1.85081,-0.87809,2.20362,-0.56190
-3.69055,0.74681,-1.22804,-1.85117,-0.87799,2.20332,-0.56150
-3.69162,0.74724,-1.22756,-1.85153,-0.87789,2.20302,-0.56111
-3.69269,0.74767,-1.22708,-1.85188,-0.87779,2.20273,-0.56072
-3.69375,0.74810,-1.22661,-1.85222,-0.87770,2.20244,-0.56034
-3.69482,0.74851,-1.22615,-1.85256,-0.87760,2.20215,-0.55997
-3.69588,0.74892,-1.22569,-1.85290,-0.87751,2.20187,-0.55960
-3.69695,0.74933,-1.22525,-1.85322,-0.87741,2.20159,-0.55923
-3.69802,0.74973,-1.22481,-1.85355,-0.87732,2.20132,-0.55887
-3.69908,0.75012,-1.22438,-1.85386,-0.87722,2.20105,-0.55852
-3.70015,0.75051,-1.22395,-1.85418,-0.87713,2.20079,-0.55817
-3.70122,0.75089,-1.22354,-1.85448,-0.87704,2.20052,-0.55783
-3.70228,0.75126,-1.22313,-1.85479,-0.87695,2.20026,-0.55749
-3.70335,0.75163,-1.22273,-1.85508,-0.87686,2.20001,-0.55716
-3.70441,0.75200,-1.22233,-1.85538,-0.87677,2.19976,-0.55683
-3.70548,0.75227,-1.22204,-1.85559,-0.87671,2.19957,-0.55659
-3.70655,0.75282,-1.22144,-1.85600,-0.87661,2.19919,-0.55609
-3.70761,0.75337,-1.22085,-1.85639,-0.87652,2.19882,-0.55561
-3.70868,0.75390,-1.22028,-1.85679,-0.87642,2.19845,-0.55513
-3.70975,0.75443,-1.21971,-1.85717,-0.87633,2.19809,-0.55466
-3.71081,0.75496,-1.21916,-1.85755,-0.87624,2.19773,-0.55419
-3.71188,0.75547,-1.21861,-1.85792,-0.87615,2.19738,-0.55373
-3.71295,0.75598,-1.21807,-1.85829,-0.87606,2.19703,-0.55328
-3.71401,0.75648,-1.21754,-1.85865,-0.87597,2.19669,-0.55284
-3.71508,0.75697,-1.21702,-1.85900,-0.87588,2.19635,-0.55240
-3.71614,0.75745,-1.21651,-1.85935,-0.87579,2.19602,-0.55197
-3.71721,0.75793,-1.21601,-1.85970,-0.87570,2.19569,-0.55154
-3.71828,0.75840,-1.21552,-1.86003,-0.87561,2.19537,-0.55112
-3.71934,0.75887,-1.21504,-1.86037,-0.87552,2.19505,-0.55071
-3.72041,0.75932,-1.21456,-1.86069,-0.87544,2.19473,-0.55030
-3.72148,0.75977,-1.21410,-1.86101,-0.87535,2.19442,-0.54990
-3.72254,0.76022,-1.21364,-1.86133,-0.87527,2.19411,-0.54951
-3.72361,0.76065,-1.21319,-1.86164,-0.87518,2.19381,-0.54912
-3.72467,0.76108,-1.21274,-1.86194,-0.87510,2.19351,-0.54874
-3.72574,0.76151,-1.21231,-1.86224,-0.87502,2.19322,-0.54836
-3.72681,0.76193,-1.21188,-1.86254,-0.87493,2.19293,-0.54799
-3.72787,0.76234,-1.21146,-1.86283,-0.87485,2.19265,-0.54762
-3.72894,0.76275,-1.21105,-1.86312,-0.87477,2.19237,-0.54726
-3.73001,0.76315,-1.21064,-1.86340,-0.87469,2.19209,-0.54690
-3.73107,0.76354,-1.21024,-1.86368,-0.87461,2.19182,-0.54655
-3.73214,0.76393,-1.20985,-1.86395,-0.87453,2.19155,-0.54621
-3.73321,0.76431,-1.20946,-1.86422,-0.87445,2.19128,-0.54587
-3.73427,0.76451,-1.20927,-1.86434,-0.87442,2.19114,-0.54569
-3.73534,0.76535,-1.20844,-1.86482,-0.87435,2.19057,-0.54495
-3.73640,0.76618,-1.20763,-1.86528,-0.87428,2.19000,-0.54423
-3.73747,0.76700,-1.20683,-1.86574,-0.87421,2.18944,-0.54351
-3.73854,0.76780,-1.20604,-1.86619,-0.87414,2.18889,-0.54280
-3.73960,0.76860,-1.20527,-1.86664,-0.87406,2.18834,-0.54211
-3.74067,0.76938,-1.20451,-1.86707,-0.87399,2.18780,-0.54142
-3.74174,0.77015,-1.20377,-1.86750,-0.87392,2.18727,-0.54074
-3.74280,0.77092,-1.20304,-1.86792,-0.87385,2.18674,-0.54008
-3.74387,0.77167,-1.20232,-1.86834,-0.87378,2.18623,-0.53942
-3.74493,0.77241,-1.20161,-1.86875,-0.87371,2.18572,-0.53878
-3.74600,0.77314,-1.20092,-1.86915,-0.87364,2.18521,-0.53814
-3.74707,0.77385,-1.20024,-1.86954,-0.87357,2.18472,-0.53751
-3.74813,0.77456,-1.19957,-1.86993,-0.87350,2.18423,-0.53689
-3.74920,0.77526,-1.19891,-1.87031,-0.87343,2.18374,-0.53628
-3.75027,0.77595,-1.19827,-1.87069,-0.87336,2.18327,-0.53568
-3.75133,0.77663,-1.19763,-1.87105,-0.87329,2.18280,-0.53509
-3.75240,0.77730,-1.19701,-1.87142,-0.87322,2.18233,-0.53451
-3.75347,0.77796,-1.19639,-1.87177,-0.87315,2.18188,-0.53393
-3.75453,0.77861,-1.19579,-1.87212,-0.87308,2.18143,-0.53337
-3.75560,0.77925,-1.19520,-1.87247,-0.87301,2.18098,-0.53281
-3.75666,0.77988,-1.19462,-1.87281,-0.87294,2.18054,-0.53226
-3.75773,0.78050,-1.19405,-1.87314,-0.87287,2.18011,-0.53172
-3.75880,0.78111,-1.19348,-1.87347,-0.87281,2.17968,-0.53119
-3.75986,0.78172,-1.19293,-1.87379,-0.87274,2.17926,-0.53066
-3.76093,0.78231,-1.19239,-1.87411,-0.87267,2.17885,-0.53014
-3.76200,0.78290,-1.19186,-1.87442,-0.87260,2.17844,-0.52963
-3.76306,0.78348,-1.19133,-1.87473,-0.87254,2.17804,-0.52913
-3.76413,0.78405,-1.19082,-1.87503,-0.87247,2.17764,-0.52864
-3.76520,0.78461,-1.19031,-1.87533,-0.87240,2.17725,-0.52815
-3.76626,0.78516,-1.18982,-1.87563,-0.87233,2.17686,-0.52767
-3.76733,0.78571,-1.18933,-1.87591,-0.87227,2.17648,-0.52720
-3.76839,0.78624,-1.18885,-1.87620,-0.87220,2.17610,-0.52673
-3.76946,0.78677,-1.18838,-1.87648,-0.87214,2.17573,-0.52627
-3.77053,0.78730,-1.18791,-1.87675,-0.87207,2.17537,-0.52582
-3.77159,0.78781,-1.18746,-1.87702,-0.87200,2.17501,-0.52537
-3.77266,0.78832,-1.18701,-1.87729,-0.87194,2.17465,-0.52493
-3.77373,0.78882,-1.18657,-1.87755,-0.87187,2.17430,-0.52450
-3.77479,0.78931,-1.18614,-1.87780,-0.87181,2.17396,-0.52408
-3.77586,0.78979,-1.18572,-1.87806,-0.87175,2.17362,-0.52366
-3.77692,0.79027,-1.18530,-1.87831,-0.87168,2.17328,-0.52324
-3.77799,0.79074,-1.18489,-1.87855,-0.87162,2.17295,-0.52283
-3.77906,0.79120,-1.18448,-1.87879,-0.87156,2.17262,-0.52243
-3.78012,0.79166,-1.18409,-1.87903,-0.87149,2.17230,-0.52204
-3.78119,0.79211,-1.18370,-1.87926,-0.87143,2.17198,-0.52165
-3.78226,0.79255,-1.18332,-1.87949,-0.87137,2.17167,-0.52126
-3.78332,0.79299,-1.18294,-1.87972,-0.87131,2.17136,-0.52089
-3.78439,0.79342,-1.18257,-1.87994,-0.87124,2.17106,-0.52051
-3.78546,0.79385,-1.18221,-1.88016,-0.87118,2.17076,-0.52015
-3.78652,0.79398,-1.18209,-1.88023,-0.87116,2.17066,-0.52003
-3.78759,0.79451,-1.18163,-1.88050,-0.87110,2.17029,-0.51958
-3.78865,0.79503,-1.18117,-1.88077,-0.87104,2.16993,-0.51913
-3.78972,0.79554,-1.18072,-1.88104,-0.87098,2.16957,-0.51869
-3.79079,0.79604,-1.18028,-1.88129,-0.87092,2.16922,-0.51826
-3.79185,0.79654,-1.17985,-1.88155,-0.87086,2.16887,-0.51783
-3.79292,0.79703,-1.17942,-1.88180,-0.87080,2.16852,-0.51741
-3.79399,0.79751,-1.17900,-1.88205,-0.87074,2.16818,-0.51700
-3.79505,0.79799,-1.17859,-1.88229,-0.87069,2.16785,-0.51659
-3.79612,0.79845,-1.17819,-1.88253,-0.87063,2.16752,-0.51619
-3.79718,0.79891,-1.17779,-1.88277,-0.87057,2.16719,-0.51579
-3.79825,0.79937,-1.17740,-1.88300,-0.87051,2.16687,-0.51540
-3.79932,0.79982,-1.17702,-1.88323,-0.87045,2.16656,-0.51502
-3.80038,0.80026,-1.17664,-1.88345,-0.87039,2.16624,-0.51464
-3.80145,0.80069,-1.17627,-1.88367,-0.87034,2.16594,-0.51427
-3.80252,0.80112,-1.17591,-1.88389,-0.87028,2.16563,-0.51390
-3.80358,0.80128,-1.17577,-1.88397,-0.87026,2.16552,-0.51376
-3.80465,0.80198,-1.17513,-1.88434,-0.87020,2.16503,-0.51317
-3.80572,0.80267,-1.17450,-1.88470,-0.87015,2.16454,-0.51258
-3.80678,0.80336,-1.17388,-1.88505,-0.87009,2.16406,-0.51199
-3.80785,0.80403,-1.17327,-1.88540,-0.87003,2.16359,-0.51142
-3.80891,0.80470,-1.17267,-1.88575,-0.86997,2.16312,-0.51085
-3.80998,0.80536,-1.17208,-1.88609,-0.86992,2.16266,-0.51030
-3.81105,0.80600,-1.17151,-1.88642,-0.86986,2.16220,-0.50975
-3.81211,0.80664,-1.17094,-1.88675,-0.86980,2.16176,-0.50921
-3.81318,0.80727,-1.17038,-1.88707,-0.86974,2.16131,-0.50868
-3.81425,0.80789,-1.16983,-1.88739,-0.86969,2.16088,-0.50815
-3.81531,0.80850,-1.16929,-1.88770,-0.86963,2.16045,-0.50763
-3.81638,0.80910,-1.16877,-1.88800,-0.86957,2.16002,-0.50712
-3.81745,0.80969,-1.16824,-1.88831,-0.86952,2.15960,-0.50662
-3.81851,0.81028,-1.16773,-1.88860,-0.86946,2.15919,-0.50613
-3.81958,0.81085,-1.16723,-1.88889,-0.86940,2.15878,-0.50564
-3.82064,0.81142,-1.16674,-1.88918,-0.86935,2.15838,-0.50516
-3.82171,0.81198,-1.16625,-1.88946,-0.86929,2.15799,-0.50469
-3.82278,0.81253,-1.16578,-1.88974,-0.86923,2.15759,-0.50422
-3.82384,0.81308,-1.16531,-1.89002,-0.86918,2.15721,-0.50376
-3.82491,0.81361,-1.16485,-1.89028,-0.86912,2.15683,-0.50331
-3.82598,0.81414,-1.16439,-1.89055,-0.86906,2.15645,-0.50286
-3.82704,0.81466,-1.16395,-1.89081,-0.86901,2.15609,-0.50242
-3.82811,0.81517,-1.16351,-1.89107,-0.86895,2.15572,-0.50199
-3.82917,0.81568,-1.16308,-1.89132,-0.86890,2.15536,-0.50156
-3.83024,0.81618,-1.16266,-1.89157,-0.86884,2.15501,-0.50114
-3.83131,0.81667,-1.16224,-1.89181,-0.86879,2.15466,-0.50073
-3.83237,0.81715,-1.16184,-1.89205,-0.86873,2.15431,-0.50032
-3.83344,0.81763,-1.16143,-1.89229,-0.86868,2.15397,-0.49991
-3.83451,0.81810,-1.16104,-1.89252,-0.86862,2.15364,-0.49952
-3.83557,0.81856,-1.16065,-1.89275,-0.86857,2.15331,-0.49913
-3.83664,0.81902,-1.16027,-1.89298,-0.86851,2.15298,-0.49874
-3.83771,0.81947,-1.15990,-1.89320,-0.86846,2.15266,-0.49836
-3.83877,0.81991,-1.15953,-1.89342,-0.86841,2.15235,-0.49799
-3.83984,0.82031,-1.15920,-1.89362,-0.86836,2.15206,-0.49765
-3.84090,0.82082,-1.15875,-1.89389,-0.86830,2.15170,-0.49723
-3.84197,0.82132,-1.15831,-1.89416,-0.86824,2.15134,-0.49681
-3.84304,0.82181,-1.15788,-1.89443,-0.86818,2.15099,-0.49639
-3.84410,0.82230,-1.15745,-1.89469,-0.86812,2.15065,-0.49598
-3.84517,0.82278,-1.15704,-1.89495,-0.86806,2.15030,-0.49558
-3.84624,0.82325,-1.15662,-1.89521,-0.86801,2.14997,-0.49519
-3.84730,0.82372,-1.15622,-1.89546,-0.86795,2.14964,-0.49480
-3.84837,0.82418,-1.15583,-1.89570,-0.86789,2.14931,-0.49441
-3.84943,0.82463,-1.15544,-1.89595,-0.86783,2.14898,-0.49403
-3.85050,0.82507,-1.15505,-1.89618,-0.86778,2.14867,-0.49366
-3.85157,0.82551,-1.15468,-1.89642,-0.86772,2.14835,-0.49329
-3.85263,0.82597,-1.15428,-1.89666,-0.86766,2.14803,-0.49291
-3.85370,0.82663,-1.15368,-1.89703,-0.86760,2.14756,-0.49236
-3.85477,0.82728,-1.15309,-1.89739,-0.86754,2.14710,-0.49182
-3.85583,0.82792,-1.15250,-1.89775,-0.86748,2.14664,-0.49129
-3.85690,0.82855,-1.15193,-1.89810,-0.86742,2.14619,-0.49077
-3.85797,0.82917,-1.15137,-1.89845,-0.86737,2.14575,-0.49025
-3.85903,0.82978,-1.15081,-1.89878,-0.86731,2.14532,-0.48974
-3.86010,0.83039,-1.15027,-1.89912,-0.86725,2.14488,-0.48924
-3.86116,0.83098,-1.14974,-1.89945,-0.86719,2.14446,-0.48874
-3.86223,0.83157,-1.14921,-1.89977,-0.86713,2.14404,-0.48825
-3.86330,0.83215,-1.14869,-1.90009,-0.86707,2.14363,-0.48777
-3.86436,0.83272,-1.14819,-1.90040,-0.86701,2.14322,-0.48730
-3.86543,0.83329,-1.14769,-1.90071,-0.86696,2.14282,-0.48683
-3.86650,0.83384,-1.14720,-1.90101,-0.86690,2.14242,-0.48637
-3.86756,0.83439,-1.14672,-1.90131,-0.86684,2.14203,-0.48592
-3.86863,0.83493,-1.14624,-1.90160,-0.86678,2.14164,-0.48547
-3.86970,0.83546,-1.14578,-1.90189,-0.86673,2.14126,-0.48503
-3.87076,0.83599,-1.14532,-1.90217,-0.86667,2.14089,-0.48460
-3.87183,0.83650,-1.14487,-1.90245,-0.86661,2.14052,-0.48417
-3.87289,0.83701,-1.14443,-1.90272,-0.86656,2.14015,-0.48375
-3.87396,0.83751,-1.14399,-1.90299,-0.86650,2.13979,-0.48333
-3.87503,0.83801,-1.14357,-1.90326,-0.86644,2.13943,-0.48292
-3.87609,0.83850,-1.14315,-1.90352,-0.86639,2.13908,-0.48252
-3.87716,0.83898,-1.14273,-1.90378,-0.86633,2.13874,-0.48212
-3.87823,0.83945,-1.14233,-1.90403,-0.86628,2.13840,-0.48173
-3.87929,0.83992,-1.14193,-1.90428,-0.86622,2.13806,-0.48134
-3.88036,0.84038,-1.14154,-1.90452,-0.86617,2.13773,-0.48096
-3.88142,0.84084,-1.14115,-1.90476,-0.86611,2.13740,-0.48058
-3.88249,0.84128,-1.14077,-1.90500,-0.86606,2.13708,-0.48021
-3.88356,0.84173,-1.14040,-1.90523,-0.86600,2.13676,-0.47985
-3.88462,0.84182,-1.14032,-1.90528,-0.86599,2.13670,-0.47977
-3.88569,0.84229,-1.13992,-1.90553,-0.86594,2.13635,-0.47938
-3.88676,0.84276,-1.13952,-1.90578,-0.86589,2.13602,-0.47900
-3.88782,0.84322,-1.13913,-1.90602,-0.86583,2.13569,-0.47862
-3.88889,0.84367,-1.13875,-1.90626,-0.86578,2.13536,-0.47825
-3.88996,0.84412,-1.13837,-1.90650,-0.86573,2.13504,-0.47788
-3.89102,0.84458,-1.13798,-1.90674,-0.86567,2.13471,-0.47750
-3.89209,0.84516,-1.13746,-1.90706,-0.86562,2.13429,-0.47702
-3.89315,0.84574,-1.13695,-1.90737,-0.86557,2.13387,-0.47655
-3.89422,0.84631,-1.13645,-1.90767,-0.86552,2.13346,-0.47608
-3.89529,0.84688,-1.13596,-1.90798,-0.86547,2.13306,-0.47562
-3.89635,0.84743,-1.13548,-1.90827,-0.86542,2.13266,-0.47516
-3.89742,0.84798,-1.13500,-1.90856,-0.86536,2.13227,-0.47471
-3.89849,0.84852,-1.13454,-1.90885,-0.86531,2.13188,-0.47427
-3.89955,0.84905,-1.13408,-1.90913,-0.86526,2.13149,-0.47384
-3.90062,0.84958,-1.13363,-1.90941,-0.86521,2.13112,-0.47341
-3.90168,0.85010,-1.13318,-1.90968,-0.86516,2.13074,-0.47299
-3.90275,0.85061,-1.13275,-1.90995,-0.86511,2.13038,-0.47257
-3.90382,0.85111,-1.13232,-1.91022,-0.86506,2.13001,-0.47216
-3.90488,0.85160,-1.13190,-1.91048,-0.86501,2.12966,-0.47175
-3.90595,0.85209,-1.13148,-1.91073,-0.86496,2.12930,-0.47135
-3.90702,0.85258,-1.13107,-1.91098,-0.86491,2.12896,-0.47096
-3.90808,0.85305,-1.13067,-1.91123,-0.86486,2.12861,-0.47057
-3.90915,0.85352,-1.13028,-1.91147,-0.86481,2.12827,-0.47019
-3.91022,0.85398,-1.12989,-1.91171,-0.86476,2.12794,-0.46981
-3.91128,0.85444,-1.12951,-1.91195,-0.86471,2.12761,-0.46944
-3.91235,0.85488,-1.12914,-1.91218,-0.86466,2.12729,-0.46908
-3.91341,0.85504,-1.12901,-1.91226,-0.86464,2.12718,-0.46895
-3.91448,0.85567,-1.12850,-1.91254,-0.86461,2.12672,-0.46844
-3.91555,0.85629,-1.12799,-1.91282,-0.86458,2.12628,-0.46794
-3.91661,0.85690,-1.12749,-1.91310,-0.86454,2.12584,-0.46744
-3.91768,0.85750,-1.12700,-1.91337,-0.86451,2.12540,-0.46695
-3.91875,0.85810,-1.12652,-1.91363,-0.86448,2.12497,-0.46647
-3.91981,0.85869,-1.12604,-1.91389,-0.86444,2.12455,-0.46599
-3.92088,0.85927,-1.12558,-1.91415,-0.86441,2.12413,-0.46553
-3.92194,0.85984,-1.12512,-1.91440,-0.86437,2.12372,-0.46506
-3.92301,0.86040,-1.12467,-1.91465,-0.86434,2.12331,-0.46461
-3.92408,0.86095,-1.12422,-1.91490,-0.86430,2.12291,-0.46416
-3.92514,0.86150,-1.12379,-1.91514,-0.86427,2.12252,-0.46372
-3.92621,0.86204,-1.12336,-1.91538,-0.86423,2.12213,-0.46328
-3.92728,0.86257,-1.12294,-1.91561,-0.86420,2.12174,-0.46285
-3.92834,0.86309,-1.12253,-1.91584,-0.86416,2.12136,-0.46243
-3.92941,0.86361,-1.12212,-1.91607,-0.86413,2.12099,-0.46201
-3.93048,0.86412,-1.12172,-1.91629,-0.86409,2.12062,-0.46160
-3.93154,0.86462,-1.12133,-1.91651,-0.86405,2.12026,-0.46120
-3.93261,0.86512,-1.12094,-1.91673,-0.86402,2.11990,-0.46080
-3.93367,0.86560,-1.12056,-1.91694,-0.86398,2.11954,-0.46040
-3.93474,0.86608,-1.12019,-1.91715,-0.86395,2.11919,-0.46002
-3.93581,0.86656,-1.11982,-1.91736,-0.86391,2.11885,-0.45963
-3.93687,0.86703,-1.11946,-1.91756,-0.86388,2.11851,-0.45926
-3.93794,0.86709,-1.11941,-1.91758,-0.86387,2.11846,-0.45920
-3.93901,0.86776,-1.11892,-1.91781,-0.86387,2.11798,-0.45867
-3.94007,0.86842,-1.11843,-1.91804,-0.86386,2.11751,-0.45814
-3.94114,0.86906,-1.11795,-1.91826,-0.86385,2.11704,-0.45762
-3.94221,0.86970,-1.11748,-1.91848,-0.86383,2.11658,-0.45711
-3.94327,0.87033,-1.11702,-1.91869,-0.86382,2.11612,-0.45661
-3.94434,0.87095,-1.11657,-1.91890,-0.86381,2.11567,-0.45611
-3.94540,0.87157,-1.11612,-1.91911,-0.86380,2.11523,-0.45562
-3.94647,0.87217,-1.11568,-1.91932,-0.86378,2.11479,-0.45514
-3.94754,0.87276,-1.11525,-1.91952,-0.86377,2.11436,-0.45466
-3.94860,0.87335,-1.11483,-1.91972,-0.86376,2.11393,-0.45419
-3.94967,0.87393,-1.11441,-1.91991,-0.86374,2.11352,-0.45373
-3.95074,0.87450,-1.11400,-1.92011,-0.86373,2.11310,-0.45327
-3.95180,0.87506,-1.11360,-1.92030,-0.86371,2.11269,-0.45282
-3.95287,0.87561,-1.11320,-1.92048,-0.86369,2.11229,-0.45238
-3.95393,0.87616,-1.11281,-1.92067,-0.86368,2.11189,-0.45195
-3.95500,0.87670,-1.11243,-1.92085,-0.86366,2.11150,-0.45152
-3.95607,0.87723,-1.11205,-1.92103,-0.86364,2.11112,-0.45109
-3.95713,0.87775,-1.11168,-1.92120,-0.86363,2.11073,-0.45068
-3.95820,0.87827,-1.11132,-1.92138,-0.86361,2.11036,-0.45026
-3.95927,0.87878,-1.11096,-1.92155,-0.86359,2.10999,-0.44986
-3.96033,0.87928,-1.11061,-1.92171,-0.86357,2.10962,-0.44946
-3.96140,0.87977,-1.11027,-1.92188,-0.86355,2.10926,-0.44907
-3.96247,0.88018,-1.10998,-1.92201,-0.86354,2.10897,-0.44874
-3.96353,0.88080,-1.10956,-1.92218,-0.86354,2.10851,-0.44824
-3.96460,0.88142,-1.10914,-1.92235,-0.86354,2.10806,-0.44775
-3.96566,0.88203,-1.10873,-1.92252,-0.86354,2.10762,-0.44727
-3.96673,0.88263,-1.10832,-1.92268,-0.86354,2.10718,-0.44679
-3.96780,0.88323,-1.10792,-1.92284,-0.86354,2.10675,-0.44632
-3.96886,0.88381,-1.10753,-1.92300,-0.86354,2.10632,-0.44586
-3.96993,0.88439,-1.10714,-1.92316,-0.86354,2.10590,-0.44540
-3.97100,0.88496,-1.10676,-1.92332,-0.86354,2.10549,-0.44495
-3.97206,0.88552,-1.10639,-1.92347,-0.86353,2.10508,-0.44451
-3.97313,0.88607,-1.10603,-1.92362,-0.86353,2.10467,-0.44407
-3.97419,0.88661,-1.10567,-1.92377,-0.86353,2.10428,-0.44364
-3.97526,0.88715,-1.10531,-1.92391,-0.86352,2.10388,-0.44321
-3.97633,0.88768,-1.10496,-1.92406,-0.86352,2.10350,-0.44280
-3.97739,0.88820,-1.10462,-1.92420,-0.86351,2.10312,-0.44238
-3.97846,0.88871,-1.10429,-1.92434,-0.86350,2.10274,-0.44198
-3.97953,0.88922,-1.10396,-1.92447,-0.86350,2.10237,-0.44158
-3.98059,0.88958,-1.10372,-1.92457,-0.86349,2.10210,-0.44129
-3.98166,0.89020,-1.10333,-1.92470,-0.86351,2.10166,-0.44081
-3.98273,0.89080,-1.10295,-1.92483,-0.86352,2.10121,-0.44033
-3.98379,0.89140,-1.10258,-1.92495,-0.86353,2.10078,-0.43986
-3.98486,0.89199,-1.10221,-1.92508,-0.86354,2.10035,-0.43940
-3.98592,0.89257,-1.10185,-1.92520,-0.86355,2.09993,-0.43894
-3.98699,0.89314,-1.10150,-1.92532,-0.86356,2.09951,-0.43849
-3.98806,0.89370,-1.10115,-1.92544,-0.86357,2.09909,-0.43805
-3.98912,0.89426,-1.10081,-1.92556,-0.86358,2.09869,-0.43761
-3.99019,0.89481,-1.10047,-1.92567,-0.86359,2.09829,-0.43718
-3.99126,0.89535,-1.10014,-1.92579,-0.86359,2.09789,-0.43676
-3.99232,0.89588,-1.09981,-1.92590,-0.86360,2.09750,-0.43634
-3.99339,0.89640,-1.09949,-1.92601,-0.86360,2.09712,-0.43593
-3.99446,0.89692,-1.09918,-1.92612,-0.86361,2.09674,-0.43552
-3.99552,0.89730,-1.09895,-1.92619,-0.86362,2.09646,-0.43522
-3.99659,0.89805,-1.09853,-1.92626,-0.86367,2.09591,-0.43464
-3.99765,0.89879,-1.09812,-1.92633,-0.86373,2.09537,-0.43406
-3.99872,0.89952,-1.09772,-1.92640,-0.86378,2.09484,-0.43349
-3.99979,0.90024,-1.09732,-1.92647,-0.86383,2.09431,-0.43293
-4.00085,0.90095,-1.09693,-1.92653,-0.86388,2.09379,-0.43237
-4.00192,0.90165,-1.09655,-1.92660,-0.86393,2.09328,-0.43183
-4.00299,0.90234,-1.09617,-1.92666,-0.86398,2.09278,-0.43129
-4.00405,0.90302,-1.09580,-1.92673,-0.86402,2.09228,-0.43076
-4.00512,0.90369,-1.09544,-1.92679,-0.86407,2.09179,-0.43024
-4.00618,0.90435,-1.09508,-1.92686,-0.86411,2.09131,-0.42973
-4.00725,0.90500,-1.09473,-1.92692,-0.86415,2.09083,-0.42922
-4.00832,0.90564,-1.09438,-1.92698,-0.86419,2.09036,-0.42872
-4.00938,0.90628,-1.09404,-1.92704,-0.86423,2.08989,-0.42823
-4.01045,0.90690,-1.09371,-1.92710,-0.86427,2.08944,-0.42775
-4.01152,0.90751,-1.09338,-1.92716,-0.86430,2.08898,-0.42727
-4.01258,0.90812,-1.09305,-1.92722,-0.86434,2.08854,-0.42680
-4.01365,0.90872,-1.09274,-1.92728,-0.86437,2.08810,-0.42634
-4.01472,0.90930,-1.09242,-1.92734,-0.86440,2.08767,-0.42588
-4.01578,0.90988,-1.09211,-1.92739,-0.86443,2.08724,-0.42543
-4.01685,0.91046,-1.09181,-1.92745,-0.86446,2.08682,-0.42499
-4.01791,0.91102,-1.09152,-1.92751,-0.86449,2.08640,-0.42455
-4.01898,0.91158,-1.09122,-1.92756,-0.86452,2.08599,-0.42412
-4.02005,0.91212,-1.09094,-1.92762,-0.86455,2.08559,-0.42370
-4.02111,0.91266,-1.09065,-1.92767,-0.86457,2.08519,-0.42328
-4.02218,0.91319,-1.09037,-1.92772,-0.86460,2.08480,-0.42287
-4.02325,0.91336,-1.09029,-1.92774,-0.86461,2.08467,-0.42273
-4.02431,0.91401,-1.08997,-1.92775,-0.86466,2.08420,-0.42223
-4.02538,0.91466,-1.08966,-1.92777,-0.86472,2.08372,-0.42174
-4.02644,0.91529,-1.08935,-1.92779,-0.86477,2.08326,-0.42125
-4.02751,0.91591,-1.08905,-1.92781,-0.86482,2.08280,-0.42077
-4.02858,0.91652,-1.08875,-1.92783,-0.86487,2.08235,-0.42030
-4.02964,0.91713,-1.08846,-1.92785,-0.86492,2.08190,-0.41983
-4.03071,0.91772,-1.08817,-1.92787,-0.86496,2.08146,-0.41937
-4.03178,0.91831,-1.08789,-1.92789,-0.86501,2.08103,-0.41892
-4.03284,0.91889,-1.08761,-1.92791,-0.86505,2.08060,-0.41848
-4.03391,0.91946,-1.08734,-1.92793,-0.86509,2.08018,-0.41804
-4.03498,0.92002,-1.08707,-1.92795,-0.86513,2.07977,-0.41760
-4.03604,0.92058,-1.08681,-1.92797,-0.86517,2.07936,-0.41718
-4.03711,0.92112,-1.08655,-1.92799,-0.86521,2.07895,-0.41676
-4.03817,0.92166,-1.08629,-1.92801,-0.86525,2.07855,-0.41634
-4.03924,0.92183,-1.08621,-1.92801,-0.86526,2.07843,-0.41621
-4.04031,0.92246,-1.08592,-1.92801,-0.86532,2.07796,-0.41573
-4.04137,0.92308,-1.08563,-1.92802,-0.86538,2.07750,-0.41526
-4.04244,0.92369,-1.08535,-1.92802,-0.86543,2.07705,-0.41479
-4.04351,0.92429,-1.08507,-1.92802,-0.86549,2.07661,-0.41433
-4.04457,0.92489,-1.08479,-1.92803,-0.86554,2.07617,-0.41387
-4.04564,0.92547,-1.08452,-1.92803,-0.86559,2.07574,-0.41342
-4.04671,0.92605,-1.08426,-1.92804,-0.86564,2.07531,-0.41298
-4.04777,0.92662,-1.08400,-1.92804,-0.86569,2.07489,-0.41255
-4.04884,0.92718,-1.08374,-1.92805,-0.86573,2.07447,-0.41212
-4.04990,0.92773,-1.08349,-1.92806,-0.86578,2.07406,-0.41170
-4.05097,0.92827,-1.08324,-1.92806,-0.86582,2.07366,-0.41128
-4.05204,0.92868,-1.08306,-1.92806,-0.86586,2.07336,-0.41097
-4.05310,0.92947,-1.08271,-1.92802,-0.86596,2.07277,-0.41037
-4.05417,0.93026,-1.08237,-1.92797,-0.86606,2.07219,-0.40977
-4.05524,0.93104,-1.08203,-1.92793,-0.86616,2.07162,-0.40918
-4.05630,0.93180,-1.08170,-1.92789,-0.86626,2.07106,-0.40860
-4.05737,0.93256,-1.08138,-1.92785,-0.86635,2.07050,-0.40802
-4.05843,0.93330,-1.08106,-1.92781,-0.86644,2.06995,-0.40746
-4.05950,0.93403,-1.08074,-1.92778,-0.86653,2.06941,-0.40691
-4.06057,0.93475,-1.08043,-1.92774,-0.86662,2.06888,-0.40636
-4.06163,0.93547,-1.08013,-1.92770,-0.86671,2.06835,-0.40582
-4.06270,0.93617,-1.07983,-1.92767,-0.86679,2.06783,-0.40529
-4.06377,0.93686,-1.07954,-1.92763,-0.86687,2.06732,-0.40476
-4.06483,0.93754,-1.07925,-1.92760,-0.86695,2.06681,-0.40425
-4.06590,0.93821,-1.07896,-1.92757,-0.86703,2.06631,-0.40374
-4.06697,0.93887,-1.07869,-1.92754,-0.86710,2.06582,-0.40324
-4.06803,0.93952,-1.07841,-1.92751,-0.86717,2.06534,-0.40275
-4.06910,0.94017,-1.07814,-1.92748,-0.86725,2.06486,-0.40226
-4.07016,0.94080,-1.07787,-1.92745,-0.86732,2.06439,-0.40178
-4.07123,0.94143,-1.07761,-1.92743,-0.86738,2.06393,-0.40131
-4.07230,0.94204,-1.07736,-1.92740,-0.86745,2.06347,-0.40084
-4.07336,0.94265,-1.07710,-1.92738,-0.86751,2.06302,-0.40039
-4.07443,0.94325,-1.07685,-1.92735,-0.86758,2.06257,-0.39994
-4.07550,0.94384,-1.07661,-1.92733,-0.86764,2.06213,-0.39949
-4.07656,0.94442,-1.07637,-1.92731,-0.86770,2.06170,-0.39905
-4.07763,0.94499,-1.07613,-1.92729,-0.86776,2.06127,-0.39862
-4.07869,0.94555,-1.07590,-1.92726,-0.86781,2.06085,-0.39820
-4.07976,0.94611,-1.07567,-1.92724,-0.86787,2.06044,-0.39778
-4.08083,0.94666,-1.07544,-1.92722,-0.86792,2.06003,-0.39736
-4.08189,0.94683,-1.07537,-1.92722,-0.86794,2.05990,-0.39723
-4.08296,0.94747,-1.07511,-1.92718,-0.86802,2.05942,-0.39675
-4.08403,0.94810,-1.07485,-1.92715,-0.86809,2.05895,-0.39628
-4.08509,0.94873,-1.07460,-1.92711,-0.86816,2.05849,-0.39581
-4.08616,0.94934,-1.07435,-1.92708,-0.86823,2.05803,-0.39535
-4.08723,0.94994,-1.07411,-1.92704,-0.86830,2.05758,-0.39489
-4.08829,0.95054,-1.07387,-1.92701,-0.86837,2.05713,-0.39445
-4.08936,0.95113,-1.07363,-1.92698,-0.86843,2.05669,-0.39401
-4.09042,0.95171,-1.07340,-1.92695,-0.86849,2.05626,-0.39357
-4.09149,0.95228,-1.07317,-1.92692,-0.86856,2.05584,-0.39315
-4.09256,0.95284,-1.07294,-1.92690,-0.86862,2.05542,-0.39272
-4.09362,0.95339,-1.07272,-1.92687,-0.86867,2.05500,-0.39231
-4.09469,0.95384,-1.07254,-1.92685,-0.86872,2.05467,-0.39197
-4.09576,0.95445,-1.07230,-1.92681,-0.86880,2.05421,-0.39152
-4.09682,0.95506,-1.07206,-1.92677,-0.86887,2.05376,-0.39106
-4.09789,0.95565,-1.07182,-1.92673,-0.86894,2.05331,-0.39062
-4.09896,0.95624,-1.07159,-1.92669,-0.86901,2.05287,-0.39018
-4.10002,0.95682,-1.07137,-1.92665,-0.86907,2.05244,-0.38975
-4.10109,0.95739,-1.07114,-1.92662,-0.86914,2.05201,-0.38932
-4.10215,0.95796,-1.07092,-1.92658,-0.86920,2.05159,-0.38890
-4.10322,0.95851,-1.07070,-1.92655,-0.86926,2.05118,-0.38849
-4.10429,0.95885,-1.07057,-1.92653,-0.86930,2.05092,-0.38824
-4.10535,0.95948,-1.07035,-1.92645,-0.86939,2.05045,-0.38777
-4.10642,0.96009,-1.07013,-1.92638,-0.86947,2.04999,-0.38731
-4.10749,0.96071,-1.06991,-1.92631,-0.86955,2.04953,-0.38685
-4.10855,0.96131,-1.06969,-1.92625,-0.86964,2.04908,-0.38641
-4.10962,0.96190,-1.06948,-1.92618,-0.86971,2.04864,-0.38597
-4.11068,0.96248,-1.06927,-1.92611,-0.86979,2.04820,-0.38553
-4.11175,0.96306,-1.06907,-1.92605,-0.86987,2.04777,-0.38510
-4.11282,0.96363,-1.06886,-1.92599,-0.86994,2.04735,-0.38468
-4.11388,0.96419,-1.06866,-1.92593,-0.87001,2.04693,-0.38427
-4.11495,0.96474,-1.06847,-1.92587,-0.87008,2.04651,-0.38386
-4.11602,0.96491,-1.06841,-1.92585,-0.87010,2.04638,-0.38373
-4.11708,0.96555,-1.06820,-1.92574,-0.87021,2.04590,-0.38325
-4.11815,0.96619,-1.06800,-1.92563,-0.87030,2.04543,-0.38278
-4.11922,0.96681,-1.06780,-1.92553,-0.87040,2.04496,-0.38232
-4.12028,0.96742,-1.06760,-1.92543,-0.87049,2.04450,-0.38187
-4.12135,0.96803,-1.06741,-1.92533,-0.87058,2.04405,-0.38142
-4.12241,0.96862,-1.06722,-1.92523,-0.87067,2.04360,-0.38098
-4.12348,0.96921,-1.06703,-1.92514,-0.87076,2.04316,-0.38054
-4.12455,0.96979,-1.06685,-1.92505,-0.87085,2.04273,-0.38012
-4.12561,0.97036,-1.06666,-1.92495,-0.87093,2.04230,-0.37969
-4.12668,0.97093,-1.06648,-1.92487,-0.87101,2.04187,-0.37928
-4.12775,0.97148,-1.06631,-1.92478,-0.87109,2.04146,-0.37887
-4.12881,0.97198,-1.06615,-1.92470,-0.87117,2.04108,-0.37850
-4.12988,0.97261,-1.06597,-1.92457,-0.87127,2.04061,-0.37804
-4.13094,0.97322,-1.06578,-1.92445,-0.87137,2.04015,-0.37758
-4.13201,0.97383,-1.06560,-1.92433,-0.87147,2.03969,-0.37714
-4.13308,0.97443,-1.06543,-1.92421,-0.87157,2.03924,-0.37669
-4.13414,0.97502,-1.06525,-1.92410,-0.87166,2.03880,-0.37626
-4.13521,0.97561,-1.06508,-1.92399,-0.87176,2.03836,-0.37583
-4.13628,0.97618,-1.06492,-1.92388,-0.87185,2.03793,-0.37541
-4.13734,0.97674,-1.06475,-1.92377,-0.87194,2.03750,-0.37499
-4.13841,0.97730,-1.06459,-1.92366,-0.87203,2.03708,-0.37458
-4.13948,0.97785,-1.06443,-1.92356,-0.87211,2.03667,-0.37418
-4.14054,0.97808,-1.06436,-1.92351,-0.87215,2.03650,-0.37402
-4.14161,0.97869,-1.06420,-1.92337,-0.87226,2.03604,-0.37356
-4.14267,0.97930,-1.06404,-1.92322,-0.87236,2.03558,-0.37312
-4.14374,0.97990,-1.06388,-1.92309,-0.87247,2.03513,-0.37268
-4.14481,0.98049,-1.06372,-1.92295,-0.87257,2.03469,-0.37225
-4.14587,0.98107,-1.06357,-1.92281,-0.87267,2.03425,-0.37182
-4.14694,0.98165,-1.06341,-1.92268,-0.87277,2.03382,-0.37140
-4.14801,0.98221,-1.06326,-1.92255,-0.87287,2.03339,-0.37099
-4.14907,0.98277,-1.06312,-1.92243,-0.87296,2.03297,-0.37058
-4.15014,0.98332,-1.06297,-1.92230,-0.87305,2.03256,-0.37018
-4.15120,0.98375,-1.06286,-1.92220,-0.87313,2.03223,-0.36986
-4.15227,0.98434,-1.06271,-1.92206,-0.87323,2.03178,-0.36943
-4.15334,0.98492,-1.06256,-1.92192,-0.87334,2.03135,-0.36901
-4.15440,0.98548,-1.06242,-1.92178,-0.87344,2.03092,-0.36859
-4.15547,0.98604,-1.06228,-1.92164,-0.87354,2.03050,-0.36818
-4.15654,0.98660,-1.06214,-1.92151,-0.87363,2.03008,-0.36778
-4.15760,0.98714,-1.06200,-1.92138,-0.87373,2.02967,-0.36738
-4.15867,0.98736,-1.06195,-1.92132,-0.87377,2.02951,-0.36722
-4.15974,0.98793,-1.06181,-1.92118,-0.87387,2.02908,-0.36681
-4.16080,0.98849,-1.06167,-1.92104,-0.87397,2.02866,-0.36640
-4.16187,0.98904,-1.06153,-1.92090,-0.87407,2.02824,-0.36600
-4.16293,0.98959,-1.06140,-1.92077,-0.87417,2.02783,-0.36560
-4.16400,0.98986,-1.06133,-1.92070,-0.87422,2.02762,-0.36540
-4.16507,0.99042,-1.06120,-1.92055,-0.87432,2.02720,-0.36500
-4.16613,0.99097,-1.06107,-1.92040,-0.87442,2.02678,-0.36459
-4.16720,0.99152,-1.06095,-1.92026,-0.87452,2.02637,-0.36420
-4.16827,0.99195,-1.06085,-1.92014,-0.87460,2.02604,-0.36388
-4.16933,0.99250,-1.06072,-1.92000,-0.87470,2.02562,-0.36348
-4.17040,0.99305,-1.06059,-1.91985,-0.87480,2.02521,-0.36309
-4.17147,0.99348,-1.06049,-1.91974,-0.87488,2.02488,-0.36277
-4.17253,0.99391,-1.06038,-1.91963,-0.87496,2.02456,-0.36246
-4.17360,0.99446,-1.06025,-1.91949,-0.87506,2.02414,-0.36206
-4.17466,0.99495,-1.06014,-1.91936,-0.87515,2.02378,-0.36171
-4.17573,0.99550,-1.06002,-1.91920,-0.87526,2.02336,-0.36131
-4.17680,0.99604,-1.05990,-1.91904,-0.87536,2.02295,-0.36091
-4.17786,0.99658,-1.05979,-1.91889,-0.87547,2.02254,-0.36052
-4.17893,0.99663,-1.05977,-1.91887,-0.87548,2.02250,-0.36049
-4.18000,0.99717,-1.05967,-1.91871,-0.87558,2.02210,-0.36010
-4.18106,0.99727,-1.05965,-1.91867,-0.87561,2.02201,-0.36002
-4.18213,0.99782,-1.05961,-1.91840,-0.87574,2.02160,-0.35962
-4.18319,0.99836,-1.05958,-1.91813,-0.87588,2.02119,-0.35923
-4.18426,0.99889,-1.05954,-1.91787,-0.87601,2.02079,-0.35885
-4.18533,0.99942,-1.05950,-1.91761,-0.87614,2.02039,-0.35847
-4.18639,0.99993,-1.05947,-1.91736,-0.87627,2.02000,-0.35810
-4.18746,1.00044,-1.05943,-1.91711,-0.87640,2.01962,-0.35773
-4.18853,1.00094,-1.05940,-1.91687,-0.87652,2.01924,-0.35737
-4.18959,1.00124,-1.05938,-1.91672,-0.87659,2.01901,-0.35715
-4.19066,1.00171,-1.05944,-1.91637,-0.87674,2.01865,-0.35681
-4.19173,1.00218,-1.05949,-1.91603,-0.87689,2.01830,-0.35648
-4.19279,1.00263,-1.05954,-1.91570,-0.87703,2.01795,-0.35614
-4.19386,1.00309,-1.05959,-1.91537,-0.87717,2.01760,-0.35582
-4.19492,1.00353,-1.05963,-1.91505,-0.87730,2.01727,-0.35550
-4.19599,1.00397,-1.05969,-1.91472,-0.87744,2.01694,-0.35518
-4.19706,1.00436,-1.05984,-1.91429,-0.87760,2.01664,-0.35490
-4.19812,1.00474,-1.05999,-1.91386,-0.87776,2.01634,-0.35462
-4.19919,1.00512,-1.06014,-1.91345,-0.87791,2.01605,-0.35435
-4.20026,1.00549,-1.06028,-1.91304,-0.87806,2.01577,-0.35408
-4.20132,1.00586,-1.06042,-1.91264,-0.87821,2.01549,-0.35381
-4.20239,1.00622,-1.06056,-1.91225,-0.87835,2.01521,-0.35355
-4.20345,1.00646,-1.06067,-1.91196,-0.87845,2.01503,-0.35338
-4.20452,1.00672,-1.06098,-1.91139,-0.87863,2.01482,-0.35319
-4.20559,1.00698,-1.06128,-1.91084,-0.87880,2.01463,-0.35300
-4.20665,1.00724,-1.06157,-1.91029,-0.87897,2.01443,-0.35282
-4.20772,1.00748,-1.06186,-1.90976,-0.87914,2.01424,-0.35264
-4.20879,1.00773,-1.06215,-1.90923,-0.87931,2.01405,-0.35246
-4.20985,1.00797,-1.06243,-1.90871,-0.87947,2.01386,-0.35228
-4.21092,1.00821,-1.06270,-1.90820,-0.87963,2.01368,-0.35211
-4.21199,1.00844,-1.06297,-1.90770,-0.87978,2.01350,-0.35194
-4.21305,1.00867,-1.06324,-1.90721,-0.87994,2.01332,-0.35178
-4.21412,1.00889,-1.06350,-1.90673,-0.88009,2.01314,-0.35161
-4.21518,1.00911,-1.06375,-1.90626,-0.88024,2.01297,-0.35145
-4.21625,1.00933,-1.06400,-1.90579,-0.88039,2.01280,-0.35130
-4.21732,1.00940,-1.06412,-1.90559,-0.88045,2.01275,-0.35125
-4.21838,1.00945,-1.06461,-1.90491,-0.88063,2.01271,-0.35121
-4.21945,1.00949,-1.06509,-1.90424,-0.88080,2.01267,-0.35117
-4.22052,1.00954,-1.06555,-1.90358,-0.88098,2.01263,-0.35114
-4.22158,1.00958,-1.06601,-1.90293,-0.88115,2.01259,-0.35111
-4.22265,1.00962,-1.06647,-1.90230,-0.88132,2.01255,-0.35107
-4.22372,1.00966,-1.06691,-1.90167,-0.88148,2.01252,-0.35104
-4.22478,1.00970,-1.06735,-1.90106,-0.88164,2.01248,-0.35101
-4.22585,1.00974,-1.06777,-1.90046,-0.88181,2.01245,-0.35098
-4.22691,1.00977,-1.06819,-1.89986,-0.88196,2.01241,-0.35095
-4.22798,1.00981,-1.06861,-1.89928,-0.88212,2.01238,-0.35093
-4.22905,1.00984,-1.06901,-1.89871,-0.88228,2.01235,-0.35090
-4.23011,1.00988,-1.06941,-1.89814,-0.88243,2.01232,-0.35087
-4.23118,1.00991,-1.06980,-1.89759,-0.88258,2.01229,-0.35085
-4.23225,1.00994,-1.07019,-1.89705,-0.88273,2.01226,-0.35082
-4.23331,1.00997,-1.07057,-1.89651,-0.88287,2.01223,-0.35080
-4.23438,1.01000,-1.07094,-1.89599,-0.88302,2.01220,-0.35078
-4.23544,1.01003,-1.07130,-1.89547,-0.88316,2.01218,-0.35075
-4.23651,1.01006,-1.07166,-1.89496,-0.88330,2.01215,-0.35073
-4.23758,1.01007,-1.07199,-1.89451,-0.88342,2.01214,-0.35072
-4.23864,1.01003,-1.07244,-1.89391,-0.88357,2.01216,-0.35075
-4.23971,1.00999,-1.07288,-1.89333,-0.88373,2.01219,-0.35077
-4.24078,1.00994,-1.07331,-1.89276,-0.88387,2.01222,-0.35080
-4.24184,1.00990,-1.07374,-1.89220,-0.88402,2.01224,-0.35083
-4.24291,1.00986,-1.07416,-1.89164,-0.88416,2.01227,-0.35086
-4.24398,1.00982,-1.07457,-1.89110,-0.88431,2.01230,-0.35089
-4.24504,1.00977,-1.07498,-1.89056,-0.88445,2.01233,-0.35092
-4.24611,1.00973,-1.07538,-1.89004,-0.88459,2.01235,-0.35095
-4.24717,1.00969,-1.07577,-1.88952,-0.88472,2.01238,-0.35097
-4.24824,1.00965,-1.07615,-1.88901,-0.88486,2.01241,-0.35100
-4.24931,1.00960,-1.07651,-1.88855,-0.88498,2.01244,-0.35104
-4.25037,1.00939,-1.07709,-1.88787,-0.88513,2.01259,-0.35118
-4.25144,1.00918,-1.07766,-1.88721,-0.88529,2.01274,-0.35133
-4.25251,1.00898,-1.07822,-1.88656,-0.88544,2.01289,-0.35147
-4.25357,1.00878,-1.07877,-1.88591,-0.88559,2.01303,-0.35161
-4.25464,1.00859,-1.07931,-1.88528,-0.88574,2.01318,-0.35175
-4.25570,1.00839,-1.07984,-1.88466,-0.88588,2.01332,-0.35189
-4.25677,1.00820,-1.08037,-1.88405,-0.88603,2.01346,-0.35202
-4.25784,1.00801,-1.08088,-1.88345,-0.88617,2.01359,-0.35216
-4.25890,1.00782,-1.08138,-1.88286,-0.88631,2.01373,-0.35229
-4.25997,1.00764,-1.08188,-1.88228,-0.88645,2.01387,-0.35242
-4.26104,1.00746,-1.08236,-1.88171,-0.88659,2.01400,-0.35255
-4.26210,1.00728,-1.08284,-1.88115,-0.88672,2.01413,-0.35267
-4.26317,1.00710,-1.08331,-1.88060,-0.88686,2.01426,-0.35280
-4.26424,1.00693,-1.08377,-1.88006,-0.88699,2.01439,-0.35292
-4.26530,1.00675,-1.08422,-1.87952,-0.88712,2.01451,-0.35305
-4.26637,1.00658,-1.08467,-1.87900,-0.88725,2.01464,-0.35317
-4.26743,1.00642,-1.08511,-1.87848,-0.88738,2.01476,-0.35329
-4.26850,1.00625,-1.08554,-1.87798,-0.88751,2.01488,-0.35340
-4.26957,1.00609,-1.08596,-1.87748,-0.88763,2.01500,-0.35352
-4.27063,1.00592,-1.08637,-1.87699,-0.88775,2.01512,-0.35364
-4.27170,1.00577,-1.08675,-1.87655,-0.88786,2.01523,-0.35374
-4.27277,1.00554,-1.08723,-1.87601,-0.88799,2.01541,-0.35391
-4.27383,1.00530,-1.08770,-1.87549,-0.88811,2.01558,-0.35408
-4.27490,1.00508,-1.08817,-1.87497,-0.88823,2.01575,-0.35424
-4.27597,1.00485,-1.08862,-1.87446,-0.88835,2.01591,-0.35440
-4.27703,1.00463,-1.08907,-1.87396,-0.88847,2.01608,-0.35456
-4.27810,1.00441,-1.08951,-1.87347,-0.88859,2.01624,-0.35472
-4.27916,1.00419,-1.08995,-1.87299,-0.88871,2.01640,-0.35487
-4.28023,1.00398,-1.09037,-1.87251,-0.88882,2.01656,-0.35502
-4.28130,1.00377,-1.09079,-1.87204,-0.88894,2.01672,-0.35517
-4.28236,1.00373,-1.09084,-1.87199,-0.88895,2.01674,-0.35520
-4.28343,1.00338,-1.09137,-1.87146,-0.88905,2.01700,-0.35545
-4.28450,1.00303,-1.09190,-1.87094,-0.88916,2.01726,-0.35570
-4.28556,1.00268,-1.09241,-1.87042,-0.88927,2.01752,-0.35595
-4.28663,1.00234,-1.09291,-1.86992,-0.88937,2.01777,-0.35619
-4.28769,1.00201,-1.09341,-1.86942,-0.88947,2.01802,-0.35643
-4.28876,1.00168,-1.09390,-1.86893,-0.88958,2.01827,-0.35667
-4.28983,1.00135,-1.09438,-1.86845,-0.88968,2.01851,-0.35690
-4.29089,1.00103,-1.09485,-1.86797,-0.88978,2.01875,-0.35713
-4.29196,1.00072,-1.09531,-1.86751,-0.88988,2.01898,-0.35736
-4.29303,1.00040,-1.09576,-1.86705,-0.88998,2.01921,-0.35758
-4.29409,1.00010,-1.09621,-1.86660,-0.89008,2.01944,-0.35780
-4.29516,0.99980,-1.09665,-1.86615,-0.89017,2.01966,-0.35802
-4.29623,0.99950,-1.09708,-1.86572,-0.89027,2.01989,-0.35823
-4.29729,0.99920,-1.09751,-1.86529,-0.89037,2.02011,-0.35844
-4.29836,0.99910,-1.09764,-1.86516,-0.89039,2.02018,-0.35852
-4.29942,0.99869,-1.09815,-1.86468,-0.89048,2.02049,-0.35881
-4.30049,0.99828,-1.09866,-1.86422,-0.89057,2.02079,-0.35911
-4.30156,0.99787,-1.09915,-1.86377,-0.89065,2.02109,-0.35940
-4.30262,0.99748,-1.09964,-1.86332,-0.89074,2.02139,-0.35969
-4.30369,0.99708,-1.10011,-1.86288,-0.89082,2.02168,-0.35997
-4.30476,0.99670,-1.10058,-1.86244,-0.89091,2.02197,-0.36025
-4.30582,0.99632,-1.10105,-1.86201,-0.89099,2.02225,-0.36052
-4.30689,0.99594,-1.10150,-1.86159,-0.89107,2.02253,-0.36079
-4.30795,0.99557,-1.10195,-1.86118,-0.89116,2.02281,-0.36106
-4.30902,0.99521,-1.10238,-1.86077,-0.89124,2.02308,-0.36132
-4.31009,0.99485,-1.10282,-1.86037,-0.89132,2.02335,-0.36158
-4.31115,0.99450,-1.10324,-1.85998,-0.89140,2.02361,-0.36183
-4.31222,0.99421,-1.10358,-1.85966,-0.89146,2.02383,-0.36204
-4.31329,0.99373,-1.10410,-1.85923,-0.89153,2.02419,-0.36239
-4.31435,0.99326,-1.10460,-1.85880,-0.89161,2.02454,-0.36273
-4.31542,0.99279,-1.10510,-1.85837,-0.89168,2.02488,-0.36306
-4.31649,0.99234,-1.10559,-1.85796,-0.89175,2.02522,-0.36339
-4.31755,0.99189,-1.10607,-1.85755,-0.89182,2.02556,-0.36372
-4.31862,0.99144,-1.10654,-1.85714,-0.89189,2.02589,-0.36404
-4.31968,0.99101,-1.10700,-1.85675,-0.89196,2.02622,-0.36436
-4.32075,0.99058,-1.10746,-1.85635,-0.89203,2.02654,-0.36467
-4.32182,0.99015,-1.10791,-1.85597,-0.89210,2.02685,-0.36497
-4.32288,0.98974,-1.10835,-1.85559,-0.89217,2.02716,-0.36528
-4.32395,0.98933,-1.10878,-1.85522,-0.89224,2.02747,-0.36557
-4.32502,0.98892,-1.10921,-1.85485,-0.89231,2.02777,-0.36587
-4.32608,0.98852,-1.10963,-1.85449,-0.89238,2.02807,-0.36616
-4.32715,0.98813,-1.11004,-1.85413,-0.89245,2.02837,-0.36644
-4.32821,0.98791,-1.11026,-1.85395,-0.89248,2.02853,-0.36660
-4.32928,0.98724,-1.11085,-1.85353,-0.89252,2.02903,-0.36709
-4.33035,0.98658,-1.11143,-1.85312,-0.89256,2.02952,-0.36757
-4.33141,0.98593,-1.11200,-1.85272,-0.89260,2.03000,-0.36804
-4.33248,0.98530,-1.11256,-1.85232,-0.89264,2.03048,-0.36850
-4.33355,0.98467,-1.11311,-1.85193,-0.89268,2.03094,-0.36895
-4.33461,0.98405,-1.11365,-1.85154,-0.89272,2.03140,-0.36940
-4.33568,0.98344,-1.11418,-1.85116,-0.89277,2.03186,-0.36985
-4.33675,0.98284,-1.11470,-1.85078,-0.89281,2.03230,-0.37028
-4.33781,0.98225,-1.11522,-1.85041,-0.89286,2.03274,-0.37071
-4.33888,0.98167,-1.11572,-1.85005,-0.89290,2.03318,-0.37113
-4.33994,0.98110,-1.11622,-1.84969,-0.89294,2.03360,-0.37155
-4.34101,0.98054,-1.11671,-1.84933,-0.89299,2.03402,-0.37196
-4.34208,0.97999,-1.11719,-1.84898,-0.89303,2.03444,-0.37236
-4.34314,0.97944,-1.11767,-1.84864,-0.89308,2.03484,-0.37276
-4.34421,0.97890,-1.11813,-1.84830,-0.89313,2.03524,-0.37316
-4.34528,0.97838,-1.11859,-1.84797,-0.89317,2.03564,-0.37354
-4.34634,0.97786,-1.11904,-1.84764,-0.89322,2.03603,-0.37392
-4.34741,0.97734,-1.11948,-1.84732,-0.89326,2.03641,-0.37430
-4.34848,0.97684,-1.11992,-1.84700,-0.89331,2.03679,-0.37467
-4.34954,0.97634,-1.12035,-1.84669,-0.89336,2.03716,-0.37503
-4.35061,0.97585,-1.12077,-1.84638,-0.89341,2.03752,-0.37539
-4.35167,0.97537,-1.12118,-1.84608,-0.89345,2.03788,-0.37574
-4.35274,0.97490,-1.12159,-1.84578,-0.89350,2.03824,-0.37609
-4.35381,0.97443,-1.12199,-1.84548,-0.89355,2.03858,-0.37644
-4.35487,0.97397,-1.12238,-1.84519,-0.89359,2.03893,-0.37677
-4.35594,0.97352,-1.12277,-1.84491,-0.89364,2.03927,-0.37711
-4.35701,0.97306,-1.12316,-1.84463,-0.89369,2.03961,-0.37744
-4.35807,0.97249,-1.12359,-1.84435,-0.89371,2.04004,-0.37786
-4.35914,0.97193,-1.12402,-1.84409,-0.89373,2.04045,-0.37827
-4.36020,0.97138,-1.12444,-1.84382,-0.89376,2.04087,-0.37868
-4.36127,0.97084,-1.12485,-1.84356,-0.89378,2.04127,-0.37908
-4.36234,0.97030,-1.12526,-1.84331,-0.89381,2.04167,-0.37947
-4.36340,0.96978,-1.12566,-1.84306,-0.89383,2.04206,-0.37986
-4.36447,0.96926,-1.12606,-1.84281,-0.89386,2.04245,-0.38025
-4.36554,0.96875,-1.12644,-1.84256,-0.89388,2.04283,-0.38062
-4.36660,0.96825,-1.12683,-1.84232,-0.89391,2.04321,-0.38099
-4.36767,0.96775,-1.12720,-1.84208,-0.89394,2.04358,-0.38136
-4.36874,0.96726,-1.12757,-1.84185,-0.89397,2.04394,-0.38172
-4.36980,0.96679,-1.12793,-1.84162,-0.89400,2.04430,-0.38207
-4.37087,0.96638,-1.12823,-1.84143,-0.89401,2.04460,-0.38237
-4.37193,0.96568,-1.12870,-1.84120,-0.89401,2.04512,-0.38289
-4.37300,0.96500,-1.12917,-1.84097,-0.89400,2.04563,-0.38340
-4.37407,0.96432,-1.12963,-1.84074,-0.89400,2.04613,-0.38390
-4.37513,0.96365,-1.13008,-1.84052,-0.89399,2.04663,-0.38439
-4.37620,0.96300,-1.13053,-1.84030,-0.89399,2.04712,-0.38487
-4.37727,0.96235,-1.13096,-1.84008,-0.89399,2.04760,-0.38535
-4.37833,0.96171,-1.13139,-1.83986,-0.89399,2.04807,-0.38582
-4.37940,0.96109,-1.13182,-1.83965,-0.89399,2.04854,-0.38629
-4.38046,0.96047,-1.13223,-1.83944,-0.89399,2.04900,-0.38674
-4.38153,0.95987,-1.13264,-1.83923,-0.89399,2.04945,-0.38719
-4.38260,0.95927,-1.13305,-1.83903,-0.89400,2.04989,-0.38764
-4.38366,0.95868,-1.13344,-1.83882,-0.89400,2.05033,-0.38807
-4.38473,0.95811,-1.13383,-1.83862,-0.89401,2.05076,-0.38850
-4.38580,0.95754,-1.13422,-1.83843,-0.89401,2.05118,-0.38893
-4.38686,0.95698,-1.13459,-1.83823,-0.89402,2.05160,-0.38934
-4.38793,0.95643,-1.13496,-1.83804,-0.89403,2.05201,-0.38975
-4.38900,0.95589,-1.13533,-1.83785,-0.89404,2.05241,-0.39016
-4.39006,0.95535,-1.13569,-1.83767,-0.89405,2.05281,-0.39056
-4.39113,0.95483,-1.13604,-1.83748,-0.89406,2.05320,-0.39095
-4.39219,0.95431,-1.13639,-1.83730,-0.89407,2.05359,-0.39133
-4.39326,0.95380,-1.13673,-1.83712,-0.89408,2.05397,-0.39172
-4.39433,0.95330,-1.13707,-1.83695,-0.89409,2.05434,-0.39209
-4.39539,0.95281,-1.13740,-1.83677,-0.89410,2.05471,-0.39246
-4.39646,0.95268,-1.13748,-1.83673,-0.89410,2.05481,-0.39255
-4.39753,0.95190,-1.13799,-1.83652,-0.89408,2.05538,-0.39314
-4.39859,0.95113,-1.13848,-1.83631,-0.89406,2.05595,-0.39371
-4.39966,0.95037,-1.13897,-1.83610,-0.89404,2.05651,-0.39427
-4.40073,0.94963,-1.13945,-1.83590,-0.89402,2.05707,-0.39483
-4.40179,0.94890,-1.13992,-1.83569,-0.89401,2.05761,-0.39538
-4.40286,0.94818,-1.14038,-1.83549,-0.89399,2.05814,-0.39592
-4.40392,0.94747,-1.14084,-1.83529,-0.89398,2.05867,-0.39645
-4.40499,0.94677,-1.14129,-1.83510,-0.89397,2.05918,-0.39697
-4.40606,0.94609,-1.14173,-1.83491,-0.89396,2.05969,-0.39748
-4.40712,0.94541,-1.14217,-1.83471,-0.89395,2.06019,-0.39799
-4.40819,0.94475,-1.14259,-1.83453,-0.89394,2.06069,-0.39849
-4.40926,0.94409,-1.14302,-1.83434,-0.89393,2.06117,-0.39898
-4.41032,0.94345,-1.14343,-1.83416,-0.89393,2.06165,-0.39947
-4.41139,0.94282,-1.14384,-1.83397,-0.89392,2.06212,-0.39994
-4.41245,0.94219,-1.14424,-1.83379,-0.89392,2.06258,-0.40041
-4.41352,0.94158,-1.14463,-1.83362,-0.89392,2.06304,-0.40087
-4.41459,0.94098,-1.14502,-1.83344,-0.89392,2.06348,-0.40133
-4.41565,0.94038,-1.14540,-1.83327,-0.89392,2.06393,-0.40178
-4.41672,0.93980,-1.14578,-1.83310,-0.89392,2.06436,-0.40222
-4.41779,0.93923,-1.14615,-1.83293,-0.89392,2.06479,-0.40265
-4.41885,0.93866,-1.14651,-1.83276,-0.89393,2.06521,-0.40308
-4.41992,0.93810,-1.14687,-1.83260,-0.89393,2.06562,-0.40350
-4.42099,0.93756,-1.14722,-1.83244,-0.89394,2.06603,-0.40392
-4.42205,0.93702,-1.14756,-1.83228,-0.89394,2.06643,-0.40432
-4.42312,0.93649,-1.14791,-1.83212,-0.89395,2.06682,-0.40473
-4.42418,0.93596,-1.14824,-1.83196,-0.89396,2.06721,-0.40512
-4.42525,0.93545,-1.14857,-1.83181,-0.89397,2.06759,-0.40551
-4.42632,0.93494,-1.14889,-1.83166,-0.89397,2.06797,-0.40590
-4.42738,0.93445,-1.14921,-1.83151,-0.89398,2.06834,-0.40628
-4.42845,0.93408,-1.14945,-1.83140,-0.89399,2.06861,-0.40655
-4.42952,0.93337,-1.14991,-1.83119,-0.89398,2.06913,-0.40709
-4.43058,0.93268,-1.15037,-1.83099,-0.89398,2.06965,-0.40762
-4.43165,0.93200,-1.15082,-1.83078,-0.89397,2.07015,-0.40813
-4.43271,0.93132,-1.15126,-1.83058,-0.89397,2.07065,-0.40864
-4.43378,0.93066,-1.15170,-1.83039,-0.89397,2.07114,-0.40915
-4.43485,0.93001,-1.15213,-1.83019,-0.89397,2.07162,-0.40964
-4.43591,0.92937,-1.15255,-1.83000,-0.89397,2.07209,-0.41013
-4.43698,0.92874,-1.15297,-1.82981,-0.89397,2.07256,-0.41061
-4.43805,0.92812,-1.15337,-1.82963,-0.89397,2.07302,-0.41108
-4.43911,0.92751,-1.15378,-1.82944,-0.89398,2.07347,-0.41155
-4.44018,0.92691,-1.15417,-1.82926,-0.89398,2.07391,-0.41201
-4.44125,0.92632,-1.15456,-1.82908,-0.89399,2.07435,-0.41246
-4.44231,0.92574,-1.15494,-1.82890,-0.89400,2.07478,-0.41290
-4.44338,0.92517,-1.15532,-1.82873,-0.89400,2.07521,-0.41334
-4.44444,0.92460,-1.15569,-1.82855,-0.89401,2.07562,-0.41377
-4.44551,0.92405,-1.15605,-1.82838,-0.89402,2.07603,-0.41419
-4.44658,0.92350,-1.15641,-1.82821,-0.89403,2.07644,-0.41461
-4.44764,0.92297,-1.15676,-1.82805,-0.89404,2.07683,-0.41502
-4.44871,0.92244,-1.15711,-1.82788,-0.89405,2.07722,-0.41543
-4.44978,0.92192,-1.15745,-1.82772,-0.89407,2.07761,-0.41583
-4.45084,0.92141,-1.15778,-1.82756,-0.89408,2.07799,-0.41622
-4.45191,0.92091,-1.15811,-1.82740,-0.89409,2.07836,-0.41660
-4.45298,0.92041,-1.15844,-1.82724,-0.89411,2.07873,-0.41698
-4.45404,0.91993,-1.15875,-1.82709,-0.89412,2.07909,-0.41736
-4.45511,0.91975,-1.15887,-1.82704,-0.89413,2.07922,-0.41749
-4.45617,0.91900,-1.15939,-1.82679,-0.89413,2.07977,-0.41807
-4.45724,0.91826,-1.15990,-1.82655,-0.89413,2.08031,-0.41863
-4.45831,0.91754,-1.16040,-1.82632,-0.89413,2.08085,-0.41919
-4.45937,0.91682,-1.16089,-1.82608,-0.89413,2.08137,-0.41974
-4.46044,0.91612,-1.16138,-1.82585,-0.89414,2.08189,-0.42028
-4.46151,0.91542,-1.16186,-1.82563,-0.89415,2.08240,-0.42081
-4.46257,0.91474,-1.16233,-1.82540,-0.89415,2.08290,-0.42134
-4.46364,0.91407,-1.16279,-1.82518,-0.89416,2.08339,-0.42185
-4.46470,0.91341,-1.16324,-1.82496,-0.89417,2.08388,-0.42236
-4.46577,0.91277,-1.16369,-1.82474,-0.89418,2.08436,-0.42286
-4.46684,0.91213,-1.16413,-1.82453,-0.89420,2.08483,-0.42335
-4.46790,0.91150,-1.16456,-1.82432,-0.89421,2.08529,-0.42384
-4.46897,0.91088,-1.16499,-1.82411,-0.89422,2.08574,-0.42432
-4.47004,0.91028,-1.16540,-1.82391,-0.89424,2.08619,-0.42479
-4.47110,0.90968,-1.16581,-1.82371,-0.89425,2.08663,-0.42525
-4.47217,0.90909,-1.16622,-1.82351,-0.89427,2.08706,-0.42570
-4.47324,0.90851,-1.16662,-1.82331,-0.89429,2.08749,-0.42615
-4.47430,0.90794,-1.16701,-1.82311,-0.89431,2.08791,-0.42659
-4.47537,0.90738,-1.16739,-1.82292,-0.89433,2.08832,-0.42703
-4.47643,0.90683,-1.16777,-1.82273,-0.89435,2.08873,-0.42746
-4.47750,0.90629,-1.16814,-1.82255,-0.89437,2.08913,-0.42788
-4.47857,0.90576,-1.16851,-1.82236,-0.89439,2.08952,-0.42829
-4.47963,0.90523,-1.16887,-1.82218,-0.89441,2.08991,-0.42870
-4.48070,0.90472,-1.16922,-1.82200,-0.89443,2.09029,-0.42910
-4.48177,0.90421,-1.16957,-1.82182,-0.89445,2.09066,-0.42950
-4.48283,0.90371,-1.16992,-1.82165,-0.89448,2.09103,-0.42989
-4.48390,0.90322,-1.17025,-1.82147,-0.89450,2.09139,-0.43027
-4.48496,0.90273,-1.17058,-1.82130,-0.89452,2.09175,-0.43065
-4.48603,0.90226,-1.17091,-1.82114,-0.89455,2.09210,-0.43102
-4.48710,0.90200,-1.17109,-1.82104,-0.89456,2.09229,-0.43123
-4.48816,0.90128,-1.17160,-1.82079,-0.89457,2.09282,-0.43179
-4.48923,0.90057,-1.17211,-1.82054,-0.89459,2.09334,-0.43234
-4.49030,0.89987,-1.17261,-1.82030,-0.89460,2.09385,-0.43288
-4.49136,0.89919,-1.17309,-1.82006,-0.89462,2.09435,-0.43341
-4.49243,0.89852,-1.17357,-1.81982,-0.89463,2.09484,-0.43393
-4.49350,0.89786,-1.17405,-1.81958,-0.89465,2.09532,-0.43445
-4.49456,0.89720,-1.17451,-1.81935,-0.89467,2.09580,-0.43496
-4.49563,0.89656,-1.17497,-1.81912,-0.89469,2.09627,-0.43546
-4.49669,0.89593,-1.17542,-1.81889,-0.89471,2.09673,-0.43595
-4.49776,0.89531,-1.17586,-1.81867,-0.89473,2.09718,-0.43644
-4.49883,0.89471,-1.17630,-1.81845,-0.89476,2.09763,-0.43692
-4.49989,0.89411,-1.17672,-1.81823,-0.89478,2.09807,-0.43739
-4.50096,0.89352,-1.17714,-1.81801,-0.89480,2.09850,-0.43785
-4.50203,0.89294,-1.17756,-1.81780,-0.89483,2.09893,-0.43831
-4.50309,0.89236,-1.17796,-1.81759,-0.89485,2.09935,-0.43875
-4.50416,0.89180,-1.17836,-1.81739,-0.89488,2.09976,-0.43920
-4.50522,0.89125,-1.17876,-1.81718,-0.89491,2.10016,-0.43963
-4.50629,0.89071,-1.17914,-1.81698,-0.89493,2.10056,-0.44006
-4.50736,0.89017,-1.17952,-1.81678,-0.89496,2.10095,-0.44048
-4.50842,0.88965,-1.17990,-1.81659,-0.89499,2.10134,-0.44090
-4.50949,0.88913,-1.18027,-1.81639,-0.89502,2.10172,-0.44130
-4.51056,0.88862,-1.18063,-1.81620,-0.89505,2.10209,-0.44171
-4.51162,0.88812,-1.18098,-1.81602,-0.89508,2.10246,-0.44210
-4.51269,0.88763,-1.18133,-1.81583,-0.89511,2.10282,-0.44249
-4.51376,0.88714,-1.18168,-1.81565,-0.89514,2.10318,-0.44288
-4.51482,0.88666,-1.18202,-1.81547,-0.89517,2.10353,-0.44325
-4.51589,0.88619,-1.18235,-1.81529,-0.89520,2.10387,-0.44362
-4.51695,0.88570,-1.18271,-1.81510,-0.89523,2.10423,-0.44402
-4.51802,0.88492,-1.18333,-1.81474,-0.89527,2.10480,-0.44463
-4.51909,0.88416,-1.18394,-1.81439,-0.89531,2.10536,-0.44523
-4.52015,0.88340,-1.18454,-1.81404,-0.89535,2.10590,-0.44583
-4.52122,0.88266,-1.18513,-1.81370,-0.89540,2.10644,-0.44641
-4.52229,0.88194,-1.18572,-1.81337,-0.89544,2.10697,-0.44699
-4.52335,0.88122,-1.18629,-1.81303,-0.89548,2.10749,-0.44755
-4.52442,0.88052,-1.18685,-1.81271,-0.89553,2.10800,-0.44811
-4.52549,0.87982,-1.18741,-1.81238,-0.89557,2.10850,-0.44866
-4.52655,0.87914,-1.18795,-1.81207,-0.89562,2.10900,-0.44920
-4.52762,0.87847,-1.18848,-1.81175,-0.89567,2.10949,-0.44973
-4.52868,0.87781,-1.18901,-1.81144,-0.89572,2.10997,-0.45025
-4.52975,0.87717,-1.18953,-1.81114,-0.89576,2.11044,-0.45077
-4.53082,0.87653,-1.19004,-1.81084,-0.89581,2.11090,-0.45127
-4.53188,0.87590,-1.19054,-1.81054,-0.89586,2.11136,-0.45177
-4.53295,0.87529,-1.19103,-1.81025,-0.89591,2.11180,-0.45226
-4.53402,0.87468,-1.19151,-1.80996,-0.89596,2.11225,-0.45275
-4.53508,0.87408,-1.19199,-1.80967,-0.89601,2.11268,-0.45322
-4.53615,0.87350,-1.19245,-1.80939,-0.89606,2.11311,-0.45369
-4.53721,0.87292,-1.19291,-1.80912,-0.89611,2.11353,-0.45415
-4.53828,0.87235,-1.19336,-1.80884,-0.89617,2.11394,-0.45461
-4.53935,0.87180,-1.19381,-1.80858,-0.89622,2.11435,-0.45505
-4.54041,0.87125,-1.19424,-1.80831,-0.89627,2.11474,-0.45549
-4.54148,0.87071,-1.19467,-1.80805,-0.89632,2.11514,-0.45592
-4.54255,0.87018,-1.19510,-1.80779,-0.89638,2.11552,-0.45635
-4.54361,0.86965,-1.19551,-1.80754,-0.89643,2.11591,-0.45677
-4.54468,0.86914,-1.19592,-1.80729,-0.89648,2.11628,-0.45718
-4.54575,0.86863,-1.19632,-1.80704,-0.89653,2.11665,-0.45759
-4.54681,0.86814,-1.19671,-1.80680,-0.89659,2.11701,-0.45799
-4.54788,0.86765,-1.19710,-1.80656,-0.89664,2.11737,-0.45838
-4.54894,0.86717,-1.19748,-1.80632,-0.89670,2.11772,-0.45877
-4.55001,0.86669,-1.19786,-1.80609,-0.89675,2.11806,-0.45915
-4.55108,0.86623,-1.19823,-1.80586,-0.89680,2.11840,-0.45953
-4.55214,0.86577,-1.19859,-1.80563,-0.89686,2.11874,-0.45990
-4.55321,0.86532,-1.19894,-1.80541,-0.89691,2.11907,-0.46026
-4.55428,0.86487,-1.19929,-1.80519,-0.89696,2.11939,-0.46062
-4.55534,0.86443,-1.19965,-1.80497,-0.89701,2.11971,-0.46098
-4.55641,0.86349,-1.20045,-1.80450,-0.89707,2.12039,-0.46173
-4.55747,0.86256,-1.20124,-1.80403,-0.89713,2.12106,-0.46248
-4.55854,0.86165,-1.20202,-1.80357,-0.89719,2.12171,-0.46321
-4.55961,0.86075,-1.20278,-1.80311,-0.89725,2.12236,-0.46393
-4.56067,0.85987,-1.20353,-1.80267,-0.89732,2.12299,-0.46464
-4.56174,0.85900,-1.20427,-1.80222,-0.89738,2.12361,-0.46533
-4.56281,0.85815,-1.20500,-1.80179,-0.89745,2.12422,-0.46602
-4.56387,0.85732,-1.20571,-1.80136,-0.89751,2.12483,-0.46669
-4.56494,0.85649,-1.20641,-1.80093,-0.89758,2.12542,-0.46736
-4.56601,0.85569,-1.20710,-1.80051,-0.89765,2.12600,-0.46801
-4.56707,0.85489,-1.20778,-1.80010,-0.89771,2.12657,-0.46865
-4.56814,0.85411,-1.20844,-1.79969,-0.89778,2.12713,-0.46929
-4.56920,0.85334,-1.20910,-1.79929,-0.89785,2.12768,-0.46991
-4.57027,0.85259,-1.20974,-1.79890,-0.89792,2.12823,-0.47052
-4.57134,0.85184,-1.21038,-1.79851,-0.89800,2.12876,-0.47112
-4.57240,0.85111,-1.21100,-1.79812,-0.89807,2.12929,-0.47172
-4.57347,0.85040,-1.21161,-1.79774,-0.89814,2.12980,-0.47230
-4.57454,0.84969,-1.21221,-1.79737,-0.89821,2.13031,-0.47288
-4.57560,0.84900,-1.21280,-1.79700,-0.89829,2.13081,-0.47344
-4.57667,0.84831,-1.21338,-1.79664,-0.89836,2.13130,-0.47400
-4.57774,0.84764,-1.21396,-1.79628,-0.89843,2.13178,-0.47454
-4.57880,0.84698,-1.21452,-1.79592,-0.89851,2.13226,-0.47508
-4.57987,0.84634,-1.21507,-1.79558,-0.89858,2.13273,-0.47561
-4.58093,0.84570,-1.21561,-1.79523,-0.89865,2.13318,-0.47614
-4.58200,0.84507,-1.21615,-1.79489,-0.89873,2.13364,-0.47665
-4.58307,0.84445,-1.21667,-1.79456,-0.89880,2.13408,-0.47715
-4.58413,0.84385,-1.21719,-1.79423,-0.89888,2.13452,-0.47765
-4.58520,0.84325,-1.21769,-1.79391,-0.89895,2.13495,-0.47814
-4.58627,0.84267,-1.21819,-1.79359,-0.89903,2.13537,-0.47862
-4.58733,0.84209,-1.21868,-1.79327,-0.89910,2.13578,-0.47910
-4.58840,0.84152,-1.21916,-1.79296,-0.89918,2.13619,-0.47956
-4.58946,0.84096,-1.21964,-1.79266,-0.89926,2.13659,-0.48002
-4.59053,0.84042,-1.22010,-1.79235,-0.89933,2.13699,-0.48048
-4.59160,0.83988,-1.22056,-1.79206,-0.89941,2.13738,-0.48092
-4.59266,0.83935,-1.22101,-1.79176,-0.89948,2.13776,-0.48136
-4.59373,0.83882,-1.22145,-1.79148,-0.89956,2.13813,-0.48179
-4.59480,0.83831,-1.22189,-1.79119,-0.89963,2.13850,-0.48221
-4.59586,0.83781,-1.22231,-1.79091,-0.89970,2.13887,-0.48263
-4.59693,0.83731,-1.22273,-1.79063,-0.89978,2.13923,-0.48304
-4.59800,0.83682,-1.22315,-1.79036,-0.89985,2.13958,-0.48345
-4.59906,0.83634,-1.22355,-1.79009,-0.89993,2.13992,-0.48384
-4.60013,0.83587,-1.22395,-1.78983,-0.90000,2.14026,-0.48423
-4.60119,0.83541,-1.22434,-1.78957,-0.90007,2.14060,-0.48462
-4.60226,0.83495,-1.22473,-1.78931,-0.90015,2.14093,-0.48500
-4.60333,0.83450,-1.22511,-1.78906,-0.90022,2.14125,-0.48537
-4.60439,0.83406,-1.22548,-1.78881,-0.90029,2.14157,-0.48574
-4.60546,0.83363,-1.22585,-1.78856,-0.90037,2.14188,-0.48610
-4.60653,0.83320,-1.22621,-1.78832,-0.90044,2.14219,-0.48646
-4.60759,0.83278,-1.22656,-1.78808,-0.90051,2.14250,-0.48681
-4.60866,0.83239,-1.22690,-1.78786,-0.90057,2.14278,-0.48713
-4.60972,0.83141,-1.22781,-1.78727,-0.90067,2.14347,-0.48794
-4.61079,0.83045,-1.22871,-1.78670,-0.90077,2.14415,-0.48873
-4.61186,0.82950,-1.22959,-1.78613,-0.90088,2.14483,-0.48951
-4.61292,0.82857,-1.23045,-1.78557,-0.90098,2.14549,-0.49028
-4.61399,0.82766,-1.23130,-1.78502,-0.90108,2.14613,-0.49104
-4.61506,0.82676,-1.23214,-1.78448,-0.90119,2.14677,-0.49178
-4.61612,0.82588,-1.23296,-1.78395,-0.90129,2.14740,-0.49251
-4.61719,0.82501,-1.23377,-1.78342,-0.90140,2.14801,-0.49323
-4.61826,0.82416,-1.23457,-1.78290,-0.90150,2.14862,-0.49394
-4.61932,0.82332,-1.23535,-1.78238,-0.90161,2.14921,-0.49464
-4.62039,0.82250,-1.23611,-1.78188,-0.90172,2.14979,-0.49532
-4.62145,0.82169,-1.23687,-1.78138,-0.90183,2.15037,-0.49600
-4.62252,0.82089,-1.23761,-1.78089,-0.90193,2.15093,-0.49666
-4.62359,0.82011,-1.23834,-1.78040,-0.90204,2.15149,-0.49731
-4.62465,0.81934,-1.23906,-1.77992,-0.90215,2.15203,-0.49795
-4.62572,0.81859,-1.23976,-1.77945,-0.90226,2.15257,-0.49859
-4.62679,0.81785,-1.24045,-1.77899,-0.90237,2.15309,-0.49921
-4.62785,0.81712,-1.24113,-1.77853,-0.90247,2.15361,-0.49982
-4.62892,0.81640,-1.24180,-1.77808,-0.90258,2.15412,-0.50042
-4.62999,0.81570,-1.24246,-1.77764,-0.90269,2.15462,-0.50101
-4.63105,0.81501,-1.24311,-1.77720,-0.90280,2.15511,-0.50159
-4.63212,0.81433,-1.24374,-1.77676,-0.90291,2.15559,-0.50217
-4.63318,0.81366,-1.24437,-1.77634,-0.90302,2.15607,-0.50273
-4.63425,0.81300,-1.24498,-1.77592,-0.90312,2.15653,-0.50328
-4.63532,0.81235,-1.24558,-1.77551,-0.90323,2.15699,-0.50383
-4.63638,0.81172,-1.24618,-1.77510,-0.90334,2.15744,-0.50437
-4.63745,0.81109,-1.24676,-1.77470,-0.90345,2.15789,-0.50490
-4.63852,0.81048,-1.24733,-1.77430,-0.90355,2.15832,-0.50542
-4.63958,0.80988,-1.24789,-1.77391,-0.90366,2.15875,-0.50593
-4.64065,0.80928,-1.24845,-1.77353,-0.90377,2.15917,-0.50643
-4.64171,0.80870,-1.24899,-1.77315,-0.90387,2.15959,-0.50692
-4.64278,0.80813,-1.24953,-1.77277,-0.90398,2.15999,-0.50741
-4.64385,0.80756,-1.25005,-1.77241,-0.90408,2.16040,-0.50789
-4.64491,0.80701,-1.25057,-1.77204,-0.90419,2.16079,-0.50836
-4.64598,0.80646,-1.25108,-1.77169,-0.90429,2.16118,-0.50883
-4.64705,0.80593,-1.25157,-1.77133,-0.90440,2.16156,-0.50928
-4.64811,0.80540,-1.25206,-1.77099,-0.90450,2.16193,-0.50973
-4.64918,0.80488,-1.25255,-1.77064,-0.90460,2.16230,-0.51017
-4.65025,0.80437,-1.25302,-1.77031,-0.90471,2.16266,-0.51061
-4.65131,0.80387,-1.25349,-1.76998,-0.90481,2.16302,-0.51104
-4.65238,0.80338,-1.25394,-1.76965,-0.90491,2.16337,-0.51146
-4.65344,0.80289,-1.25439,-1.76933,-0.90501,2.16371,-0.51187
-4.65451,0.80242,-1.25483,-1.76901,-0.90511,2.16405,-0.51228
-4.65558,0.80195,-1.25527,-1.76870,-0.90521,2.16438,-0.51268
-4.65664,0.80149,-1.25570,-1.76839,-0.90531,2.16471,-0.51308
-4.65771,0.80104,-1.25612,-1.76809,-0.90541,2.16503,-0.51347
-4.65878,0.80059,-1.25653,-1.76779,-0.90551,2.16535,-0.51385
-4.65984,0.80015,-1.25693,-1.76749,-0.90561,2.16566,-0.51423
-4.66091,0.79972,-1.25733,-1.76720,-0.90570,2.16597,-0.51460
-4.66197,0.79930,-1.25772,-1.76692,-0.90580,2.16627,-0.51496
-4.66304,0.79888,-1.25811,-1.76664,-0.90589,2.16656,-0.51532
-4.66411,0.79847,-1.25849,-1.76636,-0.90599,2.16686,-0.51567
-4.66517,0.79807,-1.25886,-1.76609,-0.90608,2.16714,-0.51602
-4.66624,0.79767,-1.25922,-1.76582,-0.90618,2.16742,-0.51636
-4.66731,0.79729,-1.25958,-1.76555,-0.90627,2.16770,-0.51670
-4.66837,0.79708,-1.25978,-1.76541,-0.90631,2.16785,-0.51687
-4.66944,0.79622,-1.26067,-1.76478,-0.90646,2.16845,-0.51761
-4.67051,0.79537,-1.26154,-1.76417,-0.90660,2.16904,-0.51833
-4.67157,0.79454,-1.26240,-1.76356,-0.90675,2.16962,-0.51904
-4.67264,0.79372,-1.26324,-1.76296,-0.90689,2.17020,-0.51974
-4.67370,0.79292,-1.26407,-1.76237,-0.90704,2.17076,-0.52043
-4.67477,0.79213,-1.26488,-1.76179,-0.90718,2.17131,-0.52111
-4.67584,0.79135,-1.26568,-1.76121,-0.90732,2.17186,-0.52177
-4.67690,0.79059,-1.26647,-1.76065,-0.90747,2.17239,-0.52243
-4.67797,0.78984,-1.26724,-1.76009,-0.90761,2.17291,-0.52307
-4.67904,0.78910,-1.26800,-1.75954,-0.90775,2.17343,-0.52370
-4.68010,0.78838,-1.26874,-1.75900,-0.90790,2.17394,-0.52433
-4.68117,0.78767,-1.26948,-1.75847,-0.90804,2.17443,-0.52494
-4.68224,0.78697,-1.27020,-1.75794,-0.90818,2.17492,-0.52554
-4.68330,0.78628,-1.27091,-1.75743,-0.90832,2.17540,-0.52614
-4.68437,0.78560,-1.27160,-1.75692,-0.90846,2.17587,-0.52672
-4.68543,0.78494,-1.27229,-1.75641,-0.90860,2.17634,-0.52729
-4.68650,0.78429,-1.27296,-1.75592,-0.90874,2.17680,-0.52786
-4.68757,0.78365,-1.27362,-1.75543,-0.90888,2.17724,-0.52841
-4.68863,0.78302,-1.27427,-1.75495,-0.90902,2.17768,-0.52896
-4.68970,0.78240,-1.27491,-1.75448,-0.90916,2.17812,-0.52950
-4.69077,0.78179,-1.27553,-1.75401,-0.90930,2.17854,-0.53003
-4.69183,0.78119,-1.27615,-1.75355,-0.90943,2.17896,-0.53055
-4.69290,0.78061,-1.27675,-1.75310,-0.90957,2.17937,-0.53106
-4.69396,0.78003,-1.27735,-1.75265,-0.90971,2.17978,-0.53156
-4.69503,0.77946,-1.27793,-1.75221,-0.90984,2.18017,-0.53206
-4.69610,0.77890,-1.27851,-1.75178,-0.90997,2.18057,-0.53254
-4.69716,0.77835,-1.27907,-1.75135,-0.91011,2.18095,-0.53302
-4.69823,0.77781,-1.27963,-1.75093,-0.91024,2.18133,-0.53350
-4.69930,0.77728,-1.28017,-1.75052,-0.91037,2.18170,-0.53396
-4.70036,0.77676,-1.28071,-1.75011,-0.91050,2.18206,-0.53442
-4.70143,0.77625,-1.28124,-1.74971,-0.91063,2.18242,-0.53487
-4.70250,0.77575,-1.28175,-1.74931,-0.91076,2.18277,-0.53531
-4.70356,0.77525,-1.28226,-1.74892,-0.91089,2.18312,-0.53574
-4.70463,0.77477,-1.28276,-1.74854,-0.91102,2.18346,-0.53617
-4.70569,0.77429,-1.28325,-1.74816,-0.91114,2.18380,-0.53659
-4.70676,0.77382,-1.28374,-1.74779,-0.91127,2.18413,-0.53700
-4.70783,0.77335,-1.28421,-1.74742,-0.91139,2.18445,-0.53741
-4.70889,0.77290,-1.28468,-1.74706,-0.91152,2.18477,-0.53781
-4.70996,0.77245,-1.28513,-1.74670,-0.91164,2.18508,-0.53821
-4.71103,0.77201,-1.28558,-1.74635,-0.91176,2.18539,-0.53859
-4.71209,0.77158,-1.28603,-1.74601,-0.91188,2.18569,-0.53898
-4.71316,0.77116,-1.28646,-1.74567,-0.91200,2.18599,-0.53935
-4.71422,0.77074,-1.28689,-1.74533,-0.91212,2.18628,-0.53972
-4.71529,0.77033,-1.28731,-1.74500,-0.91224,2.18657,-0.54009
-4.71636,0.76992,-1.28772,-1.74468,-0.91235,2.18686,-0.54044
-4.71742,0.76953,-1.28813,-1.74436,-0.91247,2.18713,-0.54080
-4.71849,0.76914,-1.28852,-1.74404,-0.91259,2.18741,-0.54114
-4.71956,0.76875,-1.28892,-1.74373,-0.91270,2.18768,-0.54148
-4.72062,0.76838,-1.28930,-1.74343,-0.91281,2.18794,-0.54182
-4.72169,0.76800,-1.28968,-1.74312,-0.91292,2.18820,-0.54215
-4.72276,0.76764,-1.29005,-1.74283,-0.91304,2.18846,-0.54247
-4.72382,0.76728,-1.29042,-1.74254,-0.91315,2.18871,-0.54279
-4.72489,0.76718,-1.29052,-1.74246,-0.91316,2.18878,-0.54288
-4.72595,0.76618,-1.29157,-1.74175,-0.91332,2.18947,-0.54376
-4.72702,0.76520,-1.29260,-1.74105,-0.91349,2.19014,-0.54462
-4.72809,0.76423,-1.29361,-1.74036,-0.91365,2.19081,-0.54546
-4.72915,0.76328,-1.29461,-1.73968,-0.91381,2.19146,-0.54630
-4.73022,0.76235,-1.29558,-1.73901,-0.91398,2.19210,-0.54712
-4.73129,0.76144,-1.29654,-1.73835,-0.91414,2.19272,-0.54792
-4.73235,0.76054,-1.29749,-1.73770,-0.91430,2.19334,-0.54871
-4.73342,0.75966,-1.29841,-1.73705,-0.91447,2.19395,-0.54949
-4.73448,0.75879,-1.29933,-1.73642,-0.91463,2.19454,-0.55025
-4.73555,0.75794,-1.30022,-1.73579,-0.91479,2.19513,-0.55101
-4.73662,0.75711,-1.30110,-1.73518,-0.91496,2.19570,-0.55175
-4.73768,0.75629,-1.30197,-1.73457,-0.91512,2.19626,-0.55247
-4.73875,0.75548,-1.30282,-1.73397,-0.91528,2.19682,-0.55319
-4.73982,0.75469,-1.30365,-1.73338,-0.91544,2.19736,-0.55389
-4.74088,0.75391,-1.30447,-1.73280,-0.91560,2.19789,-0.55458
-4.74195,0.75315,-1.30528,-1.73222,-0.91577,2.19842,-0.55526
-4.74302,0.75240,-1.30607,-1.73166,-0.91593,2.19893,-0.55593
-4.74408,0.75166,-1.30685,-1.73110,-0.91609,2.19944,-0.55659
-4.74515,0.75094,-1.30762,-1.73055,-0.91625,2.19994,-0.55724
-4.74621,0.75023,-1.30837,-1.73001,-0.91640,2.20042,-0.55787
-4.74728,0.74953,-1.30911,-1.72948,-0.91656,2.20090,-0.55850
-4.74835,0.74884,-1.30983,-1.72895,-0.91672,2.20137,-0.55912
-4.74941,0.74817,-1.31055,-1.72843,-0.91688,2.20184,-0.55972
-4.75048,0.74751,-1.31125,-1.72792,-0.91703,2.20229,-0.56032
-4.75155,0.74685,-1.31194,-1.72742,-0.91719,2.20274,-0.56090
-4.75261,0.74621,-1.31262,-1.72692,-0.91734,2.20318,-0.56148
-4.75368,0.74559,-1.31328,-1.72643,-0.91750,2.20361,-0.56204
-4.75475,0.74497,-1.31393,-1.72595,-0.91765,2.20403,-0.56260
-4.75581,0.74436,-1.31458,-1.72548,-0.91780,2.20445,-0.56315
-4.75688,0.74377,-1.31521,-1.72501,-0.91795,2.20486,-0.56369
-4.75794,0.74318,-1.31583,-1.72455,-0.91811,2.20526,-0.56422
-4.75901,0.74260,-1.31644,-1.72409,-0.91826,2.20566,-0.56474
-4.76008,0.74204,-1.31704,-1.72365,-0.91840,2.20605,-0.56525
-4.76114,0.74148,-1.31763,-1.72321,-0.91855,2.20643,-0.56575
-4.76221,0.74094,-1.31821,-1.72277,-0.91870,2.20680,-0.56625
-4.76328,0.74040,-1.31878,-1.72234,-0.91884,2.20717,-0.56674
-4.76434,0.73987,-1.31933,-1.72192,-0.91899,2.20753,-0.56722
-4.76541,0.73935,-1.31988,-1.72151,-0.91913,2.20789,-0.56769
-4.76647,0.73884,-1.32042,-1.72110,-0.91928,2.20824,-0.56815
-4.76754,0.73834,-1.32095,-1.72069,-0.91942,2.20858,-0.56861
-4.76861,0.73785,-1.32147,-1.72030,-0.91956,2.20892,-0.56906
-4.76967,0.73737,-1.32199,-1.71990,-0.91970,2.20926,-0.56950
-4.77074,0.73689,-1.32249,-1.71952,-0.91984,2.20958,-0.56993
-4.77181,0.73642,-1.32298,-1.71914,-0.91998,2.20990,-0.57036
-4.77287,0.73596,-1.32347,-1.71877,-0.92011,2.21022,-0.57078
-4.77394,0.73551,-1.32395,-1.71840,-0.92025,2.21053,-0.57120
-4.77501,0.73507,-1.32441,-1.71803,-0.92038,2.21083,-0.57160
-4.77607,0.73463,-1.32488,-1.71768,-0.92052,2.21113,-0.57200
-4.77714,0.73420,-1.32533,-1.71732,-0.92065,2.21143,-0.57240
-4.77820,0.73378,-1.32577,-1.71698,-0.92078,2.21172,-0.57278
-4.77927,0.73337,-1.32621,-1.71664,-0.92091,2.21200,-0.57316
-4.78034,0.73296,-1.32664,-1.71630,-0.92104,2.21228,-0.57354
-4.78140,0.73256,-1.32706,-1.71597,-0.92117,2.21256,-0.57391
-4.78247,0.73217,-1.32748,-1.71564,-0.92129,2.21283,-0.57427
-4.78354,0.73178,-1.32789,-1.71532,-0.92142,2.21309,-0.57463
-4.78460,0.73140,-1.32829,-1.71500,-0.92155,2.21336,-0.57498
-4.78567,0.73103,-1.32868,-1.71469,-0.92167,2.21361,-0.57532
-4.78673,0.73066,-1.32907,-1.71438,-0.92179,2.21387,-0.57566
-4.78780,0.73030,-1.32945,-1.71408,-0.92191,2.21411,-0.57600
-4.78887,0.72994,-1.32982,-1.71378,-0.92203,2.21436,-0.57633
-4.78993,0.72959,-1.33019,-1.71349,-0.92215,2.21460,-0.57665
-4.79100,0.72925,-1.33055,-1.71320,-0.92227,2.21483,-0.57697
-4.79207,0.72919,-1.33062,-1.71315,-0.92229,2.21488,-0.57703
-4.79313,0.72855,-1.33131,-1.71265,-0.92244,2.21531,-0.57761
-4.79420,0.72793,-1.33199,-1.71215,-0.92259,2.21573,-0.57818
-4.79527,0.72731,-1.33266,-1.71167,-0.92274,2.21615,-0.57874
-4.79633,0.72671,-1.33332,-1.71119,-0.92289,2.21655,-0.57929
-4.79740,0.72612,-1.33397,-1.71072,-0.92304,2.21696,-0.57983
-4.79846,0.72554,-1.33460,-1.71025,-0.92318,2.21735,-0.58037
-4.79953,0.72497,-1.33522,-1.70980,-0.92333,2.21774,-0.58089
-4.80060,0.72440,-1.33584,-1.70934,-0.92348,2.21812,-0.58141
-4.80166,0.72385,-1.33644,-1.70890,-0.92362,2.21849,-0.58192
-4.80273,0.72331,-1.33703,-1.70846,-0.92377,2.21886,-0.58242
-4.80380,0.72278,-1.33761,-1.70803,-0.92391,2.21922,-0.58291
-4.80486,0.72226,-1.33818,-1.70760,-0.92405,2.21957,-0.58339
-4.80593,0.72174,-1.33875,-1.70718,-0.92420,2.21992,-0.58387
-4.80700,0.72124,-1.33930,-1.70677,-0.92434,2.22027,-0.58433
-4.80806,0.72074,-1.33984,-1.70636,-0.92448,2.22060,-0.58479
-4.80913,0.72025,-1.34037,-1.70596,-0.92462,2.22093,-0.58524
-4.81019,0.71977,-1.34090,-1.70557,-0.92475,2.22126,-0.58569
-4.81126,0.71930,-1.34141,-1.70518,-0.92489,2.22158,-0.58613
-4.81233,0.71884,-1.34192,-1.70480,-0.92503,2.22189,-0.58656
-4.81339,0.71838,-1.34241,-1.70442,-0.92516,2.22220,-0.58698
-4.81446,0.71794,-1.34290,-1.70405,-0.92530,2.22250,-0.58740
-4.81553,0.71750,-1.34338,-1.70368,-0.92543,2.22280,-0.58780
-4.81659,0.71706,-1.34385,-1.70332,-0.92556,2.22309,-0.58821
-4.81766,0.71664,-1.34431,-1.70296,-0.92569,2.22338,-0.58860
-4.81872,0.71622,-1.34477,-1.70261,-0.92582,2.22366,-0.58899
-4.81979,0.71581,-1.34521,-1.70227,-0.92595,2.22394,-0.58938
-4.82086,0.71541,-1.34565,-1.70193,-0.92608,2.22422,-0.58975
-4.82192,0.71501,-1.34609,-1.70159,-0.92620,2.22448,-0.59012
-4.82299,0.71462,-1.34651,-1.70126,-0.92633,2.22475,-0.59049
-4.82406,0.71424,-1.34693,-1.70094,-0.92645,2.22501,-0.59085
-4.82512,0.71387,-1.34733,-1.70062,-0.92658,2.22526,-0.59120
-4.82619,0.71350,-1.34774,-1.70030,-0.92670,2.22552,-0.59155
-4.82726,0.71313,-1.34813,-1.69999,-0.92682,2.22576,-0.59189
-4.82832,0.71277,-1.34852,-1.69969,-0.92694,2.22600,-0.59222
-4.82939,0.71242,-1.34890,-1.69939,-0.92706,2.22624,-0.59255
-4.83045,0.71208,-1.34928,-1.69909,-0.92718,2.22648,-0.59288
-4.83152,0.71174,-1.34965,-1.69880,-0.92730,2.22671,-0.59320
-4.83259,0.71141,-1.35001,-1.69851,-0.92741,2.22693,-0.59351
-4.83365,0.71130,-1.35012,-1.69842,-0.92745,2.22700,-0.59361
-4.83472,0.71094,-1.35051,-1.69812,-0.92756,2.22725,-0.59395
-4.83579,0.71059,-1.35089,-1.69783,-0.92768,2.22749,-0.59428
-4.83685,0.71024,-1.35126,-1.69754,-0.92779,2.22772,-0.59461
-4.83792,0.70990,-1.35163,-1.69725,-0.92791,2.22796,-0.59493
-4.83898,0.70956,-1.35200,-1.69697,-0.92802,2.22819,-0.59525
-4.84005,0.70935,-1.35222,-1.69680,-0.92809,2.22832,-0.59544
-4.84112,0.70897,-1.35262,-1.69650,-0.92820,2.22858,-0.59580
-4.84218,0.70859,-1.35301,-1.69621,-0.92831,2.22884,-0.59616
-4.84325,0.70822,-1.35340,-1.69593,-0.92842,2.22909,-0.59651
-4.84432,0.70786,-1.35379,-1.69565,-0.92852,2.22933,-0.59685
-4.84538,0.70750,-1.35416,-1.69537,-0.92863,2.22957,-0.59719
-4.84645,0.70715,-1.35453,-1.69509,-0.92874,2.22981,-0.59752
-4.84752,0.70680,-1.35489,-1.69482,-0.92884,2.23004,-0.59785
-4.84858,0.70647,-1.35525,-1.69456,-0.92895,2.23027,-0.59817
-4.84965,0.70633,-1.35539,-1.69445,-0.92899,2.23037,-0.59829
-4.85071,0.70598,-1.35576,-1.69418,-0.92910,2.23060,-0.59862
-4.85178,0.70564,-1.35612,-1.69391,-0.92920,2.23083,-0.59894
-4.85285,0.70534,-1.35644,-1.69366,-0.92930,2.23103,-0.59923
-4.85391,0.70503,-1.35678,-1.69340,-0.92940,2.23124,-0.59952
-4.85498,0.70461,-1.35736,-1.69288,-0.92958,2.23152,-0.59991
-4.85605,0.70420,-1.35792,-1.69237,-0.92975,2.23180,-0.60030
-4.85711,0.70380,-1.35848,-1.69187,-0.92993,2.23207,-0.60068
-4.85818,0.70340,-1.35902,-1.69138,-0.93010,2.23234,-0.60106
-4.85925,0.70301,-1.35956,-1.69090,-0.93028,2.23260,-0.60143
-4.86031,0.70262,-1.36008,-1.69042,-0.93045,2.23286,-0.60179
-4.86138,0.70224,-1.36060,-1.68995,-0.93062,2.23311,-0.60215
-4.86244,0.70187,-1.36111,-1.68949,-0.93079,2.23336,-0.60250
-4.86351,0.70150,-1.36160,-1.68904,-0.93095,2.23361,-0.60285
-4.86458,0.70114,-1.36209,-1.68859,-0.93112,2.23385,-0.60319
-4.86564,0.70079,-1.36258,-1.68815,-0.93128,2.23409,-0.60352
-4.86671,0.70044,-1.36305,-1.68771,-0.93144,2.23432,-0.60385
-4.86778,0.70010,-1.36351,-1.68729,-0.93160,2.23455,-0.60417
-4.86884,0.69977,-1.36397,-1.68686,-0.93176,2.23477,-0.60449
-4.86991,0.69944,-1.36442,-1.68645,-0.93191,2.23500,-0.60481
-4.87097,0.69911,-1.36486,-1.68604,-0.93207,2.23521,-0.60511
-4.87204,0.69879,-1.36529,-1.68564,-0.93222,2.23543,-0.60542
-4.87311,0.69848,-1.36572,-1.68525,-0.93237,2.23564,-0.60572
-4.87417,0.69817,-1.36614,-1.68486,-0.93253,2.23585,-0.60601
-4.87524,0.69787,-1.36655,-1.68447,-0.93267,2.23605,-0.60630
-4.87631,0.69757,-1.36695,-1.68410,-0.93282,2.23625,-0.60658
-4.87737,0.69728,-1.36735,-1.68373,-0.93297,2.23645,-0.60686
-4.87844,0.69699,-1.36773,-1.68336,-0.93311,2.23664,-0.60714
-4.87951,0.69676,-1.36805,-1.68306,-0.93323,2.23680,-0.60736
-4.88057,0.69642,-1.36854,-1.68260,-0.93340,2.23702,-0.60768
-4.88164,0.69608,-1.36902,-1.68215,-0.93357,2.23725,-0.60800
-4.88270,0.69576,-1.36949,-1.68170,-0.93373,2.23747,-0.60831
-4.88377,0.69543,-1.36996,-1.68126,-0.93390,2.23769,-0.60862
-4.88484,0.69511,-1.37041,-1.68083,-0.93406,2.23790,-0.60893
-4.88590,0.69480,-1.37086,-1.68040,-0.93422,2.23811,-0.60922
-4.88697,0.69449,-1.37130,-1.67998,-0.93438,2.23831,-0.60952
-4.88804,0.69419,-1.37173,-1.67957,-0.93454,2.23852,-0.60981
-4.88910,0.69390,-1.37215,-1.67916,-0.93470,2.23871,-0.61009
-4.89017,0.69360,-1.37257,-1.67876,-0.93485,2.23891,-0.61037
-4.89123,0.69332,-1.37298,-1.67836,-0.93501,2.23910,-0.61064
-4.89230,0.69303,-1.37338,-1.67798,-0.93516,2.23929,-0.61092
-4.89337,0.69276,-1.37378,-1.67759,-0.93531,2.23948,-0.61118
-4.89443,0.69248,-1.37416,-1.67722,-0.93546,2.23966,-0.61144
-4.89550,0.69244,-1.37423,-1.67715,-0.93548,2.23969,-0.61148
-4.89657,0.69202,-1.37491,-1.67649,-0.93571,2.23997,-0.61188
-4.89763,0.69161,-1.37557,-1.67584,-0.93594,2.24024,-0.61228
-4.89870,0.69120,-1.37622,-1.67520,-0.93616,2.24051,-0.61267
-4.89977,0.69080,-1.37686,-1.67457,-0.93638,2.24078,-0.61305
-4.90083,0.69040,-1.37749,-1.67395,-0.93660,2.24104,-0.61342
-4.90190,0.69002,-1.37811,-1.67334,-0.93682,2.24130,-0.61379
-4.90296,0.68964,-1.37872,-1.67274,-0.93703,2.24155,-0.61415
-4.90403,0.68926,-1.37931,-1.67215,-0.93725,2.24180,-0.61451
-4.90510,0.68890,-1.37990,-1.67157,-0.93746,2.24204,-0.61486
-4.90616,0.68854,-1.38047,-1.67100,-0.93766,2.24228,-0.61521
-4.90723,0.68818,-1.38104,-1.67044,-0.93787,2.24252,-0.61554
-4.90830,0.68783,-1.38159,-1.66988,-0.93807,2.24275,-0.61588
-4.90936,0.68749,-1.38214,-1.66933,-0.93828,2.24298,-0.61621
-4.91043,0.68715,-1.38268,-1.66880,-0.93848,2.24320,-0.61653
-4.91149,0.68682,-1.38320,-1.66827,-0.93867,2.24342,-0.61685
-4.91256,0.68650,-1.38372,-1.66775,-0.93887,2.24364,-0.61716
-4.91363,0.68618,-1.38423,-1.66723,-0.93906,2.24385,-0.61747
-4.91469,0.68586,-1.38473,-1.66673,-0.93925,2.24406,-0.61777
-4.91576,0.68555,-1.38522,-1.66623,-0.93944,2.24427,-0.61807
-4.91683,0.68525,-1.38570,-1.66574,-0.93963,2.24447,-0.61836
-4.91789,0.68495,-1.38618,-1.66526,-0.93982,2.24467,-0.61865
-4.91896,0.68465,-1.38664,-1.66479,-0.94000,2.24486,-0.61894
-4.92003,0.68437,-1.38710,-1.66432,-0.94018,2.24506,-0.61922
-4.92109,0.68408,-1.38755,-1.66386,-0.94036,2.24524,-0.61949
-4.92216,0.68380,-1.38799,-1.66341,-0.94054,2.24543,-0.61976
-4.92322,0.68353,-1.38842,-1.66297,-0.94071,2.24561,-0.62003
-4.92429,0.68326,-1.38885,-1.66253,-0.94088,2.24579,-0.62029
-4.92536,0.68299,-1.38927,-1.66210,-0.94106,2.24597,-0.62055
-4.92642,0.68273,-1.38968,-1.66168,-0.94122,2.24614,-0.62080
-4.92749,0.68248,-1.39008,-1.66126,-0.94139,2.24631,-0.62105
-4.92856,0.68222,-1.39048,-1.66085,-0.94156,2.24648,-0.62129
-4.92962,0.68205,-1.39076,-1.66056,-0.94167,2.24660,-0.62146
-4.93069,0.68177,-1.39121,-1.66009,-0.94186,2.24678,-0.62173
-4.93176,0.68151,-1.39166,-1.65962,-0.94204,2.24696,-0.62199
-4.93282,0.68124,-1.39209,-1.65917,-0.94222,2.24713,-0.62225
-4.93389,0.68098,-1.39252,-1.65872,-0.94240,2.24731,-0.62250
-4.93495,0.68073,-1.39294,-1.65828,-0.94257,2.24748,-0.62274
-4.93602,0.68048,-1.39335,-1.65784,-0.94275,2.24764,-0.62299
-4.93709,0.68023,-1.39376,-1.65741,-0.94292,2.24781,-0.62323
-4.93815,0.67999,-1.39415,-1.65699,-0.94309,2.24797,-0.62346
-4.93922,0.67981,-1.39445,-1.65668,-0.94321,2.24808,-0.62363
-4.94029,0.67950,-1.39501,-1.65608,-0.94343,2.24829,-0.62393
-4.94135,0.67920,-1.39556,-1.65549,-0.94366,2.24849,-0.62423
-4.94242,0.67890,-1.39610,-1.65491,-0.94387,2.24869,-0.62452
-4.94348,0.67860,-1.39663,-1.65434,-0.94409,2.24888,-0.62481
-4.94455,0.67831,-1.39715,-1.65378,-0.94430,2.24908,-0.62509
-4.94562,0.67803,-1.39766,-1.65323,-0.94451,2.24927,-0.62536
-4.94668,0.67775,-1.39817,-1.65268,-0.94472,2.24945,-0.62564
-4.94775,0.67747,-1.39866,-1.65215,-0.94493,2.24963,-0.62590
-4.94882,0.67720,-1.39915,-1.65162,-0.94513,2.24981,-0.62617
-4.94988,0.67694,-1.39963,-1.65110,-0.94533,2.24999,-0.62643
-4.95095,0.67667,-1.40010,-1.65059,-0.94553,2.25016,-0.62668
-4.95202,0.67642,-1.40056,-1.65009,-0.94573,2.25033,-0.62693
-4.95308,0.67616,-1.40101,-1.64960,-0.94592,2.25050,-0.62718
-4.95415,0.67592,-1.40146,-1.64911,-0.94612,2.25066,-0.62742
-4.95521,0.67567,-1.40189,-1.64863,-0.94631,2.25083,-0.62766
-4.95628,0.67543,-1.40232,-1.64816,-0.94649,2.25099,-0.62790
-4.95735,0.67519,-1.40275,-1.64770,-0.94668,2.25114,-0.62813
-4.95841,0.67496,-1.40316,-1.64724,-0.94686,2.25130,-0.62836
-4.95948,0.67473,-1.40357,-1.64679,-0.94704,2.25145,-0.62858
-4.96055,0.67451,-1.40397,-1.64635,-0.94722,2.25160,-0.62880
-4.96161,0.67435,-1.40425,-1.64603,-0.94735,2.25170,-0.62896
-4.96268,0.67411,-1.40474,-1.64548,-0.94757,2.25186,-0.62919
-4.96374,0.67387,-1.40521,-1.64493,-0.94778,2.25202,-0.62942
-4.96481,0.67364,-1.40568,-1.64439,-0.94800,2.25217,-0.62965
-4.96588,0.67341,-1.40614,-1.64386,-0.94821,2.25232,-0.62988
-4.96694,0.67319,-1.40659,-1.64334,-0.94841,2.25247,-0.63010
-4.96801,0.67297,-1.40704,-1.64283,-0.94862,2.25262,-0.63031
-4.96908,0.67275,-1.40747,-1.64232,-0.94882,2.25276,-0.63053
-4.97014,0.67254,-1.40790,-1.64183,-0.94902,2.25290,-0.63074
-4.97121,0.67233,-1.40832,-1.64134,-0.94922,2.25304,-0.63094
-4.97228,0.67212,-1.40873,-1.64086,-0.94941,2.25318,-0.63115
-4.97334,0.67192,-1.40914,-1.64038,-0.94960,2.25332,-0.63135
-4.97441,0.67172,-1.40954,-1.63992,-0.94979,2.25345,-0.63154
-4.97547,0.67165,-1.40966,-1.63977,-0.94985,2.25349,-0.63160
-4.97654,0.67144,-1.41013,-1.63921,-0.95007,2.25363,-0.63182
-4.97761,0.67123,-1.41059,-1.63866,-0.95029,2.25377,-0.63202
-4.97867,0.67102,-1.41105,-1.63812,-0.95051,2.25391,-0.63223
-4.97974,0.67082,-1.41149,-1.63758,-0.95072,2.25404,-0.63243
-4.98081,0.67062,-1.41193,-1.63706,-0.95093,2.25418,-0.63263
-4.98187,0.67042,-1.41236,-1.63654,-0.95114,2.25431,-0.63282
-4.98294,0.67023,-1.41278,-1.63604,-0.95134,2.25444,-0.63301
-4.98401,0.67003,-1.41319,-1.63554,-0.95155,2.25456,-0.63320
-4.98507,0.66985,-1.41360,-1.63505,-0.95175,2.25469,-0.63339
-4.98614,0.66966,-1.41400,-1.63456,-0.95194,2.25481,-0.63357
-4.98720,0.66957,-1.41420,-1.63432,-0.95205,2.25487,-0.63366
-4.98827,0.66938,-1.41465,-1.63377,-0.95226,2.25500,-0.63385
-4.98934,0.66919,-1.41509,-1.63323,-0.95248,2.25512,-0.63404
-4.99040,0.66900,-1.41552,-1.63270,-0.95269,2.25525,-0.63422
-4.99147,0.66882,-1.41594,-1.63218,-0.95291,2.25537,-0.63440
-4.99254,0.66864,-1.41636,-1.63167,-0.95311,2.25549,-0.63458
-4.99360,0.66846,-1.41676,-1.63116,-0.95332,2.25560,-0.63476
-4.99467,0.66829,-1.41717,-1.63067,-0.95352,2.25572,-0.63493
-4.99573,0.66815,-1.41748,-1.63027,-0.95368,2.25581,-0.63506
-4.99680,0.66798,-1.41789,-1.62977,-0.95389,2.25592,-0.63523
-4.99787,0.66781,-1.41829,-1.62927,-0.95409,2.25604,-0.63540
-4.99893,0.66774,-1.41844,-1.62908,-0.95418,2.25608,-0.63547
-5.00000,0.66759,-1.41880,-1.62863,-0.95436,2.25618,-0.63562
+0.00000,1.05847,-1.30589,-1.51747,-1.01343,1.97546,-0.31773
+0.01004,1.05782,-1.30623,-1.51735,-1.01338,1.97595,-0.31818
+0.02008,1.05718,-1.30656,-1.51723,-1.01334,1.97643,-0.31862
+0.03012,1.05656,-1.30689,-1.51712,-1.01329,1.97690,-0.31905
+0.04016,1.05594,-1.30721,-1.51701,-1.01325,1.97737,-0.31948
+0.05020,1.05533,-1.30752,-1.51689,-1.01321,1.97783,-0.31989
+0.06024,1.05473,-1.30784,-1.51678,-1.01317,1.97828,-0.32030
+0.07028,1.05415,-1.30814,-1.51667,-1.01313,1.97872,-0.32071
+0.08032,1.05357,-1.30844,-1.51656,-1.01309,1.97916,-0.32111
+0.09036,1.05300,-1.30874,-1.51645,-1.01306,1.97958,-0.32150
+0.10040,1.05245,-1.30903,-1.51635,-1.01302,1.98000,-0.32188
+0.11044,1.05190,-1.30932,-1.51624,-1.01299,1.98042,-0.32226
+0.12048,1.05136,-1.30960,-1.51613,-1.01296,1.98083,-0.32263
+0.13052,1.05083,-1.30988,-1.51603,-1.01293,1.98123,-0.32300
+0.14056,1.05031,-1.31015,-1.51593,-1.01290,1.98162,-0.32336
+0.15060,1.04980,-1.31042,-1.51583,-1.01287,1.98201,-0.32371
+0.16064,1.04930,-1.31068,-1.51572,-1.01285,1.98239,-0.32406
+0.17068,1.04880,-1.31094,-1.51562,-1.01282,1.98276,-0.32440
+0.18072,1.04832,-1.31119,-1.51553,-1.01280,1.98313,-0.32474
+0.19076,1.04784,-1.31145,-1.51543,-1.01277,1.98349,-0.32507
+0.20080,1.04737,-1.31169,-1.51533,-1.01275,1.98385,-0.32540
+0.21084,1.04708,-1.31184,-1.51527,-1.01274,1.98407,-0.32560
+0.22088,1.04649,-1.31214,-1.51518,-1.01270,1.98451,-0.32601
+0.23092,1.04591,-1.31243,-1.51509,-1.01266,1.98495,-0.32641
+0.24096,1.04533,-1.31271,-1.51501,-1.01262,1.98539,-0.32681
+0.25100,1.04477,-1.31299,-1.51492,-1.01258,1.98581,-0.32720
+0.26104,1.04422,-1.31327,-1.51483,-1.01254,1.98623,-0.32759
+0.27108,1.04368,-1.31354,-1.51474,-1.01251,1.98664,-0.32796
+0.28112,1.04314,-1.31380,-1.51466,-1.01248,1.98704,-0.32834
+0.29116,1.04262,-1.31407,-1.51457,-1.01245,1.98744,-0.32870
+0.30120,1.04210,-1.31432,-1.51449,-1.01242,1.98783,-0.32906
+0.31124,1.04160,-1.31458,-1.51440,-1.01239,1.98822,-0.32941
+0.32129,1.04110,-1.31483,-1.51432,-1.01236,1.98859,-0.32976
+0.33133,1.04061,-1.31507,-1.51424,-1.01233,1.98897,-0.33010
+0.34137,1.04013,-1.31531,-1.51416,-1.01230,1.98933,-0.33044
+0.35141,1.03965,-1.31555,-1.51408,-1.01228,1.98969,-0.33077
+0.36145,1.03909,-1.31583,-1.51399,-1.01224,1.99012,-0.33117
+0.37149,1.03767,-1.31648,-1.51389,-1.01209,1.99119,-0.33216
+0.38153,1.03627,-1.31712,-1.51378,-1.01195,1.99224,-0.33313
+0.39157,1.03489,-1.31776,-1.51367,-1.01181,1.99328,-0.33409
+0.40161,1.03354,-1.31838,-1.51357,-1.01168,1.99429,-0.33504
+0.41165,1.03222,-1.31899,-1.51346,-1.01155,1.99529,-0.33597
+0.42169,1.03092,-1.31960,-1.51335,-1.01142,1.99627,-0.33688
+0.43173,1.02964,-1.32019,-1.51324,-1.01130,1.99724,-0.33778
+0.44177,1.02838,-1.32078,-1.51313,-1.01118,1.99818,-0.33866
+0.45181,1.02715,-1.32136,-1.51302,-1.01107,1.99911,-0.33953
+0.46185,1.02594,-1.32193,-1.51291,-1.01096,2.00003,-0.34038
+0.47189,1.02475,-1.32249,-1.51279,-1.01086,2.00092,-0.34122
+0.48193,1.02358,-1.32304,-1.51268,-1.01075,2.00180,-0.34204
+0.49197,1.02243,-1.32358,-1.51257,-1.01066,2.00267,-0.34285
+0.50201,1.02130,-1.32412,-1.51246,-1.01056,2.00352,-0.34365
+0.51205,1.02019,-1.32464,-1.51235,-1.01047,2.00436,-0.34444
+0.52209,1.01910,-1.32516,-1.51224,-1.01038,2.00518,-0.34521
+0.53213,1.01803,-1.32567,-1.51212,-1.01030,2.00598,-0.34596
+0.54217,1.01698,-1.32617,-1.51201,-1.01022,2.00678,-0.34671
+0.55221,1.01595,-1.32667,-1.51190,-1.01014,2.00756,-0.34744
+0.56225,1.01493,-1.32716,-1.51179,-1.01006,2.00832,-0.34816
+0.57229,1.01394,-1.32763,-1.51168,-1.00999,2.00907,-0.34887
+0.58233,1.01296,-1.32811,-1.51157,-1.00992,2.00981,-0.34957
+0.59237,1.01200,-1.32857,-1.51146,-1.00985,2.01054,-0.35026
+0.60241,1.01105,-1.32903,-1.51135,-1.00979,2.01125,-0.35093
+0.61245,1.01012,-1.32948,-1.51124,-1.00973,2.01195,-0.35159
+0.62249,1.00921,-1.32992,-1.51113,-1.00967,2.01264,-0.35225
+0.63253,1.00831,-1.33035,-1.51102,-1.00961,2.01331,-0.35289
+0.64257,1.00743,-1.33078,-1.51091,-1.00956,2.01398,-0.35352
+0.65261,1.00657,-1.33120,-1.51080,-1.00951,2.01463,-0.35414
+0.66265,1.00572,-1.33162,-1.51069,-1.00946,2.01527,-0.35475
+0.67269,1.00488,-1.33203,-1.51059,-1.00941,2.01591,-0.35535
+0.68273,1.00406,-1.33243,-1.51048,-1.00936,2.01653,-0.35594
+0.69277,1.00325,-1.33283,-1.51037,-1.00932,2.01713,-0.35652
+0.70281,1.00246,-1.33321,-1.51027,-1.00928,2.01773,-0.35709
+0.71285,1.00168,-1.33360,-1.51016,-1.00924,2.01832,-0.35765
+0.72289,1.00092,-1.33397,-1.51006,-1.00920,2.01890,-0.35820
+0.73293,1.00016,-1.33435,-1.50995,-1.00916,2.01947,-0.35874
+0.74297,0.99942,-1.33471,-1.50985,-1.00913,2.02003,-0.35927
+0.75301,0.99870,-1.33507,-1.50975,-1.00909,2.02057,-0.35980
+0.76305,0.99799,-1.33542,-1.50965,-1.00906,2.02111,-0.36031
+0.77309,0.99728,-1.33577,-1.50955,-1.00903,2.02164,-0.36082
+0.78313,0.99659,-1.33611,-1.50945,-1.00901,2.02216,-0.36132
+0.79317,0.99592,-1.33645,-1.50935,-1.00898,2.02268,-0.36181
+0.80321,0.99525,-1.33678,-1.50925,-1.00895,2.02318,-0.36229
+0.81325,0.99460,-1.33710,-1.50915,-1.00893,2.02367,-0.36276
+0.82329,0.99396,-1.33742,-1.50905,-1.00891,2.02416,-0.36323
+0.83333,0.99332,-1.33774,-1.50895,-1.00889,2.02464,-0.36369
+0.84337,0.99270,-1.33805,-1.50886,-1.00887,2.02511,-0.36414
+0.85341,0.99209,-1.33835,-1.50876,-1.00885,2.02557,-0.36458
+0.86345,0.99149,-1.33865,-1.50867,-1.00883,2.02602,-0.36502
+0.87349,0.99091,-1.33895,-1.50857,-1.00882,2.02647,-0.36545
+0.88353,0.99033,-1.33924,-1.50848,-1.00880,2.02691,-0.36587
+0.89357,0.98976,-1.33953,-1.50839,-1.00879,2.02734,-0.36628
+0.90361,0.98920,-1.33981,-1.50830,-1.00877,2.02776,-0.36669
+0.91365,0.98865,-1.34008,-1.50821,-1.00876,2.02818,-0.36709
+0.92369,0.98811,-1.34036,-1.50812,-1.00875,2.02859,-0.36749
+0.93373,0.98758,-1.34062,-1.50803,-1.00874,2.02899,-0.36788
+0.94378,0.98706,-1.34089,-1.50794,-1.00873,2.02939,-0.36826
+0.95382,0.98654,-1.34114,-1.50785,-1.00872,2.02977,-0.36863
+0.96386,0.98604,-1.34140,-1.50776,-1.00872,2.03016,-0.36900
+0.97390,0.98554,-1.34165,-1.50768,-1.00871,2.03053,-0.36936
+0.98394,0.98506,-1.34190,-1.50759,-1.00871,2.03090,-0.36972
+0.99398,0.98458,-1.34214,-1.50751,-1.00870,2.03126,-0.37007
+1.00402,0.98411,-1.34238,-1.50742,-1.00870,2.03162,-0.37042
+1.01406,0.98365,-1.34261,-1.50734,-1.00869,2.03197,-0.37076
+1.02410,0.98319,-1.34284,-1.50726,-1.00869,2.03232,-0.37109
+1.03414,0.98295,-1.34296,-1.50722,-1.00869,2.03250,-0.37127
+1.04418,0.98231,-1.34327,-1.50715,-1.00865,2.03298,-0.37174
+1.05422,0.98168,-1.34357,-1.50708,-1.00862,2.03345,-0.37219
+1.06426,0.98107,-1.34387,-1.50701,-1.00859,2.03392,-0.37265
+1.07430,0.98046,-1.34416,-1.50695,-1.00856,2.03438,-0.37309
+1.08434,0.97987,-1.34444,-1.50688,-1.00854,2.03482,-0.37353
+1.09438,0.97928,-1.34473,-1.50681,-1.00851,2.03526,-0.37395
+1.10442,0.97871,-1.34500,-1.50674,-1.00849,2.03570,-0.37438
+1.11446,0.97814,-1.34528,-1.50668,-1.00846,2.03612,-0.37479
+1.12450,0.97759,-1.34555,-1.50661,-1.00844,2.03654,-0.37520
+1.13454,0.97704,-1.34581,-1.50655,-1.00842,2.03695,-0.37560
+1.14458,0.97651,-1.34607,-1.50648,-1.00840,2.03736,-0.37599
+1.15462,0.97598,-1.34633,-1.50642,-1.00838,2.03775,-0.37638
+1.16466,0.97546,-1.34658,-1.50635,-1.00836,2.03815,-0.37676
+1.17470,0.97495,-1.34682,-1.50629,-1.00835,2.03853,-0.37714
+1.18474,0.97445,-1.34707,-1.50622,-1.00833,2.03891,-0.37751
+1.19478,0.97396,-1.34731,-1.50616,-1.00831,2.03928,-0.37787
+1.20482,0.97348,-1.34754,-1.50610,-1.00830,2.03964,-0.37823
+1.21486,0.97300,-1.34777,-1.50603,-1.00829,2.04000,-0.37858
+1.22490,0.97254,-1.34800,-1.50597,-1.00828,2.04035,-0.37892
+1.23494,0.97208,-1.34823,-1.50591,-1.00826,2.04070,-0.37926
+1.24498,0.97163,-1.34845,-1.50585,-1.00825,2.04104,-0.37960
+1.25502,0.97136,-1.34858,-1.50581,-1.00824,2.04124,-0.37979
+1.26506,0.97005,-1.34925,-1.50566,-1.00815,2.04221,-0.38075
+1.27510,0.96877,-1.34991,-1.50551,-1.00806,2.04317,-0.38170
+1.28514,0.96750,-1.35056,-1.50536,-1.00798,2.04411,-0.38262
+1.29518,0.96626,-1.35120,-1.50521,-1.00789,2.04503,-0.38354
+1.30522,0.96505,-1.35184,-1.50506,-1.00782,2.04594,-0.38443
+1.31526,0.96385,-1.35246,-1.50491,-1.00774,2.04682,-0.38531
+1.32530,0.96268,-1.35307,-1.50476,-1.00767,2.04770,-0.38618
+1.33534,0.96152,-1.35367,-1.50461,-1.00761,2.04855,-0.38703
+1.34538,0.96039,-1.35426,-1.50446,-1.00754,2.04940,-0.38787
+1.35542,0.95928,-1.35484,-1.50432,-1.00748,2.05022,-0.38869
+1.36546,0.95819,-1.35542,-1.50417,-1.00743,2.05103,-0.38950
+1.37550,0.95712,-1.35598,-1.50402,-1.00737,2.05183,-0.39030
+1.38554,0.95606,-1.35654,-1.50387,-1.00732,2.05261,-0.39108
+1.39558,0.95503,-1.35708,-1.50372,-1.00727,2.05338,-0.39185
+1.40562,0.95401,-1.35762,-1.50358,-1.00722,2.05414,-0.39261
+1.41566,0.95302,-1.35815,-1.50343,-1.00718,2.05488,-0.39335
+1.42570,0.95204,-1.35867,-1.50329,-1.00714,2.05561,-0.39408
+1.43574,0.95107,-1.35919,-1.50314,-1.00710,2.05633,-0.39480
+1.44578,0.95013,-1.35969,-1.50300,-1.00706,2.05703,-0.39551
+1.45582,0.94920,-1.36019,-1.50286,-1.00703,2.05772,-0.39620
+1.46586,0.94829,-1.36067,-1.50272,-1.00700,2.05840,-0.39688
+1.47590,0.94739,-1.36115,-1.50258,-1.00697,2.05906,-0.39756
+1.48594,0.94651,-1.36163,-1.50244,-1.00694,2.05972,-0.39822
+1.49598,0.94565,-1.36209,-1.50230,-1.00692,2.06036,-0.39886
+1.50602,0.94480,-1.36255,-1.50216,-1.00689,2.06099,-0.39950
+1.51606,0.94397,-1.36300,-1.50202,-1.00687,2.06161,-0.40013
+1.52610,0.94315,-1.36344,-1.50188,-1.00685,2.06222,-0.40075
+1.53614,0.94234,-1.36388,-1.50175,-1.00683,2.06282,-0.40135
+1.54618,0.94155,-1.36431,-1.50161,-1.00681,2.06341,-0.40195
+1.55622,0.94077,-1.36473,-1.50148,-1.00680,2.06399,-0.40254
+1.56627,0.94001,-1.36514,-1.50135,-1.00679,2.06456,-0.40311
+1.57631,0.93926,-1.36555,-1.50122,-1.00677,2.06512,-0.40368
+1.58635,0.93853,-1.36595,-1.50108,-1.00676,2.06566,-0.40424
+1.59639,0.93780,-1.36635,-1.50096,-1.00675,2.06620,-0.40478
+1.60643,0.93709,-1.36673,-1.50083,-1.00675,2.06673,-0.40532
+1.61647,0.93639,-1.36712,-1.50070,-1.00674,2.06725,-0.40585
+1.62651,0.93571,-1.36749,-1.50057,-1.00674,2.06776,-0.40637
+1.63655,0.93503,-1.36786,-1.50045,-1.00673,2.06826,-0.40688
+1.64659,0.93437,-1.36822,-1.50032,-1.00673,2.06876,-0.40739
+1.65663,0.93372,-1.36858,-1.50020,-1.00673,2.06924,-0.40788
+1.66667,0.93308,-1.36893,-1.50008,-1.00673,2.06972,-0.40837
+1.67671,0.93246,-1.36928,-1.49996,-1.00673,2.07018,-0.40885
+1.68675,0.93184,-1.36962,-1.49984,-1.00673,2.07064,-0.40932
+1.69679,0.93123,-1.36995,-1.49972,-1.00673,2.07110,-0.40978
+1.70683,0.93064,-1.37028,-1.49960,-1.00674,2.07154,-0.41023
+1.71687,0.93005,-1.37061,-1.49948,-1.00674,2.07198,-0.41068
+1.72691,0.92948,-1.37092,-1.49937,-1.00675,2.07240,-0.41112
+1.73695,0.92891,-1.37124,-1.49925,-1.00675,2.07283,-0.41155
+1.74699,0.92836,-1.37154,-1.49914,-1.00676,2.07324,-0.41198
+1.75703,0.92781,-1.37185,-1.49903,-1.00677,2.07365,-0.41239
+1.76707,0.92728,-1.37214,-1.49891,-1.00678,2.07405,-0.41281
+1.77711,0.92675,-1.37244,-1.49880,-1.00678,2.07444,-0.41321
+1.78715,0.92623,-1.37273,-1.49869,-1.00679,2.07482,-0.41361
+1.79719,0.92573,-1.37301,-1.49859,-1.00681,2.07520,-0.41400
+1.80723,0.92523,-1.37329,-1.49848,-1.00682,2.07558,-0.41438
+1.81727,0.92474,-1.37356,-1.49837,-1.00683,2.07594,-0.41476
+1.82731,0.92425,-1.37383,-1.49827,-1.00684,2.07630,-0.41513
+1.83735,0.92378,-1.37409,-1.49816,-1.00685,2.07666,-0.41549
+1.84739,0.92331,-1.37435,-1.49806,-1.00687,2.07700,-0.41585
+1.85743,0.92286,-1.37461,-1.49796,-1.00688,2.07735,-0.41621
+1.86747,0.92241,-1.37486,-1.49786,-1.00690,2.07768,-0.41655
+1.87751,0.92196,-1.37511,-1.49776,-1.00691,2.07801,-0.41689
+1.88755,0.92153,-1.37535,-1.49766,-1.00693,2.07834,-0.41723
+1.89759,0.92110,-1.37559,-1.49756,-1.00694,2.07866,-0.41756
+1.90763,0.92098,-1.37567,-1.49753,-1.00694,2.07874,-0.41765
+1.91767,0.91979,-1.37645,-1.49717,-1.00696,2.07962,-0.41856
+1.92771,0.91862,-1.37721,-1.49682,-1.00698,2.08048,-0.41946
+1.93775,0.91747,-1.37796,-1.49647,-1.00700,2.08132,-0.42034
+1.94779,0.91634,-1.37870,-1.49612,-1.00702,2.08215,-0.42120
+1.95783,0.91523,-1.37943,-1.49578,-1.00705,2.08296,-0.42205
+1.96787,0.91414,-1.38015,-1.49544,-1.00707,2.08376,-0.42289
+1.97791,0.91307,-1.38085,-1.49510,-1.00710,2.08455,-0.42371
+1.98795,0.91203,-1.38154,-1.49477,-1.00713,2.08532,-0.42451
+1.99799,0.91100,-1.38222,-1.49444,-1.00716,2.08607,-0.42531
+2.00803,0.90998,-1.38289,-1.49411,-1.00720,2.08681,-0.42609
+2.01807,0.90899,-1.38355,-1.49379,-1.00723,2.08754,-0.42685
+2.02811,0.90802,-1.38420,-1.49347,-1.00727,2.08826,-0.42761
+2.03815,0.90706,-1.38484,-1.49315,-1.00731,2.08896,-0.42835
+2.04819,0.90612,-1.38547,-1.49284,-1.00735,2.08965,-0.42908
+2.05823,0.90520,-1.38608,-1.49253,-1.00739,2.09033,-0.42979
+2.06827,0.90429,-1.38669,-1.49223,-1.00743,2.09099,-0.43049
+2.07831,0.90340,-1.38729,-1.49192,-1.00747,2.09164,-0.43119
+2.08835,0.90253,-1.38787,-1.49162,-1.00752,2.09229,-0.43187
+2.09839,0.90167,-1.38845,-1.49133,-1.00756,2.09291,-0.43253
+2.10843,0.90082,-1.38902,-1.49104,-1.00761,2.09353,-0.43319
+2.11847,0.90000,-1.38958,-1.49075,-1.00766,2.09414,-0.43384
+2.12851,0.89918,-1.39013,-1.49046,-1.00771,2.09474,-0.43447
+2.13855,0.89839,-1.39067,-1.49018,-1.00775,2.09532,-0.43509
+2.14859,0.89760,-1.39120,-1.48990,-1.00780,2.09590,-0.43571
+2.15863,0.89683,-1.39172,-1.48963,-1.00786,2.09646,-0.43631
+2.16867,0.89607,-1.39223,-1.48935,-1.00791,2.09702,-0.43690
+2.17871,0.89533,-1.39274,-1.48908,-1.00796,2.09756,-0.43748
+2.18876,0.89460,-1.39323,-1.48882,-1.00801,2.09810,-0.43806
+2.19880,0.89389,-1.39372,-1.48856,-1.00806,2.09863,-0.43862
+2.20884,0.89318,-1.39420,-1.48830,-1.00812,2.09914,-0.43917
+2.21888,0.89249,-1.39467,-1.48804,-1.00817,2.09965,-0.43972
+2.22892,0.89181,-1.39514,-1.48779,-1.00823,2.10015,-0.44025
+2.23896,0.89114,-1.39560,-1.48753,-1.00828,2.10064,-0.44078
+2.24900,0.89049,-1.39604,-1.48729,-1.00834,2.10112,-0.44129
+2.25904,0.88984,-1.39649,-1.48704,-1.00839,2.10159,-0.44180
+2.26908,0.88921,-1.39692,-1.48680,-1.00845,2.10206,-0.44230
+2.27912,0.88859,-1.39735,-1.48656,-1.00851,2.10251,-0.44279
+2.28916,0.88798,-1.39777,-1.48633,-1.00856,2.10296,-0.44328
+2.29920,0.88738,-1.39818,-1.48610,-1.00862,2.10340,-0.44375
+2.30924,0.88679,-1.39858,-1.48587,-1.00868,2.10384,-0.44422
+2.31928,0.88621,-1.39898,-1.48564,-1.00874,2.10426,-0.44468
+2.32932,0.88565,-1.39937,-1.48541,-1.00879,2.10468,-0.44513
+2.33936,0.88509,-1.39976,-1.48519,-1.00885,2.10509,-0.44557
+2.34940,0.88454,-1.40014,-1.48498,-1.00891,2.10549,-0.44601
+2.35944,0.88400,-1.40051,-1.48476,-1.00897,2.10589,-0.44643
+2.36948,0.88347,-1.40088,-1.48455,-1.00902,2.10628,-0.44686
+2.37952,0.88295,-1.40124,-1.48434,-1.00908,2.10666,-0.44727
+2.38956,0.88244,-1.40159,-1.48413,-1.00914,2.10703,-0.44768
+2.39960,0.88194,-1.40194,-1.48392,-1.00920,2.10740,-0.44808
+2.40964,0.88145,-1.40228,-1.48372,-1.00926,2.10777,-0.44847
+2.41968,0.88096,-1.40262,-1.48352,-1.00931,2.10812,-0.44886
+2.42972,0.88049,-1.40295,-1.48333,-1.00937,2.10847,-0.44924
+2.43976,0.88002,-1.40328,-1.48313,-1.00943,2.10882,-0.44961
+2.44980,0.87956,-1.40360,-1.48294,-1.00949,2.10915,-0.44998
+2.45984,0.87911,-1.40391,-1.48275,-1.00955,2.10949,-0.45034
+2.46988,0.87867,-1.40422,-1.48256,-1.00960,2.10981,-0.45070
+2.47992,0.87823,-1.40452,-1.48238,-1.00966,2.11013,-0.45105
+2.48996,0.87780,-1.40482,-1.48220,-1.00972,2.11045,-0.45139
+2.50000,0.87738,-1.40512,-1.48202,-1.00977,2.11076,-0.45173
+2.51004,0.87697,-1.40541,-1.48184,-1.00983,2.11106,-0.45206
+2.52008,0.87656,-1.40569,-1.48166,-1.00989,2.11136,-0.45239
+2.53012,0.87616,-1.40597,-1.48149,-1.00994,2.11166,-0.45271
+2.54016,0.87595,-1.40612,-1.48140,-1.00997,2.11181,-0.45288
+2.55020,0.87542,-1.40649,-1.48119,-1.01003,2.11220,-0.45330
+2.56024,0.87489,-1.40686,-1.48098,-1.01008,2.11259,-0.45373
+2.57028,0.87437,-1.40722,-1.48078,-1.01013,2.11297,-0.45414
+2.58032,0.87387,-1.40758,-1.48058,-1.01019,2.11334,-0.45455
+2.59036,0.87337,-1.40793,-1.48038,-1.01024,2.11370,-0.45495
+2.60040,0.87288,-1.40827,-1.48018,-1.01029,2.11406,-0.45534
+2.61044,0.87240,-1.40861,-1.47999,-1.01035,2.11441,-0.45573
+2.62048,0.87192,-1.40894,-1.47979,-1.01040,2.11476,-0.45611
+2.63052,0.87146,-1.40927,-1.47960,-1.01046,2.11510,-0.45648
+2.64056,0.87100,-1.40959,-1.47942,-1.01051,2.11543,-0.45685
+2.65060,0.87055,-1.40990,-1.47923,-1.01056,2.11576,-0.45721
+2.66064,0.87011,-1.41021,-1.47905,-1.01062,2.11608,-0.45756
+2.67068,0.86968,-1.41052,-1.47887,-1.01067,2.11640,-0.45791
+2.68072,0.86926,-1.41082,-1.47869,-1.01073,2.11671,-0.45826
+2.69076,0.86884,-1.41111,-1.47852,-1.01078,2.11702,-0.45859
+2.70080,0.86843,-1.41140,-1.47834,-1.01083,2.11732,-0.45893
+2.71084,0.86802,-1.41169,-1.47817,-1.01089,2.11761,-0.45925
+2.72088,0.86763,-1.41197,-1.47800,-1.01094,2.11790,-0.45957
+2.73092,0.86730,-1.41220,-1.47787,-1.01098,2.11814,-0.45984
+2.74096,0.86636,-1.41289,-1.47752,-1.01103,2.11882,-0.46059
+2.75100,0.86543,-1.41356,-1.47717,-1.01109,2.11949,-0.46133
+2.76104,0.86452,-1.41422,-1.47682,-1.01115,2.12014,-0.46206
+2.77108,0.86363,-1.41487,-1.47648,-1.01121,2.12078,-0.46277
+2.78112,0.86275,-1.41551,-1.47614,-1.01127,2.12142,-0.46348
+2.79116,0.86190,-1.41613,-1.47581,-1.01133,2.12203,-0.46417
+2.80120,0.86105,-1.41675,-1.47548,-1.01139,2.12264,-0.46485
+2.81124,0.86022,-1.41736,-1.47515,-1.01145,2.12324,-0.46551
+2.82129,0.85941,-1.41796,-1.47483,-1.01152,2.12383,-0.46617
+2.83133,0.85861,-1.41854,-1.47451,-1.01158,2.12440,-0.46681
+2.84137,0.85783,-1.41912,-1.47420,-1.01165,2.12497,-0.46745
+2.85141,0.85706,-1.41969,-1.47389,-1.01171,2.12552,-0.46807
+2.86145,0.85630,-1.42025,-1.47358,-1.01178,2.12607,-0.46868
+2.87149,0.85556,-1.42080,-1.47328,-1.01185,2.12660,-0.46928
+2.88153,0.85483,-1.42134,-1.47298,-1.01191,2.12713,-0.46988
+2.89157,0.85411,-1.42187,-1.47268,-1.01198,2.12764,-0.47046
+2.90161,0.85341,-1.42239,-1.47239,-1.01205,2.12815,-0.47103
+2.91165,0.85272,-1.42290,-1.47210,-1.01212,2.12865,-0.47159
+2.92169,0.85204,-1.42341,-1.47181,-1.01219,2.12914,-0.47214
+2.93173,0.85137,-1.42390,-1.47153,-1.01226,2.12962,-0.47268
+2.94177,0.85072,-1.42439,-1.47125,-1.01233,2.13009,-0.47322
+2.95181,0.85008,-1.42487,-1.47098,-1.01240,2.13055,-0.47374
+2.96185,0.84945,-1.42534,-1.47070,-1.01247,2.13101,-0.47426
+2.97189,0.84883,-1.42581,-1.47044,-1.01254,2.13146,-0.47476
+2.98193,0.84822,-1.42626,-1.47017,-1.01261,2.13189,-0.47526
+2.99197,0.84762,-1.42671,-1.46991,-1.01268,2.13233,-0.47575
+3.00201,0.84703,-1.42715,-1.46965,-1.01275,2.13275,-0.47623
+3.01205,0.84646,-1.42758,-1.46940,-1.01282,2.13316,-0.47670
+3.02209,0.84589,-1.42801,-1.46914,-1.01289,2.13357,-0.47717
+3.03213,0.84533,-1.42843,-1.46890,-1.01296,2.13397,-0.47762
+3.04217,0.84479,-1.42884,-1.46865,-1.01303,2.13437,-0.47807
+3.05221,0.84425,-1.42924,-1.46841,-1.01310,2.13476,-0.47851
+3.06225,0.84372,-1.42964,-1.46817,-1.01317,2.13514,-0.47895
+3.07229,0.84321,-1.43003,-1.46793,-1.01325,2.13551,-0.47937
+3.08233,0.84270,-1.43041,-1.46770,-1.01332,2.13588,-0.47979
+3.09237,0.84220,-1.43079,-1.46747,-1.01339,2.13624,-0.48021
+3.10241,0.84171,-1.43116,-1.46724,-1.01346,2.13659,-0.48061
+3.11245,0.84123,-1.43153,-1.46702,-1.01353,2.13694,-0.48101
+3.12249,0.84075,-1.43189,-1.46680,-1.01360,2.13728,-0.48140
+3.13253,0.84029,-1.43224,-1.46658,-1.01367,2.13762,-0.48178
+3.14257,0.83983,-1.43259,-1.46636,-1.01373,2.13795,-0.48216
+3.15261,0.83938,-1.43293,-1.46615,-1.01380,2.13827,-0.48253
+3.16265,0.83894,-1.43326,-1.46594,-1.01387,2.13859,-0.48290
+3.17269,0.83851,-1.43359,-1.46573,-1.01394,2.13890,-0.48326
+3.18273,0.83808,-1.43391,-1.46553,-1.01401,2.13921,-0.48361
+3.19277,0.83766,-1.43423,-1.46533,-1.01408,2.13951,-0.48396
+3.20281,0.83725,-1.43455,-1.46513,-1.01415,2.13981,-0.48430
+3.21285,0.83685,-1.43485,-1.46493,-1.01421,2.14010,-0.48464
+3.22289,0.83645,-1.43516,-1.46474,-1.01428,2.14039,-0.48497
+3.23293,0.83606,-1.43545,-1.46455,-1.01435,2.14067,-0.48529
+3.24297,0.83568,-1.43574,-1.46436,-1.01441,2.14095,-0.48561
+3.25301,0.83531,-1.43603,-1.46417,-1.01448,2.14122,-0.48592
+3.26305,0.83519,-1.43612,-1.46412,-1.01450,2.14131,-0.48602
+3.27309,0.83473,-1.43647,-1.46391,-1.01456,2.14164,-0.48640
+3.28313,0.83428,-1.43681,-1.46371,-1.01463,2.14196,-0.48678
+3.29317,0.83384,-1.43714,-1.46350,-1.01469,2.14228,-0.48715
+3.30321,0.83340,-1.43747,-1.46331,-1.01475,2.14259,-0.48751
+3.31325,0.83297,-1.43779,-1.46311,-1.01482,2.14290,-0.48786
+3.32329,0.83256,-1.43811,-1.46292,-1.01488,2.14320,-0.48821
+3.33333,0.83214,-1.43842,-1.46273,-1.01494,2.14350,-0.48855
+3.34337,0.83174,-1.43873,-1.46254,-1.01500,2.14379,-0.48889
+3.35341,0.83134,-1.43903,-1.46235,-1.01507,2.14407,-0.48922
+3.36345,0.83095,-1.43933,-1.46217,-1.01513,2.14435,-0.48955
+3.37349,0.83057,-1.43962,-1.46199,-1.01519,2.14463,-0.48987
+3.38353,0.83019,-1.43990,-1.46181,-1.01525,2.14490,-0.49019
+3.39357,0.82994,-1.44009,-1.46170,-1.01529,2.14508,-0.49039
+3.40361,0.82933,-1.44055,-1.46146,-1.01535,2.14551,-0.49090
+3.41365,0.82874,-1.44099,-1.46122,-1.01540,2.14594,-0.49140
+3.42369,0.82815,-1.44143,-1.46098,-1.01546,2.14636,-0.49188
+3.43373,0.82757,-1.44187,-1.46075,-1.01552,2.14677,-0.49237
+3.44378,0.82700,-1.44229,-1.46052,-1.01558,2.14718,-0.49284
+3.45382,0.82645,-1.44271,-1.46030,-1.01564,2.14757,-0.49330
+3.46386,0.82590,-1.44312,-1.46007,-1.01570,2.14796,-0.49376
+3.47390,0.82536,-1.44353,-1.45985,-1.01575,2.14835,-0.49421
+3.48394,0.82483,-1.44392,-1.45963,-1.01581,2.14872,-0.49465
+3.49398,0.82432,-1.44431,-1.45941,-1.01587,2.14909,-0.49508
+3.50402,0.82381,-1.44470,-1.45920,-1.01593,2.14946,-0.49551
+3.51406,0.82331,-1.44507,-1.45899,-1.01599,2.14981,-0.49593
+3.52410,0.82282,-1.44545,-1.45878,-1.01605,2.15016,-0.49634
+3.53414,0.82233,-1.44581,-1.45858,-1.01611,2.15051,-0.49674
+3.54418,0.82186,-1.44617,-1.45837,-1.01617,2.15085,-0.49714
+3.55422,0.82139,-1.44652,-1.45817,-1.01623,2.15118,-0.49753
+3.56426,0.82094,-1.44687,-1.45798,-1.01629,2.15151,-0.49791
+3.57430,0.82049,-1.44721,-1.45778,-1.01635,2.15183,-0.49829
+3.58434,0.82005,-1.44754,-1.45759,-1.01641,2.15214,-0.49866
+3.59438,0.81961,-1.44787,-1.45740,-1.01647,2.15245,-0.49903
+3.60442,0.81919,-1.44819,-1.45721,-1.01653,2.15276,-0.49939
+3.61446,0.81877,-1.44851,-1.45703,-1.01659,2.15305,-0.49974
+3.62450,0.81836,-1.44882,-1.45684,-1.01665,2.15335,-0.50008
+3.63454,0.81796,-1.44913,-1.45666,-1.01670,2.15364,-0.50042
+3.64458,0.81756,-1.44943,-1.45648,-1.01676,2.15392,-0.50076
+3.65462,0.81717,-1.44973,-1.45631,-1.01682,2.15420,-0.50109
+3.66466,0.81679,-1.45002,-1.45613,-1.01688,2.15447,-0.50141
+3.67470,0.81641,-1.45031,-1.45596,-1.01694,2.15474,-0.50173
+3.68474,0.81604,-1.45059,-1.45579,-1.01700,2.15500,-0.50204
+3.69478,0.81591,-1.45069,-1.45574,-1.01701,2.15510,-0.50215
+3.70482,0.81535,-1.45111,-1.45552,-1.01707,2.15549,-0.50263
+3.71486,0.81480,-1.45153,-1.45530,-1.01712,2.15589,-0.50309
+3.72490,0.81426,-1.45194,-1.45508,-1.01718,2.15627,-0.50355
+3.73494,0.81372,-1.45235,-1.45487,-1.01723,2.15665,-0.50400
+3.74498,0.81320,-1.45274,-1.45465,-1.01729,2.15702,-0.50444
+3.75502,0.81268,-1.45314,-1.45445,-1.01735,2.15739,-0.50488
+3.76506,0.81218,-1.45352,-1.45424,-1.01740,2.15774,-0.50530
+3.77510,0.81168,-1.45390,-1.45404,-1.01746,2.15810,-0.50572
+3.78514,0.81119,-1.45427,-1.45383,-1.01752,2.15844,-0.50613
+3.79518,0.81072,-1.45463,-1.45364,-1.01757,2.15878,-0.50654
+3.80522,0.81025,-1.45499,-1.45344,-1.01763,2.15911,-0.50694
+3.81526,0.80978,-1.45534,-1.45325,-1.01769,2.15944,-0.50733
+3.82530,0.80933,-1.45569,-1.45305,-1.01774,2.15976,-0.50771
+3.83534,0.80888,-1.45603,-1.45286,-1.01780,2.16008,-0.50809
+3.84538,0.80845,-1.45636,-1.45268,-1.01786,2.16039,-0.50847
+3.85542,0.80802,-1.45669,-1.45249,-1.01791,2.16070,-0.50883
+3.86546,0.80760,-1.45701,-1.45231,-1.01797,2.16100,-0.50919
+3.87550,0.80718,-1.45733,-1.45213,-1.01802,2.16129,-0.50954
+3.88554,0.80677,-1.45764,-1.45195,-1.01808,2.16158,-0.50989
+3.89558,0.80637,-1.45795,-1.45178,-1.01814,2.16186,-0.51023
+3.90562,0.80598,-1.45825,-1.45161,-1.01819,2.16214,-0.51057
+3.91566,0.80559,-1.45855,-1.45144,-1.01825,2.16242,-0.51090
+3.92570,0.80521,-1.45884,-1.45127,-1.01831,2.16269,-0.51122
+3.93574,0.80484,-1.45913,-1.45110,-1.01836,2.16295,-0.51154
+3.94578,0.80448,-1.45941,-1.45094,-1.01842,2.16321,-0.51185
+3.95582,0.80424,-1.45959,-1.45083,-1.01845,2.16338,-0.51206
+3.96586,0.80366,-1.46004,-1.45061,-1.01850,2.16379,-0.51255
+3.97590,0.80309,-1.46047,-1.45039,-1.01856,2.16419,-0.51303
+3.98594,0.80253,-1.46090,-1.45017,-1.01861,2.16459,-0.51351
+3.99598,0.80198,-1.46132,-1.44995,-1.01867,2.16497,-0.51398
+4.00602,0.80144,-1.46174,-1.44974,-1.01872,2.16535,-0.51444
+4.01606,0.80091,-1.46214,-1.44952,-1.01878,2.16573,-0.51489
+4.02610,0.80039,-1.46254,-1.44931,-1.01883,2.16609,-0.51533
+4.03614,0.79988,-1.46294,-1.44911,-1.01889,2.16645,-0.51577
+4.04618,0.79937,-1.46332,-1.44890,-1.01894,2.16681,-0.51620
+4.05622,0.79888,-1.46370,-1.44870,-1.01900,2.16715,-0.51662
+4.06627,0.79840,-1.46408,-1.44850,-1.01905,2.16750,-0.51704
+4.07631,0.79792,-1.46444,-1.44831,-1.01911,2.16783,-0.51744
+4.08635,0.79745,-1.46480,-1.44811,-1.01917,2.16816,-0.51785
+4.09639,0.79699,-1.46516,-1.44792,-1.01922,2.16848,-0.51824
+4.10643,0.79654,-1.46551,-1.44773,-1.01928,2.16880,-0.51863
+4.11647,0.79610,-1.46585,-1.44754,-1.01934,2.16911,-0.51901
+4.12651,0.79567,-1.46619,-1.44736,-1.01939,2.16942,-0.51938
+4.13655,0.79524,-1.46652,-1.44718,-1.01945,2.16972,-0.51975
+4.14659,0.79482,-1.46684,-1.44700,-1.01950,2.17002,-0.52011
+4.15663,0.79441,-1.46716,-1.44682,-1.01956,2.17031,-0.52046
+4.16667,0.79400,-1.46748,-1.44664,-1.01962,2.17059,-0.52081
+4.17671,0.79361,-1.46779,-1.44647,-1.01967,2.17087,-0.52115
+4.18675,0.79322,-1.46809,-1.44630,-1.01973,2.17115,-0.52149
+4.19679,0.79283,-1.46839,-1.44613,-1.01978,2.17142,-0.52182
+4.20683,0.79246,-1.46868,-1.44596,-1.01984,2.17168,-0.52215
+4.21687,0.79209,-1.46897,-1.44580,-1.01989,2.17194,-0.52247
+4.22691,0.79172,-1.46925,-1.44563,-1.01995,2.17220,-0.52278
+4.23695,0.79136,-1.46954,-1.44547,-1.02000,2.17246,-0.52310
+4.24699,0.79091,-1.46989,-1.44529,-1.02006,2.17278,-0.52349
+4.25703,0.79046,-1.47023,-1.44511,-1.02011,2.17309,-0.52387
+4.26707,0.79003,-1.47057,-1.44493,-1.02016,2.17339,-0.52425
+4.27711,0.78960,-1.47090,-1.44476,-1.02021,2.17369,-0.52462
+4.28715,0.78918,-1.47122,-1.44458,-1.02027,2.17399,-0.52498
+4.29719,0.78877,-1.47154,-1.44441,-1.02032,2.17428,-0.52534
+4.30723,0.78836,-1.47185,-1.44424,-1.02037,2.17456,-0.52569
+4.31727,0.78796,-1.47216,-1.44408,-1.02042,2.17484,-0.52603
+4.32731,0.78757,-1.47246,-1.44391,-1.02048,2.17512,-0.52637
+4.33735,0.78719,-1.47276,-1.44375,-1.02053,2.17539,-0.52671
+4.34739,0.78681,-1.47305,-1.44359,-1.02058,2.17565,-0.52703
+4.35743,0.78644,-1.47334,-1.44343,-1.02063,2.17591,-0.52735
+4.36747,0.78608,-1.47362,-1.44327,-1.02069,2.17617,-0.52767
+4.37751,0.78572,-1.47390,-1.44312,-1.02074,2.17642,-0.52798
+4.38755,0.78557,-1.47402,-1.44305,-1.02076,2.17653,-0.52811
+4.39759,0.78513,-1.47437,-1.44286,-1.02082,2.17684,-0.52850
+4.40763,0.78469,-1.47472,-1.44267,-1.02087,2.17714,-0.52887
+4.41767,0.78427,-1.47505,-1.44249,-1.02093,2.17744,-0.52924
+4.42771,0.78385,-1.47539,-1.44230,-1.02098,2.17773,-0.52961
+4.43775,0.78344,-1.47571,-1.44212,-1.02104,2.17802,-0.52997
+4.44779,0.78303,-1.47604,-1.44194,-1.02110,2.17830,-0.53032
+4.45783,0.78264,-1.47635,-1.44177,-1.02115,2.17858,-0.53066
+4.46787,0.78224,-1.47666,-1.44159,-1.02121,2.17886,-0.53100
+4.47791,0.78186,-1.47697,-1.44142,-1.02126,2.17912,-0.53134
+4.48795,0.78149,-1.47727,-1.44125,-1.02132,2.17939,-0.53167
+4.49799,0.78112,-1.47756,-1.44108,-1.02137,2.17965,-0.53199
+4.50803,0.78075,-1.47785,-1.44091,-1.02143,2.17990,-0.53231
+4.51807,0.78040,-1.47814,-1.44075,-1.02148,2.18015,-0.53262
+4.52811,0.78004,-1.47842,-1.44059,-1.02154,2.18040,-0.53293
+4.53815,0.77965,-1.47874,-1.44042,-1.02159,2.18068,-0.53327
+4.54819,0.77926,-1.47904,-1.44025,-1.02165,2.18095,-0.53361
+4.55823,0.77888,-1.47935,-1.44008,-1.02170,2.18121,-0.53394
+4.56827,0.77851,-1.47964,-1.43991,-1.02175,2.18147,-0.53427
+4.57831,0.77814,-1.47993,-1.43975,-1.02181,2.18173,-0.53459
+4.58835,0.77778,-1.48022,-1.43959,-1.02186,2.18198,-0.53490
+4.59839,0.77743,-1.48050,-1.43943,-1.02192,2.18223,-0.53521
+4.60843,0.77721,-1.48067,-1.43933,-1.02195,2.18238,-0.53540
+4.61847,0.77680,-1.48099,-1.43917,-1.02200,2.18266,-0.53576
+4.62851,0.77640,-1.48131,-1.43901,-1.02204,2.18294,-0.53611
+4.63855,0.77601,-1.48161,-1.43885,-1.02209,2.18322,-0.53645
+4.64859,0.77562,-1.48192,-1.43869,-1.02214,2.18349,-0.53679
+4.65863,0.77525,-1.48221,-1.43853,-1.02219,2.18375,-0.53713
+4.66867,0.77487,-1.48251,-1.43837,-1.02224,2.18401,-0.53745
+4.67871,0.77451,-1.48279,-1.43822,-1.02229,2.18427,-0.53777
+4.68876,0.77415,-1.48307,-1.43807,-1.02234,2.18452,-0.53809
+4.69880,0.77379,-1.48335,-1.43792,-1.02239,2.18477,-0.53840
+4.70884,0.77358,-1.48352,-1.43783,-1.02242,2.18491,-0.53859
+4.71888,0.77319,-1.48383,-1.43767,-1.02247,2.18519,-0.53893
+4.72892,0.77280,-1.48413,-1.43752,-1.02251,2.18546,-0.53927
+4.73896,0.77242,-1.48443,-1.43736,-1.02256,2.18572,-0.53960
+4.74900,0.77205,-1.48472,-1.43721,-1.02261,2.18598,-0.53993
+4.75904,0.77169,-1.48500,-1.43706,-1.02266,2.18623,-0.54025
+4.76908,0.77133,-1.48529,-1.43691,-1.02271,2.18648,-0.54057
+4.77912,0.77098,-1.48556,-1.43676,-1.02275,2.18673,-0.54088
+4.78916,0.77076,-1.48573,-1.43667,-1.02278,2.18688,-0.54107
+4.79920,0.77038,-1.48604,-1.43650,-1.02284,2.18714,-0.54141
+4.80924,0.77000,-1.48635,-1.43633,-1.02289,2.18741,-0.54174
+4.81928,0.76963,-1.48665,-1.43616,-1.02295,2.18767,-0.54207
+4.82932,0.76926,-1.48695,-1.43599,-1.02300,2.18792,-0.54239
+4.83936,0.76890,-1.48724,-1.43583,-1.02305,2.18817,-0.54271
+4.84940,0.76855,-1.48753,-1.43567,-1.02311,2.18841,-0.54302
+4.85944,0.76821,-1.48781,-1.43551,-1.02316,2.18866,-0.54332
+4.86948,0.76814,-1.48787,-1.43548,-1.02317,2.18870,-0.54338
+4.87952,0.76777,-1.48816,-1.43531,-1.02322,2.18896,-0.54371
+4.88956,0.76742,-1.48845,-1.43515,-1.02328,2.18920,-0.54402
+4.89960,0.76707,-1.48873,-1.43499,-1.02333,2.18945,-0.54433
+4.90964,0.76675,-1.48899,-1.43485,-1.02338,2.18967,-0.54461
+4.91968,0.76636,-1.48930,-1.43468,-1.02343,2.18994,-0.54495
+4.92972,0.76598,-1.48961,-1.43451,-1.02348,2.19020,-0.54529
+4.93976,0.76561,-1.48991,-1.43435,-1.02353,2.19046,-0.54562
+4.94980,0.76525,-1.49021,-1.43418,-1.02358,2.19071,-0.54594
+4.95984,0.76489,-1.49050,-1.43402,-1.02364,2.19096,-0.54626
+4.96988,0.76453,-1.49079,-1.43387,-1.02369,2.19121,-0.54657
+4.97992,0.76418,-1.49107,-1.43371,-1.02374,2.19145,-0.54688
+4.98996,0.76398,-1.49124,-1.43361,-1.02377,2.19159,-0.54706
+5.00000,0.76363,-1.49153,-1.43345,-1.02382,2.19183,-0.54737
diff --git a/python/examples/path_in_pixels.csv b/python/examples/path_in_pixels.csv
index 1fc24d92772381b7494ec790eda3aa2bbdab31b2..6d4ee0d8e2ed4a0606012d6ecdbec04f0e360c74 100644
--- a/python/examples/path_in_pixels.csv
+++ b/python/examples/path_in_pixels.csv
@@ -1,342 +1,25 @@
-0.07124,0.91051
-0.07056,0.91163
-0.06989,0.87900
-0.06989,0.86774
-0.06855,0.82610
-0.06720,0.81373
-0.06519,0.76871
-0.06452,0.75858
-0.06317,0.74733
-0.06183,0.72820
-0.06116,0.70906
-0.06116,0.69556
-0.06116,0.68656
-0.05981,0.66630
-0.05981,0.65279
-0.05981,0.63929
-0.05847,0.61228
-0.05847,0.59540
-0.05847,0.58189
-0.05847,0.57289
-0.05847,0.55939
-0.05981,0.54588
-0.06116,0.53350
-0.06183,0.52112
-0.06384,0.50649
-0.06519,0.48399
-0.06586,0.46936
-0.06653,0.46035
-0.06720,0.44010
-0.06720,0.42321
-0.06653,0.40971
-0.06586,0.40408
-0.06519,0.40071
-0.06519,0.39846
-0.06720,0.36920
-0.06788,0.35457
-0.06855,0.33656
-0.06922,0.32305
-0.06922,0.29830
-0.06989,0.28817
-0.06989,0.27916
-0.06989,0.26341
-0.07056,0.23753
-0.07056,0.22965
-0.07056,0.22515
-0.07056,0.22177
-0.07056,0.21839
-0.07056,0.21614
-0.07056,0.21502
-0.07056,0.21389
-0.07056,0.21164
-0.07056,0.21502
-0.07056,0.21727
-0.07056,0.22289
-0.07056,0.23302
-0.07056,0.25666
-0.07056,0.27804
-0.07392,0.31630
-0.07796,0.33543
-0.08535,0.36357
-0.09140,0.38720
-0.09476,0.39621
-0.09946,0.40858
-0.10349,0.41984
-0.10753,0.42884
-0.11022,0.43559
-0.11290,0.44010
-0.11761,0.44460
-0.12164,0.44797
-0.12702,0.45022
-0.13306,0.45247
-0.13911,0.45473
-0.14315,0.45585
-0.14583,0.45698
-0.14718,0.45698
-0.14785,0.45698
-0.14919,0.45698
-0.15255,0.45473
-0.15793,0.44797
-0.16196,0.43672
-0.16398,0.42884
-0.16599,0.42209
-0.16734,0.41309
-0.17876,0.38833
-0.18414,0.37370
-0.18884,0.36132
-0.19019,0.35569
-0.19355,0.35006
-0.19691,0.34331
-0.20228,0.33206
-0.20901,0.31855
-0.21573,0.30617
-0.22177,0.29605
-0.22782,0.28817
-0.23118,0.28367
-0.23589,0.27579
-0.24059,0.27016
-0.24597,0.26341
-0.25134,0.26003
-0.25806,0.25553
-0.26411,0.25328
-0.27419,0.25328
-0.28226,0.25441
-0.29032,0.25891
-0.29637,0.26228
-0.30511,0.27016
-0.31720,0.28142
-0.32594,0.29154
-0.34274,0.32418
-0.35148,0.33994
-0.35954,0.35682
-0.36895,0.38383
-0.37366,0.39846
-0.37903,0.41646
-0.38306,0.42772
-0.38911,0.44122
-0.39516,0.45585
-0.40121,0.47161
-0.40255,0.47611
-0.40255,0.47723
-0.40255,0.47836
-0.40255,0.47836
-0.39987,0.47836
-0.39516,0.47836
-0.38508,0.47723
-0.38172,0.47723
-0.37366,0.47723
-0.36559,0.47723
-0.35753,0.47498
-0.35148,0.47273
-0.34610,0.47161
-0.34073,0.46936
-0.33804,0.46936
-0.33669,0.46823
-0.33535,0.46823
-0.33468,0.46823
-0.33401,0.46823
-0.33266,0.46598
-0.32997,0.46260
-0.32594,0.45585
-0.31653,0.42659
-0.31452,0.41759
-0.31250,0.40633
-0.31116,0.39058
-0.31116,0.37595
-0.31116,0.36695
-0.31250,0.35119
-0.31586,0.33994
-0.31989,0.32756
-0.32460,0.31630
-0.32863,0.30617
-0.33132,0.29942
-0.33804,0.28479
-0.34677,0.26453
-0.35282,0.24878
-0.35618,0.24090
-0.36156,0.23302
-0.36425,0.22627
-0.36559,0.22402
-0.36626,0.22177
-0.37836,0.22515
-0.38642,0.22515
-0.39651,0.22515
-0.40323,0.22627
-0.41398,0.22852
-0.43548,0.23527
-0.44556,0.23978
-0.46035,0.24878
-0.47043,0.25328
-0.47917,0.25778
-0.49328,0.26566
-0.50000,0.27016
-0.51344,0.28142
-0.52016,0.28817
-0.52285,0.29154
-0.52419,0.29267
-0.52487,0.29379
-0.52554,0.29379
-0.52554,0.29379
-0.53427,0.31743
-0.54368,0.34106
-0.54906,0.36132
-0.55175,0.37370
-0.55376,0.38495
-0.55578,0.39733
-0.55847,0.41421
-0.56048,0.43447
-0.56183,0.44910
-0.56317,0.46148
-0.56519,0.47948
-0.56519,0.48173
-0.56519,0.48286
-0.56519,0.48399
-0.56519,0.48399
-0.56384,0.48173
-0.56250,0.47273
-0.56250,0.46823
-0.56183,0.45698
-0.56048,0.44347
-0.55981,0.43222
-0.55780,0.39621
-0.55712,0.38383
-0.55645,0.35344
-0.55645,0.33768
-0.55645,0.32531
-0.55712,0.31743
-0.55847,0.30505
-0.56116,0.29154
-0.56384,0.27916
-0.56720,0.27241
-0.57460,0.25891
-0.57796,0.25441
-0.58132,0.25103
-0.58804,0.24765
-0.59677,0.24540
-0.60417,0.24540
-0.62164,0.25666
-0.63306,0.27354
-0.64583,0.29267
-0.65927,0.31743
-0.69624,0.39170
-0.70766,0.41534
-0.71707,0.43672
-0.71841,0.44122
-0.72177,0.45022
-0.72379,0.45360
-0.72446,0.45585
-0.72513,0.45810
-0.72581,0.45923
-0.72648,0.46148
-0.72715,0.46260
-0.72715,0.46373
-0.72715,0.46485
-0.72715,0.46598
-0.72715,0.46598
-0.72715,0.46710
-0.72715,0.46710
-0.72513,0.46260
-0.72177,0.44797
-0.71976,0.42997
-0.71774,0.41196
-0.71371,0.35344
-0.70228,0.26228
-0.70094,0.25328
-0.69758,0.23415
-0.69355,0.21502
-0.69086,0.20264
-0.68884,0.19476
-0.68414,0.18351
-0.67742,0.16888
-0.66935,0.15312
-0.65927,0.13737
-0.65323,0.13061
-0.64516,0.12048
-0.63441,0.10923
-0.62500,0.10135
-0.59207,0.07884
-0.58468,0.07547
-0.56720,0.07097
-0.55376,0.06759
-0.54099,0.06647
-0.51546,0.06534
-0.50538,0.06421
-0.46909,0.06421
-0.44825,0.06421
-0.42272,0.06421
-0.41667,0.06534
-0.40524,0.06647
-0.40255,0.06647
-0.40121,0.06647
-0.38642,0.06534
-0.36425,0.06759
-0.31586,0.07659
-0.30444,0.07772
-0.27487,0.07997
-0.26613,0.07884
-0.24194,0.07884
-0.23790,0.07884
-0.22245,0.07884
-0.20565,0.08222
-0.18884,0.08785
-0.17742,0.09235
-0.16868,0.09685
-0.15188,0.10811
-0.14382,0.11486
-0.13710,0.11936
-0.11962,0.13174
-0.11290,0.13624
-0.10820,0.13962
-0.10349,0.14524
-0.09812,0.15200
-0.09341,0.15762
-0.08938,0.16325
-0.08669,0.16663
-0.08468,0.16888
-0.08333,0.17113
-0.08199,0.17225
-0.08132,0.17225
-0.08065,0.17338
-0.07997,0.17563
-0.07997,0.17675
-0.08199,0.18576
-0.08669,0.19363
-0.09341,0.20151
-0.10551,0.21277
-0.12433,0.22515
-0.13239,0.23077
-0.14987,0.23978
-0.15726,0.24203
-0.17003,0.24315
-0.18078,0.24315
-0.19220,0.24315
-0.21505,0.23978
-0.22446,0.23527
-0.24194,0.22852
-0.26546,0.22177
-0.28427,0.21839
-0.30847,0.21502
-0.33132,0.21164
-0.36358,0.21164
-0.41465,0.20826
-0.47581,0.20601
-0.53226,0.20601
-0.60753,0.19814
-0.64449,0.19363
-0.64852,0.19251
-0.65457,0.19026
-0.65659,0.19026
-0.65726,0.19026
-0.67742,0.19926
-0.68817,0.20151
-0.71640,0.20826
-0.72245,0.21052
-0.73858,0.21614
-0.74664,0.22177
-0.75336,0.22627
-0.75806,0.22965
-0.75941,0.23077
-0.76008,0.23077
-0.76008,0.23077
-0.76075,0.23077
-0.76075,0.23077
+0.19698,0.71527
+0.22257,0.71067
+0.23874,0.70837
+0.30204,0.70032
+0.32898,0.69687
+0.41114,0.68767
+0.47040,0.67847
+0.50003,0.67156
+0.53640,0.65776
+0.56064,0.64856
+0.61317,0.63130
+0.61856,0.62900
+0.64415,0.61980
+0.65762,0.61635
+0.66840,0.61060
+0.68186,0.60024
+0.69803,0.58069
+0.70880,0.56458
+0.73439,0.51512
+0.73843,0.50132
+0.74247,0.48406
+0.74382,0.46566
+0.74382,0.45645
+0.73978,0.44955
+0.73978,0.44955
diff --git a/python/examples/point_impedance_control.py b/python/examples/point_impedance_control.py
index 919ba5aa6384bd26ddfcfa7ed833d037bc93b462..666b89f102e432a1893478986070bfdcba8c2a12 100644
--- a/python/examples/point_impedance_control.py
+++ b/python/examples/point_impedance_control.py
@@ -15,6 +15,7 @@ from ur_simple_control.clik.clik_trajectory_following import map2DPathTo3DPlane,
 from ur_simple_control.managers import ControlLoopManager, RobotManager
 from ur_simple_control.util.calib_board_hacks import calibratePlane, getSpeedInDirectionOfN
 from ur_simple_control.basics.basics import moveJ
+import matplotlib
 
 #######################################################################
 #                            arguments                                #
@@ -36,9 +37,10 @@ def getArgs():
             help="whether you want to just integrate with pinocchio.\
                     NOTE: doesn't actually work because it's not a physics simulator", \
                     default=False)
-    parser.add_argument('--visualize', action=argparse.BooleanOptionalAction, 
-            help="whether you want to visualize with gepetto, but \
-                    NOTE: not implemented yet", default=False)
+    parser.add_argument('--visualize-manipulator', action=argparse.BooleanOptionalAction, 
+            help="whether you want to visualize the manipulator and workspace with meshcat", default=False)
+    parser.add_argument('--real-time-plotting', action=argparse.BooleanOptionalAction, 
+            help="whether you want to have some real-time matplotlib graphs (parts of log_dict you select)", default=False)
     parser.add_argument('--gripper', action=argparse.BooleanOptionalAction, \
             help="whether you're using the gripper", default=False)
     parser.add_argument('--acceleration', type=float, \
@@ -103,7 +105,9 @@ def getArgs():
     parser.add_argument('--alpha', type=float, \
             help="force feedback proportional coefficient", \
             default=0.05)
-    # TODO add low pass filtering and make it's parameters arguments too
+    parser.add_argument('--beta', type=float, \
+            help="low-pass filter beta parameter", \
+            default=0.01)
     #######################################################################
     #                       task specific arguments                       #
     #######################################################################
@@ -154,7 +158,7 @@ def controller():
     pass
 
 # control loop to be passed to ControlLoopManager
-def controlLoopPointImpedance(wrench_offset, q_init, controller, robot, i, past_data):
+def controlLoopPointImpedance(q_init, controller, robot, i, past_data):
     breakFlag = False
     # TODO rename this into something less confusing
     save_past_dict = {}
@@ -163,7 +167,6 @@ def controlLoopPointImpedance(wrench_offset, q_init, controller, robot, i, past_
     Mtool = robot.getMtool()
     wrench = robot.getWrench()
     log_item['wrench_raw'] = wrench.reshape((6,))
-    wrench = wrench - wrench_offset
     save_past_dict['wrench'] = copy.deepcopy(wrench)
     # deepcopy for good coding practise (and correctness here)
 #    save_past_dict['wrench'] = copy.deepcopy(wrench)
@@ -171,8 +174,7 @@ def controlLoopPointImpedance(wrench_offset, q_init, controller, robot, i, past_
     #wrench = np.average(np.array(past_data['wrench']), axis=0)
     # first-order low pass filtering instead
     # beta is a smoothing coefficient, smaller values smooth more, has to be in [0,1]
-    beta = 0.1
-    wrench = beta * wrench + (1 - beta) * past_data['wrench'][-1]
+    wrench = args.beta * wrench + (1 - args.beta) * past_data['wrench'][-1]
     #Z = np.diag(np.array([0.6, 0.6, 1.0, 0.5, 0.5, 0.5]))
     #Z = np.diag(np.array([0.6, 1.0, 0.6, 0.5, 0.5, 0.5]))
     #Z = np.diag(np.array([1.0, 1.0, 0.1, 1.0, 1.0, 1.0]))
@@ -196,10 +198,10 @@ def controlLoopPointImpedance(wrench_offset, q_init, controller, robot, i, past_
     wrench = mapping.T @ wrench
 
     wrench = Z @ wrench
-    if i % 25 == 0:
-        #print(Z)
-        print("================================")
-        print(*wrench.round(1))
+#    if i % 25 == 0:
+#        #print(Z)
+#        print("================================")
+#        print(*wrench.round(1))
 #    if i % 25 == 0:
 #        for w in wrench:
 #            if w < 0:
@@ -224,8 +226,8 @@ def controlLoopPointImpedance(wrench_offset, q_init, controller, robot, i, past_
     dq = robot.getQd()[:6].reshape((6,1))
     # get joint 
     tau = J.T @ wrench
-    if i % 25 == 0:
-        print(*tau.round(1))
+#    if i % 25 == 0:
+#        print(*tau.round(1))
     tau = tau[:6].reshape((6,1))
     # compute control law:
     # - feedback the position 
@@ -250,12 +252,16 @@ if __name__ == "__main__":
     #######################################################################
     #                           software setup                            #
     #######################################################################
+
+    #matplotlib.use('tkagg')
     args = getArgs()
+    if args.debug_prints:
+        print("you will get a lot of stuff printed out, as requested")
     clikController = getClikController(args)
     robot = RobotManager(args)
 
     # calibrate FT first
-    wrench_offset = robot.calibrateFT()
+    #wrench_offset = robot.calibrateFT()
     
     # TODO and NOTE the weight, TCP and inertial matrix needs to be set on the robot
     # you already found an API in rtde_control for this, just put it in initialization 
@@ -270,16 +276,16 @@ if __name__ == "__main__":
             'wrench' : np.zeros(6),
         }
     # here you give it it's initial value
-    log_dict = {
-            'qs' : np.zeros((args.max_iterations, 6)),
-            'dqs' : np.zeros((args.max_iterations, 6)),
-            'wrench_raw' : np.zeros((args.max_iterations, 6)),
-            'wrench_used' : np.zeros((args.max_iterations, 6)),
+    log_item = {
+            'qs' : np.zeros(robot.n_arm_joints),
+            'dqs' : np.zeros(robot.n_arm_joints),
+            'wrench_raw' : np.zeros(6),
+            'wrench_used' : np.zeros(6),
         }
     q_init = robot.getQ()
 
-    controlLoop = partial(controlLoopPointImpedance, wrench_offset, q_init, controller, robot)
-    loop_manager = ControlLoopManager(robot, controlLoop, args, save_past_dict, log_dict)
+    controlLoop = partial(controlLoopPointImpedance, q_init, controller, robot)
+    loop_manager = ControlLoopManager(robot, controlLoop, args, save_past_dict, log_item)
 
     #moveJ(args, robot, dmp.pos.reshape((6,)))
     # and now we can actually run
@@ -288,7 +294,7 @@ if __name__ == "__main__":
     #plotFromDict(log_dict, args)
     # plotting is now initiated in stophandler because then we get the plot 
     # even if we end sooner
-    loop_manager.stopHandler(log_dict, args)
+    loop_manager.stopHandler(None, None)
     # TODO: add some math to analyze path precision
 
     
diff --git a/python/examples/test_movej.py b/python/examples/test_movej.py
new file mode 100644
index 0000000000000000000000000000000000000000..c00d3683f8534117080ae5dfce6f59c27c70b534
--- /dev/null
+++ b/python/examples/test_movej.py
@@ -0,0 +1,204 @@
+
+import pinocchio as pin
+import numpy as np
+import matplotlib.pyplot as plt
+import copy
+import argparse
+import time
+from functools import partial
+from ur_simple_control.visualize.visualize import plotFromDict
+from ur_simple_control.util.draw_path import drawPath
+from ur_simple_control.dmp.dmp import DMP, NoTC,TCVelAccConstrained 
+# TODO merge these clik files as well, they don't deserve to be separate
+# TODO but first you need to clean up clik.py as specified there
+from ur_simple_control.clik.clik_point_to_point import getClikController, moveL, moveUntilContact
+from ur_simple_control.clik.clik_trajectory_following import map2DPathTo3DPlane, clikCartesianPathIntoJointPath
+from ur_simple_control.managers import ControlLoopManager, RobotManager
+from ur_simple_control.util.calib_board_hacks import calibratePlane, getSpeedInDirectionOfN
+from ur_simple_control.basics.basics import moveJ
+import matplotlib
+
+#######################################################################
+#                            arguments                                #
+#######################################################################
+
+def getArgs():
+    #######################################################################
+    #                          generic arguments                          #
+    #######################################################################
+    parser = argparse.ArgumentParser(description='Make a drawing on screen,\
+            watch the robot do it on the whiteboard.',
+            formatter_class=argparse.ArgumentDefaultsHelpFormatter)
+    # TODO this one won't really work but let's leave it here for the future
+    parser.add_argument('--simulation', action=argparse.BooleanOptionalAction, 
+            help="whether you are running the UR simulator. \
+                    NOTE: doesn't actually work because it's not a physics simulator", \
+                    default=False)
+    parser.add_argument('--pinocchio-only', action=argparse.BooleanOptionalAction, 
+            help="whether you want to just integrate with pinocchio.\
+                    NOTE: doesn't actually work because it's not a physics simulator", \
+                    default=False)
+    parser.add_argument('--visualize-manipulator', action=argparse.BooleanOptionalAction, 
+            help="whether you want to visualize the manipulator and workspace with meshcat", default=False)
+    parser.add_argument('--real-time-plotting', action=argparse.BooleanOptionalAction, 
+            help="whether you want to have some real-time matplotlib graphs (parts of log_dict you select)", default=False)
+    parser.add_argument('--gripper', action=argparse.BooleanOptionalAction, \
+            help="whether you're using the gripper", default=False)
+    parser.add_argument('--acceleration', type=float, \
+            help="robot's joints acceleration. scalar positive constant, \
+            max 1.7, and default 0.4. \
+            BE CAREFUL WITH THIS. the urscript doc says this is 'lead axis acceleration'.\
+            TODO: check what this means", default=0.3)
+    parser.add_argument('--speed-slider', type=float,\
+            help="cap robot's speed with the speed slider \
+                    to something between 0 and 1, 1.0 by default because for dmp. \
+                    BE CAREFUL WITH THIS.", default=1.0)
+    parser.add_argument('--max-iterations', type=int, \
+            help="maximum allowable iteration number (it runs at 500Hz)", default=500000)
+    #######################################################################
+    #                 your controller specific arguments                  #
+    #######################################################################
+    # not applicable here, but leaving it in the case it becomes applicable
+    # it's also in the robot manager even though it shouldn't be
+    parser.add_argument('--past-window-size', type=int, \
+            help="how many timesteps of past data you want to save", default=5)
+    parser.add_argument('--goal-error', type=float, \
+            help="the final position error you are happy with. NOTE: not used here", \
+            default=1e-3)
+    # TODO: test the interaction of this and the overall demo
+    parser.add_argument('--tikhonov-damp', type=float, \
+            help="damping scalar in tikhonov regularization.\
+            This is used when generating the joint trajectory from the drawing.", \
+            default=1e-2)
+    # TODO add the rest
+    parser.add_argument('--clik-controller', type=str, \
+            help="select which click algorithm you want", \
+            default='dampedPseudoinverse', \
+            choices=['dampedPseudoinverse', 'jacobianTranspose'])
+        # maybe you want to scale the control signal
+    parser.add_argument('--controller-speed-scaling', type=float, \
+            default='1.0', help='not actually_used atm')
+    #############################
+    #  dmp  specific arguments  #
+    #############################
+    parser.add_argument('--temporal-coupling', action=argparse.BooleanOptionalAction, \
+            help="whether you want to use temporal coupling", default=True)
+    parser.add_argument('--kp', type=float, \
+            help="proportial control constant for position errors", \
+            default=1.0)
+    parser.add_argument('--kv', type=float, \
+            help="damping in impedance control", \
+            default=0.001)
+    parser.add_argument('--tau0', type=float, \
+            help="total time needed for trajectory. if you use temporal coupling,\
+                  you can still follow the path even if it's too fast", \
+            default=5)
+    parser.add_argument('--gamma-nominal', type=float, \
+            help="positive constant for tuning temporal coupling: the higher,\
+            the fast the return rate to nominal tau", \
+            default=1.0)
+    parser.add_argument('--gamma-a', type=float, \
+            help="positive constant for tuning temporal coupling, potential term", \
+            default=0.5)
+    parser.add_argument('--eps-tc', type=float, \
+            help="temporal coupling term, should be small", \
+            default=0.001)
+    parser.add_argument('--alpha', type=float, \
+            help="force feedback proportional coefficient", \
+            default=0.05)
+    parser.add_argument('--beta', type=float, \
+            help="low-pass filter beta parameter", \
+            default=0.01)
+    #######################################################################
+    #                       task specific arguments                       #
+    #######################################################################
+    # TODO measure this for the new board
+    parser.add_argument('--board-width', type=float, \
+            help="width of the board (in meters) the robot will write on", \
+            default=0.3)
+    parser.add_argument('--board-height', type=float, \
+            help="height of the board (in meters) the robot will write on", \
+            default=0.3)
+    parser.add_argument('--calibration', action=argparse.BooleanOptionalAction, \
+            help="whether you want to do calibration", default=False)
+    parser.add_argument('--draw-new', action=argparse.BooleanOptionalAction, \
+            help="whether draw a new picture, or use the saved path path_in_pixels.csv", default=True)
+    parser.add_argument('--pick_up_marker', action=argparse.BooleanOptionalAction, \
+            help="""
+    whether the robot should pick up the marker.
+    NOTE: THIS IS FROM A PREDEFINED LOCATION.
+    """, default=True)
+    parser.add_argument('--find-marker-offset', action=argparse.BooleanOptionalAction, \
+            help="""
+    whether you want to do find marker offset (recalculate TCP
+    based on the marker""", default=False)
+    parser.add_argument('--n-calibration-tests', type=int, \
+            help="number of calibration tests you want to run", default=10)
+    parser.add_argument('--clik-goal-error', type=float, \
+            help="the clik error you are happy with", default=1e-2)
+    parser.add_argument('--max-init-clik-iterations', type=int, \
+            help="number of max clik iterations to get to the first point", default=10000)
+    parser.add_argument('--max-running-clik-iterations', type=int, \
+            help="number of max clik iterations between path points", default=1000)
+    parser.add_argument('--debug-prints', action=argparse.BooleanOptionalAction, \
+            help="print some debug info", default=False)
+
+    args = parser.parse_args()
+    if args.gripper and args.simulation:
+        raise NotImplementedError('Did not figure out how to put the gripper in \
+                the simulation yet, sorry :/ . You can have only 1 these flags right now')
+    return args
+
+
+if __name__ == "__main__":
+    #######################################################################
+    #                           software setup                            #
+    #######################################################################
+
+    #matplotlib.use('tkagg')
+    args = getArgs()
+    if args.debug_prints:
+        print("you will get a lot of stuff printed out, as requested")
+    clikController = getClikController(args)
+    robot = RobotManager(args)
+
+    # calibrate FT first
+    #wrench_offset = robot.calibrateFT()
+    
+    # TODO and NOTE the weight, TCP and inertial matrix needs to be set on the robot
+    # you already found an API in rtde_control for this, just put it in initialization 
+    # under using/not-using gripper parameters
+    # ALSO NOTE: to use this you need to change the version inclusions in
+    # ur_rtde due to a bug there in the current ur_rtde + robot firmware version 
+    # (the bug is it works with the firmware verion, but ur_rtde thinks it doesn't)
+    # here you give what you're saving in the rolling past window 
+    # it's initial value.
+    # controlLoopManager will populate the queue with these initial values
+#    save_past_dict = {
+#            'wrench' : np.zeros(6),
+#        }
+#    # here you give it it's initial value
+#    log_item = {
+#            'qs' : np.zeros(robot.n_arm_joints),
+#            'dqs' : np.zeros(robot.n_arm_joints),
+#            'wrench_raw' : np.zeros(6),
+#            'wrench_used' : np.zeros(6),
+#        }
+    q_init = robot.getQ()
+
+#    controlLoop = partial(controlLoopPointImpedance, q_init, controller, robot)
+#    loop_manager = ControlLoopManager(robot, controlLoop, args, save_past_dict, log_item)
+
+    q_init[5] += 0.1
+    moveJ(args, robot, q_init)
+    # and now we can actually run
+#    log_dict, final_iteration = loop_manager.run()
+
+    #plotFromDict(log_dict, args)
+    # plotting is now initiated in stophandler because then we get the plot 
+    # even if we end sooner
+    # TODO: add some math to analyze path precision
+
+    
+
+
diff --git a/python/ur_simple_control/__pycache__/managers.cpython-311.pyc b/python/ur_simple_control/__pycache__/managers.cpython-311.pyc
index 3a5ef00af9c245c0f18a6e26d57945373702bf53..2675a1cf3013718070b82c0e8d76397492812c3f 100644
Binary files a/python/ur_simple_control/__pycache__/managers.cpython-311.pyc and b/python/ur_simple_control/__pycache__/managers.cpython-311.pyc differ
diff --git a/python/ur_simple_control/basics/__pycache__/basics.cpython-311.pyc b/python/ur_simple_control/basics/__pycache__/basics.cpython-311.pyc
index d015b983dfd1f3a5c10e8f110c39caab5852592e..2e9246e2621ab405a1c970b708cdee5099cb8193 100644
Binary files a/python/ur_simple_control/basics/__pycache__/basics.cpython-311.pyc and b/python/ur_simple_control/basics/__pycache__/basics.cpython-311.pyc differ
diff --git a/python/ur_simple_control/basics/basics.py b/python/ur_simple_control/basics/basics.py
index 2f10c50633c2b87ab94fef8b755b24dd18ec7971..6b9f414014d44f5bc2e2f0e13977cc6ad689afd3 100644
--- a/python/ur_simple_control/basics/basics.py
+++ b/python/ur_simple_control/basics/basics.py
@@ -22,7 +22,9 @@ def moveJControlLoop(q_desired, robot, i, past_data):
     save_past_dict = {}
     # you don't even need forward kinematics for this lmao
     q = robot.getQ()
+    # TODO: be more intelligent with qs
     q = q[:6]
+    q_desired = q_desired[:6]
     q_error = q_desired - q
 
     # STOP MUCH BEFORE YOU NEED TO FOR THE DEMO
@@ -52,5 +54,6 @@ def moveJ(args, robot, q_desired):
     loop_manager = ControlLoopManager(robot, controlLoop, args, {}, {})
     log_dict, final_iteration = loop_manager.run()
     # TODO: remove, this isn't doing anything
-    time.sleep(0.01)
-    print("MoveJ done: convergence achieved, reached destionation!")
+    #time.sleep(0.01)
+    if args.debug_prints:
+        print("MoveJ done: convergence achieved, reached destionation!")
diff --git a/python/ur_simple_control/managers.py b/python/ur_simple_control/managers.py
index d3dba357ac0dc0e4823a2ce402177cfca4ca231a..9d2289757ba2d4ee8f5b82650d5ac852ad1d79da 100644
--- a/python/ur_simple_control/managers.py
+++ b/python/ur_simple_control/managers.py
@@ -16,7 +16,7 @@ import copy
 import signal
 from ur_simple_control.util.get_model import get_model
 from collections import deque
-from ur_simple_control.visualize.visualize import plotFromDict, realTimePlotter
+from ur_simple_control.visualize.visualize import plotFromDict, realTimePlotter, manipulatorVisualizer
 from pinocchio.visualize import MeshcatVisualizer
 from multiprocessing import Process, Queue
 
@@ -130,20 +130,21 @@ class ControlLoopManager:
         if self.args.real_time_plotting:
             self.plotter_queue = Queue()
             if args.debug_prints:
-                print("CONTROL_LOOP_MANAGER", self.controlLoop, ": i created queue:", self.plotter_queue)
+                print("CONTROL_LOOP_MANAGER", self.controlLoop, ": i created queue for real time plotting:", self.plotter_queue)
                 print("CONTROL_LOOP_MANAGER: i am creating and starting the real-time-plotter  process")
             self.real_time_plotter_process = Process(target=realTimePlotter, 
                                                      args=(self.args, self.plotter_queue, ))
             # give real-time plotter some time to set itself up
             self.real_time_plotter_process.start()
             if args.debug_prints:
-                print("CONTROL_LOOP_MANAGER: real_time_plotter started")
+                print("CONTROL_LOOP_MANAGER: real_time_plotter_process started")
             # wait for feedback that the thing has started
             self.plotter_queue.get()
             self.plotter_queue.put(log_item)
             if args.debug_prints:
                 print("CONTROL_LOOP_MANAGER: i managed to put initializing log_item to queue")
 
+
     """
     run
     ---
@@ -182,20 +183,20 @@ class ControlLoopManager:
                 self.log_dict[key].append(log_item[key])
             
             if i % 20 == 0:
-                # TODO: offload this to a different 
-                # process, it's hindering real-time performance (not by a lot,
-                # but it does)
-                # --> replicate what's done for real_time_plotting
+                # don't send what wasn't ready
                 if self.args.visualize_manipulator:
-                    self.robot_manager.viz.display(self.robot_manager.q)
+                    if self.robot_manager.manipulator_visualizer_queue.qsize() < 5:
+                        self.robot_manager.manipulator_visualizer_queue.put_nowait(self.robot_manager.q)
+#                    if self.args.debug_prints:
+#                        print("manipulator_visualizer_queue size status:", self.robot_manager.manipulator_visualizer_queue.qsize())
                 if self.args.real_time_plotting:
                     # don't put new stuff in if it didn't handle the previous stuff.
                     # it's a plotter, who cares if it's late. 
                     # the number 5 is arbitrary
                     if self.plotter_queue.qsize() < 5:
                         self.plotter_queue.put_nowait(log_item)
-                    if self.args.debug_prints:
-                        print("queue size status:", self.plotter_queue.qsize())
+#                    if self.args.debug_prints:
+#                        print("plotter_queue size status:", self.plotter_queue.qsize())
 
             # break if done
             if breakFlag:
@@ -226,11 +227,16 @@ class ControlLoopManager:
             # and that really needs to work
             #self.plotter_queue.close()
             # give it time to become free
-            time.sleep(0.1)
-            self.real_time_plotter_process.join()
+            #time.sleep(0.1)
+            # TODO: check if this is causing a delay
+            self.real_time_plotter_process.terminate()
+            if self.args.debug_prints:
+                print("terminated real_time_plotter_process")
 
         # now turn the logs into numpy arrays
         for key in self.log_dict:
+            if self.args.debug_prints:
+                print("turning log files into numpy arrays")
             self.log_dict[key] = np.array(self.log_dict[key])
 
         return self.log_dict, self.final_iteration
@@ -258,6 +264,36 @@ class ControlLoopManager:
             print("putting it to freedrive for good measure too")
             self.robot_manager.rtde_control.freedriveMode()
 
+        # set kill command and join visualization processes
+        # TODO: actually send them a SIGINT and a SIGKILL if necessary 
+        if self.args.real_time_plotting:
+            if self.args.debug_prints:
+                print("i am putting befree in plotter_queue to stop the real time visualizer")
+            self.plotter_queue.put_nowait("befree")
+            self.real_time_plotter_process.terminate()
+            if self.args.debug_prints:
+                print("terminated real_time_plotter_process")
+
+            #self.real_time_plotter_process.kill()
+            #self.real_time_plotter_process.terminate()
+
+        if self.args.visualize_manipulator:
+            if self.args.debug_prints:
+                print("i am putting befree in manipulator to stop the manipulator visualizer")
+            self.robot_manager.manipulator_visualizer_queue.put_nowait("befree")
+            #time.sleep(1)
+            #self.robot_manager.manipulator_visualizer_process.join()
+            self.robot_manager.manipulator_visualizer_process.terminate()
+            if self.args.debug_prints:
+                print("terminated manipulator_visualizer_process")
+            #self.robot_manager.manipulator_visualizer_process.kill()
+#            self.robot_manager.manipulator_visualizer_process.terminate()
+#            if self.args.debug_prints:
+#                print("joined manipulator_visualizer_process")
+#            self.robot_manager.manipulator_visualizer_process.kill()
+#            if self.args.debug_prints:
+#                print("joined manipulator_visualizer_process")
+
         # need to turn logs into ndarrays here too 
         for key in self.log_dict:
             self.log_dict[key] = np.array(self.log_dict[key])
@@ -265,13 +301,8 @@ class ControlLoopManager:
         
         if not self.args.pinocchio_only:
             self.robot_manager.rtde_control.endFreedriveMode()
-        # TODO: add visualizer here too
-        if self.args.real_time_plotting:
-            if self.args.debug_prints:
-                print("i am putting befree in plotter_queue to stop the real time visualizer")
-            self.plotter_queue.put_nowait("befree")
-            self.real_time_plotter_process.join()
-        #exit()
+
+        exit()
 
 """
 robotmanager:
@@ -311,30 +342,19 @@ class RobotManager:
         # there are no good options, 
         # but this does work and isn't a dead project
         if args.visualize_manipulator:
-            # for whatever reason the hand-e files don't have/
-            # meshcat can't read scaling information.
-            # so we scale manually
-            for geom in self.visual_model.geometryObjects:
-                if "hand" in geom.name:
-                    s = geom.meshScale
-                    # this looks exactly correct lmao
-                    s *= 0.001
-                    geom.meshScale = s
-            self.viz = MeshcatVisualizer(self.model, self.collision_model, self.visual_model)
-            self.viz.initViewer(open=True)
-            self.viz.loadViewerModel()
-            # give meshcat some time to start (not really necessary, but
-            # you yourself need some time to clik on the browser,
-            # and you probably want the viz to be initialized
-            # before the robot starts moving)
-            time.sleep(2)
-#        if args.real_time_plotting:
-#            self.plotter_queue = Queue()
-#            self.real_time_plotter_process = Process(target=realTimePlotter, 
-#                                                     args=(self.plotter_queue, ))
-#            # give real-time plotter some time to set itself up
-#            self.real_time_plotter_process.start()
-#            time.sleep(0.5)
+            self.manipulator_visualizer_queue = Queue()
+            if args.debug_prints:
+                print("ROBOT_MANAGER: i created queue for manipulator visualization:", self.manipulator_visualizer_queue)
+                print("ROBOT_MANAGER: i am creating and starting the manipulator visualizer  process")
+            self.manipulator_visualizer_process = Process(target=manipulatorVisualizer, 
+                                                     args=(self.args, self.model, self.collision_model, self.visual_model, self.manipulator_visualizer_queue, ))
+            # give real-time plotter some time to set itself up
+            self.manipulator_visualizer_process.start()
+            if args.debug_prints:
+                print("ROBOT_MANAGER: manipulator_visualizer_process started")
+            self.manipulator_visualizer_queue.put(np.zeros(self.model.nq))
+            if args.debug_prints:
+                print("ROBOT_MANAGER: i managed to put initializing q to manipulator_visualizer_queue")
 
         # ur specific magic numbers 
         # NOTE: all of this is ur-specific, and needs to be if-ed if other robots are added.
diff --git a/python/ur_simple_control/visualize/__pycache__/visualize.cpython-311.pyc b/python/ur_simple_control/visualize/__pycache__/visualize.cpython-311.pyc
index a7d7e06be1d8ddae19d0d223035431c46835e963..e868ff923241d09bdd682a13b217ddf53f57601d 100644
Binary files a/python/ur_simple_control/visualize/__pycache__/visualize.cpython-311.pyc and b/python/ur_simple_control/visualize/__pycache__/visualize.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/pin_to_vedo_plot_util.py b/python/ur_simple_control/visualize/pin_to_vedo_plot_util.py
deleted file mode 100644
index a89138777224afd73d6ea4369234e6cbe43d0034..0000000000000000000000000000000000000000
--- a/python/ur_simple_control/visualize/pin_to_vedo_plot_util.py
+++ /dev/null
@@ -1,77 +0,0 @@
-import numpy as np
-import vedo
-import pinocchio as pin
-
-
-def drawBoxFromSE3(frame : pin.SE3, box_shape : list) -> vedo.Box:
-    objectt = vedo.Box(pos=frame.translation, length=box_shape[0], width=box_shape[1], height=box_shape[2], alpha=0.5)
-    angleAxis = pin.AngleAxis()
-    # they fucked in because they want to accept return value as argument
-    # which is no pythonic
-    # but they also then return it as well lmao
-    axx = pin.AngleAxis.fromRotationMatrix(angleAxis, frame.rotation)
-    #print(angleAxis)
-    #print(np.linalg.norm(angleAxis.axis))
-    objectt.rotate(angleAxis.angle, axis=angleAxis.axis, point=frame.translation, rad=True)
-    #objectt.rotate(0.5, axis=[1,0,0], point=frame.translation, rad=True)
-    return objectt
-
-def updateBoxFromSE3(box : vedo.Box, previous_pose : pin.SE3, new_pose : pin.SE3):
-    # has to be passed as argument because non-pythonic original C++ code
-    angleAxis = pin.AngleAxis()
-    # groups yo
-    difference = new_pose.act(previous_pose.inverse())
-    axx = pin.AngleAxis.fromRotationMatrix(angleAxis, difference.rotation)
-    box.rotate(angleAxis.angle, axis=angleAxis.axis, point=previous_pose.translation, rad=True)
-    #box.rotate(angleAxis.angle, axis=angleAxis.axis, point=new_pose.translation, rad=True)
-    #box.rotate(angleAxis.angle, axis=angleAxis.axis, point=difference.translation, rad=True)
-    box.pos(new_pose.translation)
-
-def updateFrameArrowsFromSE3(arrows : list[vedo.Arrow], frame : pin.SE3):
-    for i in range(0,3):
-        x = frame.translation[0] + frame.rotation[0,i]
-        y = frame.translation[1] + frame.rotation[1,i]
-        z = frame.translation[2] + frame.rotation[2,i]
-        arrows[i].base = frame.translation
-        arrows[i].top = np.array([x,y,z])
-
-def drawSE3AsFrame(frame : pin.SE3, 
-                   text : str, scaling=0.1) -> vedo.Arrows:
-    #print(text)
-    #print(frame)
-    colors = ['r', 'g', 'b']
-    arrows = []
-    #print(frame.rotation)
-    for i in range(0,3):
-        x = frame.translation[0] + frame.rotation[0,i] * scaling 
-        y = frame.translation[1] + frame.rotation[1,i] * scaling
-        z = frame.translation[2] + frame.rotation[2,i] * scaling
-        arrows.append(vedo.Arrow(frame.translation, np.array([x,y,z]), c=colors[i]))
-
-    text_plot = vedo.shapes.Text3D(text, pos=frame.translation, s=0.02)
-    return arrows, text_plot
-
-def setContact1InBodyFrame(b : pin.SE3(), box_dimensions : np.ndarray) -> pin.SE3:
-    c1.rotation = pin.rpy.rpyToMatrix(0,np.pi,0)
-    c1.translation = np.array([0.2*box_dimensions[0], 0.3*box_dimensions[1], 0.5*box_dimensions[2]])
-    return c1
-
-def setContact2InBodyFrame(b : pin.SE3(), box_dimensions : np.ndarray) -> pin.SE3:
-    c2.rotation = pin.rpy.rpyToMatrix(0,0,0)
-    c2.translation = np.array([0.2*box_dimensions[0], 0.3*box_dimensions[1], -0.5*box_dimensions[2]])
-    return c1
-
-# there will be no angular velocity drawing,
-# you can watch the b frame spin.
-# but we do need the linear arrows
-def drawBodyTwist(T_w_b : pin.SE3, v_b : pin.Motion) -> vedo.Arrow:
-    color = 'black'
-    v_s = T_w_b.act(v_b)
-    # this should be global or an argument or something
-    # or calculate it based on the box size, whatever
-    scaling = 0.02
-    arrow = (v_s.linear / np.linalg.norm(v_s.linear)) * scaling
-    arrow_v = vedo.Arrow(T_w_b.translation, arrow , c=color)
-    return arrow_v
-
-
diff --git a/python/ur_simple_control/visualize/vedo_manipulator.py b/python/ur_simple_control/visualize/vedo_manipulator.py
deleted file mode 100644
index c2ce0f3034dca141acc4f7a4a231282ea0f87c15..0000000000000000000000000000000000000000
--- a/python/ur_simple_control/visualize/vedo_manipulator.py
+++ /dev/null
@@ -1,100 +0,0 @@
-"""
-the idea here is that the all the robot-math
-is handled by pinocchio and all the plotting is 
-done with vedo. we're just making the 3D plot here.
-
-there are 2 modes of operation, and ideally they can be 
-handled in the same implementation with a few if statements:
-    1. visualization from a log file
-    2. real-time visualization
-what's written in the 
-"""
-
-import numpy as np
-import vedo
-import pinocchio as pin
-import time
-from ur_simple_control.visualize.pin_to_vedo_plot_util import *
-from ur_simple_control.managers import RobotManager
-import argparse
-
-
-def get_args():
-    parser = argparse.ArgumentParser(description='Run closed loop inverse kinematics \
-            of various kinds. Make sure you know what the goal is before you run!',
-            formatter_class=argparse.ArgumentDefaultsHelpFormatter)
-    parser.add_argument('--simulation', action=argparse.BooleanOptionalAction, 
-            help="whether you are running the UR simulator", default=False)
-    parser.add_argument('--pinocchio-only', action=argparse.BooleanOptionalAction, 
-            help="whether you want to just integrate with pinocchio", default=True)
-    parser.add_argument('--visualize', action=argparse.BooleanOptionalAction, 
-            help="whether you want to visualize with gepetto, but NOTE: not implemented yet", default=True)
-    parser.add_argument('--gripper', action=argparse.BooleanOptionalAction, \
-            help="whether you're using the gripper", default=False)
-    parser.add_argument('--goal-error', type=float, \
-            help="the final position error you are happy with", default=1e-2)
-    parser.add_argument('--max-iterations', type=int, \
-            help="maximum allowable iteration number (it runs at 500Hz)", default=100000)
-    parser.add_argument('--acceleration', type=float, \
-            help="robot's joints acceleration. scalar positive constant, max 1.7, and default 0.4. \
-                   BE CAREFUL WITH THIS. the urscript doc says this is 'lead axis acceleration'.\
-                   TODO: check what this means", default=0.3)
-    parser.add_argument('--speed-slider', type=float,\
-            help="cap robot's speed with the speed slider \
-                    to something between 0 and 1, 0.5 by default \
-                    BE CAREFUL WITH THIS.", default=0.5)
-    parser.add_argument('--tikhonov-damp', type=float, \
-            help="damping scalar in tikhonov regularization", default=1e-3)
-    # TODO add the rest
-    parser.add_argument('--clik-controller', type=str, \
-            help="select which click algorithm you want", \
-            default='dampedPseudoinverse', choices=['dampedPseudoinverse', 'jacobianTranspose'])
-        # maybe you want to scale the control signal
-    parser.add_argument('--controller-speed-scaling', type=float, \
-            default='1.0', help='not actually_used atm')
-    parser.add_argument('--debug-prints', action=argparse.BooleanOptionalAction, \
-            help="print some debug info", default=False)
-
-    args = parser.parse_args()
-    if args.gripper and args.simulation:
-        raise NotImplementedError('Did not figure out how to put the gripper in \
-                the simulation yet, sorry :/ . You can have only 1 these flags right now')
-    return args
-#######################################################################
-#                       IMPLEMENT THIS ACTUALLY                       #
-#######################################################################
-
-
-if __name__ == "__main__": 
-    pin.seed(int(time.time()))
-    args = get_args()
-    robot = RobotManager(args)
-    q = pin.randomConfiguration(robot.model)
-    q = np.zeros(8)
-    pin.forwardKinematics(robot.model, robot.data, q)
-    print(type(robot.data))
-    #pin.computeAllTerms(robot.model, robot.data, q, np.zeros(8))
-    # no need to use AnimationPlayer, we can update stuff on Plotter as we please.
-    # so the comm logic + updating will be implemented here (ideal circumstance)
-    plt = vedo.Plotter(axes=1)
-    plt.camera = vedo.utils.oriented_camera(center=(0, 0, 0),
-                                up_vector=(0, 1, 0),
-                                backoff_vector=(0, 1, 0),
-                                backoff=1.0)
-
-    for i in range(robot.model.nq):
-        plt += drawSE3AsFrame(robot.data.oMi[i], "",scaling=0.02)
-        if i+1 < robot.model.nq:
-            #            plt += vedo.Arrow(robot.data.oMi[i].translation, 
-            #                    robot.data.oMi[i+1].translation - robot.data.oMi[i].translation)
-            #plt += vedo.Arrow(robot.data.oMi[i].translation, 
-            #        -1 * (robot.data.oMi[i].translation - robot.data.oMi[i+1].translation))
-            plt += vedo.Arrow(robot.data.oMi[i].translation, 
-                    robot.data.oMi[i].act(robot.data.liMi[i+1]).translation)
-
-
-
-
-
-    plt.render()
-    plt.show()
diff --git a/python/ur_simple_control/visualize/visualize.py b/python/ur_simple_control/visualize/visualize.py
index 4679a620c55405d07aaa913fd554114e8a9cd7c0..217059261ce42b3a34e979989491b6a58cdb306d 100644
--- a/python/ur_simple_control/visualize/visualize.py
+++ b/python/ur_simple_control/visualize/visualize.py
@@ -3,6 +3,7 @@ import matplotlib.pyplot as plt
 from collections import deque, namedtuple
 import time
 import copy
+from pinocchio.visualize import MeshcatVisualizer
 
 # tkinter stuff
 from matplotlib.backends.backend_tkagg import (FigureCanvasTkAgg, NavigationToolbar2Tk)
@@ -79,6 +80,9 @@ def realTimePlotter(args, queue):
     if args.debug_prints:
         print("REAL_TIME_PLOTTER: i am waiting for the first log_item to initialize myself")
     log_item = queue.get()
+    if len(log_item) == 0:
+        print("you've send me nothing, so no real-time plotting for you")
+        return
     if args.debug_prints:
         print("REAL_TIME_PLOTTER: got log_item, i am initializing the desired plots")
     ROLLING_BUFFER_SIZE = 100
@@ -111,7 +115,7 @@ def realTimePlotter(args, queue):
             ax.set_ylim(bottom=-1.7, top=1.7)
         if data_key == 'dmp_vels':
             ax.set_ylim(bottom=-1.7, top=1.7)
-        if data_key == 'wrench':
+        if 'wrench' in data_key:
             ax.set_ylim(bottom=-20.0, top=20.0)
         if data_key == 'tau':
             ax.set_ylim(bottom=-2.0, top=2.0)
@@ -127,32 +131,71 @@ def realTimePlotter(args, queue):
     # need to call it once
     canvas.draw()
     canvas.flush_events()
-    #plt.show(block=False)
-    n_of_calls = 0 
-    # can't get background, idk how to get it to work
-    #background = ?
     background = fig.bbox
-    while True:
-        log_item = queue.get()
-        if log_item == "befree":
-            if args.debug_prints:
-                print("REAL_TIME_PLOTTER: got befree, visualizer out")
-            break
-        n_of_calls += 1
-        for data_key in log_item:
-            # remove oldest
-            logs_deque[data_key].popleft()
-            # put in new one
-            logs_deque[data_key].append(log_item[data_key])
-            # make it an ndarray (plottable)
-            logs_ndarrays[data_key] = np.array(logs_deque[data_key])
-            # now shape == (ROLLING_BUFFER_SIZE, vector_dimension)
-            for j in range(logs_ndarrays[data_key].shape[1]):
-                axes_and_updating_artists[data_key].artists[str(data_key) + str(j)].set_data(t, logs_ndarrays[data_key][:,j])
-                axes_and_updating_artists[data_key].ax.draw_artist(\
-                        axes_and_updating_artists[data_key].artists[str(data_key) + str(j)])
-        canvas.blit(fig.bbox)
-        canvas.flush_events()
+
+    if args.debug_prints:
+        print("REAL_TIME_PLOTTER: FULLY ONLINE")
+    try:
+        while True:
+            log_item = queue.get()
+            if log_item == "befree":
+                if args.debug_prints:
+                    print("REAL_TIME_PLOTTER: got befree, realTimePlotter out")
+                break
+            for data_key in log_item:
+                # remove oldest
+                logs_deque[data_key].popleft()
+                # put in new one
+                logs_deque[data_key].append(log_item[data_key])
+                # make it an ndarray (plottable)
+                logs_ndarrays[data_key] = np.array(logs_deque[data_key])
+                # now shape == (ROLLING_BUFFER_SIZE, vector_dimension)
+                for j in range(logs_ndarrays[data_key].shape[1]):
+                    axes_and_updating_artists[data_key].artists[str(data_key) + str(j)].set_data(t, logs_ndarrays[data_key][:,j])
+                    axes_and_updating_artists[data_key].ax.draw_artist(\
+                            axes_and_updating_artists[data_key].artists[str(data_key) + str(j)])
+            canvas.blit(fig.bbox)
+            canvas.flush_events()
+    except KeyboardInterrupt:
+        if args.debug_prints:
+            print("REAL_TIME_PLOTTER: caught KeyboardInterrupt, i'm out")
     plt.close(fig)
 
 
+def manipulatorVisualizer(args, model, collision_model, visual_model, queue):
+    # for whatever reason the hand-e files don't have/
+    # meshcat can't read scaling information.
+    # so we scale manually
+    for geom in visual_model.geometryObjects:
+        if "hand" in geom.name:
+            s = geom.meshScale
+            # this looks exactly correct lmao
+            s *= 0.001
+            geom.meshScale = s
+    for geom in collision_model.geometryObjects:
+        if "hand" in geom.name:
+            s = geom.meshScale
+            # this looks exactly correct lmao
+            s *= 0.001
+            geom.meshScale = s
+    viz = MeshcatVisualizer(model, collision_model, visual_model)
+    viz.initViewer(open=True)
+    viz.loadViewerModel()
+    print("MANIPULATORVISUALIZER: FULLY ONLINE")
+    try:
+        while True:
+            q = queue.get()
+            if type(q) == str:
+                print("got str q")
+                if q == "befree":
+                    if args.debug_prints:
+                        print("MANIPULATORVISUALIZER: got befree, manipulatorVisualizer out")
+                    viz.viewer.close()
+                    break
+            viz.display(q)
+    except KeyboardInterrupt:
+        if args.debug_prints:
+            print("MANIPULATORVISUALIZER: caught KeyboardInterrupt, i'm out")
+        # TODO: find a way to actually close it, i don't want a bilion dangling sockets
+        # and a random explosion caused by them
+        #viz.viewer.close()