diff --git a/TODOS_2024-03-23 b/TODOS_2024-03-23
new file mode 100644
index 0000000000000000000000000000000000000000..e9c3b94327794be2d5173d9a705110667744e4f9
--- /dev/null
+++ b/TODOS_2024-03-23
@@ -0,0 +1,15 @@
+in order of priority
+--------------------
+1. real-time plotting (need to see what's happening as it's happening,
+   this is here primarily to aid in debugging)
+---> have a list of what's possible to plot and then select what's selected 
+2. debug dmp end-of-trajectory shennanigans
+3. implement compliantMoveL
+4. fix getMarkerOffset
+5. add waypoints to marker pick up
+6. fix anything that looks problematic in drawing
+7. switch to robot_manager.step() to ensure you're not double-computing things
+8. implement cartesian dmp 
+9. faster visualizing (process in a different thread)
+
+
diff --git a/python/examples/clik.py b/python/examples/clik.py
index 3a32ec245b32caf0e7f670ec1aec9a516bfdd575..cf298c24f8495e6e8a6873f43765b4fd4f4f10df 100644
--- a/python/examples/clik.py
+++ b/python/examples/clik.py
@@ -3,7 +3,7 @@ import argparse
 from functools import partial
 from ur_simple_control.managers import ControlLoopManager, RobotManager
 # TODO merge the 2 clik files
-from ur_simple_control.clik.clik_point_to_point import getClikController, controlLoopClik 
+from ur_simple_control.clik.clik_point_to_point import getClikController, controlLoopClik, moveL
 # TODO write this in managers and automate name generation
 from ur_simple_control.util.logging_utils import saveLog
 
@@ -31,8 +31,10 @@ def get_args():
             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=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('--goal-error', type=float, \
@@ -73,16 +75,18 @@ if __name__ == "__main__":
     Mgoal = robot.defineGoalPointCLI()
     clik_controller = getClikController(args)
     controlLoop = partial(controlLoopClik, robot, clik_controller)
-    log_dict = {
-            'qs' : np.zeros((args.max_iterations, robot.model.nq)),
-            'dqs' : np.zeros((args.max_iterations, robot.model.nq)),
+    log_item = {
+            'qs' : np.zeros(robot.model.nq),
+            'dqs' : np.zeros(robot.model.nq),
         }
     # we're not using any past data or logging, hence the empty arguments
-    loop_manager = ControlLoopManager(robot, controlLoop, args, {}, log_dict)
+    loop_manager = ControlLoopManager(robot, controlLoop, args, {}, log_item)
     # TODO create a logging function in util.
     # something that generates a file name from something in args.
     # also save args there
     log_dict, final_iteration = loop_manager.run()
+
     if args.save_log:
         saveLog(log_dict, final_iteration, args)
+    loop_manager.stopHandler(None, None)
 
diff --git a/python/examples/drawing_from_input_drawing.py b/python/examples/drawing_from_input_drawing.py
index a0b8d642c6528d79754ac34332f0e72a11473710..850fd255c8215692608de0309f8eb485d5626b67 100644
--- a/python/examples/drawing_from_input_drawing.py
+++ b/python/examples/drawing_from_input_drawing.py
@@ -11,6 +11,7 @@
 import pinocchio as pin
 import numpy as np
 import matplotlib.pyplot as plt
+import matplotlib
 import copy
 import argparse
 import time
@@ -46,9 +47,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, \
@@ -196,11 +198,11 @@ def getMarker(args, robot):
     # instantiate controller
     clik_controller = getClikController(args)
     controlLoop = partial(controlLoopClik, robot, clik_controller)
-    log_dict = {
-            'qs' : np.zeros((args.max_iterations, robot.model.nq)),
-            'dqs' : np.zeros((args.max_iterations, robot.model.nq)),
+    log_item = {
+            'qs' : np.zeros(robot.model.nq),
+            'dqs' : np.zeros(robot.model.nq),
         }
-    loop_manager = ControlLoopManager(robot, controlLoop, args, {}, log_dict)
+    loop_manager = ControlLoopManager(robot, controlLoop, args, {}, log_item)
 
     print("going to above marker")
     robot.Mgoal = TgoalUP.copy()
@@ -372,10 +374,13 @@ def controlLoopWriting(dmp, tc, controller, robot, i, past_data):
     log_item['dmp_poss'] = dmp.pos.reshape((6,))
     log_item['dqs'] = dq.reshape((6,))
     log_item['dmp_vels'] = dmp.vel.reshape((6,))
+    log_item['wrench'] = wrench.reshape((6,))
+    log_item['tau'] = tau.reshape((6,))
 
     return breakFlag, save_past_dict, log_item
 
 if __name__ == "__main__":
+
     #######################################################################
     #                           software setup                            #
     #######################################################################
@@ -394,7 +399,10 @@ if __name__ == "__main__":
     
     # draw the path on the screen
     if args.draw_new:
+        # pure evil way to solve a bug that was pure evil
+        matplotlib.use('tkagg')
         pixel_path = drawPath(args)
+        matplotlib.use('qtagg')
         # make it 3D
     else:
         pixel_path_file_path = './path_in_pixels.csv'
@@ -496,10 +504,10 @@ if __name__ == "__main__":
         # TODO test whether this works (it should, but test it)
         # test the interplay between this and the speed slider
         # ---> SPEED SLIDER HAS TO BE AT 1.0
-        v_max_ndarray = np.ones(robot.n_joints) * robot.max_qd #* args.speed_slider
+        v_max_ndarray = np.ones(robot.n_arm_joints) * robot.max_qd #* args.speed_slider
         # test the interplay between this and the speed slider
         # args.acceleration is the actual maximum you're using
-        a_max_ndarray = np.ones(robot.n_joints) * args.acceleration #* args.speed_slider
+        a_max_ndarray = np.ones(robot.n_arm_joints) * args.acceleration #* args.speed_slider
         tc = TCVelAccConstrained(args.gamma_nominal, args.gamma_a, v_max_ndarray, a_max_ndarray, args.eps_tc)
 
     # TODO and NOTE the weight, TCP and inertial matrix needs to be set on the robot
@@ -515,14 +523,14 @@ if __name__ == "__main__":
             'wrench' : np.zeros(6),
         }
     # here you give it it's initial value
-    log_dict = {
-            'qs' : np.zeros((args.max_iterations, 6)),
-            'dmp_poss' : np.zeros((args.max_iterations, 6)),
-            'dqs' : np.zeros((args.max_iterations, 6)),
-            'dmp_vels' : np.zeros((args.max_iterations, 6)),
+    log_item = {
+            'qs' : np.zeros(robot.n_arm_joints),
+            'dmp_poss' : np.zeros(robot.n_arm_joints),
+            'dqs' : np.zeros(robot.n_arm_joints),
+            'dmp_vels' : np.zeros(robot.n_arm_joints),
+            'wrench' : np.zeros(6),
+            'tau' : np.zeros(robot.n_arm_joints),
         }
-    controlLoop = partial(controlLoopWriting, dmp, tc, controller, robot)
-    loop_manager = ControlLoopManager(robot, controlLoop, args, save_past_dict, log_dict)
     #######################################################################
     #                           physical setup                            #
     #######################################################################
@@ -545,12 +553,17 @@ if __name__ == "__main__":
     mtool = robot.getMtool(q_given=first_q)
     #mtool.translation[1] = mtool.translation[1] - 0.0035
     mtool.translation[1] = mtool.translation[1] - 0.012
+    if args.debug_prints:
+        print("im at:", robot.getMtool())
+        print("going to:", mtool)
     print('going to starting write position')
     # TODO: write a compliantMoveL - be careful that everything is in the body frame
     # since your jacobian is the body jacobian!!!
     moveL(args, robot, mtool)
 
     #moveJ(args, robot, dmp.pos.reshape((6,)))
+    controlLoop = partial(controlLoopWriting, dmp, tc, controller, robot)
+    loop_manager = ControlLoopManager(robot, controlLoop, args, save_past_dict, log_item)
     # and now we can actually run
     log_dict, final_iteration = loop_manager.run()
     #loop_manager.stopHandler(None, None)
diff --git a/python/examples/joint_trajectory.csv b/python/examples/joint_trajectory.csv
index 2dbab5ec77811f0bc1d807f76d62cb0b9eec2fdc..27c72f430fa4e4ff3f77a6cbf2068d54142a8464 100644
--- a/python/examples/joint_trajectory.csv
+++ b/python/examples/joint_trajectory.csv
@@ -1,4350 +1,7199 @@
-0.00000,1.18205,-1.20115,-1.59883,-1.00847,1.87935,-0.23483
-0.00115,1.18168,-1.20156,-1.59839,-1.00857,1.87963,-0.23507
-0.00230,1.18131,-1.20197,-1.59796,-1.00867,1.87991,-0.23530
-0.00345,1.18095,-1.20236,-1.59753,-1.00877,1.88019,-0.23554
-0.00460,1.18088,-1.20244,-1.59744,-1.00879,1.88025,-0.23558
-0.00575,1.18050,-1.20287,-1.59698,-1.00890,1.88054,-0.23583
-0.00690,1.18013,-1.20329,-1.59652,-1.00900,1.88083,-0.23607
-0.00805,1.17976,-1.20370,-1.59607,-1.00911,1.88112,-0.23630
-0.00920,1.17939,-1.20411,-1.59562,-1.00922,1.88140,-0.23654
-0.01035,1.17904,-1.20451,-1.59518,-1.00932,1.88167,-0.23677
-0.01150,1.17875,-1.20483,-1.59483,-1.00940,1.88189,-0.23695
-0.01265,1.17838,-1.20526,-1.59434,-1.00952,1.88218,-0.23719
-0.01380,1.17802,-1.20569,-1.59386,-1.00965,1.88246,-0.23742
-0.01495,1.17766,-1.20611,-1.59339,-1.00976,1.88274,-0.23765
-0.01610,1.17730,-1.20653,-1.59292,-1.00988,1.88301,-0.23788
-0.01725,1.17696,-1.20694,-1.59246,-1.01000,1.88328,-0.23811
-0.01840,1.17661,-1.20734,-1.59201,-1.01011,1.88355,-0.23833
-0.01954,1.17634,-1.20766,-1.59165,-1.01020,1.88376,-0.23850
-0.02069,1.17598,-1.20809,-1.59116,-1.01033,1.88404,-0.23874
-0.02184,1.17562,-1.20851,-1.59068,-1.01045,1.88431,-0.23897
-0.02299,1.17527,-1.20892,-1.59021,-1.01058,1.88459,-0.23919
-0.02414,1.17493,-1.20933,-1.58974,-1.01070,1.88485,-0.23942
-0.02529,1.17459,-1.20973,-1.58929,-1.01082,1.88512,-0.23963
-0.02644,1.17432,-1.21005,-1.58892,-1.01091,1.88532,-0.23981
-0.02759,1.17397,-1.21050,-1.58839,-1.01106,1.88559,-0.24003
-0.02874,1.17363,-1.21094,-1.58788,-1.01120,1.88586,-0.24025
-0.02989,1.17330,-1.21137,-1.58737,-1.01134,1.88612,-0.24047
-0.03104,1.17296,-1.21179,-1.58686,-1.01148,1.88638,-0.24069
-0.03219,1.17264,-1.21221,-1.58637,-1.01162,1.88663,-0.24090
-0.03334,1.17232,-1.21262,-1.58589,-1.01175,1.88688,-0.24111
-0.03449,1.17200,-1.21302,-1.58541,-1.01189,1.88713,-0.24131
-0.03564,1.17168,-1.21343,-1.58493,-1.01202,1.88737,-0.24152
-0.03679,1.17134,-1.21388,-1.58440,-1.01217,1.88764,-0.24174
-0.03794,1.17099,-1.21432,-1.58387,-1.01232,1.88791,-0.24197
-0.03909,1.17066,-1.21475,-1.58335,-1.01247,1.88817,-0.24218
-0.04024,1.17033,-1.21518,-1.58285,-1.01261,1.88843,-0.24240
-0.04139,1.17000,-1.21560,-1.58234,-1.01275,1.88868,-0.24261
-0.04254,1.16968,-1.21601,-1.58185,-1.01290,1.88894,-0.24282
-0.04369,1.16936,-1.21642,-1.58137,-1.01304,1.88918,-0.24303
-0.04484,1.16905,-1.21682,-1.58089,-1.01317,1.88943,-0.24323
-0.04599,1.16889,-1.21702,-1.58065,-1.01324,1.88955,-0.24333
-0.04714,1.16855,-1.21748,-1.58009,-1.01341,1.88981,-0.24356
-0.04829,1.16821,-1.21793,-1.57954,-1.01357,1.89007,-0.24377
-0.04944,1.16788,-1.21837,-1.57901,-1.01372,1.89033,-0.24399
-0.05059,1.16756,-1.21881,-1.57848,-1.01388,1.89058,-0.24420
-0.05174,1.16724,-1.21923,-1.57796,-1.01403,1.89083,-0.24441
-0.05289,1.16692,-1.21966,-1.57745,-1.01419,1.89108,-0.24461
-0.05404,1.16661,-1.22007,-1.57694,-1.01434,1.89132,-0.24482
-0.05519,1.16631,-1.22048,-1.57645,-1.01449,1.89156,-0.24502
-0.05633,1.16601,-1.22088,-1.57596,-1.01463,1.89180,-0.24521
-0.05748,1.16583,-1.22112,-1.57566,-1.01472,1.89194,-0.24533
-0.05863,1.16550,-1.22158,-1.57510,-1.01489,1.89219,-0.24555
-0.05978,1.16517,-1.22203,-1.57454,-1.01506,1.89245,-0.24576
-0.06093,1.16485,-1.22247,-1.57399,-1.01523,1.89269,-0.24597
-0.06208,1.16454,-1.22290,-1.57345,-1.01539,1.89294,-0.24617
-0.06323,1.16423,-1.22333,-1.57293,-1.01556,1.89318,-0.24637
-0.06438,1.16393,-1.22375,-1.57240,-1.01572,1.89342,-0.24657
-0.06553,1.16363,-1.22417,-1.57189,-1.01587,1.89365,-0.24677
-0.06668,1.16333,-1.22457,-1.57139,-1.01603,1.89388,-0.24696
-0.06783,1.16304,-1.22497,-1.57089,-1.01618,1.89411,-0.24715
-0.06898,1.16284,-1.22526,-1.57053,-1.01630,1.89427,-0.24729
-0.07013,1.16251,-1.22575,-1.56992,-1.01649,1.89453,-0.24750
-0.07128,1.16219,-1.22622,-1.56931,-1.01668,1.89478,-0.24771
-0.07243,1.16187,-1.22669,-1.56872,-1.01686,1.89502,-0.24792
-0.07358,1.16156,-1.22715,-1.56813,-1.01705,1.89527,-0.24812
-0.07473,1.16125,-1.22761,-1.56756,-1.01723,1.89551,-0.24833
-0.07588,1.16095,-1.22806,-1.56699,-1.01741,1.89574,-0.24852
-0.07703,1.16065,-1.22849,-1.56643,-1.01759,1.89598,-0.24872
-0.07818,1.16036,-1.22893,-1.56589,-1.01776,1.89621,-0.24891
-0.07933,1.16007,-1.22935,-1.56535,-1.01794,1.89643,-0.24910
-0.08048,1.15979,-1.22977,-1.56481,-1.01811,1.89665,-0.24929
-0.08163,1.15951,-1.23018,-1.56429,-1.01828,1.89687,-0.24947
-0.08278,1.15923,-1.23058,-1.56378,-1.01844,1.89709,-0.24965
-0.08393,1.15896,-1.23098,-1.56327,-1.01861,1.89730,-0.24983
-0.08508,1.15888,-1.23110,-1.56311,-1.01866,1.89737,-0.24989
-0.08623,1.15857,-1.23155,-1.56254,-1.01884,1.89761,-0.25009
-0.08738,1.15827,-1.23199,-1.56198,-1.01902,1.89784,-0.25029
-0.08853,1.15797,-1.23242,-1.56143,-1.01920,1.89807,-0.25048
-0.08968,1.15768,-1.23285,-1.56089,-1.01937,1.89830,-0.25068
-0.09083,1.15739,-1.23326,-1.56036,-1.01955,1.89853,-0.25086
-0.09198,1.15711,-1.23368,-1.55984,-1.01972,1.89875,-0.25105
-0.09312,1.15683,-1.23408,-1.55932,-1.01989,1.89897,-0.25123
-0.09427,1.15656,-1.23448,-1.55881,-1.02005,1.89918,-0.25142
-0.09542,1.15642,-1.23468,-1.55855,-1.02014,1.89929,-0.25151
-0.09657,1.15614,-1.23513,-1.55796,-1.02034,1.89951,-0.25169
-0.09772,1.15587,-1.23558,-1.55737,-1.02053,1.89972,-0.25187
-0.09887,1.15560,-1.23602,-1.55679,-1.02072,1.89994,-0.25205
-0.10002,1.15533,-1.23645,-1.55622,-1.02092,1.90014,-0.25223
-0.10117,1.15507,-1.23688,-1.55566,-1.02110,1.90035,-0.25240
-0.10232,1.15481,-1.23730,-1.55511,-1.02129,1.90055,-0.25257
-0.10347,1.15456,-1.23771,-1.55457,-1.02147,1.90075,-0.25274
-0.10462,1.15430,-1.23811,-1.55404,-1.02165,1.90095,-0.25291
-0.10577,1.15406,-1.23851,-1.55351,-1.02183,1.90114,-0.25307
-0.10692,1.15393,-1.23871,-1.55324,-1.02192,1.90124,-0.25315
-0.10807,1.15368,-1.23915,-1.55265,-1.02213,1.90144,-0.25332
-0.10922,1.15342,-1.23959,-1.55206,-1.02233,1.90164,-0.25349
-0.11037,1.15317,-1.24002,-1.55149,-1.02252,1.90184,-0.25366
-0.11152,1.15293,-1.24044,-1.55092,-1.02272,1.90203,-0.25382
-0.11267,1.15268,-1.24086,-1.55036,-1.02291,1.90222,-0.25398
-0.11382,1.15245,-1.24127,-1.54981,-1.02310,1.90241,-0.25414
-0.11497,1.15221,-1.24167,-1.54927,-1.02329,1.90259,-0.25429
-0.11612,1.15198,-1.24207,-1.54874,-1.02347,1.90278,-0.25445
-0.11727,1.15191,-1.24219,-1.54857,-1.02353,1.90283,-0.25449
-0.11842,1.15167,-1.24263,-1.54797,-1.02374,1.90302,-0.25466
-0.11957,1.15143,-1.24307,-1.54737,-1.02395,1.90321,-0.25481
-0.12072,1.15119,-1.24350,-1.54678,-1.02415,1.90340,-0.25497
-0.12187,1.15096,-1.24392,-1.54621,-1.02436,1.90358,-0.25512
-0.12302,1.15073,-1.24434,-1.54564,-1.02455,1.90376,-0.25528
-0.12417,1.15051,-1.24475,-1.54508,-1.02475,1.90393,-0.25543
-0.12532,1.15028,-1.24515,-1.54453,-1.02494,1.90411,-0.25557
-0.12647,1.15007,-1.24554,-1.54399,-1.02514,1.90428,-0.25572
-0.12762,1.14998,-1.24570,-1.54377,-1.02521,1.90435,-0.25578
-0.12877,1.14976,-1.24613,-1.54319,-1.02542,1.90452,-0.25592
-0.12991,1.14955,-1.24654,-1.54261,-1.02563,1.90469,-0.25606
-0.13106,1.14934,-1.24695,-1.54204,-1.02583,1.90485,-0.25620
-0.13221,1.14913,-1.24736,-1.54148,-1.02603,1.90502,-0.25634
-0.13336,1.14893,-1.24775,-1.54093,-1.02623,1.90518,-0.25648
-0.13451,1.14877,-1.24807,-1.54048,-1.02639,1.90530,-0.25659
-0.13566,1.14857,-1.24850,-1.53987,-1.02661,1.90546,-0.25672
-0.13681,1.14838,-1.24893,-1.53927,-1.02683,1.90561,-0.25685
-0.13796,1.14819,-1.24934,-1.53867,-1.02705,1.90576,-0.25697
-0.13911,1.14800,-1.24975,-1.53809,-1.02726,1.90591,-0.25710
-0.14026,1.14781,-1.25016,-1.53751,-1.02747,1.90606,-0.25722
-0.14141,1.14763,-1.25055,-1.53695,-1.02768,1.90620,-0.25735
-0.14256,1.14745,-1.25094,-1.53639,-1.02788,1.90634,-0.25747
-0.14371,1.14742,-1.25103,-1.53627,-1.02793,1.90637,-0.25749
-0.14486,1.14723,-1.25148,-1.53562,-1.02816,1.90652,-0.25762
-0.14601,1.14704,-1.25192,-1.53499,-1.02840,1.90667,-0.25774
-0.14716,1.14686,-1.25235,-1.53436,-1.02863,1.90681,-0.25786
-0.14831,1.14668,-1.25278,-1.53374,-1.02886,1.90695,-0.25798
-0.14946,1.14651,-1.25320,-1.53314,-1.02908,1.90709,-0.25810
-0.15061,1.14633,-1.25361,-1.53254,-1.02930,1.90723,-0.25822
-0.15176,1.14616,-1.25402,-1.53195,-1.02952,1.90736,-0.25833
-0.15291,1.14599,-1.25441,-1.53137,-1.02974,1.90750,-0.25845
-0.15406,1.14583,-1.25481,-1.53080,-1.02995,1.90763,-0.25856
-0.15521,1.14568,-1.25516,-1.53029,-1.03014,1.90775,-0.25866
-0.15636,1.14552,-1.25558,-1.52968,-1.03037,1.90788,-0.25877
-0.15751,1.14535,-1.25599,-1.52908,-1.03059,1.90800,-0.25888
-0.15866,1.14519,-1.25639,-1.52849,-1.03082,1.90813,-0.25898
-0.15981,1.14504,-1.25679,-1.52791,-1.03103,1.90826,-0.25909
-0.16096,1.14488,-1.25718,-1.52733,-1.03125,1.90838,-0.25920
-0.16211,1.14474,-1.25753,-1.52681,-1.03145,1.90849,-0.25929
-0.16326,1.14460,-1.25796,-1.52616,-1.03169,1.90860,-0.25938
-0.16441,1.14446,-1.25839,-1.52552,-1.03194,1.90871,-0.25948
-0.16556,1.14432,-1.25881,-1.52489,-1.03218,1.90882,-0.25958
-0.16670,1.14418,-1.25922,-1.52427,-1.03241,1.90893,-0.25967
-0.16785,1.14405,-1.25963,-1.52366,-1.03265,1.90904,-0.25976
-0.16900,1.14391,-1.26003,-1.52306,-1.03288,1.90915,-0.25985
-0.17015,1.14378,-1.26042,-1.52247,-1.03310,1.90925,-0.25994
-0.17130,1.14365,-1.26081,-1.52188,-1.03333,1.90936,-0.26003
-0.17245,1.14354,-1.26116,-1.52136,-1.03353,1.90945,-0.26011
-0.17360,1.14342,-1.26160,-1.52068,-1.03379,1.90954,-0.26018
-0.17475,1.14331,-1.26203,-1.52001,-1.03405,1.90963,-0.26026
-0.17590,1.14320,-1.26246,-1.51936,-1.03431,1.90972,-0.26034
-0.17705,1.14309,-1.26287,-1.51871,-1.03456,1.90981,-0.26041
-0.17820,1.14298,-1.26328,-1.51807,-1.03480,1.90989,-0.26049
-0.17935,1.14287,-1.26369,-1.51745,-1.03505,1.90998,-0.26056
-0.18050,1.14277,-1.26409,-1.51683,-1.03529,1.91006,-0.26063
-0.18165,1.14266,-1.26448,-1.51623,-1.03553,1.91015,-0.26070
-0.18280,1.14256,-1.26486,-1.51563,-1.03576,1.91023,-0.26077
-0.18395,1.14246,-1.26524,-1.51505,-1.03599,1.91031,-0.26084
-0.18510,1.14241,-1.26544,-1.51474,-1.03611,1.91035,-0.26088
-0.18625,1.14230,-1.26592,-1.51399,-1.03640,1.91044,-0.26095
-0.18740,1.14220,-1.26639,-1.51325,-1.03669,1.91052,-0.26102
-0.18855,1.14209,-1.26686,-1.51252,-1.03697,1.91060,-0.26110
-0.18970,1.14199,-1.26732,-1.51180,-1.03725,1.91069,-0.26117
-0.19085,1.14189,-1.26777,-1.51109,-1.03753,1.91077,-0.26124
-0.19200,1.14179,-1.26821,-1.51040,-1.03780,1.91085,-0.26131
-0.19315,1.14169,-1.26865,-1.50972,-1.03807,1.91093,-0.26137
-0.19430,1.14159,-1.26908,-1.50904,-1.03833,1.91101,-0.26144
-0.19545,1.14149,-1.26950,-1.50838,-1.03859,1.91108,-0.26151
-0.19660,1.14140,-1.26991,-1.50773,-1.03885,1.91116,-0.26157
-0.19775,1.14130,-1.27032,-1.50709,-1.03910,1.91124,-0.26164
-0.19890,1.14121,-1.27072,-1.50646,-1.03935,1.91131,-0.26170
-0.20005,1.14112,-1.27112,-1.50584,-1.03960,1.91139,-0.26177
-0.20120,1.14103,-1.27150,-1.50523,-1.03984,1.91146,-0.26183
-0.20235,1.14094,-1.27188,-1.50463,-1.04008,1.91153,-0.26189
-0.20350,1.14085,-1.27226,-1.50404,-1.04032,1.91160,-0.26195
-0.20464,1.14082,-1.27241,-1.50380,-1.04041,1.91163,-0.26198
-0.20579,1.14074,-1.27284,-1.50311,-1.04069,1.91169,-0.26203
-0.20694,1.14067,-1.27327,-1.50242,-1.04096,1.91175,-0.26208
-0.20809,1.14060,-1.27369,-1.50176,-1.04123,1.91181,-0.26213
-0.20924,1.14052,-1.27410,-1.50110,-1.04149,1.91186,-0.26218
-0.21039,1.14045,-1.27450,-1.50045,-1.04175,1.91192,-0.26223
-0.21154,1.14038,-1.27490,-1.49981,-1.04201,1.91198,-0.26228
-0.21269,1.14031,-1.27529,-1.49918,-1.04226,1.91204,-0.26233
-0.21384,1.14024,-1.27567,-1.49857,-1.04251,1.91209,-0.26237
-0.21499,1.14018,-1.27605,-1.49796,-1.04276,1.91215,-0.26242
-0.21614,1.14011,-1.27642,-1.49736,-1.04300,1.91220,-0.26247
-0.21729,1.14006,-1.27668,-1.49693,-1.04317,1.91224,-0.26250
-0.21844,1.14002,-1.27712,-1.49622,-1.04346,1.91228,-0.26254
-0.21959,1.13997,-1.27755,-1.49552,-1.04374,1.91232,-0.26257
-0.22074,1.13992,-1.27797,-1.49483,-1.04403,1.91236,-0.26260
-0.22189,1.13987,-1.27838,-1.49415,-1.04430,1.91239,-0.26264
-0.22304,1.13983,-1.27879,-1.49348,-1.04457,1.91243,-0.26267
-0.22419,1.13978,-1.27919,-1.49282,-1.04484,1.91247,-0.26271
-0.22534,1.13974,-1.27958,-1.49217,-1.04511,1.91251,-0.26274
-0.22649,1.13969,-1.27997,-1.49153,-1.04537,1.91255,-0.26277
-0.22764,1.13965,-1.28035,-1.49091,-1.04562,1.91258,-0.26280
-0.22879,1.13960,-1.28072,-1.49029,-1.04588,1.91262,-0.26284
-0.22994,1.13956,-1.28109,-1.48968,-1.04613,1.91266,-0.26287
-0.23109,1.13951,-1.28145,-1.48908,-1.04637,1.91269,-0.26290
-0.23224,1.13950,-1.28157,-1.48889,-1.04645,1.91270,-0.26291
-0.23339,1.13948,-1.28201,-1.48815,-1.04675,1.91272,-0.26293
-0.23454,1.13946,-1.28244,-1.48743,-1.04705,1.91274,-0.26294
-0.23569,1.13944,-1.28286,-1.48672,-1.04734,1.91276,-0.26296
-0.23684,1.13942,-1.28328,-1.48602,-1.04763,1.91278,-0.26298
-0.23799,1.13940,-1.28369,-1.48533,-1.04792,1.91280,-0.26299
-0.23914,1.13938,-1.28409,-1.48465,-1.04820,1.91282,-0.26301
-0.24029,1.13936,-1.28449,-1.48398,-1.04847,1.91283,-0.26303
-0.24143,1.13933,-1.28488,-1.48332,-1.04875,1.91285,-0.26304
-0.24258,1.13931,-1.28526,-1.48268,-1.04901,1.91287,-0.26306
-0.24373,1.13929,-1.28564,-1.48204,-1.04928,1.91289,-0.26308
-0.24488,1.13927,-1.28601,-1.48141,-1.04954,1.91291,-0.26310
-0.24603,1.13925,-1.28638,-1.48080,-1.04980,1.91293,-0.26311
-0.24718,1.13923,-1.28673,-1.48019,-1.05005,1.91295,-0.26313
-0.24833,1.13921,-1.28706,-1.47965,-1.05028,1.91296,-0.26314
-0.24948,1.13920,-1.28743,-1.47901,-1.05054,1.91297,-0.26315
-0.25063,1.13920,-1.28780,-1.47838,-1.05081,1.91298,-0.26316
-0.25178,1.13919,-1.28816,-1.47775,-1.05107,1.91299,-0.26317
-0.25293,1.13918,-1.28852,-1.47714,-1.05133,1.91299,-0.26317
-0.25408,1.13918,-1.28887,-1.47654,-1.05158,1.91300,-0.26318
-0.25523,1.13918,-1.28898,-1.47636,-1.05166,1.91300,-0.26318
-0.25638,1.13919,-1.28936,-1.47569,-1.05194,1.91299,-0.26318
-0.25753,1.13920,-1.28973,-1.47504,-1.05221,1.91299,-0.26317
-0.25868,1.13921,-1.29010,-1.47440,-1.05248,1.91298,-0.26317
-0.25983,1.13922,-1.29046,-1.47377,-1.05275,1.91298,-0.26316
-0.26098,1.13923,-1.29082,-1.47315,-1.05301,1.91297,-0.26316
-0.26213,1.13924,-1.29117,-1.47254,-1.05327,1.91297,-0.26316
-0.26328,1.13925,-1.29151,-1.47194,-1.05353,1.91296,-0.26316
-0.26443,1.13925,-1.29158,-1.47181,-1.05358,1.91296,-0.26315
-0.26558,1.13929,-1.29197,-1.47114,-1.05387,1.91293,-0.26313
-0.26673,1.13932,-1.29234,-1.47047,-1.05416,1.91291,-0.26312
-0.26788,1.13935,-1.29271,-1.46981,-1.05444,1.91289,-0.26310
-0.26903,1.13938,-1.29308,-1.46916,-1.05471,1.91287,-0.26308
-0.27018,1.13941,-1.29344,-1.46852,-1.05499,1.91285,-0.26306
-0.27133,1.13944,-1.29379,-1.46790,-1.05525,1.91283,-0.26305
-0.27248,1.13947,-1.29414,-1.46728,-1.05552,1.91281,-0.26303
-0.27363,1.13949,-1.29448,-1.46668,-1.05578,1.91279,-0.26302
-0.27478,1.13952,-1.29475,-1.46619,-1.05599,1.91277,-0.26301
-0.27593,1.13957,-1.29513,-1.46551,-1.05628,1.91274,-0.26298
-0.27708,1.13962,-1.29550,-1.46484,-1.05657,1.91270,-0.26295
-0.27822,1.13967,-1.29587,-1.46418,-1.05685,1.91266,-0.26292
-0.27937,1.13971,-1.29623,-1.46353,-1.05713,1.91263,-0.26289
-0.28052,1.13976,-1.29658,-1.46290,-1.05740,1.91260,-0.26286
-0.28167,1.13980,-1.29693,-1.46227,-1.05767,1.91256,-0.26284
-0.28282,1.13985,-1.29727,-1.46165,-1.05794,1.91253,-0.26281
-0.28397,1.13989,-1.29760,-1.46105,-1.05820,1.91250,-0.26279
-0.28512,1.13993,-1.29791,-1.46050,-1.05844,1.91247,-0.26276
-0.28627,1.13999,-1.29828,-1.45982,-1.05873,1.91242,-0.26272
-0.28742,1.14006,-1.29864,-1.45915,-1.05902,1.91238,-0.26268
-0.28857,1.14012,-1.29900,-1.45849,-1.05931,1.91233,-0.26265
-0.28972,1.14018,-1.29936,-1.45784,-1.05959,1.91229,-0.26261
-0.29087,1.14024,-1.29971,-1.45721,-1.05987,1.91224,-0.26257
-0.29202,1.14030,-1.30005,-1.45658,-1.06014,1.91220,-0.26254
-0.29317,1.14035,-1.30039,-1.45596,-1.06041,1.91216,-0.26250
-0.29432,1.14041,-1.30072,-1.45536,-1.06067,1.91212,-0.26247
-0.29547,1.14047,-1.30105,-1.45475,-1.06094,1.91207,-0.26243
-0.29662,1.14054,-1.30140,-1.45409,-1.06122,1.91202,-0.26239
-0.29777,1.14061,-1.30176,-1.45344,-1.06151,1.91197,-0.26235
-0.29892,1.14068,-1.30210,-1.45280,-1.06179,1.91192,-0.26230
-0.30007,1.14075,-1.30244,-1.45217,-1.06206,1.91186,-0.26226
-0.30122,1.14081,-1.30278,-1.45155,-1.06233,1.91181,-0.26222
-0.30237,1.14088,-1.30311,-1.45095,-1.06260,1.91177,-0.26218
-0.30352,1.14094,-1.30343,-1.45035,-1.06286,1.91172,-0.26214
-0.30467,1.14096,-1.30353,-1.45016,-1.06294,1.91170,-0.26213
-0.30582,1.14105,-1.30390,-1.44948,-1.06324,1.91164,-0.26208
-0.30697,1.14113,-1.30425,-1.44881,-1.06353,1.91157,-0.26202
-0.30812,1.14122,-1.30460,-1.44816,-1.06382,1.91151,-0.26197
-0.30927,1.14130,-1.30495,-1.44751,-1.06410,1.91145,-0.26192
-0.31042,1.14138,-1.30529,-1.44687,-1.06438,1.91139,-0.26187
-0.31157,1.14145,-1.30563,-1.44625,-1.06466,1.91133,-0.26182
-0.31272,1.14153,-1.30595,-1.44563,-1.06493,1.91128,-0.26178
-0.31387,1.14160,-1.30628,-1.44503,-1.06519,1.91122,-0.26173
-0.31501,1.14168,-1.30660,-1.44442,-1.06546,1.91116,-0.26168
-0.31616,1.14177,-1.30696,-1.44375,-1.06576,1.91109,-0.26162
-0.31731,1.14187,-1.30732,-1.44308,-1.06605,1.91102,-0.26157
-0.31846,1.14196,-1.30766,-1.44242,-1.06634,1.91095,-0.26151
-0.31961,1.14205,-1.30801,-1.44178,-1.06663,1.91088,-0.26145
-0.32076,1.14214,-1.30834,-1.44114,-1.06691,1.91082,-0.26140
-0.32191,1.14222,-1.30868,-1.44051,-1.06718,1.91075,-0.26134
-0.32306,1.14231,-1.30900,-1.43990,-1.06745,1.91069,-0.26129
-0.32421,1.14239,-1.30932,-1.43929,-1.06772,1.91063,-0.26124
-0.32536,1.14247,-1.30964,-1.43869,-1.06799,1.91056,-0.26119
-0.32651,1.14258,-1.30997,-1.43806,-1.06827,1.91048,-0.26112
-0.32766,1.14269,-1.31029,-1.43744,-1.06855,1.91039,-0.26105
-0.32881,1.14280,-1.31061,-1.43682,-1.06882,1.91031,-0.26098
-0.32996,1.14290,-1.31092,-1.43622,-1.06910,1.91023,-0.26091
-0.33111,1.14301,-1.31123,-1.43562,-1.06936,1.91016,-0.26085
-0.33226,1.14305,-1.31135,-1.43538,-1.06947,1.91012,-0.26082
-0.33341,1.14319,-1.31168,-1.43473,-1.06976,1.91002,-0.26074
-0.33456,1.14332,-1.31200,-1.43410,-1.07005,1.90992,-0.26065
-0.33571,1.14345,-1.31232,-1.43347,-1.07033,1.90982,-0.26057
-0.33686,1.14358,-1.31263,-1.43285,-1.07061,1.90972,-0.26049
-0.33801,1.14371,-1.31294,-1.43224,-1.07089,1.90962,-0.26041
-0.33916,1.14383,-1.31324,-1.43165,-1.07116,1.90953,-0.26033
-0.34031,1.14395,-1.31354,-1.43106,-1.07142,1.90944,-0.26025
-0.34146,1.14397,-1.31360,-1.43094,-1.07148,1.90942,-0.26024
-0.34261,1.14410,-1.31391,-1.43033,-1.07175,1.90932,-0.26015
-0.34376,1.14423,-1.31421,-1.42972,-1.07203,1.90922,-0.26007
-0.34491,1.14435,-1.31451,-1.42913,-1.07230,1.90913,-0.26000
-0.34606,1.14445,-1.31475,-1.42865,-1.07251,1.90905,-0.25993
-0.34721,1.14460,-1.31506,-1.42803,-1.07280,1.90894,-0.25984
-0.34836,1.14475,-1.31536,-1.42741,-1.07308,1.90883,-0.25974
-0.34951,1.14489,-1.31566,-1.42681,-1.07335,1.90872,-0.25965
-0.35066,1.14504,-1.31595,-1.42621,-1.07363,1.90861,-0.25956
-0.35181,1.14517,-1.31624,-1.42563,-1.07389,1.90850,-0.25947
-0.35295,1.14526,-1.31642,-1.42528,-1.07405,1.90844,-0.25942
-0.35410,1.14542,-1.31670,-1.42470,-1.07432,1.90832,-0.25932
-0.35525,1.14555,-1.31695,-1.42418,-1.07456,1.90821,-0.25923
-0.35640,1.14571,-1.31723,-1.42359,-1.07483,1.90809,-0.25913
-0.35755,1.14585,-1.31748,-1.42308,-1.07507,1.90798,-0.25904
-0.35870,1.14602,-1.31775,-1.42250,-1.07534,1.90785,-0.25893
-0.35985,1.14619,-1.31802,-1.42193,-1.07560,1.90772,-0.25882
-0.36100,1.14621,-1.31805,-1.42187,-1.07563,1.90770,-0.25881
-0.36215,1.14640,-1.31831,-1.42130,-1.07590,1.90756,-0.25869
-0.36330,1.14659,-1.31857,-1.42074,-1.07616,1.90742,-0.25857
-0.36445,1.14679,-1.31882,-1.42018,-1.07643,1.90726,-0.25844
-0.36560,1.14699,-1.31907,-1.41963,-1.07670,1.90711,-0.25831
-0.36675,1.14703,-1.31912,-1.41952,-1.07675,1.90707,-0.25828
-0.36790,1.14727,-1.31935,-1.41897,-1.07702,1.90690,-0.25813
-0.36905,1.14750,-1.31958,-1.41843,-1.07728,1.90672,-0.25798
-0.37020,1.14759,-1.31963,-1.41828,-1.07736,1.90664,-0.25792
-0.37135,1.14765,-1.31922,-1.41890,-1.07715,1.90660,-0.25789
-0.37250,1.14771,-1.31882,-1.41951,-1.07694,1.90656,-0.25785
-0.37365,1.14776,-1.31842,-1.42012,-1.07673,1.90651,-0.25782
-0.37480,1.14782,-1.31803,-1.42071,-1.07653,1.90647,-0.25778
-0.37595,1.14783,-1.31791,-1.42089,-1.07647,1.90646,-0.25777
-0.37710,1.14785,-1.31747,-1.42159,-1.07622,1.90644,-0.25776
-0.37825,1.14788,-1.31704,-1.42227,-1.07598,1.90642,-0.25774
-0.37940,1.14790,-1.31662,-1.42293,-1.07574,1.90640,-0.25773
-0.38055,1.14793,-1.31620,-1.42359,-1.07550,1.90638,-0.25771
-0.38170,1.14795,-1.31579,-1.42424,-1.07527,1.90636,-0.25770
-0.38285,1.14798,-1.31539,-1.42488,-1.07505,1.90634,-0.25768
-0.38400,1.14800,-1.31500,-1.42550,-1.07482,1.90632,-0.25767
-0.38515,1.14803,-1.31461,-1.42612,-1.07460,1.90630,-0.25765
-0.38630,1.14805,-1.31422,-1.42672,-1.07438,1.90628,-0.25764
-0.38745,1.14808,-1.31385,-1.42732,-1.07417,1.90626,-0.25762
-0.38860,1.14808,-1.31381,-1.42738,-1.07414,1.90626,-0.25762
-0.38974,1.14808,-1.31340,-1.42804,-1.07390,1.90626,-0.25762
-0.39089,1.14809,-1.31300,-1.42869,-1.07366,1.90625,-0.25762
-0.39204,1.14809,-1.31261,-1.42933,-1.07342,1.90625,-0.25761
-0.39319,1.14810,-1.31222,-1.42995,-1.07319,1.90624,-0.25761
-0.39434,1.14811,-1.31184,-1.43057,-1.07296,1.90624,-0.25761
-0.39549,1.14811,-1.31146,-1.43118,-1.07274,1.90623,-0.25760
-0.39664,1.14812,-1.31109,-1.43178,-1.07251,1.90622,-0.25760
-0.39779,1.14811,-1.31070,-1.43242,-1.07227,1.90623,-0.25760
-0.39894,1.14810,-1.31032,-1.43305,-1.07203,1.90623,-0.25761
-0.40009,1.14810,-1.30994,-1.43367,-1.07180,1.90624,-0.25761
-0.40124,1.14809,-1.30957,-1.43428,-1.07157,1.90624,-0.25762
-0.40239,1.14808,-1.30921,-1.43488,-1.07134,1.90625,-0.25762
-0.40354,1.14808,-1.30906,-1.43513,-1.07125,1.90625,-0.25762
-0.40469,1.14805,-1.30866,-1.43581,-1.07099,1.90627,-0.25764
-0.40584,1.14802,-1.30826,-1.43648,-1.07073,1.90629,-0.25766
-0.40699,1.14799,-1.30787,-1.43713,-1.07047,1.90631,-0.25768
-0.40814,1.14797,-1.30749,-1.43778,-1.07022,1.90633,-0.25770
-0.40929,1.14794,-1.30711,-1.43841,-1.06998,1.90635,-0.25771
-0.41044,1.14792,-1.30674,-1.43904,-1.06973,1.90637,-0.25773
-0.41159,1.14789,-1.30638,-1.43965,-1.06950,1.90639,-0.25775
-0.41274,1.14787,-1.30602,-1.44026,-1.06926,1.90640,-0.25776
-0.41389,1.14785,-1.30573,-1.44074,-1.06907,1.90642,-0.25777
-0.41504,1.14781,-1.30535,-1.44140,-1.06881,1.90645,-0.25780
-0.41619,1.14776,-1.30497,-1.44205,-1.06856,1.90648,-0.25783
-0.41734,1.14772,-1.30460,-1.44269,-1.06830,1.90651,-0.25785
-0.41849,1.14769,-1.30423,-1.44331,-1.06806,1.90654,-0.25788
-0.41964,1.14765,-1.30387,-1.44393,-1.06781,1.90657,-0.25790
-0.42079,1.14761,-1.30352,-1.44454,-1.06757,1.90660,-0.25793
-0.42194,1.14758,-1.30317,-1.44514,-1.06733,1.90662,-0.25795
-0.42309,1.14756,-1.30310,-1.44527,-1.06728,1.90663,-0.25796
-0.42424,1.14748,-1.30267,-1.44602,-1.06698,1.90669,-0.25801
-0.42539,1.14741,-1.30225,-1.44676,-1.06668,1.90675,-0.25806
-0.42653,1.14733,-1.30184,-1.44749,-1.06639,1.90681,-0.25811
-0.42768,1.14726,-1.30144,-1.44820,-1.06610,1.90686,-0.25815
-0.42883,1.14718,-1.30104,-1.44890,-1.06582,1.90692,-0.25820
-0.42998,1.14711,-1.30065,-1.44959,-1.06554,1.90697,-0.25825
-0.43113,1.14704,-1.30026,-1.45027,-1.06526,1.90702,-0.25829
-0.43228,1.14698,-1.29989,-1.45094,-1.06499,1.90708,-0.25833
-0.43343,1.14691,-1.29952,-1.45160,-1.06472,1.90713,-0.25838
-0.43458,1.14684,-1.29915,-1.45224,-1.06446,1.90718,-0.25842
-0.43573,1.14678,-1.29879,-1.45288,-1.06420,1.90722,-0.25846
-0.43688,1.14672,-1.29844,-1.45350,-1.06395,1.90727,-0.25850
-0.43803,1.14666,-1.29809,-1.45411,-1.06370,1.90732,-0.25854
-0.43918,1.14660,-1.29775,-1.45472,-1.06345,1.90736,-0.25857
-0.44033,1.14654,-1.29742,-1.45531,-1.06321,1.90741,-0.25861
-0.44148,1.14652,-1.29734,-1.45545,-1.06315,1.90742,-0.25862
-0.44263,1.14642,-1.29692,-1.45621,-1.06284,1.90750,-0.25869
-0.44378,1.14631,-1.29650,-1.45696,-1.06252,1.90758,-0.25876
-0.44493,1.14621,-1.29610,-1.45770,-1.06222,1.90766,-0.25882
-0.44608,1.14611,-1.29570,-1.45843,-1.06192,1.90773,-0.25889
-0.44723,1.14601,-1.29530,-1.45915,-1.06162,1.90781,-0.25895
-0.44838,1.14592,-1.29491,-1.45985,-1.06133,1.90788,-0.25901
-0.44953,1.14583,-1.29453,-1.46054,-1.06104,1.90795,-0.25907
-0.45068,1.14573,-1.29416,-1.46122,-1.06076,1.90802,-0.25913
-0.45183,1.14564,-1.29379,-1.46189,-1.06048,1.90809,-0.25919
-0.45298,1.14556,-1.29343,-1.46255,-1.06021,1.90816,-0.25924
-0.45413,1.14547,-1.29307,-1.46319,-1.05994,1.90822,-0.25930
-0.45528,1.14538,-1.29272,-1.46383,-1.05967,1.90829,-0.25935
-0.45643,1.14530,-1.29238,-1.46445,-1.05941,1.90835,-0.25941
-0.45758,1.14522,-1.29204,-1.46507,-1.05916,1.90841,-0.25946
-0.45873,1.14514,-1.29171,-1.46567,-1.05890,1.90847,-0.25951
-0.45988,1.14506,-1.29138,-1.46627,-1.05865,1.90853,-0.25956
-0.46103,1.14500,-1.29112,-1.46675,-1.05845,1.90858,-0.25960
-0.46218,1.14488,-1.29073,-1.46747,-1.05815,1.90867,-0.25967
-0.46332,1.14477,-1.29034,-1.46818,-1.05785,1.90875,-0.25975
-0.46447,1.14466,-1.28996,-1.46888,-1.05756,1.90884,-0.25982
-0.46562,1.14455,-1.28959,-1.46957,-1.05727,1.90892,-0.25989
-0.46677,1.14444,-1.28923,-1.47024,-1.05698,1.90900,-0.25995
-0.46792,1.14434,-1.28887,-1.47091,-1.05670,1.90908,-0.26002
-0.46907,1.14424,-1.28851,-1.47156,-1.05643,1.90916,-0.26009
-0.47022,1.14414,-1.28817,-1.47220,-1.05615,1.90924,-0.26015
-0.47137,1.14404,-1.28783,-1.47283,-1.05589,1.90931,-0.26021
-0.47252,1.14394,-1.28749,-1.47345,-1.05562,1.90938,-0.26027
-0.47367,1.14385,-1.28716,-1.47406,-1.05537,1.90946,-0.26033
-0.47482,1.14376,-1.28684,-1.47466,-1.05511,1.90953,-0.26039
-0.47597,1.14367,-1.28652,-1.47525,-1.05486,1.90960,-0.26045
-0.47712,1.14360,-1.28629,-1.47568,-1.05468,1.90965,-0.26049
-0.47827,1.14345,-1.28586,-1.47649,-1.05433,1.90977,-0.26059
-0.47942,1.14330,-1.28543,-1.47729,-1.05400,1.90988,-0.26069
-0.48057,1.14315,-1.28502,-1.47807,-1.05366,1.90999,-0.26078
-0.48172,1.14301,-1.28461,-1.47884,-1.05334,1.91010,-0.26088
-0.48287,1.14286,-1.28420,-1.47960,-1.05302,1.91021,-0.26097
-0.48402,1.14273,-1.28381,-1.48034,-1.05270,1.91032,-0.26106
-0.48517,1.14259,-1.28342,-1.48107,-1.05239,1.91042,-0.26114
-0.48632,1.14246,-1.28304,-1.48179,-1.05208,1.91052,-0.26123
-0.48747,1.14233,-1.28266,-1.48250,-1.05178,1.91062,-0.26131
-0.48862,1.14220,-1.28230,-1.48319,-1.05148,1.91072,-0.26140
-0.48977,1.14207,-1.28193,-1.48388,-1.05119,1.91082,-0.26148
-0.49092,1.14195,-1.28158,-1.48455,-1.05090,1.91091,-0.26156
-0.49207,1.14183,-1.28123,-1.48521,-1.05062,1.91101,-0.26163
-0.49322,1.14171,-1.28088,-1.48586,-1.05034,1.91110,-0.26171
-0.49437,1.14159,-1.28055,-1.48649,-1.05007,1.91119,-0.26178
-0.49552,1.14148,-1.28021,-1.48712,-1.04980,1.91127,-0.26186
-0.49667,1.14137,-1.27989,-1.48774,-1.04953,1.91136,-0.26193
-0.49782,1.14126,-1.27957,-1.48835,-1.04927,1.91144,-0.26200
-0.49897,1.14115,-1.27925,-1.48894,-1.04901,1.91153,-0.26207
-0.50011,1.14104,-1.27894,-1.48953,-1.04876,1.91161,-0.26214
-0.50126,1.14094,-1.27863,-1.49011,-1.04850,1.91169,-0.26220
-0.50241,1.14081,-1.27829,-1.49075,-1.04823,1.91178,-0.26228
-0.50356,1.14069,-1.27796,-1.49138,-1.04796,1.91187,-0.26236
-0.50471,1.14058,-1.27764,-1.49200,-1.04769,1.91196,-0.26243
-0.50586,1.14046,-1.27732,-1.49260,-1.04743,1.91205,-0.26251
-0.50701,1.14035,-1.27700,-1.49320,-1.04717,1.91214,-0.26258
-0.50816,1.14024,-1.27669,-1.49379,-1.04692,1.91222,-0.26265
-0.50931,1.14013,-1.27639,-1.49437,-1.04667,1.91231,-0.26272
-0.51046,1.14009,-1.27630,-1.49455,-1.04659,1.91234,-0.26274
-0.51161,1.13996,-1.27595,-1.49520,-1.04631,1.91244,-0.26283
-0.51276,1.13983,-1.27562,-1.49584,-1.04603,1.91253,-0.26291
-0.51391,1.13971,-1.27528,-1.49648,-1.04575,1.91263,-0.26299
-0.51506,1.13958,-1.27496,-1.49710,-1.04548,1.91273,-0.26307
-0.51621,1.13946,-1.27464,-1.49771,-1.04522,1.91282,-0.26315
-0.51736,1.13934,-1.27432,-1.49831,-1.04496,1.91291,-0.26323
-0.51851,1.13923,-1.27401,-1.49890,-1.04470,1.91300,-0.26330
-0.51966,1.13911,-1.27371,-1.49949,-1.04445,1.91309,-0.26338
-0.52081,1.13900,-1.27341,-1.50007,-1.04419,1.91318,-0.26345
-0.52196,1.13885,-1.27306,-1.50074,-1.04390,1.91329,-0.26354
-0.52311,1.13872,-1.27271,-1.50140,-1.04362,1.91339,-0.26363
-0.52426,1.13858,-1.27238,-1.50205,-1.04334,1.91350,-0.26372
-0.52541,1.13845,-1.27204,-1.50268,-1.04306,1.91360,-0.26380
-0.52656,1.13832,-1.27172,-1.50331,-1.04279,1.91370,-0.26389
-0.52771,1.13819,-1.27140,-1.50392,-1.04252,1.91380,-0.26397
-0.52886,1.13806,-1.27108,-1.50453,-1.04226,1.91390,-0.26405
-0.53001,1.13794,-1.27077,-1.50512,-1.04200,1.91399,-0.26413
-0.53116,1.13782,-1.27047,-1.50571,-1.04175,1.91408,-0.26421
-0.53231,1.13770,-1.27017,-1.50628,-1.04150,1.91418,-0.26428
-0.53346,1.13762,-1.26999,-1.50664,-1.04134,1.91424,-0.26433
-0.53461,1.13744,-1.26961,-1.50737,-1.04102,1.91438,-0.26445
-0.53576,1.13726,-1.26925,-1.50809,-1.04071,1.91452,-0.26457
-0.53691,1.13708,-1.26889,-1.50880,-1.04040,1.91465,-0.26468
-0.53805,1.13691,-1.26854,-1.50950,-1.04009,1.91479,-0.26480
-0.53920,1.13673,-1.26819,-1.51018,-1.03980,1.91492,-0.26491
-0.54035,1.13657,-1.26785,-1.51085,-1.03950,1.91505,-0.26502
-0.54150,1.13640,-1.26751,-1.51151,-1.03921,1.91517,-0.26512
-0.54265,1.13624,-1.26718,-1.51216,-1.03893,1.91530,-0.26523
-0.54380,1.13608,-1.26686,-1.51280,-1.03865,1.91542,-0.26533
-0.54495,1.13593,-1.26654,-1.51343,-1.03837,1.91554,-0.26543
-0.54610,1.13577,-1.26623,-1.51405,-1.03810,1.91566,-0.26553
-0.54725,1.13562,-1.26592,-1.51465,-1.03783,1.91577,-0.26563
-0.54840,1.13547,-1.26562,-1.51525,-1.03757,1.91589,-0.26572
-0.54955,1.13533,-1.26532,-1.51584,-1.03731,1.91600,-0.26582
-0.55070,1.13519,-1.26503,-1.51641,-1.03706,1.91611,-0.26591
-0.55185,1.13505,-1.26474,-1.51698,-1.03681,1.91621,-0.26600
-0.55300,1.13496,-1.26457,-1.51733,-1.03665,1.91628,-0.26605
-0.55415,1.13478,-1.26422,-1.51802,-1.03635,1.91642,-0.26617
-0.55530,1.13461,-1.26387,-1.51870,-1.03605,1.91655,-0.26628
-0.55645,1.13444,-1.26353,-1.51938,-1.03576,1.91668,-0.26639
-0.55760,1.13427,-1.26320,-1.52004,-1.03547,1.91681,-0.26650
-0.55875,1.13411,-1.26287,-1.52068,-1.03518,1.91694,-0.26661
-0.55990,1.13395,-1.26254,-1.52132,-1.03490,1.91706,-0.26671
-0.56105,1.13379,-1.26223,-1.52195,-1.03463,1.91718,-0.26681
-0.56220,1.13363,-1.26192,-1.52256,-1.03436,1.91730,-0.26691
-0.56335,1.13348,-1.26161,-1.52317,-1.03409,1.91742,-0.26701
-0.56450,1.13333,-1.26131,-1.52376,-1.03383,1.91753,-0.26711
-0.56565,1.13318,-1.26101,-1.52435,-1.03357,1.91765,-0.26720
-0.56680,1.13304,-1.26072,-1.52492,-1.03332,1.91776,-0.26730
-0.56795,1.13290,-1.26044,-1.52549,-1.03307,1.91787,-0.26739
-0.56910,1.13280,-1.26023,-1.52590,-1.03289,1.91795,-0.26746
-0.57025,1.13261,-1.25986,-1.52662,-1.03257,1.91809,-0.26758
-0.57140,1.13242,-1.25950,-1.52734,-1.03226,1.91824,-0.26770
-0.57255,1.13224,-1.25915,-1.52804,-1.03195,1.91838,-0.26782
-0.57370,1.13206,-1.25880,-1.52873,-1.03165,1.91851,-0.26793
-0.57484,1.13188,-1.25845,-1.52941,-1.03136,1.91865,-0.26805
-0.57599,1.13171,-1.25811,-1.53008,-1.03106,1.91878,-0.26816
-0.57714,1.13154,-1.25778,-1.53074,-1.03078,1.91891,-0.26827
-0.57829,1.13137,-1.25746,-1.53138,-1.03049,1.91904,-0.26838
-0.57944,1.13121,-1.25714,-1.53201,-1.03022,1.91917,-0.26848
-0.58059,1.13105,-1.25682,-1.53264,-1.02994,1.91929,-0.26859
-0.58174,1.13089,-1.25651,-1.53325,-1.02967,1.91941,-0.26869
-0.58289,1.13074,-1.25621,-1.53385,-1.02941,1.91953,-0.26879
-0.58404,1.13059,-1.25591,-1.53444,-1.02915,1.91965,-0.26889
-0.58519,1.13044,-1.25562,-1.53503,-1.02889,1.91976,-0.26899
-0.58634,1.13029,-1.25533,-1.53560,-1.02864,1.91988,-0.26908
-0.58749,1.13015,-1.25505,-1.53616,-1.02839,1.91999,-0.26917
-0.58864,1.13004,-1.25484,-1.53656,-1.02821,1.92007,-0.26924
-0.58979,1.12987,-1.25451,-1.53723,-1.02792,1.92020,-0.26936
-0.59094,1.12970,-1.25417,-1.53789,-1.02763,1.92033,-0.26947
-0.59209,1.12953,-1.25385,-1.53854,-1.02735,1.92046,-0.26958
-0.59324,1.12936,-1.25352,-1.53917,-1.02707,1.92059,-0.26969
-0.59439,1.12920,-1.25321,-1.53980,-1.02680,1.92072,-0.26979
-0.59554,1.12904,-1.25290,-1.54041,-1.02653,1.92084,-0.26990
-0.59669,1.12888,-1.25259,-1.54102,-1.02626,1.92096,-0.27000
-0.59784,1.12872,-1.25229,-1.54161,-1.02600,1.92108,-0.27010
-0.59899,1.12857,-1.25200,-1.54220,-1.02574,1.92120,-0.27020
-0.60014,1.12842,-1.25171,-1.54277,-1.02549,1.92132,-0.27030
-0.60129,1.12828,-1.25143,-1.54333,-1.02524,1.92143,-0.27039
-0.60244,1.12813,-1.25115,-1.54389,-1.02500,1.92154,-0.27048
-0.60359,1.12812,-1.25112,-1.54395,-1.02497,1.92155,-0.27049
-0.60474,1.12795,-1.25080,-1.54459,-1.02469,1.92168,-0.27060
-0.60589,1.12778,-1.25048,-1.54521,-1.02442,1.92181,-0.27071
-0.60704,1.12762,-1.25017,-1.54582,-1.02415,1.92193,-0.27082
-0.60819,1.12747,-1.24987,-1.54642,-1.02389,1.92205,-0.27092
-0.60934,1.12731,-1.24957,-1.54701,-1.02363,1.92217,-0.27102
-0.61049,1.12716,-1.24928,-1.54759,-1.02337,1.92229,-0.27112
-0.61163,1.12701,-1.24899,-1.54816,-1.02312,1.92241,-0.27122
-0.61278,1.12686,-1.24871,-1.54872,-1.02288,1.92252,-0.27131
-0.61393,1.12673,-1.24846,-1.54923,-1.02265,1.92262,-0.27140
-0.61508,1.12656,-1.24814,-1.54986,-1.02238,1.92275,-0.27151
-0.61623,1.12639,-1.24783,-1.55048,-1.02211,1.92288,-0.27162
-0.61738,1.12623,-1.24752,-1.55109,-1.02184,1.92301,-0.27172
-0.61853,1.12607,-1.24722,-1.55169,-1.02158,1.92313,-0.27182
-0.61968,1.12592,-1.24692,-1.55228,-1.02132,1.92325,-0.27193
-0.62083,1.12576,-1.24663,-1.55286,-1.02106,1.92337,-0.27203
-0.62198,1.12561,-1.24634,-1.55343,-1.02081,1.92348,-0.27213
-0.62313,1.12546,-1.24606,-1.55399,-1.02057,1.92360,-0.27222
-0.62428,1.12533,-1.24581,-1.55449,-1.02035,1.92370,-0.27231
-0.62543,1.12516,-1.24550,-1.55510,-1.02008,1.92383,-0.27242
-0.62658,1.12500,-1.24520,-1.55570,-1.01982,1.92395,-0.27252
-0.62773,1.12485,-1.24490,-1.55630,-1.01956,1.92407,-0.27262
-0.62888,1.12469,-1.24461,-1.55688,-1.01930,1.92419,-0.27273
-0.63003,1.12454,-1.24432,-1.55745,-1.01905,1.92431,-0.27282
-0.63118,1.12439,-1.24404,-1.55801,-1.01880,1.92443,-0.27292
-0.63233,1.12424,-1.24376,-1.55856,-1.01856,1.92454,-0.27302
-0.63348,1.12419,-1.24367,-1.55874,-1.01849,1.92458,-0.27305
-0.63463,1.12401,-1.24334,-1.55940,-1.01820,1.92472,-0.27317
-0.63578,1.12383,-1.24301,-1.56005,-1.01791,1.92485,-0.27328
-0.63693,1.12366,-1.24269,-1.56069,-1.01763,1.92499,-0.27340
-0.63808,1.12349,-1.24237,-1.56132,-1.01736,1.92512,-0.27351
-0.63923,1.12332,-1.24206,-1.56194,-1.01709,1.92525,-0.27362
-0.64038,1.12315,-1.24176,-1.56255,-1.01682,1.92538,-0.27373
-0.64153,1.12299,-1.24145,-1.56315,-1.01656,1.92550,-0.27383
-0.64268,1.12283,-1.24116,-1.56373,-1.01631,1.92563,-0.27394
-0.64383,1.12268,-1.24087,-1.56431,-1.01605,1.92575,-0.27404
-0.64498,1.12252,-1.24058,-1.56488,-1.01581,1.92586,-0.27414
-0.64613,1.12237,-1.24030,-1.56543,-1.01556,1.92598,-0.27424
-0.64728,1.12222,-1.24003,-1.56598,-1.01532,1.92610,-0.27433
-0.64842,1.12221,-1.24000,-1.56605,-1.01529,1.92611,-0.27435
-0.64957,1.12203,-1.23967,-1.56669,-1.01501,1.92625,-0.27446
-0.65072,1.12185,-1.23935,-1.56732,-1.01474,1.92638,-0.27458
-0.65187,1.12168,-1.23904,-1.56794,-1.01447,1.92651,-0.27469
-0.65302,1.12152,-1.23874,-1.56855,-1.01420,1.92664,-0.27480
-0.65417,1.12135,-1.23843,-1.56915,-1.01394,1.92677,-0.27491
-0.65532,1.12119,-1.23814,-1.56974,-1.01368,1.92689,-0.27501
-0.65647,1.12103,-1.23785,-1.57032,-1.01343,1.92701,-0.27512
-0.65762,1.12087,-1.23756,-1.57089,-1.01318,1.92714,-0.27522
-0.65877,1.12072,-1.23728,-1.57145,-1.01293,1.92725,-0.27532
-0.65992,1.12057,-1.23700,-1.57200,-1.01269,1.92737,-0.27542
-0.66107,1.12049,-1.23686,-1.57229,-1.01257,1.92743,-0.27547
-0.66222,1.12030,-1.23652,-1.57297,-1.01227,1.92758,-0.27559
-0.66337,1.12012,-1.23619,-1.57363,-1.01199,1.92772,-0.27571
-0.66452,1.11993,-1.23586,-1.57428,-1.01170,1.92786,-0.27583
-0.66567,1.11975,-1.23553,-1.57493,-1.01142,1.92800,-0.27595
-0.66682,1.11958,-1.23522,-1.57556,-1.01115,1.92813,-0.27607
-0.66797,1.11940,-1.23491,-1.57618,-1.01088,1.92827,-0.27618
-0.66912,1.11923,-1.23460,-1.57679,-1.01061,1.92840,-0.27629
-0.67027,1.11907,-1.23430,-1.57739,-1.01035,1.92853,-0.27640
-0.67142,1.11890,-1.23400,-1.57797,-1.01010,1.92865,-0.27651
-0.67257,1.11874,-1.23371,-1.57855,-1.00984,1.92878,-0.27661
-0.67372,1.11859,-1.23343,-1.57912,-1.00959,1.92890,-0.27672
-0.67487,1.11843,-1.23315,-1.57968,-1.00935,1.92902,-0.27682
-0.67602,1.11828,-1.23287,-1.58023,-1.00911,1.92914,-0.27692
-0.67717,1.11818,-1.23270,-1.58057,-1.00896,1.92921,-0.27698
-0.67832,1.11798,-1.23238,-1.58122,-1.00868,1.92937,-0.27711
-0.67947,1.11778,-1.23207,-1.58186,-1.00840,1.92952,-0.27724
-0.68062,1.11758,-1.23176,-1.58248,-1.00812,1.92967,-0.27737
-0.68177,1.11739,-1.23146,-1.58310,-1.00785,1.92982,-0.27750
-0.68292,1.11720,-1.23116,-1.58371,-1.00759,1.92997,-0.27762
-0.68407,1.11701,-1.23087,-1.58430,-1.00732,1.93011,-0.27775
-0.68521,1.11683,-1.23059,-1.58489,-1.00707,1.93025,-0.27787
-0.68636,1.11665,-1.23030,-1.58546,-1.00681,1.93039,-0.27798
-0.68751,1.11647,-1.23003,-1.58603,-1.00656,1.93052,-0.27810
-0.68866,1.11630,-1.22976,-1.58658,-1.00632,1.93066,-0.27821
-0.68981,1.11613,-1.22949,-1.58713,-1.00608,1.93079,-0.27833
-0.69096,1.11596,-1.22923,-1.58767,-1.00584,1.93092,-0.27844
-0.69211,1.11594,-1.22919,-1.58774,-1.00581,1.93093,-0.27845
-0.69326,1.11572,-1.22884,-1.58846,-1.00550,1.93111,-0.27860
-0.69441,1.11550,-1.22849,-1.58916,-1.00519,1.93128,-0.27874
-0.69556,1.11528,-1.22814,-1.58986,-1.00489,1.93144,-0.27888
-0.69671,1.11507,-1.22781,-1.59054,-1.00459,1.93160,-0.27902
-0.69786,1.11486,-1.22748,-1.59121,-1.00430,1.93176,-0.27916
-0.69901,1.11466,-1.22715,-1.59186,-1.00402,1.93192,-0.27930
-0.70016,1.11446,-1.22683,-1.59251,-1.00374,1.93208,-0.27943
-0.70131,1.11426,-1.22652,-1.59315,-1.00346,1.93223,-0.27956
-0.70246,1.11406,-1.22621,-1.59377,-1.00319,1.93238,-0.27969
-0.70361,1.11387,-1.22591,-1.59438,-1.00292,1.93252,-0.27981
-0.70476,1.11369,-1.22561,-1.59499,-1.00265,1.93267,-0.27993
-0.70591,1.11350,-1.22532,-1.59558,-1.00239,1.93281,-0.28006
-0.70706,1.11332,-1.22504,-1.59616,-1.00214,1.93295,-0.28017
-0.70821,1.11314,-1.22476,-1.59674,-1.00189,1.93309,-0.28029
-0.70936,1.11297,-1.22448,-1.59730,-1.00164,1.93322,-0.28041
-0.71051,1.11280,-1.22421,-1.59785,-1.00140,1.93335,-0.28052
-0.71166,1.11263,-1.22394,-1.59839,-1.00116,1.93348,-0.28063
-0.71281,1.11248,-1.22370,-1.59888,-1.00094,1.93360,-0.28073
-0.71396,1.11229,-1.22341,-1.59948,-1.00068,1.93374,-0.28085
-0.71511,1.11211,-1.22312,-1.60006,-1.00043,1.93388,-0.28097
-0.71626,1.11194,-1.22284,-1.60064,-1.00018,1.93402,-0.28109
-0.71741,1.11176,-1.22256,-1.60120,-0.99993,1.93415,-0.28120
-0.71856,1.11159,-1.22229,-1.60176,-0.99969,1.93429,-0.28132
-0.71971,1.11142,-1.22202,-1.60230,-0.99945,1.93442,-0.28143
-0.72086,1.11125,-1.22175,-1.60284,-0.99921,1.93454,-0.28154
-0.72201,1.11122,-1.22170,-1.60295,-0.99916,1.93457,-0.28156
-0.72315,1.11103,-1.22140,-1.60356,-0.99890,1.93472,-0.28168
-0.72430,1.11084,-1.22110,-1.60416,-0.99864,1.93486,-0.28181
-0.72545,1.11066,-1.22081,-1.60476,-0.99838,1.93500,-0.28193
-0.72660,1.11048,-1.22052,-1.60534,-0.99813,1.93514,-0.28205
-0.72775,1.11030,-1.22024,-1.60591,-0.99788,1.93528,-0.28216
-0.72890,1.11013,-1.21996,-1.60647,-0.99763,1.93541,-0.28228
-0.73005,1.10996,-1.21969,-1.60702,-0.99739,1.93554,-0.28239
-0.73120,1.10979,-1.21943,-1.60756,-0.99715,1.93567,-0.28250
-0.73235,1.10966,-1.21921,-1.60799,-0.99696,1.93577,-0.28259
-0.73350,1.10947,-1.21891,-1.60860,-0.99670,1.93592,-0.28272
-0.73465,1.10928,-1.21861,-1.60920,-0.99644,1.93606,-0.28284
-0.73580,1.10910,-1.21832,-1.60979,-0.99618,1.93620,-0.28296
-0.73695,1.10892,-1.21804,-1.61037,-0.99593,1.93634,-0.28308
-0.73810,1.10874,-1.21775,-1.61094,-0.99568,1.93648,-0.28319
-0.73925,1.10857,-1.21748,-1.61150,-0.99544,1.93661,-0.28331
-0.74040,1.10840,-1.21721,-1.61205,-0.99520,1.93674,-0.28342
-0.74155,1.10823,-1.21694,-1.61259,-0.99496,1.93687,-0.28353
-0.74270,1.10808,-1.21670,-1.61308,-0.99475,1.93699,-0.28363
-0.74385,1.10789,-1.21640,-1.61369,-0.99449,1.93713,-0.28376
-0.74500,1.10770,-1.21610,-1.61429,-0.99423,1.93728,-0.28388
-0.74615,1.10752,-1.21581,-1.61488,-0.99397,1.93742,-0.28400
-0.74730,1.10734,-1.21553,-1.61545,-0.99372,1.93756,-0.28412
-0.74845,1.10716,-1.21525,-1.61602,-0.99347,1.93769,-0.28424
-0.74960,1.10699,-1.21497,-1.61658,-0.99323,1.93783,-0.28435
-0.75075,1.10682,-1.21470,-1.61713,-0.99299,1.93796,-0.28446
-0.75190,1.10665,-1.21443,-1.61767,-0.99276,1.93809,-0.28457
-0.75305,1.10652,-1.21422,-1.61810,-0.99257,1.93819,-0.28466
-0.75420,1.10632,-1.21391,-1.61873,-0.99230,1.93834,-0.28479
-0.75535,1.10613,-1.21360,-1.61934,-0.99203,1.93849,-0.28492
-0.75650,1.10594,-1.21331,-1.61995,-0.99177,1.93863,-0.28504
-0.75765,1.10576,-1.21301,-1.62054,-0.99152,1.93878,-0.28517
-0.75880,1.10557,-1.21272,-1.62112,-0.99126,1.93892,-0.28529
-0.75994,1.10540,-1.21244,-1.62170,-0.99102,1.93905,-0.28541
-0.76109,1.10522,-1.21216,-1.62226,-0.99077,1.93919,-0.28552
-0.76224,1.10505,-1.21189,-1.62281,-0.99053,1.93932,-0.28564
-0.76339,1.10488,-1.21162,-1.62336,-0.99030,1.93945,-0.28575
-0.76454,1.10471,-1.21136,-1.62389,-0.99006,1.93958,-0.28586
-0.76569,1.10464,-1.21125,-1.62411,-0.98997,1.93963,-0.28590
-0.76684,1.10445,-1.21094,-1.62474,-0.98970,1.93978,-0.28603
-0.76799,1.10425,-1.21063,-1.62535,-0.98943,1.93993,-0.28616
-0.76914,1.10406,-1.21033,-1.62595,-0.98917,1.94008,-0.28629
-0.77029,1.10388,-1.21004,-1.62655,-0.98892,1.94022,-0.28641
-0.77144,1.10370,-1.20975,-1.62713,-0.98867,1.94036,-0.28653
-0.77259,1.10352,-1.20947,-1.62770,-0.98842,1.94050,-0.28665
-0.77374,1.10334,-1.20919,-1.62826,-0.98818,1.94063,-0.28677
-0.77489,1.10317,-1.20892,-1.62881,-0.98794,1.94077,-0.28688
-0.77604,1.10300,-1.20865,-1.62936,-0.98770,1.94090,-0.28699
-0.77719,1.10283,-1.20839,-1.62989,-0.98747,1.94103,-0.28710
-0.77834,1.10274,-1.20825,-1.63017,-0.98735,1.94110,-0.28716
-0.77949,1.10252,-1.20794,-1.63082,-0.98707,1.94127,-0.28731
-0.78064,1.10230,-1.20763,-1.63145,-0.98679,1.94144,-0.28746
-0.78179,1.10208,-1.20732,-1.63208,-0.98652,1.94160,-0.28760
-0.78294,1.10187,-1.20702,-1.63270,-0.98625,1.94177,-0.28775
-0.78409,1.10166,-1.20673,-1.63330,-0.98599,1.94193,-0.28789
-0.78524,1.10145,-1.20644,-1.63390,-0.98573,1.94209,-0.28802
-0.78639,1.10125,-1.20616,-1.63448,-0.98548,1.94224,-0.28816
-0.78754,1.10105,-1.20588,-1.63506,-0.98523,1.94240,-0.28829
-0.78869,1.10085,-1.20561,-1.63562,-0.98498,1.94255,-0.28842
-0.78984,1.10066,-1.20534,-1.63618,-0.98474,1.94270,-0.28855
-0.79099,1.10047,-1.20508,-1.63672,-0.98450,1.94284,-0.28867
-0.79214,1.10028,-1.20482,-1.63726,-0.98427,1.94298,-0.28880
-0.79329,1.10010,-1.20457,-1.63779,-0.98403,1.94312,-0.28892
-0.79444,1.10001,-1.20444,-1.63806,-0.98392,1.94320,-0.28898
-0.79559,1.09979,-1.20413,-1.63869,-0.98364,1.94336,-0.28912
-0.79673,1.09958,-1.20383,-1.63931,-0.98338,1.94353,-0.28927
-0.79788,1.09937,-1.20353,-1.63992,-0.98311,1.94369,-0.28941
-0.79903,1.09916,-1.20324,-1.64052,-0.98285,1.94385,-0.28954
-0.80018,1.09896,-1.20296,-1.64111,-0.98260,1.94400,-0.28968
-0.80133,1.09876,-1.20268,-1.64169,-0.98235,1.94416,-0.28981
-0.80248,1.09856,-1.20240,-1.64226,-0.98210,1.94431,-0.28994
-0.80363,1.09837,-1.20213,-1.64282,-0.98186,1.94445,-0.29007
-0.80478,1.09818,-1.20186,-1.64336,-0.98162,1.94460,-0.29019
-0.80593,1.09800,-1.20160,-1.64390,-0.98138,1.94474,-0.29032
-0.80708,1.09782,-1.20135,-1.64443,-0.98115,1.94488,-0.29044
-0.80823,1.09763,-1.20109,-1.64496,-0.98092,1.94502,-0.29056
-0.80938,1.09743,-1.20080,-1.64556,-0.98066,1.94518,-0.29070
-0.81053,1.09723,-1.20051,-1.64615,-0.98041,1.94533,-0.29083
-0.81168,1.09703,-1.20023,-1.64672,-0.98016,1.94548,-0.29096
-0.81283,1.09684,-1.19996,-1.64729,-0.97992,1.94563,-0.29109
-0.81398,1.09665,-1.19969,-1.64785,-0.97967,1.94578,-0.29122
-0.81513,1.09646,-1.19942,-1.64839,-0.97944,1.94592,-0.29134
-0.81628,1.09628,-1.19916,-1.64893,-0.97920,1.94606,-0.29146
-0.81743,1.09610,-1.19891,-1.64946,-0.97897,1.94620,-0.29158
-0.81858,1.09595,-1.19870,-1.64988,-0.97879,1.94632,-0.29168
-0.81973,1.09575,-1.19841,-1.65048,-0.97853,1.94647,-0.29182
-0.82088,1.09555,-1.19812,-1.65107,-0.97828,1.94663,-0.29195
-0.82203,1.09535,-1.19784,-1.65164,-0.97803,1.94678,-0.29208
-0.82318,1.09516,-1.19757,-1.65221,-0.97779,1.94693,-0.29221
-0.82433,1.09497,-1.19730,-1.65276,-0.97755,1.94707,-0.29234
-0.82548,1.09478,-1.19703,-1.65331,-0.97731,1.94721,-0.29246
-0.82663,1.09460,-1.19677,-1.65385,-0.97708,1.94736,-0.29258
-0.82778,1.09442,-1.19651,-1.65437,-0.97685,1.94749,-0.29270
-0.82893,1.09427,-1.19630,-1.65480,-0.97667,1.94761,-0.29280
-0.83008,1.09405,-1.19599,-1.65545,-0.97639,1.94778,-0.29295
-0.83123,1.09383,-1.19568,-1.65608,-0.97612,1.94794,-0.29309
-0.83238,1.09362,-1.19537,-1.65671,-0.97585,1.94810,-0.29324
-0.83352,1.09341,-1.19507,-1.65732,-0.97559,1.94826,-0.29338
-0.83467,1.09321,-1.19478,-1.65792,-0.97533,1.94842,-0.29351
-0.83582,1.09301,-1.19449,-1.65851,-0.97508,1.94858,-0.29365
-0.83697,1.09281,-1.19420,-1.65909,-0.97483,1.94873,-0.29378
-0.83812,1.09261,-1.19392,-1.65967,-0.97458,1.94888,-0.29391
-0.83927,1.09242,-1.19365,-1.66023,-0.97434,1.94903,-0.29404
-0.84042,1.09223,-1.19338,-1.66078,-0.97410,1.94917,-0.29416
-0.84157,1.09205,-1.19312,-1.66132,-0.97387,1.94931,-0.29429
-0.84272,1.09187,-1.19286,-1.66185,-0.97364,1.94945,-0.29441
-0.84387,1.09169,-1.19260,-1.66238,-0.97342,1.94959,-0.29453
-0.84502,1.09162,-1.19250,-1.66259,-0.97332,1.94964,-0.29458
-0.84617,1.09143,-1.19219,-1.66319,-0.97307,1.94979,-0.29470
-0.84732,1.09125,-1.19190,-1.66379,-0.97282,1.94993,-0.29482
-0.84847,1.09107,-1.19161,-1.66437,-0.97257,1.95006,-0.29494
-0.84962,1.09090,-1.19132,-1.66494,-0.97233,1.95020,-0.29506
-0.85077,1.09072,-1.19104,-1.66550,-0.97209,1.95033,-0.29517
-0.85192,1.09055,-1.19076,-1.66605,-0.97186,1.95046,-0.29529
-0.85307,1.09039,-1.19049,-1.66659,-0.97163,1.95059,-0.29540
-0.85422,1.09022,-1.19022,-1.66712,-0.97140,1.95072,-0.29551
-0.85537,1.09009,-1.19000,-1.66756,-0.97122,1.95082,-0.29559
-0.85652,1.08991,-1.18967,-1.66821,-0.97095,1.95096,-0.29572
-0.85767,1.08972,-1.18933,-1.66886,-0.97068,1.95110,-0.29584
-0.85882,1.08954,-1.18901,-1.66949,-0.97042,1.95124,-0.29596
-0.85997,1.08937,-1.18869,-1.67011,-0.97016,1.95137,-0.29608
-0.86112,1.08919,-1.18837,-1.67073,-0.96990,1.95151,-0.29620
-0.86227,1.08902,-1.18806,-1.67133,-0.96965,1.95164,-0.29631
-0.86342,1.08885,-1.18776,-1.67192,-0.96940,1.95177,-0.29642
-0.86457,1.08869,-1.18746,-1.67250,-0.96916,1.95189,-0.29653
-0.86572,1.08853,-1.18717,-1.67307,-0.96892,1.95202,-0.29664
-0.86687,1.08837,-1.18688,-1.67363,-0.96869,1.95214,-0.29675
-0.86802,1.08821,-1.18660,-1.67418,-0.96845,1.95226,-0.29685
-0.86917,1.08806,-1.18632,-1.67472,-0.96823,1.95238,-0.29695
-0.87032,1.08791,-1.18605,-1.67526,-0.96800,1.95250,-0.29706
-0.87146,1.08783,-1.18591,-1.67554,-0.96789,1.95255,-0.29711
-0.87261,1.08766,-1.18553,-1.67624,-0.96760,1.95268,-0.29722
-0.87376,1.08750,-1.18517,-1.67692,-0.96732,1.95281,-0.29733
-0.87491,1.08734,-1.18481,-1.67760,-0.96705,1.95294,-0.29744
-0.87606,1.08718,-1.18445,-1.67826,-0.96678,1.95306,-0.29755
-0.87721,1.08702,-1.18411,-1.67891,-0.96651,1.95318,-0.29765
-0.87836,1.08686,-1.18377,-1.67955,-0.96625,1.95330,-0.29775
-0.87951,1.08671,-1.18343,-1.68018,-0.96599,1.95341,-0.29786
-0.88066,1.08656,-1.18310,-1.68080,-0.96574,1.95353,-0.29796
-0.88181,1.08642,-1.18278,-1.68141,-0.96549,1.95364,-0.29805
-0.88296,1.08628,-1.18246,-1.68201,-0.96525,1.95375,-0.29815
-0.88411,1.08613,-1.18215,-1.68259,-0.96501,1.95386,-0.29824
-0.88526,1.08600,-1.18184,-1.68317,-0.96477,1.95397,-0.29834
-0.88641,1.08586,-1.18154,-1.68374,-0.96454,1.95407,-0.29843
-0.88756,1.08573,-1.18125,-1.68429,-0.96431,1.95417,-0.29852
-0.88871,1.08560,-1.18096,-1.68484,-0.96408,1.95427,-0.29860
-0.88986,1.08547,-1.18067,-1.68538,-0.96386,1.95437,-0.29869
-0.89101,1.08539,-1.18050,-1.68571,-0.96373,1.95443,-0.29874
-0.89216,1.08525,-1.18016,-1.68634,-0.96347,1.95454,-0.29883
-0.89331,1.08511,-1.17982,-1.68696,-0.96322,1.95465,-0.29893
-0.89446,1.08497,-1.17950,-1.68756,-0.96297,1.95475,-0.29902
-0.89561,1.08484,-1.17917,-1.68816,-0.96273,1.95486,-0.29911
-0.89676,1.08471,-1.17886,-1.68875,-0.96249,1.95496,-0.29920
-0.89791,1.08458,-1.17855,-1.68932,-0.96226,1.95506,-0.29928
-0.89906,1.08445,-1.17824,-1.68989,-0.96202,1.95515,-0.29937
-0.90021,1.08433,-1.17794,-1.69045,-0.96180,1.95525,-0.29945
-0.90136,1.08420,-1.17765,-1.69099,-0.96157,1.95534,-0.29953
-0.90251,1.08408,-1.17736,-1.69153,-0.96135,1.95544,-0.29961
-0.90366,1.08403,-1.17721,-1.69181,-0.96124,1.95548,-0.29965
-0.90481,1.08392,-1.17687,-1.69241,-0.96100,1.95556,-0.29972
-0.90596,1.08382,-1.17654,-1.69300,-0.96077,1.95564,-0.29979
-0.90711,1.08372,-1.17622,-1.69359,-0.96053,1.95572,-0.29986
-0.90825,1.08362,-1.17589,-1.69416,-0.96031,1.95579,-0.29992
-0.90940,1.08352,-1.17558,-1.69472,-0.96008,1.95587,-0.29999
-0.91055,1.08343,-1.17527,-1.69528,-0.95986,1.95594,-0.30005
-0.91170,1.08334,-1.17497,-1.69582,-0.95964,1.95601,-0.30011
-0.91285,1.08328,-1.17478,-1.69615,-0.95951,1.95606,-0.30015
-0.91400,1.08320,-1.17446,-1.69671,-0.95929,1.95612,-0.30020
-0.91515,1.08312,-1.17414,-1.69727,-0.95907,1.95618,-0.30026
-0.91630,1.08304,-1.17383,-1.69782,-0.95885,1.95625,-0.30031
-0.91745,1.08296,-1.17352,-1.69837,-0.95863,1.95631,-0.30036
-0.91860,1.08287,-1.17320,-1.69893,-0.95841,1.95638,-0.30042
-0.91975,1.08278,-1.17289,-1.69948,-0.95819,1.95644,-0.30048
-0.92090,1.08270,-1.17258,-1.70003,-0.95798,1.95651,-0.30054
-0.92205,1.08264,-1.17239,-1.70036,-0.95784,1.95655,-0.30057
-0.92320,1.08256,-1.17205,-1.70096,-0.95761,1.95662,-0.30063
-0.92435,1.08247,-1.17171,-1.70155,-0.95738,1.95668,-0.30069
-0.92550,1.08238,-1.17138,-1.70213,-0.95715,1.95675,-0.30074
-0.92665,1.08230,-1.17105,-1.70270,-0.95692,1.95681,-0.30080
-0.92780,1.08222,-1.17073,-1.70327,-0.95670,1.95688,-0.30085
-0.92895,1.08214,-1.17042,-1.70382,-0.95648,1.95694,-0.30091
-0.93010,1.08206,-1.17011,-1.70436,-0.95627,1.95700,-0.30096
-0.93125,1.08204,-1.17001,-1.70452,-0.95620,1.95702,-0.30097
-0.93240,1.08197,-1.16968,-1.70509,-0.95598,1.95707,-0.30102
-0.93355,1.08190,-1.16936,-1.70565,-0.95576,1.95712,-0.30107
-0.93470,1.08183,-1.16904,-1.70621,-0.95555,1.95718,-0.30111
-0.93585,1.08177,-1.16871,-1.70677,-0.95533,1.95723,-0.30115
-0.93700,1.08170,-1.16828,-1.70748,-0.95506,1.95728,-0.30120
-0.93815,1.08163,-1.16786,-1.70819,-0.95479,1.95733,-0.30124
-0.93930,1.08156,-1.16745,-1.70888,-0.95453,1.95738,-0.30129
-0.94045,1.08150,-1.16705,-1.70956,-0.95427,1.95743,-0.30133
-0.94160,1.08143,-1.16665,-1.71023,-0.95401,1.95748,-0.30137
-0.94275,1.08137,-1.16626,-1.71089,-0.95376,1.95753,-0.30141
-0.94390,1.08131,-1.16587,-1.71153,-0.95352,1.95758,-0.30145
-0.94504,1.08125,-1.16550,-1.71217,-0.95327,1.95762,-0.30149
-0.94619,1.08119,-1.16512,-1.71279,-0.95304,1.95767,-0.30153
-0.94734,1.08114,-1.16476,-1.71340,-0.95280,1.95771,-0.30157
-0.94849,1.08108,-1.16440,-1.71400,-0.95257,1.95775,-0.30160
-0.94964,1.08103,-1.16405,-1.71460,-0.95234,1.95780,-0.30164
-0.95079,1.08098,-1.16370,-1.71518,-0.95212,1.95784,-0.30167
-0.95194,1.08092,-1.16336,-1.71575,-0.95190,1.95788,-0.30171
-0.95309,1.08087,-1.16303,-1.71631,-0.95168,1.95792,-0.30174
-0.95424,1.08083,-1.16270,-1.71686,-0.95147,1.95795,-0.30177
-0.95539,1.08078,-1.16238,-1.71741,-0.95126,1.95799,-0.30180
-0.95654,1.08077,-1.16234,-1.71747,-0.95124,1.95799,-0.30180
-0.95769,1.08075,-1.16198,-1.71806,-0.95101,1.95802,-0.30182
-0.95884,1.08072,-1.16162,-1.71864,-0.95079,1.95804,-0.30184
-0.95999,1.08069,-1.16127,-1.71922,-0.95058,1.95806,-0.30186
-0.96114,1.08067,-1.16092,-1.71978,-0.95036,1.95808,-0.30187
-0.96229,1.08064,-1.16058,-1.72034,-0.95015,1.95810,-0.30189
-0.96344,1.08062,-1.16025,-1.72088,-0.94995,1.95812,-0.30190
-0.96459,1.08061,-1.16015,-1.72106,-0.94988,1.95812,-0.30191
-0.96574,1.08057,-1.15977,-1.72168,-0.94965,1.95815,-0.30193
-0.96689,1.08054,-1.15939,-1.72229,-0.94942,1.95818,-0.30195
-0.96804,1.08051,-1.15903,-1.72289,-0.94919,1.95820,-0.30197
-0.96919,1.08047,-1.15867,-1.72348,-0.94897,1.95823,-0.30199
-0.97034,1.08044,-1.15831,-1.72406,-0.94875,1.95825,-0.30201
-0.97149,1.08041,-1.15796,-1.72463,-0.94854,1.95827,-0.30203
-0.97264,1.08038,-1.15762,-1.72519,-0.94832,1.95830,-0.30205
-0.97379,1.08035,-1.15729,-1.72574,-0.94812,1.95832,-0.30207
-0.97494,1.08033,-1.15695,-1.72629,-0.94791,1.95834,-0.30209
-0.97609,1.08032,-1.15654,-1.72694,-0.94767,1.95835,-0.30209
-0.97724,1.08031,-1.15613,-1.72758,-0.94743,1.95835,-0.30209
-0.97839,1.08031,-1.15574,-1.72821,-0.94720,1.95836,-0.30210
-0.97954,1.08030,-1.15535,-1.72883,-0.94697,1.95836,-0.30210
-0.98069,1.08029,-1.15497,-1.72943,-0.94675,1.95837,-0.30210
-0.98183,1.08029,-1.15459,-1.73003,-0.94653,1.95837,-0.30211
-0.98298,1.08028,-1.15422,-1.73062,-0.94631,1.95838,-0.30211
-0.98413,1.08028,-1.15386,-1.73119,-0.94610,1.95838,-0.30211
-0.98528,1.08027,-1.15351,-1.73176,-0.94589,1.95838,-0.30211
-0.98643,1.08027,-1.15316,-1.73231,-0.94569,1.95839,-0.30211
-0.98758,1.08027,-1.15281,-1.73286,-0.94548,1.95839,-0.30211
-0.98873,1.08027,-1.15260,-1.73320,-0.94536,1.95839,-0.30211
-0.98988,1.08026,-1.15219,-1.73384,-0.94512,1.95839,-0.30211
-0.99103,1.08026,-1.15179,-1.73447,-0.94489,1.95839,-0.30211
-0.99218,1.08026,-1.15140,-1.73509,-0.94467,1.95839,-0.30211
-0.99333,1.08026,-1.15101,-1.73570,-0.94444,1.95839,-0.30211
-0.99448,1.08026,-1.15063,-1.73630,-0.94422,1.95839,-0.30211
-0.99563,1.08026,-1.15026,-1.73689,-0.94400,1.95839,-0.30210
-0.99678,1.08026,-1.14989,-1.73747,-0.94379,1.95839,-0.30210
-0.99793,1.08027,-1.14953,-1.73804,-0.94358,1.95839,-0.30210
-0.99908,1.08027,-1.14917,-1.73860,-0.94338,1.95839,-0.30210
-1.00023,1.08027,-1.14883,-1.73915,-0.94317,1.95839,-0.30209
-1.00138,1.08028,-1.14847,-1.73970,-0.94297,1.95838,-0.30209
-1.00253,1.08032,-1.14805,-1.74034,-0.94274,1.95835,-0.30205
-1.00368,1.08037,-1.14763,-1.74097,-0.94252,1.95831,-0.30202
-1.00483,1.08041,-1.14722,-1.74158,-0.94230,1.95828,-0.30199
-1.00598,1.08046,-1.14682,-1.74219,-0.94209,1.95824,-0.30196
-1.00713,1.08051,-1.14642,-1.74279,-0.94188,1.95821,-0.30192
-1.00828,1.08055,-1.14603,-1.74337,-0.94167,1.95818,-0.30189
-1.00943,1.08060,-1.14564,-1.74395,-0.94147,1.95814,-0.30186
-1.01058,1.08064,-1.14527,-1.74451,-0.94127,1.95811,-0.30183
-1.01173,1.08068,-1.14490,-1.74507,-0.94107,1.95807,-0.30180
-1.01288,1.08073,-1.14453,-1.74562,-0.94087,1.95804,-0.30176
-1.01403,1.08077,-1.14417,-1.74616,-0.94068,1.95801,-0.30173
-1.01518,1.08082,-1.14375,-1.74679,-0.94046,1.95797,-0.30170
-1.01633,1.08087,-1.14334,-1.74740,-0.94024,1.95793,-0.30166
-1.01748,1.08092,-1.14294,-1.74800,-0.94003,1.95789,-0.30162
-1.01862,1.08097,-1.14254,-1.74859,-0.93982,1.95785,-0.30159
-1.01977,1.08102,-1.14215,-1.74917,-0.93962,1.95782,-0.30155
-1.02092,1.08107,-1.14177,-1.74974,-0.93941,1.95778,-0.30152
-1.02207,1.08112,-1.14140,-1.75031,-0.93922,1.95774,-0.30148
-1.02322,1.08117,-1.14103,-1.75086,-0.93902,1.95770,-0.30145
-1.02437,1.08122,-1.14067,-1.75140,-0.93883,1.95767,-0.30142
-1.02552,1.08125,-1.14045,-1.75173,-0.93871,1.95764,-0.30139
-1.02667,1.08131,-1.14004,-1.75232,-0.93851,1.95759,-0.30135
-1.02782,1.08138,-1.13965,-1.75289,-0.93830,1.95754,-0.30130
-1.02897,1.08144,-1.13926,-1.75346,-0.93811,1.95749,-0.30125
-1.03012,1.08151,-1.13888,-1.75402,-0.93791,1.95744,-0.30121
-1.03127,1.08157,-1.13851,-1.75457,-0.93772,1.95739,-0.30116
-1.03242,1.08164,-1.13814,-1.75511,-0.93753,1.95735,-0.30112
-1.03357,1.08167,-1.13792,-1.75544,-0.93742,1.95732,-0.30109
-1.03472,1.08174,-1.13753,-1.75600,-0.93722,1.95726,-0.30104
-1.03587,1.08181,-1.13715,-1.75656,-0.93703,1.95721,-0.30099
-1.03702,1.08188,-1.13678,-1.75710,-0.93684,1.95716,-0.30095
-1.03817,1.08195,-1.13641,-1.75764,-0.93665,1.95711,-0.30090
-1.03932,1.08196,-1.13633,-1.75775,-0.93661,1.95710,-0.30089
-1.04047,1.08204,-1.13596,-1.75829,-0.93642,1.95703,-0.30083
-1.04162,1.08212,-1.13558,-1.75883,-0.93624,1.95697,-0.30078
-1.04277,1.08218,-1.13532,-1.75921,-0.93611,1.95693,-0.30074
-1.04392,1.08227,-1.13494,-1.75975,-0.93592,1.95686,-0.30068
-1.04507,1.08235,-1.13456,-1.76029,-0.93574,1.95680,-0.30061
-1.04622,1.08241,-1.13434,-1.76061,-0.93563,1.95676,-0.30058
-1.04737,1.08249,-1.13397,-1.76114,-0.93544,1.95669,-0.30052
-1.04852,1.08255,-1.13371,-1.76152,-0.93532,1.95665,-0.30048
-1.04967,1.08264,-1.13333,-1.76205,-0.93514,1.95657,-0.30041
-1.05082,1.08274,-1.13295,-1.76258,-0.93495,1.95650,-0.30035
-1.05197,1.08280,-1.13269,-1.76295,-0.93483,1.95645,-0.30030
-1.05312,1.08291,-1.13231,-1.76348,-0.93465,1.95637,-0.30023
-1.05427,1.08304,-1.13193,-1.76400,-0.93448,1.95627,-0.30014
-1.05542,1.08305,-1.13189,-1.76406,-0.93446,1.95626,-0.30013
-1.05656,1.08319,-1.13150,-1.76458,-0.93429,1.95615,-0.30003
-1.05771,1.08324,-1.13149,-1.76457,-0.93430,1.95612,-0.30000
-1.05886,1.08354,-1.13173,-1.76404,-0.93450,1.95589,-0.29979
-1.06001,1.08383,-1.13198,-1.76352,-0.93469,1.95567,-0.29959
-1.06116,1.08412,-1.13222,-1.76300,-0.93489,1.95545,-0.29939
-1.06231,1.08441,-1.13245,-1.76249,-0.93508,1.95523,-0.29920
-1.06346,1.08469,-1.13268,-1.76200,-0.93527,1.95502,-0.29901
-1.06461,1.08496,-1.13291,-1.76151,-0.93545,1.95481,-0.29882
-1.06576,1.08523,-1.13313,-1.76103,-0.93563,1.95460,-0.29863
-1.06691,1.08550,-1.13335,-1.76056,-0.93581,1.95440,-0.29845
-1.06806,1.08576,-1.13357,-1.76009,-0.93599,1.95420,-0.29827
-1.06921,1.08586,-1.13366,-1.75989,-0.93606,1.95412,-0.29820
-1.07036,1.08613,-1.13396,-1.75930,-0.93628,1.95392,-0.29802
-1.07151,1.08639,-1.13425,-1.75871,-0.93650,1.95372,-0.29784
-1.07266,1.08665,-1.13454,-1.75814,-0.93671,1.95352,-0.29767
-1.07381,1.08690,-1.13483,-1.75757,-0.93692,1.95333,-0.29749
-1.07496,1.08715,-1.13511,-1.75702,-0.93713,1.95314,-0.29732
-1.07611,1.08739,-1.13538,-1.75647,-0.93733,1.95295,-0.29716
-1.07726,1.08763,-1.13565,-1.75593,-0.93754,1.95277,-0.29699
-1.07841,1.08787,-1.13592,-1.75541,-0.93773,1.95259,-0.29683
-1.07956,1.08810,-1.13618,-1.75489,-0.93793,1.95241,-0.29668
-1.08071,1.08833,-1.13643,-1.75438,-0.93812,1.95224,-0.29652
-1.08186,1.08855,-1.13668,-1.75388,-0.93831,1.95207,-0.29637
-1.08301,1.08877,-1.13693,-1.75339,-0.93849,1.95190,-0.29622
-1.08416,1.08897,-1.13715,-1.75294,-0.93866,1.95175,-0.29609
-1.08531,1.08920,-1.13745,-1.75236,-0.93887,1.95158,-0.29593
-1.08646,1.08942,-1.13775,-1.75179,-0.93909,1.95140,-0.29578
-1.08761,1.08964,-1.13804,-1.75123,-0.93930,1.95123,-0.29562
-1.08876,1.08986,-1.13832,-1.75068,-0.93950,1.95107,-0.29548
-1.08991,1.09008,-1.13860,-1.75014,-0.93971,1.95090,-0.29533
-1.09106,1.09029,-1.13888,-1.74961,-0.93991,1.95074,-0.29519
-1.09221,1.09049,-1.13915,-1.74908,-0.94010,1.95058,-0.29505
-1.09335,1.09070,-1.13941,-1.74857,-0.94030,1.95043,-0.29491
-1.09450,1.09089,-1.13967,-1.74806,-0.94049,1.95028,-0.29477
-1.09565,1.09109,-1.13993,-1.74757,-0.94067,1.95013,-0.29464
-1.09680,1.09115,-1.14001,-1.74741,-0.94073,1.95008,-0.29460
-1.09795,1.09137,-1.14033,-1.74680,-0.94096,1.94992,-0.29445
-1.09910,1.09158,-1.14064,-1.74621,-0.94119,1.94975,-0.29431
-1.10025,1.09178,-1.14095,-1.74562,-0.94141,1.94960,-0.29417
-1.10140,1.09198,-1.14126,-1.74505,-0.94162,1.94944,-0.29403
-1.10255,1.09218,-1.14156,-1.74448,-0.94184,1.94929,-0.29390
-1.10370,1.09238,-1.14185,-1.74393,-0.94205,1.94914,-0.29377
-1.10485,1.09257,-1.14214,-1.74338,-0.94225,1.94899,-0.29364
-1.10600,1.09276,-1.14242,-1.74284,-0.94246,1.94885,-0.29351
-1.10715,1.09295,-1.14270,-1.74231,-0.94266,1.94870,-0.29338
-1.10830,1.09313,-1.14297,-1.74180,-0.94285,1.94856,-0.29326
-1.10945,1.09331,-1.14324,-1.74129,-0.94305,1.94843,-0.29314
-1.11060,1.09345,-1.14346,-1.74087,-0.94321,1.94832,-0.29304
-1.11175,1.09364,-1.14383,-1.74020,-0.94346,1.94817,-0.29291
-1.11290,1.09384,-1.14419,-1.73954,-0.94370,1.94802,-0.29278
-1.11405,1.09402,-1.14454,-1.73889,-0.94395,1.94787,-0.29265
-1.11520,1.09421,-1.14489,-1.73825,-0.94419,1.94773,-0.29253
-1.11635,1.09439,-1.14524,-1.73762,-0.94442,1.94759,-0.29241
-1.11750,1.09457,-1.14557,-1.73701,-0.94465,1.94746,-0.29229
-1.11865,1.09474,-1.14590,-1.73640,-0.94488,1.94732,-0.29217
-1.11980,1.09491,-1.14623,-1.73581,-0.94510,1.94719,-0.29205
-1.12095,1.09508,-1.14655,-1.73522,-0.94533,1.94706,-0.29194
-1.12210,1.09525,-1.14686,-1.73465,-0.94554,1.94693,-0.29183
-1.12325,1.09541,-1.14717,-1.73409,-0.94576,1.94681,-0.29172
-1.12440,1.09557,-1.14747,-1.73353,-0.94597,1.94669,-0.29161
-1.12555,1.09572,-1.14777,-1.73298,-0.94618,1.94657,-0.29151
-1.12670,1.09588,-1.14806,-1.73245,-0.94638,1.94645,-0.29140
-1.12785,1.09603,-1.14835,-1.73192,-0.94658,1.94633,-0.29130
-1.12900,1.09617,-1.14863,-1.73140,-0.94678,1.94622,-0.29120
-1.13014,1.09624,-1.14875,-1.73118,-0.94686,1.94617,-0.29116
-1.13129,1.09643,-1.14913,-1.73049,-0.94713,1.94603,-0.29103
-1.13244,1.09661,-1.14950,-1.72980,-0.94739,1.94588,-0.29091
-1.13359,1.09680,-1.14987,-1.72913,-0.94764,1.94574,-0.29078
-1.13474,1.09697,-1.15023,-1.72848,-0.94790,1.94560,-0.29066
-1.13589,1.09715,-1.15058,-1.72783,-0.94814,1.94547,-0.29054
-1.13704,1.09732,-1.15093,-1.72719,-0.94839,1.94534,-0.29043
-1.13819,1.09749,-1.15127,-1.72657,-0.94863,1.94521,-0.29031
-1.13934,1.09766,-1.15161,-1.72595,-0.94886,1.94508,-0.29020
-1.14049,1.09782,-1.15194,-1.72535,-0.94910,1.94495,-0.29009
-1.14164,1.09798,-1.15226,-1.72475,-0.94932,1.94483,-0.28999
-1.14279,1.09814,-1.15258,-1.72417,-0.94955,1.94471,-0.28988
-1.14394,1.09829,-1.15289,-1.72360,-0.94977,1.94459,-0.28978
-1.14509,1.09844,-1.15320,-1.72303,-0.94999,1.94447,-0.28968
-1.14624,1.09859,-1.15350,-1.72248,-0.95021,1.94436,-0.28958
-1.14739,1.09874,-1.15380,-1.72193,-0.95042,1.94425,-0.28948
-1.14854,1.09888,-1.15409,-1.72140,-0.95063,1.94414,-0.28938
-1.14969,1.09902,-1.15438,-1.72087,-0.95083,1.94403,-0.28929
-1.15084,1.09914,-1.15461,-1.72044,-0.95100,1.94394,-0.28921
-1.15199,1.09931,-1.15494,-1.71982,-0.95124,1.94380,-0.28909
-1.15314,1.09948,-1.15527,-1.71920,-0.95148,1.94367,-0.28898
-1.15429,1.09965,-1.15560,-1.71860,-0.95172,1.94354,-0.28886
-1.15544,1.09982,-1.15592,-1.71800,-0.95195,1.94341,-0.28875
-1.15659,1.09998,-1.15623,-1.71742,-0.95218,1.94329,-0.28864
-1.15774,1.10014,-1.15654,-1.71684,-0.95241,1.94316,-0.28854
-1.15889,1.10030,-1.15684,-1.71628,-0.95263,1.94304,-0.28843
-1.16004,1.10046,-1.15714,-1.71572,-0.95285,1.94292,-0.28833
-1.16119,1.10061,-1.15743,-1.71518,-0.95307,1.94281,-0.28823
-1.16234,1.10076,-1.15772,-1.71464,-0.95328,1.94269,-0.28813
-1.16349,1.10090,-1.15800,-1.71411,-0.95349,1.94258,-0.28803
-1.16464,1.10102,-1.15823,-1.71369,-0.95366,1.94249,-0.28795
-1.16579,1.10120,-1.15856,-1.71308,-0.95390,1.94235,-0.28783
-1.16693,1.10137,-1.15887,-1.71248,-0.95414,1.94222,-0.28772
-1.16808,1.10154,-1.15919,-1.71189,-0.95437,1.94209,-0.28760
-1.16923,1.10171,-1.15950,-1.71130,-0.95460,1.94196,-0.28749
-1.17038,1.10187,-1.15980,-1.71073,-0.95483,1.94184,-0.28738
-1.17153,1.10203,-1.16010,-1.71017,-0.95506,1.94171,-0.28728
-1.17268,1.10219,-1.16039,-1.70962,-0.95528,1.94159,-0.28717
-1.17383,1.10234,-1.16067,-1.70908,-0.95549,1.94147,-0.28707
-1.17498,1.10249,-1.16096,-1.70855,-0.95571,1.94136,-0.28697
-1.17613,1.10264,-1.16123,-1.70803,-0.95592,1.94124,-0.28687
-1.17728,1.10269,-1.16132,-1.70786,-0.95598,1.94120,-0.28684
-1.17843,1.10286,-1.16163,-1.70727,-0.95622,1.94107,-0.28672
-1.17958,1.10303,-1.16194,-1.70668,-0.95646,1.94094,-0.28661
-1.18073,1.10320,-1.16224,-1.70611,-0.95669,1.94081,-0.28650
-1.18188,1.10337,-1.16254,-1.70554,-0.95691,1.94068,-0.28639
-1.18303,1.10353,-1.16283,-1.70499,-0.95714,1.94056,-0.28628
-1.18418,1.10369,-1.16312,-1.70444,-0.95736,1.94044,-0.28617
-1.18533,1.10384,-1.16340,-1.70391,-0.95758,1.94032,-0.28607
-1.18648,1.10399,-1.16368,-1.70338,-0.95779,1.94020,-0.28597
-1.18763,1.10412,-1.16390,-1.70296,-0.95796,1.94011,-0.28589
-1.18878,1.10429,-1.16420,-1.70238,-0.95819,1.93997,-0.28577
-1.18993,1.10445,-1.16450,-1.70181,-0.95842,1.93985,-0.28566
-1.19108,1.10462,-1.16479,-1.70125,-0.95865,1.93972,-0.28555
-1.19223,1.10478,-1.16508,-1.70070,-0.95887,1.93959,-0.28545
-1.19338,1.10494,-1.16536,-1.70016,-0.95909,1.93947,-0.28534
-1.19453,1.10509,-1.16564,-1.69963,-0.95931,1.93935,-0.28524
-1.19568,1.10525,-1.16591,-1.69911,-0.95952,1.93924,-0.28514
-1.19683,1.10526,-1.16594,-1.69905,-0.95955,1.93922,-0.28512
-1.19798,1.10545,-1.16622,-1.69850,-0.95977,1.93908,-0.28500
-1.19913,1.10563,-1.16650,-1.69795,-0.96000,1.93894,-0.28488
-1.20028,1.10581,-1.16677,-1.69742,-0.96022,1.93880,-0.28476
-1.20143,1.10598,-1.16704,-1.69689,-0.96044,1.93867,-0.28465
-1.20258,1.10616,-1.16730,-1.69637,-0.96066,1.93853,-0.28453
-1.20372,1.10623,-1.16741,-1.69616,-0.96074,1.93848,-0.28448
-1.20487,1.10644,-1.16769,-1.69559,-0.96098,1.93832,-0.28434
-1.20602,1.10664,-1.16796,-1.69504,-0.96122,1.93816,-0.28421
-1.20717,1.10684,-1.16823,-1.69449,-0.96145,1.93801,-0.28407
-1.20832,1.10704,-1.16849,-1.69395,-0.96167,1.93785,-0.28394
-1.20947,1.10723,-1.16875,-1.69342,-0.96190,1.93771,-0.28381
-1.21062,1.10743,-1.16901,-1.69290,-0.96212,1.93756,-0.28369
-1.21177,1.10761,-1.16926,-1.69239,-0.96233,1.93741,-0.28356
-1.21292,1.10764,-1.16929,-1.69233,-0.96236,1.93740,-0.28355
-1.21407,1.10787,-1.16957,-1.69176,-0.96260,1.93722,-0.28339
-1.21522,1.10809,-1.16984,-1.69119,-0.96284,1.93705,-0.28324
-1.21637,1.10831,-1.17011,-1.69063,-0.96308,1.93688,-0.28310
-1.21752,1.10853,-1.17037,-1.69008,-0.96332,1.93671,-0.28295
-1.21867,1.10875,-1.17063,-1.68954,-0.96355,1.93654,-0.28281
-1.21982,1.10896,-1.17088,-1.68901,-0.96377,1.93638,-0.28267
-1.22097,1.10916,-1.17113,-1.68849,-0.96400,1.93622,-0.28253
-1.22212,1.10937,-1.17138,-1.68798,-0.96422,1.93607,-0.28240
-1.22327,1.10953,-1.17157,-1.68757,-0.96439,1.93594,-0.28229
-1.22442,1.10979,-1.17182,-1.68702,-0.96463,1.93574,-0.28212
-1.22557,1.11004,-1.17207,-1.68647,-0.96487,1.93555,-0.28195
-1.22672,1.11029,-1.17231,-1.68594,-0.96510,1.93536,-0.28179
-1.22787,1.11053,-1.17255,-1.68542,-0.96533,1.93517,-0.28163
-1.22902,1.11077,-1.17278,-1.68490,-0.96556,1.93499,-0.28147
-1.23017,1.11100,-1.17301,-1.68440,-0.96578,1.93481,-0.28131
-1.23132,1.11124,-1.17323,-1.68390,-0.96600,1.93463,-0.28116
-1.23247,1.11135,-1.17334,-1.68365,-0.96611,1.93454,-0.28108
-1.23362,1.11162,-1.17359,-1.68310,-0.96635,1.93434,-0.28091
-1.23477,1.11188,-1.17382,-1.68257,-0.96659,1.93413,-0.28073
-1.23592,1.11214,-1.17406,-1.68204,-0.96682,1.93394,-0.28056
-1.23707,1.11239,-1.17429,-1.68153,-0.96705,1.93374,-0.28040
-1.23822,1.11263,-1.17451,-1.68102,-0.96728,1.93355,-0.28023
-1.23937,1.11288,-1.17474,-1.68052,-0.96750,1.93337,-0.28007
-1.24052,1.11312,-1.17495,-1.68003,-0.96772,1.93318,-0.27991
-1.24166,1.11319,-1.17502,-1.67987,-0.96779,1.93312,-0.27986
-1.24281,1.11349,-1.17524,-1.67934,-0.96803,1.93290,-0.27967
-1.24396,1.11377,-1.17546,-1.67881,-0.96827,1.93268,-0.27948
-1.24511,1.11406,-1.17568,-1.67830,-0.96850,1.93246,-0.27929
-1.24626,1.11433,-1.17589,-1.67779,-0.96873,1.93225,-0.27911
-1.24741,1.11461,-1.17610,-1.67729,-0.96896,1.93204,-0.27893
-1.24856,1.11487,-1.17631,-1.67680,-0.96918,1.93183,-0.27875
-1.24971,1.11514,-1.17651,-1.67632,-0.96940,1.93163,-0.27857
-1.25086,1.11533,-1.17665,-1.67598,-0.96956,1.93148,-0.27845
-1.25201,1.11564,-1.17685,-1.67548,-0.96979,1.93124,-0.27824
-1.25316,1.11594,-1.17705,-1.67498,-0.97002,1.93101,-0.27804
-1.25431,1.11624,-1.17724,-1.67449,-0.97025,1.93078,-0.27785
-1.25546,1.11653,-1.17743,-1.67401,-0.97047,1.93055,-0.27765
-1.25661,1.11682,-1.17762,-1.67354,-0.97069,1.93033,-0.27746
-1.25776,1.11711,-1.17780,-1.67308,-0.97091,1.93011,-0.27727
-1.25891,1.11714,-1.17782,-1.67303,-0.97093,1.93008,-0.27725
-1.26006,1.11752,-1.17799,-1.67253,-0.97117,1.92980,-0.27700
-1.26121,1.11789,-1.17815,-1.67204,-0.97141,1.92951,-0.27675
-1.26236,1.11825,-1.17832,-1.67156,-0.97165,1.92923,-0.27652
-1.26351,1.11860,-1.17848,-1.67109,-0.97188,1.92896,-0.27628
-1.26466,1.11895,-1.17864,-1.67063,-0.97210,1.92869,-0.27605
-1.26581,1.11930,-1.17879,-1.67017,-0.97232,1.92843,-0.27582
-1.26696,1.11964,-1.17894,-1.66972,-0.97254,1.92816,-0.27560
-1.26811,1.11997,-1.17909,-1.66928,-0.97276,1.92791,-0.27538
-1.26926,1.12030,-1.17924,-1.66885,-0.97297,1.92766,-0.27516
-1.27041,1.12034,-1.17925,-1.66881,-0.97299,1.92763,-0.27514
-1.27156,1.12070,-1.17939,-1.66836,-0.97321,1.92734,-0.27489
-1.27271,1.12107,-1.17953,-1.66792,-0.97343,1.92706,-0.27465
-1.27386,1.12142,-1.17966,-1.66750,-0.97365,1.92679,-0.27442
-1.27501,1.12178,-1.17980,-1.66707,-0.97386,1.92652,-0.27418
-1.27616,1.12209,-1.17991,-1.66670,-0.97405,1.92627,-0.27398
-1.27731,1.12247,-1.18003,-1.66629,-0.97426,1.92598,-0.27372
-1.27845,1.12285,-1.18014,-1.66588,-0.97447,1.92569,-0.27347
-1.27960,1.12322,-1.18025,-1.66548,-0.97468,1.92540,-0.27323
-1.28075,1.12337,-1.18029,-1.66532,-0.97476,1.92529,-0.27313
-1.28190,1.12377,-1.18038,-1.66493,-0.97497,1.92498,-0.27286
-1.28305,1.12417,-1.18048,-1.66455,-0.97517,1.92467,-0.27260
-1.28420,1.12456,-1.18057,-1.66417,-0.97538,1.92437,-0.27234
-1.28535,1.12476,-1.18061,-1.66398,-0.97548,1.92422,-0.27222
-1.28650,1.12516,-1.18070,-1.66360,-0.97568,1.92391,-0.27195
-1.28765,1.12556,-1.18078,-1.66322,-0.97588,1.92360,-0.27168
-1.28880,1.12584,-1.18084,-1.66297,-0.97602,1.92338,-0.27150
-1.28995,1.12624,-1.18091,-1.66261,-0.97622,1.92307,-0.27123
-1.29110,1.12629,-1.18091,-1.66258,-0.97624,1.92304,-0.27121
-1.29225,1.12670,-1.18097,-1.66223,-0.97643,1.92272,-0.27093
-1.29340,1.12679,-1.18098,-1.66217,-0.97647,1.92265,-0.27088
-1.29455,1.12722,-1.18103,-1.66184,-0.97666,1.92232,-0.27059
-1.29570,1.12730,-1.18104,-1.66177,-0.97669,1.92226,-0.27054
-1.29685,1.12773,-1.18109,-1.66143,-0.97689,1.92193,-0.27026
-1.29800,1.12797,-1.18114,-1.66122,-0.97701,1.92174,-0.27010
-1.29915,1.12830,-1.18131,-1.66075,-0.97723,1.92148,-0.26988
-1.30030,1.12863,-1.18148,-1.66029,-0.97745,1.92122,-0.26966
-1.30145,1.12896,-1.18164,-1.65983,-0.97766,1.92097,-0.26944
-1.30260,1.12928,-1.18180,-1.65939,-0.97788,1.92073,-0.26923
-1.30375,1.12943,-1.18189,-1.65916,-0.97798,1.92061,-0.26913
-1.30490,1.12966,-1.18213,-1.65864,-0.97821,1.92043,-0.26898
-1.30605,1.12989,-1.18237,-1.65813,-0.97843,1.92025,-0.26883
-1.30720,1.13012,-1.18260,-1.65763,-0.97864,1.92007,-0.26868
-1.30835,1.13016,-1.18266,-1.65753,-0.97869,1.92004,-0.26865
-1.30950,1.13028,-1.18298,-1.65695,-0.97892,1.91994,-0.26857
-1.31065,1.13041,-1.18330,-1.65638,-0.97914,1.91984,-0.26849
-1.31180,1.13053,-1.18361,-1.65582,-0.97936,1.91974,-0.26841
-1.31295,1.13065,-1.18391,-1.65527,-0.97958,1.91965,-0.26833
-1.31410,1.13077,-1.18421,-1.65473,-0.97980,1.91956,-0.26825
-1.31524,1.13079,-1.18435,-1.65450,-0.97988,1.91954,-0.26824
-1.31639,1.13062,-1.18484,-1.65382,-0.98010,1.91966,-0.26835
-1.31754,1.13046,-1.18533,-1.65315,-0.98032,1.91978,-0.26845
-1.31869,1.13030,-1.18581,-1.65249,-0.98053,1.91990,-0.26856
-1.31984,1.13014,-1.18628,-1.65185,-0.98074,1.92002,-0.26866
-1.32099,1.12999,-1.18675,-1.65121,-0.98095,1.92014,-0.26876
-1.32214,1.12983,-1.18720,-1.65058,-0.98115,1.92025,-0.26886
-1.32329,1.12968,-1.18765,-1.64997,-0.98135,1.92036,-0.26896
-1.32444,1.12953,-1.18809,-1.64936,-0.98155,1.92048,-0.26906
-1.32559,1.12939,-1.18852,-1.64877,-0.98175,1.92059,-0.26916
-1.32674,1.12924,-1.18895,-1.64818,-0.98194,1.92070,-0.26926
-1.32789,1.12910,-1.18936,-1.64760,-0.98213,1.92080,-0.26935
-1.32904,1.12896,-1.18977,-1.64704,-0.98232,1.92091,-0.26944
-1.33019,1.12882,-1.19018,-1.64648,-0.98250,1.92101,-0.26954
-1.33134,1.12868,-1.19057,-1.64593,-0.98269,1.92112,-0.26963
-1.33249,1.12854,-1.19096,-1.64539,-0.98287,1.92122,-0.26972
-1.33364,1.12851,-1.19101,-1.64533,-0.98288,1.92124,-0.26974
-1.33479,1.12823,-1.19148,-1.64475,-0.98306,1.92145,-0.26992
-1.33594,1.12796,-1.19194,-1.64418,-0.98323,1.92166,-0.27010
-1.33709,1.12768,-1.19240,-1.64362,-0.98339,1.92187,-0.27028
-1.33824,1.12742,-1.19285,-1.64306,-0.98356,1.92207,-0.27046
-1.33939,1.12715,-1.19329,-1.64252,-0.98372,1.92227,-0.27064
-1.34054,1.12689,-1.19372,-1.64198,-0.98389,1.92247,-0.27081
-1.34169,1.12664,-1.19414,-1.64146,-0.98405,1.92267,-0.27098
-1.34284,1.12638,-1.19456,-1.64094,-0.98420,1.92286,-0.27115
-1.34399,1.12613,-1.19497,-1.64043,-0.98436,1.92305,-0.27131
-1.34514,1.12589,-1.19538,-1.63993,-0.98451,1.92324,-0.27147
-1.34629,1.12579,-1.19551,-1.63977,-0.98456,1.92331,-0.27154
-1.34744,1.12532,-1.19602,-1.63924,-0.98469,1.92367,-0.27185
-1.34859,1.12486,-1.19652,-1.63871,-0.98481,1.92402,-0.27216
-1.34974,1.12440,-1.19701,-1.63819,-0.98494,1.92437,-0.27246
-1.35089,1.12396,-1.19750,-1.63768,-0.98507,1.92471,-0.27276
-1.35203,1.12351,-1.19798,-1.63718,-0.98519,1.92505,-0.27305
-1.35318,1.12308,-1.19844,-1.63669,-0.98532,1.92538,-0.27334
-1.35433,1.12265,-1.19891,-1.63620,-0.98544,1.92571,-0.27362
-1.35548,1.12223,-1.19936,-1.63572,-0.98556,1.92603,-0.27390
-1.35663,1.12182,-1.19980,-1.63525,-0.98568,1.92634,-0.27418
-1.35778,1.12141,-1.20024,-1.63479,-0.98580,1.92666,-0.27445
-1.35893,1.12101,-1.20067,-1.63433,-0.98592,1.92696,-0.27471
-1.36008,1.12061,-1.20110,-1.63388,-0.98603,1.92727,-0.27498
-1.36123,1.12022,-1.20151,-1.63344,-0.98615,1.92756,-0.27524
-1.36238,1.11984,-1.20192,-1.63301,-0.98626,1.92786,-0.27549
-1.36353,1.11946,-1.20233,-1.63258,-0.98637,1.92815,-0.27574
-1.36468,1.11909,-1.20272,-1.63216,-0.98649,1.92843,-0.27599
-1.36583,1.11873,-1.20311,-1.63174,-0.98660,1.92871,-0.27623
-1.36698,1.11868,-1.20315,-1.63170,-0.98661,1.92874,-0.27626
-1.36813,1.11825,-1.20358,-1.63126,-0.98671,1.92907,-0.27655
-1.36928,1.11783,-1.20400,-1.63084,-0.98682,1.92940,-0.27683
-1.37043,1.11741,-1.20441,-1.63041,-0.98692,1.92972,-0.27711
-1.37158,1.11700,-1.20482,-1.63000,-0.98703,1.93004,-0.27739
-1.37273,1.11659,-1.20522,-1.62959,-0.98713,1.93035,-0.27766
-1.37388,1.11620,-1.20561,-1.62919,-0.98723,1.93065,-0.27792
-1.37503,1.11580,-1.20600,-1.62880,-0.98733,1.93095,-0.27819
-1.37618,1.11552,-1.20627,-1.62852,-0.98740,1.93117,-0.27837
-1.37733,1.11505,-1.20670,-1.62810,-0.98750,1.93153,-0.27869
-1.37848,1.11459,-1.20712,-1.62769,-0.98759,1.93189,-0.27900
-1.37963,1.11413,-1.20754,-1.62729,-0.98769,1.93224,-0.27931
-1.38078,1.11368,-1.20795,-1.62689,-0.98778,1.93258,-0.27961
-1.38193,1.11324,-1.20835,-1.62650,-0.98788,1.93292,-0.27990
-1.38308,1.11280,-1.20874,-1.62611,-0.98797,1.93326,-0.28019
-1.38423,1.11237,-1.20913,-1.62573,-0.98806,1.93358,-0.28048
-1.38538,1.11195,-1.20952,-1.62536,-0.98815,1.93391,-0.28076
-1.38653,1.11154,-1.20989,-1.62499,-0.98824,1.93423,-0.28104
-1.38768,1.11120,-1.21020,-1.62469,-0.98831,1.93449,-0.28127
-1.38883,1.11069,-1.21063,-1.62430,-0.98840,1.93488,-0.28161
-1.38997,1.11019,-1.21105,-1.62390,-0.98849,1.93527,-0.28195
-1.39112,1.10969,-1.21147,-1.62352,-0.98857,1.93565,-0.28228
-1.39227,1.10921,-1.21188,-1.62314,-0.98865,1.93602,-0.28261
-1.39342,1.10873,-1.21229,-1.62276,-0.98874,1.93639,-0.28293
-1.39457,1.10826,-1.21269,-1.62239,-0.98882,1.93675,-0.28325
-1.39572,1.10779,-1.21308,-1.62203,-0.98890,1.93711,-0.28356
-1.39687,1.10734,-1.21346,-1.62167,-0.98899,1.93746,-0.28386
-1.39802,1.10689,-1.21384,-1.62132,-0.98907,1.93780,-0.28417
-1.39917,1.10644,-1.21421,-1.62097,-0.98915,1.93814,-0.28446
-1.40032,1.10601,-1.21458,-1.62063,-0.98923,1.93848,-0.28476
-1.40147,1.10561,-1.21491,-1.62032,-0.98930,1.93878,-0.28503
-1.40262,1.10506,-1.21537,-1.61990,-0.98939,1.93921,-0.28540
-1.40377,1.10451,-1.21583,-1.61949,-0.98948,1.93963,-0.28576
-1.40492,1.10398,-1.21627,-1.61908,-0.98957,1.94004,-0.28612
-1.40607,1.10345,-1.21671,-1.61868,-0.98966,1.94044,-0.28648
-1.40722,1.10294,-1.21714,-1.61828,-0.98974,1.94084,-0.28683
-1.40837,1.10243,-1.21757,-1.61789,-0.98983,1.94123,-0.28717
-1.40952,1.10192,-1.21799,-1.61751,-0.98992,1.94162,-0.28751
-1.41067,1.10143,-1.21840,-1.61713,-0.99000,1.94200,-0.28784
-1.41182,1.10095,-1.21880,-1.61676,-0.99009,1.94237,-0.28817
-1.41297,1.10047,-1.21920,-1.61640,-0.99017,1.94274,-0.28849
-1.41412,1.10000,-1.21959,-1.61604,-0.99025,1.94310,-0.28881
-1.41527,1.09954,-1.21997,-1.61568,-0.99034,1.94346,-0.28913
-1.41642,1.09908,-1.22035,-1.61533,-0.99042,1.94381,-0.28943
-1.41757,1.09863,-1.22072,-1.61499,-0.99050,1.94415,-0.28974
-1.41872,1.09819,-1.22109,-1.61465,-0.99058,1.94449,-0.29004
-1.41987,1.09776,-1.22145,-1.61432,-0.99066,1.94483,-0.29033
-1.42102,1.09753,-1.22163,-1.61414,-0.99070,1.94500,-0.29048
-1.42217,1.09699,-1.22207,-1.61375,-0.99079,1.94542,-0.29085
-1.42332,1.09646,-1.22250,-1.61337,-0.99087,1.94583,-0.29121
-1.42447,1.09594,-1.22292,-1.61299,-0.99096,1.94623,-0.29156
-1.42562,1.09542,-1.22334,-1.61262,-0.99104,1.94663,-0.29191
-1.42676,1.09491,-1.22375,-1.61225,-0.99112,1.94702,-0.29226
-1.42791,1.09442,-1.22415,-1.61188,-0.99120,1.94740,-0.29260
-1.42906,1.09393,-1.22455,-1.61153,-0.99129,1.94778,-0.29293
-1.43021,1.09344,-1.22494,-1.61118,-0.99137,1.94815,-0.29326
-1.43136,1.09297,-1.22532,-1.61083,-0.99145,1.94851,-0.29358
-1.43251,1.09250,-1.22570,-1.61049,-0.99153,1.94887,-0.29390
-1.43366,1.09204,-1.22607,-1.61015,-0.99161,1.94923,-0.29421
-1.43481,1.09159,-1.22643,-1.60982,-0.99168,1.94958,-0.29452
-1.43596,1.09114,-1.22679,-1.60950,-0.99176,1.94992,-0.29482
-1.43711,1.09071,-1.22714,-1.60918,-0.99184,1.95026,-0.29512
-1.43826,1.09056,-1.22726,-1.60907,-0.99186,1.95037,-0.29522
-1.43941,1.08997,-1.22775,-1.60863,-0.99196,1.95082,-0.29562
-1.44056,1.08940,-1.22822,-1.60820,-0.99206,1.95126,-0.29601
-1.44171,1.08883,-1.22869,-1.60778,-0.99215,1.95170,-0.29639
-1.44286,1.08827,-1.22915,-1.60737,-0.99225,1.95213,-0.29677
-1.44401,1.08772,-1.22960,-1.60696,-0.99234,1.95255,-0.29715
-1.44516,1.08718,-1.23005,-1.60655,-0.99243,1.95297,-0.29752
-1.44631,1.08665,-1.23048,-1.60616,-0.99252,1.95337,-0.29788
-1.44746,1.08613,-1.23091,-1.60576,-0.99262,1.95378,-0.29823
-1.44861,1.08562,-1.23134,-1.60538,-0.99271,1.95417,-0.29859
-1.44976,1.08511,-1.23175,-1.60500,-0.99280,1.95456,-0.29893
-1.45091,1.08461,-1.23216,-1.60463,-0.99289,1.95495,-0.29927
-1.45206,1.08412,-1.23256,-1.60426,-0.99298,1.95532,-0.29961
-1.45321,1.08364,-1.23296,-1.60389,-0.99306,1.95569,-0.29994
-1.45436,1.08317,-1.23335,-1.60354,-0.99315,1.95606,-0.30026
-1.45551,1.08270,-1.23373,-1.60319,-0.99324,1.95642,-0.30058
-1.45666,1.08224,-1.23411,-1.60284,-0.99333,1.95677,-0.30089
-1.45781,1.08179,-1.23448,-1.60250,-0.99341,1.95712,-0.30120
-1.45896,1.08135,-1.23484,-1.60216,-0.99350,1.95746,-0.30151
-1.46011,1.08091,-1.23520,-1.60183,-0.99358,1.95780,-0.30181
-1.46126,1.08048,-1.23555,-1.60150,-0.99366,1.95813,-0.30210
-1.46241,1.08042,-1.23560,-1.60146,-0.99367,1.95818,-0.30214
-1.46355,1.07983,-1.23610,-1.60101,-0.99378,1.95863,-0.30255
-1.46470,1.07924,-1.23659,-1.60057,-0.99388,1.95908,-0.30295
-1.46585,1.07867,-1.23707,-1.60013,-0.99398,1.95952,-0.30334
-1.46700,1.07810,-1.23754,-1.59970,-0.99408,1.95996,-0.30373
-1.46815,1.07755,-1.23800,-1.59928,-0.99419,1.96039,-0.30411
-1.46930,1.07700,-1.23846,-1.59886,-0.99429,1.96081,-0.30449
-1.47045,1.07646,-1.23891,-1.59845,-0.99438,1.96122,-0.30486
-1.47160,1.07593,-1.23935,-1.59805,-0.99448,1.96163,-0.30522
-1.47275,1.07541,-1.23978,-1.59765,-0.99458,1.96203,-0.30558
-1.47390,1.07490,-1.24021,-1.59726,-0.99468,1.96242,-0.30593
-1.47505,1.07439,-1.24063,-1.59687,-0.99477,1.96281,-0.30628
-1.47620,1.07390,-1.24104,-1.59649,-0.99487,1.96319,-0.30662
-1.47735,1.07341,-1.24145,-1.59611,-0.99497,1.96357,-0.30696
-1.47850,1.07293,-1.24185,-1.59575,-0.99506,1.96394,-0.30729
-1.47965,1.07246,-1.24224,-1.59538,-0.99515,1.96430,-0.30761
-1.48080,1.07200,-1.24263,-1.59502,-0.99525,1.96466,-0.30793
-1.48195,1.07154,-1.24301,-1.59467,-0.99534,1.96501,-0.30825
-1.48310,1.07109,-1.24338,-1.59432,-0.99543,1.96536,-0.30856
-1.48425,1.07065,-1.24375,-1.59398,-0.99552,1.96570,-0.30886
-1.48540,1.07021,-1.24411,-1.59364,-0.99561,1.96603,-0.30917
-1.48655,1.06978,-1.24446,-1.59331,-0.99570,1.96636,-0.30946
-1.48770,1.06952,-1.24468,-1.59311,-0.99575,1.96656,-0.30964
-1.48885,1.06905,-1.24509,-1.59272,-0.99585,1.96693,-0.30997
-1.49000,1.06859,-1.24549,-1.59234,-0.99596,1.96729,-0.31029
-1.49115,1.06813,-1.24589,-1.59197,-0.99606,1.96764,-0.31061
-1.49230,1.06768,-1.24627,-1.59160,-0.99615,1.96799,-0.31092
-1.49345,1.06723,-1.24666,-1.59123,-0.99625,1.96833,-0.31123
-1.49460,1.06680,-1.24703,-1.59088,-0.99635,1.96866,-0.31153
-1.49575,1.06637,-1.24740,-1.59052,-0.99645,1.96899,-0.31183
-1.49690,1.06595,-1.24776,-1.59018,-0.99654,1.96932,-0.31212
-1.49805,1.06553,-1.24812,-1.58983,-0.99664,1.96964,-0.31241
-1.49920,1.06544,-1.24820,-1.58976,-0.99666,1.96971,-0.31247
-1.50034,1.06496,-1.24862,-1.58935,-0.99677,1.97008,-0.31280
-1.50149,1.06449,-1.24904,-1.58895,-0.99688,1.97044,-0.31313
-1.50264,1.06403,-1.24945,-1.58856,-0.99698,1.97080,-0.31345
-1.50379,1.06357,-1.24985,-1.58817,-0.99709,1.97115,-0.31377
-1.50494,1.06312,-1.25025,-1.58779,-0.99719,1.97149,-0.31408
-1.50609,1.06268,-1.25064,-1.58741,-0.99730,1.97184,-0.31439
-1.50724,1.06224,-1.25102,-1.58704,-0.99740,1.97217,-0.31469
-1.50839,1.06182,-1.25140,-1.58667,-0.99750,1.97250,-0.31499
-1.50954,1.06139,-1.25177,-1.58631,-0.99761,1.97282,-0.31528
-1.51069,1.06098,-1.25213,-1.58596,-0.99771,1.97314,-0.31557
-1.51184,1.06057,-1.25250,-1.58561,-0.99781,1.97346,-0.31586
-1.51299,1.06011,-1.25291,-1.58520,-0.99792,1.97381,-0.31617
-1.51414,1.05966,-1.25332,-1.58480,-0.99803,1.97416,-0.31648
-1.51529,1.05922,-1.25372,-1.58440,-0.99814,1.97450,-0.31679
-1.51644,1.05879,-1.25412,-1.58401,-0.99825,1.97483,-0.31709
-1.51759,1.05836,-1.25451,-1.58363,-0.99836,1.97516,-0.31739
-1.51874,1.05794,-1.25489,-1.58325,-0.99847,1.97548,-0.31769
-1.51989,1.05753,-1.25526,-1.58288,-0.99858,1.97580,-0.31797
-1.52104,1.05712,-1.25563,-1.58252,-0.99869,1.97611,-0.31826
-1.52219,1.05672,-1.25599,-1.58216,-0.99879,1.97642,-0.31854
-1.52334,1.05668,-1.25603,-1.58212,-0.99880,1.97646,-0.31857
-1.52449,1.05626,-1.25642,-1.58173,-0.99891,1.97678,-0.31886
-1.52564,1.05584,-1.25680,-1.58135,-0.99902,1.97710,-0.31915
-1.52679,1.05544,-1.25718,-1.58098,-0.99913,1.97741,-0.31943
-1.52794,1.05504,-1.25755,-1.58061,-0.99924,1.97772,-0.31971
-1.52909,1.05472,-1.25784,-1.58032,-0.99933,1.97796,-0.31994
-1.53024,1.05431,-1.25821,-1.57996,-0.99943,1.97828,-0.32022
-1.53139,1.05391,-1.25857,-1.57960,-0.99954,1.97858,-0.32050
-1.53254,1.05387,-1.25861,-1.57956,-0.99955,1.97861,-0.32053
-1.53369,1.05347,-1.25897,-1.57920,-0.99966,1.97893,-0.32081
-1.53484,1.05306,-1.25933,-1.57884,-0.99976,1.97924,-0.32109
-1.53599,1.05298,-1.25941,-1.57877,-0.99978,1.97930,-0.32115
-1.53713,1.05257,-1.25977,-1.57842,-0.99988,1.97962,-0.32144
-1.53828,1.05217,-1.26013,-1.57806,-0.99998,1.97993,-0.32172
-1.53943,1.05213,-1.26017,-1.57802,-1.00000,1.97996,-0.32175
-1.54058,1.05171,-1.26057,-1.57763,-1.00011,1.98028,-0.32204
-1.54173,1.05130,-1.26095,-1.57724,-1.00023,1.98060,-0.32233
-1.54288,1.05089,-1.26133,-1.57686,-1.00034,1.98091,-0.32261
-1.54403,1.05050,-1.26170,-1.57648,-1.00045,1.98121,-0.32289
-1.54518,1.05010,-1.26207,-1.57611,-1.00056,1.98151,-0.32317
-1.54633,1.04999,-1.26219,-1.57599,-1.00060,1.98160,-0.32325
-1.54748,1.04960,-1.26261,-1.57553,-1.00075,1.98190,-0.32352
-1.54863,1.04922,-1.26303,-1.57507,-1.00089,1.98219,-0.32379
-1.54978,1.04885,-1.26344,-1.57462,-1.00103,1.98248,-0.32405
-1.55093,1.04848,-1.26384,-1.57418,-1.00117,1.98277,-0.32431
-1.55208,1.04811,-1.26424,-1.57374,-1.00131,1.98305,-0.32457
-1.55323,1.04776,-1.26463,-1.57331,-1.00145,1.98332,-0.32482
-1.55438,1.04741,-1.26501,-1.57289,-1.00159,1.98359,-0.32506
-1.55553,1.04727,-1.26517,-1.57271,-1.00165,1.98370,-0.32516
-1.55668,1.04692,-1.26560,-1.57220,-1.00182,1.98397,-0.32541
-1.55783,1.04658,-1.26604,-1.57169,-1.00199,1.98423,-0.32565
-1.55898,1.04624,-1.26646,-1.57119,-1.00215,1.98449,-0.32588
-1.56013,1.04591,-1.26688,-1.57070,-1.00232,1.98474,-0.32612
-1.56128,1.04559,-1.26729,-1.57022,-1.00248,1.98499,-0.32635
-1.56243,1.04527,-1.26769,-1.56974,-1.00264,1.98524,-0.32657
-1.56358,1.04495,-1.26809,-1.56927,-1.00280,1.98548,-0.32680
-1.56473,1.04464,-1.26847,-1.56881,-1.00296,1.98572,-0.32701
-1.56588,1.04458,-1.26856,-1.56870,-1.00300,1.98577,-0.32706
-1.56703,1.04428,-1.26904,-1.56809,-1.00321,1.98601,-0.32727
-1.56818,1.04397,-1.26952,-1.56749,-1.00342,1.98624,-0.32749
-1.56933,1.04368,-1.26999,-1.56690,-1.00363,1.98647,-0.32770
-1.57048,1.04339,-1.27044,-1.56631,-1.00383,1.98669,-0.32790
-1.57163,1.04310,-1.27089,-1.56574,-1.00404,1.98692,-0.32811
-1.57278,1.04282,-1.27134,-1.56517,-1.00424,1.98714,-0.32831
-1.57393,1.04254,-1.27177,-1.56462,-1.00444,1.98735,-0.32851
-1.57507,1.04226,-1.27220,-1.56407,-1.00463,1.98756,-0.32870
-1.57622,1.04199,-1.27262,-1.56353,-1.00482,1.98777,-0.32889
-1.57737,1.04173,-1.27304,-1.56300,-1.00501,1.98798,-0.32908
-1.57852,1.04147,-1.27344,-1.56248,-1.00520,1.98818,-0.32927
-1.57967,1.04121,-1.27384,-1.56196,-1.00539,1.98838,-0.32945
-1.58082,1.04096,-1.27424,-1.56146,-1.00557,1.98858,-0.32963
-1.58197,1.04093,-1.27428,-1.56139,-1.00559,1.98859,-0.32965
-1.58312,1.04069,-1.27475,-1.56076,-1.00583,1.98878,-0.32982
-1.58427,1.04045,-1.27521,-1.56014,-1.00605,1.98897,-0.32999
-1.58542,1.04022,-1.27566,-1.55953,-1.00628,1.98915,-0.33015
-1.58657,1.03999,-1.27610,-1.55892,-1.00650,1.98932,-0.33032
-1.58772,1.03977,-1.27654,-1.55833,-1.00672,1.98950,-0.33048
-1.58887,1.03954,-1.27697,-1.55775,-1.00694,1.98967,-0.33064
-1.59002,1.03932,-1.27739,-1.55717,-1.00715,1.98984,-0.33079
-1.59117,1.03911,-1.27781,-1.55661,-1.00737,1.99001,-0.33095
-1.59232,1.03890,-1.27821,-1.55605,-1.00757,1.99018,-0.33110
-1.59347,1.03869,-1.27861,-1.55550,-1.00778,1.99034,-0.33125
-1.59462,1.03848,-1.27901,-1.55496,-1.00798,1.99050,-0.33140
-1.59577,1.03838,-1.27921,-1.55469,-1.00809,1.99058,-0.33147
-1.59692,1.03819,-1.27964,-1.55407,-1.00832,1.99072,-0.33161
-1.59807,1.03801,-1.28007,-1.55346,-1.00855,1.99087,-0.33174
-1.59922,1.03782,-1.28050,-1.55286,-1.00878,1.99101,-0.33187
-1.60037,1.03764,-1.28091,-1.55227,-1.00901,1.99115,-0.33200
-1.60152,1.03747,-1.28132,-1.55169,-1.00923,1.99129,-0.33213
-1.60267,1.03729,-1.28172,-1.55111,-1.00945,1.99143,-0.33225
-1.60382,1.03712,-1.28211,-1.55055,-1.00967,1.99156,-0.33238
-1.60497,1.03695,-1.28250,-1.55000,-1.00988,1.99169,-0.33250
-1.60612,1.03692,-1.28259,-1.54987,-1.00993,1.99172,-0.33252
-1.60727,1.03676,-1.28309,-1.54913,-1.01022,1.99184,-0.33264
-1.60842,1.03661,-1.28358,-1.54840,-1.01050,1.99196,-0.33275
-1.60957,1.03645,-1.28406,-1.54769,-1.01077,1.99208,-0.33286
-1.61072,1.03630,-1.28453,-1.54698,-1.01105,1.99220,-0.33297
-1.61186,1.03616,-1.28499,-1.54629,-1.01132,1.99232,-0.33307
-1.61301,1.03601,-1.28545,-1.54561,-1.01158,1.99243,-0.33318
-1.61416,1.03587,-1.28590,-1.54494,-1.01184,1.99254,-0.33328
-1.61531,1.03573,-1.28634,-1.54428,-1.01210,1.99266,-0.33339
-1.61646,1.03559,-1.28678,-1.54363,-1.01236,1.99277,-0.33349
-1.61761,1.03545,-1.28720,-1.54299,-1.01261,1.99287,-0.33359
-1.61876,1.03531,-1.28762,-1.54236,-1.01286,1.99298,-0.33369
-1.61991,1.03518,-1.28803,-1.54174,-1.01310,1.99309,-0.33378
-1.62106,1.03505,-1.28844,-1.54113,-1.01334,1.99319,-0.33388
-1.62221,1.03492,-1.28884,-1.54054,-1.01358,1.99329,-0.33397
-1.62336,1.03479,-1.28923,-1.53995,-1.01381,1.99339,-0.33407
-1.62451,1.03466,-1.28961,-1.53937,-1.01404,1.99349,-0.33416
-1.62566,1.03454,-1.28999,-1.53880,-1.01427,1.99359,-0.33425
-1.62681,1.03453,-1.29004,-1.53873,-1.01430,1.99360,-0.33426
-1.62796,1.03441,-1.29049,-1.53803,-1.01457,1.99369,-0.33434
-1.62911,1.03430,-1.29094,-1.53734,-1.01485,1.99378,-0.33442
-1.63026,1.03419,-1.29137,-1.53667,-1.01512,1.99387,-0.33450
-1.63141,1.03408,-1.29180,-1.53600,-1.01538,1.99395,-0.33459
-1.63256,1.03397,-1.29223,-1.53535,-1.01564,1.99404,-0.33466
-1.63371,1.03387,-1.29264,-1.53471,-1.01590,1.99412,-0.33474
-1.63486,1.03376,-1.29305,-1.53408,-1.01615,1.99420,-0.33482
-1.63601,1.03366,-1.29345,-1.53345,-1.01640,1.99429,-0.33490
-1.63716,1.03356,-1.29385,-1.53284,-1.01665,1.99437,-0.33497
-1.63831,1.03345,-1.29424,-1.53224,-1.01689,1.99445,-0.33505
-1.63946,1.03336,-1.29462,-1.53165,-1.01713,1.99453,-0.33512
-1.64061,1.03326,-1.29499,-1.53106,-1.01737,1.99460,-0.33519
-1.64176,1.03321,-1.29519,-1.53076,-1.01749,1.99464,-0.33523
-1.64291,1.03314,-1.29566,-1.53000,-1.01780,1.99470,-0.33528
-1.64406,1.03307,-1.29613,-1.52925,-1.01810,1.99475,-0.33533
-1.64521,1.03300,-1.29658,-1.52852,-1.01840,1.99481,-0.33538
-1.64636,1.03294,-1.29703,-1.52779,-1.01869,1.99486,-0.33543
-1.64751,1.03287,-1.29747,-1.52708,-1.01898,1.99492,-0.33548
-1.64865,1.03280,-1.29791,-1.52638,-1.01927,1.99497,-0.33553
-1.64980,1.03274,-1.29833,-1.52569,-1.01955,1.99503,-0.33558
-1.65095,1.03267,-1.29875,-1.52502,-1.01982,1.99508,-0.33563
-1.65210,1.03261,-1.29916,-1.52435,-1.02010,1.99513,-0.33568
-1.65325,1.03254,-1.29957,-1.52369,-1.02036,1.99518,-0.33573
-1.65440,1.03248,-1.29997,-1.52305,-1.02063,1.99523,-0.33578
-1.65555,1.03242,-1.30036,-1.52241,-1.02089,1.99528,-0.33582
-1.65670,1.03236,-1.30074,-1.52179,-1.02115,1.99533,-0.33587
-1.65785,1.03230,-1.30112,-1.52118,-1.02140,1.99538,-0.33592
-1.65900,1.03224,-1.30149,-1.52057,-1.02165,1.99543,-0.33596
-1.66015,1.03218,-1.30186,-1.51998,-1.02190,1.99548,-0.33601
-1.66130,1.03213,-1.30216,-1.51949,-1.02210,1.99551,-0.33604
-1.66245,1.03212,-1.30261,-1.51873,-1.02241,1.99553,-0.33606
-1.66360,1.03210,-1.30305,-1.51798,-1.02273,1.99555,-0.33607
-1.66475,1.03208,-1.30349,-1.51725,-1.02303,1.99556,-0.33609
-1.66590,1.03207,-1.30391,-1.51652,-1.02333,1.99558,-0.33610
-1.66705,1.03205,-1.30433,-1.51581,-1.02363,1.99560,-0.33612
-1.66820,1.03203,-1.30475,-1.51511,-1.02392,1.99561,-0.33613
-1.66935,1.03201,-1.30515,-1.51442,-1.02421,1.99563,-0.33615
-1.67050,1.03200,-1.30555,-1.51374,-1.02449,1.99564,-0.33617
-1.67165,1.03198,-1.30594,-1.51307,-1.02477,1.99566,-0.33618
-1.67280,1.03196,-1.30633,-1.51242,-1.02505,1.99568,-0.33620
-1.67395,1.03194,-1.30671,-1.51177,-1.02532,1.99569,-0.33621
-1.67510,1.03193,-1.30708,-1.51114,-1.02559,1.99571,-0.33623
-1.67625,1.03191,-1.30745,-1.51051,-1.02585,1.99573,-0.33625
-1.67740,1.03189,-1.30781,-1.50990,-1.02611,1.99574,-0.33626
-1.67855,1.03187,-1.30817,-1.50929,-1.02637,1.99576,-0.33628
-1.67970,1.03185,-1.30852,-1.50870,-1.02662,1.99578,-0.33629
-1.68085,1.03185,-1.30863,-1.50851,-1.02670,1.99578,-0.33630
-1.68200,1.03185,-1.30903,-1.50781,-1.02700,1.99578,-0.33630
-1.68315,1.03185,-1.30943,-1.50713,-1.02728,1.99579,-0.33630
-1.68430,1.03185,-1.30982,-1.50645,-1.02757,1.99579,-0.33631
-1.68544,1.03185,-1.31020,-1.50579,-1.02785,1.99579,-0.33631
-1.68659,1.03185,-1.31058,-1.50514,-1.02813,1.99580,-0.33632
-1.68774,1.03185,-1.31095,-1.50450,-1.02840,1.99580,-0.33632
-1.68889,1.03185,-1.31131,-1.50387,-1.02867,1.99580,-0.33632
-1.69004,1.03184,-1.31167,-1.50325,-1.02893,1.99581,-0.33633
-1.69119,1.03184,-1.31202,-1.50263,-1.02919,1.99581,-0.33633
-1.69234,1.03184,-1.31237,-1.50203,-1.02945,1.99582,-0.33634
-1.69349,1.03184,-1.31261,-1.50160,-1.02963,1.99582,-0.33634
-1.69464,1.03185,-1.31304,-1.50086,-1.02994,1.99581,-0.33634
-1.69579,1.03186,-1.31346,-1.50013,-1.03025,1.99581,-0.33633
-1.69694,1.03187,-1.31387,-1.49941,-1.03055,1.99580,-0.33633
-1.69809,1.03188,-1.31428,-1.49871,-1.03085,1.99580,-0.33633
-1.69924,1.03189,-1.31468,-1.49801,-1.03115,1.99579,-0.33632
-1.70039,1.03190,-1.31507,-1.49733,-1.03144,1.99579,-0.33632
-1.70154,1.03190,-1.31545,-1.49666,-1.03172,1.99579,-0.33632
-1.70269,1.03191,-1.31583,-1.49600,-1.03200,1.99578,-0.33632
-1.70384,1.03192,-1.31620,-1.49535,-1.03228,1.99578,-0.33632
-1.70499,1.03192,-1.31657,-1.49471,-1.03255,1.99578,-0.33631
-1.70614,1.03193,-1.31693,-1.49408,-1.03282,1.99578,-0.33631
-1.70729,1.03193,-1.31729,-1.49346,-1.03309,1.99578,-0.33631
-1.70844,1.03194,-1.31763,-1.49285,-1.03335,1.99577,-0.33631
-1.70959,1.03194,-1.31798,-1.49225,-1.03360,1.99577,-0.33631
-1.71074,1.03195,-1.31811,-1.49201,-1.03371,1.99577,-0.33631
-1.71189,1.03197,-1.31847,-1.49137,-1.03398,1.99576,-0.33630
-1.71304,1.03199,-1.31883,-1.49074,-1.03425,1.99575,-0.33629
-1.71419,1.03201,-1.31918,-1.49012,-1.03452,1.99573,-0.33628
-1.71534,1.03203,-1.31952,-1.48951,-1.03478,1.99572,-0.33627
-1.71649,1.03204,-1.31985,-1.48891,-1.03504,1.99571,-0.33626
-1.71764,1.03205,-1.31996,-1.48872,-1.03512,1.99570,-0.33626
-1.71879,1.03210,-1.32033,-1.48805,-1.03541,1.99567,-0.33623
-1.71994,1.03214,-1.32069,-1.48739,-1.03570,1.99564,-0.33620
-1.72109,1.03218,-1.32105,-1.48673,-1.03598,1.99561,-0.33617
-1.72223,1.03223,-1.32141,-1.48609,-1.03626,1.99558,-0.33615
-1.72338,1.03227,-1.32175,-1.48546,-1.03654,1.99555,-0.33612
-1.72453,1.03231,-1.32210,-1.48484,-1.03681,1.99552,-0.33610
-1.72568,1.03235,-1.32243,-1.48422,-1.03707,1.99550,-0.33607
-1.72683,1.03239,-1.32276,-1.48362,-1.03734,1.99547,-0.33605
-1.72798,1.03241,-1.32300,-1.48320,-1.03752,1.99545,-0.33603
-1.72913,1.03244,-1.32338,-1.48251,-1.03782,1.99543,-0.33601
-1.73028,1.03248,-1.32376,-1.48183,-1.03811,1.99541,-0.33599
-1.73143,1.03251,-1.32413,-1.48116,-1.03839,1.99538,-0.33597
-1.73258,1.03254,-1.32450,-1.48050,-1.03868,1.99536,-0.33595
-1.73373,1.03257,-1.32486,-1.47985,-1.03895,1.99534,-0.33594
-1.73488,1.03260,-1.32522,-1.47922,-1.03923,1.99532,-0.33592
-1.73603,1.03263,-1.32556,-1.47859,-1.03950,1.99530,-0.33590
-1.73718,1.03265,-1.32591,-1.47798,-1.03977,1.99528,-0.33589
-1.73833,1.03268,-1.32625,-1.47737,-1.04003,1.99527,-0.33587
-1.73948,1.03270,-1.32655,-1.47682,-1.04027,1.99525,-0.33586
-1.74063,1.03274,-1.32696,-1.47609,-1.04058,1.99523,-0.33584
-1.74178,1.03277,-1.32736,-1.47538,-1.04088,1.99520,-0.33582
-1.74293,1.03280,-1.32776,-1.47467,-1.04118,1.99518,-0.33580
-1.74408,1.03283,-1.32815,-1.47398,-1.04148,1.99516,-0.33578
-1.74523,1.03286,-1.32853,-1.47330,-1.04177,1.99514,-0.33576
-1.74638,1.03289,-1.32890,-1.47262,-1.04206,1.99512,-0.33574
-1.74753,1.03292,-1.32927,-1.47196,-1.04234,1.99510,-0.33573
-1.74868,1.03295,-1.32964,-1.47131,-1.04262,1.99508,-0.33571
-1.74983,1.03297,-1.33000,-1.47067,-1.04290,1.99506,-0.33569
-1.75098,1.03300,-1.33035,-1.47005,-1.04317,1.99504,-0.33568
-1.75213,1.03302,-1.33069,-1.46943,-1.04344,1.99503,-0.33567
-1.75328,1.03305,-1.33103,-1.46882,-1.04370,1.99501,-0.33565
-1.75443,1.03307,-1.33134,-1.46826,-1.04394,1.99499,-0.33564
-1.75558,1.03311,-1.33177,-1.46749,-1.04427,1.99496,-0.33561
-1.75673,1.03315,-1.33219,-1.46674,-1.04459,1.99494,-0.33558
-1.75788,1.03319,-1.33261,-1.46600,-1.04491,1.99491,-0.33556
-1.75903,1.03323,-1.33301,-1.46527,-1.04522,1.99488,-0.33554
-1.76017,1.03327,-1.33341,-1.46455,-1.04553,1.99485,-0.33551
-1.76132,1.03331,-1.33381,-1.46384,-1.04583,1.99483,-0.33549
-1.76247,1.03334,-1.33420,-1.46314,-1.04613,1.99480,-0.33547
-1.76362,1.03338,-1.33458,-1.46246,-1.04642,1.99477,-0.33544
-1.76477,1.03341,-1.33495,-1.46179,-1.04671,1.99475,-0.33542
-1.76592,1.03344,-1.33532,-1.46112,-1.04700,1.99473,-0.33540
-1.76707,1.03347,-1.33568,-1.46047,-1.04728,1.99471,-0.33538
-1.76822,1.03351,-1.33604,-1.45983,-1.04756,1.99468,-0.33537
-1.76937,1.03354,-1.33639,-1.45920,-1.04783,1.99466,-0.33535
-1.77052,1.03356,-1.33673,-1.45858,-1.04810,1.99464,-0.33533
-1.77167,1.03359,-1.33707,-1.45797,-1.04837,1.99462,-0.33531
-1.77282,1.03362,-1.33741,-1.45735,-1.04863,1.99460,-0.33530
-1.77397,1.03366,-1.33782,-1.45662,-1.04895,1.99458,-0.33527
-1.77512,1.03369,-1.33823,-1.45590,-1.04926,1.99455,-0.33525
-1.77627,1.03372,-1.33862,-1.45519,-1.04956,1.99453,-0.33523
-1.77742,1.03376,-1.33901,-1.45449,-1.04986,1.99451,-0.33521
-1.77857,1.03379,-1.33940,-1.45380,-1.05016,1.99448,-0.33519
-1.77972,1.03382,-1.33978,-1.45312,-1.05045,1.99446,-0.33518
-1.78087,1.03385,-1.34015,-1.45246,-1.05074,1.99444,-0.33516
-1.78202,1.03387,-1.34051,-1.45180,-1.05102,1.99442,-0.33514
-1.78317,1.03390,-1.34087,-1.45116,-1.05130,1.99440,-0.33512
-1.78432,1.03393,-1.34122,-1.45053,-1.05157,1.99438,-0.33511
-1.78547,1.03395,-1.34157,-1.44990,-1.05184,1.99436,-0.33509
-1.78662,1.03398,-1.34191,-1.44929,-1.05211,1.99435,-0.33508
-1.78777,1.03401,-1.34226,-1.44866,-1.05238,1.99433,-0.33506
-1.78892,1.03406,-1.34271,-1.44785,-1.05273,1.99429,-0.33503
-1.79007,1.03412,-1.34315,-1.44706,-1.05307,1.99425,-0.33499
-1.79122,1.03417,-1.34358,-1.44628,-1.05340,1.99421,-0.33496
-1.79237,1.03422,-1.34400,-1.44551,-1.05373,1.99417,-0.33492
-1.79352,1.03427,-1.34442,-1.44475,-1.05406,1.99414,-0.33489
-1.79467,1.03432,-1.34483,-1.44400,-1.05438,1.99410,-0.33486
-1.79582,1.03436,-1.34524,-1.44327,-1.05470,1.99407,-0.33483
-1.79696,1.03441,-1.34563,-1.44255,-1.05501,1.99403,-0.33480
-1.79811,1.03445,-1.34602,-1.44184,-1.05532,1.99400,-0.33477
-1.79926,1.03449,-1.34641,-1.44114,-1.05562,1.99397,-0.33475
-1.80041,1.03454,-1.34679,-1.44045,-1.05592,1.99394,-0.33472
-1.80156,1.03458,-1.34716,-1.43977,-1.05621,1.99391,-0.33470
-1.80271,1.03462,-1.34753,-1.43911,-1.05650,1.99388,-0.33467
-1.80386,1.03466,-1.34789,-1.43845,-1.05679,1.99385,-0.33465
-1.80501,1.03469,-1.34824,-1.43781,-1.05707,1.99383,-0.33462
-1.80616,1.03473,-1.34859,-1.43717,-1.05734,1.99380,-0.33460
-1.80731,1.03477,-1.34893,-1.43655,-1.05762,1.99377,-0.33458
-1.80846,1.03480,-1.34927,-1.43594,-1.05789,1.99375,-0.33456
-1.80961,1.03483,-1.34954,-1.43544,-1.05810,1.99373,-0.33454
-1.81076,1.03487,-1.34991,-1.43477,-1.05840,1.99370,-0.33451
-1.81191,1.03491,-1.35028,-1.43410,-1.05869,1.99367,-0.33449
-1.81306,1.03494,-1.35064,-1.43344,-1.05897,1.99364,-0.33447
-1.81421,1.03498,-1.35099,-1.43280,-1.05925,1.99362,-0.33444
-1.81536,1.03502,-1.35134,-1.43216,-1.05953,1.99359,-0.33442
-1.81651,1.03505,-1.35168,-1.43154,-1.05980,1.99357,-0.33440
-1.81766,1.03509,-1.35202,-1.43093,-1.06007,1.99354,-0.33438
-1.81881,1.03511,-1.35226,-1.43049,-1.06026,1.99352,-0.33436
-1.81996,1.03515,-1.35263,-1.42982,-1.06056,1.99350,-0.33434
-1.82111,1.03519,-1.35300,-1.42915,-1.06085,1.99347,-0.33431
-1.82226,1.03522,-1.35336,-1.42849,-1.06113,1.99344,-0.33429
-1.82341,1.03526,-1.35371,-1.42784,-1.06142,1.99341,-0.33427
-1.82456,1.03530,-1.35406,-1.42721,-1.06169,1.99339,-0.33425
-1.82571,1.03533,-1.35441,-1.42658,-1.06197,1.99336,-0.33422
-1.82686,1.03536,-1.35474,-1.42597,-1.06224,1.99334,-0.33420
-1.82801,1.03539,-1.35501,-1.42547,-1.06245,1.99332,-0.33419
-1.82916,1.03542,-1.35538,-1.42481,-1.06274,1.99330,-0.33417
-1.83031,1.03545,-1.35574,-1.42416,-1.06302,1.99327,-0.33415
-1.83146,1.03549,-1.35609,-1.42352,-1.06330,1.99325,-0.33413
-1.83261,1.03552,-1.35644,-1.42289,-1.06358,1.99323,-0.33411
-1.83375,1.03555,-1.35678,-1.42227,-1.06385,1.99321,-0.33409
-1.83490,1.03557,-1.35712,-1.42166,-1.06412,1.99319,-0.33407
-1.83605,1.03561,-1.35750,-1.42098,-1.06441,1.99316,-0.33405
-1.83720,1.03564,-1.35787,-1.42031,-1.06471,1.99314,-0.33403
-1.83835,1.03568,-1.35823,-1.41965,-1.06499,1.99311,-0.33401
-1.83950,1.03571,-1.35859,-1.41900,-1.06527,1.99309,-0.33399
-1.84065,1.03574,-1.35894,-1.41836,-1.06555,1.99307,-0.33397
-1.84180,1.03577,-1.35929,-1.41773,-1.06583,1.99304,-0.33395
-1.84295,1.03580,-1.35963,-1.41711,-1.06610,1.99302,-0.33394
-1.84410,1.03582,-1.35991,-1.41661,-1.06632,1.99301,-0.33392
-1.84525,1.03587,-1.36030,-1.41589,-1.06663,1.99297,-0.33389
-1.84640,1.03591,-1.36069,-1.41519,-1.06694,1.99294,-0.33386
-1.84755,1.03596,-1.36107,-1.41449,-1.06724,1.99291,-0.33384
-1.84870,1.03600,-1.36144,-1.41381,-1.06754,1.99288,-0.33381
-1.84985,1.03604,-1.36181,-1.41313,-1.06783,1.99285,-0.33378
-1.85100,1.03608,-1.36217,-1.41247,-1.06812,1.99282,-0.33376
-1.85215,1.03612,-1.36253,-1.41182,-1.06841,1.99279,-0.33373
-1.85330,1.03616,-1.36288,-1.41118,-1.06869,1.99276,-0.33371
-1.85445,1.03619,-1.36323,-1.41055,-1.06897,1.99273,-0.33369
-1.85560,1.03623,-1.36357,-1.40992,-1.06924,1.99271,-0.33366
-1.85675,1.03627,-1.36390,-1.40930,-1.06951,1.99268,-0.33364
-1.85790,1.03631,-1.36428,-1.40862,-1.06981,1.99265,-0.33361
-1.85905,1.03635,-1.36465,-1.40795,-1.07010,1.99262,-0.33359
-1.86020,1.03639,-1.36501,-1.40729,-1.07039,1.99259,-0.33357
-1.86135,1.03642,-1.36537,-1.40664,-1.07068,1.99257,-0.33354
-1.86250,1.03646,-1.36572,-1.40600,-1.07096,1.99254,-0.33352
-1.86365,1.03650,-1.36606,-1.40537,-1.07124,1.99251,-0.33350
-1.86480,1.03653,-1.36640,-1.40475,-1.07151,1.99249,-0.33347
-1.86595,1.03656,-1.36664,-1.40431,-1.07170,1.99247,-0.33346
-1.86710,1.03660,-1.36702,-1.40360,-1.07201,1.99243,-0.33343
-1.86825,1.03665,-1.36740,-1.40291,-1.07231,1.99240,-0.33340
-1.86940,1.03669,-1.36777,-1.40223,-1.07261,1.99237,-0.33337
-1.87054,1.03673,-1.36814,-1.40156,-1.07290,1.99234,-0.33335
-1.87169,1.03677,-1.36850,-1.40090,-1.07319,1.99231,-0.33332
-1.87284,1.03681,-1.36885,-1.40025,-1.07348,1.99228,-0.33329
-1.87399,1.03685,-1.36920,-1.39961,-1.07376,1.99225,-0.33327
-1.87514,1.03689,-1.36954,-1.39898,-1.07403,1.99222,-0.33325
-1.87629,1.03693,-1.36988,-1.39836,-1.07431,1.99220,-0.33322
-1.87744,1.03694,-1.37005,-1.39805,-1.07444,1.99218,-0.33321
-1.87859,1.03698,-1.37042,-1.39738,-1.07474,1.99216,-0.33319
-1.87974,1.03702,-1.37078,-1.39673,-1.07502,1.99213,-0.33317
-1.88089,1.03705,-1.37113,-1.39608,-1.07531,1.99210,-0.33314
-1.88204,1.03709,-1.37148,-1.39544,-1.07559,1.99208,-0.33312
-1.88319,1.03712,-1.37182,-1.39482,-1.07586,1.99205,-0.33310
-1.88434,1.03715,-1.37216,-1.39420,-1.07614,1.99203,-0.33308
-1.88549,1.03720,-1.37252,-1.39353,-1.07643,1.99199,-0.33305
-1.88664,1.03725,-1.37287,-1.39288,-1.07672,1.99196,-0.33302
-1.88779,1.03729,-1.37322,-1.39224,-1.07700,1.99193,-0.33299
-1.88894,1.03734,-1.37356,-1.39161,-1.07728,1.99189,-0.33296
-1.89009,1.03738,-1.37389,-1.39099,-1.07755,1.99186,-0.33294
-1.89124,1.03740,-1.37406,-1.39068,-1.07769,1.99185,-0.33292
-1.89239,1.03745,-1.37440,-1.39006,-1.07796,1.99181,-0.33289
-1.89354,1.03749,-1.37469,-1.38950,-1.07821,1.99178,-0.33287
-1.89469,1.03754,-1.37503,-1.38888,-1.07849,1.99174,-0.33283
-1.89584,1.03759,-1.37533,-1.38832,-1.07873,1.99171,-0.33280
-1.89699,1.03764,-1.37566,-1.38770,-1.07901,1.99167,-0.33277
-1.89814,1.03769,-1.37588,-1.38727,-1.07921,1.99163,-0.33273
-1.89929,1.03781,-1.37543,-1.38791,-1.07900,1.99154,-0.33265
-1.90044,1.03793,-1.37499,-1.38854,-1.07880,1.99145,-0.33258
-1.90159,1.03805,-1.37456,-1.38915,-1.07859,1.99136,-0.33250
-1.90274,1.03816,-1.37413,-1.38976,-1.07839,1.99128,-0.33242
-1.90389,1.03828,-1.37371,-1.39035,-1.07819,1.99119,-0.33234
-1.90504,1.03839,-1.37330,-1.39094,-1.07800,1.99111,-0.33227
-1.90619,1.03850,-1.37289,-1.39153,-1.07780,1.99102,-0.33219
-1.90734,1.03861,-1.37242,-1.39222,-1.07756,1.99094,-0.33212
-1.90848,1.03871,-1.37196,-1.39291,-1.07733,1.99086,-0.33205
-1.90963,1.03882,-1.37150,-1.39358,-1.07709,1.99079,-0.33198
-1.91078,1.03892,-1.37105,-1.39424,-1.07686,1.99071,-0.33191
-1.91193,1.03902,-1.37061,-1.39489,-1.07664,1.99063,-0.33185
-1.91308,1.03912,-1.37018,-1.39553,-1.07641,1.99056,-0.33178
-1.91423,1.03922,-1.36975,-1.39616,-1.07619,1.99048,-0.33171
-1.91538,1.03932,-1.36933,-1.39678,-1.07598,1.99041,-0.33165
-1.91653,1.03941,-1.36892,-1.39739,-1.07576,1.99033,-0.33158
-1.91768,1.03951,-1.36852,-1.39798,-1.07555,1.99026,-0.33152
-1.91883,1.03960,-1.36812,-1.39857,-1.07535,1.99019,-0.33145
-1.91998,1.03962,-1.36803,-1.39871,-1.07530,1.99018,-0.33144
-1.92113,1.03970,-1.36755,-1.39945,-1.07503,1.99012,-0.33139
-1.92228,1.03978,-1.36707,-1.40018,-1.07476,1.99006,-0.33133
-1.92343,1.03985,-1.36661,-1.40089,-1.07450,1.99000,-0.33128
-1.92458,1.03993,-1.36615,-1.40160,-1.07424,1.98994,-0.33123
-1.92573,1.04000,-1.36570,-1.40229,-1.07399,1.98988,-0.33118
-1.92688,1.04008,-1.36525,-1.40298,-1.07374,1.98983,-0.33113
-1.92803,1.04015,-1.36482,-1.40365,-1.07349,1.98977,-0.33108
-1.92918,1.04023,-1.36439,-1.40431,-1.07324,1.98972,-0.33103
-1.93033,1.04030,-1.36397,-1.40496,-1.07300,1.98966,-0.33098
-1.93148,1.04037,-1.36355,-1.40560,-1.07277,1.98961,-0.33093
-1.93263,1.04044,-1.36315,-1.40622,-1.07253,1.98955,-0.33088
-1.93378,1.04051,-1.36275,-1.40684,-1.07230,1.98950,-0.33083
-1.93493,1.04058,-1.36235,-1.40745,-1.07208,1.98945,-0.33079
-1.93608,1.04065,-1.36197,-1.40805,-1.07185,1.98939,-0.33074
-1.93723,1.04066,-1.36187,-1.40820,-1.07180,1.98938,-0.33073
-1.93838,1.04070,-1.36131,-1.40911,-1.07145,1.98935,-0.33070
-1.93953,1.04074,-1.36075,-1.41001,-1.07110,1.98932,-0.33068
-1.94068,1.04078,-1.36021,-1.41089,-1.07076,1.98929,-0.33065
-1.94183,1.04082,-1.35967,-1.41176,-1.07043,1.98926,-0.33062
-1.94298,1.04086,-1.35914,-1.41261,-1.07010,1.98923,-0.33060
-1.94413,1.04090,-1.35863,-1.41345,-1.06977,1.98920,-0.33057
-1.94527,1.04094,-1.35812,-1.41428,-1.06945,1.98917,-0.33054
-1.94642,1.04098,-1.35762,-1.41509,-1.06914,1.98914,-0.33051
-1.94757,1.04101,-1.35712,-1.41589,-1.06883,1.98911,-0.33049
-1.94872,1.04105,-1.35664,-1.41668,-1.06852,1.98908,-0.33046
-1.94987,1.04109,-1.35616,-1.41745,-1.06822,1.98905,-0.33043
-1.95102,1.04113,-1.35570,-1.41821,-1.06793,1.98902,-0.33040
-1.95217,1.04117,-1.35524,-1.41896,-1.06763,1.98899,-0.33038
-1.95332,1.04121,-1.35478,-1.41969,-1.06735,1.98896,-0.33035
-1.95447,1.04124,-1.35434,-1.42041,-1.06706,1.98893,-0.33032
-1.95562,1.04128,-1.35390,-1.42112,-1.06678,1.98890,-0.33030
-1.95677,1.04132,-1.35347,-1.42182,-1.06651,1.98887,-0.33027
-1.95792,1.04136,-1.35305,-1.42251,-1.06624,1.98884,-0.33024
-1.95907,1.04140,-1.35264,-1.42319,-1.06597,1.98881,-0.33022
-1.96022,1.04143,-1.35223,-1.42385,-1.06571,1.98878,-0.33019
-1.96137,1.04147,-1.35183,-1.42451,-1.06545,1.98875,-0.33016
-1.96252,1.04151,-1.35143,-1.42515,-1.06519,1.98872,-0.33014
-1.96367,1.04154,-1.35104,-1.42578,-1.06494,1.98869,-0.33011
-1.96482,1.04158,-1.35066,-1.42641,-1.06470,1.98866,-0.33008
-1.96597,1.04161,-1.35029,-1.42702,-1.06445,1.98864,-0.33006
-1.96712,1.04164,-1.34994,-1.42758,-1.06423,1.98861,-0.33004
-1.96827,1.04164,-1.34945,-1.42841,-1.06389,1.98861,-0.33004
-1.96942,1.04164,-1.34897,-1.42923,-1.06357,1.98861,-0.33004
-1.97057,1.04164,-1.34849,-1.43003,-1.06324,1.98861,-0.33003
-1.97172,1.04164,-1.34803,-1.43081,-1.06293,1.98861,-0.33003
-1.97287,1.04165,-1.34757,-1.43159,-1.06261,1.98860,-0.33003
-1.97402,1.04165,-1.34712,-1.43235,-1.06230,1.98860,-0.33003
-1.97517,1.04165,-1.34668,-1.43310,-1.06200,1.98860,-0.33002
-1.97632,1.04165,-1.34624,-1.43384,-1.06170,1.98859,-0.33002
-1.97747,1.04166,-1.34582,-1.43456,-1.06141,1.98859,-0.33002
-1.97862,1.04166,-1.34540,-1.43527,-1.06112,1.98859,-0.33001
-1.97977,1.04166,-1.34498,-1.43597,-1.06083,1.98858,-0.33001
-1.98092,1.04167,-1.34458,-1.43666,-1.06055,1.98858,-0.33000
-1.98206,1.04167,-1.34418,-1.43734,-1.06028,1.98857,-0.33000
-1.98321,1.04168,-1.34378,-1.43801,-1.06000,1.98857,-0.32999
-1.98436,1.04168,-1.34340,-1.43866,-1.05973,1.98856,-0.32999
-1.98551,1.04169,-1.34302,-1.43931,-1.05947,1.98856,-0.32998
-1.98666,1.04170,-1.34264,-1.43994,-1.05921,1.98855,-0.32998
-1.98781,1.04170,-1.34228,-1.44056,-1.05895,1.98855,-0.32997
-1.98896,1.04171,-1.34192,-1.44118,-1.05870,1.98854,-0.32997
-1.99011,1.04171,-1.34155,-1.44179,-1.05845,1.98853,-0.32996
-1.99126,1.04171,-1.34115,-1.44248,-1.05816,1.98854,-0.32996
-1.99241,1.04170,-1.34076,-1.44316,-1.05788,1.98854,-0.32996
-1.99356,1.04170,-1.34037,-1.44383,-1.05761,1.98854,-0.32997
-1.99471,1.04169,-1.33998,-1.44449,-1.05734,1.98854,-0.32997
-1.99586,1.04169,-1.33960,-1.44514,-1.05707,1.98854,-0.32997
-1.99701,1.04169,-1.33923,-1.44577,-1.05680,1.98855,-0.32997
-1.99816,1.04169,-1.33887,-1.44640,-1.05654,1.98855,-0.32997
-1.99931,1.04168,-1.33851,-1.44701,-1.05629,1.98855,-0.32997
-2.00046,1.04168,-1.33816,-1.44762,-1.05604,1.98855,-0.32997
-2.00161,1.04168,-1.33805,-1.44781,-1.05596,1.98855,-0.32997
-2.00276,1.04169,-1.33765,-1.44849,-1.05568,1.98854,-0.32996
-2.00391,1.04170,-1.33725,-1.44916,-1.05541,1.98853,-0.32995
-2.00506,1.04171,-1.33687,-1.44981,-1.05513,1.98853,-0.32994
-2.00621,1.04171,-1.33648,-1.45046,-1.05487,1.98852,-0.32994
-2.00736,1.04172,-1.33611,-1.45110,-1.05460,1.98851,-0.32993
-2.00851,1.04173,-1.33574,-1.45172,-1.05435,1.98850,-0.32992
-2.00966,1.04174,-1.33538,-1.45234,-1.05409,1.98849,-0.32991
-2.01081,1.04175,-1.33502,-1.45294,-1.05384,1.98849,-0.32990
-2.01196,1.04175,-1.33487,-1.45320,-1.05373,1.98849,-0.32990
-2.01311,1.04173,-1.33445,-1.45394,-1.05343,1.98850,-0.32991
-2.01426,1.04171,-1.33402,-1.45467,-1.05312,1.98851,-0.32993
-2.01541,1.04169,-1.33361,-1.45539,-1.05282,1.98853,-0.32994
-2.01656,1.04168,-1.33320,-1.45610,-1.05253,1.98854,-0.32995
-2.01771,1.04166,-1.33280,-1.45680,-1.05224,1.98855,-0.32996
-2.01885,1.04164,-1.33241,-1.45748,-1.05196,1.98856,-0.32997
-2.02000,1.04163,-1.33202,-1.45815,-1.05168,1.98857,-0.32997
-2.02115,1.04161,-1.33164,-1.45881,-1.05140,1.98858,-0.32998
-2.02230,1.04160,-1.33127,-1.45946,-1.05113,1.98859,-0.32999
-2.02345,1.04158,-1.33090,-1.46010,-1.05086,1.98860,-0.33000
-2.02460,1.04157,-1.33054,-1.46073,-1.05059,1.98861,-0.33000
-2.02575,1.04156,-1.33019,-1.46135,-1.05034,1.98862,-0.33001
-2.02690,1.04155,-1.32984,-1.46196,-1.05008,1.98862,-0.33002
-2.02805,1.04154,-1.32955,-1.46246,-1.04987,1.98863,-0.33002
-2.02920,1.04150,-1.32911,-1.46324,-1.04954,1.98866,-0.33005
-2.03035,1.04146,-1.32867,-1.46401,-1.04922,1.98868,-0.33007
-2.03150,1.04143,-1.32823,-1.46477,-1.04890,1.98871,-0.33009
-2.03265,1.04140,-1.32781,-1.46552,-1.04859,1.98873,-0.33011
-2.03380,1.04137,-1.32739,-1.46626,-1.04829,1.98875,-0.33013
-2.03495,1.04134,-1.32698,-1.46698,-1.04798,1.98877,-0.33015
-2.03610,1.04131,-1.32658,-1.46769,-1.04769,1.98880,-0.33017
-2.03725,1.04128,-1.32618,-1.46839,-1.04739,1.98882,-0.33019
-2.03840,1.04125,-1.32579,-1.46907,-1.04710,1.98884,-0.33020
-2.03955,1.04122,-1.32541,-1.46975,-1.04682,1.98886,-0.33022
-2.04070,1.04119,-1.32503,-1.47041,-1.04654,1.98888,-0.33024
-2.04185,1.04117,-1.32466,-1.47106,-1.04626,1.98889,-0.33025
-2.04300,1.04114,-1.32430,-1.47171,-1.04599,1.98891,-0.33027
-2.04415,1.04112,-1.32394,-1.47234,-1.04573,1.98893,-0.33028
-2.04530,1.04110,-1.32359,-1.47296,-1.04546,1.98894,-0.33030
-2.04645,1.04107,-1.32324,-1.47357,-1.04520,1.98896,-0.33031
-2.04760,1.04105,-1.32290,-1.47417,-1.04495,1.98898,-0.33032
-2.04875,1.04104,-1.32276,-1.47442,-1.04484,1.98899,-0.33033
-2.04990,1.04096,-1.32234,-1.47519,-1.04452,1.98904,-0.33038
-2.05105,1.04089,-1.32193,-1.47594,-1.04420,1.98910,-0.33043
-2.05220,1.04081,-1.32153,-1.47668,-1.04388,1.98915,-0.33048
-2.05335,1.04074,-1.32113,-1.47741,-1.04357,1.98921,-0.33053
-2.05450,1.04067,-1.32074,-1.47812,-1.04327,1.98926,-0.33058
-2.05564,1.04060,-1.32036,-1.47883,-1.04297,1.98931,-0.33062
-2.05679,1.04053,-1.31998,-1.47952,-1.04267,1.98936,-0.33067
-2.05794,1.04047,-1.31961,-1.48020,-1.04238,1.98941,-0.33071
-2.05909,1.04040,-1.31925,-1.48087,-1.04209,1.98946,-0.33075
-2.06024,1.04034,-1.31889,-1.48152,-1.04181,1.98950,-0.33080
-2.06139,1.04028,-1.31854,-1.48217,-1.04153,1.98955,-0.33084
-2.06254,1.04022,-1.31819,-1.48281,-1.04126,1.98959,-0.33088
-2.06369,1.04016,-1.31785,-1.48343,-1.04099,1.98964,-0.33091
-2.06484,1.04010,-1.31752,-1.48404,-1.04073,1.98968,-0.33095
-2.06599,1.04004,-1.31719,-1.48465,-1.04046,1.98972,-0.33099
-2.06714,1.03999,-1.31687,-1.48524,-1.04021,1.98976,-0.33102
-2.06829,1.03996,-1.31676,-1.48544,-1.04012,1.98978,-0.33104
-2.06944,1.03985,-1.31635,-1.48622,-1.03979,1.98986,-0.33112
-2.07059,1.03973,-1.31595,-1.48698,-1.03946,1.98995,-0.33120
-2.07174,1.03962,-1.31555,-1.48773,-1.03914,1.99003,-0.33127
-2.07289,1.03951,-1.31516,-1.48847,-1.03882,1.99011,-0.33134
-2.07404,1.03941,-1.31478,-1.48919,-1.03850,1.99019,-0.33142
-2.07519,1.03930,-1.31441,-1.48991,-1.03820,1.99027,-0.33149
-2.07634,1.03920,-1.31404,-1.49061,-1.03789,1.99035,-0.33156
-2.07749,1.03910,-1.31367,-1.49130,-1.03759,1.99042,-0.33162
-2.07864,1.03900,-1.31332,-1.49198,-1.03730,1.99050,-0.33169
-2.07979,1.03890,-1.31297,-1.49264,-1.03701,1.99057,-0.33176
-2.08094,1.03881,-1.31262,-1.49330,-1.03672,1.99064,-0.33182
-2.08209,1.03872,-1.31228,-1.49394,-1.03644,1.99071,-0.33188
-2.08324,1.03862,-1.31195,-1.49458,-1.03617,1.99077,-0.33194
-2.08439,1.03854,-1.31162,-1.49520,-1.03589,1.99084,-0.33200
-2.08554,1.03845,-1.31130,-1.49581,-1.03563,1.99091,-0.33206
-2.08669,1.03836,-1.31099,-1.49642,-1.03536,1.99097,-0.33212
-2.08784,1.03828,-1.31068,-1.49701,-1.03510,1.99103,-0.33217
-2.08899,1.03819,-1.31036,-1.49760,-1.03485,1.99110,-0.33223
-2.09014,1.03808,-1.31001,-1.49828,-1.03455,1.99118,-0.33231
-2.09129,1.03797,-1.30967,-1.49895,-1.03426,1.99126,-0.33239
-2.09244,1.03786,-1.30933,-1.49960,-1.03397,1.99135,-0.33246
-2.09358,1.03775,-1.30900,-1.50025,-1.03369,1.99143,-0.33253
-2.09473,1.03764,-1.30867,-1.50088,-1.03341,1.99151,-0.33260
-2.09588,1.03754,-1.30835,-1.50151,-1.03314,1.99158,-0.33267
-2.09703,1.03744,-1.30803,-1.50212,-1.03287,1.99166,-0.33274
-2.09818,1.03734,-1.30772,-1.50272,-1.03261,1.99173,-0.33281
-2.09933,1.03724,-1.30741,-1.50331,-1.03234,1.99181,-0.33288
-2.10048,1.03714,-1.30711,-1.50390,-1.03209,1.99188,-0.33294
-2.10163,1.03709,-1.30696,-1.50420,-1.03196,1.99192,-0.33298
-2.10278,1.03696,-1.30660,-1.50489,-1.03165,1.99202,-0.33307
-2.10393,1.03683,-1.30626,-1.50557,-1.03136,1.99211,-0.33316
-2.10508,1.03670,-1.30592,-1.50624,-1.03106,1.99221,-0.33324
-2.10623,1.03658,-1.30558,-1.50689,-1.03078,1.99230,-0.33333
-2.10738,1.03645,-1.30526,-1.50754,-1.03049,1.99240,-0.33341
-2.10853,1.03633,-1.30493,-1.50817,-1.03021,1.99249,-0.33349
-2.10968,1.03621,-1.30462,-1.50880,-1.02994,1.99258,-0.33357
-2.11083,1.03610,-1.30430,-1.50941,-1.02967,1.99266,-0.33365
-2.11198,1.03598,-1.30400,-1.51002,-1.02940,1.99275,-0.33373
-2.11313,1.03587,-1.30370,-1.51061,-1.02914,1.99283,-0.33381
-2.11428,1.03576,-1.30340,-1.51119,-1.02888,1.99291,-0.33388
-2.11543,1.03565,-1.30311,-1.51176,-1.02863,1.99299,-0.33395
-2.11658,1.03563,-1.30307,-1.51185,-1.02859,1.99301,-0.33397
-2.11773,1.03541,-1.30268,-1.51266,-1.02824,1.99318,-0.33412
-2.11888,1.03519,-1.30230,-1.51346,-1.02788,1.99334,-0.33427
-2.12003,1.03497,-1.30192,-1.51424,-1.02754,1.99350,-0.33442
-2.12118,1.03476,-1.30155,-1.51501,-1.02719,1.99366,-0.33457
-2.12233,1.03455,-1.30119,-1.51577,-1.02686,1.99382,-0.33471
-2.12348,1.03435,-1.30084,-1.51651,-1.02653,1.99397,-0.33485
-2.12463,1.03415,-1.30049,-1.51724,-1.02620,1.99412,-0.33499
-2.12578,1.03395,-1.30014,-1.51796,-1.02588,1.99427,-0.33512
-2.12693,1.03376,-1.29980,-1.51867,-1.02557,1.99441,-0.33526
-2.12808,1.03357,-1.29947,-1.51936,-1.02526,1.99456,-0.33539
-2.12923,1.03339,-1.29915,-1.52005,-1.02495,1.99470,-0.33552
-2.13037,1.03320,-1.29883,-1.52072,-1.02465,1.99483,-0.33564
-2.13152,1.03302,-1.29851,-1.52138,-1.02436,1.99497,-0.33576
-2.13267,1.03285,-1.29820,-1.52203,-1.02407,1.99510,-0.33589
-2.13382,1.03268,-1.29790,-1.52266,-1.02378,1.99523,-0.33600
-2.13497,1.03251,-1.29760,-1.52329,-1.02350,1.99536,-0.33612
-2.13612,1.03234,-1.29730,-1.52391,-1.02323,1.99548,-0.33624
-2.13727,1.03218,-1.29701,-1.52451,-1.02295,1.99560,-0.33635
-2.13842,1.03202,-1.29673,-1.52511,-1.02269,1.99572,-0.33646
-2.13957,1.03186,-1.29645,-1.52569,-1.02242,1.99584,-0.33657
-2.14072,1.03170,-1.29618,-1.52627,-1.02217,1.99596,-0.33667
-2.14187,1.03155,-1.29591,-1.52683,-1.02191,1.99607,-0.33678
-2.14302,1.03140,-1.29564,-1.52739,-1.02166,1.99618,-0.33688
-2.14417,1.03137,-1.29559,-1.52751,-1.02160,1.99621,-0.33690
-2.14532,1.03114,-1.29527,-1.52820,-1.02129,1.99639,-0.33706
-2.14647,1.03091,-1.29497,-1.52888,-1.02099,1.99655,-0.33722
-2.14762,1.03069,-1.29467,-1.52954,-1.02069,1.99672,-0.33737
-2.14877,1.03047,-1.29437,-1.53019,-1.02039,1.99688,-0.33752
-2.14992,1.03026,-1.29408,-1.53083,-1.02010,1.99705,-0.33767
-2.15107,1.03005,-1.29380,-1.53146,-1.01982,1.99720,-0.33782
-2.15222,1.02984,-1.29352,-1.53208,-1.01953,1.99736,-0.33796
-2.15337,1.02964,-1.29324,-1.53269,-1.01926,1.99751,-0.33810
-2.15452,1.02944,-1.29297,-1.53329,-1.01899,1.99766,-0.33824
-2.15567,1.02924,-1.29271,-1.53387,-1.01872,1.99781,-0.33837
-2.15682,1.02905,-1.29245,-1.53445,-1.01846,1.99795,-0.33850
-2.15797,1.02887,-1.29219,-1.53502,-1.01820,1.99809,-0.33863
-2.15912,1.02868,-1.29194,-1.53558,-1.01794,1.99823,-0.33876
-2.16027,1.02850,-1.29169,-1.53613,-1.01769,1.99837,-0.33889
-2.16142,1.02831,-1.29144,-1.53668,-1.01744,1.99851,-0.33902
-2.16257,1.02805,-1.29114,-1.53737,-1.01712,1.99871,-0.33920
-2.16372,1.02778,-1.29085,-1.53805,-1.01681,1.99891,-0.33938
-2.16487,1.02753,-1.29056,-1.53871,-1.01651,1.99910,-0.33956
-2.16602,1.02728,-1.29028,-1.53936,-1.01621,1.99929,-0.33974
-2.16716,1.02703,-1.29000,-1.54001,-1.01592,1.99947,-0.33991
-2.16831,1.02679,-1.28973,-1.54064,-1.01563,1.99966,-0.34008
-2.16946,1.02655,-1.28946,-1.54126,-1.01534,1.99983,-0.34024
-2.17061,1.02631,-1.28920,-1.54187,-1.01506,2.00001,-0.34041
-2.17176,1.02608,-1.28894,-1.54247,-1.01479,2.00018,-0.34057
-2.17291,1.02586,-1.28868,-1.54306,-1.01452,2.00035,-0.34072
-2.17406,1.02564,-1.28843,-1.54364,-1.01425,2.00052,-0.34088
-2.17521,1.02542,-1.28819,-1.54420,-1.01399,2.00069,-0.34103
-2.17636,1.02520,-1.28794,-1.54476,-1.01373,2.00085,-0.34118
-2.17751,1.02499,-1.28771,-1.54531,-1.01348,2.00101,-0.34132
-2.17866,1.02479,-1.28747,-1.54585,-1.01323,2.00116,-0.34147
-2.17981,1.02458,-1.28725,-1.54638,-1.01299,2.00131,-0.34161
-2.18096,1.02444,-1.28708,-1.54676,-1.01281,2.00143,-0.34171
-2.18211,1.02418,-1.28681,-1.54741,-1.01252,2.00162,-0.34189
-2.18326,1.02392,-1.28653,-1.54804,-1.01222,2.00181,-0.34207
-2.18441,1.02367,-1.28627,-1.54867,-1.01194,2.00200,-0.34225
-2.18556,1.02342,-1.28601,-1.54928,-1.01166,2.00219,-0.34242
-2.18671,1.02318,-1.28575,-1.54989,-1.01138,2.00237,-0.34259
-2.18786,1.02294,-1.28550,-1.55048,-1.01111,2.00255,-0.34275
-2.18901,1.02271,-1.28525,-1.55106,-1.01084,2.00273,-0.34292
-2.19016,1.02248,-1.28500,-1.55163,-1.01058,2.00290,-0.34308
-2.19131,1.02225,-1.28476,-1.55220,-1.01032,2.00307,-0.34323
-2.19246,1.02203,-1.28453,-1.55275,-1.01007,2.00324,-0.34339
-2.19361,1.02181,-1.28430,-1.55329,-1.00982,2.00340,-0.34354
-2.19476,1.02160,-1.28407,-1.55383,-1.00957,2.00356,-0.34369
-2.19591,1.02139,-1.28385,-1.55435,-1.00933,2.00372,-0.34384
-2.19706,1.02126,-1.28371,-1.55467,-1.00918,2.00382,-0.34393
-2.19821,1.02101,-1.28346,-1.55528,-1.00890,2.00401,-0.34411
-2.19936,1.02075,-1.28321,-1.55587,-1.00863,2.00420,-0.34428
-2.20051,1.02051,-1.28296,-1.55646,-1.00836,2.00438,-0.34446
-2.20166,1.02027,-1.28272,-1.55703,-1.00809,2.00457,-0.34462
-2.20281,1.02003,-1.28248,-1.55760,-1.00783,2.00475,-0.34479
-2.20395,1.01979,-1.28225,-1.55815,-1.00758,2.00492,-0.34496
-2.20510,1.01956,-1.28202,-1.55870,-1.00733,2.00510,-0.34512
-2.20625,1.01934,-1.28180,-1.55924,-1.00708,2.00527,-0.34527
-2.20740,1.01912,-1.28158,-1.55976,-1.00684,2.00543,-0.34543
-2.20855,1.01890,-1.28136,-1.56028,-1.00660,2.00560,-0.34558
-2.20970,1.01876,-1.28123,-1.56060,-1.00645,2.00570,-0.34568
-2.21085,1.01851,-1.28099,-1.56118,-1.00618,2.00589,-0.34586
-2.21200,1.01825,-1.28076,-1.56175,-1.00592,2.00608,-0.34603
-2.21315,1.01800,-1.28052,-1.56231,-1.00566,2.00627,-0.34621
-2.21430,1.01776,-1.28030,-1.56287,-1.00540,2.00645,-0.34638
-2.21545,1.01752,-1.28007,-1.56341,-1.00515,2.00664,-0.34655
-2.21660,1.01728,-1.27986,-1.56394,-1.00491,2.00681,-0.34671
-2.21775,1.01705,-1.27964,-1.56447,-1.00466,2.00699,-0.34688
-2.21890,1.01683,-1.27943,-1.56498,-1.00442,2.00716,-0.34704
-2.22005,1.01662,-1.27924,-1.56545,-1.00421,2.00732,-0.34718
-2.22120,1.01634,-1.27899,-1.56606,-1.00393,2.00752,-0.34738
-2.22235,1.01607,-1.27874,-1.56666,-1.00365,2.00773,-0.34757
-2.22350,1.01580,-1.27850,-1.56725,-1.00338,2.00793,-0.34776
-2.22465,1.01554,-1.27827,-1.56783,-1.00311,2.00813,-0.34794
-2.22580,1.01528,-1.27804,-1.56840,-1.00285,2.00833,-0.34813
-2.22695,1.01502,-1.27781,-1.56896,-1.00259,2.00852,-0.34830
-2.22810,1.01477,-1.27758,-1.56951,-1.00234,2.00871,-0.34848
-2.22925,1.01453,-1.27736,-1.57006,-1.00209,2.00889,-0.34865
-2.23040,1.01428,-1.27715,-1.57059,-1.00184,2.00907,-0.34882
-2.23155,1.01405,-1.27694,-1.57111,-1.00160,2.00925,-0.34899
-2.23270,1.01381,-1.27673,-1.57162,-1.00136,2.00943,-0.34915
-2.23385,1.01359,-1.27652,-1.57213,-1.00113,2.00960,-0.34932
-2.23500,1.01353,-1.27648,-1.57224,-1.00108,2.00964,-0.34935
-2.23615,1.01320,-1.27623,-1.57288,-1.00078,2.00989,-0.34959
-2.23730,1.01287,-1.27599,-1.57351,-1.00049,2.01014,-0.34982
-2.23845,1.01255,-1.27576,-1.57413,-1.00020,2.01038,-0.35005
-2.23960,1.01224,-1.27552,-1.57474,-0.99992,2.01061,-0.35027
-2.24074,1.01193,-1.27530,-1.57534,-0.99964,2.01085,-0.35049
-2.24189,1.01162,-1.27507,-1.57593,-0.99936,2.01108,-0.35070
-2.24304,1.01132,-1.27485,-1.57651,-0.99909,2.01130,-0.35091
-2.24419,1.01103,-1.27464,-1.57707,-0.99883,2.01152,-0.35112
-2.24534,1.01074,-1.27442,-1.57763,-0.99857,2.01174,-0.35132
-2.24649,1.01046,-1.27422,-1.57818,-0.99831,2.01195,-0.35152
-2.24764,1.01018,-1.27401,-1.57872,-0.99806,2.01216,-0.35172
-2.24879,1.00991,-1.27381,-1.57925,-0.99781,2.01237,-0.35192
-2.24994,1.00964,-1.27361,-1.57977,-0.99757,2.01257,-0.35211
-2.25109,1.00937,-1.27342,-1.58028,-0.99733,2.01277,-0.35229
-2.25224,1.00911,-1.27323,-1.58078,-0.99710,2.01297,-0.35248
-2.25339,1.00886,-1.27304,-1.58127,-0.99687,2.01316,-0.35266
-2.25454,1.00862,-1.27287,-1.58172,-0.99666,2.01333,-0.35282
-2.25569,1.00831,-1.27264,-1.58233,-0.99638,2.01357,-0.35304
-2.25684,1.00801,-1.27241,-1.58292,-0.99610,2.01380,-0.35326
-2.25799,1.00771,-1.27219,-1.58351,-0.99583,2.01402,-0.35347
-2.25914,1.00741,-1.27197,-1.58408,-0.99556,2.01425,-0.35368
-2.26029,1.00712,-1.27175,-1.58464,-0.99530,2.01446,-0.35389
-2.26144,1.00683,-1.27154,-1.58520,-0.99505,2.01468,-0.35409
-2.26259,1.00655,-1.27133,-1.58574,-0.99479,2.01489,-0.35429
-2.26374,1.00628,-1.27112,-1.58628,-0.99454,2.01510,-0.35449
-2.26489,1.00601,-1.27092,-1.58680,-0.99430,2.01530,-0.35468
-2.26604,1.00574,-1.27073,-1.58732,-0.99406,2.01550,-0.35487
-2.26719,1.00548,-1.27053,-1.58783,-0.99382,2.01570,-0.35505
-2.26834,1.00522,-1.27034,-1.58833,-0.99359,2.01589,-0.35523
-2.26949,1.00497,-1.27015,-1.58882,-0.99336,2.01608,-0.35541
-2.27064,1.00481,-1.27004,-1.58912,-0.99322,2.01620,-0.35553
-2.27179,1.00449,-1.26982,-1.58972,-0.99295,2.01645,-0.35576
-2.27294,1.00417,-1.26960,-1.59030,-0.99267,2.01669,-0.35599
-2.27409,1.00385,-1.26939,-1.59088,-0.99240,2.01692,-0.35621
-2.27524,1.00354,-1.26918,-1.59145,-0.99214,2.01716,-0.35643
-2.27639,1.00324,-1.26897,-1.59200,-0.99188,2.01739,-0.35665
-2.27754,1.00294,-1.26877,-1.59255,-0.99163,2.01761,-0.35686
-2.27868,1.00265,-1.26857,-1.59309,-0.99138,2.01783,-0.35707
-2.27983,1.00236,-1.26838,-1.59361,-0.99113,2.01805,-0.35727
-2.28098,1.00207,-1.26819,-1.59413,-0.99089,2.01826,-0.35747
-2.28213,1.00179,-1.26800,-1.59464,-0.99065,2.01847,-0.35767
-2.28328,1.00152,-1.26782,-1.59514,-0.99042,2.01868,-0.35787
-2.28443,1.00125,-1.26764,-1.59563,-0.99019,2.01888,-0.35806
-2.28558,1.00099,-1.26746,-1.59612,-0.98996,2.01908,-0.35825
-2.28673,1.00075,-1.26730,-1.59656,-0.98976,2.01926,-0.35842
-2.28788,1.00042,-1.26707,-1.59715,-0.98948,2.01950,-0.35865
-2.28903,1.00011,-1.26685,-1.59773,-0.98921,2.01974,-0.35887
-2.29018,0.99980,-1.26664,-1.59831,-0.98895,2.01997,-0.35910
-2.29133,0.99949,-1.26643,-1.59887,-0.98869,2.02020,-0.35931
-2.29248,0.99920,-1.26622,-1.59943,-0.98843,2.02043,-0.35953
-2.29363,0.99890,-1.26602,-1.59997,-0.98818,2.02065,-0.35974
-2.29478,0.99861,-1.26582,-1.60051,-0.98793,2.02086,-0.35994
-2.29593,0.99833,-1.26562,-1.60103,-0.98769,2.02108,-0.36015
-2.29708,0.99805,-1.26543,-1.60155,-0.98745,2.02129,-0.36035
-2.29823,0.99777,-1.26524,-1.60206,-0.98721,2.02149,-0.36054
-2.29938,0.99750,-1.26506,-1.60255,-0.98698,2.02170,-0.36074
-2.30053,0.99724,-1.26488,-1.60304,-0.98676,2.02190,-0.36092
-2.30168,0.99698,-1.26470,-1.60352,-0.98653,2.02209,-0.36111
-2.30283,0.99682,-1.26459,-1.60382,-0.98640,2.02221,-0.36122
-2.30398,0.99654,-1.26438,-1.60435,-0.98615,2.02242,-0.36142
-2.30513,0.99627,-1.26418,-1.60488,-0.98591,2.02263,-0.36162
-2.30628,0.99600,-1.26398,-1.60539,-0.98567,2.02283,-0.36181
-2.30743,0.99574,-1.26379,-1.60590,-0.98544,2.02303,-0.36200
-2.30858,0.99548,-1.26360,-1.60640,-0.98521,2.02322,-0.36218
-2.30973,0.99522,-1.26341,-1.60689,-0.98499,2.02341,-0.36237
-2.31088,0.99497,-1.26323,-1.60738,-0.98476,2.02361,-0.36255
-2.31203,0.99468,-1.26302,-1.60793,-0.98451,2.02383,-0.36276
-2.31318,0.99439,-1.26282,-1.60847,-0.98426,2.02404,-0.36297
-2.31433,0.99411,-1.26262,-1.60900,-0.98402,2.02425,-0.36317
-2.31547,0.99383,-1.26242,-1.60952,-0.98378,2.02446,-0.36337
-2.31662,0.99356,-1.26223,-1.61003,-0.98354,2.02467,-0.36356
-2.31777,0.99329,-1.26204,-1.61054,-0.98331,2.02487,-0.36376
-2.31892,0.99302,-1.26185,-1.61103,-0.98309,2.02507,-0.36395
-2.32007,0.99276,-1.26167,-1.61152,-0.98286,2.02526,-0.36413
-2.32122,0.99250,-1.26149,-1.61200,-0.98264,2.02546,-0.36432
-2.32237,0.99221,-1.26129,-1.61254,-0.98239,2.02568,-0.36453
-2.32352,0.99192,-1.26109,-1.61308,-0.98214,2.02590,-0.36474
-2.32467,0.99163,-1.26089,-1.61361,-0.98190,2.02612,-0.36495
-2.32582,0.99135,-1.26070,-1.61412,-0.98166,2.02633,-0.36515
-2.32697,0.99107,-1.26051,-1.61463,-0.98143,2.02654,-0.36535
-2.32812,0.99080,-1.26033,-1.61513,-0.98120,2.02674,-0.36555
-2.32927,0.99053,-1.26015,-1.61562,-0.98097,2.02694,-0.36574
-2.33042,0.99027,-1.25997,-1.61610,-0.98075,2.02714,-0.36593
-2.33157,0.99003,-1.25981,-1.61653,-0.98055,2.02732,-0.36610
-2.33272,0.98973,-1.25961,-1.61708,-0.98030,2.02755,-0.36631
-2.33387,0.98943,-1.25941,-1.61761,-0.98006,2.02777,-0.36653
-2.33502,0.98914,-1.25922,-1.61813,-0.97982,2.02799,-0.36674
-2.33617,0.98885,-1.25903,-1.61864,-0.97958,2.02820,-0.36694
-2.33732,0.98857,-1.25885,-1.61915,-0.97935,2.02841,-0.36715
-2.33847,0.98830,-1.25867,-1.61964,-0.97912,2.02862,-0.36735
-2.33962,0.98802,-1.25849,-1.62013,-0.97890,2.02882,-0.36754
-2.34077,0.98776,-1.25832,-1.62061,-0.97868,2.02902,-0.36773
-2.34192,0.98749,-1.25814,-1.62108,-0.97846,2.02922,-0.36793
-2.34307,0.98720,-1.25796,-1.62159,-0.97822,2.02944,-0.36814
-2.34422,0.98691,-1.25779,-1.62208,-0.97799,2.02966,-0.36834
-2.34537,0.98663,-1.25762,-1.62257,-0.97777,2.02987,-0.36855
-2.34652,0.98635,-1.25745,-1.62305,-0.97755,2.03008,-0.36875
-2.34767,0.98608,-1.25728,-1.62352,-0.97733,2.03028,-0.36894
-2.34882,0.98592,-1.25718,-1.62380,-0.97720,2.03041,-0.36906
-2.34997,0.98564,-1.25700,-1.62429,-0.97697,2.03061,-0.36926
-2.35112,0.98536,-1.25683,-1.62477,-0.97675,2.03082,-0.36946
-2.35226,0.98510,-1.25666,-1.62524,-0.97653,2.03102,-0.36965
-2.35341,0.98493,-1.25656,-1.62552,-0.97640,2.03114,-0.36977
-2.35456,0.98464,-1.25638,-1.62603,-0.97617,2.03136,-0.36998
-2.35571,0.98435,-1.25621,-1.62652,-0.97594,2.03158,-0.37019
-2.35686,0.98406,-1.25604,-1.62700,-0.97572,2.03180,-0.37040
-2.35801,0.98378,-1.25587,-1.62748,-0.97550,2.03201,-0.37060
-2.35916,0.98351,-1.25571,-1.62794,-0.97528,2.03221,-0.37080
-2.36031,0.98331,-1.25559,-1.62827,-0.97513,2.03236,-0.37094
-2.36146,0.98300,-1.25545,-1.62874,-0.97491,2.03259,-0.37117
-2.36261,0.98269,-1.25530,-1.62920,-0.97469,2.03282,-0.37139
-2.36376,0.98239,-1.25515,-1.62966,-0.97447,2.03305,-0.37161
-2.36491,0.98210,-1.25501,-1.63010,-0.97426,2.03327,-0.37182
-2.36606,0.98194,-1.25494,-1.63033,-0.97415,2.03339,-0.37194
-2.36721,0.98155,-1.25481,-1.63083,-0.97391,2.03368,-0.37222
-2.36836,0.98117,-1.25468,-1.63132,-0.97367,2.03396,-0.37249
-2.36951,0.98079,-1.25455,-1.63181,-0.97343,2.03424,-0.37277
-2.37066,0.98042,-1.25442,-1.63229,-0.97320,2.03452,-0.37303
-2.37181,0.98006,-1.25430,-1.63275,-0.97297,2.03479,-0.37330
-2.37296,0.97970,-1.25418,-1.63321,-0.97275,2.03506,-0.37356
-2.37411,0.97935,-1.25406,-1.63366,-0.97253,2.03532,-0.37381
-2.37526,0.97901,-1.25394,-1.63411,-0.97231,2.03558,-0.37406
-2.37641,0.97867,-1.25383,-1.63454,-0.97210,2.03583,-0.37431
-2.37756,0.97834,-1.25371,-1.63497,-0.97189,2.03608,-0.37455
-2.37871,0.97801,-1.25360,-1.63539,-0.97169,2.03633,-0.37479
-2.37986,0.97771,-1.25351,-1.63576,-0.97150,2.03655,-0.37500
-2.38101,0.97733,-1.25342,-1.63619,-0.97129,2.03683,-0.37528
-2.38216,0.97695,-1.25332,-1.63662,-0.97107,2.03711,-0.37556
-2.38331,0.97658,-1.25324,-1.63703,-0.97086,2.03739,-0.37582
-2.38446,0.97622,-1.25315,-1.63744,-0.97066,2.03766,-0.37609
-2.38561,0.97586,-1.25306,-1.63784,-0.97046,2.03793,-0.37635
-2.38676,0.97551,-1.25298,-1.63824,-0.97026,2.03819,-0.37661
-2.38791,0.97516,-1.25290,-1.63862,-0.97006,2.03845,-0.37686
-2.38905,0.97509,-1.25288,-1.63870,-0.97002,2.03850,-0.37691
-2.39020,0.97471,-1.25281,-1.63910,-0.96982,2.03879,-0.37719
-2.39135,0.97433,-1.25275,-1.63949,-0.96962,2.03907,-0.37746
-2.39250,0.97396,-1.25268,-1.63987,-0.96943,2.03935,-0.37773
-2.39365,0.97360,-1.25261,-1.64024,-0.96923,2.03962,-0.37800
-2.39480,0.97327,-1.25256,-1.64057,-0.96906,2.03986,-0.37824
-2.39595,0.97286,-1.25252,-1.64094,-0.96886,2.04017,-0.37854
-2.39710,0.97246,-1.25248,-1.64131,-0.96867,2.04047,-0.37883
-2.39825,0.97206,-1.25244,-1.64167,-0.96848,2.04077,-0.37912
-2.39940,0.97167,-1.25240,-1.64202,-0.96829,2.04106,-0.37941
-2.40055,0.97129,-1.25236,-1.64236,-0.96811,2.04135,-0.37969
-2.40170,0.97090,-1.25233,-1.64270,-0.96793,2.04163,-0.37997
-2.40285,0.97047,-1.25231,-1.64304,-0.96774,2.04195,-0.38028
-2.40400,0.97005,-1.25230,-1.64338,-0.96756,2.04227,-0.38059
-2.40515,0.96963,-1.25229,-1.64370,-0.96738,2.04258,-0.38089
-2.40630,0.96922,-1.25228,-1.64403,-0.96720,2.04288,-0.38119
-2.40745,0.96882,-1.25227,-1.64434,-0.96702,2.04318,-0.38149
-2.40860,0.96843,-1.25225,-1.64465,-0.96685,2.04348,-0.38178
-2.40975,0.96839,-1.25225,-1.64469,-0.96683,2.04351,-0.38181
-2.41090,0.96798,-1.25225,-1.64500,-0.96666,2.04381,-0.38211
-2.41205,0.96757,-1.25224,-1.64531,-0.96649,2.04411,-0.38240
-2.41320,0.96729,-1.25224,-1.64552,-0.96637,2.04432,-0.38261
-2.41435,0.96689,-1.25225,-1.64581,-0.96621,2.04463,-0.38291
-2.41550,0.96680,-1.25225,-1.64586,-0.96617,2.04469,-0.38297
-2.41665,0.96638,-1.25226,-1.64616,-0.96601,2.04500,-0.38328
-2.41780,0.96597,-1.25228,-1.64644,-0.96584,2.04531,-0.38358
-2.41895,0.96568,-1.25229,-1.64664,-0.96573,2.04552,-0.38379
-2.42010,0.96527,-1.25231,-1.64691,-0.96557,2.04583,-0.38410
-2.42125,0.96514,-1.25232,-1.64699,-0.96553,2.04593,-0.38419
-2.42240,0.96472,-1.25236,-1.64724,-0.96537,2.04624,-0.38450
-2.42355,0.96458,-1.25238,-1.64731,-0.96533,2.04635,-0.38460
-2.42470,0.96404,-1.25252,-1.64749,-0.96518,2.04674,-0.38500
-2.42585,0.96351,-1.25265,-1.64767,-0.96504,2.04714,-0.38538
-2.42699,0.96300,-1.25279,-1.64785,-0.96490,2.04752,-0.38577
-2.42814,0.96248,-1.25292,-1.64802,-0.96477,2.04790,-0.38614
-2.42929,0.96198,-1.25304,-1.64819,-0.96464,2.04827,-0.38651
-2.43044,0.96149,-1.25317,-1.64835,-0.96451,2.04864,-0.38687
-2.43159,0.96100,-1.25330,-1.64851,-0.96438,2.04900,-0.38723
-2.43274,0.96053,-1.25342,-1.64867,-0.96426,2.04936,-0.38758
-2.43389,0.96006,-1.25354,-1.64883,-0.96414,2.04971,-0.38793
-2.43504,0.95960,-1.25366,-1.64898,-0.96402,2.05005,-0.38827
-2.43619,0.95913,-1.25379,-1.64912,-0.96390,2.05040,-0.38861
-2.43734,0.95856,-1.25400,-1.64922,-0.96379,2.05082,-0.38904
-2.43849,0.95799,-1.25420,-1.64931,-0.96367,2.05124,-0.38945
-2.43964,0.95744,-1.25440,-1.64940,-0.96356,2.05165,-0.38987
-2.44079,0.95689,-1.25460,-1.64949,-0.96346,2.05206,-0.39027
-2.44194,0.95636,-1.25480,-1.64958,-0.96335,2.05246,-0.39067
-2.44309,0.95583,-1.25499,-1.64967,-0.96325,2.05285,-0.39106
-2.44424,0.95531,-1.25518,-1.64975,-0.96315,2.05323,-0.39144
-2.44539,0.95480,-1.25537,-1.64983,-0.96305,2.05361,-0.39182
-2.44654,0.95430,-1.25555,-1.64991,-0.96296,2.05399,-0.39219
-2.44769,0.95381,-1.25573,-1.64999,-0.96286,2.05435,-0.39256
-2.44884,0.95332,-1.25591,-1.65006,-0.96277,2.05471,-0.39292
-2.44999,0.95284,-1.25609,-1.65014,-0.96269,2.05507,-0.39327
-2.45114,0.95238,-1.25626,-1.65021,-0.96260,2.05542,-0.39362
-2.45229,0.95213,-1.25635,-1.65023,-0.96256,2.05560,-0.39380
-2.45344,0.95156,-1.25663,-1.65022,-0.96249,2.05602,-0.39422
-2.45459,0.95100,-1.25690,-1.65021,-0.96242,2.05644,-0.39464
-2.45574,0.95045,-1.25717,-1.65019,-0.96235,2.05685,-0.39505
-2.45689,0.94990,-1.25743,-1.65018,-0.96229,2.05725,-0.39546
-2.45804,0.94937,-1.25769,-1.65016,-0.96223,2.05765,-0.39585
-2.45919,0.94885,-1.25795,-1.65014,-0.96216,2.05804,-0.39624
-2.46034,0.94833,-1.25820,-1.65013,-0.96211,2.05842,-0.39663
-2.46149,0.94782,-1.25844,-1.65011,-0.96205,2.05880,-0.39701
-2.46264,0.94732,-1.25868,-1.65009,-0.96199,2.05917,-0.39738
-2.46378,0.94683,-1.25892,-1.65008,-0.96194,2.05953,-0.39775
-2.46493,0.94635,-1.25916,-1.65006,-0.96189,2.05989,-0.39811
-2.46608,0.94588,-1.25939,-1.65004,-0.96184,2.06024,-0.39846
-2.46723,0.94541,-1.25961,-1.65002,-0.96179,2.06059,-0.39881
-2.46838,0.94536,-1.25964,-1.65002,-0.96178,2.06063,-0.39885
-2.46953,0.94484,-1.25992,-1.64997,-0.96174,2.06101,-0.39924
-2.47068,0.94433,-1.26018,-1.64991,-0.96169,2.06139,-0.39962
-2.47183,0.94383,-1.26045,-1.64986,-0.96165,2.06176,-0.39999
-2.47298,0.94334,-1.26071,-1.64981,-0.96161,2.06213,-0.40036
-2.47413,0.94286,-1.26096,-1.64976,-0.96158,2.06248,-0.40072
-2.47528,0.94238,-1.26122,-1.64971,-0.96154,2.06284,-0.40108
-2.47643,0.94191,-1.26146,-1.64966,-0.96150,2.06318,-0.40143
-2.47758,0.94159,-1.26164,-1.64962,-0.96148,2.06343,-0.40168
-2.47873,0.94109,-1.26192,-1.64953,-0.96146,2.06379,-0.40205
-2.47988,0.94061,-1.26220,-1.64944,-0.96143,2.06415,-0.40241
-2.48103,0.94013,-1.26248,-1.64935,-0.96141,2.06451,-0.40277
-2.48218,0.93966,-1.26275,-1.64926,-0.96139,2.06485,-0.40312
-2.48333,0.93920,-1.26302,-1.64917,-0.96137,2.06520,-0.40347
-2.48448,0.93902,-1.26313,-1.64913,-0.96136,2.06533,-0.40361
-2.48563,0.93856,-1.26340,-1.64904,-0.96135,2.06568,-0.40396
-2.48678,0.93810,-1.26367,-1.64894,-0.96133,2.06602,-0.40430
-2.48793,0.93763,-1.26395,-1.64884,-0.96132,2.06636,-0.40465
-2.48908,0.93718,-1.26422,-1.64874,-0.96130,2.06670,-0.40500
-2.49023,0.93713,-1.26425,-1.64873,-0.96130,2.06673,-0.40503
-2.49138,0.93667,-1.26453,-1.64862,-0.96129,2.06708,-0.40538
-2.49253,0.93621,-1.26480,-1.64852,-0.96128,2.06742,-0.40572
-2.49368,0.93617,-1.26483,-1.64851,-0.96128,2.06745,-0.40576
-2.49483,0.93571,-1.26512,-1.64839,-0.96127,2.06779,-0.40611
-2.49598,0.93525,-1.26539,-1.64828,-0.96126,2.06813,-0.40645
-2.49713,0.93521,-1.26542,-1.64827,-0.96126,2.06816,-0.40648
-2.49828,0.93475,-1.26571,-1.64815,-0.96126,2.06850,-0.40683
-2.49943,0.93429,-1.26599,-1.64803,-0.96125,2.06884,-0.40717
-2.50057,0.93425,-1.26602,-1.64802,-0.96125,2.06887,-0.40721
-2.50172,0.93380,-1.26632,-1.64788,-0.96125,2.06921,-0.40755
-2.50287,0.93348,-1.26652,-1.64778,-0.96126,2.06944,-0.40779
-2.50402,0.93303,-1.26682,-1.64763,-0.96126,2.06978,-0.40813
-2.50517,0.93258,-1.26712,-1.64749,-0.96127,2.07011,-0.40847
-2.50632,0.93253,-1.26717,-1.64745,-0.96128,2.07015,-0.40851
-2.50747,0.93202,-1.26766,-1.64704,-0.96137,2.07053,-0.40890
-2.50862,0.93152,-1.26815,-1.64664,-0.96146,2.07090,-0.40928
-2.50977,0.93102,-1.26863,-1.64624,-0.96155,2.07127,-0.40965
-2.51092,0.93053,-1.26910,-1.64585,-0.96164,2.07163,-0.41002
-2.51207,0.93005,-1.26956,-1.64547,-0.96173,2.07198,-0.41039
-2.51322,0.92958,-1.27001,-1.64509,-0.96182,2.07233,-0.41074
-2.51437,0.92912,-1.27046,-1.64472,-0.96191,2.07268,-0.41109
-2.51552,0.92866,-1.27090,-1.64435,-0.96199,2.07301,-0.41144
-2.51667,0.92822,-1.27133,-1.64399,-0.96208,2.07335,-0.41178
-2.51782,0.92778,-1.27175,-1.64364,-0.96217,2.07367,-0.41212
-2.51897,0.92734,-1.27217,-1.64329,-0.96225,2.07399,-0.41245
-2.52012,0.92692,-1.27258,-1.64294,-0.96234,2.07431,-0.41277
-2.52127,0.92650,-1.27298,-1.64261,-0.96243,2.07462,-0.41309
-2.52242,0.92609,-1.27338,-1.64227,-0.96251,2.07493,-0.41340
-2.52357,0.92568,-1.27377,-1.64194,-0.96259,2.07523,-0.41371
-2.52472,0.92528,-1.27415,-1.64162,-0.96268,2.07552,-0.41402
-2.52587,0.92489,-1.27452,-1.64130,-0.96276,2.07581,-0.41432
-2.52702,0.92451,-1.27489,-1.64099,-0.96284,2.07610,-0.41461
-2.52817,0.92424,-1.27516,-1.64076,-0.96291,2.07630,-0.41482
-2.52932,0.92382,-1.27562,-1.64032,-0.96303,2.07661,-0.41513
-2.53047,0.92341,-1.27607,-1.63990,-0.96315,2.07691,-0.41545
-2.53162,0.92301,-1.27651,-1.63948,-0.96326,2.07721,-0.41575
-2.53277,0.92262,-1.27694,-1.63907,-0.96338,2.07750,-0.41605
-2.53392,0.92223,-1.27737,-1.63867,-0.96350,2.07779,-0.41635
-2.53507,0.92185,-1.27779,-1.63827,-0.96361,2.07807,-0.41664
-2.53622,0.92148,-1.27820,-1.63788,-0.96373,2.07835,-0.41693
-2.53736,0.92111,-1.27861,-1.63749,-0.96384,2.07862,-0.41721
-2.53851,0.92075,-1.27901,-1.63711,-0.96395,2.07889,-0.41749
-2.53966,0.92039,-1.27940,-1.63673,-0.96407,2.07915,-0.41776
-2.54081,0.92004,-1.27978,-1.63637,-0.96418,2.07941,-0.41803
-2.54196,0.91983,-1.28003,-1.63613,-0.96425,2.07957,-0.41820
-2.54311,0.91943,-1.28056,-1.63557,-0.96442,2.07987,-0.41851
-2.54426,0.91903,-1.28108,-1.63502,-0.96459,2.08017,-0.41881
-2.54541,0.91864,-1.28160,-1.63447,-0.96476,2.08046,-0.41911
-2.54656,0.91826,-1.28210,-1.63394,-0.96492,2.08074,-0.41940
-2.54771,0.91788,-1.28260,-1.63341,-0.96509,2.08102,-0.41969
-2.54886,0.91751,-1.28309,-1.63290,-0.96525,2.08129,-0.41998
-2.55001,0.91714,-1.28357,-1.63239,-0.96541,2.08157,-0.42026
-2.55116,0.91678,-1.28404,-1.63189,-0.96557,2.08183,-0.42054
-2.55231,0.91643,-1.28450,-1.63139,-0.96573,2.08209,-0.42081
-2.55346,0.91608,-1.28496,-1.63091,-0.96589,2.08235,-0.42108
-2.55461,0.91574,-1.28541,-1.63043,-0.96604,2.08261,-0.42134
-2.55576,0.91541,-1.28585,-1.62996,-0.96619,2.08285,-0.42160
-2.55691,0.91507,-1.28628,-1.62950,-0.96635,2.08310,-0.42186
-2.55806,0.91475,-1.28670,-1.62904,-0.96649,2.08334,-0.42211
-2.55921,0.91443,-1.28712,-1.62859,-0.96664,2.08358,-0.42236
-2.56036,0.91412,-1.28753,-1.62815,-0.96679,2.08381,-0.42260
-2.56151,0.91381,-1.28794,-1.62772,-0.96693,2.08404,-0.42284
-2.56266,0.91350,-1.28833,-1.62729,-0.96708,2.08427,-0.42308
-2.56381,0.91329,-1.28861,-1.62699,-0.96718,2.08443,-0.42324
-2.56496,0.91294,-1.28908,-1.62648,-0.96734,2.08469,-0.42351
-2.56611,0.91260,-1.28955,-1.62598,-0.96751,2.08494,-0.42378
-2.56726,0.91226,-1.29000,-1.62548,-0.96767,2.08519,-0.42404
-2.56841,0.91193,-1.29045,-1.62500,-0.96783,2.08543,-0.42429
-2.56956,0.91161,-1.29088,-1.62452,-0.96799,2.08568,-0.42454
-2.57071,0.91129,-1.29132,-1.62405,-0.96815,2.08591,-0.42479
-2.57186,0.91097,-1.29174,-1.62359,-0.96831,2.08615,-0.42504
-2.57301,0.91066,-1.29216,-1.62313,-0.96846,2.08638,-0.42528
-2.57415,0.91036,-1.29256,-1.62268,-0.96861,2.08660,-0.42551
-2.57530,0.91006,-1.29297,-1.62224,-0.96876,2.08682,-0.42575
-2.57645,0.90977,-1.29336,-1.62181,-0.96891,2.08704,-0.42598
-2.57760,0.90964,-1.29353,-1.62162,-0.96897,2.08713,-0.42607
-2.57875,0.90931,-1.29403,-1.62106,-0.96916,2.08738,-0.42633
-2.57990,0.90897,-1.29451,-1.62051,-0.96935,2.08763,-0.42659
-2.58105,0.90864,-1.29499,-1.61997,-0.96953,2.08787,-0.42685
-2.58220,0.90832,-1.29547,-1.61944,-0.96971,2.08811,-0.42710
-2.58335,0.90800,-1.29593,-1.61891,-0.96989,2.08835,-0.42735
-2.58450,0.90769,-1.29639,-1.61839,-0.97007,2.08858,-0.42759
-2.58565,0.90738,-1.29683,-1.61789,-0.97025,2.08881,-0.42783
-2.58680,0.90708,-1.29727,-1.61739,-0.97042,2.08903,-0.42807
-2.58795,0.90678,-1.29771,-1.61689,-0.97059,2.08925,-0.42830
-2.58910,0.90649,-1.29813,-1.61641,-0.97076,2.08947,-0.42853
-2.59025,0.90620,-1.29855,-1.61593,-0.97093,2.08968,-0.42875
-2.59140,0.90592,-1.29896,-1.61546,-0.97109,2.08989,-0.42897
-2.59255,0.90564,-1.29936,-1.61500,-0.97126,2.09010,-0.42919
-2.59370,0.90537,-1.29976,-1.61455,-0.97142,2.09030,-0.42941
-2.59485,0.90529,-1.29988,-1.61441,-0.97147,2.09036,-0.42947
-2.59600,0.90500,-1.30031,-1.61391,-0.97164,2.09057,-0.42969
-2.59715,0.90473,-1.30073,-1.61342,-0.97182,2.09078,-0.42991
-2.59830,0.90445,-1.30114,-1.61294,-0.97199,2.09098,-0.43012
-2.59945,0.90418,-1.30155,-1.61247,-0.97216,2.09118,-0.43034
-2.60060,0.90392,-1.30195,-1.61200,-0.97233,2.09138,-0.43054
-2.60175,0.90379,-1.30215,-1.61177,-0.97241,2.09148,-0.43065
-2.60290,0.90352,-1.30255,-1.61129,-0.97258,2.09167,-0.43086
-2.60405,0.90326,-1.30296,-1.61082,-0.97275,2.09187,-0.43106
-2.60520,0.90305,-1.30328,-1.61044,-0.97289,2.09202,-0.43122
-2.60635,0.90278,-1.30370,-1.60993,-0.97307,2.09222,-0.43143
-2.60750,0.90252,-1.30412,-1.60943,-0.97325,2.09242,-0.43164
-2.60865,0.90226,-1.30454,-1.60894,-0.97343,2.09261,-0.43185
-2.60980,0.90200,-1.30494,-1.60845,-0.97361,2.09280,-0.43205
-2.61095,0.90175,-1.30534,-1.60798,-0.97378,2.09299,-0.43225
-2.61209,0.90160,-1.30559,-1.60769,-0.97389,2.09310,-0.43236
-2.61324,0.90133,-1.30603,-1.60714,-0.97408,2.09330,-0.43257
-2.61439,0.90107,-1.30647,-1.60661,-0.97427,2.09349,-0.43278
-2.61554,0.90081,-1.30691,-1.60609,-0.97446,2.09368,-0.43298
-2.61669,0.90056,-1.30733,-1.60557,-0.97465,2.09387,-0.43318
-2.61784,0.90031,-1.30775,-1.60506,-0.97484,2.09406,-0.43338
-2.61899,0.90006,-1.30816,-1.60456,-0.97502,2.09424,-0.43358
-2.62014,0.89982,-1.30856,-1.60407,-0.97520,2.09442,-0.43377
-2.62129,0.89958,-1.30896,-1.60359,-0.97538,2.09460,-0.43395
-2.62244,0.89956,-1.30900,-1.60354,-0.97540,2.09461,-0.43397
-2.62359,0.89932,-1.30942,-1.60302,-0.97559,2.09479,-0.43416
-2.62474,0.89909,-1.30982,-1.60251,-0.97578,2.09496,-0.43434
-2.62589,0.89886,-1.31023,-1.60201,-0.97597,2.09513,-0.43452
-2.62704,0.89868,-1.31055,-1.60160,-0.97612,2.09526,-0.43466
-2.62819,0.89843,-1.31105,-1.60097,-0.97635,2.09545,-0.43486
-2.62934,0.89819,-1.31153,-1.60035,-0.97658,2.09563,-0.43506
-2.63049,0.89794,-1.31201,-1.59974,-0.97681,2.09581,-0.43525
-2.63164,0.89771,-1.31248,-1.59914,-0.97703,2.09599,-0.43543
-2.63279,0.89747,-1.31294,-1.59855,-0.97725,2.09616,-0.43562
-2.63394,0.89724,-1.31339,-1.59796,-0.97747,2.09633,-0.43580
-2.63509,0.89701,-1.31384,-1.59739,-0.97768,2.09650,-0.43598
-2.63624,0.89679,-1.31428,-1.59683,-0.97789,2.09667,-0.43616
-2.63739,0.89657,-1.31471,-1.59627,-0.97810,2.09683,-0.43633
-2.63854,0.89635,-1.31513,-1.59573,-0.97831,2.09699,-0.43650
-2.63969,0.89614,-1.31555,-1.59519,-0.97851,2.09715,-0.43667
-2.64084,0.89593,-1.31595,-1.59467,-0.97871,2.09730,-0.43684
-2.64199,0.89573,-1.31636,-1.59415,-0.97891,2.09746,-0.43700
-2.64314,0.89552,-1.31675,-1.59364,-0.97910,2.09761,-0.43717
-2.64429,0.89550,-1.31680,-1.59356,-0.97913,2.09763,-0.43718
-2.64544,0.89526,-1.31734,-1.59285,-0.97940,2.09780,-0.43737
-2.64659,0.89503,-1.31787,-1.59215,-0.97966,2.09797,-0.43755
-2.64774,0.89480,-1.31839,-1.59146,-0.97992,2.09814,-0.43773
-2.64888,0.89458,-1.31890,-1.59077,-0.98017,2.09831,-0.43791
-2.65003,0.89436,-1.31941,-1.59011,-0.98043,2.09847,-0.43809
-2.65118,0.89414,-1.31990,-1.58945,-0.98067,2.09863,-0.43826
-2.65233,0.89392,-1.32038,-1.58880,-0.98092,2.09879,-0.43843
-2.65348,0.89371,-1.32086,-1.58816,-0.98116,2.09895,-0.43860
-2.65463,0.89351,-1.32133,-1.58753,-0.98140,2.09910,-0.43876
-2.65578,0.89330,-1.32179,-1.58692,-0.98164,2.09925,-0.43893
-2.65693,0.89310,-1.32224,-1.58631,-0.98187,2.09940,-0.43909
-2.65808,0.89290,-1.32269,-1.58571,-0.98210,2.09955,-0.43925
-2.65923,0.89271,-1.32313,-1.58512,-0.98233,2.09970,-0.43940
-2.66038,0.89252,-1.32356,-1.58455,-0.98255,2.09984,-0.43955
-2.66153,0.89233,-1.32398,-1.58398,-0.98277,2.09998,-0.43971
-2.66268,0.89214,-1.32439,-1.58342,-0.98299,2.10012,-0.43985
-2.66383,0.89196,-1.32480,-1.58287,-0.98321,2.10025,-0.44000
-2.66498,0.89178,-1.32520,-1.58232,-0.98342,2.10039,-0.44014
-2.66613,0.89160,-1.32560,-1.58179,-0.98363,2.10052,-0.44029
-2.66728,0.89151,-1.32580,-1.58151,-0.98374,2.10059,-0.44036
-2.66843,0.89132,-1.32631,-1.58081,-0.98401,2.10073,-0.44051
-2.66958,0.89114,-1.32680,-1.58012,-0.98427,2.10086,-0.44066
-2.67073,0.89095,-1.32729,-1.57944,-0.98453,2.10100,-0.44080
-2.67188,0.89077,-1.32776,-1.57878,-0.98479,2.10113,-0.44095
-2.67303,0.89060,-1.32823,-1.57812,-0.98505,2.10126,-0.44109
-2.67418,0.89042,-1.32869,-1.57748,-0.98530,2.10139,-0.44123
-2.67533,0.89025,-1.32915,-1.57685,-0.98555,2.10152,-0.44137
-2.67648,0.89008,-1.32959,-1.57622,-0.98579,2.10165,-0.44150
-2.67763,0.88991,-1.33003,-1.57561,-0.98603,2.10177,-0.44163
-2.67878,0.88975,-1.33046,-1.57500,-0.98627,2.10189,-0.44177
-2.67993,0.88959,-1.33089,-1.57441,-0.98650,2.10201,-0.44190
-2.68108,0.88943,-1.33130,-1.57383,-0.98674,2.10213,-0.44202
-2.68223,0.88927,-1.33171,-1.57325,-0.98697,2.10225,-0.44215
-2.68338,0.88912,-1.33211,-1.57268,-0.98719,2.10236,-0.44228
-2.68453,0.88897,-1.33251,-1.57213,-0.98741,2.10248,-0.44240
-2.68567,0.88882,-1.33290,-1.57158,-0.98763,2.10259,-0.44252
-2.68682,0.88877,-1.33302,-1.57140,-0.98770,2.10262,-0.44256
-2.68797,0.88859,-1.33353,-1.57069,-0.98798,2.10276,-0.44270
-2.68912,0.88841,-1.33402,-1.57000,-0.98825,2.10289,-0.44284
-2.69027,0.88824,-1.33451,-1.56931,-0.98852,2.10302,-0.44299
-2.69142,0.88806,-1.33499,-1.56864,-0.98878,2.10315,-0.44312
-2.69257,0.88789,-1.33546,-1.56797,-0.98904,2.10327,-0.44326
-2.69372,0.88772,-1.33592,-1.56732,-0.98930,2.10340,-0.44340
-2.69487,0.88756,-1.33638,-1.56668,-0.98955,2.10352,-0.44353
-2.69602,0.88740,-1.33682,-1.56605,-0.98980,2.10364,-0.44366
-2.69717,0.88724,-1.33726,-1.56542,-0.99005,2.10376,-0.44379
-2.69832,0.88708,-1.33769,-1.56481,-0.99029,2.10388,-0.44392
-2.69947,0.88692,-1.33812,-1.56421,-0.99053,2.10399,-0.44404
-2.70062,0.88677,-1.33853,-1.56362,-0.99077,2.10411,-0.44416
-2.70177,0.88662,-1.33894,-1.56304,-0.99100,2.10422,-0.44429
-2.70292,0.88647,-1.33935,-1.56246,-0.99123,2.10433,-0.44441
-2.70407,0.88632,-1.33974,-1.56190,-0.99146,2.10444,-0.44452
-2.70522,0.88618,-1.34013,-1.56134,-0.99168,2.10455,-0.44464
-2.70637,0.88609,-1.34038,-1.56100,-0.99182,2.10461,-0.44471
-2.70752,0.88592,-1.34088,-1.56028,-0.99210,2.10474,-0.44485
-2.70867,0.88575,-1.34137,-1.55958,-0.99237,2.10487,-0.44499
-2.70982,0.88558,-1.34186,-1.55889,-0.99265,2.10499,-0.44513
-2.71097,0.88541,-1.34234,-1.55821,-0.99291,2.10512,-0.44526
-2.71212,0.88525,-1.34281,-1.55754,-0.99318,2.10524,-0.44539
-2.71327,0.88508,-1.34327,-1.55689,-0.99344,2.10536,-0.44552
-2.71442,0.88492,-1.34372,-1.55624,-0.99370,2.10548,-0.44565
-2.71557,0.88477,-1.34417,-1.55560,-0.99395,2.10559,-0.44578
-2.71672,0.88461,-1.34461,-1.55498,-0.99420,2.10571,-0.44590
-2.71787,0.88446,-1.34504,-1.55436,-0.99445,2.10582,-0.44603
-2.71902,0.88431,-1.34546,-1.55375,-0.99469,2.10593,-0.44615
-2.72017,0.88416,-1.34588,-1.55316,-0.99493,2.10604,-0.44627
-2.72132,0.88402,-1.34629,-1.55257,-0.99517,2.10615,-0.44639
-2.72246,0.88388,-1.34669,-1.55199,-0.99540,2.10625,-0.44650
-2.72361,0.88373,-1.34708,-1.55142,-0.99563,2.10636,-0.44662
-2.72476,0.88360,-1.34747,-1.55086,-0.99586,2.10646,-0.44673
-2.72591,0.88351,-1.34771,-1.55052,-0.99600,2.10653,-0.44680
-2.72706,0.88334,-1.34819,-1.54984,-0.99626,2.10665,-0.44693
-2.72821,0.88318,-1.34866,-1.54918,-0.99653,2.10677,-0.44707
-2.72936,0.88301,-1.34912,-1.54852,-0.99679,2.10689,-0.44720
-2.73051,0.88285,-1.34957,-1.54788,-0.99704,2.10701,-0.44733
-2.73166,0.88269,-1.35001,-1.54725,-0.99730,2.10713,-0.44746
-2.73281,0.88254,-1.35045,-1.54663,-0.99755,2.10725,-0.44759
-2.73396,0.88238,-1.35088,-1.54601,-0.99779,2.10736,-0.44771
-2.73511,0.88223,-1.35130,-1.54541,-0.99803,2.10747,-0.44783
-2.73626,0.88208,-1.35172,-1.54482,-0.99827,2.10758,-0.44795
-2.73741,0.88193,-1.35212,-1.54423,-0.99851,2.10769,-0.44807
-2.73856,0.88179,-1.35253,-1.54366,-0.99874,2.10780,-0.44819
-2.73971,0.88165,-1.35292,-1.54309,-0.99897,2.10790,-0.44831
-2.74086,0.88151,-1.35331,-1.54254,-0.99920,2.10801,-0.44842
-2.74201,0.88146,-1.35343,-1.54236,-0.99927,2.10804,-0.44846
-2.74316,0.88129,-1.35391,-1.54168,-0.99954,2.10817,-0.44860
-2.74431,0.88112,-1.35438,-1.54102,-0.99980,2.10829,-0.44873
-2.74546,0.88096,-1.35484,-1.54036,-1.00006,2.10841,-0.44886
-2.74661,0.88079,-1.35529,-1.53972,-1.00032,2.10853,-0.44900
-2.74776,0.88063,-1.35573,-1.53909,-1.00057,2.10865,-0.44913
-2.74891,0.88047,-1.35617,-1.53846,-1.00082,2.10877,-0.44925
-2.75006,0.88032,-1.35660,-1.53785,-1.00107,2.10888,-0.44938
-2.75121,0.88017,-1.35703,-1.53725,-1.00131,2.10900,-0.44950
-2.75236,0.88002,-1.35744,-1.53665,-1.00155,2.10911,-0.44963
-2.75351,0.87987,-1.35785,-1.53607,-1.00179,2.10922,-0.44975
-2.75466,0.87972,-1.35825,-1.53549,-1.00202,2.10933,-0.44987
-2.75581,0.87958,-1.35865,-1.53493,-1.00225,2.10943,-0.44998
-2.75696,0.87943,-1.35903,-1.53437,-1.00248,2.10954,-0.45010
-2.75811,0.87939,-1.35915,-1.53420,-1.00255,2.10957,-0.45014
-2.75926,0.87923,-1.35959,-1.53358,-1.00280,2.10969,-0.45026
-2.76040,0.87908,-1.36002,-1.53296,-1.00305,2.10980,-0.45039
-2.76155,0.87892,-1.36045,-1.53236,-1.00329,2.10991,-0.45052
-2.76270,0.87877,-1.36086,-1.53176,-1.00353,2.11003,-0.45064
-2.76385,0.87862,-1.36127,-1.53118,-1.00377,2.11014,-0.45076
-2.76500,0.87847,-1.36167,-1.53060,-1.00400,2.11024,-0.45088
-2.76615,0.87833,-1.36207,-1.53004,-1.00423,2.11035,-0.45100
-2.76730,0.87819,-1.36246,-1.52948,-1.00446,2.11046,-0.45111
-2.76845,0.87814,-1.36258,-1.52930,-1.00453,2.11049,-0.45115
-2.76960,0.87798,-1.36308,-1.52859,-1.00482,2.11061,-0.45128
-2.77075,0.87783,-1.36356,-1.52789,-1.00510,2.11072,-0.45140
-2.77190,0.87767,-1.36403,-1.52720,-1.00537,2.11084,-0.45153
-2.77305,0.87752,-1.36450,-1.52652,-1.00564,2.11095,-0.45165
-2.77420,0.87737,-1.36496,-1.52586,-1.00591,2.11106,-0.45177
-2.77535,0.87722,-1.36541,-1.52520,-1.00618,2.11117,-0.45189
-2.77650,0.87708,-1.36585,-1.52456,-1.00644,2.11127,-0.45201
-2.77765,0.87694,-1.36629,-1.52392,-1.00670,2.11138,-0.45213
-2.77880,0.87680,-1.36672,-1.52330,-1.00695,2.11148,-0.45224
-2.77995,0.87666,-1.36714,-1.52268,-1.00720,2.11158,-0.45236
-2.78110,0.87652,-1.36755,-1.52208,-1.00745,2.11169,-0.45247
-2.78225,0.87639,-1.36796,-1.52148,-1.00769,2.11179,-0.45258
-2.78340,0.87625,-1.36836,-1.52090,-1.00793,2.11188,-0.45269
-2.78455,0.87612,-1.36876,-1.52032,-1.00817,2.11198,-0.45279
-2.78570,0.87599,-1.36914,-1.51975,-1.00840,2.11207,-0.45290
-2.78685,0.87593,-1.36934,-1.51946,-1.00852,2.11212,-0.45295
-2.78800,0.87579,-1.36981,-1.51876,-1.00880,2.11222,-0.45306
-2.78915,0.87565,-1.37027,-1.51808,-1.00908,2.11233,-0.45318
-2.79030,0.87552,-1.37073,-1.51741,-1.00935,2.11242,-0.45329
-2.79145,0.87539,-1.37117,-1.51675,-1.00962,2.11252,-0.45339
-2.79260,0.87526,-1.37161,-1.51610,-1.00989,2.11262,-0.45350
-2.79375,0.87513,-1.37204,-1.51546,-1.01015,2.11271,-0.45361
-2.79490,0.87500,-1.37246,-1.51483,-1.01041,2.11281,-0.45371
-2.79605,0.87488,-1.37288,-1.51421,-1.01066,2.11290,-0.45381
-2.79719,0.87476,-1.37329,-1.51361,-1.01091,2.11299,-0.45391
-2.79834,0.87463,-1.37369,-1.51301,-1.01116,2.11308,-0.45401
-2.79949,0.87451,-1.37409,-1.51242,-1.01141,2.11317,-0.45411
-2.80064,0.87440,-1.37447,-1.51184,-1.01165,2.11325,-0.45421
-2.80179,0.87428,-1.37486,-1.51127,-1.01188,2.11334,-0.45430
-2.80294,0.87427,-1.37491,-1.51119,-1.01192,2.11335,-0.45431
-2.80409,0.87416,-1.37539,-1.51044,-1.01222,2.11343,-0.45440
-2.80524,0.87406,-1.37587,-1.50970,-1.01253,2.11351,-0.45449
-2.80639,0.87395,-1.37634,-1.50897,-1.01282,2.11358,-0.45457
-2.80754,0.87385,-1.37681,-1.50826,-1.01312,2.11366,-0.45466
-2.80869,0.87375,-1.37726,-1.50755,-1.01341,2.11374,-0.45474
-2.80984,0.87365,-1.37771,-1.50686,-1.01370,2.11381,-0.45482
-2.81099,0.87355,-1.37815,-1.50618,-1.01398,2.11388,-0.45490
-2.81214,0.87346,-1.37858,-1.50551,-1.01426,2.11395,-0.45498
-2.81329,0.87336,-1.37901,-1.50484,-1.01453,2.11403,-0.45506
-2.81444,0.87327,-1.37943,-1.50420,-1.01480,2.11410,-0.45514
-2.81559,0.87317,-1.37984,-1.50356,-1.01507,2.11417,-0.45522
-2.81674,0.87308,-1.38024,-1.50293,-1.01533,2.11423,-0.45530
-2.81789,0.87299,-1.38064,-1.50231,-1.01559,2.11430,-0.45537
-2.81904,0.87290,-1.38103,-1.50170,-1.01585,2.11437,-0.45545
-2.82019,0.87281,-1.38142,-1.50110,-1.01610,2.11443,-0.45552
-2.82134,0.87273,-1.38179,-1.50051,-1.01635,2.11450,-0.45559
-2.82249,0.87267,-1.38206,-1.50009,-1.01653,2.11454,-0.45564
-2.82364,0.87260,-1.38250,-1.49938,-1.01683,2.11459,-0.45570
-2.82479,0.87254,-1.38294,-1.49868,-1.01712,2.11464,-0.45575
-2.82594,0.87247,-1.38336,-1.49799,-1.01741,2.11469,-0.45581
-2.82709,0.87241,-1.38378,-1.49731,-1.01770,2.11474,-0.45586
-2.82824,0.87235,-1.38419,-1.49664,-1.01798,2.11479,-0.45591
-2.82939,0.87229,-1.38460,-1.49599,-1.01826,2.11483,-0.45596
-2.83054,0.87223,-1.38500,-1.49534,-1.01853,2.11488,-0.45602
-2.83169,0.87217,-1.38539,-1.49471,-1.01880,2.11492,-0.45607
-2.83284,0.87211,-1.38577,-1.49408,-1.01907,2.11497,-0.45612
-2.83398,0.87205,-1.38615,-1.49347,-1.01933,2.11501,-0.45617
-2.83513,0.87199,-1.38652,-1.49286,-1.01959,2.11506,-0.45622
-2.83628,0.87193,-1.38689,-1.49227,-1.01984,2.11510,-0.45627
-2.83743,0.87191,-1.38704,-1.49201,-1.01995,2.11512,-0.45629
-2.83858,0.87186,-1.38751,-1.49124,-1.02027,2.11516,-0.45633
-2.83973,0.87181,-1.38798,-1.49047,-1.02059,2.11519,-0.45637
-2.84088,0.87176,-1.38843,-1.48973,-1.02091,2.11523,-0.45641
-2.84203,0.87172,-1.38888,-1.48899,-1.02122,2.11527,-0.45646
-2.84318,0.87167,-1.38932,-1.48826,-1.02153,2.11530,-0.45650
-2.84433,0.87162,-1.38975,-1.48755,-1.02183,2.11534,-0.45654
-2.84548,0.87157,-1.39017,-1.48685,-1.02213,2.11538,-0.45658
-2.84663,0.87153,-1.39059,-1.48615,-1.02242,2.11541,-0.45662
-2.84778,0.87148,-1.39100,-1.48547,-1.02271,2.11545,-0.45666
-2.84893,0.87144,-1.39141,-1.48481,-1.02299,2.11548,-0.45670
-2.85008,0.87139,-1.39180,-1.48415,-1.02327,2.11552,-0.45674
-2.85123,0.87135,-1.39219,-1.48350,-1.02355,2.11555,-0.45678
-2.85238,0.87130,-1.39258,-1.48286,-1.02383,2.11559,-0.45682
-2.85353,0.87126,-1.39296,-1.48223,-1.02409,2.11562,-0.45685
-2.85468,0.87122,-1.39333,-1.48162,-1.02436,2.11565,-0.45689
-2.85583,0.87117,-1.39369,-1.48101,-1.02462,2.11569,-0.45693
-2.85698,0.87113,-1.39405,-1.48041,-1.02488,2.11572,-0.45697
-2.85813,0.87113,-1.39409,-1.48034,-1.02491,2.11572,-0.45697
-2.85928,0.87108,-1.39450,-1.47967,-1.02520,2.11575,-0.45701
-2.86043,0.87104,-1.39490,-1.47901,-1.02548,2.11579,-0.45704
-2.86158,0.87100,-1.39529,-1.47835,-1.02576,2.11582,-0.45708
-2.86273,0.87096,-1.39567,-1.47771,-1.02604,2.11585,-0.45712
-2.86388,0.87092,-1.39605,-1.47708,-1.02631,2.11588,-0.45715
-2.86503,0.87088,-1.39642,-1.47646,-1.02658,2.11591,-0.45719
-2.86618,0.87084,-1.39679,-1.47584,-1.02684,2.11594,-0.45722
-2.86733,0.87080,-1.39715,-1.47524,-1.02710,2.11597,-0.45726
-2.86848,0.87079,-1.39730,-1.47499,-1.02721,2.11598,-0.45727
-2.86963,0.87075,-1.39771,-1.47430,-1.02750,2.11601,-0.45730
-2.87077,0.87072,-1.39812,-1.47361,-1.02780,2.11603,-0.45733
-2.87192,0.87069,-1.39851,-1.47294,-1.02808,2.11606,-0.45736
-2.87307,0.87066,-1.39891,-1.47228,-1.02837,2.11608,-0.45738
-2.87422,0.87063,-1.39929,-1.47163,-1.02865,2.11611,-0.45741
-2.87537,0.87060,-1.39967,-1.47099,-1.02892,2.11613,-0.45744
-2.87652,0.87057,-1.40004,-1.47036,-1.02920,2.11616,-0.45747
-2.87767,0.87054,-1.40041,-1.46974,-1.02946,2.11618,-0.45750
-2.87882,0.87051,-1.40077,-1.46913,-1.02973,2.11620,-0.45753
-2.87997,0.87048,-1.40110,-1.46858,-1.02997,2.11623,-0.45755
-2.88112,0.87044,-1.40154,-1.46784,-1.03028,2.11626,-0.45759
-2.88227,0.87039,-1.40197,-1.46712,-1.03058,2.11629,-0.45762
-2.88342,0.87035,-1.40240,-1.46641,-1.03089,2.11632,-0.45766
-2.88457,0.87031,-1.40282,-1.46571,-1.03118,2.11635,-0.45770
-2.88572,0.87027,-1.40323,-1.46502,-1.03148,2.11638,-0.45773
-2.88687,0.87023,-1.40363,-1.46434,-1.03177,2.11641,-0.45777
-2.88802,0.87019,-1.40403,-1.46368,-1.03205,2.11644,-0.45780
-2.88917,0.87015,-1.40443,-1.46302,-1.03233,2.11647,-0.45784
-2.89032,0.87011,-1.40481,-1.46238,-1.03261,2.11651,-0.45787
-2.89147,0.87007,-1.40519,-1.46174,-1.03288,2.11653,-0.45791
-2.89262,0.87003,-1.40556,-1.46112,-1.03315,2.11656,-0.45794
-2.89377,0.87000,-1.40593,-1.46050,-1.03342,2.11659,-0.45797
-2.89492,0.86996,-1.40629,-1.45990,-1.03368,2.11662,-0.45801
-2.89607,0.86995,-1.40641,-1.45969,-1.03377,2.11663,-0.45802
-2.89722,0.86990,-1.40694,-1.45882,-1.03413,2.11667,-0.45806
-2.89837,0.86985,-1.40746,-1.45797,-1.03449,2.11671,-0.45810
-2.89952,0.86980,-1.40796,-1.45713,-1.03484,2.11674,-0.45814
-2.90067,0.86975,-1.40846,-1.45630,-1.03519,2.11678,-0.45818
-2.90182,0.86971,-1.40895,-1.45549,-1.03553,2.11681,-0.45822
-2.90297,0.86966,-1.40944,-1.45469,-1.03587,2.11685,-0.45826
-2.90412,0.86962,-1.40991,-1.45390,-1.03620,2.11688,-0.45830
-2.90527,0.86957,-1.41038,-1.45312,-1.03653,2.11692,-0.45834
-2.90642,0.86952,-1.41084,-1.45236,-1.03685,2.11695,-0.45838
-2.90756,0.86948,-1.41129,-1.45161,-1.03717,2.11699,-0.45842
-2.90871,0.86943,-1.41173,-1.45087,-1.03748,2.11702,-0.45846
-2.90986,0.86939,-1.41217,-1.45014,-1.03779,2.11705,-0.45850
-2.91101,0.86935,-1.41260,-1.44943,-1.03810,2.11709,-0.45853
-2.91216,0.86930,-1.41302,-1.44872,-1.03840,2.11712,-0.45857
-2.91331,0.86926,-1.41343,-1.44803,-1.03870,2.11715,-0.45861
-2.91446,0.86922,-1.41384,-1.44735,-1.03899,2.11718,-0.45865
-2.91561,0.86918,-1.41424,-1.44668,-1.03928,2.11722,-0.45868
-2.91676,0.86913,-1.41464,-1.44601,-1.03957,2.11725,-0.45872
-2.91791,0.86909,-1.41503,-1.44536,-1.03985,2.11728,-0.45876
-2.91906,0.86905,-1.41541,-1.44473,-1.04012,2.11731,-0.45879
-2.92021,0.86901,-1.41578,-1.44410,-1.04040,2.11734,-0.45883
-2.92136,0.86897,-1.41615,-1.44348,-1.04067,2.11737,-0.45887
-2.92251,0.86893,-1.41651,-1.44287,-1.04093,2.11740,-0.45890
-2.92366,0.86891,-1.41667,-1.44261,-1.04104,2.11742,-0.45891
-2.92481,0.86887,-1.41710,-1.44188,-1.04135,2.11744,-0.45895
-2.92596,0.86884,-1.41753,-1.44116,-1.04166,2.11747,-0.45898
-2.92711,0.86880,-1.41795,-1.44046,-1.04196,2.11750,-0.45902
-2.92826,0.86876,-1.41836,-1.43976,-1.04226,2.11753,-0.45905
-2.92941,0.86872,-1.41877,-1.43908,-1.04256,2.11756,-0.45908
-2.93056,0.86869,-1.41917,-1.43840,-1.04285,2.11759,-0.45912
-2.93171,0.86865,-1.41956,-1.43774,-1.04314,2.11762,-0.45915
-2.93286,0.86861,-1.41995,-1.43709,-1.04342,2.11765,-0.45918
-2.93401,0.86858,-1.42033,-1.43645,-1.04370,2.11767,-0.45921
-2.93516,0.86854,-1.42070,-1.43582,-1.04397,2.11770,-0.45925
-2.93631,0.86850,-1.42107,-1.43519,-1.04424,2.11773,-0.45928
-2.93746,0.86847,-1.42143,-1.43458,-1.04451,2.11776,-0.45931
-2.93861,0.86845,-1.42158,-1.43433,-1.04462,2.11777,-0.45932
-2.93976,0.86843,-1.42202,-1.43358,-1.04494,2.11779,-0.45935
-2.94091,0.86840,-1.42245,-1.43284,-1.04526,2.11781,-0.45937
-2.94206,0.86837,-1.42288,-1.43211,-1.04557,2.11783,-0.45940
-2.94321,0.86834,-1.42330,-1.43140,-1.04588,2.11785,-0.45942
-2.94436,0.86832,-1.42371,-1.43069,-1.04618,2.11787,-0.45945
-2.94550,0.86829,-1.42412,-1.43000,-1.04648,2.11789,-0.45947
-2.94665,0.86826,-1.42451,-1.42932,-1.04678,2.11792,-0.45950
-2.94780,0.86823,-1.42491,-1.42865,-1.04707,2.11794,-0.45952
-2.94895,0.86821,-1.42529,-1.42799,-1.04736,2.11796,-0.45955
-2.95010,0.86818,-1.42567,-1.42734,-1.04764,2.11798,-0.45957
-2.95125,0.86815,-1.42604,-1.42670,-1.04792,2.11800,-0.45960
-2.95240,0.86813,-1.42641,-1.42608,-1.04819,2.11802,-0.45962
-2.95355,0.86810,-1.42677,-1.42546,-1.04847,2.11804,-0.45965
-2.95470,0.86808,-1.42703,-1.42502,-1.04866,2.11806,-0.45967
-2.95585,0.86806,-1.42744,-1.42431,-1.04896,2.11807,-0.45968
-2.95700,0.86804,-1.42784,-1.42361,-1.04927,2.11809,-0.45970
-2.95815,0.86802,-1.42824,-1.42293,-1.04957,2.11810,-0.45972
-2.95930,0.86800,-1.42863,-1.42225,-1.04986,2.11812,-0.45974
-2.96045,0.86798,-1.42901,-1.42159,-1.05015,2.11813,-0.45976
-2.96160,0.86796,-1.42939,-1.42093,-1.05044,2.11815,-0.45978
-2.96275,0.86794,-1.42976,-1.42029,-1.05072,2.11817,-0.45980
-2.96390,0.86793,-1.43013,-1.41965,-1.05100,2.11818,-0.45982
-2.96505,0.86791,-1.43049,-1.41903,-1.05127,2.11820,-0.45984
-2.96620,0.86789,-1.43084,-1.41842,-1.05154,2.11821,-0.45986
-2.96735,0.86789,-1.43088,-1.41834,-1.05157,2.11821,-0.45985
-2.96850,0.86791,-1.43128,-1.41762,-1.05189,2.11819,-0.45984
-2.96965,0.86794,-1.43167,-1.41690,-1.05221,2.11818,-0.45982
-2.97080,0.86796,-1.43206,-1.41620,-1.05252,2.11817,-0.45981
-2.97195,0.86798,-1.43243,-1.41551,-1.05282,2.11815,-0.45979
-2.97310,0.86800,-1.43281,-1.41483,-1.05312,2.11814,-0.45978
-2.97425,0.86802,-1.43317,-1.41416,-1.05342,2.11812,-0.45977
-2.97540,0.86804,-1.43353,-1.41350,-1.05371,2.11811,-0.45975
-2.97655,0.86806,-1.43389,-1.41285,-1.05400,2.11810,-0.45974
-2.97770,0.86808,-1.43423,-1.41222,-1.05428,2.11809,-0.45973
-2.97885,0.86810,-1.43458,-1.41159,-1.05456,2.11808,-0.45972
-2.98000,0.86811,-1.43491,-1.41097,-1.05484,2.11807,-0.45971
-2.98115,0.86812,-1.43498,-1.41084,-1.05490,2.11806,-0.45971
-2.98229,0.86815,-1.43533,-1.41020,-1.05518,2.11805,-0.45969
-2.98344,0.86817,-1.43567,-1.40957,-1.05547,2.11803,-0.45967
-2.98459,0.86820,-1.43600,-1.40895,-1.05574,2.11801,-0.45965
-2.98574,0.86822,-1.43617,-1.40864,-1.05588,2.11800,-0.45964
-2.98689,0.86827,-1.43652,-1.40796,-1.05619,2.11796,-0.45960
-2.98804,0.86832,-1.43687,-1.40730,-1.05648,2.11793,-0.45957
-2.98919,0.86837,-1.43721,-1.40664,-1.05678,2.11790,-0.45953
-2.99034,0.86841,-1.43755,-1.40600,-1.05707,2.11786,-0.45950
-2.99149,0.86846,-1.43788,-1.40537,-1.05735,2.11783,-0.45947
-2.99264,0.86850,-1.43821,-1.40474,-1.05763,2.11780,-0.45943
-2.99379,0.86855,-1.43853,-1.40412,-1.05792,2.11777,-0.45940
-2.99494,0.86865,-1.43886,-1.40345,-1.05822,2.11770,-0.45932
-2.99609,0.86875,-1.43918,-1.40279,-1.05852,2.11763,-0.45925
-2.99724,0.86884,-1.43949,-1.40214,-1.05882,2.11757,-0.45918
-2.99839,0.86893,-1.43981,-1.40150,-1.05911,2.11750,-0.45911
-2.99954,0.86902,-1.44011,-1.40087,-1.05940,2.11744,-0.45904
-3.00069,0.86911,-1.44041,-1.40025,-1.05969,2.11738,-0.45898
-3.00184,0.86920,-1.44071,-1.39964,-1.05996,2.11732,-0.45891
-3.00299,0.86924,-1.44086,-1.39934,-1.06011,2.11729,-0.45888
-3.00414,0.86938,-1.44115,-1.39869,-1.06040,2.11719,-0.45877
-3.00529,0.86951,-1.44144,-1.39806,-1.06070,2.11710,-0.45867
-3.00644,0.86963,-1.44172,-1.39743,-1.06099,2.11701,-0.45858
-3.00759,0.86976,-1.44200,-1.39682,-1.06128,2.11692,-0.45848
-3.00874,0.86988,-1.44228,-1.39621,-1.06156,2.11684,-0.45839
-3.00989,0.87000,-1.44255,-1.39562,-1.06183,2.11675,-0.45830
-3.01104,0.87006,-1.44265,-1.39538,-1.06195,2.11671,-0.45825
-3.01219,0.87025,-1.44290,-1.39477,-1.06224,2.11658,-0.45811
-3.01334,0.87043,-1.44314,-1.39417,-1.06253,2.11645,-0.45796
-3.01449,0.87061,-1.44337,-1.39358,-1.06281,2.11632,-0.45782
-3.01564,0.87079,-1.44361,-1.39299,-1.06309,2.11619,-0.45768
-3.01679,0.87097,-1.44383,-1.39242,-1.06336,2.11607,-0.45755
-3.01794,0.87114,-1.44406,-1.39186,-1.06363,2.11594,-0.45741
-3.01908,0.87123,-1.44417,-1.39158,-1.06377,2.11588,-0.45734
-3.02023,0.87145,-1.44438,-1.39101,-1.06405,2.11572,-0.45717
-3.02138,0.87167,-1.44458,-1.39044,-1.06432,2.11557,-0.45700
-3.02253,0.87189,-1.44478,-1.38989,-1.06459,2.11541,-0.45683
-3.02368,0.87210,-1.44497,-1.38934,-1.06486,2.11526,-0.45667
-3.02483,0.87230,-1.44516,-1.38881,-1.06512,2.11512,-0.45651
-3.02598,0.87244,-1.44527,-1.38849,-1.06528,2.11502,-0.45641
-3.02713,0.87278,-1.44541,-1.38792,-1.06557,2.11478,-0.45614
-3.02828,0.87311,-1.44555,-1.38737,-1.06585,2.11454,-0.45588
-3.02943,0.87344,-1.44569,-1.38682,-1.06613,2.11430,-0.45562
-3.03058,0.87376,-1.44582,-1.38628,-1.06641,2.11407,-0.45537
-3.03173,0.87408,-1.44595,-1.38576,-1.06668,2.11385,-0.45512
-3.03288,0.87439,-1.44608,-1.38524,-1.06694,2.11363,-0.45488
-3.03403,0.87470,-1.44621,-1.38472,-1.06721,2.11341,-0.45464
-3.03518,0.87500,-1.44634,-1.38422,-1.06746,2.11319,-0.45441
-3.03633,0.87529,-1.44647,-1.38373,-1.06772,2.11298,-0.45418
-3.03748,0.87558,-1.44659,-1.38324,-1.06797,2.11278,-0.45395
-3.03863,0.87586,-1.44671,-1.38276,-1.06821,2.11257,-0.45373
-3.03978,0.87614,-1.44683,-1.38229,-1.06846,2.11237,-0.45352
-3.04093,0.87641,-1.44695,-1.38183,-1.06869,2.11218,-0.45330
-3.04208,0.87668,-1.44707,-1.38137,-1.06893,2.11199,-0.45310
-3.04323,0.87675,-1.44709,-1.38128,-1.06898,2.11194,-0.45304
-3.04438,0.87714,-1.44715,-1.38080,-1.06923,2.11166,-0.45273
-3.04553,0.87753,-1.44721,-1.38034,-1.06948,2.11138,-0.45243
-3.04668,0.87792,-1.44727,-1.37988,-1.06973,2.11110,-0.45213
-3.04783,0.87829,-1.44732,-1.37943,-1.06997,2.11083,-0.45184
-3.04898,0.87866,-1.44738,-1.37899,-1.07021,2.11057,-0.45155
-3.05013,0.87903,-1.44744,-1.37856,-1.07044,2.11031,-0.45126
-3.05128,0.87938,-1.44750,-1.37813,-1.07068,2.11005,-0.45099
-3.05243,0.87973,-1.44756,-1.37771,-1.07090,2.10980,-0.45071
-3.05358,0.88008,-1.44761,-1.37729,-1.07113,2.10955,-0.45045
-3.05473,0.88041,-1.44767,-1.37689,-1.07135,2.10931,-0.45018
-3.05587,0.88074,-1.44772,-1.37649,-1.07156,2.10907,-0.44993
-3.05702,0.88107,-1.44778,-1.37609,-1.07177,2.10884,-0.44967
-3.05817,0.88139,-1.44783,-1.37571,-1.07198,2.10861,-0.44942
-3.05932,0.88170,-1.44789,-1.37532,-1.07219,2.10838,-0.44918
-3.06047,0.88187,-1.44791,-1.37514,-1.07229,2.10826,-0.44905
-3.06162,0.88230,-1.44789,-1.37478,-1.07250,2.10795,-0.44871
-3.06277,0.88272,-1.44787,-1.37442,-1.07271,2.10765,-0.44839
-3.06392,0.88313,-1.44786,-1.37407,-1.07291,2.10735,-0.44806
-3.06507,0.88354,-1.44785,-1.37373,-1.07311,2.10706,-0.44775
-3.06622,0.88394,-1.44783,-1.37339,-1.07331,2.10677,-0.44744
-3.06737,0.88433,-1.44782,-1.37305,-1.07350,2.10649,-0.44713
-3.06852,0.88472,-1.44781,-1.37273,-1.07369,2.10621,-0.44683
-3.06967,0.88509,-1.44780,-1.37240,-1.07388,2.10593,-0.44654
-3.07082,0.88547,-1.44779,-1.37209,-1.07406,2.10567,-0.44625
-3.07197,0.88583,-1.44778,-1.37178,-1.07424,2.10540,-0.44596
-3.07312,0.88619,-1.44777,-1.37147,-1.07442,2.10514,-0.44568
-3.07427,0.88654,-1.44776,-1.37117,-1.07459,2.10489,-0.44541
-3.07542,0.88689,-1.44775,-1.37087,-1.07476,2.10464,-0.44514
-3.07657,0.88693,-1.44774,-1.37085,-1.07478,2.10461,-0.44511
-3.07772,0.88738,-1.44765,-1.37060,-1.07494,2.10428,-0.44476
-3.07887,0.88783,-1.44756,-1.37036,-1.07510,2.10396,-0.44441
-3.08002,0.88826,-1.44748,-1.37012,-1.07526,2.10364,-0.44407
-3.08117,0.88869,-1.44739,-1.36989,-1.07542,2.10334,-0.44374
-3.08232,0.88911,-1.44731,-1.36966,-1.07557,2.10303,-0.44341
-3.08347,0.88952,-1.44723,-1.36943,-1.07572,2.10273,-0.44309
-3.08462,0.88993,-1.44715,-1.36921,-1.07586,2.10244,-0.44278
-3.08577,0.89033,-1.44707,-1.36899,-1.07601,2.10215,-0.44247
-3.08692,0.89072,-1.44699,-1.36878,-1.07615,2.10186,-0.44216
-3.08807,0.89110,-1.44692,-1.36857,-1.07628,2.10159,-0.44186
-3.08922,0.89148,-1.44685,-1.36836,-1.07642,2.10131,-0.44157
-3.09037,0.89186,-1.44677,-1.36816,-1.07655,2.10103,-0.44128
-3.09152,0.89231,-1.44663,-1.36800,-1.07668,2.10071,-0.44093
-3.09266,0.89275,-1.44650,-1.36785,-1.07680,2.10039,-0.44059
-3.09381,0.89318,-1.44637,-1.36770,-1.07692,2.10008,-0.44026
-3.09496,0.89360,-1.44624,-1.36755,-1.07703,2.09977,-0.43993
-3.09611,0.89402,-1.44612,-1.36740,-1.07715,2.09947,-0.43960
-3.09726,0.89443,-1.44599,-1.36726,-1.07726,2.09917,-0.43929
-3.09841,0.89483,-1.44587,-1.36711,-1.07737,2.09888,-0.43898
-3.09956,0.89522,-1.44576,-1.36697,-1.07748,2.09859,-0.43867
-3.10071,0.89561,-1.44564,-1.36684,-1.07758,2.09831,-0.43837
-3.10186,0.89581,-1.44558,-1.36677,-1.07763,2.09817,-0.43822
-3.10301,0.89624,-1.44542,-1.36668,-1.07773,2.09785,-0.43788
-3.10416,0.89666,-1.44526,-1.36659,-1.07782,2.09755,-0.43756
-3.10531,0.89707,-1.44511,-1.36650,-1.07791,2.09725,-0.43724
-3.10646,0.89748,-1.44495,-1.36641,-1.07799,2.09695,-0.43692
-3.10761,0.89788,-1.44480,-1.36632,-1.07808,2.09666,-0.43661
-3.10876,0.89827,-1.44466,-1.36624,-1.07816,2.09637,-0.43631
-3.10991,0.89836,-1.44463,-1.36622,-1.07818,2.09631,-0.43625
-3.11106,0.89878,-1.44445,-1.36617,-1.07825,2.09600,-0.43592
-3.11221,0.89919,-1.44427,-1.36612,-1.07832,2.09570,-0.43560
-3.11336,0.89960,-1.44410,-1.36606,-1.07839,2.09540,-0.43528
-3.11451,0.90000,-1.44393,-1.36601,-1.07846,2.09511,-0.43497
-3.11566,0.90040,-1.44376,-1.36597,-1.07853,2.09482,-0.43466
-3.11681,0.90083,-1.44356,-1.36595,-1.07859,2.09451,-0.43433
-3.11796,0.90125,-1.44336,-1.36593,-1.07865,2.09420,-0.43401
-3.11911,0.90166,-1.44317,-1.36591,-1.07870,2.09390,-0.43369
-3.12026,0.90206,-1.44298,-1.36590,-1.07876,2.09361,-0.43338
-3.12141,0.90246,-1.44280,-1.36588,-1.07881,2.09331,-0.43307
-3.12256,0.90254,-1.44276,-1.36588,-1.07882,2.09326,-0.43301
-3.12371,0.90296,-1.44255,-1.36588,-1.07887,2.09295,-0.43269
-3.12486,0.90337,-1.44235,-1.36589,-1.07891,2.09265,-0.43237
-3.12601,0.90377,-1.44215,-1.36589,-1.07896,2.09236,-0.43206
-3.12716,0.90401,-1.44203,-1.36590,-1.07898,2.09218,-0.43188
-3.12831,0.90443,-1.44181,-1.36592,-1.07902,2.09188,-0.43156
-3.12946,0.90483,-1.44160,-1.36594,-1.07906,2.09158,-0.43124
-3.13060,0.90524,-1.44139,-1.36597,-1.07909,2.09129,-0.43093
-3.13175,0.90548,-1.44125,-1.36600,-1.07911,2.09111,-0.43074
-3.13290,0.90596,-1.44090,-1.36620,-1.07908,2.09076,-0.43037
-3.13405,0.90643,-1.44056,-1.36640,-1.07906,2.09042,-0.43001
-3.13520,0.90689,-1.44022,-1.36660,-1.07903,2.09008,-0.42966
-3.13635,0.90734,-1.43989,-1.36679,-1.07900,2.08975,-0.42931
-3.13750,0.90778,-1.43956,-1.36698,-1.07897,2.08942,-0.42897
-3.13865,0.90822,-1.43924,-1.36717,-1.07895,2.08910,-0.42863
-3.13980,0.90865,-1.43893,-1.36736,-1.07892,2.08879,-0.42830
-3.14095,0.90907,-1.43862,-1.36754,-1.07889,2.08848,-0.42798
-3.14210,0.90949,-1.43831,-1.36772,-1.07886,2.08817,-0.42766
-3.14325,0.90990,-1.43801,-1.36790,-1.07883,2.08787,-0.42734
-3.14440,0.91030,-1.43772,-1.36807,-1.07881,2.08757,-0.42703
-3.14555,0.91070,-1.43743,-1.36824,-1.07878,2.08728,-0.42673
-3.14670,0.91109,-1.43715,-1.36841,-1.07875,2.08700,-0.42643
-3.14785,0.91132,-1.43698,-1.36852,-1.07873,2.08682,-0.42625
-3.14900,0.91173,-1.43668,-1.36870,-1.07870,2.08653,-0.42594
-3.15015,0.91213,-1.43638,-1.36888,-1.07866,2.08623,-0.42563
-3.15130,0.91252,-1.43609,-1.36906,-1.07863,2.08595,-0.42533
-3.15245,0.91290,-1.43581,-1.36924,-1.07860,2.08566,-0.42503
-3.15360,0.91294,-1.43578,-1.36926,-1.07859,2.08563,-0.42500
-3.15475,0.91334,-1.43547,-1.36947,-1.07855,2.08534,-0.42470
-3.15590,0.91373,-1.43516,-1.36968,-1.07850,2.08505,-0.42439
-3.15705,0.91412,-1.43486,-1.36988,-1.07846,2.08477,-0.42410
-3.15820,0.91443,-1.43462,-1.37006,-1.07842,2.08454,-0.42386
-3.15935,0.91485,-1.43424,-1.37036,-1.07834,2.08423,-0.42354
-3.16050,0.91526,-1.43388,-1.37066,-1.07826,2.08393,-0.42322
-3.16165,0.91567,-1.43351,-1.37095,-1.07818,2.08363,-0.42291
-3.16280,0.91607,-1.43316,-1.37124,-1.07810,2.08333,-0.42260
-3.16395,0.91646,-1.43281,-1.37152,-1.07802,2.08304,-0.42230
-3.16510,0.91685,-1.43247,-1.37180,-1.07794,2.08276,-0.42200
-3.16625,0.91723,-1.43213,-1.37208,-1.07787,2.08248,-0.42171
-3.16739,0.91760,-1.43180,-1.37235,-1.07779,2.08220,-0.42142
-3.16854,0.91797,-1.43147,-1.37262,-1.07772,2.08193,-0.42114
-3.16969,0.91816,-1.43131,-1.37275,-1.07768,2.08179,-0.42100
-3.17084,0.91853,-1.43095,-1.37307,-1.07758,2.08152,-0.42071
-3.17199,0.91890,-1.43060,-1.37338,-1.07749,2.08124,-0.42043
-3.17314,0.91926,-1.43026,-1.37369,-1.07740,2.08098,-0.42015
-3.17429,0.91962,-1.42992,-1.37399,-1.07731,2.08071,-0.41988
-3.17544,0.91969,-1.42985,-1.37406,-1.07729,2.08066,-0.41982
-3.17659,0.92008,-1.42945,-1.37443,-1.07717,2.08037,-0.41953
-3.17774,0.92046,-1.42906,-1.37480,-1.07706,2.08009,-0.41923
-3.17889,0.92084,-1.42868,-1.37515,-1.07695,2.07981,-0.41895
-3.18004,0.92121,-1.42830,-1.37551,-1.07683,2.07954,-0.41866
-3.18119,0.92157,-1.42793,-1.37586,-1.07672,2.07927,-0.41838
-3.18234,0.92193,-1.42757,-1.37620,-1.07661,2.07900,-0.41811
-3.18349,0.92229,-1.42721,-1.37654,-1.07651,2.07874,-0.41784
-3.18464,0.92263,-1.42686,-1.37687,-1.07640,2.07848,-0.41757
-3.18579,0.92278,-1.42672,-1.37702,-1.07635,2.07838,-0.41746
-3.18694,0.92315,-1.42627,-1.37748,-1.07620,2.07810,-0.41718
-3.18809,0.92352,-1.42584,-1.37794,-1.07604,2.07783,-0.41689
-3.18924,0.92388,-1.42541,-1.37839,-1.07589,2.07756,-0.41662
-3.19039,0.92424,-1.42499,-1.37883,-1.07574,2.07729,-0.41634
-3.19154,0.92459,-1.42458,-1.37926,-1.07559,2.07703,-0.41607
-3.19269,0.92494,-1.42418,-1.37969,-1.07545,2.07677,-0.41581
-3.19384,0.92528,-1.42378,-1.38011,-1.07530,2.07652,-0.41555
-3.19499,0.92561,-1.42339,-1.38053,-1.07516,2.07627,-0.41529
-3.19614,0.92594,-1.42300,-1.38094,-1.07502,2.07603,-0.41504
-3.19729,0.92627,-1.42263,-1.38134,-1.07488,2.07579,-0.41479
-3.19844,0.92659,-1.42225,-1.38173,-1.07474,2.07555,-0.41454
-3.19959,0.92672,-1.42209,-1.38191,-1.07468,2.07545,-0.41445
-3.20074,0.92707,-1.42160,-1.38248,-1.07448,2.07519,-0.41418
-3.20189,0.92741,-1.42112,-1.38304,-1.07428,2.07494,-0.41392
-3.20304,0.92775,-1.42065,-1.38359,-1.07408,2.07469,-0.41366
-3.20418,0.92809,-1.42018,-1.38413,-1.07389,2.07444,-0.41340
-3.20533,0.92841,-1.41973,-1.38467,-1.07369,2.07419,-0.41315
-3.20648,0.92874,-1.41928,-1.38520,-1.07350,2.07395,-0.41290
-3.20763,0.92906,-1.41883,-1.38571,-1.07331,2.07372,-0.41266
-3.20878,0.92937,-1.41840,-1.38622,-1.07313,2.07348,-0.41242
-3.20993,0.92968,-1.41797,-1.38673,-1.07295,2.07325,-0.41219
-3.21108,0.92998,-1.41755,-1.38722,-1.07277,2.07303,-0.41195
-3.21223,0.93028,-1.41714,-1.38770,-1.07259,2.07280,-0.41172
-3.21338,0.93058,-1.41673,-1.38818,-1.07241,2.07258,-0.41150
-3.21453,0.93087,-1.41633,-1.38865,-1.07224,2.07237,-0.41128
-3.21568,0.93115,-1.41594,-1.38912,-1.07207,2.07216,-0.41106
-3.21683,0.93143,-1.41554,-1.38959,-1.07189,2.07194,-0.41084
-3.21798,0.93174,-1.41505,-1.39021,-1.07166,2.07172,-0.41061
-3.21913,0.93203,-1.41456,-1.39082,-1.07143,2.07150,-0.41039
-3.22028,0.93232,-1.41409,-1.39142,-1.07120,2.07128,-0.41016
-3.22143,0.93261,-1.41362,-1.39202,-1.07098,2.07107,-0.40994
-3.22258,0.93289,-1.41315,-1.39260,-1.07076,2.07086,-0.40973
-3.22373,0.93317,-1.41270,-1.39317,-1.07054,2.07065,-0.40951
-3.22488,0.93345,-1.41225,-1.39374,-1.07033,2.07044,-0.40930
-3.22603,0.93372,-1.41182,-1.39429,-1.07012,2.07024,-0.40910
-3.22718,0.93398,-1.41138,-1.39484,-1.06991,2.07004,-0.40889
-3.22833,0.93425,-1.41096,-1.39538,-1.06970,2.06984,-0.40869
-3.22948,0.93450,-1.41054,-1.39591,-1.06950,2.06965,-0.40850
-3.23063,0.93476,-1.41013,-1.39643,-1.06930,2.06946,-0.40830
-3.23178,0.93501,-1.40973,-1.39694,-1.06910,2.06927,-0.40811
-3.23293,0.93526,-1.40933,-1.39744,-1.06891,2.06909,-0.40792
-3.23408,0.93533,-1.40921,-1.39761,-1.06885,2.06903,-0.40786
-3.23523,0.93559,-1.40872,-1.39825,-1.06860,2.06884,-0.40766
-3.23638,0.93585,-1.40825,-1.39887,-1.06836,2.06865,-0.40747
-3.23753,0.93610,-1.40778,-1.39949,-1.06812,2.06846,-0.40728
-3.23868,0.93634,-1.40732,-1.40010,-1.06788,2.06827,-0.40709
-3.23983,0.93659,-1.40687,-1.40070,-1.06765,2.06809,-0.40690
-3.24097,0.93683,-1.40643,-1.40129,-1.06742,2.06791,-0.40672
-3.24212,0.93707,-1.40599,-1.40187,-1.06719,2.06773,-0.40654
-3.24327,0.93730,-1.40557,-1.40244,-1.06697,2.06756,-0.40636
-3.24442,0.93753,-1.40514,-1.40300,-1.06675,2.06738,-0.40618
-3.24557,0.93776,-1.40473,-1.40355,-1.06653,2.06721,-0.40601
-3.24672,0.93798,-1.40432,-1.40410,-1.06632,2.06705,-0.40584
-3.24787,0.93820,-1.40392,-1.40463,-1.06611,2.06688,-0.40567
-3.24902,0.93833,-1.40368,-1.40496,-1.06598,2.06678,-0.40557
-3.25017,0.93855,-1.40321,-1.40560,-1.06573,2.06661,-0.40539
-3.25132,0.93878,-1.40275,-1.40623,-1.06548,2.06645,-0.40523
-3.25247,0.93899,-1.40230,-1.40684,-1.06524,2.06628,-0.40506
-3.25362,0.93921,-1.40186,-1.40745,-1.06500,2.06612,-0.40489
-3.25477,0.93942,-1.40143,-1.40805,-1.06476,2.06596,-0.40473
-3.25592,0.93963,-1.40100,-1.40864,-1.06452,2.06581,-0.40457
-3.25707,0.93983,-1.40058,-1.40922,-1.06429,2.06565,-0.40441
-3.25822,0.94004,-1.40017,-1.40979,-1.06407,2.06550,-0.40426
-3.25937,0.94024,-1.39976,-1.41035,-1.06384,2.06535,-0.40410
-3.26052,0.94043,-1.39936,-1.41090,-1.06362,2.06520,-0.40395
-3.26167,0.94053,-1.39916,-1.41118,-1.06351,2.06513,-0.40388
-3.26282,0.94072,-1.39874,-1.41178,-1.06327,2.06499,-0.40373
-3.26397,0.94090,-1.39832,-1.41237,-1.06303,2.06485,-0.40359
-3.26512,0.94109,-1.39791,-1.41295,-1.06279,2.06471,-0.40345
-3.26627,0.94127,-1.39750,-1.41352,-1.06256,2.06457,-0.40331
-3.26742,0.94144,-1.39711,-1.41409,-1.06233,2.06444,-0.40318
-3.26857,0.94150,-1.39698,-1.41426,-1.06226,2.06440,-0.40314
-3.26972,0.94167,-1.39654,-1.41491,-1.06200,2.06426,-0.40300
-3.27087,0.94185,-1.39610,-1.41554,-1.06175,2.06413,-0.40287
-3.27202,0.94202,-1.39567,-1.41616,-1.06150,2.06400,-0.40273
-3.27317,0.94219,-1.39525,-1.41677,-1.06125,2.06387,-0.40260
-3.27432,0.94236,-1.39484,-1.41737,-1.06101,2.06375,-0.40247
-3.27547,0.94252,-1.39443,-1.41796,-1.06077,2.06362,-0.40235
-3.27662,0.94268,-1.39403,-1.41854,-1.06053,2.06350,-0.40222
-3.27777,0.94284,-1.39363,-1.41911,-1.06029,2.06338,-0.40210
-3.27891,0.94287,-1.39355,-1.41924,-1.06024,2.06336,-0.40208
-3.28006,0.94301,-1.39310,-1.41992,-1.05996,2.06325,-0.40197
-3.28121,0.94314,-1.39267,-1.42058,-1.05969,2.06315,-0.40187
-3.28236,0.94327,-1.39224,-1.42124,-1.05942,2.06305,-0.40177
-3.28351,0.94340,-1.39181,-1.42188,-1.05916,2.06295,-0.40167
-3.28466,0.94353,-1.39140,-1.42252,-1.05889,2.06286,-0.40157
-3.28581,0.94365,-1.39099,-1.42314,-1.05864,2.06276,-0.40147
-3.28696,0.94378,-1.39058,-1.42375,-1.05838,2.06267,-0.40137
-3.28811,0.94390,-1.39019,-1.42436,-1.05813,2.06257,-0.40128
-3.28926,0.94402,-1.38980,-1.42495,-1.05788,2.06248,-0.40118
-3.29041,0.94409,-1.38956,-1.42531,-1.05773,2.06243,-0.40113
-3.29156,0.94418,-1.38915,-1.42596,-1.05746,2.06235,-0.40106
-3.29271,0.94428,-1.38875,-1.42660,-1.05719,2.06228,-0.40098
-3.29386,0.94437,-1.38835,-1.42723,-1.05693,2.06221,-0.40091
-3.29501,0.94446,-1.38796,-1.42785,-1.05667,2.06214,-0.40084
-3.29616,0.94455,-1.38758,-1.42845,-1.05641,2.06207,-0.40077
-3.29731,0.94463,-1.38720,-1.42906,-1.05616,2.06201,-0.40070
-3.29846,0.94469,-1.38679,-1.42974,-1.05587,2.06196,-0.40065
-3.29961,0.94475,-1.38639,-1.43041,-1.05559,2.06191,-0.40061
-3.30076,0.94480,-1.38599,-1.43106,-1.05531,2.06187,-0.40056
-3.30191,0.94486,-1.38560,-1.43171,-1.05503,2.06183,-0.40052
-3.30306,0.94491,-1.38522,-1.43234,-1.05476,2.06178,-0.40047
-3.30421,0.94497,-1.38484,-1.43296,-1.05450,2.06174,-0.40043
-3.30536,0.94502,-1.38447,-1.43358,-1.05423,2.06170,-0.40039
-3.30651,0.94506,-1.38417,-1.43409,-1.05402,2.06167,-0.40036
-3.30766,0.94502,-1.38370,-1.43493,-1.05365,2.06169,-0.40038
-3.30881,0.94499,-1.38324,-1.43576,-1.05330,2.06171,-0.40040
-3.30996,0.94496,-1.38278,-1.43658,-1.05295,2.06173,-0.40042
-3.31111,0.94493,-1.38234,-1.43738,-1.05260,2.06174,-0.40043
-3.31226,0.94491,-1.38190,-1.43817,-1.05226,2.06176,-0.40045
-3.31341,0.94488,-1.38147,-1.43895,-1.05192,2.06178,-0.40047
-3.31456,0.94485,-1.38104,-1.43971,-1.05159,2.06179,-0.40048
-3.31570,0.94483,-1.38063,-1.44046,-1.05127,2.06181,-0.40050
-3.31685,0.94480,-1.38022,-1.44120,-1.05095,2.06182,-0.40051
-3.31800,0.94478,-1.37981,-1.44192,-1.05063,2.06184,-0.40053
-3.31915,0.94476,-1.37942,-1.44264,-1.05032,2.06185,-0.40054
-3.32030,0.94473,-1.37903,-1.44334,-1.05002,2.06186,-0.40055
-3.32145,0.94471,-1.37865,-1.44403,-1.04972,2.06188,-0.40057
-3.32260,0.94469,-1.37827,-1.44471,-1.04942,2.06189,-0.40058
-3.32375,0.94467,-1.37790,-1.44538,-1.04913,2.06190,-0.40059
-3.32490,0.94465,-1.37754,-1.44603,-1.04884,2.06191,-0.40060
-3.32605,0.94463,-1.37718,-1.44668,-1.04856,2.06192,-0.40061
-3.32720,0.94462,-1.37683,-1.44732,-1.04828,2.06193,-0.40062
-3.32835,0.94460,-1.37648,-1.44794,-1.04801,2.06194,-0.40063
-3.32950,0.94458,-1.37614,-1.44856,-1.04774,2.06195,-0.40064
-3.33065,0.94457,-1.37587,-1.44905,-1.04752,2.06196,-0.40065
-3.33180,0.94451,-1.37548,-1.44977,-1.04720,2.06200,-0.40069
-3.33295,0.94445,-1.37511,-1.45048,-1.04689,2.06204,-0.40072
-3.33410,0.94440,-1.37474,-1.45118,-1.04658,2.06208,-0.40076
-3.33525,0.94434,-1.37437,-1.45186,-1.04628,2.06212,-0.40080
-3.33640,0.94429,-1.37401,-1.45253,-1.04599,2.06215,-0.40083
-3.33755,0.94424,-1.37366,-1.45320,-1.04569,2.06219,-0.40087
-3.33870,0.94419,-1.37331,-1.45385,-1.04541,2.06222,-0.40090
-3.33985,0.94414,-1.37297,-1.45449,-1.04512,2.06225,-0.40094
-3.34100,0.94409,-1.37263,-1.45512,-1.04485,2.06229,-0.40097
-3.34215,0.94405,-1.37231,-1.45573,-1.04457,2.06232,-0.40100
-3.34330,0.94400,-1.37198,-1.45634,-1.04430,2.06235,-0.40103
-3.34445,0.94396,-1.37172,-1.45684,-1.04408,2.06238,-0.40106
-3.34560,0.94388,-1.37135,-1.45755,-1.04377,2.06244,-0.40112
-3.34675,0.94379,-1.37099,-1.45825,-1.04346,2.06250,-0.40118
-3.34790,0.94371,-1.37063,-1.45894,-1.04315,2.06256,-0.40123
-3.34905,0.94363,-1.37028,-1.45962,-1.04285,2.06261,-0.40129
-3.35020,0.94355,-1.36994,-1.46029,-1.04255,2.06267,-0.40135
-3.35135,0.94347,-1.36960,-1.46094,-1.04226,2.06272,-0.40140
-3.35249,0.94340,-1.36927,-1.46159,-1.04197,2.06278,-0.40146
-3.35364,0.94332,-1.36894,-1.46222,-1.04169,2.06283,-0.40151
-3.35479,0.94325,-1.36862,-1.46285,-1.04141,2.06288,-0.40156
-3.35594,0.94318,-1.36830,-1.46346,-1.04114,2.06293,-0.40161
-3.35709,0.94311,-1.36799,-1.46406,-1.04087,2.06298,-0.40166
-3.35824,0.94304,-1.36771,-1.46461,-1.04063,2.06302,-0.40170
-3.35939,0.94294,-1.36735,-1.46532,-1.04031,2.06310,-0.40178
-3.36054,0.94283,-1.36700,-1.46601,-1.04000,2.06318,-0.40186
-3.36169,0.94272,-1.36666,-1.46670,-1.03970,2.06325,-0.40193
-3.36284,0.94262,-1.36632,-1.46737,-1.03940,2.06333,-0.40201
-3.36399,0.94252,-1.36599,-1.46803,-1.03910,2.06340,-0.40208
-3.36514,0.94242,-1.36567,-1.46868,-1.03881,2.06347,-0.40215
-3.36629,0.94232,-1.36535,-1.46932,-1.03853,2.06354,-0.40222
-3.36744,0.94223,-1.36503,-1.46995,-1.03825,2.06361,-0.40229
-3.36859,0.94214,-1.36472,-1.47056,-1.03797,2.06367,-0.40235
-3.36974,0.94205,-1.36442,-1.47117,-1.03770,2.06374,-0.40242
-3.37089,0.94196,-1.36412,-1.47177,-1.03743,2.06380,-0.40248
-3.37204,0.94187,-1.36382,-1.47236,-1.03716,2.06387,-0.40255
-3.37319,0.94174,-1.36351,-1.47300,-1.03687,2.06396,-0.40263
-3.37434,0.94162,-1.36321,-1.47363,-1.03659,2.06404,-0.40272
-3.37549,0.94150,-1.36291,-1.47424,-1.03631,2.06413,-0.40281
-3.37664,0.94138,-1.36262,-1.47485,-1.03604,2.06421,-0.40289
-3.37779,0.94127,-1.36233,-1.47545,-1.03576,2.06430,-0.40298
-3.37894,0.94116,-1.36205,-1.47603,-1.03550,2.06438,-0.40306
-3.38009,0.94106,-1.36182,-1.47651,-1.03528,2.06445,-0.40313
-3.38124,0.94088,-1.36151,-1.47720,-1.03497,2.06458,-0.40326
-3.38239,0.94069,-1.36120,-1.47788,-1.03466,2.06471,-0.40340
-3.38354,0.94052,-1.36090,-1.47854,-1.03435,2.06484,-0.40353
-3.38469,0.94034,-1.36061,-1.47920,-1.03405,2.06497,-0.40365
-3.38584,0.94017,-1.36032,-1.47984,-1.03376,2.06510,-0.40378
-3.38699,0.94000,-1.36003,-1.48048,-1.03347,2.06522,-0.40390
-3.38814,0.93983,-1.35975,-1.48110,-1.03318,2.06534,-0.40403
-3.38928,0.93967,-1.35947,-1.48171,-1.03290,2.06546,-0.40414
-3.39043,0.93951,-1.35920,-1.48232,-1.03263,2.06557,-0.40426
-3.39158,0.93936,-1.35894,-1.48291,-1.03235,2.06568,-0.40437
-3.39273,0.93920,-1.35867,-1.48349,-1.03209,2.06580,-0.40449
-3.39388,0.93905,-1.35842,-1.48406,-1.03182,2.06591,-0.40460
-3.39503,0.93890,-1.35816,-1.48463,-1.03156,2.06601,-0.40471
-3.39618,0.93887,-1.35811,-1.48474,-1.03151,2.06603,-0.40473
-3.39733,0.93872,-1.35786,-1.48531,-1.03125,2.06614,-0.40484
-3.39848,0.93859,-1.35763,-1.48582,-1.03102,2.06624,-0.40494
-3.39963,0.93843,-1.35736,-1.48640,-1.03075,2.06636,-0.40505
-3.40078,0.93828,-1.35711,-1.48698,-1.03048,2.06647,-0.40516
-3.40193,0.93813,-1.35685,-1.48754,-1.03022,2.06658,-0.40528
-3.40308,0.93802,-1.35668,-1.48793,-1.03004,2.06666,-0.40535
-3.40423,0.93787,-1.35642,-1.48850,-1.02978,2.06677,-0.40546
-3.40538,0.93773,-1.35620,-1.48901,-1.02955,2.06687,-0.40557
-3.40653,0.93755,-1.35595,-1.48958,-1.02928,2.06699,-0.40569
-3.40768,0.93738,-1.35570,-1.49015,-1.02902,2.06712,-0.40582
-3.40883,0.93722,-1.35546,-1.49070,-1.02877,2.06724,-0.40594
-3.40998,0.93711,-1.35532,-1.49103,-1.02861,2.06732,-0.40602
-3.41113,0.93692,-1.35507,-1.49162,-1.02834,2.06746,-0.40616
-3.41228,0.93673,-1.35483,-1.49219,-1.02807,2.06760,-0.40630
-3.41343,0.93654,-1.35460,-1.49275,-1.02781,2.06773,-0.40644
-3.41458,0.93635,-1.35436,-1.49331,-1.02755,2.06787,-0.40658
-3.41573,0.93617,-1.35414,-1.49385,-1.02730,2.06800,-0.40671
-3.41688,0.93607,-1.35402,-1.49413,-1.02717,2.06807,-0.40679
-3.41803,0.93579,-1.35382,-1.49472,-1.02689,2.06828,-0.40700
-3.41918,0.93551,-1.35361,-1.49530,-1.02661,2.06848,-0.40720
-3.42033,0.93524,-1.35341,-1.49587,-1.02633,2.06868,-0.40741
-3.42148,0.93497,-1.35322,-1.49643,-1.02606,2.06888,-0.40761
-3.42263,0.93471,-1.35302,-1.49698,-1.02580,2.06907,-0.40780
-3.42378,0.93445,-1.35283,-1.49752,-1.02554,2.06926,-0.40799
-3.42493,0.93419,-1.35265,-1.49805,-1.02528,2.06945,-0.40818
-3.42607,0.93394,-1.35246,-1.49857,-1.02503,2.06963,-0.40837
-3.42722,0.93370,-1.35228,-1.49909,-1.02478,2.06981,-0.40855
-3.42837,0.93346,-1.35211,-1.49959,-1.02454,2.06998,-0.40873
-3.42952,0.93321,-1.35193,-1.50009,-1.02429,2.07016,-0.40891
-3.43067,0.93291,-1.35176,-1.50064,-1.02402,2.07039,-0.40914
-3.43182,0.93261,-1.35159,-1.50118,-1.02376,2.07060,-0.40936
-3.43297,0.93231,-1.35143,-1.50170,-1.02350,2.07082,-0.40958
-3.43412,0.93202,-1.35126,-1.50222,-1.02325,2.07103,-0.40980
-3.43527,0.93174,-1.35110,-1.50273,-1.02300,2.07124,-0.41001
-3.43642,0.93146,-1.35095,-1.50323,-1.02275,2.07144,-0.41022
-3.43757,0.93119,-1.35079,-1.50373,-1.02251,2.07164,-0.41042
-3.43872,0.93092,-1.35064,-1.50421,-1.02227,2.07184,-0.41062
-3.43987,0.93065,-1.35049,-1.50469,-1.02204,2.07203,-0.41082
-3.44102,0.93049,-1.35040,-1.50497,-1.02190,2.07215,-0.41094
-3.44217,0.93016,-1.35026,-1.50550,-1.02164,2.07239,-0.41119
-3.44332,0.92984,-1.35011,-1.50601,-1.02138,2.07263,-0.41143
-3.44447,0.92952,-1.34997,-1.50651,-1.02113,2.07286,-0.41167
-3.44562,0.92920,-1.34983,-1.50701,-1.02089,2.07309,-0.41191
-3.44677,0.92890,-1.34970,-1.50749,-1.02064,2.07332,-0.41214
-3.44792,0.92860,-1.34956,-1.50797,-1.02041,2.07354,-0.41236
-3.44907,0.92830,-1.34943,-1.50844,-1.02017,2.07375,-0.41259
-3.45022,0.92801,-1.34930,-1.50890,-1.01994,2.07397,-0.41280
-3.45137,0.92772,-1.34918,-1.50935,-1.01972,2.07418,-0.41302
-3.45252,0.92749,-1.34908,-1.50972,-1.01954,2.07435,-0.41319
-3.45367,0.92716,-1.34895,-1.51021,-1.01929,2.07459,-0.41344
-3.45482,0.92684,-1.34882,-1.51069,-1.01905,2.07482,-0.41368
-3.45597,0.92652,-1.34870,-1.51116,-1.01882,2.07506,-0.41392
-3.45712,0.92621,-1.34858,-1.51162,-1.01858,2.07529,-0.41416
-3.45827,0.92590,-1.34846,-1.51208,-1.01835,2.07551,-0.41439
-3.45942,0.92560,-1.34834,-1.51253,-1.01813,2.07573,-0.41462
-3.46057,0.92530,-1.34823,-1.51297,-1.01791,2.07595,-0.41484
-3.46172,0.92503,-1.34813,-1.51336,-1.01771,2.07615,-0.41504
-3.46287,0.92468,-1.34802,-1.51383,-1.01747,2.07640,-0.41531
-3.46401,0.92433,-1.34792,-1.51429,-1.01724,2.07666,-0.41557
-3.46516,0.92399,-1.34782,-1.51474,-1.01701,2.07691,-0.41583
-3.46631,0.92366,-1.34773,-1.51519,-1.01679,2.07715,-0.41608
-3.46746,0.92333,-1.34763,-1.51562,-1.01656,2.07739,-0.41633
-3.46861,0.92300,-1.34753,-1.51605,-1.01635,2.07763,-0.41657
-3.46976,0.92269,-1.34744,-1.51647,-1.01613,2.07786,-0.41681
-3.47091,0.92237,-1.34735,-1.51688,-1.01592,2.07809,-0.41705
-3.47206,0.92221,-1.34731,-1.51709,-1.01581,2.07821,-0.41717
-3.47321,0.92175,-1.34725,-1.51757,-1.01556,2.07854,-0.41752
-3.47436,0.92131,-1.34719,-1.51804,-1.01532,2.07887,-0.41785
-3.47551,0.92088,-1.34713,-1.51850,-1.01507,2.07919,-0.41818
-3.47666,0.92045,-1.34707,-1.51895,-1.01484,2.07950,-0.41850
-3.47781,0.92003,-1.34701,-1.51939,-1.01460,2.07981,-0.41882
-3.47896,0.91962,-1.34696,-1.51982,-1.01437,2.08011,-0.41914
-3.48011,0.91921,-1.34690,-1.52025,-1.01415,2.08040,-0.41944
-3.48126,0.91881,-1.34685,-1.52067,-1.01393,2.08070,-0.41975
-3.48241,0.91842,-1.34680,-1.52108,-1.01371,2.08098,-0.42004
-3.48356,0.91804,-1.34675,-1.52148,-1.01350,2.08126,-0.42033
-3.48471,0.91766,-1.34670,-1.52188,-1.01329,2.08154,-0.42062
-3.48586,0.91729,-1.34665,-1.52227,-1.01308,2.08181,-0.42090
-3.48701,0.91692,-1.34660,-1.52266,-1.01288,2.08208,-0.42118
-3.48816,0.91656,-1.34655,-1.52303,-1.01268,2.08234,-0.42145
-3.48931,0.91621,-1.34651,-1.52340,-1.01248,2.08260,-0.42172
-3.49046,0.91586,-1.34646,-1.52376,-1.01229,2.08285,-0.42199
-3.49161,0.91558,-1.34643,-1.52406,-1.01214,2.08306,-0.42220
-3.49276,0.91510,-1.34642,-1.52446,-1.01191,2.08341,-0.42257
-3.49391,0.91464,-1.34641,-1.52486,-1.01169,2.08375,-0.42292
-3.49506,0.91418,-1.34640,-1.52525,-1.01148,2.08409,-0.42327
-3.49621,0.91373,-1.34640,-1.52564,-1.01127,2.08441,-0.42362
-3.49736,0.91328,-1.34639,-1.52602,-1.01106,2.08474,-0.42395
-3.49851,0.91285,-1.34638,-1.52639,-1.01085,2.08506,-0.42429
-3.49966,0.91242,-1.34638,-1.52675,-1.01065,2.08537,-0.42461
-3.50080,0.91200,-1.34637,-1.52711,-1.01046,2.08568,-0.42494
-3.50195,0.91159,-1.34637,-1.52746,-1.01026,2.08598,-0.42525
-3.50310,0.91118,-1.34636,-1.52780,-1.01007,2.08628,-0.42556
-3.50425,0.91078,-1.34635,-1.52814,-1.00989,2.08657,-0.42587
-3.50540,0.91039,-1.34635,-1.52847,-1.00971,2.08685,-0.42617
-3.50655,0.91000,-1.34634,-1.52880,-1.00953,2.08714,-0.42646
-3.50770,0.90963,-1.34634,-1.52912,-1.00935,2.08741,-0.42675
-3.50885,0.90925,-1.34633,-1.52944,-1.00918,2.08768,-0.42704
-3.51000,0.90889,-1.34633,-1.52975,-1.00901,2.08795,-0.42732
-3.51115,0.90884,-1.34634,-1.52978,-1.00899,2.08799,-0.42735
-3.51230,0.90835,-1.34638,-1.53010,-1.00880,2.08834,-0.42773
-3.51345,0.90788,-1.34643,-1.53042,-1.00861,2.08869,-0.42809
-3.51460,0.90741,-1.34647,-1.53073,-1.00843,2.08903,-0.42845
-3.51575,0.90695,-1.34652,-1.53103,-1.00825,2.08937,-0.42881
-3.51690,0.90650,-1.34656,-1.53133,-1.00807,2.08970,-0.42915
-3.51805,0.90605,-1.34661,-1.53163,-1.00790,2.09002,-0.42949
-3.51920,0.90562,-1.34665,-1.53192,-1.00773,2.09034,-0.42983
-3.52035,0.90519,-1.34669,-1.53220,-1.00757,2.09065,-0.43016
-3.52150,0.90476,-1.34674,-1.53248,-1.00740,2.09096,-0.43049
-3.52265,0.90435,-1.34678,-1.53275,-1.00725,2.09126,-0.43080
-3.52380,0.90394,-1.34682,-1.53302,-1.00709,2.09156,-0.43112
-3.52495,0.90354,-1.34686,-1.53328,-1.00694,2.09185,-0.43143
-3.52610,0.90315,-1.34690,-1.53354,-1.00679,2.09214,-0.43173
-3.52725,0.90276,-1.34694,-1.53379,-1.00664,2.09242,-0.43203
-3.52840,0.90272,-1.34695,-1.53382,-1.00662,2.09246,-0.43207
-3.52955,0.90224,-1.34701,-1.53411,-1.00645,2.09281,-0.43243
-3.53070,0.90177,-1.34708,-1.53439,-1.00628,2.09315,-0.43280
-3.53185,0.90131,-1.34714,-1.53466,-1.00612,2.09349,-0.43315
-3.53300,0.90085,-1.34720,-1.53494,-1.00595,2.09382,-0.43351
-3.53415,0.90041,-1.34726,-1.53520,-1.00580,2.09414,-0.43385
-3.53530,0.89997,-1.34732,-1.53546,-1.00564,2.09446,-0.43419
-3.53645,0.89954,-1.34738,-1.53572,-1.00549,2.09478,-0.43452
-3.53759,0.89911,-1.34744,-1.53597,-1.00534,2.09509,-0.43485
-3.53874,0.89870,-1.34750,-1.53621,-1.00519,2.09539,-0.43517
-3.53989,0.89829,-1.34756,-1.53645,-1.00505,2.09569,-0.43549
-3.54104,0.89789,-1.34762,-1.53669,-1.00491,2.09598,-0.43580
-3.54219,0.89749,-1.34767,-1.53692,-1.00477,2.09627,-0.43611
-3.54334,0.89733,-1.34770,-1.53701,-1.00471,2.09639,-0.43623
-3.54449,0.89686,-1.34779,-1.53724,-1.00457,2.09673,-0.43660
-3.54564,0.89640,-1.34789,-1.53747,-1.00442,2.09707,-0.43696
-3.54679,0.89594,-1.34798,-1.53769,-1.00428,2.09740,-0.43731
-3.54794,0.89549,-1.34807,-1.53791,-1.00415,2.09773,-0.43766
-3.54909,0.89506,-1.34816,-1.53812,-1.00401,2.09805,-0.43800
-3.55024,0.89462,-1.34825,-1.53833,-1.00388,2.09836,-0.43834
-3.55139,0.89420,-1.34834,-1.53853,-1.00375,2.09867,-0.43867
-3.55254,0.89378,-1.34843,-1.53873,-1.00362,2.09898,-0.43899
-3.55369,0.89337,-1.34851,-1.53893,-1.00350,2.09927,-0.43931
-3.55484,0.89297,-1.34859,-1.53912,-1.00338,2.09957,-0.43962
-3.55599,0.89289,-1.34861,-1.53916,-1.00335,2.09963,-0.43969
-3.55714,0.89243,-1.34871,-1.53938,-1.00321,2.09996,-0.44004
-3.55829,0.89199,-1.34881,-1.53958,-1.00308,2.10029,-0.44039
-3.55944,0.89155,-1.34890,-1.53979,-1.00295,2.10060,-0.44073
-3.56059,0.89112,-1.34900,-1.53998,-1.00283,2.10092,-0.44107
-3.56174,0.89070,-1.34909,-1.54018,-1.00270,2.10123,-0.44140
-3.56289,0.89028,-1.34918,-1.54037,-1.00258,2.10153,-0.44172
-3.56404,0.88987,-1.34927,-1.54056,-1.00246,2.10183,-0.44204
-3.56519,0.88955,-1.34934,-1.54071,-1.00237,2.10206,-0.44230
-3.56634,0.88908,-1.34946,-1.54090,-1.00224,2.10241,-0.44267
-3.56749,0.88862,-1.34957,-1.54109,-1.00211,2.10274,-0.44303
-3.56864,0.88817,-1.34969,-1.54128,-1.00199,2.10307,-0.44338
-3.56979,0.88772,-1.34980,-1.54146,-1.00187,2.10339,-0.44373
-3.57094,0.88729,-1.34991,-1.54164,-1.00175,2.10371,-0.44407
-3.57209,0.88686,-1.35002,-1.54181,-1.00163,2.10402,-0.44440
-3.57324,0.88644,-1.35012,-1.54198,-1.00152,2.10433,-0.44473
-3.57438,0.88602,-1.35023,-1.54215,-1.00141,2.10463,-0.44506
-3.57553,0.88562,-1.35033,-1.54232,-1.00130,2.10493,-0.44538
-3.57668,0.88557,-1.35034,-1.54233,-1.00129,2.10496,-0.44542
-3.57783,0.88510,-1.35047,-1.54251,-1.00117,2.10530,-0.44579
-3.57898,0.88463,-1.35060,-1.54268,-1.00105,2.10564,-0.44615
-3.58013,0.88418,-1.35073,-1.54285,-1.00094,2.10597,-0.44651
-3.58128,0.88373,-1.35085,-1.54301,-1.00083,2.10629,-0.44686
-3.58243,0.88329,-1.35097,-1.54317,-1.00072,2.10661,-0.44720
-3.58358,0.88286,-1.35109,-1.54333,-1.00061,2.10693,-0.44754
-3.58473,0.88244,-1.35121,-1.54348,-1.00050,2.10724,-0.44788
-3.58588,0.88202,-1.35133,-1.54363,-1.00040,2.10754,-0.44821
-3.58703,0.88161,-1.35144,-1.54378,-1.00030,2.10784,-0.44853
-3.58818,0.88152,-1.35147,-1.54381,-1.00028,2.10790,-0.44860
-3.58933,0.88106,-1.35160,-1.54398,-1.00016,2.10823,-0.44896
-3.59048,0.88061,-1.35172,-1.54414,-1.00005,2.10856,-0.44932
-3.59163,0.88017,-1.35185,-1.54430,-0.99995,2.10888,-0.44967
-3.59278,0.87973,-1.35197,-1.54445,-0.99984,2.10920,-0.45001
-3.59393,0.87930,-1.35210,-1.54461,-0.99973,2.10951,-0.45035
-3.59508,0.87888,-1.35221,-1.54475,-0.99963,2.10982,-0.45068
-3.59623,0.87847,-1.35233,-1.54490,-0.99953,2.11012,-0.45101
-3.59738,0.87813,-1.35243,-1.54502,-0.99945,2.11037,-0.45128
-3.59853,0.87756,-1.35264,-1.54514,-0.99934,2.11078,-0.45173
-3.59968,0.87701,-1.35285,-1.54527,-0.99923,2.11118,-0.45217
-3.60083,0.87646,-1.35305,-1.54539,-0.99913,2.11157,-0.45260
-3.60198,0.87593,-1.35324,-1.54552,-0.99902,2.11196,-0.45302
-3.60313,0.87540,-1.35344,-1.54563,-0.99892,2.11234,-0.45344
-3.60428,0.87488,-1.35363,-1.54575,-0.99882,2.11271,-0.45385
-3.60543,0.87438,-1.35382,-1.54586,-0.99872,2.11308,-0.45425
-3.60658,0.87388,-1.35400,-1.54597,-0.99863,2.11344,-0.45464
-3.60773,0.87339,-1.35418,-1.54608,-0.99854,2.11380,-0.45503
-3.60888,0.87291,-1.35436,-1.54618,-0.99845,2.11415,-0.45542
-3.61003,0.87243,-1.35454,-1.54629,-0.99836,2.11449,-0.45579
-3.61117,0.87197,-1.35471,-1.54639,-0.99827,2.11483,-0.45616
-3.61232,0.87151,-1.35488,-1.54649,-0.99819,2.11516,-0.45653
-3.61347,0.87106,-1.35505,-1.54658,-0.99811,2.11548,-0.45688
-3.61462,0.87062,-1.35521,-1.54667,-0.99803,2.11580,-0.45723
-3.61577,0.87019,-1.35538,-1.54677,-0.99795,2.11612,-0.45758
-3.61692,0.86976,-1.35554,-1.54686,-0.99787,2.11643,-0.45792
-3.61807,0.86934,-1.35569,-1.54694,-0.99780,2.11673,-0.45825
-3.61922,0.86905,-1.35580,-1.54700,-0.99775,2.11694,-0.45849
-3.62037,0.86856,-1.35601,-1.54707,-0.99767,2.11729,-0.45888
-3.62152,0.86809,-1.35621,-1.54714,-0.99760,2.11764,-0.45926
-3.62267,0.86762,-1.35640,-1.54720,-0.99753,2.11798,-0.45963
-3.62382,0.86716,-1.35660,-1.54727,-0.99746,2.11831,-0.45999
-3.62497,0.86671,-1.35679,-1.54733,-0.99739,2.11863,-0.46036
-3.62612,0.86627,-1.35697,-1.54739,-0.99733,2.11895,-0.46071
-3.62727,0.86583,-1.35715,-1.54745,-0.99726,2.11927,-0.46106
-3.62842,0.86540,-1.35734,-1.54750,-0.99720,2.11958,-0.46140
-3.62957,0.86498,-1.35751,-1.54756,-0.99714,2.11988,-0.46174
-3.63072,0.86465,-1.35765,-1.54760,-0.99709,2.12013,-0.46201
-3.63187,0.86419,-1.35785,-1.54766,-0.99702,2.12046,-0.46238
-3.63302,0.86374,-1.35805,-1.54772,-0.99696,2.12078,-0.46274
-3.63417,0.86330,-1.35824,-1.54777,-0.99690,2.12111,-0.46309
-3.63532,0.86286,-1.35842,-1.54782,-0.99684,2.12142,-0.46344
-3.63647,0.86243,-1.35861,-1.54787,-0.99678,2.12173,-0.46379
-3.63762,0.86201,-1.35879,-1.54792,-0.99672,2.12203,-0.46412
-3.63877,0.86163,-1.35895,-1.54797,-0.99667,2.12231,-0.46443
-3.63992,0.86118,-1.35916,-1.54800,-0.99661,2.12263,-0.46479
-3.64107,0.86074,-1.35936,-1.54803,-0.99656,2.12295,-0.46515
-3.64222,0.86030,-1.35956,-1.54807,-0.99651,2.12327,-0.46550
-3.64337,0.85988,-1.35976,-1.54810,-0.99646,2.12358,-0.46584
-3.64452,0.85945,-1.35995,-1.54813,-0.99641,2.12388,-0.46618
-3.64567,0.85904,-1.36015,-1.54815,-0.99636,2.12418,-0.46652
-3.64682,0.85857,-1.36038,-1.54816,-0.99632,2.12452,-0.46689
-3.64797,0.85812,-1.36061,-1.54816,-0.99627,2.12485,-0.46726
-3.64911,0.85767,-1.36083,-1.54817,-0.99623,2.12517,-0.46762
-3.65026,0.85723,-1.36106,-1.54817,-0.99619,2.12549,-0.46798
-3.65141,0.85680,-1.36127,-1.54817,-0.99615,2.12580,-0.46832
-3.65256,0.85637,-1.36149,-1.54818,-0.99611,2.12611,-0.46867
-3.65371,0.85595,-1.36170,-1.54818,-0.99607,2.12641,-0.46900
-3.65486,0.85566,-1.36184,-1.54818,-0.99605,2.12662,-0.46924
-3.65601,0.85523,-1.36207,-1.54818,-0.99601,2.12693,-0.46959
-3.65716,0.85480,-1.36228,-1.54817,-0.99597,2.12724,-0.46994
-3.65831,0.85437,-1.36250,-1.54817,-0.99594,2.12755,-0.47028
-3.65946,0.85396,-1.36271,-1.54816,-0.99591,2.12785,-0.47062
-3.66061,0.85379,-1.36280,-1.54816,-0.99589,2.12796,-0.47075
-3.66176,0.85338,-1.36302,-1.54815,-0.99586,2.12827,-0.47109
-3.66291,0.85305,-1.36319,-1.54813,-0.99584,2.12850,-0.47136
-3.66406,0.85263,-1.36342,-1.54811,-0.99581,2.12880,-0.47170
-3.66521,0.85226,-1.36362,-1.54808,-0.99579,2.12907,-0.47200
-3.66636,0.85184,-1.36385,-1.54805,-0.99577,2.12937,-0.47233
-3.66751,0.85151,-1.36404,-1.54802,-0.99575,2.12961,-0.47260
-3.66866,0.85107,-1.36430,-1.54795,-0.99574,2.12993,-0.47296
-3.66981,0.85064,-1.36456,-1.54789,-0.99573,2.13024,-0.47331
-3.67096,0.85022,-1.36482,-1.54783,-0.99572,2.13054,-0.47366
-3.67211,0.84980,-1.36507,-1.54776,-0.99571,2.13085,-0.47400
-3.67326,0.84939,-1.36531,-1.54770,-0.99570,2.13114,-0.47433
-3.67441,0.84914,-1.36546,-1.54766,-0.99569,2.13132,-0.47453
-3.67556,0.84872,-1.36573,-1.54758,-0.99569,2.13162,-0.47488
-3.67671,0.84830,-1.36599,-1.54750,-0.99568,2.13192,-0.47521
-3.67786,0.84789,-1.36624,-1.54742,-0.99568,2.13222,-0.47555
-3.67901,0.84756,-1.36646,-1.54734,-0.99568,2.13246,-0.47582
-3.68016,0.84707,-1.36682,-1.54717,-0.99571,2.13281,-0.47622
-3.68131,0.84659,-1.36717,-1.54700,-0.99573,2.13315,-0.47661
-3.68246,0.84611,-1.36752,-1.54683,-0.99575,2.13349,-0.47699
-3.68361,0.84565,-1.36786,-1.54666,-0.99578,2.13383,-0.47737
-3.68476,0.84519,-1.36819,-1.54649,-0.99580,2.13416,-0.47775
-3.68590,0.84474,-1.36852,-1.54633,-0.99583,2.13448,-0.47811
-3.68705,0.84430,-1.36884,-1.54617,-0.99585,2.13479,-0.47847
-3.68820,0.84387,-1.36916,-1.54601,-0.99588,2.13511,-0.47883
-3.68935,0.84344,-1.36948,-1.54585,-0.99591,2.13541,-0.47917
-3.69050,0.84303,-1.36978,-1.54570,-0.99593,2.13571,-0.47952
-3.69165,0.84261,-1.37009,-1.54554,-0.99596,2.13601,-0.47985
-3.69280,0.84221,-1.37038,-1.54539,-0.99599,2.13630,-0.48018
-3.69395,0.84181,-1.37067,-1.54524,-0.99602,2.13658,-0.48051
-3.69510,0.84149,-1.37092,-1.54511,-0.99604,2.13681,-0.48077
-3.69625,0.84102,-1.37132,-1.54485,-0.99610,2.13715,-0.48116
-3.69740,0.84056,-1.37171,-1.54460,-0.99616,2.13748,-0.48154
-3.69855,0.84011,-1.37210,-1.54434,-0.99622,2.13781,-0.48191
-3.69970,0.83966,-1.37248,-1.54410,-0.99628,2.13813,-0.48227
-3.70085,0.83922,-1.37285,-1.54385,-0.99634,2.13844,-0.48263
-3.70200,0.83879,-1.37322,-1.54361,-0.99640,2.13875,-0.48299
-3.70315,0.83837,-1.37358,-1.54337,-0.99646,2.13905,-0.48334
-3.70430,0.83795,-1.37393,-1.54314,-0.99652,2.13935,-0.48368
-3.70545,0.83754,-1.37428,-1.54291,-0.99658,2.13964,-0.48401
-3.70660,0.83714,-1.37462,-1.54268,-0.99664,2.13993,-0.48434
-3.70775,0.83675,-1.37496,-1.54245,-0.99670,2.14022,-0.48467
-3.70890,0.83636,-1.37529,-1.54223,-0.99676,2.14049,-0.48499
-3.71005,0.83598,-1.37562,-1.54201,-0.99682,2.14077,-0.48530
-3.71120,0.83560,-1.37593,-1.54180,-0.99688,2.14104,-0.48561
-3.71235,0.83552,-1.37602,-1.54173,-0.99690,2.14110,-0.48568
-3.71350,0.83501,-1.37658,-1.54125,-0.99704,2.14146,-0.48610
-3.71465,0.83452,-1.37712,-1.54078,-0.99718,2.14181,-0.48650
-3.71580,0.83403,-1.37765,-1.54031,-0.99732,2.14216,-0.48690
-3.71695,0.83356,-1.37818,-1.53986,-0.99746,2.14250,-0.48730
-3.71810,0.83309,-1.37870,-1.53941,-0.99760,2.14283,-0.48768
-3.71925,0.83263,-1.37920,-1.53896,-0.99773,2.14316,-0.48806
-3.72040,0.83217,-1.37970,-1.53852,-0.99787,2.14349,-0.48844
-3.72155,0.83173,-1.38019,-1.53809,-0.99800,2.14381,-0.48881
-3.72269,0.83129,-1.38067,-1.53767,-0.99814,2.14412,-0.48917
-3.72384,0.83086,-1.38115,-1.53725,-0.99827,2.14443,-0.48952
-3.72499,0.83044,-1.38161,-1.53684,-0.99840,2.14473,-0.48987
-3.72614,0.83003,-1.38207,-1.53643,-0.99853,2.14502,-0.49022
-3.72729,0.82962,-1.38252,-1.53604,-0.99866,2.14532,-0.49055
-3.72844,0.82922,-1.38296,-1.53564,-0.99879,2.14560,-0.49089
-3.72959,0.82882,-1.38340,-1.53525,-0.99891,2.14588,-0.49121
-3.73074,0.82844,-1.38382,-1.53487,-0.99904,2.14616,-0.49153
-3.73189,0.82806,-1.38424,-1.53450,-0.99916,2.14643,-0.49185
-3.73304,0.82768,-1.38465,-1.53413,-0.99929,2.14670,-0.49216
-3.73419,0.82732,-1.38506,-1.53376,-0.99941,2.14696,-0.49247
-3.73534,0.82696,-1.38546,-1.53340,-0.99953,2.14722,-0.49277
-3.73649,0.82660,-1.38585,-1.53305,-0.99965,2.14748,-0.49306
-3.73764,0.82625,-1.38623,-1.53270,-0.99977,2.14773,-0.49336
-3.73879,0.82591,-1.38661,-1.53236,-0.99989,2.14797,-0.49364
-3.73994,0.82557,-1.38698,-1.53202,-1.00000,2.14821,-0.49392
-3.74109,0.82524,-1.38735,-1.53168,-1.00012,2.14845,-0.49420
-3.74224,0.82504,-1.38758,-1.53147,-1.00019,2.14860,-0.49437
-3.74339,0.82460,-1.38813,-1.53094,-1.00037,2.14891,-0.49473
-3.74454,0.82418,-1.38866,-1.53041,-1.00055,2.14921,-0.49509
-3.74569,0.82376,-1.38919,-1.52990,-1.00072,2.14951,-0.49543
-3.74684,0.82335,-1.38970,-1.52939,-1.00089,2.14980,-0.49578
-3.74799,0.82295,-1.39021,-1.52889,-1.00106,2.15009,-0.49611
-3.74914,0.82255,-1.39071,-1.52840,-1.00123,2.15037,-0.49644
-3.75029,0.82216,-1.39120,-1.52792,-1.00140,2.15065,-0.49677
-3.75144,0.82178,-1.39168,-1.52744,-1.00157,2.15092,-0.49709
-3.75259,0.82141,-1.39215,-1.52697,-1.00173,2.15119,-0.49740
-3.75374,0.82104,-1.39262,-1.52651,-1.00189,2.15145,-0.49771
-3.75489,0.82067,-1.39307,-1.52606,-1.00205,2.15171,-0.49802
-3.75604,0.82032,-1.39352,-1.52561,-1.00221,2.15197,-0.49832
-3.75719,0.81997,-1.39397,-1.52517,-1.00237,2.15222,-0.49861
-3.75834,0.81962,-1.39440,-1.52473,-1.00253,2.15246,-0.49890
-3.75948,0.81928,-1.39483,-1.52430,-1.00268,2.15271,-0.49919
-3.76063,0.81895,-1.39525,-1.52388,-1.00283,2.15294,-0.49947
-3.76178,0.81862,-1.39566,-1.52347,-1.00298,2.15318,-0.49974
-3.76293,0.81830,-1.39606,-1.52306,-1.00313,2.15341,-0.50001
-3.76408,0.81799,-1.39646,-1.52266,-1.00328,2.15363,-0.50028
-3.76523,0.81768,-1.39685,-1.52226,-1.00343,2.15386,-0.50054
-3.76638,0.81737,-1.39724,-1.52187,-1.00357,2.15407,-0.50080
-3.76753,0.81707,-1.39761,-1.52149,-1.00372,2.15429,-0.50105
-3.76868,0.81697,-1.39774,-1.52136,-1.00376,2.15436,-0.50113
-3.76983,0.81661,-1.39821,-1.52088,-1.00394,2.15462,-0.50144
-3.77098,0.81626,-1.39868,-1.52040,-1.00411,2.15487,-0.50174
-3.77213,0.81591,-1.39913,-1.51994,-1.00428,2.15512,-0.50203
-3.77328,0.81556,-1.39958,-1.51948,-1.00444,2.15536,-0.50232
-3.77443,0.81522,-1.40002,-1.51902,-1.00461,2.15561,-0.50261
-3.77558,0.81489,-1.40046,-1.51858,-1.00477,2.15584,-0.50289
-3.77673,0.81456,-1.40089,-1.51814,-1.00493,2.15608,-0.50317
-3.77788,0.81424,-1.40131,-1.51770,-1.00509,2.15630,-0.50344
-3.77903,0.81393,-1.40172,-1.51728,-1.00525,2.15653,-0.50371
-3.78018,0.81362,-1.40212,-1.51686,-1.00541,2.15675,-0.50397
-3.78133,0.81331,-1.40252,-1.51644,-1.00556,2.15697,-0.50423
-3.78248,0.81301,-1.40291,-1.51604,-1.00572,2.15718,-0.50448
-3.78363,0.81272,-1.40330,-1.51564,-1.00587,2.15739,-0.50473
-3.78478,0.81243,-1.40368,-1.51523,-1.00602,2.15760,-0.50498
-3.78593,0.81211,-1.40412,-1.51477,-1.00619,2.15783,-0.50525
-3.78708,0.81180,-1.40455,-1.51431,-1.00637,2.15805,-0.50552
-3.78823,0.81149,-1.40497,-1.51387,-1.00653,2.15827,-0.50578
-3.78938,0.81119,-1.40538,-1.51342,-1.00670,2.15849,-0.50603
-3.79053,0.81089,-1.40579,-1.51299,-1.00687,2.15870,-0.50629
-3.79168,0.81060,-1.40619,-1.51256,-1.00703,2.15891,-0.50653
-3.79283,0.81031,-1.40659,-1.51214,-1.00719,2.15911,-0.50678
-3.79398,0.81003,-1.40697,-1.51172,-1.00735,2.15931,-0.50702
-3.79513,0.80983,-1.40724,-1.51143,-1.00746,2.15945,-0.50718
-3.79628,0.80956,-1.40764,-1.51100,-1.00763,2.15965,-0.50742
-3.79742,0.80928,-1.40803,-1.51057,-1.00779,2.15985,-0.50766
-3.79857,0.80914,-1.40822,-1.51036,-1.00788,2.15994,-0.50777
-3.79972,0.80884,-1.40867,-1.50987,-1.00806,2.16016,-0.50803
-3.80087,0.80855,-1.40910,-1.50938,-1.00825,2.16037,-0.50828
-3.80202,0.80826,-1.40953,-1.50891,-1.00843,2.16057,-0.50853
-3.80317,0.80797,-1.40995,-1.50844,-1.00861,2.16078,-0.50877
-3.80432,0.80769,-1.41036,-1.50798,-1.00879,2.16098,-0.50901
-3.80547,0.80742,-1.41077,-1.50752,-1.00896,2.16117,-0.50924
-3.80662,0.80715,-1.41117,-1.50708,-1.00913,2.16137,-0.50948
-3.80777,0.80688,-1.41156,-1.50664,-1.00931,2.16156,-0.50970
-3.80892,0.80665,-1.41192,-1.50624,-1.00946,2.16172,-0.50991
-3.81007,0.80638,-1.41236,-1.50571,-1.00967,2.16191,-0.51013
-3.81122,0.80612,-1.41280,-1.50520,-1.00987,2.16210,-0.51036
-3.81237,0.80586,-1.41323,-1.50469,-1.01007,2.16228,-0.51058
-3.81352,0.80561,-1.41365,-1.50419,-1.01026,2.16246,-0.51079
-3.81467,0.80536,-1.41406,-1.50370,-1.01046,2.16264,-0.51100
-3.81582,0.80512,-1.41447,-1.50321,-1.01065,2.16281,-0.51121
-3.81697,0.80488,-1.41487,-1.50273,-1.01084,2.16298,-0.51142
-3.81812,0.80464,-1.41527,-1.50226,-1.01102,2.16315,-0.51162
-3.81927,0.80459,-1.41535,-1.50216,-1.01106,2.16319,-0.51166
-3.82042,0.80434,-1.41581,-1.50161,-1.01128,2.16337,-0.51188
-3.82157,0.80408,-1.41626,-1.50106,-1.01149,2.16355,-0.51210
-3.82272,0.80384,-1.41670,-1.50053,-1.01171,2.16373,-0.51231
-3.82387,0.80359,-1.41713,-1.50000,-1.01191,2.16390,-0.51252
-3.82502,0.80335,-1.41756,-1.49948,-1.01212,2.16407,-0.51273
-3.82617,0.80312,-1.41798,-1.49897,-1.01232,2.16424,-0.51293
-3.82732,0.80288,-1.41839,-1.49847,-1.01252,2.16441,-0.51313
-3.82847,0.80266,-1.41879,-1.49797,-1.01272,2.16457,-0.51333
-3.82962,0.80243,-1.41919,-1.49748,-1.01292,2.16473,-0.51352
-3.83077,0.80230,-1.41944,-1.49718,-1.01304,2.16483,-0.51364
-3.83192,0.80206,-1.41993,-1.49655,-1.01329,2.16499,-0.51384
-3.83307,0.80183,-1.42041,-1.49593,-1.01353,2.16516,-0.51404
-3.83421,0.80160,-1.42088,-1.49532,-1.01377,2.16532,-0.51424
-3.83536,0.80138,-1.42135,-1.49472,-1.01401,2.16548,-0.51443
-3.83651,0.80116,-1.42180,-1.49413,-1.01425,2.16564,-0.51462
-3.83766,0.80094,-1.42225,-1.49355,-1.01448,2.16579,-0.51481
-3.83881,0.80073,-1.42270,-1.49298,-1.01471,2.16595,-0.51499
-3.83996,0.80052,-1.42313,-1.49242,-1.01494,2.16610,-0.51517
-3.84111,0.80031,-1.42356,-1.49187,-1.01516,2.16624,-0.51535
-3.84226,0.80011,-1.42398,-1.49132,-1.01538,2.16639,-0.51553
-3.84341,0.79991,-1.42439,-1.49079,-1.01560,2.16653,-0.51570
-3.84456,0.79971,-1.42479,-1.49026,-1.01582,2.16667,-0.51587
-3.84571,0.79952,-1.42519,-1.48974,-1.01603,2.16681,-0.51604
-3.84686,0.79942,-1.42540,-1.48947,-1.01614,2.16688,-0.51612
-3.84801,0.79921,-1.42588,-1.48883,-1.01640,2.16703,-0.51630
-3.84916,0.79900,-1.42636,-1.48819,-1.01665,2.16718,-0.51648
-3.85031,0.79880,-1.42683,-1.48757,-1.01691,2.16732,-0.51666
-3.85146,0.79860,-1.42729,-1.48695,-1.01715,2.16747,-0.51683
-3.85261,0.79840,-1.42774,-1.48635,-1.01740,2.16761,-0.51701
-3.85376,0.79820,-1.42819,-1.48576,-1.01764,2.16775,-0.51717
-3.85491,0.79801,-1.42862,-1.48517,-1.01788,2.16788,-0.51734
-3.85606,0.79782,-1.42905,-1.48459,-1.01812,2.16802,-0.51751
-3.85721,0.79764,-1.42948,-1.48403,-1.01835,2.16815,-0.51767
-3.85836,0.79746,-1.42989,-1.48347,-1.01858,2.16828,-0.51783
-3.85951,0.79728,-1.43030,-1.48292,-1.01881,2.16841,-0.51798
-3.86066,0.79710,-1.43070,-1.48238,-1.01903,2.16854,-0.51814
-3.86181,0.79693,-1.43110,-1.48185,-1.01925,2.16866,-0.51829
-3.86296,0.79691,-1.43114,-1.48178,-1.01928,2.16867,-0.51830
-3.86411,0.79672,-1.43161,-1.48115,-1.01953,2.16881,-0.51847
-3.86526,0.79653,-1.43207,-1.48053,-1.01979,2.16894,-0.51863
-3.86641,0.79635,-1.43251,-1.47992,-1.02004,2.16907,-0.51879
-3.86756,0.79617,-1.43296,-1.47931,-1.02029,2.16920,-0.51895
-3.86871,0.79599,-1.43339,-1.47872,-1.02053,2.16933,-0.51910
-3.86986,0.79582,-1.43382,-1.47814,-1.02077,2.16945,-0.51925
-3.87100,0.79565,-1.43423,-1.47756,-1.02101,2.16957,-0.51940
-3.87215,0.79548,-1.43465,-1.47700,-1.02125,2.16969,-0.51955
-3.87330,0.79531,-1.43505,-1.47644,-1.02148,2.16981,-0.51969
-3.87445,0.79515,-1.43545,-1.47589,-1.02171,2.16993,-0.51984
-3.87560,0.79502,-1.43577,-1.47544,-1.02189,2.17002,-0.51995
-3.87675,0.79484,-1.43626,-1.47476,-1.02217,2.17015,-0.52010
-3.87790,0.79467,-1.43674,-1.47408,-1.02245,2.17027,-0.52025
-3.87905,0.79450,-1.43722,-1.47342,-1.02272,2.17039,-0.52040
-3.88020,0.79434,-1.43768,-1.47276,-1.02299,2.17051,-0.52055
-3.88135,0.79417,-1.43814,-1.47212,-1.02326,2.17063,-0.52069
-3.88250,0.79401,-1.43859,-1.47148,-1.02352,2.17074,-0.52083
-3.88365,0.79385,-1.43903,-1.47086,-1.02378,2.17085,-0.52097
-3.88480,0.79370,-1.43946,-1.47024,-1.02404,2.17097,-0.52111
-3.88595,0.79354,-1.43989,-1.46964,-1.02429,2.17108,-0.52124
-3.88710,0.79339,-1.44031,-1.46904,-1.02454,2.17118,-0.52137
-3.88825,0.79324,-1.44072,-1.46846,-1.02479,2.17129,-0.52150
-3.88940,0.79310,-1.44112,-1.46788,-1.02503,2.17140,-0.52163
-3.89055,0.79295,-1.44152,-1.46732,-1.02527,2.17150,-0.52176
-3.89170,0.79281,-1.44191,-1.46676,-1.02550,2.17160,-0.52189
-3.89285,0.79278,-1.44200,-1.46662,-1.02556,2.17162,-0.52191
-3.89400,0.79264,-1.44252,-1.46586,-1.02587,2.17173,-0.52204
-3.89515,0.79249,-1.44303,-1.46511,-1.02618,2.17183,-0.52217
-3.89630,0.79235,-1.44353,-1.46437,-1.02649,2.17193,-0.52229
-3.89745,0.79221,-1.44403,-1.46364,-1.02679,2.17203,-0.52241
-3.89860,0.79207,-1.44451,-1.46293,-1.02709,2.17213,-0.52253
-3.89975,0.79194,-1.44499,-1.46222,-1.02738,2.17223,-0.52265
-3.90090,0.79180,-1.44545,-1.46153,-1.02767,2.17232,-0.52277
-3.90205,0.79167,-1.44591,-1.46085,-1.02796,2.17242,-0.52289
-3.90320,0.79154,-1.44637,-1.46017,-1.02824,2.17251,-0.52300
-3.90435,0.79142,-1.44681,-1.45951,-1.02852,2.17260,-0.52311
-3.90550,0.79129,-1.44725,-1.45886,-1.02880,2.17269,-0.52322
-3.90665,0.79117,-1.44768,-1.45822,-1.02907,2.17278,-0.52333
-3.90779,0.79104,-1.44810,-1.45759,-1.02933,2.17287,-0.52344
-3.90894,0.79092,-1.44851,-1.45697,-1.02960,2.17295,-0.52355
-3.91009,0.79081,-1.44892,-1.45636,-1.02986,2.17304,-0.52365
-3.91124,0.79069,-1.44932,-1.45576,-1.03012,2.17312,-0.52376
-3.91239,0.79058,-1.44972,-1.45517,-1.03037,2.17320,-0.52386
-3.91354,0.79046,-1.45011,-1.45459,-1.03062,2.17329,-0.52396
-3.91469,0.79041,-1.45031,-1.45428,-1.03075,2.17333,-0.52401
-3.91584,0.79030,-1.45078,-1.45355,-1.03106,2.17340,-0.52411
-3.91699,0.79019,-1.45125,-1.45284,-1.03136,2.17348,-0.52420
-3.91814,0.79009,-1.45171,-1.45213,-1.03166,2.17356,-0.52429
-3.91929,0.78998,-1.45216,-1.45143,-1.03195,2.17363,-0.52439
-3.92044,0.78988,-1.45260,-1.45075,-1.03224,2.17370,-0.52448
-3.92159,0.78978,-1.45304,-1.45008,-1.03253,2.17378,-0.52457
-3.92274,0.78968,-1.45347,-1.44941,-1.03281,2.17385,-0.52466
-3.92389,0.78958,-1.45389,-1.44876,-1.03309,2.17392,-0.52474
-3.92504,0.78949,-1.45430,-1.44812,-1.03337,2.17399,-0.52483
-3.92619,0.78939,-1.45471,-1.44749,-1.03364,2.17406,-0.52492
-3.92734,0.78930,-1.45511,-1.44687,-1.03391,2.17413,-0.52500
-3.92849,0.78921,-1.45550,-1.44625,-1.03417,2.17419,-0.52508
-3.92964,0.78911,-1.45589,-1.44565,-1.03443,2.17426,-0.52517
-3.93079,0.78903,-1.45627,-1.44506,-1.03469,2.17432,-0.52525
-3.93194,0.78900,-1.45639,-1.44487,-1.03478,2.17434,-0.52527
-3.93309,0.78893,-1.45685,-1.44412,-1.03509,2.17439,-0.52533
-3.93424,0.78886,-1.45731,-1.44338,-1.03541,2.17444,-0.52539
-3.93539,0.78880,-1.45775,-1.44266,-1.03572,2.17449,-0.52545
-3.93654,0.78873,-1.45819,-1.44195,-1.03603,2.17454,-0.52551
-3.93769,0.78867,-1.45862,-1.44124,-1.03633,2.17459,-0.52557
-3.93884,0.78860,-1.45905,-1.44055,-1.03663,2.17463,-0.52563
-3.93999,0.78854,-1.45947,-1.43987,-1.03692,2.17468,-0.52569
-3.94114,0.78848,-1.45988,-1.43921,-1.03721,2.17473,-0.52575
-3.94229,0.78841,-1.46028,-1.43855,-1.03750,2.17477,-0.52581
-3.94344,0.78835,-1.46068,-1.43790,-1.03778,2.17482,-0.52586
-3.94458,0.78829,-1.46107,-1.43726,-1.03806,2.17486,-0.52592
-3.94573,0.78823,-1.46145,-1.43664,-1.03833,2.17491,-0.52597
-3.94688,0.78817,-1.46183,-1.43602,-1.03860,2.17495,-0.52603
-3.94803,0.78811,-1.46220,-1.43541,-1.03887,2.17499,-0.52608
-3.94918,0.78809,-1.46239,-1.43510,-1.03901,2.17501,-0.52611
-3.95033,0.78802,-1.46284,-1.43436,-1.03932,2.17506,-0.52617
-3.95148,0.78796,-1.46329,-1.43363,-1.03964,2.17510,-0.52622
-3.95263,0.78790,-1.46372,-1.43292,-1.03995,2.17515,-0.52628
-3.95378,0.78784,-1.46415,-1.43221,-1.04025,2.17519,-0.52633
-3.95493,0.78778,-1.46457,-1.43152,-1.04055,2.17524,-0.52639
-3.95608,0.78773,-1.46499,-1.43084,-1.04085,2.17528,-0.52644
-3.95723,0.78767,-1.46540,-1.43017,-1.04114,2.17532,-0.52649
-3.95838,0.78761,-1.46580,-1.42951,-1.04143,2.17536,-0.52655
-3.95953,0.78756,-1.46619,-1.42886,-1.04171,2.17540,-0.52660
-3.96068,0.78750,-1.46658,-1.42822,-1.04199,2.17544,-0.52665
-3.96183,0.78745,-1.46696,-1.42759,-1.04226,2.17548,-0.52670
-3.96298,0.78739,-1.46734,-1.42697,-1.04254,2.17552,-0.52675
-3.96413,0.78734,-1.46771,-1.42636,-1.04280,2.17556,-0.52680
-3.96528,0.78732,-1.46786,-1.42611,-1.04292,2.17558,-0.52682
-3.96643,0.78727,-1.46829,-1.42539,-1.04322,2.17562,-0.52687
-3.96758,0.78721,-1.46872,-1.42469,-1.04353,2.17566,-0.52692
-3.96873,0.78716,-1.46914,-1.42400,-1.04383,2.17569,-0.52697
-3.96988,0.78711,-1.46955,-1.42332,-1.04413,2.17573,-0.52701
-3.97103,0.78706,-1.46995,-1.42265,-1.04442,2.17577,-0.52706
-3.97218,0.78701,-1.47035,-1.42199,-1.04471,2.17581,-0.52711
-3.97333,0.78696,-1.47074,-1.42134,-1.04499,2.17584,-0.52715
-3.97448,0.78691,-1.47112,-1.42070,-1.04527,2.17588,-0.52720
-3.97563,0.78687,-1.47150,-1.42007,-1.04555,2.17591,-0.52724
-3.97678,0.78682,-1.47187,-1.41945,-1.04582,2.17595,-0.52729
-3.97793,0.78677,-1.47224,-1.41883,-1.04610,2.17598,-0.52733
-3.97908,0.78674,-1.47268,-1.41808,-1.04642,2.17601,-0.52736
-3.98023,0.78671,-1.47312,-1.41734,-1.04674,2.17603,-0.52739
-3.98138,0.78667,-1.47355,-1.41661,-1.04706,2.17606,-0.52743
-3.98252,0.78664,-1.47397,-1.41590,-1.04737,2.17608,-0.52746
-3.98367,0.78661,-1.47438,-1.41519,-1.04768,2.17611,-0.52749
-3.98482,0.78657,-1.47479,-1.41450,-1.04798,2.17613,-0.52752
-3.98597,0.78654,-1.47519,-1.41382,-1.04828,2.17616,-0.52755
-3.98712,0.78651,-1.47558,-1.41314,-1.04858,2.17618,-0.52758
-3.98827,0.78648,-1.47597,-1.41248,-1.04887,2.17620,-0.52762
-3.98942,0.78645,-1.47635,-1.41183,-1.04916,2.17623,-0.52765
-3.99057,0.78642,-1.47672,-1.41119,-1.04944,2.17625,-0.52768
-3.99172,0.78639,-1.47709,-1.41056,-1.04972,2.17628,-0.52771
-3.99287,0.78635,-1.47745,-1.40994,-1.04999,2.17630,-0.52774
-3.99402,0.78634,-1.47768,-1.40956,-1.05016,2.17631,-0.52776
-3.99517,0.78631,-1.47811,-1.40882,-1.05049,2.17633,-0.52778
-3.99632,0.78629,-1.47853,-1.40809,-1.05080,2.17635,-0.52780
-3.99747,0.78627,-1.47894,-1.40737,-1.05112,2.17637,-0.52783
-3.99862,0.78624,-1.47935,-1.40667,-1.05143,2.17639,-0.52785
-3.99977,0.78622,-1.47976,-1.40597,-1.05173,2.17641,-0.52788
-4.00092,0.78619,-1.48015,-1.40529,-1.05203,2.17642,-0.52790
-4.00207,0.78617,-1.48054,-1.40462,-1.05233,2.17644,-0.52792
-4.00322,0.78615,-1.48092,-1.40396,-1.05262,2.17646,-0.52795
-4.00437,0.78612,-1.48130,-1.40330,-1.05291,2.17648,-0.52797
-4.00552,0.78610,-1.48167,-1.40266,-1.05320,2.17650,-0.52800
-4.00667,0.78608,-1.48203,-1.40203,-1.05348,2.17651,-0.52802
-4.00782,0.78605,-1.48239,-1.40141,-1.05375,2.17653,-0.52804
-4.00897,0.78605,-1.48254,-1.40115,-1.05387,2.17654,-0.52805
-4.01012,0.78606,-1.48297,-1.40036,-1.05421,2.17653,-0.52804
-4.01127,0.78608,-1.48340,-1.39959,-1.05455,2.17652,-0.52803
-4.01242,0.78609,-1.48382,-1.39883,-1.05489,2.17652,-0.52803
-4.01357,0.78610,-1.48423,-1.39809,-1.05522,2.17651,-0.52802
-4.01472,0.78611,-1.48464,-1.39735,-1.05554,2.17650,-0.52801
-4.01587,0.78612,-1.48504,-1.39663,-1.05586,2.17650,-0.52801
-4.01702,0.78613,-1.48543,-1.39592,-1.05618,2.17649,-0.52800
-4.01817,0.78614,-1.48581,-1.39522,-1.05649,2.17649,-0.52800
-4.01931,0.78615,-1.48619,-1.39453,-1.05680,2.17649,-0.52800
-4.02046,0.78616,-1.48657,-1.39385,-1.05710,2.17648,-0.52799
-4.02161,0.78616,-1.48694,-1.39318,-1.05740,2.17648,-0.52799
-4.02276,0.78617,-1.48730,-1.39252,-1.05770,2.17648,-0.52799
-4.02391,0.78618,-1.48765,-1.39188,-1.05799,2.17647,-0.52799
-4.02506,0.78618,-1.48800,-1.39124,-1.05827,2.17647,-0.52798
-4.02621,0.78619,-1.48835,-1.39061,-1.05855,2.17647,-0.52798
-4.02736,0.78620,-1.48853,-1.39028,-1.05870,2.17646,-0.52798
-4.02851,0.78625,-1.48896,-1.38946,-1.05907,2.17643,-0.52794
-4.02966,0.78631,-1.48938,-1.38865,-1.05943,2.17639,-0.52789
-4.03081,0.78636,-1.48980,-1.38785,-1.05978,2.17636,-0.52785
-4.03196,0.78641,-1.49021,-1.38707,-1.06013,2.17633,-0.52781
-4.03311,0.78646,-1.49062,-1.38630,-1.06047,2.17629,-0.52777
-4.03426,0.78651,-1.49102,-1.38554,-1.06081,2.17626,-0.52774
-4.03541,0.78655,-1.49141,-1.38479,-1.06115,2.17623,-0.52770
-4.03656,0.78660,-1.49179,-1.38405,-1.06148,2.17620,-0.52767
-4.03771,0.78664,-1.49217,-1.38333,-1.06180,2.17617,-0.52763
-4.03886,0.78668,-1.49255,-1.38262,-1.06212,2.17615,-0.52760
-4.04001,0.78673,-1.49291,-1.38192,-1.06244,2.17612,-0.52757
-4.04116,0.78677,-1.49327,-1.38123,-1.06275,2.17609,-0.52753
-4.04231,0.78681,-1.49363,-1.38055,-1.06306,2.17607,-0.52750
-4.04346,0.78684,-1.49398,-1.37988,-1.06336,2.17604,-0.52748
-4.04461,0.78688,-1.49432,-1.37922,-1.06366,2.17602,-0.52745
-4.04576,0.78692,-1.49466,-1.37857,-1.06395,2.17600,-0.52742
-4.04691,0.78695,-1.49499,-1.37794,-1.06424,2.17597,-0.52739
-4.04806,0.78699,-1.49532,-1.37731,-1.06453,2.17595,-0.52737
-4.04921,0.78701,-1.49546,-1.37704,-1.06465,2.17594,-0.52735
-4.05036,0.78709,-1.49585,-1.37626,-1.06500,2.17588,-0.52729
-4.05151,0.78716,-1.49624,-1.37550,-1.06534,2.17583,-0.52723
-4.05266,0.78724,-1.49661,-1.37474,-1.06568,2.17578,-0.52716
-4.05381,0.78732,-1.49699,-1.37400,-1.06602,2.17573,-0.52710
-4.05496,0.78739,-1.49735,-1.37327,-1.06635,2.17568,-0.52704
-4.05610,0.78746,-1.49771,-1.37255,-1.06667,2.17563,-0.52699
-4.05725,0.78753,-1.49807,-1.37184,-1.06700,2.17559,-0.52693
-4.05840,0.78760,-1.49842,-1.37114,-1.06731,2.17554,-0.52688
-4.05955,0.78766,-1.49876,-1.37046,-1.06763,2.17550,-0.52682
-4.06070,0.78773,-1.49910,-1.36978,-1.06793,2.17546,-0.52677
-4.06185,0.78779,-1.49944,-1.36912,-1.06824,2.17541,-0.52672
-4.06300,0.78785,-1.49976,-1.36846,-1.06854,2.17537,-0.52667
-4.06415,0.78791,-1.50009,-1.36782,-1.06883,2.17533,-0.52662
-4.06530,0.78797,-1.50040,-1.36718,-1.06912,2.17529,-0.52658
-4.06645,0.78803,-1.50071,-1.36656,-1.06941,2.17525,-0.52653
-4.06760,0.78805,-1.50081,-1.36637,-1.06950,2.17524,-0.52652
-4.06875,0.78814,-1.50115,-1.36567,-1.06981,2.17518,-0.52645
-4.06990,0.78822,-1.50148,-1.36498,-1.07013,2.17512,-0.52638
-4.07105,0.78831,-1.50181,-1.36431,-1.07044,2.17507,-0.52631
-4.07220,0.78839,-1.50213,-1.36364,-1.07074,2.17501,-0.52624
-4.07335,0.78847,-1.50245,-1.36299,-1.07104,2.17496,-0.52618
-4.07450,0.78854,-1.50276,-1.36235,-1.07134,2.17491,-0.52611
-4.07565,0.78862,-1.50307,-1.36171,-1.07163,2.17485,-0.52605
-4.07680,0.78870,-1.50337,-1.36109,-1.07192,2.17480,-0.52599
-4.07795,0.78875,-1.50359,-1.36065,-1.07212,2.17477,-0.52595
-4.07910,0.78884,-1.50395,-1.35989,-1.07246,2.17470,-0.52587
-4.08025,0.78894,-1.50431,-1.35916,-1.07280,2.17464,-0.52579
-4.08140,0.78903,-1.50467,-1.35843,-1.07313,2.17458,-0.52572
-4.08255,0.78912,-1.50502,-1.35771,-1.07345,2.17452,-0.52565
-4.08370,0.78921,-1.50536,-1.35701,-1.07378,2.17446,-0.52557
-4.08485,0.78929,-1.50570,-1.35631,-1.07409,2.17440,-0.52551
-4.08600,0.78937,-1.50603,-1.35563,-1.07440,2.17434,-0.52544
-4.08715,0.78946,-1.50636,-1.35496,-1.07471,2.17429,-0.52537
-4.08830,0.78953,-1.50668,-1.35430,-1.07501,2.17423,-0.52531
-4.08945,0.78961,-1.50700,-1.35365,-1.07531,2.17418,-0.52524
-4.09060,0.78969,-1.50731,-1.35301,-1.07561,2.17413,-0.52518
-4.09175,0.78976,-1.50762,-1.35238,-1.07590,2.17408,-0.52512
-4.09289,0.78984,-1.50792,-1.35176,-1.07618,2.17403,-0.52506
-4.09404,0.78985,-1.50795,-1.35168,-1.07622,2.17402,-0.52505
-4.09519,0.78995,-1.50831,-1.35094,-1.07655,2.17395,-0.52497
-4.09634,0.79005,-1.50866,-1.35021,-1.07689,2.17388,-0.52488
-4.09749,0.79015,-1.50900,-1.34949,-1.07722,2.17381,-0.52480
-4.09864,0.79025,-1.50934,-1.34878,-1.07754,2.17375,-0.52472
-4.09979,0.79035,-1.50968,-1.34808,-1.07786,2.17368,-0.52464
-4.10094,0.79044,-1.51001,-1.34740,-1.07817,2.17362,-0.52457
-4.10209,0.79053,-1.51033,-1.34672,-1.07848,2.17355,-0.52449
-4.10324,0.79062,-1.51065,-1.34606,-1.07879,2.17349,-0.52442
-4.10439,0.79071,-1.51096,-1.34540,-1.07909,2.17343,-0.52434
-4.10554,0.79080,-1.51127,-1.34476,-1.07938,2.17338,-0.52427
-4.10669,0.79088,-1.51157,-1.34412,-1.07968,2.17332,-0.52421
-4.10784,0.79096,-1.51187,-1.34350,-1.07996,2.17326,-0.52414
-4.10899,0.79101,-1.51205,-1.34312,-1.08014,2.17323,-0.52410
-4.11014,0.79113,-1.51241,-1.34238,-1.08048,2.17315,-0.52400
-4.11129,0.79124,-1.51275,-1.34165,-1.08081,2.17307,-0.52391
-4.11244,0.79135,-1.51309,-1.34093,-1.08114,2.17300,-0.52382
-4.11359,0.79145,-1.51342,-1.34022,-1.08146,2.17293,-0.52374
-4.11474,0.79156,-1.51375,-1.33952,-1.08178,2.17286,-0.52365
-4.11589,0.79166,-1.51408,-1.33884,-1.08210,2.17279,-0.52357
-4.11704,0.79176,-1.51440,-1.33816,-1.08241,2.17272,-0.52349
-4.11819,0.79185,-1.51471,-1.33750,-1.08271,2.17265,-0.52341
-4.11934,0.79195,-1.51502,-1.33685,-1.08301,2.17259,-0.52333
-4.12049,0.79204,-1.51532,-1.33620,-1.08331,2.17252,-0.52325
-4.12164,0.79213,-1.51562,-1.33557,-1.08360,2.17246,-0.52318
-4.12279,0.79222,-1.51592,-1.33495,-1.08389,2.17240,-0.52311
-4.12394,0.79228,-1.51610,-1.33457,-1.08407,2.17236,-0.52306
-4.12509,0.79240,-1.51644,-1.33382,-1.08441,2.17228,-0.52296
-4.12624,0.79251,-1.51679,-1.33309,-1.08474,2.17220,-0.52286
-4.12739,0.79263,-1.51712,-1.33238,-1.08507,2.17212,-0.52277
-4.12854,0.79274,-1.51745,-1.33167,-1.08539,2.17204,-0.52268
-4.12968,0.79285,-1.51778,-1.33097,-1.08571,2.17197,-0.52259
-4.13083,0.79296,-1.51810,-1.33029,-1.08603,2.17190,-0.52250
-4.13198,0.79306,-1.51841,-1.32961,-1.08634,2.17182,-0.52241
-4.13313,0.79317,-1.51872,-1.32895,-1.08664,2.17175,-0.52233
-4.13428,0.79327,-1.51903,-1.32830,-1.08695,2.17168,-0.52224
-4.13543,0.79336,-1.51933,-1.32765,-1.08724,2.17162,-0.52216
-4.13658,0.79346,-1.51963,-1.32702,-1.08754,2.17155,-0.52208
-4.13773,0.79356,-1.51992,-1.32640,-1.08782,2.17149,-0.52201
-4.13888,0.79361,-1.52010,-1.32602,-1.08800,2.17145,-0.52196
-4.14003,0.79374,-1.52041,-1.32532,-1.08832,2.17136,-0.52186
-4.14118,0.79386,-1.52073,-1.32464,-1.08864,2.17128,-0.52176
-4.14233,0.79397,-1.52103,-1.32397,-1.08895,2.17120,-0.52166
-4.14348,0.79409,-1.52134,-1.32330,-1.08925,2.17112,-0.52157
-4.14463,0.79420,-1.52164,-1.32265,-1.08956,2.17104,-0.52147
-4.14578,0.79431,-1.52193,-1.32201,-1.08985,2.17097,-0.52138
-4.14693,0.79442,-1.52222,-1.32138,-1.09015,2.17089,-0.52129
-4.14808,0.79453,-1.52250,-1.32075,-1.09044,2.17082,-0.52121
-4.14923,0.79462,-1.52276,-1.32019,-1.09070,2.17075,-0.52113
-4.15038,0.79475,-1.52307,-1.31950,-1.09102,2.17066,-0.52102
-4.15153,0.79488,-1.52338,-1.31882,-1.09133,2.17057,-0.52091
-4.15268,0.79501,-1.52368,-1.31815,-1.09164,2.17048,-0.52081
-4.15383,0.79514,-1.52397,-1.31749,-1.09195,2.17040,-0.52070
-4.15498,0.79526,-1.52426,-1.31684,-1.09225,2.17031,-0.52060
-4.15613,0.79538,-1.52455,-1.31620,-1.09255,2.17023,-0.52050
-4.15728,0.79550,-1.52483,-1.31557,-1.09284,2.17015,-0.52041
-4.15843,0.79561,-1.52511,-1.31495,-1.09313,2.17007,-0.52031
-4.15958,0.79572,-1.52539,-1.31434,-1.09342,2.16999,-0.52022
-4.16073,0.79585,-1.52568,-1.31368,-1.09372,2.16990,-0.52011
-4.16188,0.79598,-1.52596,-1.31304,-1.09402,2.16982,-0.52001
-4.16303,0.79610,-1.52625,-1.31241,-1.09432,2.16973,-0.51990
-4.16418,0.79622,-1.52652,-1.31178,-1.09461,2.16965,-0.51980
-4.16533,0.79634,-1.52679,-1.31117,-1.09489,2.16957,-0.51971
-4.16648,0.79641,-1.52696,-1.31080,-1.09507,2.16952,-0.51965
-4.16762,0.79655,-1.52725,-1.31013,-1.09538,2.16942,-0.51953
-4.16877,0.79669,-1.52754,-1.30947,-1.09569,2.16932,-0.51942
-4.16992,0.79682,-1.52783,-1.30883,-1.09599,2.16923,-0.51931
-4.17107,0.79696,-1.52810,-1.30819,-1.09629,2.16914,-0.51920
-4.17222,0.79708,-1.52838,-1.30756,-1.09658,2.16905,-0.51909
-4.17337,0.79721,-1.52865,-1.30694,-1.09687,2.16896,-0.51899
-4.17452,0.79733,-1.52892,-1.30633,-1.09715,2.16888,-0.51889
-4.17567,0.79737,-1.52900,-1.30615,-1.09724,2.16885,-0.51885
-4.17682,0.79751,-1.52928,-1.30550,-1.09754,2.16876,-0.51874
-4.17797,0.79765,-1.52956,-1.30486,-1.09784,2.16866,-0.51863
-4.17912,0.79778,-1.52983,-1.30423,-1.09814,2.16857,-0.51852
-4.18027,0.79791,-1.53010,-1.30361,-1.09842,2.16848,-0.51841
-4.18142,0.79804,-1.53037,-1.30300,-1.09871,2.16839,-0.51830
-4.18257,0.79811,-1.53053,-1.30264,-1.09888,2.16834,-0.51824
-4.18372,0.79824,-1.53079,-1.30203,-1.09917,2.16825,-0.51813
-4.18487,0.79836,-1.53103,-1.30148,-1.09942,2.16817,-0.51804
-4.18602,0.79850,-1.53130,-1.30085,-1.09972,2.16807,-0.51792
-4.18717,0.79863,-1.53157,-1.30023,-1.10001,2.16798,-0.51781
-4.18832,0.79876,-1.53183,-1.29962,-1.10029,2.16789,-0.51770
-4.18947,0.79887,-1.53204,-1.29914,-1.10052,2.16782,-0.51762
-4.19062,0.79900,-1.53231,-1.29853,-1.10081,2.16772,-0.51751
-4.19177,0.79909,-1.53249,-1.29810,-1.10101,2.16767,-0.51744
-4.19292,0.79887,-1.53228,-1.29865,-1.10080,2.16781,-0.51762
-4.19407,0.79867,-1.53206,-1.29918,-1.10059,2.16795,-0.51780
-4.19522,0.79860,-1.53199,-1.29935,-1.10052,2.16800,-0.51786
-4.19637,0.79836,-1.53174,-1.30000,-1.10026,2.16817,-0.51807
-4.19752,0.79812,-1.53148,-1.30064,-1.10000,2.16833,-0.51828
-4.19867,0.79788,-1.53124,-1.30126,-1.09975,2.16850,-0.51849
-4.19982,0.79765,-1.53099,-1.30188,-1.09950,2.16866,-0.51869
-4.20097,0.79742,-1.53075,-1.30249,-1.09926,2.16881,-0.51889
-4.20212,0.79720,-1.53051,-1.30308,-1.09902,2.16897,-0.51908
-4.20327,0.79698,-1.53028,-1.30367,-1.09878,2.16912,-0.51927
-4.20441,0.79676,-1.53005,-1.30425,-1.09855,2.16927,-0.51946
-4.20556,0.79655,-1.52983,-1.30481,-1.09832,2.16941,-0.51964
-4.20671,0.79635,-1.52961,-1.30537,-1.09809,2.16955,-0.51982
-4.20786,0.79614,-1.52939,-1.30592,-1.09787,2.16969,-0.52000
-4.20901,0.79594,-1.52917,-1.30646,-1.09765,2.16983,-0.52017
-4.21016,0.79590,-1.52913,-1.30658,-1.09760,2.16986,-0.52021
-4.21131,0.79566,-1.52890,-1.30718,-1.09735,2.17003,-0.52041
-4.21246,0.79543,-1.52867,-1.30778,-1.09710,2.17019,-0.52061
-4.21361,0.79520,-1.52845,-1.30836,-1.09686,2.17034,-0.52081
-4.21476,0.79498,-1.52823,-1.30894,-1.09662,2.17050,-0.52100
-4.21591,0.79476,-1.52801,-1.30951,-1.09638,2.17065,-0.52119
-4.21706,0.79454,-1.52780,-1.31006,-1.09615,2.17080,-0.52138
-4.21821,0.79433,-1.52759,-1.31061,-1.09592,2.17094,-0.52156
-4.21936,0.79413,-1.52738,-1.31115,-1.09570,2.17109,-0.52174
-4.22051,0.79393,-1.52719,-1.31165,-1.09549,2.17122,-0.52191
-4.22166,0.79366,-1.52693,-1.31235,-1.09519,2.17141,-0.52215
-4.22281,0.79338,-1.52667,-1.31305,-1.09489,2.17160,-0.52239
-4.22396,0.79311,-1.52642,-1.31373,-1.09460,2.17179,-0.52262
-4.22511,0.79285,-1.52617,-1.31440,-1.09432,2.17197,-0.52285
-4.22626,0.79259,-1.52593,-1.31506,-1.09404,2.17215,-0.52307
-4.22741,0.79233,-1.52568,-1.31571,-1.09376,2.17232,-0.52329
-4.22856,0.79208,-1.52545,-1.31635,-1.09349,2.17249,-0.52350
-4.22971,0.79184,-1.52521,-1.31697,-1.09322,2.17266,-0.52372
-4.23086,0.79160,-1.52499,-1.31759,-1.09295,2.17283,-0.52392
-4.23201,0.79136,-1.52476,-1.31820,-1.09269,2.17299,-0.52413
-4.23316,0.79113,-1.52454,-1.31880,-1.09244,2.17315,-0.52433
-4.23431,0.79091,-1.52432,-1.31938,-1.09218,2.17331,-0.52452
-4.23546,0.79068,-1.52410,-1.31996,-1.09194,2.17346,-0.52471
-4.23661,0.79046,-1.52389,-1.32053,-1.09169,2.17362,-0.52490
-4.23776,0.79025,-1.52369,-1.32108,-1.09145,2.17376,-0.52509
-4.23891,0.79004,-1.52348,-1.32163,-1.09121,2.17391,-0.52527
-4.24006,0.78983,-1.52328,-1.32217,-1.09098,2.17405,-0.52545
-4.24120,0.78962,-1.52308,-1.32272,-1.09074,2.17420,-0.52563
-4.24235,0.78932,-1.52283,-1.32343,-1.09043,2.17440,-0.52589
-4.24350,0.78903,-1.52258,-1.32413,-1.09013,2.17460,-0.52614
-4.24465,0.78875,-1.52234,-1.32482,-1.08982,2.17480,-0.52638
-4.24580,0.78847,-1.52210,-1.32549,-1.08953,2.17499,-0.52662
-4.24695,0.78820,-1.52187,-1.32615,-1.08924,2.17518,-0.52686
-4.24810,0.78793,-1.52164,-1.32681,-1.08895,2.17537,-0.52709
-4.24925,0.78766,-1.52141,-1.32745,-1.08867,2.17555,-0.52732
-4.25040,0.78740,-1.52119,-1.32808,-1.08839,2.17573,-0.52754
-4.25155,0.78715,-1.52097,-1.32870,-1.08811,2.17590,-0.52776
-4.25270,0.78690,-1.52076,-1.32931,-1.08785,2.17608,-0.52798
-4.25385,0.78666,-1.52055,-1.32991,-1.08758,2.17625,-0.52819
-4.25500,0.78642,-1.52034,-1.33050,-1.08732,2.17641,-0.52839
-4.25615,0.78618,-1.52014,-1.33108,-1.08706,2.17657,-0.52860
-4.25730,0.78595,-1.51993,-1.33165,-1.08681,2.17673,-0.52880
-4.25845,0.78572,-1.51974,-1.33221,-1.08656,2.17689,-0.52899
-4.25960,0.78550,-1.51954,-1.33276,-1.08632,2.17704,-0.52918
-4.26075,0.78528,-1.51935,-1.33330,-1.08608,2.17720,-0.52937
-4.26190,0.78507,-1.51916,-1.33384,-1.08584,2.17734,-0.52956
-4.26305,0.78486,-1.51898,-1.33436,-1.08561,2.17749,-0.52974
-4.26420,0.78474,-1.51888,-1.33465,-1.08548,2.17757,-0.52984
-4.26535,0.78438,-1.51864,-1.33541,-1.08514,2.17782,-0.53015
-4.26650,0.78404,-1.51840,-1.33616,-1.08480,2.17806,-0.53045
-4.26765,0.78370,-1.51817,-1.33689,-1.08447,2.17829,-0.53074
-4.26880,0.78336,-1.51794,-1.33762,-1.08414,2.17852,-0.53103
-4.26995,0.78303,-1.51771,-1.33833,-1.08382,2.17875,-0.53131
-4.27110,0.78271,-1.51749,-1.33903,-1.08350,2.17897,-0.53159
-4.27225,0.78240,-1.51727,-1.33972,-1.08319,2.17919,-0.53186
-4.27340,0.78208,-1.51706,-1.34039,-1.08288,2.17940,-0.53213
-4.27455,0.78178,-1.51685,-1.34106,-1.08258,2.17961,-0.53239
-4.27570,0.78148,-1.51664,-1.34171,-1.08229,2.17982,-0.53265
-4.27685,0.78119,-1.51643,-1.34235,-1.08199,2.18002,-0.53290
-4.27799,0.78090,-1.51623,-1.34299,-1.08171,2.18022,-0.53315
-4.27914,0.78062,-1.51603,-1.34361,-1.08142,2.18041,-0.53340
-4.28029,0.78034,-1.51584,-1.34422,-1.08115,2.18061,-0.53364
-4.28144,0.78007,-1.51565,-1.34482,-1.08087,2.18079,-0.53387
-4.28259,0.77980,-1.51546,-1.34541,-1.08061,2.18098,-0.53410
-4.28374,0.77954,-1.51528,-1.34599,-1.08034,2.18116,-0.53433
-4.28489,0.77928,-1.51509,-1.34656,-1.08008,2.18134,-0.53455
-4.28604,0.77903,-1.51491,-1.34712,-1.07982,2.18151,-0.53477
-4.28719,0.77878,-1.51474,-1.34767,-1.07957,2.18168,-0.53498
-4.28834,0.77854,-1.51456,-1.34822,-1.07932,2.18185,-0.53519
-4.28949,0.77830,-1.51439,-1.34875,-1.07908,2.18202,-0.53540
-4.29064,0.77807,-1.51423,-1.34927,-1.07884,2.18218,-0.53560
-4.29179,0.77784,-1.51406,-1.34979,-1.07860,2.18234,-0.53580
-4.29294,0.77761,-1.51390,-1.35030,-1.07837,2.18249,-0.53600
-4.29409,0.77738,-1.51374,-1.35081,-1.07814,2.18265,-0.53620
-4.29524,0.77707,-1.51355,-1.35144,-1.07785,2.18287,-0.53647
-4.29639,0.77676,-1.51337,-1.35205,-1.07756,2.18308,-0.53673
-4.29754,0.77646,-1.51320,-1.35266,-1.07728,2.18328,-0.53699
-4.29869,0.77617,-1.51302,-1.35326,-1.07701,2.18349,-0.53725
-4.29984,0.77588,-1.51285,-1.35385,-1.07673,2.18369,-0.53750
-4.30099,0.77559,-1.51268,-1.35442,-1.07647,2.18388,-0.53774
-4.30214,0.77531,-1.51252,-1.35499,-1.07621,2.18407,-0.53799
-4.30329,0.77504,-1.51235,-1.35555,-1.07595,2.18426,-0.53822
-4.30444,0.77477,-1.51219,-1.35610,-1.07569,2.18445,-0.53846
-4.30559,0.77451,-1.51204,-1.35664,-1.07544,2.18463,-0.53868
-4.30674,0.77425,-1.51188,-1.35716,-1.07520,2.18481,-0.53891
-4.30789,0.77400,-1.51173,-1.35769,-1.07496,2.18498,-0.53913
-4.30904,0.77375,-1.51158,-1.35820,-1.07472,2.18516,-0.53934
-4.31019,0.77350,-1.51143,-1.35870,-1.07448,2.18532,-0.53956
-4.31134,0.77326,-1.51129,-1.35920,-1.07425,2.18549,-0.53976
-4.31249,0.77303,-1.51114,-1.35968,-1.07403,2.18565,-0.53997
-4.31364,0.77283,-1.51103,-1.36009,-1.07384,2.18579,-0.54014
-4.31479,0.77247,-1.51085,-1.36075,-1.07353,2.18604,-0.54045
-4.31593,0.77212,-1.51068,-1.36141,-1.07322,2.18628,-0.54076
-4.31708,0.77177,-1.51051,-1.36205,-1.07292,2.18652,-0.54106
-4.31823,0.77143,-1.51034,-1.36268,-1.07263,2.18675,-0.54135
-4.31938,0.77110,-1.51018,-1.36331,-1.07234,2.18698,-0.54164
-4.32053,0.77077,-1.51001,-1.36392,-1.07205,2.18720,-0.54193
-4.32168,0.77045,-1.50985,-1.36452,-1.07177,2.18742,-0.54220
-4.32283,0.77014,-1.50970,-1.36511,-1.07150,2.18764,-0.54248
-4.32398,0.76983,-1.50954,-1.36569,-1.07122,2.18785,-0.54275
-4.32513,0.76953,-1.50939,-1.36626,-1.07096,2.18806,-0.54301
-4.32628,0.76923,-1.50924,-1.36682,-1.07069,2.18826,-0.54327
-4.32743,0.76894,-1.50910,-1.36737,-1.07044,2.18846,-0.54352
-4.32858,0.76865,-1.50895,-1.36792,-1.07018,2.18866,-0.54377
-4.32973,0.76837,-1.50881,-1.36845,-1.06993,2.18886,-0.54402
-4.33088,0.76809,-1.50867,-1.36897,-1.06969,2.18905,-0.54426
-4.33203,0.76782,-1.50853,-1.36949,-1.06944,2.18923,-0.54449
-4.33318,0.76756,-1.50840,-1.36999,-1.06921,2.18941,-0.54473
-4.33433,0.76730,-1.50827,-1.37049,-1.06897,2.18959,-0.54495
-4.33548,0.76704,-1.50813,-1.37098,-1.06874,2.18977,-0.54518
-4.33663,0.76679,-1.50801,-1.37146,-1.06852,2.18994,-0.54540
-4.33778,0.76654,-1.50788,-1.37193,-1.06829,2.19011,-0.54561
-4.33893,0.76630,-1.50775,-1.37240,-1.06808,2.19028,-0.54582
-4.34008,0.76622,-1.50771,-1.37256,-1.06800,2.19034,-0.54589
-4.34123,0.76588,-1.50754,-1.37319,-1.06771,2.19057,-0.54619
-4.34238,0.76556,-1.50737,-1.37382,-1.06742,2.19079,-0.54647
-4.34353,0.76524,-1.50721,-1.37443,-1.06713,2.19101,-0.54675
-4.34468,0.76492,-1.50705,-1.37504,-1.06685,2.19123,-0.54703
-4.34583,0.76461,-1.50689,-1.37563,-1.06657,2.19144,-0.54730
-4.34698,0.76431,-1.50673,-1.37621,-1.06630,2.19165,-0.54757
-4.34813,0.76401,-1.50657,-1.37679,-1.06603,2.19186,-0.54783
-4.34928,0.76371,-1.50642,-1.37735,-1.06577,2.19206,-0.54809
-4.35043,0.76343,-1.50627,-1.37791,-1.06551,2.19225,-0.54834
-4.35158,0.76314,-1.50612,-1.37845,-1.06525,2.19245,-0.54858
-4.35272,0.76287,-1.50598,-1.37899,-1.06500,2.19264,-0.54883
-4.35387,0.76259,-1.50584,-1.37951,-1.06476,2.19283,-0.54907
-4.35502,0.76233,-1.50570,-1.38003,-1.06451,2.19301,-0.54930
-4.35617,0.76207,-1.50556,-1.38054,-1.06428,2.19319,-0.54953
-4.35732,0.76181,-1.50542,-1.38104,-1.06404,2.19337,-0.54975
-4.35847,0.76156,-1.50529,-1.38153,-1.06381,2.19354,-0.54998
-4.35962,0.76131,-1.50516,-1.38202,-1.06358,2.19371,-0.55019
-4.36077,0.76107,-1.50503,-1.38249,-1.06336,2.19388,-0.55041
-4.36192,0.76083,-1.50490,-1.38296,-1.06314,2.19404,-0.55062
-4.36307,0.76077,-1.50487,-1.38306,-1.06309,2.19408,-0.55066
-4.36422,0.76049,-1.50470,-1.38366,-1.06282,2.19427,-0.55091
-4.36537,0.76021,-1.50453,-1.38424,-1.06255,2.19446,-0.55116
-4.36652,0.75993,-1.50436,-1.38481,-1.06228,2.19465,-0.55140
-4.36767,0.75967,-1.50419,-1.38538,-1.06202,2.19484,-0.55164
-4.36882,0.75940,-1.50403,-1.38593,-1.06177,2.19502,-0.55187
-4.36997,0.75914,-1.50387,-1.38648,-1.06152,2.19520,-0.55210
-4.37112,0.75889,-1.50371,-1.38701,-1.06127,2.19537,-0.55232
-4.37227,0.75864,-1.50356,-1.38754,-1.06102,2.19554,-0.55254
-4.37342,0.75839,-1.50340,-1.38806,-1.06078,2.19571,-0.55276
-4.37457,0.75815,-1.50325,-1.38856,-1.06055,2.19588,-0.55297
-4.37572,0.75791,-1.50311,-1.38906,-1.06032,2.19604,-0.55318
-4.37687,0.75768,-1.50296,-1.38956,-1.06009,2.19620,-0.55338
-4.37802,0.75745,-1.50282,-1.39004,-1.05986,2.19635,-0.55358
-4.37917,0.75740,-1.50279,-1.39015,-1.05981,2.19639,-0.55362
-4.38032,0.75714,-1.50261,-1.39072,-1.05955,2.19657,-0.55385
-4.38147,0.75689,-1.50244,-1.39129,-1.05929,2.19674,-0.55408
-4.38262,0.75663,-1.50227,-1.39184,-1.05903,2.19692,-0.55430
-4.38377,0.75639,-1.50210,-1.39239,-1.05878,2.19708,-0.55452
-4.38492,0.75615,-1.50193,-1.39292,-1.05854,2.19725,-0.55473
-4.38607,0.75591,-1.50177,-1.39345,-1.05829,2.19741,-0.55494
-4.38722,0.75567,-1.50161,-1.39397,-1.05805,2.19757,-0.55515
-4.38837,0.75544,-1.50145,-1.39448,-1.05782,2.19773,-0.55535
-4.38951,0.75522,-1.50130,-1.39498,-1.05759,2.19789,-0.55555
-4.39066,0.75500,-1.50115,-1.39547,-1.05736,2.19804,-0.55575
-4.39181,0.75493,-1.50110,-1.39563,-1.05729,2.19808,-0.55581
-4.39296,0.75468,-1.50092,-1.39620,-1.05703,2.19825,-0.55603
-4.39411,0.75444,-1.50074,-1.39675,-1.05677,2.19842,-0.55624
-4.39526,0.75420,-1.50057,-1.39730,-1.05652,2.19858,-0.55645
-4.39641,0.75397,-1.50040,-1.39784,-1.05627,2.19875,-0.55666
-4.39756,0.75374,-1.50023,-1.39837,-1.05603,2.19890,-0.55686
-4.39871,0.75351,-1.50006,-1.39889,-1.05579,2.19906,-0.55706
-4.39986,0.75329,-1.49990,-1.39940,-1.05556,2.19921,-0.55726
-4.40101,0.75307,-1.49974,-1.39990,-1.05533,2.19936,-0.55745
-4.40216,0.75292,-1.49963,-1.40026,-1.05516,2.19946,-0.55759
-4.40331,0.75265,-1.49942,-1.40088,-1.05488,2.19964,-0.55782
-4.40446,0.75240,-1.49922,-1.40150,-1.05460,2.19982,-0.55805
-4.40561,0.75214,-1.49903,-1.40210,-1.05433,2.19999,-0.55827
-4.40676,0.75189,-1.49883,-1.40269,-1.05406,2.20016,-0.55849
-4.40791,0.75165,-1.49864,-1.40327,-1.05379,2.20033,-0.55871
-4.40906,0.75141,-1.49846,-1.40384,-1.05353,2.20049,-0.55892
-4.41021,0.75118,-1.49827,-1.40440,-1.05328,2.20065,-0.55912
-4.41136,0.75095,-1.49809,-1.40496,-1.05302,2.20081,-0.55933
-4.41251,0.75072,-1.49791,-1.40550,-1.05278,2.20096,-0.55953
-4.41366,0.75050,-1.49774,-1.40603,-1.05253,2.20112,-0.55973
-4.41481,0.75028,-1.49757,-1.40656,-1.05229,2.20126,-0.55992
-4.41596,0.75007,-1.49740,-1.40707,-1.05205,2.20141,-0.56011
-4.41711,0.74986,-1.49723,-1.40758,-1.05182,2.20155,-0.56029
-4.41826,0.74977,-1.49715,-1.40781,-1.05172,2.20161,-0.56037
-4.41941,0.74949,-1.49688,-1.40856,-1.05138,2.20180,-0.56062
-4.42056,0.74922,-1.49661,-1.40930,-1.05105,2.20199,-0.56086
-4.42171,0.74896,-1.49635,-1.41003,-1.05073,2.20217,-0.56109
-4.42286,0.74870,-1.49609,-1.41074,-1.05041,2.20234,-0.56132
-4.42401,0.74844,-1.49583,-1.41144,-1.05010,2.20252,-0.56155
-4.42516,0.74819,-1.49558,-1.41214,-1.04979,2.20269,-0.56177
-4.42630,0.74795,-1.49534,-1.41282,-1.04948,2.20286,-0.56199
-4.42745,0.74770,-1.49509,-1.41348,-1.04919,2.20302,-0.56221
-4.42860,0.74747,-1.49486,-1.41414,-1.04889,2.20318,-0.56242
-4.42975,0.74724,-1.49462,-1.41479,-1.04860,2.20334,-0.56262
-4.43090,0.74701,-1.49439,-1.41542,-1.04832,2.20350,-0.56283
-4.43205,0.74678,-1.49416,-1.41604,-1.04804,2.20365,-0.56303
-4.43320,0.74656,-1.49394,-1.41666,-1.04776,2.20380,-0.56322
-4.43435,0.74635,-1.49372,-1.41726,-1.04749,2.20394,-0.56341
-4.43550,0.74614,-1.49351,-1.41785,-1.04722,2.20409,-0.56360
-4.43665,0.74593,-1.49330,-1.41844,-1.04696,2.20423,-0.56378
-4.43780,0.74573,-1.49309,-1.41901,-1.04670,2.20437,-0.56397
-4.43895,0.74553,-1.49288,-1.41957,-1.04645,2.20450,-0.56414
-4.44010,0.74533,-1.49268,-1.42012,-1.04620,2.20464,-0.56432
-4.44125,0.74514,-1.49248,-1.42067,-1.04595,2.20477,-0.56449
-4.44240,0.74495,-1.49229,-1.42120,-1.04571,2.20490,-0.56465
-4.44355,0.74478,-1.49211,-1.42170,-1.04548,2.20502,-0.56481
-4.44470,0.74453,-1.49183,-1.42243,-1.04516,2.20519,-0.56503
-4.44585,0.74428,-1.49157,-1.42315,-1.04484,2.20535,-0.56525
-4.44700,0.74404,-1.49130,-1.42385,-1.04453,2.20552,-0.56547
-4.44815,0.74380,-1.49104,-1.42454,-1.04422,2.20568,-0.56568
-4.44930,0.74357,-1.49079,-1.42522,-1.04391,2.20584,-0.56589
-4.45045,0.74334,-1.49054,-1.42589,-1.04362,2.20599,-0.56609
-4.45160,0.74312,-1.49029,-1.42655,-1.04332,2.20614,-0.56629
-4.45275,0.74290,-1.49005,-1.42720,-1.04303,2.20629,-0.56648
-4.45390,0.74269,-1.48981,-1.42783,-1.04275,2.20644,-0.56668
-4.45505,0.74248,-1.48958,-1.42846,-1.04247,2.20658,-0.56686
-4.45620,0.74227,-1.48935,-1.42907,-1.04219,2.20672,-0.56705
-4.45735,0.74207,-1.48912,-1.42968,-1.04192,2.20686,-0.56723
-4.45850,0.74187,-1.48890,-1.43027,-1.04165,2.20700,-0.56741
-4.45965,0.74167,-1.48868,-1.43085,-1.04139,2.20713,-0.56758
-4.46080,0.74148,-1.48847,-1.43143,-1.04113,2.20726,-0.56775
-4.46195,0.74129,-1.48826,-1.43199,-1.04088,2.20739,-0.56792
-4.46309,0.74111,-1.48805,-1.43255,-1.04063,2.20751,-0.56809
-4.46424,0.74092,-1.48784,-1.43309,-1.04038,2.20764,-0.56825
-4.46539,0.74075,-1.48764,-1.43363,-1.04014,2.20776,-0.56841
-4.46654,0.74067,-1.48756,-1.43385,-1.04004,2.20781,-0.56847
-4.46769,0.74048,-1.48730,-1.43450,-1.03975,2.20794,-0.56864
-4.46884,0.74029,-1.48705,-1.43513,-1.03947,2.20807,-0.56881
-4.46999,0.74011,-1.48680,-1.43576,-1.03919,2.20819,-0.56898
-4.47114,0.73993,-1.48655,-1.43637,-1.03892,2.20832,-0.56914
-4.47229,0.73975,-1.48631,-1.43698,-1.03865,2.20844,-0.56930
-4.47344,0.73957,-1.48607,-1.43757,-1.03839,2.20856,-0.56945
-4.47459,0.73940,-1.48584,-1.43815,-1.03813,2.20867,-0.56961
-4.47574,0.73923,-1.48561,-1.43873,-1.03787,2.20879,-0.56976
-4.47689,0.73907,-1.48539,-1.43929,-1.03762,2.20890,-0.56991
-4.47804,0.73890,-1.48517,-1.43984,-1.03737,2.20901,-0.57005
-4.47919,0.73878,-1.48499,-1.44029,-1.03717,2.20910,-0.57017
-4.48034,0.73860,-1.48473,-1.44092,-1.03689,2.20922,-0.57033
-4.48149,0.73842,-1.48448,-1.44154,-1.03662,2.20934,-0.57048
-4.48264,0.73825,-1.48423,-1.44215,-1.03635,2.20946,-0.57064
-4.48379,0.73808,-1.48398,-1.44275,-1.03608,2.20957,-0.57079
-4.48494,0.73791,-1.48374,-1.44334,-1.03582,2.20968,-0.57094
-4.48609,0.73775,-1.48351,-1.44392,-1.03556,2.20979,-0.57109
-4.48724,0.73759,-1.48328,-1.44449,-1.03531,2.20990,-0.57123
-4.48839,0.73743,-1.48305,-1.44505,-1.03506,2.21001,-0.57137
-4.48954,0.73728,-1.48282,-1.44562,-1.03481,2.21012,-0.57151
-4.49069,0.73711,-1.48254,-1.44626,-1.03452,2.21023,-0.57165
-4.49184,0.73695,-1.48227,-1.44690,-1.03424,2.21034,-0.57180
-4.49299,0.73679,-1.48200,-1.44753,-1.03397,2.21044,-0.57194
-4.49414,0.73664,-1.48174,-1.44814,-1.03370,2.21055,-0.57208
-4.49529,0.73649,-1.48148,-1.44875,-1.03343,2.21065,-0.57221
-4.49644,0.73634,-1.48123,-1.44934,-1.03317,2.21075,-0.57235
-4.49759,0.73619,-1.48098,-1.44993,-1.03291,2.21085,-0.57248
-4.49874,0.73605,-1.48074,-1.45050,-1.03265,2.21095,-0.57261
-4.49989,0.73591,-1.48049,-1.45107,-1.03240,2.21104,-0.57273
-4.50103,0.73584,-1.48037,-1.45136,-1.03227,2.21109,-0.57279
-4.50218,0.73568,-1.48007,-1.45203,-1.03198,2.21120,-0.57293
-4.50333,0.73553,-1.47978,-1.45269,-1.03169,2.21130,-0.57307
-4.50448,0.73538,-1.47950,-1.45334,-1.03141,2.21140,-0.57321
-4.50563,0.73523,-1.47922,-1.45398,-1.03113,2.21150,-0.57334
-4.50678,0.73509,-1.47894,-1.45461,-1.03085,2.21160,-0.57347
-4.50793,0.73494,-1.47867,-1.45523,-1.03058,2.21170,-0.57359
-4.50908,0.73481,-1.47840,-1.45583,-1.03032,2.21179,-0.57372
-4.51023,0.73467,-1.47814,-1.45643,-1.03005,2.21188,-0.57384
-4.51138,0.73454,-1.47788,-1.45702,-1.02980,2.21197,-0.57396
-4.51253,0.73441,-1.47763,-1.45759,-1.02954,2.21206,-0.57408
-4.51368,0.73428,-1.47738,-1.45816,-1.02929,2.21215,-0.57419
-4.51483,0.73426,-1.47734,-1.45823,-1.02926,2.21216,-0.57420
-4.51598,0.73411,-1.47701,-1.45896,-1.02895,2.21226,-0.57434
-4.51713,0.73397,-1.47669,-1.45967,-1.02864,2.21236,-0.57447
-4.51828,0.73382,-1.47637,-1.46037,-1.02834,2.21245,-0.57460
-4.51943,0.73368,-1.47605,-1.46105,-1.02804,2.21255,-0.57472
-4.52058,0.73355,-1.47575,-1.46173,-1.02775,2.21264,-0.57485
-4.52173,0.73341,-1.47544,-1.46239,-1.02746,2.21273,-0.57497
-4.52288,0.73328,-1.47514,-1.46304,-1.02718,2.21282,-0.57509
-4.52403,0.73315,-1.47485,-1.46368,-1.02690,2.21291,-0.57520
-4.52518,0.73302,-1.47456,-1.46432,-1.02662,2.21300,-0.57532
-4.52633,0.73290,-1.47428,-1.46494,-1.02635,2.21308,-0.57543
-4.52748,0.73278,-1.47400,-1.46555,-1.02609,2.21316,-0.57554
-4.52863,0.73266,-1.47373,-1.46614,-1.02582,2.21324,-0.57564
-4.52978,0.73254,-1.47346,-1.46673,-1.02557,2.21332,-0.57575
-4.53093,0.73243,-1.47319,-1.46731,-1.02531,2.21340,-0.57585
-4.53208,0.73235,-1.47303,-1.46767,-1.02515,2.21345,-0.57591
-4.53323,0.73221,-1.47268,-1.46842,-1.02483,2.21354,-0.57604
-4.53438,0.73207,-1.47234,-1.46915,-1.02452,2.21364,-0.57616
-4.53553,0.73194,-1.47200,-1.46987,-1.02421,2.21373,-0.57629
-4.53668,0.73181,-1.47167,-1.47058,-1.02390,2.21382,-0.57641
-4.53782,0.73167,-1.47134,-1.47128,-1.02360,2.21391,-0.57652
-4.53897,0.73155,-1.47102,-1.47196,-1.02331,2.21399,-0.57664
-4.54012,0.73142,-1.47071,-1.47263,-1.02301,2.21408,-0.57675
-4.54127,0.73130,-1.47040,-1.47329,-1.02273,2.21416,-0.57686
-4.54242,0.73118,-1.47010,-1.47394,-1.02244,2.21424,-0.57697
-4.54357,0.73106,-1.46980,-1.47458,-1.02217,2.21432,-0.57707
-4.54472,0.73094,-1.46951,-1.47521,-1.02189,2.21440,-0.57718
-4.54587,0.73083,-1.46922,-1.47583,-1.02162,2.21448,-0.57728
-4.54702,0.73072,-1.46893,-1.47644,-1.02136,2.21455,-0.57738
-4.54817,0.73061,-1.46865,-1.47704,-1.02110,2.21462,-0.57747
-4.54932,0.73051,-1.46838,-1.47762,-1.02084,2.21470,-0.57757
-4.55047,0.73040,-1.46811,-1.47820,-1.02059,2.21477,-0.57766
-4.55162,0.73039,-1.46808,-1.47827,-1.02056,2.21477,-0.57767
-4.55277,0.73025,-1.46774,-1.47899,-1.02025,2.21487,-0.57780
-4.55392,0.73012,-1.46741,-1.47970,-1.01994,2.21496,-0.57791
-4.55507,0.72999,-1.46709,-1.48039,-1.01964,2.21504,-0.57803
-4.55622,0.72986,-1.46677,-1.48108,-1.01934,2.21513,-0.57815
-4.55737,0.72974,-1.46645,-1.48175,-1.01905,2.21521,-0.57826
-4.55852,0.72961,-1.46615,-1.48241,-1.01876,2.21530,-0.57837
-4.55967,0.72949,-1.46584,-1.48306,-1.01848,2.21538,-0.57848
-4.56082,0.72937,-1.46555,-1.48370,-1.01820,2.21546,-0.57858
-4.56197,0.72926,-1.46525,-1.48432,-1.01793,2.21553,-0.57868
-4.56312,0.72915,-1.46497,-1.48494,-1.01766,2.21561,-0.57879
-4.56427,0.72904,-1.46468,-1.48555,-1.01740,2.21568,-0.57888
-4.56542,0.72893,-1.46440,-1.48614,-1.01714,2.21576,-0.57898
-4.56657,0.72882,-1.46413,-1.48673,-1.01688,2.21583,-0.57908
-4.56772,0.72872,-1.46386,-1.48731,-1.01663,2.21590,-0.57917
-4.56887,0.72869,-1.46381,-1.48743,-1.01657,2.21591,-0.57919
-4.57002,0.72857,-1.46350,-1.48809,-1.01629,2.21600,-0.57930
-4.57117,0.72844,-1.46320,-1.48873,-1.01600,2.21608,-0.57941
-4.57232,0.72832,-1.46291,-1.48937,-1.01573,2.21616,-0.57952
-4.57347,0.72821,-1.46262,-1.48999,-1.01546,2.21624,-0.57962
-4.57461,0.72809,-1.46234,-1.49061,-1.01519,2.21632,-0.57973
-4.57576,0.72798,-1.46206,-1.49121,-1.01492,2.21640,-0.57983
-4.57691,0.72787,-1.46178,-1.49180,-1.01466,2.21647,-0.57993
-4.57806,0.72776,-1.46151,-1.49239,-1.01441,2.21654,-0.58003
-4.57921,0.72765,-1.46125,-1.49296,-1.01415,2.21661,-0.58012
-4.58036,0.72764,-1.46121,-1.49304,-1.01412,2.21662,-0.58013
-4.58151,0.72752,-1.46083,-1.49380,-1.01380,2.21670,-0.58023
-4.58266,0.72741,-1.46046,-1.49455,-1.01348,2.21678,-0.58034
-4.58381,0.72730,-1.46010,-1.49529,-1.01316,2.21685,-0.58044
-4.58496,0.72719,-1.45974,-1.49602,-1.01285,2.21692,-0.58053
-4.58611,0.72709,-1.45939,-1.49673,-1.01255,2.21699,-0.58063
-4.58726,0.72698,-1.45904,-1.49744,-1.01225,2.21706,-0.58072
-4.58841,0.72688,-1.45870,-1.49813,-1.01195,2.21713,-0.58081
-4.58956,0.72678,-1.45837,-1.49881,-1.01166,2.21720,-0.58090
-4.59071,0.72668,-1.45804,-1.49947,-1.01137,2.21726,-0.58099
-4.59186,0.72659,-1.45772,-1.50013,-1.01109,2.21733,-0.58107
-4.59301,0.72649,-1.45740,-1.50078,-1.01081,2.21739,-0.58116
-4.59416,0.72640,-1.45709,-1.50141,-1.01054,2.21745,-0.58124
-4.59531,0.72631,-1.45678,-1.50203,-1.01027,2.21751,-0.58132
-4.59646,0.72623,-1.45648,-1.50265,-1.01000,2.21757,-0.58140
-4.59761,0.72614,-1.45618,-1.50325,-1.00974,2.21763,-0.58147
-4.59876,0.72606,-1.45589,-1.50384,-1.00948,2.21768,-0.58155
-4.59991,0.72597,-1.45560,-1.50443,-1.00923,2.21774,-0.58162
-4.60106,0.72595,-1.45551,-1.50461,-1.00915,2.21775,-0.58164
-4.60221,0.72589,-1.45513,-1.50532,-1.00885,2.21780,-0.58170
-4.60336,0.72582,-1.45476,-1.50602,-1.00856,2.21784,-0.58175
-4.60451,0.72576,-1.45440,-1.50670,-1.00827,2.21788,-0.58181
-4.60566,0.72570,-1.45405,-1.50737,-1.00798,2.21792,-0.58186
-4.60681,0.72565,-1.45370,-1.50804,-1.00770,2.21796,-0.58191
-4.60796,0.72559,-1.45335,-1.50869,-1.00743,2.21800,-0.58196
-4.60911,0.72553,-1.45301,-1.50933,-1.00715,2.21804,-0.58201
-4.61026,0.72548,-1.45268,-1.50995,-1.00689,2.21807,-0.58206
-4.61140,0.72543,-1.45235,-1.51057,-1.00662,2.21811,-0.58210
-4.61255,0.72537,-1.45203,-1.51118,-1.00636,2.21814,-0.58215
-4.61370,0.72532,-1.45172,-1.51178,-1.00611,2.21818,-0.58219
-4.61485,0.72527,-1.45140,-1.51237,-1.00585,2.21821,-0.58224
-4.61600,0.72527,-1.45136,-1.51244,-1.00583,2.21821,-0.58224
-4.61715,0.72526,-1.45096,-1.51315,-1.00553,2.21822,-0.58225
-4.61830,0.72524,-1.45055,-1.51385,-1.00524,2.21823,-0.58226
-4.61945,0.72523,-1.45016,-1.51453,-1.00496,2.21824,-0.58227
-4.62060,0.72521,-1.44977,-1.51521,-1.00468,2.21825,-0.58228
-4.62175,0.72520,-1.44939,-1.51587,-1.00440,2.21826,-0.58229
-4.62290,0.72519,-1.44902,-1.51652,-1.00413,2.21827,-0.58230
-4.62405,0.72518,-1.44865,-1.51716,-1.00386,2.21827,-0.58231
-4.62520,0.72517,-1.44829,-1.51779,-1.00359,2.21828,-0.58232
-4.62635,0.72516,-1.44793,-1.51841,-1.00333,2.21829,-0.58233
-4.62750,0.72515,-1.44758,-1.51902,-1.00308,2.21829,-0.58234
-4.62865,0.72514,-1.44724,-1.51962,-1.00283,2.21830,-0.58234
-4.62980,0.72513,-1.44690,-1.52021,-1.00258,2.21831,-0.58235
-4.63095,0.72514,-1.44685,-1.52030,-1.00254,2.21830,-0.58234
-4.63210,0.72522,-1.44631,-1.52112,-1.00222,2.21825,-0.58227
-4.63325,0.72530,-1.44577,-1.52193,-1.00190,2.21819,-0.58219
-4.63440,0.72538,-1.44525,-1.52273,-1.00158,2.21814,-0.58212
-4.63555,0.72546,-1.44474,-1.52351,-1.00127,2.21809,-0.58205
-4.63670,0.72553,-1.44423,-1.52428,-1.00096,2.21804,-0.58198
-4.63785,0.72561,-1.44374,-1.52504,-1.00066,2.21799,-0.58191
-4.63900,0.72569,-1.44325,-1.52578,-1.00036,2.21794,-0.58183
-4.64015,0.72576,-1.44277,-1.52652,-1.00006,2.21789,-0.58177
-4.64130,0.72583,-1.44230,-1.52724,-0.99977,2.21784,-0.58170
-4.64245,0.72591,-1.44184,-1.52795,-0.99949,2.21779,-0.58163
-4.64360,0.72598,-1.44138,-1.52864,-0.99921,2.21774,-0.58156
-4.64475,0.72605,-1.44093,-1.52933,-0.99893,2.21769,-0.58149
-4.64590,0.72612,-1.44050,-1.53000,-0.99865,2.21764,-0.58143
-4.64705,0.72619,-1.44006,-1.53066,-0.99839,2.21760,-0.58136
-4.64819,0.72626,-1.43964,-1.53131,-0.99812,2.21755,-0.58130
-4.64934,0.72633,-1.43922,-1.53195,-0.99786,2.21750,-0.58123
-4.65049,0.72640,-1.43881,-1.53258,-0.99760,2.21746,-0.58117
-4.65164,0.72647,-1.43841,-1.53320,-0.99735,2.21741,-0.58110
-4.65279,0.72653,-1.43801,-1.53381,-0.99710,2.21737,-0.58104
-4.65394,0.72660,-1.43762,-1.53441,-0.99685,2.21732,-0.58098
-4.65509,0.72666,-1.43724,-1.53500,-0.99661,2.21728,-0.58092
-4.65624,0.72673,-1.43686,-1.53558,-0.99637,2.21724,-0.58086
-4.65739,0.72677,-1.43660,-1.53598,-0.99620,2.21720,-0.58081
-4.65854,0.72685,-1.43620,-1.53658,-0.99595,2.21715,-0.58074
-4.65969,0.72693,-1.43581,-1.53717,-0.99571,2.21710,-0.58067
-4.66084,0.72700,-1.43543,-1.53776,-0.99547,2.21705,-0.58060
-4.66199,0.72707,-1.43505,-1.53833,-0.99523,2.21700,-0.58053
-4.66314,0.72710,-1.43493,-1.53850,-0.99516,2.21699,-0.58051
-4.66429,0.72719,-1.43451,-1.53911,-0.99491,2.21692,-0.58042
-4.66544,0.72729,-1.43411,-1.53971,-0.99467,2.21686,-0.58033
-4.66659,0.72738,-1.43370,-1.54030,-0.99443,2.21679,-0.58024
-4.66774,0.72748,-1.43331,-1.54088,-0.99419,2.21673,-0.58016
-4.66889,0.72757,-1.43292,-1.54145,-0.99396,2.21667,-0.58007
-4.67004,0.72766,-1.43253,-1.54202,-0.99373,2.21661,-0.57998
-4.67119,0.72778,-1.43207,-1.54268,-0.99346,2.21653,-0.57987
-4.67234,0.72790,-1.43162,-1.54332,-0.99321,2.21645,-0.57976
-4.67349,0.72801,-1.43118,-1.54396,-0.99295,2.21637,-0.57966
-4.67464,0.72813,-1.43074,-1.54458,-0.99270,2.21629,-0.57955
-4.67579,0.72824,-1.43031,-1.54519,-0.99245,2.21622,-0.57945
-4.67694,0.72835,-1.42989,-1.54580,-0.99221,2.21614,-0.57934
-4.67809,0.72846,-1.42948,-1.54639,-0.99197,2.21607,-0.57924
-4.67924,0.72857,-1.42907,-1.54697,-0.99173,2.21600,-0.57914
-4.68039,0.72867,-1.42867,-1.54755,-0.99150,2.21592,-0.57904
-4.68154,0.72878,-1.42828,-1.54811,-0.99127,2.21585,-0.57894
-4.68269,0.72888,-1.42789,-1.54866,-0.99104,2.21578,-0.57884
-4.68384,0.72890,-1.42785,-1.54872,-0.99102,2.21577,-0.57883
-4.68499,0.72903,-1.42741,-1.54933,-0.99077,2.21568,-0.57871
-4.68613,0.72917,-1.42698,-1.54993,-0.99054,2.21559,-0.57858
-4.68728,0.72930,-1.42655,-1.55051,-0.99030,2.21550,-0.57846
-4.68843,0.72943,-1.42613,-1.55109,-0.99007,2.21541,-0.57834
-4.68958,0.72956,-1.42572,-1.55165,-0.98984,2.21532,-0.57822
-4.69073,0.72969,-1.42532,-1.55221,-0.98962,2.21524,-0.57810
-4.69188,0.72981,-1.42493,-1.55276,-0.98939,2.21515,-0.57798
-4.69303,0.72992,-1.42460,-1.55321,-0.98921,2.21508,-0.57789
-4.69418,0.73010,-1.42409,-1.55387,-0.98895,2.21496,-0.57772
-4.69533,0.73028,-1.42359,-1.55453,-0.98870,2.21484,-0.57755
-4.69648,0.73046,-1.42310,-1.55518,-0.98844,2.21472,-0.57739
-4.69763,0.73064,-1.42262,-1.55582,-0.98819,2.21460,-0.57723
-4.69878,0.73081,-1.42214,-1.55644,-0.98795,2.21448,-0.57707
-4.69993,0.73098,-1.42168,-1.55706,-0.98771,2.21437,-0.57691
-4.70108,0.73115,-1.42122,-1.55766,-0.98747,2.21425,-0.57675
-4.70223,0.73131,-1.42077,-1.55826,-0.98723,2.21414,-0.57660
-4.70338,0.73148,-1.42032,-1.55885,-0.98700,2.21403,-0.57645
-4.70453,0.73164,-1.41989,-1.55942,-0.98677,2.21392,-0.57630
-4.70568,0.73180,-1.41946,-1.55999,-0.98654,2.21381,-0.57616
-4.70683,0.73196,-1.41904,-1.56054,-0.98632,2.21371,-0.57601
-4.70798,0.73211,-1.41863,-1.56109,-0.98610,2.21360,-0.57587
-4.70913,0.73226,-1.41822,-1.56163,-0.98588,2.21350,-0.57573
-4.71028,0.73241,-1.41782,-1.56216,-0.98567,2.21340,-0.57559
-4.71143,0.73253,-1.41753,-1.56254,-0.98552,2.21332,-0.57548
-4.71258,0.73278,-1.41696,-1.56323,-0.98526,2.21315,-0.57525
-4.71373,0.73304,-1.41641,-1.56390,-0.98501,2.21298,-0.57502
-4.71488,0.73328,-1.41587,-1.56455,-0.98476,2.21281,-0.57479
-4.71603,0.73353,-1.41533,-1.56520,-0.98451,2.21264,-0.57457
-4.71718,0.73377,-1.41481,-1.56584,-0.98427,2.21248,-0.57435
-4.71833,0.73401,-1.41429,-1.56647,-0.98403,2.21232,-0.57413
-4.71948,0.73424,-1.41379,-1.56708,-0.98379,2.21216,-0.57391
-4.72063,0.73448,-1.41329,-1.56769,-0.98356,2.21200,-0.57370
-4.72178,0.73470,-1.41280,-1.56829,-0.98333,2.21185,-0.57350
-4.72292,0.73493,-1.41232,-1.56887,-0.98310,2.21170,-0.57329
-4.72407,0.73515,-1.41184,-1.56945,-0.98287,2.21155,-0.57309
-4.72522,0.73537,-1.41138,-1.57002,-0.98265,2.21140,-0.57289
-4.72637,0.73558,-1.41092,-1.57057,-0.98244,2.21125,-0.57269
-4.72752,0.73579,-1.41047,-1.57112,-0.98222,2.21111,-0.57250
-4.72867,0.73600,-1.41003,-1.57166,-0.98201,2.21097,-0.57231
-4.72982,0.73621,-1.40960,-1.57219,-0.98180,2.21083,-0.57212
-4.73097,0.73641,-1.40917,-1.57271,-0.98159,2.21069,-0.57193
-4.73212,0.73661,-1.40875,-1.57323,-0.98139,2.21056,-0.57175
-4.73327,0.73680,-1.40834,-1.57373,-0.98119,2.21042,-0.57157
-4.73442,0.73700,-1.40794,-1.57423,-0.98099,2.21029,-0.57139
-4.73557,0.73717,-1.40757,-1.57468,-0.98081,2.21017,-0.57123
-4.73672,0.73743,-1.40706,-1.57528,-0.98058,2.21000,-0.57099
-4.73787,0.73769,-1.40655,-1.57587,-0.98036,2.20982,-0.57076
-4.73902,0.73794,-1.40606,-1.57646,-0.98013,2.20965,-0.57054
-4.74017,0.73818,-1.40557,-1.57703,-0.97992,2.20949,-0.57031
-4.74132,0.73842,-1.40510,-1.57759,-0.97970,2.20932,-0.57009
-4.74247,0.73866,-1.40463,-1.57814,-0.97948,2.20916,-0.56987
-4.74362,0.73890,-1.40417,-1.57869,-0.97927,2.20900,-0.56966
-4.74477,0.73913,-1.40372,-1.57922,-0.97907,2.20884,-0.56945
-4.74592,0.73936,-1.40327,-1.57975,-0.97886,2.20868,-0.56924
-4.74707,0.73958,-1.40283,-1.58027,-0.97866,2.20853,-0.56903
-4.74822,0.73981,-1.40240,-1.58078,-0.97846,2.20838,-0.56883
-4.74937,0.74002,-1.40198,-1.58128,-0.97826,2.20823,-0.56863
-4.75052,0.74024,-1.40157,-1.58177,-0.97807,2.20808,-0.56843
-4.75167,0.74045,-1.40116,-1.58226,-0.97788,2.20794,-0.56824
-4.75282,0.74066,-1.40076,-1.58273,-0.97769,2.20780,-0.56805
-4.75397,0.74077,-1.40055,-1.58298,-0.97759,2.20772,-0.56795
-4.75512,0.74104,-1.40006,-1.58353,-0.97738,2.20754,-0.56770
-4.75627,0.74131,-1.39957,-1.58408,-0.97717,2.20736,-0.56746
-4.75742,0.74157,-1.39910,-1.58462,-0.97697,2.20718,-0.56722
-4.75857,0.74183,-1.39863,-1.58515,-0.97676,2.20700,-0.56698
-4.75971,0.74209,-1.39817,-1.58567,-0.97656,2.20683,-0.56675
-4.76086,0.74234,-1.39772,-1.58619,-0.97636,2.20666,-0.56652
-4.76201,0.74258,-1.39728,-1.58669,-0.97617,2.20649,-0.56630
-4.76316,0.74283,-1.39685,-1.58719,-0.97598,2.20632,-0.56608
-4.76431,0.74307,-1.39642,-1.58768,-0.97579,2.20616,-0.56586
-4.76546,0.74330,-1.39600,-1.58816,-0.97560,2.20599,-0.56564
-4.76661,0.74354,-1.39558,-1.58863,-0.97541,2.20584,-0.56543
-4.76776,0.74377,-1.39518,-1.58910,-0.97523,2.20568,-0.56522
-4.76891,0.74399,-1.39478,-1.58955,-0.97505,2.20552,-0.56502
-4.77006,0.74409,-1.39462,-1.58974,-0.97498,2.20546,-0.56493
-4.77121,0.74436,-1.39416,-1.59024,-0.97479,2.20527,-0.56468
-4.77236,0.74463,-1.39371,-1.59073,-0.97460,2.20509,-0.56444
-4.77351,0.74490,-1.39327,-1.59122,-0.97442,2.20491,-0.56419
-4.77466,0.74516,-1.39283,-1.59170,-0.97423,2.20473,-0.56396
-4.77581,0.74542,-1.39240,-1.59217,-0.97405,2.20455,-0.56372
-4.77696,0.74567,-1.39198,-1.59263,-0.97388,2.20438,-0.56349
-4.77811,0.74592,-1.39157,-1.59308,-0.97370,2.20420,-0.56326
-4.77926,0.74617,-1.39117,-1.59353,-0.97353,2.20404,-0.56304
-4.78041,0.74641,-1.39077,-1.59397,-0.97336,2.20387,-0.56282
-4.78156,0.74654,-1.39057,-1.59419,-0.97327,2.20378,-0.56271
-4.78271,0.74681,-1.39012,-1.59468,-0.97308,2.20360,-0.56246
-4.78386,0.74708,-1.38968,-1.59516,-0.97290,2.20341,-0.56222
-4.78501,0.74734,-1.38925,-1.59563,-0.97272,2.20323,-0.56198
-4.78616,0.74760,-1.38882,-1.59609,-0.97254,2.20305,-0.56174
-4.78731,0.74786,-1.38840,-1.59655,-0.97237,2.20288,-0.56151
-4.78846,0.74811,-1.38799,-1.59700,-0.97219,2.20270,-0.56128
-4.78961,0.74836,-1.38759,-1.59744,-0.97202,2.20253,-0.56105
-4.79076,0.74861,-1.38719,-1.59788,-0.97185,2.20236,-0.56083
-4.79191,0.74869,-1.38706,-1.59801,-0.97180,2.20231,-0.56076
-4.79306,0.74902,-1.38657,-1.59853,-0.97161,2.20209,-0.56046
-4.79421,0.74934,-1.38608,-1.59903,-0.97143,2.20187,-0.56017
-4.79536,0.74966,-1.38560,-1.59953,-0.97125,2.20165,-0.55989
-4.79650,0.74997,-1.38512,-1.60001,-0.97107,2.20143,-0.55961
-4.79765,0.75028,-1.38466,-1.60049,-0.97089,2.20122,-0.55933
-4.79880,0.75058,-1.38421,-1.60096,-0.97071,2.20102,-0.55906
-4.79995,0.75088,-1.38376,-1.60143,-0.97054,2.20081,-0.55879
-4.80110,0.75117,-1.38332,-1.60188,-0.97037,2.20061,-0.55853
-4.80225,0.75146,-1.38289,-1.60233,-0.97020,2.20041,-0.55827
-4.80340,0.75174,-1.38246,-1.60277,-0.97003,2.20022,-0.55801
-4.80455,0.75202,-1.38204,-1.60321,-0.96987,2.20003,-0.55776
-4.80570,0.75230,-1.38163,-1.60364,-0.96971,2.19984,-0.55751
-4.80685,0.75257,-1.38123,-1.60406,-0.96955,2.19965,-0.55726
-4.80800,0.75284,-1.38083,-1.60447,-0.96939,2.19946,-0.55702
-4.80915,0.75308,-1.38047,-1.60484,-0.96925,2.19930,-0.55680
-4.81030,0.75343,-1.37998,-1.60533,-0.96907,2.19906,-0.55649
-4.81145,0.75377,-1.37949,-1.60581,-0.96890,2.19882,-0.55618
-4.81260,0.75411,-1.37902,-1.60628,-0.96873,2.19859,-0.55588
-4.81375,0.75444,-1.37855,-1.60674,-0.96856,2.19837,-0.55559
-4.81490,0.75477,-1.37809,-1.60720,-0.96839,2.19814,-0.55529
-4.81605,0.75509,-1.37764,-1.60765,-0.96823,2.19792,-0.55501
-4.81720,0.75541,-1.37720,-1.60809,-0.96806,2.19770,-0.55472
-4.81835,0.75572,-1.37676,-1.60852,-0.96790,2.19749,-0.55444
-4.81950,0.75602,-1.37633,-1.60895,-0.96775,2.19728,-0.55417
-4.82065,0.75633,-1.37591,-1.60937,-0.96759,2.19707,-0.55390
-4.82180,0.75662,-1.37550,-1.60978,-0.96743,2.19686,-0.55363
-4.82295,0.75692,-1.37509,-1.61019,-0.96728,2.19666,-0.55337
-4.82410,0.75721,-1.37469,-1.61059,-0.96713,2.19646,-0.55311
-4.82525,0.75749,-1.37430,-1.61098,-0.96698,2.19627,-0.55285
-4.82640,0.75775,-1.37394,-1.61133,-0.96685,2.19609,-0.55262
-4.82755,0.75809,-1.37348,-1.61178,-0.96669,2.19586,-0.55232
-4.82870,0.75843,-1.37303,-1.61222,-0.96653,2.19562,-0.55202
-4.82985,0.75876,-1.37258,-1.61265,-0.96637,2.19540,-0.55172
-4.83100,0.75908,-1.37214,-1.61307,-0.96622,2.19517,-0.55143
-4.83215,0.75941,-1.37171,-1.61349,-0.96607,2.19495,-0.55114
-4.83330,0.75972,-1.37129,-1.61390,-0.96591,2.19473,-0.55086
-4.83444,0.76003,-1.37088,-1.61430,-0.96577,2.19452,-0.55058
-4.83559,0.76034,-1.37047,-1.61470,-0.96562,2.19430,-0.55031
-4.83674,0.76064,-1.37007,-1.61509,-0.96547,2.19410,-0.55004
-4.83789,0.76094,-1.36967,-1.61547,-0.96533,2.19389,-0.54977
-4.83904,0.76123,-1.36928,-1.61585,-0.96519,2.19369,-0.54951
-4.84019,0.76144,-1.36900,-1.61612,-0.96509,2.19354,-0.54932
-4.84134,0.76183,-1.36850,-1.61658,-0.96493,2.19328,-0.54898
-4.84249,0.76221,-1.36801,-1.61704,-0.96477,2.19302,-0.54864
-4.84364,0.76258,-1.36753,-1.61749,-0.96461,2.19276,-0.54831
-4.84479,0.76295,-1.36706,-1.61793,-0.96446,2.19250,-0.54799
-4.84594,0.76331,-1.36659,-1.61836,-0.96430,2.19225,-0.54767
-4.84709,0.76367,-1.36613,-1.61879,-0.96415,2.19201,-0.54735
-4.84824,0.76402,-1.36569,-1.61921,-0.96400,2.19177,-0.54704
-4.84939,0.76437,-1.36524,-1.61962,-0.96385,2.19153,-0.54673
-4.85054,0.76471,-1.36481,-1.62002,-0.96371,2.19129,-0.54643
-4.85169,0.76504,-1.36438,-1.62042,-0.96356,2.19106,-0.54613
-4.85284,0.76537,-1.36396,-1.62081,-0.96342,2.19083,-0.54584
-4.85399,0.76570,-1.36355,-1.62120,-0.96328,2.19061,-0.54555
-4.85514,0.76602,-1.36315,-1.62158,-0.96314,2.19039,-0.54527
-4.85629,0.76633,-1.36275,-1.62195,-0.96300,2.19017,-0.54499
-4.85744,0.76664,-1.36236,-1.62232,-0.96287,2.18995,-0.54471
-4.85859,0.76695,-1.36198,-1.62268,-0.96273,2.18974,-0.54444
-4.85974,0.76717,-1.36170,-1.62294,-0.96264,2.18959,-0.54424
-4.86089,0.76758,-1.36122,-1.62336,-0.96250,2.18930,-0.54388
-4.86204,0.76799,-1.36074,-1.62376,-0.96236,2.18902,-0.54352
-4.86319,0.76839,-1.36027,-1.62417,-0.96222,2.18875,-0.54317
-4.86434,0.76878,-1.35981,-1.62456,-0.96209,2.18847,-0.54282
-4.86549,0.76917,-1.35936,-1.62495,-0.96195,2.18820,-0.54248
-4.86664,0.76955,-1.35892,-1.62533,-0.96182,2.18794,-0.54214
-4.86779,0.76993,-1.35848,-1.62571,-0.96169,2.18768,-0.54181
-4.86894,0.77030,-1.35805,-1.62608,-0.96156,2.18742,-0.54148
-4.87009,0.77066,-1.35763,-1.62644,-0.96143,2.18717,-0.54116
-4.87123,0.77102,-1.35722,-1.62680,-0.96131,2.18692,-0.54084
-4.87238,0.77137,-1.35681,-1.62716,-0.96118,2.18668,-0.54053
-4.87353,0.77172,-1.35641,-1.62750,-0.96106,2.18644,-0.54023
-4.87468,0.77206,-1.35602,-1.62784,-0.96094,2.18620,-0.53992
-4.87583,0.77240,-1.35563,-1.62818,-0.96082,2.18596,-0.53963
-4.87698,0.77273,-1.35525,-1.62851,-0.96070,2.18573,-0.53933
-4.87813,0.77306,-1.35488,-1.62884,-0.96058,2.18551,-0.53905
-4.87928,0.77322,-1.35469,-1.62900,-0.96052,2.18539,-0.53890
-4.88043,0.77358,-1.35430,-1.62933,-0.96040,2.18514,-0.53858
-4.88158,0.77394,-1.35391,-1.62966,-0.96029,2.18489,-0.53827
-4.88273,0.77429,-1.35352,-1.62998,-0.96017,2.18465,-0.53796
-4.88388,0.77463,-1.35314,-1.63030,-0.96006,2.18441,-0.53766
-4.88503,0.77497,-1.35277,-1.63061,-0.95995,2.18418,-0.53736
-4.88618,0.77530,-1.35241,-1.63092,-0.95984,2.18395,-0.53707
-4.88733,0.77534,-1.35237,-1.63095,-0.95983,2.18392,-0.53704
-4.88848,0.77569,-1.35198,-1.63127,-0.95971,2.18368,-0.53673
-4.88963,0.77603,-1.35161,-1.63159,-0.95960,2.18344,-0.53643
-4.89078,0.77637,-1.35124,-1.63190,-0.95949,2.18320,-0.53613
-4.89193,0.77671,-1.35087,-1.63221,-0.95938,2.18297,-0.53584
-4.89308,0.77677,-1.35080,-1.63227,-0.95936,2.18292,-0.53578
-4.89423,0.77711,-1.35043,-1.63258,-0.95925,2.18269,-0.53548
-4.89538,0.77745,-1.35006,-1.63289,-0.95914,2.18245,-0.53519
-4.89653,0.77748,-1.35002,-1.63292,-0.95913,2.18243,-0.53516
-4.89768,0.77782,-1.34965,-1.63323,-0.95902,2.18219,-0.53486
-4.89883,0.77816,-1.34929,-1.63354,-0.95891,2.18196,-0.53457
-4.89998,0.77822,-1.34921,-1.63360,-0.95889,2.18191,-0.53451
-4.90113,0.77857,-1.34885,-1.63389,-0.95879,2.18167,-0.53420
-4.90228,0.77891,-1.34849,-1.63418,-0.95868,2.18143,-0.53390
-4.90343,0.77895,-1.34845,-1.63421,-0.95867,2.18141,-0.53387
-4.90458,0.77929,-1.34809,-1.63451,-0.95857,2.18116,-0.53357
-4.90573,0.77964,-1.34773,-1.63480,-0.95847,2.18093,-0.53327
-4.90688,0.77968,-1.34769,-1.63482,-0.95846,2.18090,-0.53323
-4.90802,0.78009,-1.34730,-1.63509,-0.95838,2.18061,-0.53287
-4.90917,0.78049,-1.34693,-1.63535,-0.95829,2.18033,-0.53252
-4.91032,0.78089,-1.34656,-1.63561,-0.95821,2.18005,-0.53217
-4.91147,0.78128,-1.34619,-1.63586,-0.95813,2.17978,-0.53183
-4.91262,0.78167,-1.34583,-1.63611,-0.95805,2.17951,-0.53150
-4.91377,0.78205,-1.34548,-1.63635,-0.95797,2.17925,-0.53117
-4.91492,0.78242,-1.34513,-1.63659,-0.95789,2.17899,-0.53084
-4.91607,0.78279,-1.34479,-1.63683,-0.95781,2.17873,-0.53052
-4.91722,0.78297,-1.34463,-1.63694,-0.95777,2.17860,-0.53036
-4.91837,0.78339,-1.34430,-1.63711,-0.95772,2.17831,-0.52999
-4.91952,0.78380,-1.34397,-1.63729,-0.95767,2.17802,-0.52964
-4.92067,0.78420,-1.34365,-1.63745,-0.95762,2.17774,-0.52929
-4.92182,0.78460,-1.34334,-1.63762,-0.95757,2.17747,-0.52894
-4.92297,0.78499,-1.34303,-1.63778,-0.95752,2.17719,-0.52860
-4.92412,0.78531,-1.34279,-1.63791,-0.95749,2.17697,-0.52833
-4.92527,0.78575,-1.34249,-1.63801,-0.95747,2.17667,-0.52794
-4.92642,0.78618,-1.34220,-1.63811,-0.95744,2.17637,-0.52757
-4.92757,0.78660,-1.34191,-1.63821,-0.95742,2.17607,-0.52720
-4.92872,0.78702,-1.34163,-1.63830,-0.95740,2.17578,-0.52684
-4.92987,0.78743,-1.34135,-1.63840,-0.95738,2.17549,-0.52648
-4.93102,0.78784,-1.34108,-1.63849,-0.95736,2.17521,-0.52613
-4.93217,0.78808,-1.34092,-1.63854,-0.95735,2.17504,-0.52592
-4.93332,0.78850,-1.34068,-1.63857,-0.95735,2.17475,-0.52556
-4.93447,0.78892,-1.34045,-1.63860,-0.95735,2.17446,-0.52520
-4.93562,0.78932,-1.34021,-1.63863,-0.95736,2.17417,-0.52484
-4.93677,0.78941,-1.34017,-1.63863,-0.95736,2.17411,-0.52477
-4.93792,0.78985,-1.33998,-1.63857,-0.95740,2.17380,-0.52439
-4.93907,0.79029,-1.33979,-1.63850,-0.95744,2.17350,-0.52401
-4.94022,0.79072,-1.33960,-1.63844,-0.95748,2.17320,-0.52364
-4.94137,0.79114,-1.33942,-1.63838,-0.95752,2.17290,-0.52328
-4.94252,0.79155,-1.33924,-1.63832,-0.95755,2.17261,-0.52292
-4.94367,0.79192,-1.33908,-1.63826,-0.95759,2.17235,-0.52260
-4.94481,0.79235,-1.33893,-1.63814,-0.95765,2.17205,-0.52223
-4.94596,0.79277,-1.33878,-1.63803,-0.95770,2.17176,-0.52186
-4.94711,0.79319,-1.33863,-1.63791,-0.95776,2.17147,-0.52150
-4.94826,0.79359,-1.33849,-1.63780,-0.95782,2.17118,-0.52115
-4.94941,0.79384,-1.33841,-1.63773,-0.95785,2.17101,-0.52094
-4.95056,0.79427,-1.33830,-1.63754,-0.95794,2.17071,-0.52057
-4.95171,0.79470,-1.33819,-1.63735,-0.95802,2.17041,-0.52020
-4.95286,0.79512,-1.33809,-1.63717,-0.95810,2.17012,-0.51984
-4.95401,0.79553,-1.33798,-1.63700,-0.95819,2.16983,-0.51949
-4.95516,0.79593,-1.33788,-1.63682,-0.95826,2.16954,-0.51914
-4.95631,0.79633,-1.33778,-1.63665,-0.95834,2.16927,-0.51880
-4.95746,0.79649,-1.33774,-1.63658,-0.95837,2.16915,-0.51866
-4.95861,0.79689,-1.33768,-1.63634,-0.95848,2.16887,-0.51831
-4.95976,0.79729,-1.33762,-1.63610,-0.95858,2.16859,-0.51797
-4.96091,0.79768,-1.33757,-1.63587,-0.95868,2.16832,-0.51764
-4.96206,0.79806,-1.33751,-1.63565,-0.95877,2.16805,-0.51731
-4.96321,0.79821,-1.33751,-1.63553,-0.95882,2.16794,-0.51718
-4.96436,0.79855,-1.33766,-1.63502,-0.95901,2.16771,-0.51689
-4.96551,0.79888,-1.33780,-1.63452,-0.95920,2.16747,-0.51660
-4.96666,0.79921,-1.33795,-1.63402,-0.95939,2.16724,-0.51632
-4.96781,0.79953,-1.33809,-1.63354,-0.95957,2.16701,-0.51604
-4.96896,0.79984,-1.33823,-1.63306,-0.95975,2.16679,-0.51577
-4.97011,0.80015,-1.33837,-1.63259,-0.95993,2.16657,-0.51550
-4.97126,0.80046,-1.33850,-1.63213,-0.96011,2.16636,-0.51524
-4.97241,0.80076,-1.33864,-1.63168,-0.96028,2.16615,-0.51498
-4.97356,0.80105,-1.33877,-1.63124,-0.96045,2.16594,-0.51473
-4.97471,0.80134,-1.33890,-1.63080,-0.96061,2.16574,-0.51448
-4.97586,0.80162,-1.33903,-1.63037,-0.96078,2.16554,-0.51424
-4.97701,0.80187,-1.33915,-1.62998,-0.96092,2.16536,-0.51402
-4.97816,0.80209,-1.33938,-1.62944,-0.96112,2.16520,-0.51383
-4.97931,0.80232,-1.33960,-1.62891,-0.96131,2.16504,-0.51363
-4.98046,0.80254,-1.33982,-1.62839,-0.96150,2.16488,-0.51344
-4.98160,0.80276,-1.34004,-1.62788,-0.96169,2.16473,-0.51325
-4.98275,0.80297,-1.34025,-1.62738,-0.96188,2.16458,-0.51307
-4.98390,0.80318,-1.34046,-1.62688,-0.96206,2.16443,-0.51289
-4.98505,0.80328,-1.34057,-1.62663,-0.96215,2.16436,-0.51280
-4.98620,0.80347,-1.34081,-1.62610,-0.96234,2.16422,-0.51263
-4.98735,0.80366,-1.34105,-1.62557,-0.96254,2.16409,-0.51247
-4.98850,0.80385,-1.34128,-1.62506,-0.96272,2.16395,-0.51231
-4.98965,0.80403,-1.34152,-1.62455,-0.96291,2.16382,-0.51215
-4.99080,0.80419,-1.34178,-1.62401,-0.96311,2.16371,-0.51201
-4.99195,0.80435,-1.34203,-1.62349,-0.96330,2.16360,-0.51188
-4.99310,0.80442,-1.34216,-1.62323,-0.96339,2.16354,-0.51181
-4.99425,0.80448,-1.34227,-1.62302,-0.96347,2.16350,-0.51176
-4.99540,0.80459,-1.34256,-1.62248,-0.96366,2.16342,-0.51166
-4.99655,0.80460,-1.34259,-1.62242,-0.96368,2.16341,-0.51165
-4.99770,0.80467,-1.34279,-1.62204,-0.96381,2.16336,-0.51159
-4.99885,0.80473,-1.34301,-1.62166,-0.96394,2.16331,-0.51153
-5.00000,0.80479,-1.34326,-1.62122,-0.96410,2.16327,-0.51148
+0.00000,1.02646,-1.24985,-1.60929,-0.98646,1.99986,-0.33993
+0.00069,1.02646,-1.25025,-1.60866,-0.98669,1.99986,-0.33993
+0.00139,1.02646,-1.25064,-1.60804,-0.98692,1.99986,-0.33993
+0.00208,1.02645,-1.25103,-1.60742,-0.98714,1.99987,-0.33993
+0.00278,1.02645,-1.25141,-1.60682,-0.98736,1.99987,-0.33994
+0.00347,1.02645,-1.25178,-1.60623,-0.98757,1.99987,-0.33994
+0.00417,1.02644,-1.25215,-1.60565,-0.98779,1.99988,-0.33994
+0.00486,1.02644,-1.25251,-1.60507,-0.98799,1.99988,-0.33994
+0.00556,1.02643,-1.25286,-1.60451,-0.98820,1.99988,-0.33995
+0.00625,1.02641,-1.25297,-1.60436,-0.98825,1.99990,-0.33996
+0.00695,1.02622,-1.25367,-1.60338,-0.98858,2.00004,-0.34010
+0.00764,1.02603,-1.25435,-1.60242,-0.98891,2.00019,-0.34023
+0.00834,1.02584,-1.25502,-1.60147,-0.98923,2.00033,-0.34036
+0.00903,1.02565,-1.25568,-1.60054,-0.98954,2.00047,-0.34050
+0.00972,1.02546,-1.25633,-1.59962,-0.98986,2.00061,-0.34063
+0.01042,1.02528,-1.25697,-1.59872,-0.99016,2.00075,-0.34075
+0.01111,1.02510,-1.25760,-1.59784,-0.99047,2.00088,-0.34088
+0.01181,1.02493,-1.25822,-1.59696,-0.99077,2.00102,-0.34100
+0.01250,1.02475,-1.25883,-1.59611,-0.99106,2.00115,-0.34113
+0.01320,1.02458,-1.25942,-1.59526,-0.99136,2.00128,-0.34125
+0.01389,1.02441,-1.26001,-1.59443,-0.99164,2.00140,-0.34137
+0.01459,1.02424,-1.26058,-1.59362,-0.99193,2.00153,-0.34148
+0.01528,1.02408,-1.26115,-1.59281,-0.99221,2.00165,-0.34160
+0.01598,1.02392,-1.26171,-1.59202,-0.99248,2.00178,-0.34172
+0.01667,1.02376,-1.26225,-1.59124,-0.99276,2.00190,-0.34183
+0.01737,1.02360,-1.26279,-1.59048,-0.99303,2.00202,-0.34194
+0.01806,1.02344,-1.26332,-1.58973,-0.99329,2.00213,-0.34205
+0.01876,1.02329,-1.26384,-1.58899,-0.99355,2.00225,-0.34216
+0.01945,1.02314,-1.26435,-1.58826,-0.99381,2.00237,-0.34227
+0.02014,1.02299,-1.26485,-1.58754,-0.99407,2.00248,-0.34237
+0.02084,1.02284,-1.26534,-1.58684,-0.99432,2.00259,-0.34248
+0.02153,1.02270,-1.26583,-1.58614,-0.99457,2.00270,-0.34258
+0.02223,1.02255,-1.26630,-1.58546,-0.99481,2.00281,-0.34268
+0.02292,1.02241,-1.26677,-1.58479,-0.99505,2.00292,-0.34278
+0.02362,1.02227,-1.26723,-1.58413,-0.99529,2.00302,-0.34288
+0.02431,1.02214,-1.26768,-1.58348,-0.99553,2.00313,-0.34298
+0.02501,1.02200,-1.26813,-1.58284,-0.99576,2.00323,-0.34308
+0.02570,1.02187,-1.26857,-1.58221,-0.99599,2.00333,-0.34317
+0.02640,1.02174,-1.26900,-1.58159,-0.99621,2.00343,-0.34327
+0.02709,1.02161,-1.26942,-1.58098,-0.99644,2.00353,-0.34336
+0.02779,1.02148,-1.26983,-1.58039,-0.99665,2.00362,-0.34345
+0.02848,1.02135,-1.27024,-1.57980,-0.99687,2.00372,-0.34354
+0.02917,1.02123,-1.27064,-1.57922,-0.99708,2.00382,-0.34363
+0.02987,1.02111,-1.27104,-1.57865,-0.99729,2.00391,-0.34372
+0.03056,1.02099,-1.27142,-1.57809,-0.99750,2.00400,-0.34381
+0.03126,1.02091,-1.27163,-1.57779,-0.99761,2.00406,-0.34386
+0.03195,1.02067,-1.27218,-1.57706,-0.99786,2.00424,-0.34403
+0.03265,1.02043,-1.27271,-1.57635,-0.99811,2.00442,-0.34420
+0.03334,1.02020,-1.27324,-1.57565,-0.99835,2.00460,-0.34437
+0.03404,1.01997,-1.27375,-1.57495,-0.99860,2.00477,-0.34453
+0.03473,1.01974,-1.27426,-1.57427,-0.99883,2.00494,-0.34469
+0.03543,1.01952,-1.27476,-1.57360,-0.99907,2.00511,-0.34485
+0.03612,1.01929,-1.27525,-1.57294,-0.99930,2.00528,-0.34501
+0.03682,1.01908,-1.27573,-1.57229,-0.99953,2.00544,-0.34517
+0.03751,1.01886,-1.27620,-1.57165,-0.99976,2.00560,-0.34532
+0.03821,1.01865,-1.27667,-1.57102,-0.99998,2.00576,-0.34547
+0.03890,1.01845,-1.27713,-1.57041,-1.00020,2.00592,-0.34562
+0.03959,1.01824,-1.27758,-1.56980,-1.00042,2.00608,-0.34577
+0.04029,1.01804,-1.27802,-1.56920,-1.00064,2.00623,-0.34591
+0.04098,1.01784,-1.27845,-1.56861,-1.00085,2.00638,-0.34605
+0.04168,1.01765,-1.27888,-1.56803,-1.00106,2.00653,-0.34619
+0.04237,1.01745,-1.27930,-1.56746,-1.00126,2.00667,-0.34633
+0.04307,1.01726,-1.27972,-1.56690,-1.00147,2.00682,-0.34647
+0.04376,1.01708,-1.28012,-1.56635,-1.00167,2.00696,-0.34660
+0.04446,1.01689,-1.28052,-1.56580,-1.00187,2.00710,-0.34673
+0.04515,1.01674,-1.28085,-1.56536,-1.00203,2.00722,-0.34685
+0.04585,1.01642,-1.28142,-1.56464,-1.00227,2.00746,-0.34707
+0.04654,1.01611,-1.28197,-1.56393,-1.00251,2.00769,-0.34730
+0.04724,1.01580,-1.28252,-1.56324,-1.00275,2.00792,-0.34751
+0.04793,1.01550,-1.28305,-1.56256,-1.00299,2.00815,-0.34773
+0.04862,1.01520,-1.28358,-1.56189,-1.00322,2.00838,-0.34794
+0.04932,1.01491,-1.28410,-1.56122,-1.00345,2.00860,-0.34815
+0.05001,1.01462,-1.28461,-1.56057,-1.00367,2.00881,-0.34836
+0.05071,1.01434,-1.28511,-1.55993,-1.00390,2.00903,-0.34856
+0.05140,1.01406,-1.28560,-1.55930,-1.00412,2.00924,-0.34876
+0.05210,1.01379,-1.28608,-1.55868,-1.00433,2.00945,-0.34896
+0.05279,1.01352,-1.28656,-1.55807,-1.00455,2.00965,-0.34915
+0.05349,1.01325,-1.28703,-1.55747,-1.00476,2.00985,-0.34934
+0.05418,1.01299,-1.28749,-1.55688,-1.00497,2.01005,-0.34953
+0.05488,1.01273,-1.28794,-1.55630,-1.00518,2.01024,-0.34972
+0.05557,1.01248,-1.28838,-1.55572,-1.00538,2.01044,-0.34990
+0.05627,1.01223,-1.28882,-1.55516,-1.00558,2.01063,-0.35008
+0.05696,1.01199,-1.28925,-1.55461,-1.00578,2.01081,-0.35025
+0.05765,1.01174,-1.28967,-1.55406,-1.00598,2.01099,-0.35043
+0.05835,1.01151,-1.29009,-1.55352,-1.00617,2.01117,-0.35060
+0.05904,1.01127,-1.29049,-1.55299,-1.00637,2.01135,-0.35077
+0.05974,1.01104,-1.29089,-1.55247,-1.00655,2.01153,-0.35093
+0.06043,1.01082,-1.29125,-1.55202,-1.00671,2.01169,-0.35109
+0.06113,1.01023,-1.29206,-1.55111,-1.00700,2.01214,-0.35152
+0.06182,1.00964,-1.29285,-1.55020,-1.00728,2.01258,-0.35193
+0.06252,1.00907,-1.29363,-1.54931,-1.00756,2.01301,-0.35235
+0.06321,1.00850,-1.29440,-1.54844,-1.00784,2.01344,-0.35275
+0.06391,1.00795,-1.29515,-1.54758,-1.00811,2.01385,-0.35315
+0.06460,1.00740,-1.29589,-1.54673,-1.00839,2.01426,-0.35354
+0.06530,1.00686,-1.29662,-1.54589,-1.00865,2.01467,-0.35392
+0.06599,1.00634,-1.29733,-1.54507,-1.00892,2.01507,-0.35430
+0.06669,1.00582,-1.29803,-1.54426,-1.00918,2.01546,-0.35468
+0.06738,1.00531,-1.29873,-1.54346,-1.00944,2.01584,-0.35504
+0.06807,1.00480,-1.29940,-1.54268,-1.00970,2.01622,-0.35540
+0.06877,1.00431,-1.30007,-1.54190,-1.00995,2.01659,-0.35576
+0.06946,1.00383,-1.30073,-1.54114,-1.01020,2.01696,-0.35611
+0.07016,1.00335,-1.30137,-1.54039,-1.01045,2.01732,-0.35645
+0.07085,1.00288,-1.30201,-1.53965,-1.01070,2.01767,-0.35679
+0.07155,1.00242,-1.30263,-1.53893,-1.01094,2.01802,-0.35712
+0.07224,1.00196,-1.30325,-1.53821,-1.01118,2.01836,-0.35745
+0.07294,1.00152,-1.30385,-1.53751,-1.01142,2.01870,-0.35777
+0.07363,1.00108,-1.30444,-1.53682,-1.01165,2.01903,-0.35809
+0.07433,1.00065,-1.30502,-1.53613,-1.01188,2.01935,-0.35840
+0.07502,1.00022,-1.30560,-1.53546,-1.01211,2.01967,-0.35871
+0.07572,0.99980,-1.30616,-1.53480,-1.01234,2.01999,-0.35901
+0.07641,0.99939,-1.30671,-1.53415,-1.01256,2.02030,-0.35931
+0.07710,0.99899,-1.30726,-1.53351,-1.01278,2.02061,-0.35961
+0.07780,0.99859,-1.30779,-1.53288,-1.01300,2.02091,-0.35989
+0.07849,0.99820,-1.30832,-1.53226,-1.01322,2.02120,-0.36018
+0.07919,0.99782,-1.30884,-1.53165,-1.01343,2.02149,-0.36046
+0.07988,0.99744,-1.30934,-1.53105,-1.01364,2.02178,-0.36073
+0.08058,0.99707,-1.30984,-1.53045,-1.01385,2.02206,-0.36100
+0.08127,0.99670,-1.31033,-1.52987,-1.01406,2.02234,-0.36127
+0.08197,0.99634,-1.31082,-1.52930,-1.01426,2.02261,-0.36153
+0.08266,0.99599,-1.31129,-1.52873,-1.01446,2.02288,-0.36179
+0.08336,0.99564,-1.31176,-1.52818,-1.01466,2.02314,-0.36204
+0.08405,0.99530,-1.31222,-1.52763,-1.01486,2.02340,-0.36229
+0.08475,0.99496,-1.31267,-1.52709,-1.01505,2.02365,-0.36254
+0.08544,0.99463,-1.31311,-1.52656,-1.01525,2.02390,-0.36278
+0.08614,0.99430,-1.31355,-1.52604,-1.01543,2.02415,-0.36302
+0.08683,0.99398,-1.31398,-1.52552,-1.01562,2.02439,-0.36325
+0.08752,0.99367,-1.31440,-1.52502,-1.01581,2.02463,-0.36348
+0.08822,0.99336,-1.31481,-1.52452,-1.01599,2.02487,-0.36371
+0.08891,0.99305,-1.31522,-1.52403,-1.01617,2.02510,-0.36394
+0.08961,0.99275,-1.31562,-1.52355,-1.01635,2.02533,-0.36416
+0.09030,0.99246,-1.31601,-1.52307,-1.01652,2.02555,-0.36437
+0.09100,0.99215,-1.31642,-1.52259,-1.01670,2.02579,-0.36460
+0.09169,0.99167,-1.31699,-1.52196,-1.01691,2.02615,-0.36495
+0.09239,0.99120,-1.31755,-1.52134,-1.01712,2.02650,-0.36529
+0.09308,0.99074,-1.31810,-1.52073,-1.01732,2.02685,-0.36563
+0.09378,0.99028,-1.31864,-1.52013,-1.01752,2.02719,-0.36596
+0.09447,0.98983,-1.31917,-1.51954,-1.01772,2.02753,-0.36629
+0.09517,0.98939,-1.31970,-1.51896,-1.01792,2.02786,-0.36661
+0.09586,0.98896,-1.32021,-1.51839,-1.01811,2.02819,-0.36692
+0.09655,0.98854,-1.32072,-1.51782,-1.01831,2.02851,-0.36723
+0.09725,0.98812,-1.32122,-1.51727,-1.01850,2.02882,-0.36754
+0.09794,0.98771,-1.32170,-1.51672,-1.01869,2.02913,-0.36784
+0.09864,0.98730,-1.32218,-1.51618,-1.01887,2.02944,-0.36814
+0.09933,0.98691,-1.32266,-1.51566,-1.01906,2.02974,-0.36843
+0.10003,0.98651,-1.32312,-1.51513,-1.01924,2.03003,-0.36872
+0.10072,0.98613,-1.32358,-1.51462,-1.01942,2.03032,-0.36900
+0.10142,0.98575,-1.32403,-1.51411,-1.01960,2.03061,-0.36928
+0.10211,0.98538,-1.32447,-1.51362,-1.01978,2.03089,-0.36955
+0.10281,0.98501,-1.32490,-1.51313,-1.01995,2.03117,-0.36982
+0.10350,0.98465,-1.32533,-1.51264,-1.02012,2.03144,-0.37008
+0.10420,0.98430,-1.32575,-1.51217,-1.02029,2.03170,-0.37034
+0.10489,0.98395,-1.32616,-1.51170,-1.02046,2.03197,-0.37060
+0.10558,0.98361,-1.32657,-1.51124,-1.02063,2.03223,-0.37085
+0.10628,0.98327,-1.32697,-1.51079,-1.02079,2.03248,-0.37110
+0.10697,0.98294,-1.32736,-1.51034,-1.02095,2.03273,-0.37135
+0.10767,0.98262,-1.32774,-1.50990,-1.02111,2.03298,-0.37159
+0.10836,0.98228,-1.32814,-1.50945,-1.02128,2.03323,-0.37184
+0.10906,0.98178,-1.32871,-1.50884,-1.02148,2.03361,-0.37220
+0.10975,0.98129,-1.32927,-1.50823,-1.02168,2.03397,-0.37256
+0.11045,0.98081,-1.32982,-1.50764,-1.02188,2.03434,-0.37291
+0.11114,0.98034,-1.33036,-1.50705,-1.02208,2.03469,-0.37326
+0.11184,0.97987,-1.33090,-1.50648,-1.02227,2.03504,-0.37360
+0.11253,0.97942,-1.33142,-1.50591,-1.02247,2.03538,-0.37394
+0.11323,0.97897,-1.33194,-1.50535,-1.02266,2.03572,-0.37427
+0.11392,0.97852,-1.33244,-1.50480,-1.02284,2.03606,-0.37460
+0.11462,0.97809,-1.33294,-1.50425,-1.02303,2.03638,-0.37492
+0.11531,0.97766,-1.33343,-1.50372,-1.02322,2.03670,-0.37523
+0.11600,0.97724,-1.33391,-1.50319,-1.02340,2.03702,-0.37554
+0.11670,0.97683,-1.33438,-1.50268,-1.02358,2.03733,-0.37585
+0.11739,0.97642,-1.33485,-1.50217,-1.02376,2.03764,-0.37615
+0.11809,0.97602,-1.33530,-1.50166,-1.02393,2.03794,-0.37644
+0.11878,0.97563,-1.33575,-1.50117,-1.02411,2.03823,-0.37673
+0.11948,0.97524,-1.33619,-1.50068,-1.02428,2.03852,-0.37702
+0.12017,0.97486,-1.33663,-1.50020,-1.02445,2.03881,-0.37730
+0.12087,0.97449,-1.33706,-1.49973,-1.02462,2.03909,-0.37758
+0.12156,0.97412,-1.33748,-1.49927,-1.02479,2.03937,-0.37785
+0.12226,0.97376,-1.33789,-1.49881,-1.02495,2.03964,-0.37812
+0.12295,0.97341,-1.33829,-1.49836,-1.02512,2.03991,-0.37838
+0.12365,0.97306,-1.33869,-1.49791,-1.02528,2.04017,-0.37864
+0.12434,0.97272,-1.33909,-1.49748,-1.02544,2.04043,-0.37889
+0.12503,0.97238,-1.33947,-1.49705,-1.02559,2.04069,-0.37915
+0.12573,0.97205,-1.33985,-1.49662,-1.02575,2.04094,-0.37939
+0.12642,0.97179,-1.34014,-1.49631,-1.02586,2.04113,-0.37958
+0.12712,0.97120,-1.34075,-1.49570,-1.02605,2.04157,-0.38002
+0.12781,0.97063,-1.34135,-1.49510,-1.02625,2.04200,-0.38044
+0.12851,0.97006,-1.34194,-1.49450,-1.02643,2.04242,-0.38086
+0.12920,0.96950,-1.34252,-1.49392,-1.02662,2.04284,-0.38127
+0.12990,0.96896,-1.34309,-1.49334,-1.02681,2.04325,-0.38168
+0.13059,0.96842,-1.34365,-1.49278,-1.02699,2.04365,-0.38208
+0.13129,0.96789,-1.34420,-1.49222,-1.02718,2.04405,-0.38247
+0.13198,0.96737,-1.34474,-1.49167,-1.02736,2.04444,-0.38285
+0.13268,0.96686,-1.34527,-1.49113,-1.02754,2.04482,-0.38323
+0.13337,0.96636,-1.34580,-1.49060,-1.02771,2.04520,-0.38360
+0.13407,0.96586,-1.34631,-1.49007,-1.02789,2.04557,-0.38397
+0.13476,0.96538,-1.34682,-1.48955,-1.02806,2.04593,-0.38433
+0.13545,0.96490,-1.34732,-1.48904,-1.02823,2.04629,-0.38469
+0.13615,0.96443,-1.34781,-1.48854,-1.02840,2.04664,-0.38504
+0.13684,0.96397,-1.34829,-1.48805,-1.02857,2.04698,-0.38538
+0.13754,0.96352,-1.34876,-1.48756,-1.02874,2.04732,-0.38572
+0.13823,0.96307,-1.34922,-1.48708,-1.02891,2.04766,-0.38605
+0.13893,0.96263,-1.34968,-1.48661,-1.02907,2.04799,-0.38638
+0.13962,0.96220,-1.35013,-1.48614,-1.02923,2.04831,-0.38670
+0.14032,0.96178,-1.35057,-1.48568,-1.02939,2.04863,-0.38701
+0.14101,0.96136,-1.35101,-1.48523,-1.02955,2.04894,-0.38733
+0.14171,0.96096,-1.35144,-1.48479,-1.02971,2.04925,-0.38763
+0.14240,0.96055,-1.35186,-1.48435,-1.02986,2.04955,-0.38793
+0.14310,0.96016,-1.35227,-1.48392,-1.03001,2.04984,-0.38823
+0.14379,0.95977,-1.35267,-1.48349,-1.03017,2.05014,-0.38852
+0.14448,0.95939,-1.35307,-1.48307,-1.03032,2.05042,-0.38881
+0.14518,0.95901,-1.35347,-1.48266,-1.03046,2.05071,-0.38909
+0.14587,0.95864,-1.35385,-1.48226,-1.03061,2.05098,-0.38937
+0.14657,0.95828,-1.35423,-1.48186,-1.03076,2.05126,-0.38964
+0.14726,0.95792,-1.35460,-1.48146,-1.03090,2.05152,-0.38991
+0.14796,0.95757,-1.35497,-1.48108,-1.03104,2.05179,-0.39017
+0.14865,0.95735,-1.35520,-1.48084,-1.03113,2.05196,-0.39034
+0.14935,0.95683,-1.35570,-1.48035,-1.03129,2.05234,-0.39072
+0.15004,0.95633,-1.35620,-1.47987,-1.03144,2.05272,-0.39110
+0.15074,0.95584,-1.35668,-1.47940,-1.03160,2.05308,-0.39147
+0.15143,0.95535,-1.35716,-1.47894,-1.03175,2.05345,-0.39183
+0.15213,0.95487,-1.35762,-1.47849,-1.03190,2.05380,-0.39219
+0.15282,0.95440,-1.35808,-1.47804,-1.03206,2.05416,-0.39254
+0.15351,0.95394,-1.35854,-1.47759,-1.03220,2.05450,-0.39289
+0.15421,0.95349,-1.35898,-1.47716,-1.03235,2.05484,-0.39323
+0.15490,0.95304,-1.35942,-1.47673,-1.03250,2.05517,-0.39357
+0.15560,0.95260,-1.35985,-1.47631,-1.03264,2.05550,-0.39390
+0.15629,0.95217,-1.36027,-1.47589,-1.03279,2.05582,-0.39422
+0.15699,0.95175,-1.36069,-1.47548,-1.03293,2.05614,-0.39454
+0.15768,0.95133,-1.36109,-1.47507,-1.03307,2.05645,-0.39485
+0.15838,0.95093,-1.36150,-1.47468,-1.03321,2.05676,-0.39516
+0.15907,0.95052,-1.36189,-1.47428,-1.03335,2.05706,-0.39547
+0.15977,0.95013,-1.36228,-1.47390,-1.03348,2.05735,-0.39576
+0.16046,0.94974,-1.36266,-1.47352,-1.03362,2.05765,-0.39606
+0.16116,0.94936,-1.36304,-1.47314,-1.03375,2.05793,-0.39635
+0.16185,0.94898,-1.36341,-1.47277,-1.03389,2.05821,-0.39663
+0.16255,0.94861,-1.36377,-1.47241,-1.03402,2.05849,-0.39691
+0.16324,0.94825,-1.36412,-1.47205,-1.03415,2.05876,-0.39719
+0.16393,0.94802,-1.36435,-1.47183,-1.03423,2.05893,-0.39736
+0.16463,0.94756,-1.36479,-1.47141,-1.03437,2.05928,-0.39771
+0.16532,0.94710,-1.36522,-1.47099,-1.03451,2.05962,-0.39805
+0.16602,0.94665,-1.36565,-1.47058,-1.03464,2.05995,-0.39839
+0.16671,0.94621,-1.36607,-1.47018,-1.03478,2.06028,-0.39873
+0.16741,0.94578,-1.36649,-1.46978,-1.03492,2.06061,-0.39905
+0.16810,0.94535,-1.36690,-1.46939,-1.03505,2.06093,-0.39938
+0.16880,0.94493,-1.36730,-1.46901,-1.03518,2.06124,-0.39969
+0.16949,0.94452,-1.36769,-1.46863,-1.03531,2.06155,-0.40001
+0.17019,0.94411,-1.36808,-1.46825,-1.03544,2.06185,-0.40031
+0.17088,0.94371,-1.36846,-1.46788,-1.03557,2.06215,-0.40062
+0.17158,0.94332,-1.36883,-1.46752,-1.03570,2.06244,-0.40091
+0.17227,0.94294,-1.36920,-1.46716,-1.03583,2.06273,-0.40120
+0.17296,0.94256,-1.36956,-1.46681,-1.03595,2.06301,-0.40149
+0.17366,0.94219,-1.36992,-1.46646,-1.03608,2.06329,-0.40177
+0.17435,0.94182,-1.37027,-1.46612,-1.03620,2.06356,-0.40205
+0.17505,0.94173,-1.37035,-1.46604,-1.03623,2.06363,-0.40212
+0.17574,0.94116,-1.37087,-1.46559,-1.03637,2.06406,-0.40256
+0.17644,0.94060,-1.37138,-1.46514,-1.03650,2.06447,-0.40298
+0.17713,0.94004,-1.37188,-1.46470,-1.03664,2.06488,-0.40340
+0.17783,0.93950,-1.37237,-1.46426,-1.03678,2.06528,-0.40381
+0.17852,0.93897,-1.37285,-1.46384,-1.03691,2.06568,-0.40421
+0.17922,0.93845,-1.37332,-1.46341,-1.03705,2.06607,-0.40461
+0.17991,0.93793,-1.37379,-1.46300,-1.03718,2.06645,-0.40500
+0.18061,0.93742,-1.37425,-1.46259,-1.03731,2.06683,-0.40538
+0.18130,0.93693,-1.37470,-1.46218,-1.03745,2.06720,-0.40576
+0.18199,0.93644,-1.37514,-1.46179,-1.03758,2.06756,-0.40613
+0.18269,0.93596,-1.37558,-1.46139,-1.03770,2.06792,-0.40650
+0.18338,0.93549,-1.37600,-1.46101,-1.03783,2.06827,-0.40686
+0.18408,0.93502,-1.37642,-1.46062,-1.03796,2.06861,-0.40721
+0.18477,0.93457,-1.37684,-1.46025,-1.03809,2.06895,-0.40756
+0.18547,0.93412,-1.37725,-1.45988,-1.03821,2.06928,-0.40790
+0.18616,0.93368,-1.37765,-1.45951,-1.03833,2.06961,-0.40823
+0.18686,0.93325,-1.37804,-1.45915,-1.03846,2.06993,-0.40856
+0.18755,0.93282,-1.37843,-1.45880,-1.03858,2.07025,-0.40889
+0.18825,0.93241,-1.37881,-1.45845,-1.03870,2.07056,-0.40921
+0.18894,0.93200,-1.37918,-1.45811,-1.03882,2.07086,-0.40952
+0.18964,0.93159,-1.37955,-1.45777,-1.03893,2.07117,-0.40983
+0.19033,0.93120,-1.37991,-1.45744,-1.03905,2.07146,-0.41014
+0.19103,0.93081,-1.38026,-1.45711,-1.03917,2.07175,-0.41044
+0.19172,0.93042,-1.38061,-1.45678,-1.03928,2.07204,-0.41073
+0.19241,0.93005,-1.38096,-1.45646,-1.03940,2.07232,-0.41102
+0.19311,0.92968,-1.38129,-1.45617,-1.03950,2.07259,-0.41130
+0.19380,0.92898,-1.38187,-1.45571,-1.03962,2.07311,-0.41183
+0.19450,0.92829,-1.38244,-1.45527,-1.03975,2.07361,-0.41236
+0.19519,0.92761,-1.38300,-1.45483,-1.03987,2.07411,-0.41287
+0.19589,0.92695,-1.38355,-1.45439,-1.03999,2.07460,-0.41338
+0.19658,0.92630,-1.38410,-1.45396,-1.04012,2.07508,-0.41388
+0.19728,0.92565,-1.38463,-1.45354,-1.04024,2.07556,-0.41437
+0.19797,0.92502,-1.38516,-1.45312,-1.04036,2.07602,-0.41485
+0.19867,0.92441,-1.38567,-1.45271,-1.04048,2.07648,-0.41532
+0.19936,0.92380,-1.38618,-1.45231,-1.04060,2.07693,-0.41579
+0.20006,0.92320,-1.38668,-1.45191,-1.04072,2.07737,-0.41625
+0.20075,0.92261,-1.38717,-1.45151,-1.04084,2.07780,-0.41670
+0.20144,0.92204,-1.38765,-1.45113,-1.04095,2.07823,-0.41714
+0.20214,0.92147,-1.38813,-1.45074,-1.04107,2.07865,-0.41757
+0.20283,0.92091,-1.38859,-1.45037,-1.04119,2.07906,-0.41800
+0.20353,0.92037,-1.38905,-1.44999,-1.04130,2.07946,-0.41842
+0.20422,0.91983,-1.38950,-1.44963,-1.04142,2.07986,-0.41883
+0.20492,0.91930,-1.38995,-1.44927,-1.04153,2.08025,-0.41924
+0.20561,0.91878,-1.39038,-1.44891,-1.04165,2.08063,-0.41964
+0.20631,0.91827,-1.39081,-1.44856,-1.04176,2.08101,-0.42003
+0.20700,0.91777,-1.39123,-1.44821,-1.04187,2.08138,-0.42042
+0.20770,0.91728,-1.39165,-1.44787,-1.04198,2.08174,-0.42080
+0.20839,0.91680,-1.39206,-1.44753,-1.04209,2.08210,-0.42118
+0.20909,0.91632,-1.39246,-1.44720,-1.04220,2.08245,-0.42154
+0.20978,0.91586,-1.39285,-1.44687,-1.04231,2.08280,-0.42190
+0.21048,0.91540,-1.39324,-1.44655,-1.04242,2.08314,-0.42226
+0.21117,0.91495,-1.39362,-1.44623,-1.04252,2.08347,-0.42261
+0.21186,0.91450,-1.39399,-1.44592,-1.04263,2.08380,-0.42295
+0.21256,0.91407,-1.39436,-1.44561,-1.04274,2.08412,-0.42329
+0.21325,0.91364,-1.39472,-1.44530,-1.04284,2.08444,-0.42362
+0.21395,0.91322,-1.39508,-1.44500,-1.04294,2.08475,-0.42395
+0.21464,0.91281,-1.39543,-1.44471,-1.04305,2.08505,-0.42427
+0.21534,0.91240,-1.39577,-1.44441,-1.04315,2.08536,-0.42459
+0.21603,0.91200,-1.39611,-1.44413,-1.04325,2.08565,-0.42490
+0.21673,0.91161,-1.39645,-1.44384,-1.04335,2.08594,-0.42520
+0.21742,0.91122,-1.39677,-1.44356,-1.04345,2.08623,-0.42551
+0.21812,0.91084,-1.39710,-1.44329,-1.04355,2.08652,-0.42581
+0.21881,0.91037,-1.39747,-1.44301,-1.04363,2.08686,-0.42617
+0.21951,0.90990,-1.39783,-1.44274,-1.04372,2.08720,-0.42653
+0.22020,0.90945,-1.39818,-1.44247,-1.04381,2.08754,-0.42689
+0.22089,0.90901,-1.39853,-1.44221,-1.04389,2.08787,-0.42723
+0.22159,0.90857,-1.39887,-1.44195,-1.04398,2.08819,-0.42757
+0.22228,0.90814,-1.39921,-1.44169,-1.04406,2.08851,-0.42791
+0.22298,0.90771,-1.39954,-1.44143,-1.04415,2.08882,-0.42824
+0.22367,0.90730,-1.39987,-1.44118,-1.04423,2.08913,-0.42856
+0.22437,0.90689,-1.40019,-1.44094,-1.04431,2.08943,-0.42888
+0.22506,0.90649,-1.40050,-1.44069,-1.04440,2.08972,-0.42920
+0.22576,0.90610,-1.40081,-1.44045,-1.04448,2.09002,-0.42951
+0.22645,0.90573,-1.40110,-1.44024,-1.04455,2.09028,-0.42979
+0.22715,0.90522,-1.40146,-1.44002,-1.04461,2.09066,-0.43019
+0.22784,0.90471,-1.40181,-1.43980,-1.04467,2.09104,-0.43059
+0.22854,0.90421,-1.40216,-1.43958,-1.04473,2.09140,-0.43098
+0.22923,0.90372,-1.40250,-1.43937,-1.04479,2.09176,-0.43136
+0.22992,0.90324,-1.40284,-1.43916,-1.04485,2.09212,-0.43174
+0.23062,0.90276,-1.40317,-1.43895,-1.04491,2.09247,-0.43211
+0.23131,0.90230,-1.40350,-1.43874,-1.04497,2.09281,-0.43247
+0.23201,0.90184,-1.40382,-1.43854,-1.04503,2.09314,-0.43283
+0.23270,0.90139,-1.40414,-1.43834,-1.04509,2.09347,-0.43318
+0.23340,0.90095,-1.40445,-1.43814,-1.04515,2.09380,-0.43352
+0.23409,0.90052,-1.40475,-1.43795,-1.04521,2.09412,-0.43386
+0.23479,0.90009,-1.40505,-1.43775,-1.04527,2.09443,-0.43420
+0.23548,0.89968,-1.40535,-1.43756,-1.04533,2.09474,-0.43453
+0.23618,0.89926,-1.40564,-1.43737,-1.04538,2.09504,-0.43485
+0.23687,0.89886,-1.40592,-1.43719,-1.04544,2.09534,-0.43517
+0.23757,0.89852,-1.40615,-1.43705,-1.04548,2.09559,-0.43543
+0.23826,0.89795,-1.40645,-1.43698,-1.04548,2.09601,-0.43588
+0.23896,0.89738,-1.40675,-1.43690,-1.04547,2.09642,-0.43633
+0.23965,0.89683,-1.40705,-1.43683,-1.04547,2.09683,-0.43676
+0.24034,0.89628,-1.40734,-1.43675,-1.04547,2.09723,-0.43719
+0.24104,0.89574,-1.40763,-1.43668,-1.04547,2.09762,-0.43761
+0.24173,0.89522,-1.40791,-1.43661,-1.04547,2.09801,-0.43803
+0.24243,0.89470,-1.40819,-1.43653,-1.04547,2.09839,-0.43843
+0.24312,0.89419,-1.40846,-1.43646,-1.04547,2.09876,-0.43883
+0.24382,0.89369,-1.40873,-1.43639,-1.04547,2.09912,-0.43923
+0.24451,0.89320,-1.40899,-1.43632,-1.04547,2.09948,-0.43961
+0.24521,0.89272,-1.40925,-1.43624,-1.04548,2.09984,-0.43999
+0.24590,0.89224,-1.40950,-1.43617,-1.04548,2.10018,-0.44037
+0.24660,0.89178,-1.40975,-1.43610,-1.04548,2.10053,-0.44073
+0.24729,0.89132,-1.41000,-1.43603,-1.04549,2.10086,-0.44109
+0.24799,0.89087,-1.41024,-1.43596,-1.04550,2.10119,-0.44145
+0.24868,0.89043,-1.41048,-1.43589,-1.04550,2.10151,-0.44180
+0.24937,0.89000,-1.41071,-1.43583,-1.04551,2.10183,-0.44214
+0.25007,0.88957,-1.41094,-1.43576,-1.04552,2.10214,-0.44248
+0.25076,0.88915,-1.41117,-1.43569,-1.04553,2.10245,-0.44281
+0.25146,0.88871,-1.41139,-1.43565,-1.04552,2.10277,-0.44316
+0.25215,0.88804,-1.41156,-1.43589,-1.04538,2.10326,-0.44369
+0.25285,0.88737,-1.41174,-1.43612,-1.04524,2.10375,-0.44421
+0.25354,0.88672,-1.41190,-1.43635,-1.04511,2.10422,-0.44473
+0.25424,0.88608,-1.41207,-1.43657,-1.04498,2.10468,-0.44523
+0.25493,0.88545,-1.41224,-1.43679,-1.04485,2.10514,-0.44573
+0.25563,0.88484,-1.41240,-1.43700,-1.04472,2.10559,-0.44622
+0.25632,0.88423,-1.41256,-1.43721,-1.04460,2.10603,-0.44670
+0.25702,0.88364,-1.41271,-1.43742,-1.04448,2.10647,-0.44717
+0.25771,0.88305,-1.41287,-1.43762,-1.04436,2.10689,-0.44763
+0.25841,0.88248,-1.41302,-1.43781,-1.04425,2.10731,-0.44809
+0.25910,0.88191,-1.41317,-1.43800,-1.04414,2.10772,-0.44854
+0.25979,0.88136,-1.41332,-1.43819,-1.04403,2.10812,-0.44898
+0.26049,0.88081,-1.41346,-1.43838,-1.04392,2.10852,-0.44941
+0.26118,0.88028,-1.41360,-1.43856,-1.04382,2.10891,-0.44984
+0.26188,0.87975,-1.41374,-1.43873,-1.04372,2.10929,-0.45026
+0.26257,0.87923,-1.41388,-1.43891,-1.04362,2.10967,-0.45067
+0.26327,0.87873,-1.41401,-1.43908,-1.04352,2.11004,-0.45107
+0.26396,0.87823,-1.41415,-1.43924,-1.04343,2.11040,-0.45147
+0.26466,0.87774,-1.41428,-1.43940,-1.04333,2.11076,-0.45186
+0.26535,0.87726,-1.41441,-1.43956,-1.04324,2.11111,-0.45224
+0.26605,0.87679,-1.41453,-1.43972,-1.04315,2.11145,-0.45262
+0.26674,0.87632,-1.41466,-1.43987,-1.04307,2.11179,-0.45299
+0.26744,0.87587,-1.41478,-1.44002,-1.04298,2.11212,-0.45336
+0.26813,0.87542,-1.41490,-1.44017,-1.04290,2.11245,-0.45371
+0.26882,0.87498,-1.41502,-1.44031,-1.04282,2.11277,-0.45407
+0.26952,0.87455,-1.41514,-1.44045,-1.04274,2.11308,-0.45441
+0.27021,0.87412,-1.41525,-1.44059,-1.04266,2.11339,-0.45475
+0.27091,0.87370,-1.41537,-1.44072,-1.04259,2.11370,-0.45509
+0.27160,0.87329,-1.41548,-1.44085,-1.04251,2.11400,-0.45541
+0.27230,0.87289,-1.41559,-1.44098,-1.04244,2.11429,-0.45574
+0.27299,0.87272,-1.41562,-1.44105,-1.04241,2.11441,-0.45587
+0.27369,0.87224,-1.41568,-1.44133,-1.04227,2.11476,-0.45626
+0.27438,0.87177,-1.41574,-1.44160,-1.04213,2.11510,-0.45664
+0.27508,0.87131,-1.41580,-1.44187,-1.04200,2.11544,-0.45701
+0.27577,0.87085,-1.41586,-1.44213,-1.04187,2.11577,-0.45737
+0.27647,0.87040,-1.41592,-1.44239,-1.04174,2.11610,-0.45773
+0.27716,0.86996,-1.41597,-1.44264,-1.04161,2.11642,-0.45809
+0.27785,0.86953,-1.41603,-1.44289,-1.04149,2.11673,-0.45843
+0.27855,0.86911,-1.41608,-1.44314,-1.04137,2.11704,-0.45878
+0.27924,0.86869,-1.41614,-1.44338,-1.04125,2.11734,-0.45911
+0.27994,0.86828,-1.41619,-1.44361,-1.04113,2.11764,-0.45944
+0.28063,0.86788,-1.41624,-1.44384,-1.04102,2.11793,-0.45976
+0.28133,0.86748,-1.41629,-1.44407,-1.04091,2.11822,-0.46008
+0.28202,0.86710,-1.41634,-1.44429,-1.04080,2.11850,-0.46040
+0.28272,0.86672,-1.41639,-1.44451,-1.04069,2.11878,-0.46070
+0.28341,0.86662,-1.41638,-1.44460,-1.04065,2.11885,-0.46078
+0.28411,0.86604,-1.41622,-1.44534,-1.04032,2.11927,-0.46125
+0.28480,0.86546,-1.41607,-1.44607,-1.03999,2.11968,-0.46171
+0.28550,0.86490,-1.41592,-1.44678,-1.03967,2.12009,-0.46216
+0.28619,0.86435,-1.41577,-1.44748,-1.03935,2.12049,-0.46261
+0.28689,0.86381,-1.41562,-1.44816,-1.03904,2.12088,-0.46305
+0.28758,0.86327,-1.41548,-1.44884,-1.03874,2.12126,-0.46347
+0.28827,0.86275,-1.41534,-1.44950,-1.03844,2.12164,-0.46390
+0.28897,0.86224,-1.41520,-1.45015,-1.03815,2.12201,-0.46431
+0.28966,0.86173,-1.41506,-1.45079,-1.03786,2.12237,-0.46472
+0.29036,0.86124,-1.41493,-1.45142,-1.03758,2.12273,-0.46512
+0.29105,0.86075,-1.41480,-1.45204,-1.03730,2.12308,-0.46551
+0.29175,0.86027,-1.41467,-1.45264,-1.03702,2.12343,-0.46590
+0.29244,0.85980,-1.41455,-1.45324,-1.03676,2.12377,-0.46628
+0.29314,0.85934,-1.41442,-1.45382,-1.03649,2.12410,-0.46665
+0.29383,0.85889,-1.41430,-1.45440,-1.03623,2.12443,-0.46702
+0.29453,0.85844,-1.41418,-1.45496,-1.03598,2.12475,-0.46738
+0.29522,0.85801,-1.41406,-1.45552,-1.03573,2.12507,-0.46774
+0.29592,0.85758,-1.41395,-1.45606,-1.03548,2.12538,-0.46808
+0.29661,0.85715,-1.41384,-1.45660,-1.03524,2.12568,-0.46843
+0.29730,0.85674,-1.41373,-1.45712,-1.03500,2.12598,-0.46876
+0.29800,0.85633,-1.41362,-1.45764,-1.03477,2.12627,-0.46909
+0.29869,0.85593,-1.41351,-1.45815,-1.03454,2.12656,-0.46942
+0.29939,0.85554,-1.41341,-1.45865,-1.03432,2.12685,-0.46974
+0.30008,0.85516,-1.41330,-1.45913,-1.03410,2.12712,-0.47005
+0.30078,0.85478,-1.41320,-1.45962,-1.03388,2.12740,-0.47036
+0.30147,0.85441,-1.41310,-1.46009,-1.03367,2.12767,-0.47066
+0.30217,0.85404,-1.41300,-1.46055,-1.03346,2.12793,-0.47096
+0.30286,0.85368,-1.41291,-1.46101,-1.03325,2.12819,-0.47125
+0.30356,0.85333,-1.41281,-1.46146,-1.03305,2.12845,-0.47153
+0.30425,0.85298,-1.41272,-1.46190,-1.03285,2.12870,-0.47182
+0.30495,0.85264,-1.41263,-1.46233,-1.03265,2.12894,-0.47209
+0.30564,0.85231,-1.41254,-1.46275,-1.03246,2.12918,-0.47236
+0.30634,0.85198,-1.41245,-1.46317,-1.03227,2.12942,-0.47263
+0.30703,0.85166,-1.41237,-1.46358,-1.03209,2.12965,-0.47289
+0.30772,0.85135,-1.41228,-1.46398,-1.03191,2.12988,-0.47315
+0.30842,0.85103,-1.41220,-1.46438,-1.03173,2.13011,-0.47341
+0.30911,0.85084,-1.41212,-1.46467,-1.03160,2.13025,-0.47357
+0.30981,0.85039,-1.41179,-1.46561,-1.03120,2.13057,-0.47393
+0.31050,0.84995,-1.41146,-1.46653,-1.03080,2.13089,-0.47429
+0.31120,0.84952,-1.41113,-1.46743,-1.03041,2.13119,-0.47464
+0.31189,0.84910,-1.41081,-1.46832,-1.03003,2.13150,-0.47499
+0.31259,0.84868,-1.41050,-1.46919,-1.02965,2.13180,-0.47533
+0.31328,0.84827,-1.41019,-1.47005,-1.02928,2.13209,-0.47566
+0.31398,0.84787,-1.40989,-1.47090,-1.02892,2.13238,-0.47599
+0.31467,0.84748,-1.40959,-1.47172,-1.02856,2.13266,-0.47631
+0.31537,0.84709,-1.40930,-1.47254,-1.02821,2.13294,-0.47662
+0.31606,0.84671,-1.40901,-1.47334,-1.02786,2.13321,-0.47694
+0.31675,0.84634,-1.40873,-1.47413,-1.02752,2.13348,-0.47724
+0.31745,0.84598,-1.40845,-1.47490,-1.02719,2.13374,-0.47754
+0.31814,0.84562,-1.40818,-1.47566,-1.02686,2.13400,-0.47783
+0.31884,0.84526,-1.40792,-1.47640,-1.02653,2.13425,-0.47812
+0.31953,0.84492,-1.40765,-1.47714,-1.02621,2.13450,-0.47841
+0.32023,0.84458,-1.40739,-1.47786,-1.02590,2.13475,-0.47868
+0.32092,0.84424,-1.40714,-1.47857,-1.02559,2.13499,-0.47896
+0.32162,0.84392,-1.40689,-1.47926,-1.02529,2.13522,-0.47923
+0.32231,0.84359,-1.40665,-1.47995,-1.02499,2.13545,-0.47949
+0.32301,0.84328,-1.40641,-1.48062,-1.02470,2.13568,-0.47975
+0.32370,0.84297,-1.40617,-1.48128,-1.02441,2.13590,-0.48000
+0.32440,0.84266,-1.40594,-1.48193,-1.02413,2.13612,-0.48025
+0.32509,0.84236,-1.40571,-1.48257,-1.02385,2.13634,-0.48050
+0.32578,0.84207,-1.40549,-1.48319,-1.02358,2.13655,-0.48074
+0.32648,0.84178,-1.40527,-1.48381,-1.02331,2.13676,-0.48098
+0.32717,0.84150,-1.40505,-1.48441,-1.02304,2.13696,-0.48121
+0.32787,0.84122,-1.40484,-1.48501,-1.02278,2.13716,-0.48144
+0.32856,0.84095,-1.40463,-1.48559,-1.02253,2.13736,-0.48166
+0.32926,0.84068,-1.40442,-1.48617,-1.02228,2.13755,-0.48188
+0.32995,0.84041,-1.40422,-1.48673,-1.02203,2.13774,-0.48210
+0.33065,0.84016,-1.40402,-1.48729,-1.02179,2.13793,-0.48231
+0.33134,0.83990,-1.40383,-1.48784,-1.02155,2.13811,-0.48252
+0.33204,0.83965,-1.40363,-1.48837,-1.02131,2.13829,-0.48272
+0.33273,0.83941,-1.40345,-1.48890,-1.02108,2.13847,-0.48292
+0.33343,0.83917,-1.40326,-1.48942,-1.02085,2.13864,-0.48312
+0.33412,0.83893,-1.40308,-1.48993,-1.02063,2.13881,-0.48332
+0.33482,0.83870,-1.40290,-1.49043,-1.02041,2.13898,-0.48351
+0.33551,0.83847,-1.40270,-1.49095,-1.02018,2.13914,-0.48369
+0.33620,0.83805,-1.40212,-1.49229,-1.01961,2.13944,-0.48404
+0.33690,0.83763,-1.40155,-1.49361,-1.01906,2.13974,-0.48439
+0.33759,0.83721,-1.40099,-1.49490,-1.01852,2.14004,-0.48473
+0.33829,0.83681,-1.40044,-1.49617,-1.01798,2.14033,-0.48506
+0.33898,0.83641,-1.39990,-1.49742,-1.01746,2.14061,-0.48539
+0.33968,0.83602,-1.39937,-1.49864,-1.01694,2.14089,-0.48571
+0.34037,0.83563,-1.39885,-1.49985,-1.01643,2.14116,-0.48603
+0.34107,0.83526,-1.39833,-1.50103,-1.01593,2.14143,-0.48634
+0.34176,0.83489,-1.39783,-1.50220,-1.01544,2.14169,-0.48665
+0.34246,0.83452,-1.39734,-1.50334,-1.01495,2.14195,-0.48695
+0.34315,0.83417,-1.39685,-1.50446,-1.01448,2.14220,-0.48724
+0.34385,0.83382,-1.39637,-1.50557,-1.01401,2.14245,-0.48753
+0.34454,0.83347,-1.39591,-1.50665,-1.01355,2.14270,-0.48781
+0.34523,0.83314,-1.39545,-1.50772,-1.01309,2.14294,-0.48809
+0.34593,0.83280,-1.39499,-1.50877,-1.01265,2.14317,-0.48836
+0.34662,0.83248,-1.39455,-1.50980,-1.01221,2.14341,-0.48863
+0.34732,0.83216,-1.39411,-1.51081,-1.01178,2.14363,-0.48889
+0.34801,0.83185,-1.39368,-1.51180,-1.01135,2.14386,-0.48915
+0.34871,0.83154,-1.39326,-1.51278,-1.01094,2.14407,-0.48940
+0.34940,0.83124,-1.39285,-1.51374,-1.01053,2.14429,-0.48965
+0.35010,0.83094,-1.39244,-1.51468,-1.01012,2.14450,-0.48990
+0.35079,0.83065,-1.39204,-1.51561,-1.00973,2.14471,-0.49014
+0.35149,0.83037,-1.39165,-1.51652,-1.00933,2.14491,-0.49037
+0.35218,0.83009,-1.39126,-1.51742,-1.00895,2.14511,-0.49060
+0.35288,0.82981,-1.39088,-1.51830,-1.00857,2.14531,-0.49083
+0.35357,0.82954,-1.39051,-1.51917,-1.00820,2.14550,-0.49105
+0.35427,0.82928,-1.39014,-1.52002,-1.00784,2.14569,-0.49127
+0.35496,0.82902,-1.38978,-1.52085,-1.00748,2.14587,-0.49148
+0.35565,0.82876,-1.38943,-1.52167,-1.00712,2.14605,-0.49169
+0.35635,0.82851,-1.38908,-1.52248,-1.00677,2.14623,-0.49190
+0.35704,0.82827,-1.38874,-1.52327,-1.00643,2.14641,-0.49210
+0.35774,0.82802,-1.38840,-1.52405,-1.00609,2.14658,-0.49230
+0.35843,0.82779,-1.38807,-1.52482,-1.00576,2.14675,-0.49250
+0.35913,0.82756,-1.38775,-1.52557,-1.00544,2.14692,-0.49269
+0.35982,0.82733,-1.38743,-1.52631,-1.00512,2.14708,-0.49288
+0.36052,0.82710,-1.38712,-1.52704,-1.00480,2.14724,-0.49306
+0.36121,0.82688,-1.38681,-1.52776,-1.00449,2.14739,-0.49324
+0.36191,0.82667,-1.38651,-1.52846,-1.00419,2.14755,-0.49342
+0.36260,0.82646,-1.38621,-1.52915,-1.00388,2.14770,-0.49359
+0.36330,0.82625,-1.38592,-1.52983,-1.00359,2.14785,-0.49376
+0.36399,0.82605,-1.38563,-1.53050,-1.00330,2.14799,-0.49393
+0.36468,0.82585,-1.38535,-1.53115,-1.00301,2.14814,-0.49410
+0.36538,0.82565,-1.38507,-1.53180,-1.00273,2.14828,-0.49426
+0.36607,0.82546,-1.38480,-1.53243,-1.00245,2.14841,-0.49442
+0.36677,0.82527,-1.38453,-1.53305,-1.00218,2.14855,-0.49457
+0.36746,0.82508,-1.38427,-1.53366,-1.00191,2.14868,-0.49472
+0.36816,0.82490,-1.38401,-1.53427,-1.00165,2.14881,-0.49487
+0.36885,0.82472,-1.38376,-1.53486,-1.00139,2.14894,-0.49502
+0.36955,0.82455,-1.38351,-1.53544,-1.00114,2.14906,-0.49517
+0.37024,0.82438,-1.38326,-1.53601,-1.00089,2.14919,-0.49531
+0.37094,0.82421,-1.38302,-1.53657,-1.00064,2.14931,-0.49545
+0.37163,0.82404,-1.38278,-1.53712,-1.00040,2.14942,-0.49558
+0.37233,0.82388,-1.38255,-1.53767,-1.00016,2.14954,-0.49571
+0.37302,0.82380,-1.38242,-1.53795,-1.00003,2.14960,-0.49578
+0.37371,0.82364,-1.38207,-1.53868,-0.99972,2.14971,-0.49591
+0.37441,0.82349,-1.38173,-1.53940,-0.99942,2.14982,-0.49604
+0.37510,0.82334,-1.38139,-1.54010,-0.99912,2.14993,-0.49616
+0.37580,0.82319,-1.38106,-1.54079,-0.99883,2.15004,-0.49629
+0.37649,0.82304,-1.38074,-1.54147,-0.99854,2.15014,-0.49641
+0.37719,0.82290,-1.38042,-1.54214,-0.99826,2.15024,-0.49653
+0.37788,0.82276,-1.38010,-1.54279,-0.99798,2.15035,-0.49664
+0.37858,0.82262,-1.37979,-1.54344,-0.99771,2.15044,-0.49676
+0.37927,0.82248,-1.37949,-1.54407,-0.99744,2.15054,-0.49687
+0.37997,0.82235,-1.37919,-1.54469,-0.99717,2.15064,-0.49698
+0.38066,0.82222,-1.37890,-1.54531,-0.99691,2.15073,-0.49708
+0.38136,0.82209,-1.37861,-1.54591,-0.99665,2.15082,-0.49719
+0.38205,0.82197,-1.37832,-1.54650,-0.99640,2.15091,-0.49729
+0.38275,0.82185,-1.37805,-1.54708,-0.99615,2.15100,-0.49739
+0.38344,0.82173,-1.37777,-1.54765,-0.99590,2.15108,-0.49749
+0.38413,0.82161,-1.37750,-1.54821,-0.99566,2.15117,-0.49759
+0.38483,0.82154,-1.37735,-1.54853,-0.99553,2.15122,-0.49764
+0.38552,0.82122,-1.37665,-1.54998,-0.99493,2.15144,-0.49791
+0.38622,0.82090,-1.37596,-1.55140,-0.99434,2.15167,-0.49818
+0.38691,0.82058,-1.37529,-1.55280,-0.99377,2.15189,-0.49844
+0.38761,0.82028,-1.37462,-1.55418,-0.99320,2.15210,-0.49869
+0.38830,0.81998,-1.37397,-1.55553,-0.99264,2.15231,-0.49894
+0.38900,0.81968,-1.37333,-1.55686,-0.99209,2.15252,-0.49919
+0.38969,0.81939,-1.37270,-1.55817,-0.99155,2.15273,-0.49943
+0.39039,0.81911,-1.37208,-1.55945,-0.99102,2.15293,-0.49967
+0.39108,0.81883,-1.37147,-1.56071,-0.99050,2.15312,-0.49990
+0.39178,0.81855,-1.37088,-1.56195,-0.98998,2.15331,-0.50012
+0.39247,0.81829,-1.37029,-1.56317,-0.98948,2.15350,-0.50035
+0.39316,0.81802,-1.36971,-1.56436,-0.98898,2.15369,-0.50057
+0.39386,0.81776,-1.36915,-1.56554,-0.98849,2.15387,-0.50078
+0.39455,0.81751,-1.36859,-1.56670,-0.98801,2.15405,-0.50099
+0.39525,0.81726,-1.36804,-1.56783,-0.98753,2.15422,-0.50120
+0.39594,0.81702,-1.36751,-1.56895,-0.98707,2.15439,-0.50140
+0.39664,0.81678,-1.36698,-1.57004,-0.98661,2.15456,-0.50160
+0.39733,0.81655,-1.36646,-1.57112,-0.98616,2.15473,-0.50179
+0.39803,0.81631,-1.36595,-1.57218,-0.98571,2.15489,-0.50198
+0.39872,0.81609,-1.36545,-1.57322,-0.98528,2.15505,-0.50217
+0.39942,0.81587,-1.36496,-1.57424,-0.98485,2.15520,-0.50235
+0.40011,0.81565,-1.36448,-1.57525,-0.98442,2.15536,-0.50253
+0.40081,0.81544,-1.36400,-1.57623,-0.98401,2.15551,-0.50271
+0.40150,0.81523,-1.36354,-1.57720,-0.98360,2.15565,-0.50288
+0.40220,0.81502,-1.36308,-1.57816,-0.98320,2.15580,-0.50305
+0.40289,0.81482,-1.36263,-1.57909,-0.98280,2.15594,-0.50322
+0.40358,0.81463,-1.36219,-1.58002,-0.98241,2.15608,-0.50338
+0.40428,0.81443,-1.36175,-1.58092,-0.98203,2.15622,-0.50354
+0.40497,0.81424,-1.36132,-1.58181,-0.98165,2.15635,-0.50370
+0.40567,0.81406,-1.36090,-1.58268,-0.98128,2.15648,-0.50385
+0.40636,0.81387,-1.36049,-1.58354,-0.98092,2.15661,-0.50400
+0.40706,0.81370,-1.36009,-1.58439,-0.98056,2.15674,-0.50415
+0.40775,0.81352,-1.35969,-1.58522,-0.98021,2.15686,-0.50429
+0.40845,0.81335,-1.35930,-1.58603,-0.97986,2.15698,-0.50444
+0.40914,0.81318,-1.35891,-1.58683,-0.97952,2.15710,-0.50458
+0.40984,0.81301,-1.35853,-1.58762,-0.97918,2.15722,-0.50471
+0.41053,0.81285,-1.35816,-1.58840,-0.97885,2.15733,-0.50485
+0.41123,0.81269,-1.35780,-1.58916,-0.97852,2.15744,-0.50498
+0.41192,0.81254,-1.35744,-1.58991,-0.97820,2.15755,-0.50511
+0.41261,0.81238,-1.35709,-1.59064,-0.97789,2.15766,-0.50523
+0.41331,0.81223,-1.35674,-1.59136,-0.97758,2.15777,-0.50535
+0.41400,0.81209,-1.35640,-1.59207,-0.97727,2.15787,-0.50548
+0.41470,0.81194,-1.35607,-1.59277,-0.97697,2.15797,-0.50559
+0.41539,0.81180,-1.35574,-1.59346,-0.97668,2.15807,-0.50571
+0.41609,0.81166,-1.35542,-1.59413,-0.97639,2.15817,-0.50582
+0.41678,0.81153,-1.35510,-1.59479,-0.97610,2.15826,-0.50594
+0.41748,0.81139,-1.35479,-1.59544,-0.97582,2.15836,-0.50604
+0.41817,0.81126,-1.35448,-1.59608,-0.97554,2.15845,-0.50615
+0.41887,0.81114,-1.35418,-1.59671,-0.97527,2.15854,-0.50626
+0.41956,0.81101,-1.35388,-1.59733,-0.97500,2.15863,-0.50636
+0.42026,0.81089,-1.35359,-1.59794,-0.97474,2.15872,-0.50646
+0.42095,0.81077,-1.35331,-1.59854,-0.97448,2.15880,-0.50656
+0.42164,0.81065,-1.35303,-1.59912,-0.97422,2.15889,-0.50666
+0.42234,0.81053,-1.35275,-1.59970,-0.97397,2.15897,-0.50675
+0.42303,0.81042,-1.35248,-1.60027,-0.97373,2.15905,-0.50684
+0.42373,0.81031,-1.35221,-1.60082,-0.97348,2.15913,-0.50693
+0.42442,0.81025,-1.35207,-1.60112,-0.97335,2.15917,-0.50698
+0.42512,0.81010,-1.35168,-1.60191,-0.97302,2.15927,-0.50711
+0.42581,0.80995,-1.35130,-1.60269,-0.97269,2.15938,-0.50723
+0.42651,0.80981,-1.35092,-1.60345,-0.97237,2.15948,-0.50735
+0.42720,0.80967,-1.35055,-1.60421,-0.97205,2.15958,-0.50746
+0.42790,0.80953,-1.35018,-1.60494,-0.97174,2.15967,-0.50758
+0.42859,0.80939,-1.34983,-1.60567,-0.97144,2.15977,-0.50769
+0.42929,0.80926,-1.34947,-1.60638,-0.97113,2.15986,-0.50780
+0.42998,0.80913,-1.34913,-1.60708,-0.97084,2.15995,-0.50791
+0.43068,0.80900,-1.34879,-1.60777,-0.97055,2.16004,-0.50801
+0.43137,0.80888,-1.34845,-1.60845,-0.97026,2.16013,-0.50811
+0.43206,0.80876,-1.34813,-1.60911,-0.96997,2.16022,-0.50821
+0.43276,0.80864,-1.34780,-1.60977,-0.96970,2.16030,-0.50831
+0.43345,0.80852,-1.34749,-1.61041,-0.96942,2.16038,-0.50841
+0.43415,0.80840,-1.34718,-1.61104,-0.96915,2.16047,-0.50850
+0.43484,0.80829,-1.34687,-1.61166,-0.96889,2.16055,-0.50860
+0.43554,0.80818,-1.34657,-1.61227,-0.96863,2.16062,-0.50869
+0.43623,0.80807,-1.34628,-1.61287,-0.96837,2.16070,-0.50878
+0.43693,0.80797,-1.34599,-1.61346,-0.96812,2.16077,-0.50886
+0.43762,0.80786,-1.34570,-1.61404,-0.96787,2.16085,-0.50895
+0.43832,0.80776,-1.34542,-1.61461,-0.96762,2.16092,-0.50903
+0.43901,0.80766,-1.34514,-1.61516,-0.96738,2.16099,-0.50911
+0.43971,0.80759,-1.34496,-1.61553,-0.96723,2.16104,-0.50917
+0.44040,0.80743,-1.34452,-1.61641,-0.96686,2.16115,-0.50930
+0.44109,0.80727,-1.34409,-1.61727,-0.96651,2.16126,-0.50943
+0.44179,0.80712,-1.34366,-1.61812,-0.96615,2.16137,-0.50956
+0.44248,0.80697,-1.34325,-1.61896,-0.96581,2.16147,-0.50969
+0.44318,0.80682,-1.34283,-1.61978,-0.96547,2.16158,-0.50981
+0.44387,0.80667,-1.34243,-1.62059,-0.96513,2.16168,-0.50993
+0.44457,0.80653,-1.34203,-1.62138,-0.96480,2.16178,-0.51005
+0.44526,0.80639,-1.34164,-1.62216,-0.96448,2.16188,-0.51017
+0.44596,0.80625,-1.34126,-1.62292,-0.96416,2.16198,-0.51028
+0.44665,0.80611,-1.34088,-1.62368,-0.96384,2.16207,-0.51040
+0.44735,0.80598,-1.34051,-1.62441,-0.96353,2.16216,-0.51050
+0.44804,0.80585,-1.34015,-1.62514,-0.96323,2.16225,-0.51061
+0.44874,0.80572,-1.33979,-1.62586,-0.96293,2.16234,-0.51072
+0.44943,0.80560,-1.33944,-1.62656,-0.96263,2.16243,-0.51082
+0.45013,0.80548,-1.33910,-1.62725,-0.96234,2.16252,-0.51092
+0.45082,0.80536,-1.33876,-1.62792,-0.96206,2.16260,-0.51102
+0.45151,0.80524,-1.33843,-1.62859,-0.96178,2.16268,-0.51112
+0.45221,0.80513,-1.33810,-1.62925,-0.96150,2.16276,-0.51121
+0.45290,0.80501,-1.33778,-1.62989,-0.96123,2.16284,-0.51130
+0.45360,0.80490,-1.33746,-1.63052,-0.96096,2.16292,-0.51139
+0.45429,0.80480,-1.33715,-1.63114,-0.96070,2.16299,-0.51148
+0.45499,0.80469,-1.33684,-1.63175,-0.96044,2.16307,-0.51157
+0.45568,0.80459,-1.33655,-1.63235,-0.96018,2.16314,-0.51165
+0.45638,0.80448,-1.33625,-1.63294,-0.95993,2.16321,-0.51174
+0.45707,0.80439,-1.33596,-1.63352,-0.95969,2.16328,-0.51182
+0.45777,0.80429,-1.33568,-1.63409,-0.95944,2.16335,-0.51190
+0.45846,0.80419,-1.33540,-1.63465,-0.95920,2.16342,-0.51198
+0.45916,0.80410,-1.33513,-1.63519,-0.95898,2.16348,-0.51205
+0.45985,0.80395,-1.33462,-1.63616,-0.95859,2.16358,-0.51218
+0.46054,0.80381,-1.33412,-1.63711,-0.95820,2.16369,-0.51230
+0.46124,0.80366,-1.33363,-1.63805,-0.95782,2.16379,-0.51242
+0.46193,0.80352,-1.33315,-1.63897,-0.95745,2.16388,-0.51254
+0.46263,0.80338,-1.33268,-1.63987,-0.95708,2.16398,-0.51265
+0.46332,0.80325,-1.33222,-1.64076,-0.95672,2.16407,-0.51276
+0.46402,0.80312,-1.33176,-1.64163,-0.95637,2.16417,-0.51287
+0.46471,0.80299,-1.33132,-1.64249,-0.95602,2.16426,-0.51298
+0.46541,0.80286,-1.33088,-1.64333,-0.95567,2.16434,-0.51308
+0.46610,0.80274,-1.33044,-1.64416,-0.95534,2.16443,-0.51319
+0.46680,0.80262,-1.33002,-1.64497,-0.95500,2.16451,-0.51329
+0.46749,0.80250,-1.32960,-1.64577,-0.95468,2.16460,-0.51339
+0.46819,0.80238,-1.32919,-1.64655,-0.95435,2.16468,-0.51348
+0.46888,0.80227,-1.32879,-1.64733,-0.95404,2.16476,-0.51358
+0.46957,0.80215,-1.32839,-1.64808,-0.95372,2.16484,-0.51367
+0.47027,0.80204,-1.32801,-1.64883,-0.95342,2.16491,-0.51376
+0.47096,0.80194,-1.32762,-1.64956,-0.95311,2.16499,-0.51385
+0.47166,0.80183,-1.32725,-1.65028,-0.95282,2.16506,-0.51394
+0.47235,0.80173,-1.32688,-1.65099,-0.95253,2.16513,-0.51402
+0.47305,0.80163,-1.32652,-1.65169,-0.95224,2.16520,-0.51410
+0.47374,0.80153,-1.32616,-1.65237,-0.95195,2.16527,-0.51418
+0.47444,0.80143,-1.32581,-1.65304,-0.95168,2.16534,-0.51426
+0.47513,0.80134,-1.32547,-1.65370,-0.95140,2.16540,-0.51434
+0.47583,0.80125,-1.32513,-1.65435,-0.95113,2.16547,-0.51442
+0.47652,0.80116,-1.32480,-1.65499,-0.95087,2.16553,-0.51449
+0.47722,0.80107,-1.32447,-1.65561,-0.95060,2.16559,-0.51457
+0.47791,0.80098,-1.32415,-1.65623,-0.95035,2.16566,-0.51464
+0.47861,0.80090,-1.32384,-1.65683,-0.95009,2.16571,-0.51471
+0.47930,0.80081,-1.32353,-1.65743,-0.94985,2.16577,-0.51477
+0.47999,0.80073,-1.32322,-1.65801,-0.94960,2.16583,-0.51484
+0.48069,0.80065,-1.32292,-1.65859,-0.94936,2.16589,-0.51491
+0.48138,0.80057,-1.32263,-1.65915,-0.94912,2.16594,-0.51497
+0.48208,0.80050,-1.32234,-1.65971,-0.94889,2.16599,-0.51503
+0.48277,0.80048,-1.32222,-1.65992,-0.94880,2.16600,-0.51504
+0.48347,0.80048,-1.32157,-1.66097,-0.94840,2.16601,-0.51505
+0.48416,0.80047,-1.32094,-1.66200,-0.94801,2.16601,-0.51505
+0.48486,0.80047,-1.32031,-1.66302,-0.94763,2.16601,-0.51505
+0.48555,0.80047,-1.31970,-1.66401,-0.94725,2.16601,-0.51505
+0.48625,0.80047,-1.31909,-1.66499,-0.94687,2.16602,-0.51505
+0.48694,0.80046,-1.31850,-1.66595,-0.94650,2.16602,-0.51505
+0.48764,0.80046,-1.31792,-1.66690,-0.94614,2.16602,-0.51505
+0.48833,0.80046,-1.31735,-1.66783,-0.94579,2.16602,-0.51505
+0.48902,0.80047,-1.31679,-1.66874,-0.94544,2.16602,-0.51505
+0.48972,0.80047,-1.31623,-1.66964,-0.94509,2.16601,-0.51504
+0.49041,0.80047,-1.31569,-1.67052,-0.94475,2.16601,-0.51504
+0.49111,0.80047,-1.31516,-1.67139,-0.94442,2.16601,-0.51504
+0.49180,0.80048,-1.31463,-1.67224,-0.94409,2.16601,-0.51503
+0.49250,0.80048,-1.31412,-1.67308,-0.94376,2.16601,-0.51503
+0.49319,0.80048,-1.31361,-1.67390,-0.94344,2.16600,-0.51502
+0.49389,0.80049,-1.31311,-1.67471,-0.94313,2.16600,-0.51501
+0.49458,0.80049,-1.31262,-1.67550,-0.94282,2.16600,-0.51501
+0.49528,0.80050,-1.31214,-1.67628,-0.94251,2.16599,-0.51500
+0.49597,0.80051,-1.31167,-1.67705,-0.94221,2.16599,-0.51499
+0.49667,0.80051,-1.31121,-1.67781,-0.94192,2.16598,-0.51499
+0.49736,0.80052,-1.31075,-1.67855,-0.94163,2.16598,-0.51498
+0.49806,0.80053,-1.31030,-1.67928,-0.94134,2.16597,-0.51497
+0.49875,0.80054,-1.30986,-1.67999,-0.94106,2.16597,-0.51496
+0.49944,0.80054,-1.30943,-1.68070,-0.94078,2.16596,-0.51495
+0.50014,0.80055,-1.30900,-1.68139,-0.94051,2.16595,-0.51494
+0.50083,0.80056,-1.30859,-1.68207,-0.94024,2.16595,-0.51493
+0.50153,0.80057,-1.30818,-1.68274,-0.93997,2.16594,-0.51492
+0.50222,0.80058,-1.30777,-1.68340,-0.93971,2.16594,-0.51491
+0.50292,0.80059,-1.30738,-1.68404,-0.93946,2.16593,-0.51490
+0.50361,0.80060,-1.30699,-1.68468,-0.93920,2.16592,-0.51489
+0.50431,0.80061,-1.30660,-1.68530,-0.93895,2.16591,-0.51488
+0.50500,0.80062,-1.30623,-1.68592,-0.93871,2.16591,-0.51486
+0.50570,0.80063,-1.30586,-1.68652,-0.93847,2.16590,-0.51485
+0.50639,0.80064,-1.30549,-1.68711,-0.93823,2.16589,-0.51484
+0.50709,0.80065,-1.30514,-1.68769,-0.93800,2.16588,-0.51483
+0.50778,0.80067,-1.30479,-1.68827,-0.93777,2.16587,-0.51482
+0.50847,0.80068,-1.30444,-1.68883,-0.93754,2.16586,-0.51480
+0.50917,0.80070,-1.30411,-1.68936,-0.93733,2.16585,-0.51479
+0.50986,0.80078,-1.30353,-1.69022,-0.93701,2.16579,-0.51471
+0.51056,0.80087,-1.30296,-1.69106,-0.93670,2.16573,-0.51464
+0.51125,0.80095,-1.30240,-1.69189,-0.93639,2.16567,-0.51456
+0.51195,0.80104,-1.30185,-1.69270,-0.93608,2.16561,-0.51449
+0.51264,0.80112,-1.30131,-1.69350,-0.93578,2.16556,-0.51442
+0.51334,0.80120,-1.30078,-1.69429,-0.93549,2.16550,-0.51435
+0.51403,0.80128,-1.30026,-1.69506,-0.93520,2.16544,-0.51428
+0.51473,0.80136,-1.29975,-1.69582,-0.93491,2.16539,-0.51420
+0.51542,0.80144,-1.29924,-1.69657,-0.93463,2.16533,-0.51413
+0.51612,0.80152,-1.29875,-1.69730,-0.93435,2.16527,-0.51407
+0.51681,0.80160,-1.29826,-1.69803,-0.93408,2.16522,-0.51400
+0.51750,0.80168,-1.29778,-1.69874,-0.93381,2.16516,-0.51393
+0.51820,0.80176,-1.29731,-1.69943,-0.93354,2.16511,-0.51386
+0.51889,0.80183,-1.29685,-1.70012,-0.93328,2.16506,-0.51379
+0.51959,0.80191,-1.29640,-1.70079,-0.93302,2.16500,-0.51373
+0.52028,0.80198,-1.29595,-1.70145,-0.93277,2.16495,-0.51366
+0.52098,0.80206,-1.29551,-1.70211,-0.93252,2.16490,-0.51360
+0.52167,0.80213,-1.29508,-1.70275,-0.93227,2.16485,-0.51353
+0.52237,0.80220,-1.29466,-1.70337,-0.93203,2.16479,-0.51347
+0.52306,0.80228,-1.29424,-1.70399,-0.93179,2.16474,-0.51340
+0.52376,0.80235,-1.29383,-1.70460,-0.93156,2.16469,-0.51334
+0.52445,0.80242,-1.29343,-1.70520,-0.93133,2.16464,-0.51328
+0.52515,0.80249,-1.29304,-1.70579,-0.93110,2.16459,-0.51322
+0.52584,0.80256,-1.29265,-1.70636,-0.93087,2.16455,-0.51315
+0.52654,0.80263,-1.29227,-1.70693,-0.93065,2.16450,-0.51309
+0.52723,0.80269,-1.29189,-1.70749,-0.93044,2.16445,-0.51303
+0.52792,0.80276,-1.29152,-1.70804,-0.93022,2.16440,-0.51297
+0.52862,0.80283,-1.29123,-1.70845,-0.93007,2.16435,-0.51291
+0.52931,0.80323,-1.29012,-1.70983,-0.92962,2.16407,-0.51257
+0.53001,0.80363,-1.28903,-1.71118,-0.92917,2.16380,-0.51224
+0.53070,0.80402,-1.28796,-1.71252,-0.92873,2.16353,-0.51191
+0.53140,0.80440,-1.28691,-1.71383,-0.92829,2.16326,-0.51159
+0.53209,0.80479,-1.28588,-1.71512,-0.92786,2.16299,-0.51126
+0.53279,0.80516,-1.28486,-1.71638,-0.92744,2.16273,-0.51095
+0.53348,0.80553,-1.28386,-1.71763,-0.92703,2.16247,-0.51063
+0.53418,0.80590,-1.28288,-1.71885,-0.92662,2.16221,-0.51032
+0.53487,0.80626,-1.28192,-1.72005,-0.92622,2.16196,-0.51002
+0.53557,0.80662,-1.28097,-1.72123,-0.92582,2.16171,-0.50972
+0.53626,0.80697,-1.28003,-1.72239,-0.92543,2.16147,-0.50942
+0.53695,0.80732,-1.27912,-1.72353,-0.92505,2.16122,-0.50912
+0.53765,0.80766,-1.27822,-1.72465,-0.92467,2.16098,-0.50883
+0.53834,0.80800,-1.27733,-1.72576,-0.92429,2.16074,-0.50854
+0.53904,0.80834,-1.27646,-1.72684,-0.92393,2.16051,-0.50826
+0.53973,0.80867,-1.27561,-1.72790,-0.92356,2.16027,-0.50798
+0.54043,0.80900,-1.27477,-1.72895,-0.92321,2.16005,-0.50770
+0.54112,0.80932,-1.27395,-1.72998,-0.92286,2.15982,-0.50743
+0.54182,0.80964,-1.27313,-1.73099,-0.92251,2.15959,-0.50716
+0.54251,0.80995,-1.27234,-1.73198,-0.92217,2.15937,-0.50689
+0.54321,0.81027,-1.27155,-1.73296,-0.92183,2.15915,-0.50663
+0.54390,0.81057,-1.27078,-1.73391,-0.92150,2.15894,-0.50637
+0.54460,0.81087,-1.27003,-1.73486,-0.92117,2.15873,-0.50611
+0.54529,0.81117,-1.26928,-1.73578,-0.92085,2.15852,-0.50586
+0.54598,0.81147,-1.26855,-1.73670,-0.92053,2.15831,-0.50561
+0.54668,0.81176,-1.26783,-1.73759,-0.92022,2.15810,-0.50536
+0.54737,0.81205,-1.26713,-1.73847,-0.91991,2.15790,-0.50511
+0.54807,0.81233,-1.26643,-1.73934,-0.91961,2.15770,-0.50487
+0.54876,0.81261,-1.26575,-1.74019,-0.91931,2.15750,-0.50464
+0.54946,0.81289,-1.26508,-1.74102,-0.91902,2.15731,-0.50440
+0.55015,0.81316,-1.26442,-1.74184,-0.91873,2.15711,-0.50417
+0.55085,0.81343,-1.26378,-1.74265,-0.91844,2.15692,-0.50394
+0.55154,0.81369,-1.26314,-1.74344,-0.91816,2.15674,-0.50371
+0.55224,0.81396,-1.26251,-1.74422,-0.91788,2.15655,-0.50349
+0.55293,0.81421,-1.26190,-1.74499,-0.91761,2.15637,-0.50327
+0.55363,0.81447,-1.26130,-1.74574,-0.91734,2.15619,-0.50305
+0.55432,0.81472,-1.26070,-1.74649,-0.91707,2.15601,-0.50284
+0.55502,0.81497,-1.26012,-1.74721,-0.91681,2.15583,-0.50263
+0.55571,0.81522,-1.25955,-1.74793,-0.91655,2.15566,-0.50242
+0.55640,0.81546,-1.25898,-1.74863,-0.91630,2.15548,-0.50221
+0.55710,0.81570,-1.25843,-1.74933,-0.91605,2.15532,-0.50201
+0.55779,0.81593,-1.25788,-1.75001,-0.91580,2.15515,-0.50181
+0.55849,0.81616,-1.25735,-1.75067,-0.91556,2.15498,-0.50161
+0.55918,0.81639,-1.25682,-1.75133,-0.91532,2.15482,-0.50141
+0.55988,0.81662,-1.25631,-1.75198,-0.91508,2.15466,-0.50122
+0.56057,0.81684,-1.25580,-1.75261,-0.91485,2.15450,-0.50103
+0.56127,0.81706,-1.25530,-1.75324,-0.91462,2.15434,-0.50084
+0.56196,0.81728,-1.25481,-1.75385,-0.91439,2.15419,-0.50065
+0.56266,0.81750,-1.25433,-1.75445,-0.91417,2.15403,-0.50047
+0.56335,0.81771,-1.25386,-1.75505,-0.91395,2.15388,-0.50029
+0.56405,0.81792,-1.25339,-1.75563,-0.91373,2.15373,-0.50011
+0.56474,0.81812,-1.25293,-1.75620,-0.91352,2.15359,-0.49993
+0.56543,0.81833,-1.25248,-1.75677,-0.91331,2.15344,-0.49976
+0.56613,0.81853,-1.25204,-1.75732,-0.91310,2.15330,-0.49959
+0.56682,0.81872,-1.25161,-1.75787,-0.91290,2.15316,-0.49942
+0.56752,0.81892,-1.25118,-1.75840,-0.91270,2.15302,-0.49925
+0.56821,0.81911,-1.25076,-1.75893,-0.91250,2.15288,-0.49909
+0.56891,0.81930,-1.25035,-1.75945,-0.91230,2.15274,-0.49892
+0.56960,0.81949,-1.24994,-1.75995,-0.91211,2.15261,-0.49876
+0.57030,0.81967,-1.24955,-1.76045,-0.91192,2.15248,-0.49860
+0.57099,0.81980,-1.24929,-1.76077,-0.91180,2.15239,-0.49850
+0.57169,0.82013,-1.24868,-1.76145,-0.91157,2.15215,-0.49821
+0.57238,0.82046,-1.24809,-1.76211,-0.91135,2.15192,-0.49794
+0.57308,0.82079,-1.24751,-1.76277,-0.91113,2.15169,-0.49766
+0.57377,0.82111,-1.24693,-1.76341,-0.91091,2.15146,-0.49739
+0.57447,0.82143,-1.24637,-1.76405,-0.91070,2.15123,-0.49712
+0.57516,0.82174,-1.24581,-1.76467,-0.91049,2.15101,-0.49686
+0.57585,0.82205,-1.24527,-1.76528,-0.91028,2.15079,-0.49660
+0.57655,0.82236,-1.24473,-1.76588,-0.91007,2.15058,-0.49634
+0.57724,0.82266,-1.24421,-1.76647,-0.90987,2.15036,-0.49609
+0.57794,0.82295,-1.24369,-1.76705,-0.90967,2.15015,-0.49584
+0.57863,0.82324,-1.24318,-1.76763,-0.90947,2.14995,-0.49559
+0.57933,0.82353,-1.24268,-1.76819,-0.90927,2.14974,-0.49535
+0.58002,0.82381,-1.24219,-1.76874,-0.90908,2.14954,-0.49511
+0.58072,0.82409,-1.24171,-1.76928,-0.90889,2.14934,-0.49488
+0.58141,0.82437,-1.24123,-1.76982,-0.90871,2.14914,-0.49464
+0.58211,0.82464,-1.24077,-1.77034,-0.90852,2.14895,-0.49441
+0.58280,0.82491,-1.24031,-1.77086,-0.90834,2.14876,-0.49419
+0.58350,0.82517,-1.23986,-1.77137,-0.90816,2.14857,-0.49396
+0.58419,0.82543,-1.23941,-1.77187,-0.90798,2.14838,-0.49374
+0.58488,0.82569,-1.23898,-1.77236,-0.90781,2.14820,-0.49353
+0.58558,0.82595,-1.23855,-1.77284,-0.90764,2.14802,-0.49331
+0.58627,0.82620,-1.23813,-1.77331,-0.90747,2.14784,-0.49310
+0.58697,0.82644,-1.23772,-1.77378,-0.90730,2.14766,-0.49289
+0.58766,0.82668,-1.23731,-1.77424,-0.90713,2.14749,-0.49269
+0.58836,0.82682,-1.23711,-1.77445,-0.90707,2.14740,-0.49258
+0.58905,0.82743,-1.23633,-1.77515,-0.90687,2.14696,-0.49207
+0.58975,0.82804,-1.23555,-1.77584,-0.90669,2.14654,-0.49157
+0.59044,0.82863,-1.23479,-1.77652,-0.90650,2.14612,-0.49107
+0.59114,0.82922,-1.23404,-1.77719,-0.90631,2.14570,-0.49059
+0.59183,0.82980,-1.23331,-1.77785,-0.90613,2.14529,-0.49010
+0.59253,0.83037,-1.23259,-1.77850,-0.90595,2.14489,-0.48963
+0.59322,0.83093,-1.23188,-1.77914,-0.90577,2.14449,-0.48916
+0.59391,0.83149,-1.23118,-1.77976,-0.90560,2.14409,-0.48870
+0.59461,0.83204,-1.23050,-1.78038,-0.90542,2.14371,-0.48825
+0.59530,0.83258,-1.22982,-1.78098,-0.90525,2.14332,-0.48780
+0.59600,0.83311,-1.22916,-1.78158,-0.90508,2.14295,-0.48736
+0.59669,0.83363,-1.22851,-1.78216,-0.90491,2.14257,-0.48693
+0.59739,0.83415,-1.22787,-1.78273,-0.90475,2.14221,-0.48650
+0.59808,0.83466,-1.22725,-1.78330,-0.90459,2.14184,-0.48608
+0.59878,0.83516,-1.22663,-1.78386,-0.90442,2.14149,-0.48566
+0.59947,0.83566,-1.22602,-1.78440,-0.90426,2.14113,-0.48525
+0.60017,0.83615,-1.22543,-1.78494,-0.90411,2.14079,-0.48485
+0.60086,0.83663,-1.22484,-1.78547,-0.90395,2.14044,-0.48445
+0.60156,0.83710,-1.22426,-1.78599,-0.90380,2.14010,-0.48406
+0.60225,0.83757,-1.22370,-1.78650,-0.90364,2.13977,-0.48367
+0.60295,0.83803,-1.22314,-1.78700,-0.90349,2.13944,-0.48329
+0.60364,0.83848,-1.22260,-1.78749,-0.90335,2.13912,-0.48291
+0.60433,0.83893,-1.22206,-1.78798,-0.90320,2.13880,-0.48254
+0.60503,0.83937,-1.22153,-1.78846,-0.90305,2.13848,-0.48218
+0.60572,0.83981,-1.22101,-1.78892,-0.90291,2.13817,-0.48182
+0.60642,0.84024,-1.22050,-1.78939,-0.90277,2.13786,-0.48146
+0.60711,0.84066,-1.22000,-1.78984,-0.90263,2.13756,-0.48111
+0.60781,0.84108,-1.21951,-1.79029,-0.90249,2.13726,-0.48077
+0.60850,0.84149,-1.21903,-1.79073,-0.90236,2.13697,-0.48043
+0.60920,0.84189,-1.21855,-1.79116,-0.90222,2.13668,-0.48009
+0.60989,0.84229,-1.21808,-1.79158,-0.90209,2.13639,-0.47976
+0.61059,0.84269,-1.21762,-1.79200,-0.90196,2.13611,-0.47944
+0.61128,0.84307,-1.21717,-1.79241,-0.90183,2.13583,-0.47912
+0.61198,0.84345,-1.21673,-1.79281,-0.90170,2.13555,-0.47880
+0.61267,0.84383,-1.21629,-1.79321,-0.90157,2.13528,-0.47849
+0.61336,0.84420,-1.21586,-1.79360,-0.90145,2.13502,-0.47819
+0.61406,0.84457,-1.21544,-1.79399,-0.90132,2.13475,-0.47788
+0.61475,0.84493,-1.21503,-1.79436,-0.90120,2.13450,-0.47759
+0.61545,0.84528,-1.21462,-1.79473,-0.90108,2.13424,-0.47729
+0.61614,0.84563,-1.21422,-1.79510,-0.90096,2.13399,-0.47700
+0.61684,0.84599,-1.21383,-1.79544,-0.90085,2.13373,-0.47671
+0.61753,0.84675,-1.21310,-1.79594,-0.90075,2.13319,-0.47609
+0.61823,0.84750,-1.21239,-1.79644,-0.90065,2.13266,-0.47548
+0.61892,0.84824,-1.21168,-1.79692,-0.90055,2.13213,-0.47488
+0.61962,0.84897,-1.21099,-1.79740,-0.90045,2.13161,-0.47428
+0.62031,0.84968,-1.21031,-1.79787,-0.90035,2.13110,-0.47370
+0.62101,0.85039,-1.20964,-1.79833,-0.90026,2.13059,-0.47312
+0.62170,0.85109,-1.20899,-1.79879,-0.90016,2.13009,-0.47256
+0.62240,0.85178,-1.20834,-1.79923,-0.90006,2.12960,-0.47200
+0.62309,0.85246,-1.20771,-1.79967,-0.89997,2.12912,-0.47144
+0.62378,0.85312,-1.20709,-1.80010,-0.89987,2.12864,-0.47090
+0.62448,0.85378,-1.20647,-1.80053,-0.89978,2.12816,-0.47037
+0.62517,0.85443,-1.20587,-1.80095,-0.89969,2.12770,-0.46984
+0.62587,0.85507,-1.20528,-1.80136,-0.89959,2.12724,-0.46932
+0.62656,0.85570,-1.20470,-1.80176,-0.89950,2.12679,-0.46881
+0.62726,0.85632,-1.20413,-1.80216,-0.89941,2.12634,-0.46830
+0.62795,0.85694,-1.20357,-1.80255,-0.89932,2.12590,-0.46780
+0.62865,0.85754,-1.20302,-1.80294,-0.89923,2.12547,-0.46731
+0.62934,0.85814,-1.20248,-1.80332,-0.89914,2.12504,-0.46683
+0.63004,0.85872,-1.20194,-1.80369,-0.89905,2.12462,-0.46636
+0.63073,0.85930,-1.20142,-1.80405,-0.89897,2.12420,-0.46589
+0.63143,0.85987,-1.20091,-1.80441,-0.89888,2.12379,-0.46543
+0.63212,0.86043,-1.20040,-1.80477,-0.89879,2.12339,-0.46497
+0.63281,0.86098,-1.19990,-1.80512,-0.89871,2.12299,-0.46452
+0.63351,0.86153,-1.19942,-1.80546,-0.89862,2.12259,-0.46408
+0.63420,0.86207,-1.19894,-1.80580,-0.89854,2.12220,-0.46365
+0.63490,0.86260,-1.19847,-1.80613,-0.89846,2.12182,-0.46322
+0.63559,0.86312,-1.19800,-1.80646,-0.89837,2.12145,-0.46280
+0.63629,0.86363,-1.19755,-1.80678,-0.89829,2.12107,-0.46238
+0.63698,0.86414,-1.19710,-1.80709,-0.89821,2.12071,-0.46197
+0.63768,0.86464,-1.19666,-1.80740,-0.89813,2.12035,-0.46157
+0.63837,0.86513,-1.19623,-1.80771,-0.89805,2.11999,-0.46117
+0.63907,0.86561,-1.19580,-1.80801,-0.89797,2.11964,-0.46078
+0.63976,0.86609,-1.19539,-1.80831,-0.89789,2.11929,-0.46039
+0.64046,0.86656,-1.19498,-1.80860,-0.89782,2.11895,-0.46001
+0.64115,0.86702,-1.19457,-1.80888,-0.89774,2.11861,-0.45964
+0.64184,0.86748,-1.19418,-1.80916,-0.89766,2.11828,-0.45927
+0.64254,0.86793,-1.19379,-1.80944,-0.89759,2.11796,-0.45891
+0.64323,0.86837,-1.19340,-1.80971,-0.89751,2.11763,-0.45855
+0.64393,0.86881,-1.19303,-1.80998,-0.89744,2.11732,-0.45820
+0.64462,0.86924,-1.19266,-1.81025,-0.89736,2.11700,-0.45785
+0.64532,0.86966,-1.19229,-1.81051,-0.89729,2.11669,-0.45751
+0.64601,0.86981,-1.19217,-1.81058,-0.89727,2.11659,-0.45739
+0.64671,0.87046,-1.19169,-1.81083,-0.89724,2.11612,-0.45687
+0.64740,0.87109,-1.19122,-1.81108,-0.89720,2.11566,-0.45636
+0.64810,0.87171,-1.19076,-1.81132,-0.89716,2.11521,-0.45586
+0.64879,0.87233,-1.19030,-1.81156,-0.89713,2.11477,-0.45537
+0.64949,0.87293,-1.18986,-1.81180,-0.89709,2.11433,-0.45489
+0.65018,0.87353,-1.18942,-1.81203,-0.89705,2.11390,-0.45441
+0.65088,0.87412,-1.18899,-1.81226,-0.89702,2.11347,-0.45394
+0.65157,0.87469,-1.18856,-1.81248,-0.89698,2.11305,-0.45348
+0.65226,0.87526,-1.18814,-1.81270,-0.89694,2.11264,-0.45302
+0.65296,0.87583,-1.18773,-1.81292,-0.89691,2.11223,-0.45257
+0.65365,0.87638,-1.18733,-1.81313,-0.89687,2.11183,-0.45213
+0.65435,0.87692,-1.18693,-1.81334,-0.89683,2.11143,-0.45170
+0.65504,0.87746,-1.18655,-1.81355,-0.89679,2.11104,-0.45127
+0.65574,0.87799,-1.18616,-1.81375,-0.89676,2.11066,-0.45084
+0.65643,0.87851,-1.18579,-1.81396,-0.89672,2.11028,-0.45043
+0.65713,0.87903,-1.18542,-1.81415,-0.89668,2.10990,-0.45002
+0.65782,0.87953,-1.18505,-1.81435,-0.89665,2.10954,-0.44961
+0.65852,0.88003,-1.18470,-1.81454,-0.89661,2.10917,-0.44922
+0.65921,0.88052,-1.18435,-1.81473,-0.89657,2.10881,-0.44882
+0.65991,0.88101,-1.18400,-1.81491,-0.89653,2.10846,-0.44844
+0.66060,0.88148,-1.18366,-1.81510,-0.89650,2.10811,-0.44806
+0.66129,0.88195,-1.18333,-1.81528,-0.89646,2.10777,-0.44768
+0.66199,0.88241,-1.18300,-1.81545,-0.89642,2.10743,-0.44731
+0.66268,0.88256,-1.18291,-1.81549,-0.89642,2.10733,-0.44720
+0.66338,0.88357,-1.18229,-1.81565,-0.89648,2.10660,-0.44640
+0.66407,0.88457,-1.18169,-1.81580,-0.89653,2.10588,-0.44562
+0.66477,0.88555,-1.18109,-1.81596,-0.89658,2.10517,-0.44484
+0.66546,0.88651,-1.18051,-1.81611,-0.89663,2.10447,-0.44408
+0.66616,0.88747,-1.17993,-1.81626,-0.89668,2.10378,-0.44333
+0.66685,0.88840,-1.17937,-1.81640,-0.89672,2.10310,-0.44260
+0.66755,0.88933,-1.17882,-1.81655,-0.89677,2.10243,-0.44187
+0.66824,0.89024,-1.17827,-1.81669,-0.89681,2.10177,-0.44115
+0.66894,0.89114,-1.17774,-1.81683,-0.89685,2.10112,-0.44045
+0.66963,0.89202,-1.17721,-1.81697,-0.89689,2.10047,-0.43975
+0.67033,0.89289,-1.17670,-1.81710,-0.89693,2.09984,-0.43907
+0.67102,0.89375,-1.17619,-1.81724,-0.89696,2.09922,-0.43840
+0.67171,0.89460,-1.17569,-1.81737,-0.89700,2.09860,-0.43773
+0.67241,0.89543,-1.17520,-1.81750,-0.89703,2.09799,-0.43708
+0.67310,0.89625,-1.17472,-1.81763,-0.89707,2.09739,-0.43644
+0.67380,0.89706,-1.17425,-1.81775,-0.89710,2.09680,-0.43581
+0.67449,0.89786,-1.17379,-1.81788,-0.89713,2.09622,-0.43518
+0.67519,0.89865,-1.17333,-1.81800,-0.89715,2.09565,-0.43457
+0.67588,0.89942,-1.17288,-1.81812,-0.89718,2.09508,-0.43396
+0.67658,0.90018,-1.17244,-1.81824,-0.89721,2.09452,-0.43337
+0.67727,0.90093,-1.17201,-1.81836,-0.89723,2.09397,-0.43278
+0.67797,0.90167,-1.17159,-1.81847,-0.89725,2.09343,-0.43220
+0.67866,0.90240,-1.17117,-1.81859,-0.89728,2.09290,-0.43163
+0.67936,0.90312,-1.17076,-1.81870,-0.89730,2.09237,-0.43107
+0.68005,0.90383,-1.17035,-1.81881,-0.89732,2.09185,-0.43052
+0.68074,0.90453,-1.16996,-1.81892,-0.89734,2.09134,-0.42998
+0.68144,0.90521,-1.16957,-1.81903,-0.89736,2.09084,-0.42944
+0.68213,0.90589,-1.16919,-1.81914,-0.89737,2.09034,-0.42892
+0.68283,0.90656,-1.16881,-1.81924,-0.89739,2.08985,-0.42840
+0.68352,0.90721,-1.16844,-1.81934,-0.89740,2.08937,-0.42789
+0.68422,0.90786,-1.16808,-1.81945,-0.89742,2.08889,-0.42738
+0.68491,0.90850,-1.16772,-1.81955,-0.89743,2.08842,-0.42689
+0.68561,0.90913,-1.16737,-1.81965,-0.89744,2.08796,-0.42640
+0.68630,0.90975,-1.16703,-1.81974,-0.89745,2.08750,-0.42592
+0.68700,0.91035,-1.16669,-1.81984,-0.89747,2.08706,-0.42545
+0.68769,0.91096,-1.16635,-1.81994,-0.89748,2.08661,-0.42498
+0.68839,0.91155,-1.16603,-1.82003,-0.89748,2.08618,-0.42452
+0.68908,0.91213,-1.16571,-1.82012,-0.89749,2.08575,-0.42407
+0.68977,0.91270,-1.16539,-1.82022,-0.89750,2.08532,-0.42363
+0.69047,0.91327,-1.16508,-1.82031,-0.89751,2.08490,-0.42319
+0.69116,0.91382,-1.16477,-1.82040,-0.89751,2.08449,-0.42276
+0.69186,0.91437,-1.16447,-1.82048,-0.89752,2.08409,-0.42233
+0.69255,0.91491,-1.16418,-1.82057,-0.89752,2.08369,-0.42191
+0.69325,0.91545,-1.16389,-1.82066,-0.89753,2.08329,-0.42150
+0.69394,0.91597,-1.16360,-1.82074,-0.89753,2.08290,-0.42109
+0.69464,0.91649,-1.16332,-1.82082,-0.89753,2.08252,-0.42069
+0.69533,0.91700,-1.16305,-1.82091,-0.89754,2.08215,-0.42030
+0.69603,0.91747,-1.16280,-1.82097,-0.89754,2.08180,-0.41993
+0.69672,0.91817,-1.16247,-1.82099,-0.89760,2.08128,-0.41940
+0.69742,0.91886,-1.16214,-1.82100,-0.89765,2.08077,-0.41887
+0.69811,0.91954,-1.16183,-1.82102,-0.89770,2.08027,-0.41834
+0.69881,0.92020,-1.16151,-1.82103,-0.89775,2.07978,-0.41783
+0.69950,0.92086,-1.16120,-1.82105,-0.89780,2.07929,-0.41732
+0.70019,0.92151,-1.16090,-1.82106,-0.89785,2.07881,-0.41682
+0.70089,0.92215,-1.16060,-1.82107,-0.89790,2.07834,-0.41633
+0.70158,0.92278,-1.16031,-1.82109,-0.89794,2.07787,-0.41585
+0.70228,0.92340,-1.16002,-1.82111,-0.89799,2.07742,-0.41537
+0.70297,0.92401,-1.15974,-1.82112,-0.89803,2.07696,-0.41490
+0.70367,0.92461,-1.15947,-1.82114,-0.89807,2.07652,-0.41444
+0.70436,0.92521,-1.15919,-1.82115,-0.89811,2.07608,-0.41399
+0.70506,0.92579,-1.15892,-1.82117,-0.89815,2.07565,-0.41354
+0.70575,0.92636,-1.15866,-1.82118,-0.89818,2.07522,-0.41310
+0.70645,0.92693,-1.15840,-1.82120,-0.89822,2.07480,-0.41267
+0.70714,0.92749,-1.15815,-1.82121,-0.89825,2.07439,-0.41224
+0.70784,0.92804,-1.15790,-1.82123,-0.89829,2.07398,-0.41182
+0.70853,0.92858,-1.15765,-1.82125,-0.89832,2.07358,-0.41140
+0.70922,0.92911,-1.15741,-1.82126,-0.89835,2.07318,-0.41100
+0.70992,0.92964,-1.15717,-1.82128,-0.89838,2.07279,-0.41059
+0.71061,0.93015,-1.15694,-1.82129,-0.89841,2.07241,-0.41020
+0.71131,0.93052,-1.15679,-1.82127,-0.89845,2.07213,-0.40992
+0.71200,0.93164,-1.15646,-1.82097,-0.89868,2.07131,-0.40907
+0.71270,0.93275,-1.15613,-1.82067,-0.89890,2.07050,-0.40823
+0.71339,0.93384,-1.15582,-1.82038,-0.89912,2.06970,-0.40741
+0.71409,0.93491,-1.15550,-1.82009,-0.89933,2.06891,-0.40660
+0.71478,0.93596,-1.15520,-1.81981,-0.89955,2.06813,-0.40580
+0.71548,0.93700,-1.15489,-1.81953,-0.89975,2.06736,-0.40501
+0.71617,0.93803,-1.15460,-1.81926,-0.89995,2.06661,-0.40424
+0.71687,0.93904,-1.15431,-1.81899,-0.90015,2.06586,-0.40348
+0.71756,0.94003,-1.15402,-1.81873,-0.90035,2.06513,-0.40273
+0.71826,0.94101,-1.15374,-1.81847,-0.90054,2.06441,-0.40199
+0.71895,0.94197,-1.15347,-1.81822,-0.90072,2.06370,-0.40127
+0.71964,0.94292,-1.15320,-1.81797,-0.90090,2.06299,-0.40055
+0.72034,0.94385,-1.15294,-1.81773,-0.90108,2.06230,-0.39985
+0.72103,0.94477,-1.15268,-1.81749,-0.90126,2.06162,-0.39916
+0.72173,0.94568,-1.15242,-1.81726,-0.90143,2.06095,-0.39848
+0.72242,0.94657,-1.15217,-1.81703,-0.90160,2.06029,-0.39781
+0.72312,0.94745,-1.15192,-1.81680,-0.90176,2.05964,-0.39715
+0.72381,0.94831,-1.15168,-1.81658,-0.90192,2.05899,-0.39650
+0.72451,0.94916,-1.15145,-1.81636,-0.90208,2.05836,-0.39586
+0.72520,0.95000,-1.15121,-1.81615,-0.90223,2.05774,-0.39523
+0.72590,0.95083,-1.15098,-1.81594,-0.90239,2.05712,-0.39461
+0.72659,0.95164,-1.15076,-1.81574,-0.90253,2.05652,-0.39401
+0.72729,0.95244,-1.15054,-1.81553,-0.90268,2.05592,-0.39341
+0.72798,0.95323,-1.15032,-1.81534,-0.90282,2.05533,-0.39282
+0.72867,0.95401,-1.15011,-1.81514,-0.90296,2.05475,-0.39224
+0.72937,0.95477,-1.14990,-1.81495,-0.90310,2.05418,-0.39166
+0.73006,0.95552,-1.14970,-1.81477,-0.90323,2.05362,-0.39110
+0.73076,0.95627,-1.14949,-1.81459,-0.90336,2.05307,-0.39055
+0.73145,0.95700,-1.14930,-1.81441,-0.90349,2.05252,-0.39000
+0.73215,0.95771,-1.14910,-1.81423,-0.90361,2.05198,-0.38947
+0.73284,0.95842,-1.14891,-1.81406,-0.90373,2.05146,-0.38894
+0.73354,0.95912,-1.14872,-1.81389,-0.90385,2.05093,-0.38842
+0.73423,0.95981,-1.14854,-1.81372,-0.90397,2.05042,-0.38791
+0.73493,0.96048,-1.14835,-1.81356,-0.90409,2.04991,-0.38740
+0.73562,0.96115,-1.14818,-1.81340,-0.90420,2.04941,-0.38691
+0.73632,0.96180,-1.14800,-1.81325,-0.90431,2.04892,-0.38642
+0.73701,0.96245,-1.14783,-1.81309,-0.90442,2.04844,-0.38594
+0.73770,0.96308,-1.14766,-1.81294,-0.90452,2.04796,-0.38547
+0.73840,0.96371,-1.14749,-1.81280,-0.90462,2.04749,-0.38500
+0.73909,0.96433,-1.14733,-1.81265,-0.90473,2.04703,-0.38454
+0.73979,0.96493,-1.14717,-1.81251,-0.90482,2.04657,-0.38409
+0.74048,0.96553,-1.14701,-1.81237,-0.90492,2.04612,-0.38365
+0.74118,0.96612,-1.14685,-1.81224,-0.90502,2.04568,-0.38321
+0.74187,0.96670,-1.14670,-1.81210,-0.90511,2.04525,-0.38278
+0.74257,0.96727,-1.14655,-1.81197,-0.90520,2.04482,-0.38236
+0.74326,0.96783,-1.14640,-1.81185,-0.90529,2.04439,-0.38194
+0.74396,0.96838,-1.14626,-1.81172,-0.90537,2.04398,-0.38153
+0.74465,0.96893,-1.14611,-1.81160,-0.90546,2.04357,-0.38113
+0.74535,0.96946,-1.14597,-1.81148,-0.90554,2.04316,-0.38073
+0.74604,0.96999,-1.14584,-1.81136,-0.90562,2.04276,-0.38034
+0.74674,0.97051,-1.14570,-1.81124,-0.90570,2.04237,-0.37996
+0.74743,0.97100,-1.14558,-1.81112,-0.90578,2.04200,-0.37960
+0.74812,0.97175,-1.14547,-1.81080,-0.90596,2.04144,-0.37904
+0.74882,0.97250,-1.14535,-1.81049,-0.90614,2.04088,-0.37849
+0.74951,0.97323,-1.14524,-1.81019,-0.90632,2.04033,-0.37795
+0.75021,0.97395,-1.14513,-1.80989,-0.90649,2.03979,-0.37742
+0.75090,0.97466,-1.14502,-1.80959,-0.90666,2.03926,-0.37690
+0.75160,0.97536,-1.14492,-1.80931,-0.90682,2.03873,-0.37638
+0.75229,0.97604,-1.14481,-1.80902,-0.90699,2.03822,-0.37588
+0.75299,0.97672,-1.14471,-1.80874,-0.90714,2.03771,-0.37538
+0.75368,0.97739,-1.14461,-1.80847,-0.90730,2.03721,-0.37489
+0.75438,0.97804,-1.14451,-1.80820,-0.90745,2.03671,-0.37441
+0.75507,0.97869,-1.14441,-1.80794,-0.90760,2.03623,-0.37393
+0.75577,0.97933,-1.14432,-1.80768,-0.90775,2.03575,-0.37347
+0.75646,0.97995,-1.14423,-1.80743,-0.90789,2.03528,-0.37301
+0.75715,0.98057,-1.14413,-1.80718,-0.90804,2.03481,-0.37256
+0.75785,0.98118,-1.14404,-1.80693,-0.90817,2.03435,-0.37211
+0.75854,0.98177,-1.14395,-1.80669,-0.90831,2.03390,-0.37167
+0.75924,0.98236,-1.14387,-1.80646,-0.90844,2.03346,-0.37124
+0.75993,0.98294,-1.14378,-1.80623,-0.90857,2.03302,-0.37082
+0.76063,0.98351,-1.14370,-1.80600,-0.90870,2.03259,-0.37040
+0.76132,0.98407,-1.14361,-1.80578,-0.90883,2.03217,-0.36999
+0.76202,0.98462,-1.14353,-1.80556,-0.90895,2.03175,-0.36959
+0.76271,0.98517,-1.14345,-1.80535,-0.90907,2.03134,-0.36919
+0.76341,0.98570,-1.14337,-1.80514,-0.90919,2.03093,-0.36880
+0.76410,0.98623,-1.14329,-1.80493,-0.90930,2.03053,-0.36841
+0.76480,0.98675,-1.14322,-1.80473,-0.90942,2.03014,-0.36803
+0.76549,0.98726,-1.14314,-1.80453,-0.90953,2.02975,-0.36766
+0.76619,0.98776,-1.14307,-1.80434,-0.90964,2.02937,-0.36729
+0.76688,0.98826,-1.14299,-1.80415,-0.90974,2.02900,-0.36693
+0.76757,0.98844,-1.14299,-1.80404,-0.90980,2.02886,-0.36679
+0.76827,0.98932,-1.14306,-1.80335,-0.91012,2.02820,-0.36615
+0.76896,0.99019,-1.14314,-1.80268,-0.91045,2.02754,-0.36552
+0.76966,0.99105,-1.14321,-1.80202,-0.91076,2.02690,-0.36490
+0.77035,0.99189,-1.14328,-1.80137,-0.91108,2.02627,-0.36430
+0.77105,0.99271,-1.14335,-1.80073,-0.91138,2.02565,-0.36370
+0.77174,0.99353,-1.14342,-1.80010,-0.91168,2.02504,-0.36311
+0.77244,0.99433,-1.14349,-1.79948,-0.91198,2.02444,-0.36253
+0.77313,0.99511,-1.14356,-1.79888,-0.91227,2.02385,-0.36196
+0.77383,0.99589,-1.14362,-1.79828,-0.91255,2.02326,-0.36140
+0.77452,0.99665,-1.14369,-1.79770,-0.91283,2.02269,-0.36085
+0.77522,0.99740,-1.14376,-1.79712,-0.91311,2.02212,-0.36031
+0.77591,0.99814,-1.14382,-1.79656,-0.91338,2.02157,-0.35977
+0.77660,0.99886,-1.14388,-1.79600,-0.91364,2.02102,-0.35925
+0.77730,0.99958,-1.14394,-1.79546,-0.91390,2.02048,-0.35873
+0.77799,1.00028,-1.14401,-1.79492,-0.91416,2.01995,-0.35823
+0.77869,1.00097,-1.14407,-1.79440,-0.91441,2.01943,-0.35773
+0.77938,1.00165,-1.14412,-1.79388,-0.91465,2.01891,-0.35724
+0.78008,1.00232,-1.14418,-1.79337,-0.91489,2.01840,-0.35676
+0.78077,1.00298,-1.14424,-1.79288,-0.91513,2.01791,-0.35628
+0.78147,1.00363,-1.14430,-1.79239,-0.91537,2.01742,-0.35582
+0.78216,1.00426,-1.14435,-1.79191,-0.91560,2.01693,-0.35536
+0.78286,1.00489,-1.14441,-1.79143,-0.91582,2.01646,-0.35491
+0.78355,1.00551,-1.14446,-1.79097,-0.91604,2.01599,-0.35446
+0.78425,1.00611,-1.14451,-1.79052,-0.91626,2.01553,-0.35402
+0.78494,1.00671,-1.14456,-1.79007,-0.91647,2.01507,-0.35360
+0.78563,1.00730,-1.14461,-1.78963,-0.91668,2.01463,-0.35317
+0.78633,1.00788,-1.14466,-1.78920,-0.91689,2.01419,-0.35276
+0.78702,1.00845,-1.14471,-1.78877,-0.91709,2.01376,-0.35235
+0.78772,1.00901,-1.14476,-1.78836,-0.91729,2.01333,-0.35195
+0.78841,1.00956,-1.14481,-1.78795,-0.91748,2.01291,-0.35155
+0.78911,1.01010,-1.14486,-1.78755,-0.91767,2.01250,-0.35116
+0.78980,1.01064,-1.14490,-1.78715,-0.91786,2.01209,-0.35078
+0.79050,1.01116,-1.14495,-1.78677,-0.91805,2.01169,-0.35040
+0.79119,1.01168,-1.14499,-1.78639,-0.91823,2.01130,-0.35003
+0.79189,1.01219,-1.14503,-1.78601,-0.91840,2.01091,-0.34967
+0.79258,1.01269,-1.14508,-1.78565,-0.91858,2.01053,-0.34931
+0.79328,1.01318,-1.14512,-1.78529,-0.91875,2.01015,-0.34896
+0.79397,1.01366,-1.14516,-1.78493,-0.91892,2.00978,-0.34861
+0.79467,1.01414,-1.14520,-1.78458,-0.91908,2.00942,-0.34827
+0.79536,1.01461,-1.14524,-1.78424,-0.91925,2.00906,-0.34793
+0.79605,1.01507,-1.14528,-1.78391,-0.91941,2.00871,-0.34760
+0.79675,1.01552,-1.14531,-1.78358,-0.91956,2.00836,-0.34728
+0.79744,1.01597,-1.14535,-1.78326,-0.91972,2.00802,-0.34696
+0.79814,1.01641,-1.14539,-1.78294,-0.91987,2.00768,-0.34664
+0.79883,1.01684,-1.14542,-1.78263,-0.92002,2.00735,-0.34633
+0.79953,1.01702,-1.14545,-1.78248,-0.92008,2.00721,-0.34621
+0.80022,1.01755,-1.14561,-1.78192,-0.92033,2.00681,-0.34583
+0.80092,1.01807,-1.14576,-1.78137,-0.92057,2.00642,-0.34546
+0.80161,1.01858,-1.14591,-1.78083,-0.92080,2.00603,-0.34509
+0.80231,1.01908,-1.14606,-1.78030,-0.92104,2.00564,-0.34474
+0.80300,1.01958,-1.14621,-1.77978,-0.92126,2.00527,-0.34439
+0.80370,1.02006,-1.14635,-1.77927,-0.92149,2.00490,-0.34404
+0.80439,1.02054,-1.14649,-1.77877,-0.92171,2.00453,-0.34370
+0.80508,1.02101,-1.14663,-1.77827,-0.92192,2.00417,-0.34336
+0.80578,1.02147,-1.14676,-1.77779,-0.92213,2.00382,-0.34304
+0.80647,1.02193,-1.14690,-1.77731,-0.92234,2.00347,-0.34271
+0.80717,1.02237,-1.14703,-1.77685,-0.92255,2.00313,-0.34239
+0.80786,1.02281,-1.14716,-1.77639,-0.92275,2.00279,-0.34208
+0.80856,1.02325,-1.14728,-1.77594,-0.92295,2.00246,-0.34177
+0.80925,1.02367,-1.14741,-1.77549,-0.92314,2.00214,-0.34147
+0.80995,1.02409,-1.14753,-1.77506,-0.92333,2.00182,-0.34117
+0.81064,1.02450,-1.14765,-1.77463,-0.92352,2.00150,-0.34088
+0.81134,1.02491,-1.14777,-1.77421,-0.92371,2.00119,-0.34059
+0.81203,1.02531,-1.14789,-1.77379,-0.92389,2.00089,-0.34031
+0.81273,1.02570,-1.14800,-1.77339,-0.92407,2.00058,-0.34003
+0.81342,1.02608,-1.14811,-1.77299,-0.92424,2.00029,-0.33976
+0.81412,1.02646,-1.14822,-1.77260,-0.92441,2.00000,-0.33949
+0.81481,1.02683,-1.14833,-1.77221,-0.92458,1.99971,-0.33923
+0.81550,1.02710,-1.14843,-1.77190,-0.92472,1.99951,-0.33904
+0.81620,1.02756,-1.14878,-1.77109,-0.92504,1.99916,-0.33871
+0.81689,1.02801,-1.14913,-1.77028,-0.92536,1.99881,-0.33839
+0.81759,1.02846,-1.14948,-1.76949,-0.92568,1.99847,-0.33808
+0.81828,1.02890,-1.14981,-1.76872,-0.92598,1.99814,-0.33777
+0.81898,1.02932,-1.15015,-1.76796,-0.92629,1.99781,-0.33746
+0.81967,1.02975,-1.15047,-1.76721,-0.92659,1.99749,-0.33716
+0.82037,1.03016,-1.15079,-1.76647,-0.92688,1.99717,-0.33687
+0.82106,1.03057,-1.15111,-1.76575,-0.92717,1.99686,-0.33658
+0.82176,1.03097,-1.15142,-1.76503,-0.92746,1.99655,-0.33630
+0.82245,1.03136,-1.15172,-1.76434,-0.92774,1.99625,-0.33602
+0.82315,1.03175,-1.15202,-1.76365,-0.92802,1.99595,-0.33575
+0.82384,1.03213,-1.15231,-1.76297,-0.92829,1.99566,-0.33548
+0.82453,1.03250,-1.15260,-1.76231,-0.92855,1.99538,-0.33522
+0.82523,1.03287,-1.15289,-1.76166,-0.92882,1.99509,-0.33496
+0.82592,1.03323,-1.15316,-1.76102,-0.92907,1.99482,-0.33471
+0.82662,1.03358,-1.15344,-1.76039,-0.92933,1.99455,-0.33446
+0.82731,1.03393,-1.15371,-1.75977,-0.92958,1.99428,-0.33421
+0.82801,1.03427,-1.15397,-1.75916,-0.92982,1.99402,-0.33397
+0.82870,1.03461,-1.15423,-1.75856,-0.93007,1.99376,-0.33373
+0.82940,1.03494,-1.15449,-1.75798,-0.93030,1.99350,-0.33350
+0.83009,1.03526,-1.15474,-1.75740,-0.93054,1.99325,-0.33327
+0.83079,1.03558,-1.15498,-1.75683,-0.93077,1.99301,-0.33305
+0.83148,1.03590,-1.15522,-1.75627,-0.93099,1.99277,-0.33283
+0.83218,1.03620,-1.15546,-1.75573,-0.93122,1.99253,-0.33261
+0.83287,1.03651,-1.15570,-1.75519,-0.93144,1.99230,-0.33240
+0.83356,1.03680,-1.15592,-1.75466,-0.93165,1.99207,-0.33219
+0.83426,1.03710,-1.15615,-1.75414,-0.93186,1.99184,-0.33198
+0.83495,1.03738,-1.15637,-1.75363,-0.93207,1.99162,-0.33178
+0.83565,1.03767,-1.15659,-1.75313,-0.93228,1.99140,-0.33158
+0.83634,1.03794,-1.15680,-1.75263,-0.93248,1.99119,-0.33138
+0.83704,1.03822,-1.15701,-1.75215,-0.93268,1.99098,-0.33119
+0.83773,1.03849,-1.15722,-1.75167,-0.93287,1.99077,-0.33100
+0.83843,1.03875,-1.15742,-1.75121,-0.93306,1.99057,-0.33082
+0.83912,1.03891,-1.15756,-1.75090,-0.93319,1.99044,-0.33071
+0.83982,1.03918,-1.15794,-1.75015,-0.93347,1.99024,-0.33052
+0.84051,1.03944,-1.15832,-1.74942,-0.93375,1.99003,-0.33033
+0.84121,1.03970,-1.15869,-1.74869,-0.93403,1.98983,-0.33015
+0.84190,1.03996,-1.15906,-1.74798,-0.93430,1.98963,-0.32997
+0.84260,1.04021,-1.15942,-1.74728,-0.93457,1.98944,-0.32979
+0.84329,1.04045,-1.15977,-1.74660,-0.93484,1.98925,-0.32962
+0.84398,1.04070,-1.16012,-1.74592,-0.93510,1.98906,-0.32945
+0.84468,1.04093,-1.16046,-1.74526,-0.93535,1.98888,-0.32929
+0.84537,1.04117,-1.16079,-1.74461,-0.93560,1.98870,-0.32912
+0.84607,1.04139,-1.16112,-1.74397,-0.93585,1.98852,-0.32896
+0.84676,1.04162,-1.16144,-1.74334,-0.93610,1.98835,-0.32880
+0.84746,1.04184,-1.16176,-1.74272,-0.93634,1.98818,-0.32865
+0.84815,1.04206,-1.16207,-1.74211,-0.93657,1.98801,-0.32850
+0.84885,1.04227,-1.16238,-1.74151,-0.93681,1.98785,-0.32835
+0.84954,1.04248,-1.16268,-1.74092,-0.93703,1.98769,-0.32820
+0.85024,1.04268,-1.16297,-1.74034,-0.93726,1.98753,-0.32806
+0.85093,1.04288,-1.16326,-1.73978,-0.93748,1.98737,-0.32792
+0.85163,1.04308,-1.16355,-1.73922,-0.93770,1.98722,-0.32778
+0.85232,1.04328,-1.16383,-1.73867,-0.93791,1.98707,-0.32765
+0.85301,1.04347,-1.16410,-1.73813,-0.93813,1.98692,-0.32751
+0.85371,1.04365,-1.16437,-1.73760,-0.93833,1.98677,-0.32738
+0.85440,1.04384,-1.16464,-1.73708,-0.93854,1.98663,-0.32725
+0.85510,1.04402,-1.16490,-1.73657,-0.93874,1.98649,-0.32713
+0.85579,1.04417,-1.16515,-1.73609,-0.93893,1.98637,-0.32702
+0.85649,1.04431,-1.16560,-1.73531,-0.93921,1.98626,-0.32692
+0.85718,1.04445,-1.16604,-1.73455,-0.93949,1.98616,-0.32682
+0.85788,1.04458,-1.16648,-1.73381,-0.93976,1.98605,-0.32673
+0.85857,1.04471,-1.16690,-1.73308,-0.94003,1.98595,-0.32664
+0.85927,1.04484,-1.16732,-1.73235,-0.94029,1.98585,-0.32655
+0.85996,1.04496,-1.16774,-1.73165,-0.94056,1.98575,-0.32646
+0.86066,1.04509,-1.16814,-1.73095,-0.94081,1.98565,-0.32638
+0.86135,1.04521,-1.16854,-1.73026,-0.94107,1.98556,-0.32629
+0.86205,1.04533,-1.16893,-1.72959,-0.94132,1.98547,-0.32621
+0.86274,1.04544,-1.16931,-1.72893,-0.94156,1.98538,-0.32613
+0.86343,1.04555,-1.16969,-1.72828,-0.94180,1.98529,-0.32605
+0.86413,1.04566,-1.17006,-1.72764,-0.94204,1.98520,-0.32597
+0.86482,1.04577,-1.17042,-1.72701,-0.94228,1.98512,-0.32590
+0.86552,1.04588,-1.17078,-1.72639,-0.94251,1.98503,-0.32582
+0.86621,1.04598,-1.17113,-1.72578,-0.94274,1.98495,-0.32575
+0.86691,1.04608,-1.17148,-1.72519,-0.94296,1.98487,-0.32568
+0.86760,1.04618,-1.17182,-1.72460,-0.94318,1.98479,-0.32561
+0.86830,1.04628,-1.17215,-1.72402,-0.94340,1.98472,-0.32554
+0.86899,1.04638,-1.17248,-1.72345,-0.94361,1.98464,-0.32548
+0.86969,1.04647,-1.17280,-1.72290,-0.94382,1.98457,-0.32541
+0.87038,1.04656,-1.17312,-1.72235,-0.94403,1.98450,-0.32535
+0.87108,1.04665,-1.17343,-1.72181,-0.94423,1.98442,-0.32529
+0.87177,1.04671,-1.17371,-1.72133,-0.94441,1.98438,-0.32525
+0.87246,1.04663,-1.17443,-1.72029,-0.94476,1.98444,-0.32530
+0.87316,1.04655,-1.17513,-1.71927,-0.94510,1.98449,-0.32536
+0.87385,1.04647,-1.17581,-1.71826,-0.94544,1.98455,-0.32541
+0.87455,1.04639,-1.17649,-1.71727,-0.94577,1.98460,-0.32546
+0.87524,1.04632,-1.17715,-1.71629,-0.94610,1.98466,-0.32552
+0.87594,1.04624,-1.17780,-1.71534,-0.94642,1.98471,-0.32557
+0.87663,1.04617,-1.17844,-1.71439,-0.94674,1.98477,-0.32562
+0.87733,1.04609,-1.17907,-1.71347,-0.94706,1.98482,-0.32567
+0.87802,1.04602,-1.17969,-1.71256,-0.94737,1.98488,-0.32573
+0.87872,1.04594,-1.18030,-1.71166,-0.94768,1.98493,-0.32578
+0.87941,1.04587,-1.18090,-1.71078,-0.94798,1.98498,-0.32583
+0.88011,1.04580,-1.18148,-1.70991,-0.94828,1.98504,-0.32588
+0.88080,1.04572,-1.18206,-1.70906,-0.94857,1.98509,-0.32593
+0.88149,1.04565,-1.18263,-1.70822,-0.94886,1.98514,-0.32598
+0.88219,1.04558,-1.18318,-1.70740,-0.94914,1.98519,-0.32603
+0.88288,1.04551,-1.18373,-1.70659,-0.94943,1.98524,-0.32608
+0.88358,1.04544,-1.18427,-1.70579,-0.94970,1.98529,-0.32613
+0.88427,1.04537,-1.18480,-1.70501,-0.94998,1.98534,-0.32618
+0.88497,1.04530,-1.18532,-1.70424,-0.95025,1.98539,-0.32622
+0.88566,1.04524,-1.18583,-1.70348,-0.95051,1.98544,-0.32627
+0.88636,1.04517,-1.18633,-1.70273,-0.95078,1.98549,-0.32632
+0.88705,1.04510,-1.18682,-1.70200,-0.95103,1.98554,-0.32637
+0.88775,1.04503,-1.18731,-1.70128,-0.95129,1.98559,-0.32641
+0.88844,1.04497,-1.18778,-1.70057,-0.95154,1.98564,-0.32646
+0.88914,1.04490,-1.18825,-1.69988,-0.95179,1.98569,-0.32651
+0.88983,1.04484,-1.18871,-1.69919,-0.95203,1.98574,-0.32655
+0.89053,1.04477,-1.18916,-1.69852,-0.95227,1.98578,-0.32660
+0.89122,1.04471,-1.18961,-1.69785,-0.95251,1.98583,-0.32664
+0.89191,1.04465,-1.19004,-1.69720,-0.95274,1.98588,-0.32669
+0.89261,1.04459,-1.19047,-1.69656,-0.95297,1.98592,-0.32673
+0.89330,1.04452,-1.19089,-1.69593,-0.95320,1.98597,-0.32678
+0.89400,1.04446,-1.19131,-1.69531,-0.95342,1.98601,-0.32682
+0.89469,1.04440,-1.19171,-1.69470,-0.95364,1.98606,-0.32687
+0.89539,1.04434,-1.19211,-1.69410,-0.95386,1.98610,-0.32691
+0.89608,1.04428,-1.19251,-1.69351,-0.95407,1.98615,-0.32695
+0.89678,1.04422,-1.19289,-1.69293,-0.95428,1.98619,-0.32699
+0.89747,1.04416,-1.19327,-1.69236,-0.95449,1.98623,-0.32704
+0.89817,1.04411,-1.19364,-1.69180,-0.95470,1.98628,-0.32708
+0.89886,1.04405,-1.19401,-1.69125,-0.95490,1.98632,-0.32712
+0.89956,1.04396,-1.19429,-1.69087,-0.95503,1.98639,-0.32718
+0.90025,1.04329,-1.19560,-1.68926,-0.95550,1.98689,-0.32765
+0.90094,1.04263,-1.19690,-1.68767,-0.95597,1.98738,-0.32810
+0.90164,1.04199,-1.19816,-1.68611,-0.95643,1.98787,-0.32855
+0.90233,1.04135,-1.19941,-1.68458,-0.95689,1.98835,-0.32900
+0.90303,1.04073,-1.20064,-1.68306,-0.95734,1.98882,-0.32943
+0.90372,1.04011,-1.20184,-1.68158,-0.95779,1.98928,-0.32986
+0.90442,1.03950,-1.20303,-1.68011,-0.95824,1.98974,-0.33028
+0.90511,1.03891,-1.20419,-1.67867,-0.95868,1.99018,-0.33070
+0.90581,1.03832,-1.20533,-1.67725,-0.95911,1.99063,-0.33111
+0.90650,1.03775,-1.20646,-1.67586,-0.95954,1.99106,-0.33151
+0.90720,1.03718,-1.20756,-1.67448,-0.95996,1.99149,-0.33191
+0.90789,1.03662,-1.20865,-1.67313,-0.96038,1.99191,-0.33230
+0.90859,1.03607,-1.20971,-1.67180,-0.96080,1.99232,-0.33269
+0.90928,1.03553,-1.21076,-1.67049,-0.96121,1.99273,-0.33306
+0.90997,1.03500,-1.21179,-1.66920,-0.96161,1.99313,-0.33344
+0.91067,1.03447,-1.21280,-1.66793,-0.96201,1.99353,-0.33381
+0.91136,1.03396,-1.21380,-1.66669,-0.96241,1.99391,-0.33417
+0.91206,1.03345,-1.21477,-1.66546,-0.96280,1.99430,-0.33453
+0.91275,1.03295,-1.21574,-1.66425,-0.96319,1.99467,-0.33488
+0.91345,1.03246,-1.21668,-1.66306,-0.96357,1.99504,-0.33522
+0.91414,1.03198,-1.21761,-1.66189,-0.96395,1.99541,-0.33556
+0.91484,1.03151,-1.21852,-1.66074,-0.96432,1.99577,-0.33590
+0.91553,1.03104,-1.21942,-1.65960,-0.96469,1.99612,-0.33623
+0.91623,1.03058,-1.22030,-1.65849,-0.96506,1.99647,-0.33656
+0.91692,1.03012,-1.22116,-1.65739,-0.96542,1.99681,-0.33688
+0.91762,1.02968,-1.22201,-1.65631,-0.96577,1.99715,-0.33719
+0.91831,1.02924,-1.22285,-1.65525,-0.96612,1.99748,-0.33750
+0.91901,1.02881,-1.22367,-1.65420,-0.96647,1.99781,-0.33781
+0.91970,1.02838,-1.22448,-1.65318,-0.96681,1.99813,-0.33811
+0.92039,1.02796,-1.22527,-1.65216,-0.96715,1.99845,-0.33841
+0.92109,1.02755,-1.22605,-1.65117,-0.96749,1.99876,-0.33870
+0.92178,1.02715,-1.22682,-1.65019,-0.96782,1.99907,-0.33899
+0.92248,1.02675,-1.22757,-1.64922,-0.96814,1.99937,-0.33927
+0.92317,1.02636,-1.22831,-1.64827,-0.96847,1.99967,-0.33955
+0.92387,1.02597,-1.22904,-1.64734,-0.96879,1.99996,-0.33983
+0.92456,1.02559,-1.22976,-1.64642,-0.96910,2.00025,-0.34010
+0.92526,1.02521,-1.23046,-1.64552,-0.96941,2.00054,-0.34037
+0.92595,1.02484,-1.23115,-1.64463,-0.96972,2.00082,-0.34063
+0.92665,1.02448,-1.23183,-1.64375,-0.97002,2.00109,-0.34089
+0.92734,1.02412,-1.23250,-1.64289,-0.97032,2.00137,-0.34115
+0.92804,1.02377,-1.23315,-1.64204,-0.97061,2.00163,-0.34140
+0.92873,1.02343,-1.23380,-1.64121,-0.97090,2.00190,-0.34165
+0.92942,1.02308,-1.23443,-1.64039,-0.97119,2.00216,-0.34189
+0.93012,1.02275,-1.23506,-1.63958,-0.97147,2.00241,-0.34213
+0.93081,1.02242,-1.23567,-1.63879,-0.97175,2.00266,-0.34237
+0.93151,1.02209,-1.23627,-1.63801,-0.97203,2.00291,-0.34260
+0.93220,1.02177,-1.23686,-1.63724,-0.97230,2.00316,-0.34284
+0.93290,1.02146,-1.23744,-1.63648,-0.97257,2.00340,-0.34306
+0.93359,1.02115,-1.23801,-1.63574,-0.97284,2.00363,-0.34329
+0.93429,1.02084,-1.23858,-1.63500,-0.97310,2.00387,-0.34351
+0.93498,1.02054,-1.23913,-1.63428,-0.97336,2.00410,-0.34372
+0.93568,1.02024,-1.23967,-1.63357,-0.97362,2.00432,-0.34394
+0.93637,1.01995,-1.24021,-1.63288,-0.97387,2.00454,-0.34415
+0.93707,1.01966,-1.24073,-1.63219,-0.97412,2.00476,-0.34435
+0.93776,1.01938,-1.24125,-1.63152,-0.97436,2.00498,-0.34456
+0.93846,1.01910,-1.24175,-1.63085,-0.97460,2.00519,-0.34476
+0.93915,1.01883,-1.24225,-1.63020,-0.97484,2.00540,-0.34496
+0.93984,1.01856,-1.24274,-1.62955,-0.97508,2.00561,-0.34515
+0.94054,1.01829,-1.24322,-1.62892,-0.97531,2.00581,-0.34535
+0.94123,1.01803,-1.24370,-1.62830,-0.97554,2.00601,-0.34554
+0.94193,1.01777,-1.24416,-1.62769,-0.97577,2.00621,-0.34572
+0.94262,1.01752,-1.24462,-1.62708,-0.97599,2.00640,-0.34591
+0.94332,1.01727,-1.24507,-1.62649,-0.97621,2.00660,-0.34609
+0.94401,1.01702,-1.24551,-1.62591,-0.97643,2.00678,-0.34627
+0.94471,1.01678,-1.24594,-1.62533,-0.97665,2.00697,-0.34644
+0.94540,1.01654,-1.24637,-1.62477,-0.97686,2.00715,-0.34662
+0.94610,1.01631,-1.24679,-1.62421,-0.97707,2.00733,-0.34679
+0.94679,1.01608,-1.24720,-1.62367,-0.97727,2.00751,-0.34696
+0.94749,1.01585,-1.24761,-1.62313,-0.97748,2.00768,-0.34712
+0.94818,1.01562,-1.24801,-1.62260,-0.97768,2.00786,-0.34729
+0.94887,1.01540,-1.24840,-1.62208,-0.97788,2.00803,-0.34745
+0.94957,1.01529,-1.24858,-1.62184,-0.97796,2.00811,-0.34753
+0.95026,1.01487,-1.24929,-1.62097,-0.97826,2.00843,-0.34783
+0.95096,1.01445,-1.24997,-1.62012,-0.97854,2.00875,-0.34813
+0.95165,1.01403,-1.25065,-1.61928,-0.97883,2.00906,-0.34843
+0.95235,1.01363,-1.25132,-1.61846,-0.97911,2.00937,-0.34872
+0.95304,1.01323,-1.25197,-1.61764,-0.97939,2.00968,-0.34901
+0.95374,1.01283,-1.25261,-1.61684,-0.97966,2.00997,-0.34930
+0.95443,1.01244,-1.25324,-1.61606,-0.97994,2.01027,-0.34957
+0.95513,1.01206,-1.25387,-1.61528,-0.98020,2.01056,-0.34985
+0.95582,1.01169,-1.25448,-1.61452,-0.98047,2.01084,-0.35012
+0.95652,1.01132,-1.25508,-1.61377,-0.98073,2.01112,-0.35039
+0.95721,1.01095,-1.25567,-1.61304,-0.98099,2.01140,-0.35065
+0.95790,1.01060,-1.25625,-1.61231,-0.98124,2.01167,-0.35091
+0.95860,1.01024,-1.25682,-1.61160,-0.98149,2.01194,-0.35116
+0.95929,1.00990,-1.25738,-1.61089,-0.98174,2.01220,-0.35141
+0.95999,1.00956,-1.25793,-1.61020,-0.98199,2.01246,-0.35166
+0.96068,1.00922,-1.25847,-1.60952,-0.98223,2.01272,-0.35190
+0.96138,1.00889,-1.25900,-1.60885,-0.98247,2.01297,-0.35214
+0.96207,1.00857,-1.25952,-1.60819,-0.98270,2.01322,-0.35238
+0.96277,1.00825,-1.26004,-1.60754,-0.98294,2.01346,-0.35261
+0.96346,1.00793,-1.26054,-1.60691,-0.98317,2.01370,-0.35284
+0.96416,1.00762,-1.26104,-1.60628,-0.98339,2.01393,-0.35307
+0.96485,1.00732,-1.26153,-1.60566,-0.98362,2.01417,-0.35329
+0.96555,1.00702,-1.26201,-1.60505,-0.98384,2.01440,-0.35351
+0.96624,1.00672,-1.26248,-1.60445,-0.98406,2.01462,-0.35372
+0.96694,1.00643,-1.26294,-1.60386,-0.98427,2.01484,-0.35393
+0.96763,1.00614,-1.26340,-1.60329,-0.98449,2.01506,-0.35414
+0.96832,1.00586,-1.26385,-1.60272,-0.98470,2.01528,-0.35435
+0.96902,1.00558,-1.26429,-1.60215,-0.98491,2.01549,-0.35455
+0.96971,1.00531,-1.26472,-1.60160,-0.98511,2.01570,-0.35475
+0.97041,1.00504,-1.26515,-1.60106,-0.98531,2.01590,-0.35495
+0.97110,1.00478,-1.26557,-1.60052,-0.98551,2.01610,-0.35514
+0.97180,1.00452,-1.26598,-1.60000,-0.98571,2.01630,-0.35533
+0.97249,1.00426,-1.26638,-1.59948,-0.98590,2.01650,-0.35552
+0.97319,1.00401,-1.26678,-1.59897,-0.98609,2.01669,-0.35570
+0.97388,1.00368,-1.26726,-1.59838,-0.98630,2.01694,-0.35594
+0.97458,1.00265,-1.26853,-1.59704,-0.98669,2.01771,-0.35668
+0.97527,1.00163,-1.26978,-1.59571,-0.98707,2.01847,-0.35741
+0.97597,1.00064,-1.27101,-1.59440,-0.98745,2.01922,-0.35812
+0.97666,0.99966,-1.27222,-1.59311,-0.98783,2.01995,-0.35883
+0.97735,0.99870,-1.27340,-1.59185,-0.98820,2.02067,-0.35952
+0.97805,0.99775,-1.27457,-1.59060,-0.98857,2.02138,-0.36020
+0.97874,0.99682,-1.27572,-1.58937,-0.98894,2.02208,-0.36087
+0.97944,0.99591,-1.27684,-1.58815,-0.98930,2.02276,-0.36152
+0.98013,0.99502,-1.27795,-1.58696,-0.98966,2.02343,-0.36217
+0.98083,0.99414,-1.27904,-1.58579,-0.99002,2.02409,-0.36281
+0.98152,0.99327,-1.28011,-1.58463,-0.99037,2.02474,-0.36343
+0.98222,0.99242,-1.28117,-1.58349,-0.99072,2.02538,-0.36405
+0.98291,0.99159,-1.28220,-1.58236,-0.99107,2.02600,-0.36465
+0.98361,0.99077,-1.28322,-1.58126,-0.99141,2.02662,-0.36525
+0.98430,0.98996,-1.28422,-1.58017,-0.99175,2.02722,-0.36583
+0.98500,0.98917,-1.28520,-1.57910,-0.99209,2.02782,-0.36641
+0.98569,0.98839,-1.28617,-1.57804,-0.99243,2.02840,-0.36698
+0.98639,0.98763,-1.28712,-1.57700,-0.99276,2.02898,-0.36753
+0.98708,0.98687,-1.28805,-1.57597,-0.99308,2.02954,-0.36808
+0.98777,0.98614,-1.28897,-1.57496,-0.99341,2.03010,-0.36862
+0.98847,0.98541,-1.28987,-1.57397,-0.99373,2.03064,-0.36915
+0.98916,0.98470,-1.29076,-1.57299,-0.99405,2.03118,-0.36967
+0.98986,0.98399,-1.29163,-1.57203,-0.99436,2.03171,-0.37019
+0.99055,0.98331,-1.29249,-1.57108,-0.99468,2.03223,-0.37069
+0.99125,0.98263,-1.29333,-1.57015,-0.99498,2.03274,-0.37119
+0.99194,0.98196,-1.29416,-1.56923,-0.99529,2.03324,-0.37168
+0.99264,0.98131,-1.29497,-1.56832,-0.99559,2.03373,-0.37216
+0.99333,0.98066,-1.29577,-1.56743,-0.99589,2.03421,-0.37263
+0.99403,0.98003,-1.29656,-1.56655,-0.99619,2.03469,-0.37310
+0.99472,0.97941,-1.29733,-1.56569,-0.99648,2.03516,-0.37355
+0.99542,0.97880,-1.29809,-1.56483,-0.99677,2.03562,-0.37400
+0.99611,0.97820,-1.29884,-1.56399,-0.99705,2.03607,-0.37445
+0.99680,0.97761,-1.29958,-1.56317,-0.99734,2.03652,-0.37488
+0.99750,0.97703,-1.30030,-1.56236,-0.99762,2.03695,-0.37531
+0.99819,0.97645,-1.30101,-1.56156,-0.99790,2.03738,-0.37573
+0.99889,0.97589,-1.30171,-1.56077,-0.99817,2.03781,-0.37615
+0.99958,0.97534,-1.30239,-1.55999,-0.99844,2.03822,-0.37656
+1.00028,0.97480,-1.30307,-1.55923,-0.99871,2.03863,-0.37696
+1.00097,0.97427,-1.30373,-1.55848,-0.99897,2.03903,-0.37735
+1.00167,0.97374,-1.30438,-1.55773,-0.99924,2.03943,-0.37774
+1.00236,0.97323,-1.30503,-1.55701,-0.99949,2.03982,-0.37813
+1.00306,0.97272,-1.30566,-1.55629,-0.99975,2.04020,-0.37850
+1.00375,0.97222,-1.30628,-1.55558,-1.00000,2.04058,-0.37887
+1.00445,0.97173,-1.30688,-1.55488,-1.00025,2.04095,-0.37924
+1.00514,0.97125,-1.30748,-1.55420,-1.00050,2.04131,-0.37960
+1.00583,0.97078,-1.30807,-1.55352,-1.00075,2.04167,-0.37995
+1.00653,0.97031,-1.30865,-1.55286,-1.00099,2.04202,-0.38030
+1.00722,0.96985,-1.30922,-1.55221,-1.00123,2.04237,-0.38064
+1.00792,0.96940,-1.30978,-1.55156,-1.00146,2.04271,-0.38098
+1.00861,0.96896,-1.31033,-1.55093,-1.00170,2.04304,-0.38131
+1.00931,0.96852,-1.31087,-1.55031,-1.00193,2.04337,-0.38163
+1.01000,0.96809,-1.31140,-1.54969,-1.00216,2.04369,-0.38195
+1.01070,0.96767,-1.31192,-1.54909,-1.00238,2.04401,-0.38227
+1.01139,0.96726,-1.31244,-1.54849,-1.00260,2.04433,-0.38258
+1.01209,0.96685,-1.31294,-1.54790,-1.00282,2.04463,-0.38288
+1.01278,0.96645,-1.31344,-1.54733,-1.00304,2.04494,-0.38318
+1.01348,0.96606,-1.31393,-1.54676,-1.00326,2.04524,-0.38348
+1.01417,0.96567,-1.31441,-1.54620,-1.00347,2.04553,-0.38377
+1.01487,0.96529,-1.31488,-1.54565,-1.00368,2.04582,-0.38406
+1.01556,0.96491,-1.31534,-1.54511,-1.00388,2.04610,-0.38434
+1.01625,0.96454,-1.31580,-1.54457,-1.00409,2.04638,-0.38462
+1.01695,0.96418,-1.31625,-1.54405,-1.00429,2.04666,-0.38489
+1.01764,0.96382,-1.31669,-1.54353,-1.00449,2.04693,-0.38516
+1.01834,0.96347,-1.31712,-1.54302,-1.00469,2.04719,-0.38542
+1.01903,0.96313,-1.31755,-1.54252,-1.00488,2.04745,-0.38568
+1.01973,0.96279,-1.31796,-1.54203,-1.00507,2.04771,-0.38594
+1.02042,0.96246,-1.31838,-1.54154,-1.00526,2.04796,-0.38619
+1.02112,0.96213,-1.31878,-1.54107,-1.00545,2.04821,-0.38644
+1.02181,0.96180,-1.31918,-1.54059,-1.00564,2.04846,-0.38668
+1.02251,0.96149,-1.31957,-1.54013,-1.00582,2.04870,-0.38693
+1.02320,0.96118,-1.31995,-1.53968,-1.00600,2.04893,-0.38716
+1.02390,0.96084,-1.32036,-1.53921,-1.00618,2.04919,-0.38741
+1.02459,0.95999,-1.32138,-1.53813,-1.00652,2.04982,-0.38804
+1.02528,0.95916,-1.32238,-1.53707,-1.00686,2.05044,-0.38866
+1.02598,0.95834,-1.32337,-1.53603,-1.00719,2.05105,-0.38927
+1.02667,0.95753,-1.32434,-1.53500,-1.00752,2.05165,-0.38988
+1.02737,0.95674,-1.32529,-1.53398,-1.00785,2.05224,-0.39047
+1.02806,0.95596,-1.32622,-1.53298,-1.00818,2.05282,-0.39105
+1.02876,0.95519,-1.32714,-1.53200,-1.00850,2.05339,-0.39162
+1.02945,0.95444,-1.32805,-1.53103,-1.00882,2.05395,-0.39218
+1.03015,0.95370,-1.32894,-1.53008,-1.00913,2.05450,-0.39273
+1.03084,0.95298,-1.32981,-1.52914,-1.00944,2.05504,-0.39327
+1.03154,0.95227,-1.33067,-1.52821,-1.00975,2.05557,-0.39381
+1.03223,0.95156,-1.33152,-1.52730,-1.01006,2.05610,-0.39433
+1.03293,0.95088,-1.33235,-1.52640,-1.01037,2.05661,-0.39485
+1.03362,0.95020,-1.33316,-1.52552,-1.01067,2.05711,-0.39536
+1.03432,0.94954,-1.33397,-1.52464,-1.01096,2.05761,-0.39586
+1.03501,0.94888,-1.33476,-1.52379,-1.01126,2.05809,-0.39635
+1.03570,0.94824,-1.33553,-1.52294,-1.01155,2.05857,-0.39683
+1.03640,0.94761,-1.33630,-1.52211,-1.01184,2.05904,-0.39731
+1.03709,0.94699,-1.33705,-1.52129,-1.01212,2.05951,-0.39777
+1.03779,0.94638,-1.33778,-1.52048,-1.01241,2.05996,-0.39823
+1.03848,0.94579,-1.33851,-1.51969,-1.01269,2.06041,-0.39868
+1.03918,0.94520,-1.33922,-1.51890,-1.01296,2.06085,-0.39913
+1.03987,0.94462,-1.33992,-1.51813,-1.01324,2.06128,-0.39957
+1.04057,0.94405,-1.34061,-1.51737,-1.01351,2.06170,-0.40000
+1.04126,0.94349,-1.34129,-1.51662,-1.01377,2.06212,-0.40042
+1.04196,0.94294,-1.34195,-1.51589,-1.01404,2.06253,-0.40084
+1.04265,0.94240,-1.34261,-1.51516,-1.01430,2.06293,-0.40125
+1.04335,0.94187,-1.34325,-1.51445,-1.01456,2.06333,-0.40165
+1.04404,0.94135,-1.34388,-1.51374,-1.01482,2.06372,-0.40205
+1.04473,0.94084,-1.34450,-1.51305,-1.01507,2.06410,-0.40244
+1.04543,0.94034,-1.34511,-1.51237,-1.01532,2.06448,-0.40282
+1.04612,0.93984,-1.34571,-1.51170,-1.01557,2.06485,-0.40320
+1.04682,0.93936,-1.34630,-1.51104,-1.01581,2.06521,-0.40357
+1.04751,0.93888,-1.34689,-1.51038,-1.01606,2.06557,-0.40393
+1.04821,0.93841,-1.34746,-1.50974,-1.01630,2.06592,-0.40429
+1.04890,0.93795,-1.34802,-1.50911,-1.01653,2.06627,-0.40465
+1.04960,0.93749,-1.34857,-1.50849,-1.01677,2.06661,-0.40499
+1.05029,0.93705,-1.34911,-1.50788,-1.01700,2.06694,-0.40534
+1.05099,0.93661,-1.34964,-1.50727,-1.01723,2.06727,-0.40567
+1.05168,0.93618,-1.35017,-1.50668,-1.01745,2.06759,-0.40600
+1.05238,0.93575,-1.35068,-1.50609,-1.01768,2.06791,-0.40633
+1.05307,0.93533,-1.35119,-1.50552,-1.01790,2.06822,-0.40665
+1.05376,0.93492,-1.35169,-1.50495,-1.01812,2.06853,-0.40696
+1.05446,0.93452,-1.35218,-1.50439,-1.01833,2.06883,-0.40727
+1.05515,0.93413,-1.35266,-1.50384,-1.01855,2.06913,-0.40758
+1.05585,0.93374,-1.35313,-1.50330,-1.01876,2.06942,-0.40788
+1.05654,0.93335,-1.35360,-1.50277,-1.01897,2.06971,-0.40817
+1.05724,0.93298,-1.35406,-1.50224,-1.01917,2.06999,-0.40846
+1.05793,0.93261,-1.35451,-1.50173,-1.01937,2.07027,-0.40875
+1.05863,0.93224,-1.35495,-1.50122,-1.01958,2.07054,-0.40903
+1.05932,0.93188,-1.35538,-1.50072,-1.01977,2.07081,-0.40931
+1.06002,0.93153,-1.35581,-1.50022,-1.01997,2.07108,-0.40958
+1.06071,0.93118,-1.35623,-1.49974,-1.02016,2.07134,-0.40985
+1.06141,0.93084,-1.35664,-1.49926,-1.02036,2.07159,-0.41011
+1.06210,0.93051,-1.35705,-1.49879,-1.02054,2.07184,-0.41037
+1.06280,0.93018,-1.35745,-1.49833,-1.02073,2.07209,-0.41063
+1.06349,0.92986,-1.35784,-1.49787,-1.02092,2.07233,-0.41088
+1.06418,0.92954,-1.35823,-1.49742,-1.02110,2.07257,-0.41112
+1.06488,0.92923,-1.35861,-1.49698,-1.02128,2.07281,-0.41137
+1.06557,0.92895,-1.35894,-1.49660,-1.02143,2.07301,-0.41158
+1.06627,0.92838,-1.35962,-1.49586,-1.02169,2.07343,-0.41201
+1.06696,0.92783,-1.36029,-1.49514,-1.02194,2.07385,-0.41244
+1.06766,0.92728,-1.36095,-1.49443,-1.02220,2.07425,-0.41286
+1.06835,0.92674,-1.36160,-1.49373,-1.02245,2.07465,-0.41328
+1.06905,0.92621,-1.36223,-1.49304,-1.02269,2.07505,-0.41368
+1.06974,0.92569,-1.36286,-1.49236,-1.02294,2.07543,-0.41408
+1.07044,0.92517,-1.36348,-1.49169,-1.02318,2.07581,-0.41448
+1.07113,0.92467,-1.36408,-1.49103,-1.02342,2.07619,-0.41486
+1.07183,0.92418,-1.36468,-1.49038,-1.02366,2.07656,-0.41525
+1.07252,0.92369,-1.36526,-1.48974,-1.02389,2.07692,-0.41562
+1.07321,0.92321,-1.36584,-1.48911,-1.02412,2.07727,-0.41599
+1.07391,0.92274,-1.36640,-1.48849,-1.02435,2.07762,-0.41635
+1.07460,0.92228,-1.36696,-1.48787,-1.02458,2.07796,-0.41671
+1.07530,0.92183,-1.36750,-1.48727,-1.02480,2.07830,-0.41706
+1.07599,0.92138,-1.36804,-1.48668,-1.02502,2.07863,-0.41740
+1.07669,0.92094,-1.36857,-1.48609,-1.02524,2.07896,-0.41774
+1.07738,0.92051,-1.36909,-1.48552,-1.02546,2.07928,-0.41808
+1.07808,0.92009,-1.36960,-1.48495,-1.02567,2.07959,-0.41841
+1.07877,0.91967,-1.37010,-1.48440,-1.02589,2.07990,-0.41873
+1.07947,0.91926,-1.37059,-1.48385,-1.02609,2.08021,-0.41905
+1.08016,0.91886,-1.37108,-1.48331,-1.02630,2.08050,-0.41936
+1.08086,0.91847,-1.37156,-1.48277,-1.02651,2.08080,-0.41967
+1.08155,0.91808,-1.37202,-1.48225,-1.02671,2.08109,-0.41997
+1.08225,0.91769,-1.37248,-1.48173,-1.02691,2.08137,-0.42027
+1.08294,0.91732,-1.37294,-1.48122,-1.02711,2.08165,-0.42056
+1.08363,0.91695,-1.37338,-1.48072,-1.02730,2.08193,-0.42085
+1.08433,0.91659,-1.37382,-1.48023,-1.02749,2.08220,-0.42113
+1.08502,0.91623,-1.37425,-1.47974,-1.02769,2.08246,-0.42141
+1.08572,0.91588,-1.37467,-1.47927,-1.02787,2.08273,-0.42168
+1.08641,0.91553,-1.37509,-1.47879,-1.02806,2.08298,-0.42195
+1.08711,0.91519,-1.37550,-1.47833,-1.02825,2.08324,-0.42222
+1.08780,0.91486,-1.37590,-1.47787,-1.02843,2.08348,-0.42248
+1.08850,0.91453,-1.37630,-1.47742,-1.02861,2.08373,-0.42274
+1.08919,0.91421,-1.37669,-1.47698,-1.02878,2.08397,-0.42299
+1.08989,0.91389,-1.37707,-1.47655,-1.02896,2.08421,-0.42324
+1.09058,0.91358,-1.37744,-1.47612,-1.02913,2.08444,-0.42348
+1.09128,0.91341,-1.37764,-1.47590,-1.02921,2.08456,-0.42361
+1.09197,0.91264,-1.37852,-1.47502,-1.02950,2.08513,-0.42421
+1.09266,0.91188,-1.37939,-1.47415,-1.02979,2.08569,-0.42480
+1.09336,0.91113,-1.38024,-1.47330,-1.03007,2.08624,-0.42537
+1.09405,0.91040,-1.38107,-1.47246,-1.03035,2.08677,-0.42594
+1.09475,0.90968,-1.38189,-1.47163,-1.03063,2.08730,-0.42650
+1.09544,0.90897,-1.38270,-1.47081,-1.03091,2.08782,-0.42704
+1.09614,0.90828,-1.38349,-1.47000,-1.03118,2.08833,-0.42758
+1.09683,0.90760,-1.38427,-1.46921,-1.03145,2.08883,-0.42811
+1.09753,0.90693,-1.38504,-1.46843,-1.03172,2.08932,-0.42863
+1.09822,0.90627,-1.38579,-1.46766,-1.03198,2.08981,-0.42914
+1.09892,0.90562,-1.38653,-1.46690,-1.03225,2.09028,-0.42965
+1.09961,0.90499,-1.38726,-1.46615,-1.03251,2.09075,-0.43014
+1.10031,0.90436,-1.38798,-1.46541,-1.03277,2.09121,-0.43063
+1.10100,0.90375,-1.38868,-1.46469,-1.03302,2.09166,-0.43110
+1.10169,0.90315,-1.38938,-1.46397,-1.03327,2.09210,-0.43157
+1.10239,0.90255,-1.39006,-1.46327,-1.03353,2.09253,-0.43204
+1.10308,0.90197,-1.39072,-1.46257,-1.03377,2.09296,-0.43249
+1.10378,0.90140,-1.39138,-1.46189,-1.03402,2.09338,-0.43294
+1.10447,0.90084,-1.39203,-1.46122,-1.03426,2.09379,-0.43338
+1.10517,0.90029,-1.39267,-1.46055,-1.03450,2.09420,-0.43381
+1.10586,0.89975,-1.39329,-1.45990,-1.03474,2.09460,-0.43424
+1.10656,0.89922,-1.39390,-1.45925,-1.03498,2.09499,-0.43465
+1.10725,0.89869,-1.39451,-1.45862,-1.03521,2.09537,-0.43506
+1.10795,0.89818,-1.39510,-1.45799,-1.03544,2.09575,-0.43547
+1.10864,0.89767,-1.39569,-1.45738,-1.03567,2.09612,-0.43587
+1.10934,0.89718,-1.39626,-1.45677,-1.03590,2.09649,-0.43626
+1.11003,0.89669,-1.39683,-1.45617,-1.03612,2.09685,-0.43664
+1.11073,0.89621,-1.39738,-1.45558,-1.03634,2.09720,-0.43702
+1.11142,0.89574,-1.39793,-1.45500,-1.03656,2.09755,-0.43739
+1.11211,0.89528,-1.39846,-1.45443,-1.03678,2.09789,-0.43776
+1.11281,0.89482,-1.39899,-1.45387,-1.03699,2.09822,-0.43812
+1.11350,0.89438,-1.39951,-1.45332,-1.03721,2.09855,-0.43847
+1.11420,0.89394,-1.40002,-1.45277,-1.03742,2.09887,-0.43882
+1.11489,0.89351,-1.40052,-1.45223,-1.03762,2.09919,-0.43916
+1.11559,0.89308,-1.40101,-1.45170,-1.03783,2.09950,-0.43950
+1.11628,0.89266,-1.40149,-1.45118,-1.03803,2.09981,-0.43983
+1.11698,0.89226,-1.40197,-1.45067,-1.03823,2.10011,-0.44015
+1.11767,0.89185,-1.40244,-1.45016,-1.03843,2.10041,-0.44047
+1.11837,0.89146,-1.40290,-1.44966,-1.03863,2.10070,-0.44079
+1.11906,0.89107,-1.40335,-1.44917,-1.03882,2.10099,-0.44110
+1.11976,0.89069,-1.40380,-1.44869,-1.03901,2.10127,-0.44140
+1.12045,0.89031,-1.40423,-1.44821,-1.03920,2.10155,-0.44170
+1.12114,0.88994,-1.40466,-1.44774,-1.03939,2.10182,-0.44200
+1.12184,0.88958,-1.40509,-1.44728,-1.03958,2.10209,-0.44228
+1.12253,0.88922,-1.40550,-1.44683,-1.03976,2.10235,-0.44257
+1.12323,0.88887,-1.40591,-1.44638,-1.03994,2.10261,-0.44285
+1.12392,0.88853,-1.40631,-1.44594,-1.04012,2.10287,-0.44313
+1.12462,0.88819,-1.40671,-1.44550,-1.04030,2.10312,-0.44340
+1.12531,0.88785,-1.40709,-1.44507,-1.04047,2.10336,-0.44366
+1.12601,0.88753,-1.40748,-1.44465,-1.04064,2.10360,-0.44393
+1.12670,0.88721,-1.40785,-1.44424,-1.04082,2.10384,-0.44418
+1.12740,0.88689,-1.40822,-1.44383,-1.04098,2.10408,-0.44444
+1.12809,0.88672,-1.40842,-1.44361,-1.04107,2.10420,-0.44458
+1.12879,0.88625,-1.40895,-1.44306,-1.04128,2.10454,-0.44495
+1.12948,0.88579,-1.40947,-1.44253,-1.04148,2.10488,-0.44531
+1.13018,0.88534,-1.40998,-1.44200,-1.04168,2.10521,-0.44567
+1.13087,0.88490,-1.41048,-1.44148,-1.04187,2.10553,-0.44602
+1.13156,0.88446,-1.41097,-1.44096,-1.04207,2.10585,-0.44637
+1.13226,0.88404,-1.41146,-1.44046,-1.04226,2.10617,-0.44671
+1.13295,0.88362,-1.41194,-1.43996,-1.04245,2.10647,-0.44705
+1.13365,0.88320,-1.41241,-1.43947,-1.04264,2.10678,-0.44738
+1.13434,0.88280,-1.41287,-1.43899,-1.04283,2.10708,-0.44770
+1.13504,0.88240,-1.41332,-1.43851,-1.04301,2.10737,-0.44802
+1.13573,0.88201,-1.41377,-1.43804,-1.04319,2.10766,-0.44833
+1.13643,0.88162,-1.41420,-1.43758,-1.04337,2.10794,-0.44864
+1.13712,0.88124,-1.41463,-1.43712,-1.04355,2.10822,-0.44895
+1.13782,0.88087,-1.41506,-1.43667,-1.04373,2.10849,-0.44924
+1.13851,0.88050,-1.41547,-1.43623,-1.04390,2.10876,-0.44954
+1.13921,0.88014,-1.41588,-1.43580,-1.04408,2.10902,-0.44983
+1.13990,0.87979,-1.41629,-1.43537,-1.04425,2.10928,-0.45011
+1.14059,0.87944,-1.41668,-1.43495,-1.04442,2.10954,-0.45039
+1.14129,0.87910,-1.41707,-1.43453,-1.04458,2.10979,-0.45066
+1.14198,0.87877,-1.41745,-1.43412,-1.04475,2.11003,-0.45093
+1.14268,0.87844,-1.41783,-1.43372,-1.04491,2.11028,-0.45120
+1.14337,0.87811,-1.41820,-1.43332,-1.04507,2.11051,-0.45146
+1.14407,0.87780,-1.41856,-1.43293,-1.04523,2.11075,-0.45172
+1.14476,0.87775,-1.41862,-1.43288,-1.04525,2.11078,-0.45176
+1.14546,0.87726,-1.41915,-1.43235,-1.04544,2.11114,-0.45215
+1.14615,0.87678,-1.41967,-1.43184,-1.04563,2.11149,-0.45253
+1.14685,0.87631,-1.42018,-1.43133,-1.04582,2.11183,-0.45291
+1.14754,0.87585,-1.42069,-1.43082,-1.04600,2.11217,-0.45328
+1.14824,0.87539,-1.42118,-1.43033,-1.04619,2.11250,-0.45364
+1.14893,0.87495,-1.42167,-1.42984,-1.04637,2.11282,-0.45400
+1.14962,0.87451,-1.42215,-1.42936,-1.04655,2.11314,-0.45435
+1.15032,0.87408,-1.42262,-1.42889,-1.04673,2.11345,-0.45470
+1.15101,0.87366,-1.42309,-1.42842,-1.04690,2.11376,-0.45504
+1.15171,0.87324,-1.42354,-1.42796,-1.04708,2.11407,-0.45537
+1.15240,0.87283,-1.42399,-1.42751,-1.04725,2.11436,-0.45570
+1.15310,0.87243,-1.42443,-1.42707,-1.04742,2.11466,-0.45602
+1.15379,0.87204,-1.42486,-1.42663,-1.04759,2.11495,-0.45634
+1.15449,0.87165,-1.42529,-1.42620,-1.04776,2.11523,-0.45665
+1.15518,0.87127,-1.42571,-1.42577,-1.04792,2.11551,-0.45696
+1.15588,0.87089,-1.42612,-1.42535,-1.04809,2.11578,-0.45726
+1.15657,0.87053,-1.42652,-1.42494,-1.04825,2.11605,-0.45756
+1.15727,0.87017,-1.42692,-1.42453,-1.04841,2.11631,-0.45785
+1.15796,0.86981,-1.42731,-1.42413,-1.04857,2.11657,-0.45814
+1.15866,0.86946,-1.42770,-1.42373,-1.04873,2.11683,-0.45842
+1.15935,0.86912,-1.42808,-1.42334,-1.04888,2.11708,-0.45870
+1.16004,0.86878,-1.42845,-1.42296,-1.04903,2.11732,-0.45898
+1.16074,0.86845,-1.42881,-1.42258,-1.04919,2.11757,-0.45924
+1.16143,0.86812,-1.42917,-1.42221,-1.04934,2.11780,-0.45951
+1.16213,0.86797,-1.42933,-1.42205,-1.04940,2.11791,-0.45963
+1.16282,0.86745,-1.42985,-1.42159,-1.04956,2.11829,-0.46005
+1.16352,0.86694,-1.43036,-1.42113,-1.04972,2.11866,-0.46046
+1.16421,0.86644,-1.43086,-1.42068,-1.04988,2.11902,-0.46086
+1.16491,0.86595,-1.43135,-1.42023,-1.05004,2.11938,-0.46126
+1.16560,0.86546,-1.43183,-1.41979,-1.05020,2.11973,-0.46165
+1.16630,0.86499,-1.43231,-1.41936,-1.05035,2.12008,-0.46204
+1.16699,0.86452,-1.43277,-1.41894,-1.05051,2.12042,-0.46242
+1.16769,0.86406,-1.43323,-1.41852,-1.05066,2.12075,-0.46279
+1.16838,0.86361,-1.43368,-1.41810,-1.05081,2.12108,-0.46315
+1.16907,0.86317,-1.43413,-1.41769,-1.05096,2.12140,-0.46351
+1.16977,0.86273,-1.43456,-1.41729,-1.05111,2.12171,-0.46387
+1.17046,0.86230,-1.43499,-1.41690,-1.05126,2.12202,-0.46421
+1.17116,0.86188,-1.43541,-1.41651,-1.05141,2.12233,-0.46455
+1.17185,0.86147,-1.43583,-1.41612,-1.05155,2.12263,-0.46489
+1.17255,0.86106,-1.43624,-1.41574,-1.05169,2.12292,-0.46522
+1.17324,0.86066,-1.43664,-1.41537,-1.05184,2.12321,-0.46554
+1.17394,0.86027,-1.43703,-1.41500,-1.05198,2.12350,-0.46586
+1.17463,0.85989,-1.43742,-1.41464,-1.05212,2.12378,-0.46618
+1.17533,0.85951,-1.43780,-1.41428,-1.05225,2.12405,-0.46649
+1.17602,0.85914,-1.43817,-1.41393,-1.05239,2.12432,-0.46679
+1.17672,0.85877,-1.43854,-1.41358,-1.05253,2.12459,-0.46709
+1.17741,0.85841,-1.43890,-1.41324,-1.05266,2.12485,-0.46738
+1.17811,0.85806,-1.43926,-1.41290,-1.05279,2.12511,-0.46767
+1.17880,0.85771,-1.43961,-1.41257,-1.05292,2.12536,-0.46795
+1.17949,0.85737,-1.43995,-1.41224,-1.05305,2.12561,-0.46823
+1.18019,0.85723,-1.44009,-1.41211,-1.05311,2.12571,-0.46835
+1.18088,0.85680,-1.44050,-1.41175,-1.05324,2.12602,-0.46870
+1.18158,0.85638,-1.44091,-1.41140,-1.05337,2.12633,-0.46904
+1.18227,0.85596,-1.44130,-1.41105,-1.05350,2.12663,-0.46938
+1.18297,0.85555,-1.44169,-1.41071,-1.05363,2.12692,-0.46971
+1.18366,0.85515,-1.44207,-1.41037,-1.05375,2.12721,-0.47004
+1.18436,0.85476,-1.44245,-1.41003,-1.05388,2.12749,-0.47036
+1.18505,0.85438,-1.44282,-1.40971,-1.05400,2.12777,-0.47068
+1.18575,0.85400,-1.44318,-1.40938,-1.05413,2.12805,-0.47099
+1.18644,0.85362,-1.44354,-1.40906,-1.05425,2.12832,-0.47129
+1.18714,0.85326,-1.44389,-1.40875,-1.05437,2.12858,-0.47159
+1.18783,0.85290,-1.44424,-1.40844,-1.05449,2.12884,-0.47189
+1.18852,0.85254,-1.44458,-1.40813,-1.05461,2.12910,-0.47218
+1.18922,0.85220,-1.44491,-1.40783,-1.05473,2.12935,-0.47246
+1.18991,0.85205,-1.44505,-1.40771,-1.05477,2.12946,-0.47259
+1.19061,0.85160,-1.44543,-1.40743,-1.05487,2.12979,-0.47296
+1.19130,0.85115,-1.44580,-1.40716,-1.05496,2.13011,-0.47332
+1.19200,0.85071,-1.44616,-1.40688,-1.05506,2.13042,-0.47368
+1.19269,0.85028,-1.44652,-1.40661,-1.05516,2.13073,-0.47403
+1.19339,0.84986,-1.44688,-1.40635,-1.05525,2.13104,-0.47438
+1.19408,0.84944,-1.44723,-1.40609,-1.05534,2.13134,-0.47472
+1.19478,0.84904,-1.44757,-1.40583,-1.05544,2.13163,-0.47505
+1.19547,0.84864,-1.44791,-1.40557,-1.05553,2.13192,-0.47538
+1.19617,0.84824,-1.44824,-1.40532,-1.05562,2.13220,-0.47571
+1.19686,0.84786,-1.44856,-1.40507,-1.05571,2.13248,-0.47602
+1.19755,0.84748,-1.44888,-1.40483,-1.05580,2.13276,-0.47634
+1.19825,0.84710,-1.44920,-1.40459,-1.05589,2.13303,-0.47664
+1.19894,0.84674,-1.44950,-1.40435,-1.05598,2.13329,-0.47695
+1.19964,0.84647,-1.44972,-1.40419,-1.05604,2.13348,-0.47716
+1.20033,0.84602,-1.45006,-1.40398,-1.05611,2.13381,-0.47754
+1.20103,0.84557,-1.45040,-1.40378,-1.05618,2.13413,-0.47791
+1.20172,0.84512,-1.45073,-1.40357,-1.05624,2.13445,-0.47827
+1.20242,0.84469,-1.45105,-1.40337,-1.05631,2.13476,-0.47863
+1.20311,0.84426,-1.45137,-1.40318,-1.05638,2.13507,-0.47898
+1.20381,0.84384,-1.45168,-1.40298,-1.05644,2.13537,-0.47933
+1.20450,0.84343,-1.45199,-1.40279,-1.05651,2.13567,-0.47967
+1.20520,0.84303,-1.45229,-1.40260,-1.05657,2.13596,-0.48000
+1.20589,0.84263,-1.45259,-1.40241,-1.05664,2.13624,-0.48033
+1.20659,0.84224,-1.45288,-1.40222,-1.05670,2.13652,-0.48065
+1.20728,0.84186,-1.45317,-1.40204,-1.05677,2.13680,-0.48097
+1.20797,0.84148,-1.45345,-1.40186,-1.05683,2.13707,-0.48128
+1.20867,0.84124,-1.45362,-1.40177,-1.05686,2.13724,-0.48148
+1.20936,0.84071,-1.45392,-1.40170,-1.05687,2.13762,-0.48191
+1.21006,0.84019,-1.45422,-1.40163,-1.05687,2.13799,-0.48234
+1.21075,0.83968,-1.45451,-1.40156,-1.05688,2.13836,-0.48276
+1.21145,0.83918,-1.45480,-1.40149,-1.05688,2.13872,-0.48317
+1.21214,0.83869,-1.45508,-1.40142,-1.05689,2.13907,-0.48358
+1.21284,0.83821,-1.45535,-1.40135,-1.05690,2.13942,-0.48398
+1.21353,0.83773,-1.45562,-1.40128,-1.05690,2.13976,-0.48437
+1.21423,0.83727,-1.45589,-1.40122,-1.05691,2.14009,-0.48476
+1.21492,0.83681,-1.45615,-1.40115,-1.05692,2.14042,-0.48514
+1.21562,0.83636,-1.45641,-1.40108,-1.05693,2.14074,-0.48551
+1.21631,0.83592,-1.45666,-1.40102,-1.05694,2.14106,-0.48588
+1.21700,0.83548,-1.45691,-1.40095,-1.05695,2.14137,-0.48624
+1.21770,0.83505,-1.45716,-1.40088,-1.05696,2.14167,-0.48659
+1.21839,0.83464,-1.45740,-1.40082,-1.05698,2.14197,-0.48694
+1.21909,0.83422,-1.45763,-1.40075,-1.05699,2.14227,-0.48728
+1.21978,0.83382,-1.45787,-1.40069,-1.05700,2.14256,-0.48762
+1.22048,0.83342,-1.45810,-1.40063,-1.05702,2.14284,-0.48795
+1.22117,0.83303,-1.45832,-1.40056,-1.05703,2.14312,-0.48827
+1.22187,0.83269,-1.45850,-1.40054,-1.05703,2.14337,-0.48856
+1.22256,0.83194,-1.45874,-1.40079,-1.05688,2.14390,-0.48918
+1.22326,0.83120,-1.45898,-1.40102,-1.05674,2.14442,-0.48979
+1.22395,0.83048,-1.45922,-1.40125,-1.05660,2.14494,-0.49039
+1.22465,0.82977,-1.45945,-1.40148,-1.05646,2.14544,-0.49098
+1.22534,0.82907,-1.45967,-1.40170,-1.05633,2.14594,-0.49156
+1.22604,0.82838,-1.45990,-1.40192,-1.05620,2.14642,-0.49213
+1.22673,0.82771,-1.46012,-1.40213,-1.05607,2.14690,-0.49269
+1.22742,0.82705,-1.46034,-1.40233,-1.05595,2.14737,-0.49324
+1.22812,0.82640,-1.46055,-1.40254,-1.05583,2.14783,-0.49378
+1.22881,0.82576,-1.46076,-1.40274,-1.05571,2.14828,-0.49431
+1.22951,0.82514,-1.46096,-1.40293,-1.05559,2.14872,-0.49483
+1.23020,0.82452,-1.46117,-1.40312,-1.05548,2.14916,-0.49534
+1.23090,0.82392,-1.46137,-1.40330,-1.05537,2.14959,-0.49584
+1.23159,0.82333,-1.46156,-1.40349,-1.05526,2.15001,-0.49634
+1.23229,0.82274,-1.46176,-1.40366,-1.05516,2.15042,-0.49683
+1.23298,0.82217,-1.46195,-1.40384,-1.05506,2.15083,-0.49730
+1.23368,0.82161,-1.46213,-1.40401,-1.05496,2.15122,-0.49777
+1.23437,0.82106,-1.46232,-1.40417,-1.05486,2.15162,-0.49824
+1.23507,0.82052,-1.46250,-1.40433,-1.05477,2.15200,-0.49869
+1.23576,0.81999,-1.46267,-1.40449,-1.05468,2.15238,-0.49913
+1.23645,0.81947,-1.46285,-1.40465,-1.05459,2.15275,-0.49957
+1.23715,0.81895,-1.46302,-1.40480,-1.05450,2.15311,-0.50000
+1.23784,0.81845,-1.46319,-1.40495,-1.05442,2.15347,-0.50043
+1.23854,0.81796,-1.46335,-1.40510,-1.05433,2.15382,-0.50084
+1.23923,0.81747,-1.46352,-1.40524,-1.05425,2.15416,-0.50125
+1.23993,0.81699,-1.46368,-1.40538,-1.05417,2.15450,-0.50165
+1.24062,0.81653,-1.46384,-1.40551,-1.05410,2.15483,-0.50205
+1.24132,0.81607,-1.46399,-1.40565,-1.05402,2.15516,-0.50243
+1.24201,0.81561,-1.46414,-1.40578,-1.05395,2.15548,-0.50282
+1.24271,0.81517,-1.46429,-1.40591,-1.05388,2.15580,-0.50319
+1.24340,0.81474,-1.46444,-1.40603,-1.05381,2.15611,-0.50356
+1.24410,0.81431,-1.46458,-1.40615,-1.05374,2.15641,-0.50392
+1.24479,0.81389,-1.46473,-1.40627,-1.05367,2.15671,-0.50427
+1.24548,0.81348,-1.46487,-1.40639,-1.05361,2.15700,-0.50462
+1.24618,0.81307,-1.46500,-1.40651,-1.05354,2.15729,-0.50497
+1.24687,0.81267,-1.46514,-1.40662,-1.05348,2.15757,-0.50530
+1.24757,0.81228,-1.46527,-1.40673,-1.05342,2.15785,-0.50564
+1.24826,0.81190,-1.46540,-1.40683,-1.05336,2.15812,-0.50596
+1.24896,0.81152,-1.46553,-1.40694,-1.05331,2.15839,-0.50628
+1.24965,0.81136,-1.46558,-1.40700,-1.05328,2.15851,-0.50642
+1.25035,0.81085,-1.46565,-1.40732,-1.05312,2.15887,-0.50685
+1.25104,0.81035,-1.46573,-1.40763,-1.05297,2.15922,-0.50727
+1.25174,0.80986,-1.46581,-1.40793,-1.05282,2.15957,-0.50769
+1.25243,0.80938,-1.46588,-1.40823,-1.05268,2.15991,-0.50810
+1.25313,0.80890,-1.46595,-1.40852,-1.05253,2.16024,-0.50850
+1.25382,0.80844,-1.46602,-1.40881,-1.05240,2.16057,-0.50889
+1.25452,0.80798,-1.46609,-1.40909,-1.05226,2.16089,-0.50928
+1.25521,0.80754,-1.46616,-1.40937,-1.05213,2.16121,-0.50966
+1.25590,0.80710,-1.46623,-1.40964,-1.05199,2.16152,-0.51003
+1.25660,0.80666,-1.46630,-1.40991,-1.05187,2.16182,-0.51040
+1.25729,0.80624,-1.46636,-1.41017,-1.05174,2.16212,-0.51076
+1.25799,0.80582,-1.46643,-1.41042,-1.05162,2.16242,-0.51112
+1.25868,0.80542,-1.46649,-1.41067,-1.05150,2.16271,-0.51146
+1.25938,0.80501,-1.46655,-1.41092,-1.05138,2.16299,-0.51181
+1.26007,0.80462,-1.46662,-1.41116,-1.05126,2.16327,-0.51214
+1.26077,0.80423,-1.46668,-1.41140,-1.05115,2.16355,-0.51247
+1.26146,0.80385,-1.46674,-1.41163,-1.05104,2.16381,-0.51280
+1.26216,0.80348,-1.46679,-1.41186,-1.05093,2.16408,-0.51312
+1.26285,0.80311,-1.46685,-1.41209,-1.05082,2.16434,-0.51343
+1.26355,0.80275,-1.46691,-1.41231,-1.05072,2.16459,-0.51374
+1.26424,0.80238,-1.46695,-1.41255,-1.05060,2.16486,-0.51406
+1.26493,0.80187,-1.46692,-1.41307,-1.05036,2.16521,-0.51449
+1.26563,0.80137,-1.46688,-1.41359,-1.05013,2.16557,-0.51492
+1.26632,0.80088,-1.46685,-1.41409,-1.04990,2.16591,-0.51534
+1.26702,0.80040,-1.46681,-1.41458,-1.04967,2.16625,-0.51575
+1.26771,0.79992,-1.46678,-1.41507,-1.04945,2.16658,-0.51615
+1.26841,0.79946,-1.46674,-1.41554,-1.04923,2.16691,-0.51655
+1.26910,0.79900,-1.46671,-1.41601,-1.04902,2.16723,-0.51694
+1.26980,0.79855,-1.46668,-1.41647,-1.04881,2.16755,-0.51733
+1.27049,0.79811,-1.46665,-1.41692,-1.04860,2.16786,-0.51770
+1.27119,0.79768,-1.46662,-1.41736,-1.04840,2.16816,-0.51807
+1.27188,0.79725,-1.46659,-1.41779,-1.04820,2.16846,-0.51844
+1.27258,0.79684,-1.46656,-1.41822,-1.04800,2.16875,-0.51880
+1.27327,0.79643,-1.46653,-1.41864,-1.04781,2.16904,-0.51915
+1.27396,0.79603,-1.46650,-1.41905,-1.04762,2.16932,-0.51949
+1.27466,0.79563,-1.46647,-1.41945,-1.04744,2.16960,-0.51983
+1.27535,0.79524,-1.46644,-1.41985,-1.04726,2.16987,-0.52016
+1.27605,0.79486,-1.46641,-1.42024,-1.04708,2.17014,-0.52049
+1.27674,0.79449,-1.46639,-1.42062,-1.04691,2.17040,-0.52081
+1.27744,0.79412,-1.46636,-1.42100,-1.04673,2.17066,-0.52113
+1.27813,0.79376,-1.46633,-1.42137,-1.04657,2.17092,-0.52144
+1.27883,0.79341,-1.46631,-1.42173,-1.04640,2.17117,-0.52174
+1.27952,0.79306,-1.46628,-1.42209,-1.04624,2.17141,-0.52204
+1.28022,0.79272,-1.46626,-1.42244,-1.04608,2.17165,-0.52234
+1.28091,0.79238,-1.46623,-1.42278,-1.04592,2.17189,-0.52263
+1.28161,0.79205,-1.46621,-1.42312,-1.04577,2.17212,-0.52291
+1.28230,0.79173,-1.46619,-1.42345,-1.04562,2.17235,-0.52319
+1.28300,0.79144,-1.46613,-1.42380,-1.04546,2.17255,-0.52343
+1.28369,0.79082,-1.46579,-1.42496,-1.04496,2.17298,-0.52397
+1.28438,0.79021,-1.46545,-1.42610,-1.04446,2.17340,-0.52449
+1.28508,0.78962,-1.46511,-1.42722,-1.04397,2.17382,-0.52501
+1.28577,0.78903,-1.46478,-1.42832,-1.04349,2.17423,-0.52551
+1.28647,0.78845,-1.46446,-1.42941,-1.04301,2.17463,-0.52601
+1.28716,0.78789,-1.46415,-1.43047,-1.04255,2.17502,-0.52650
+1.28786,0.78733,-1.46383,-1.43151,-1.04209,2.17541,-0.52698
+1.28855,0.78678,-1.46353,-1.43254,-1.04164,2.17579,-0.52745
+1.28925,0.78625,-1.46323,-1.43355,-1.04120,2.17616,-0.52792
+1.28994,0.78572,-1.46293,-1.43454,-1.04077,2.17653,-0.52837
+1.29064,0.78521,-1.46265,-1.43551,-1.04034,2.17689,-0.52882
+1.29133,0.78470,-1.46236,-1.43647,-1.03992,2.17724,-0.52926
+1.29203,0.78420,-1.46208,-1.43741,-1.03951,2.17759,-0.52969
+1.29272,0.78371,-1.46181,-1.43833,-1.03910,2.17793,-0.53011
+1.29341,0.78323,-1.46154,-1.43924,-1.03871,2.17826,-0.53053
+1.29411,0.78276,-1.46127,-1.44013,-1.03832,2.17859,-0.53093
+1.29480,0.78230,-1.46101,-1.44100,-1.03793,2.17891,-0.53134
+1.29550,0.78184,-1.46076,-1.44186,-1.03755,2.17923,-0.53173
+1.29619,0.78140,-1.46051,-1.44271,-1.03718,2.17954,-0.53212
+1.29689,0.78096,-1.46026,-1.44354,-1.03681,2.17984,-0.53250
+1.29758,0.78053,-1.46002,-1.44436,-1.03646,2.18014,-0.53287
+1.29828,0.78011,-1.45978,-1.44516,-1.03610,2.18043,-0.53324
+1.29897,0.77969,-1.45955,-1.44595,-1.03575,2.18072,-0.53360
+1.29967,0.77929,-1.45932,-1.44672,-1.03541,2.18100,-0.53395
+1.30036,0.77889,-1.45909,-1.44748,-1.03508,2.18128,-0.53430
+1.30106,0.77849,-1.45887,-1.44823,-1.03475,2.18156,-0.53464
+1.30175,0.77811,-1.45865,-1.44896,-1.03442,2.18182,-0.53497
+1.30245,0.77773,-1.45844,-1.44969,-1.03410,2.18209,-0.53530
+1.30314,0.77736,-1.45823,-1.45039,-1.03379,2.18235,-0.53563
+1.30383,0.77699,-1.45802,-1.45109,-1.03348,2.18260,-0.53594
+1.30453,0.77664,-1.45782,-1.45178,-1.03318,2.18285,-0.53626
+1.30522,0.77629,-1.45762,-1.45245,-1.03288,2.18309,-0.53656
+1.30592,0.77594,-1.45742,-1.45311,-1.03259,2.18333,-0.53686
+1.30661,0.77560,-1.45723,-1.45376,-1.03230,2.18357,-0.53716
+1.30731,0.77527,-1.45704,-1.45440,-1.03202,2.18380,-0.53745
+1.30800,0.77494,-1.45685,-1.45503,-1.03174,2.18403,-0.53773
+1.30870,0.77462,-1.45667,-1.45564,-1.03146,2.18425,-0.53801
+1.30939,0.77431,-1.45649,-1.45625,-1.03119,2.18447,-0.53828
+1.31009,0.77400,-1.45631,-1.45685,-1.03093,2.18468,-0.53855
+1.31078,0.77370,-1.45614,-1.45743,-1.03067,2.18490,-0.53882
+1.31148,0.77340,-1.45597,-1.45801,-1.03041,2.18510,-0.53908
+1.31217,0.77311,-1.45580,-1.45857,-1.03016,2.18531,-0.53933
+1.31286,0.77282,-1.45564,-1.45913,-1.02991,2.18551,-0.53958
+1.31356,0.77254,-1.45547,-1.45967,-1.02967,2.18570,-0.53983
+1.31425,0.77226,-1.45531,-1.46021,-1.02943,2.18589,-0.54007
+1.31495,0.77199,-1.45516,-1.46074,-1.02920,2.18608,-0.54031
+1.31564,0.77173,-1.45500,-1.46126,-1.02897,2.18627,-0.54054
+1.31634,0.77147,-1.45485,-1.46177,-1.02874,2.18645,-0.54077
+1.31703,0.77121,-1.45470,-1.46227,-1.02851,2.18663,-0.54099
+1.31773,0.77096,-1.45455,-1.46276,-1.02829,2.18681,-0.54121
+1.31842,0.77071,-1.45441,-1.46324,-1.02808,2.18698,-0.54143
+1.31912,0.77047,-1.45427,-1.46372,-1.02787,2.18715,-0.54164
+1.31981,0.77023,-1.45413,-1.46418,-1.02766,2.18731,-0.54185
+1.32051,0.77020,-1.45410,-1.46425,-1.02763,2.18733,-0.54187
+1.32120,0.76995,-1.45385,-1.46492,-1.02734,2.18751,-0.54210
+1.32189,0.76969,-1.45361,-1.46558,-1.02706,2.18769,-0.54232
+1.32259,0.76944,-1.45337,-1.46622,-1.02678,2.18786,-0.54254
+1.32328,0.76920,-1.45313,-1.46686,-1.02650,2.18803,-0.54275
+1.32398,0.76896,-1.45290,-1.46748,-1.02623,2.18820,-0.54296
+1.32467,0.76873,-1.45267,-1.46809,-1.02597,2.18836,-0.54317
+1.32537,0.76850,-1.45244,-1.46870,-1.02570,2.18852,-0.54337
+1.32606,0.76827,-1.45222,-1.46929,-1.02545,2.18868,-0.54357
+1.32676,0.76805,-1.45200,-1.46987,-1.02520,2.18883,-0.54376
+1.32745,0.76783,-1.45179,-1.47044,-1.02495,2.18898,-0.54395
+1.32815,0.76762,-1.45158,-1.47100,-1.02470,2.18913,-0.54414
+1.32884,0.76741,-1.45137,-1.47156,-1.02446,2.18928,-0.54432
+1.32954,0.76721,-1.45117,-1.47210,-1.02422,2.18942,-0.54450
+1.33023,0.76700,-1.45097,-1.47264,-1.02399,2.18956,-0.54468
+1.33093,0.76681,-1.45077,-1.47316,-1.02376,2.18970,-0.54485
+1.33162,0.76661,-1.45058,-1.47368,-1.02354,2.18983,-0.54502
+1.33231,0.76657,-1.45050,-1.47385,-1.02347,2.18986,-0.54506
+1.33301,0.76612,-1.44975,-1.47554,-1.02276,2.19017,-0.54546
+1.33370,0.76569,-1.44901,-1.47720,-1.02207,2.19047,-0.54584
+1.33440,0.76526,-1.44828,-1.47884,-1.02139,2.19076,-0.54622
+1.33509,0.76484,-1.44756,-1.48044,-1.02072,2.19105,-0.54659
+1.33579,0.76443,-1.44686,-1.48202,-1.02007,2.19133,-0.54695
+1.33648,0.76402,-1.44617,-1.48357,-1.01942,2.19161,-0.54731
+1.33718,0.76363,-1.44549,-1.48510,-1.01879,2.19188,-0.54766
+1.33787,0.76324,-1.44482,-1.48659,-1.01816,2.19215,-0.54800
+1.33857,0.76286,-1.44417,-1.48806,-1.01755,2.19241,-0.54834
+1.33926,0.76248,-1.44353,-1.48951,-1.01694,2.19267,-0.54867
+1.33996,0.76211,-1.44289,-1.49093,-1.01635,2.19292,-0.54899
+1.34065,0.76175,-1.44227,-1.49233,-1.01576,2.19316,-0.54931
+1.34134,0.76140,-1.44166,-1.49370,-1.01518,2.19341,-0.54963
+1.34204,0.76105,-1.44106,-1.49505,-1.01462,2.19365,-0.54993
+1.34273,0.76071,-1.44047,-1.49637,-1.01406,2.19388,-0.55023
+1.34343,0.76037,-1.43989,-1.49767,-1.01351,2.19411,-0.55053
+1.34412,0.76005,-1.43933,-1.49895,-1.01297,2.19433,-0.55082
+1.34482,0.75972,-1.43877,-1.50021,-1.01244,2.19456,-0.55110
+1.34551,0.75941,-1.43822,-1.50145,-1.01192,2.19477,-0.55138
+1.34621,0.75910,-1.43768,-1.50266,-1.01141,2.19499,-0.55166
+1.34690,0.75879,-1.43715,-1.50385,-1.01090,2.19519,-0.55192
+1.34760,0.75849,-1.43663,-1.50503,-1.01041,2.19540,-0.55219
+1.34829,0.75820,-1.43612,-1.50618,-1.00992,2.19560,-0.55245
+1.34899,0.75791,-1.43561,-1.50731,-1.00944,2.19580,-0.55270
+1.34968,0.75763,-1.43512,-1.50842,-1.00896,2.19599,-0.55295
+1.35038,0.75735,-1.43464,-1.50952,-1.00850,2.19618,-0.55319
+1.35107,0.75708,-1.43416,-1.51059,-1.00804,2.19637,-0.55343
+1.35176,0.75682,-1.43369,-1.51165,-1.00759,2.19655,-0.55367
+1.35246,0.75656,-1.43323,-1.51269,-1.00715,2.19673,-0.55390
+1.35315,0.75630,-1.43278,-1.51371,-1.00671,2.19690,-0.55412
+1.35385,0.75605,-1.43233,-1.51471,-1.00628,2.19708,-0.55434
+1.35454,0.75580,-1.43189,-1.51570,-1.00586,2.19725,-0.55456
+1.35524,0.75556,-1.43147,-1.51667,-1.00545,2.19741,-0.55477
+1.35593,0.75532,-1.43104,-1.51762,-1.00504,2.19757,-0.55498
+1.35663,0.75509,-1.43063,-1.51855,-1.00463,2.19773,-0.55519
+1.35732,0.75486,-1.43022,-1.51947,-1.00424,2.19789,-0.55539
+1.35802,0.75464,-1.42982,-1.52038,-1.00385,2.19805,-0.55559
+1.35871,0.75442,-1.42943,-1.52127,-1.00347,2.19820,-0.55578
+1.35941,0.75420,-1.42904,-1.52214,-1.00309,2.19834,-0.55597
+1.36010,0.75399,-1.42866,-1.52300,-1.00272,2.19849,-0.55615
+1.36079,0.75378,-1.42829,-1.52384,-1.00236,2.19863,-0.55634
+1.36149,0.75358,-1.42792,-1.52467,-1.00200,2.19877,-0.55652
+1.36218,0.75338,-1.42756,-1.52549,-1.00164,2.19891,-0.55669
+1.36288,0.75318,-1.42720,-1.52629,-1.00130,2.19904,-0.55686
+1.36357,0.75299,-1.42686,-1.52707,-1.00096,2.19917,-0.55703
+1.36427,0.75280,-1.42651,-1.52785,-1.00062,2.19930,-0.55720
+1.36496,0.75262,-1.42618,-1.52861,-1.00029,2.19943,-0.55736
+1.36566,0.75244,-1.42585,-1.52936,-0.99996,2.19955,-0.55752
+1.36635,0.75226,-1.42552,-1.53009,-0.99964,2.19968,-0.55767
+1.36705,0.75209,-1.42520,-1.53081,-0.99933,2.19980,-0.55783
+1.36774,0.75192,-1.42489,-1.53152,-0.99902,2.19991,-0.55798
+1.36844,0.75175,-1.42458,-1.53222,-0.99871,2.20003,-0.55812
+1.36913,0.75159,-1.42428,-1.53291,-0.99841,2.20014,-0.55827
+1.36982,0.75142,-1.42398,-1.53358,-0.99812,2.20025,-0.55841
+1.37052,0.75127,-1.42368,-1.53424,-0.99782,2.20036,-0.55855
+1.37121,0.75111,-1.42340,-1.53490,-0.99754,2.20047,-0.55868
+1.37191,0.75096,-1.42311,-1.53554,-0.99726,2.20057,-0.55881
+1.37260,0.75081,-1.42283,-1.53616,-0.99698,2.20067,-0.55895
+1.37330,0.75067,-1.42256,-1.53678,-0.99671,2.20077,-0.55907
+1.37399,0.75052,-1.42229,-1.53739,-0.99644,2.20087,-0.55920
+1.37469,0.75038,-1.42203,-1.53799,-0.99617,2.20097,-0.55932
+1.37538,0.75024,-1.42177,-1.53858,-0.99591,2.20106,-0.55944
+1.37608,0.75011,-1.42151,-1.53915,-0.99566,2.20116,-0.55956
+1.37677,0.74998,-1.42126,-1.53972,-0.99541,2.20125,-0.55967
+1.37747,0.74985,-1.42101,-1.54028,-0.99516,2.20134,-0.55979
+1.37816,0.74977,-1.42085,-1.54065,-0.99500,2.20139,-0.55986
+1.37886,0.74959,-1.42042,-1.54155,-0.99462,2.20151,-0.56001
+1.37955,0.74942,-1.41999,-1.54245,-0.99424,2.20163,-0.56017
+1.38024,0.74925,-1.41957,-1.54332,-0.99387,2.20175,-0.56031
+1.38094,0.74909,-1.41916,-1.54418,-0.99351,2.20186,-0.56046
+1.38163,0.74893,-1.41875,-1.54503,-0.99315,2.20197,-0.56060
+1.38233,0.74877,-1.41836,-1.54586,-0.99279,2.20208,-0.56074
+1.38302,0.74861,-1.41797,-1.54668,-0.99245,2.20218,-0.56088
+1.38372,0.74846,-1.41758,-1.54748,-0.99211,2.20229,-0.56101
+1.38441,0.74831,-1.41720,-1.54827,-0.99177,2.20239,-0.56114
+1.38511,0.74816,-1.41683,-1.54905,-0.99144,2.20249,-0.56127
+1.38580,0.74802,-1.41647,-1.54981,-0.99111,2.20259,-0.56140
+1.38650,0.74788,-1.41611,-1.55056,-0.99079,2.20268,-0.56152
+1.38719,0.74774,-1.41576,-1.55130,-0.99048,2.20278,-0.56164
+1.38789,0.74761,-1.41541,-1.55202,-0.99017,2.20287,-0.56176
+1.38858,0.74748,-1.41507,-1.55274,-0.98986,2.20296,-0.56188
+1.38927,0.74735,-1.41474,-1.55344,-0.98956,2.20305,-0.56199
+1.38997,0.74722,-1.41441,-1.55413,-0.98926,2.20313,-0.56210
+1.39066,0.74710,-1.41409,-1.55480,-0.98897,2.20322,-0.56221
+1.39136,0.74697,-1.41377,-1.55547,-0.98869,2.20330,-0.56232
+1.39205,0.74685,-1.41346,-1.55612,-0.98840,2.20338,-0.56242
+1.39275,0.74674,-1.41315,-1.55676,-0.98813,2.20346,-0.56252
+1.39344,0.74662,-1.41285,-1.55740,-0.98785,2.20354,-0.56262
+1.39414,0.74651,-1.41255,-1.55802,-0.98759,2.20362,-0.56272
+1.39483,0.74640,-1.41226,-1.55863,-0.98732,2.20370,-0.56282
+1.39553,0.74629,-1.41198,-1.55923,-0.98706,2.20377,-0.56291
+1.39622,0.74619,-1.41169,-1.55982,-0.98680,2.20384,-0.56300
+1.39692,0.74608,-1.41142,-1.56040,-0.98655,2.20391,-0.56309
+1.39761,0.74598,-1.41115,-1.56097,-0.98630,2.20398,-0.56318
+1.39831,0.74590,-1.41089,-1.56149,-0.98608,2.20404,-0.56326
+1.39900,0.74574,-1.41021,-1.56278,-0.98556,2.20415,-0.56340
+1.39969,0.74558,-1.40953,-1.56405,-0.98505,2.20425,-0.56354
+1.40039,0.74543,-1.40887,-1.56530,-0.98454,2.20436,-0.56368
+1.40108,0.74528,-1.40823,-1.56653,-0.98404,2.20446,-0.56381
+1.40178,0.74513,-1.40759,-1.56773,-0.98356,2.20456,-0.56394
+1.40247,0.74499,-1.40696,-1.56892,-0.98308,2.20466,-0.56407
+1.40317,0.74485,-1.40635,-1.57008,-0.98260,2.20475,-0.56419
+1.40386,0.74471,-1.40574,-1.57123,-0.98214,2.20484,-0.56431
+1.40456,0.74458,-1.40515,-1.57235,-0.98168,2.20494,-0.56443
+1.40525,0.74445,-1.40457,-1.57345,-0.98123,2.20502,-0.56455
+1.40595,0.74432,-1.40399,-1.57454,-0.98078,2.20511,-0.56466
+1.40664,0.74419,-1.40343,-1.57561,-0.98035,2.20520,-0.56477
+1.40734,0.74407,-1.40287,-1.57666,-0.97992,2.20528,-0.56488
+1.40803,0.74395,-1.40233,-1.57769,-0.97949,2.20536,-0.56499
+1.40872,0.74383,-1.40179,-1.57870,-0.97908,2.20544,-0.56509
+1.40942,0.74371,-1.40127,-1.57970,-0.97867,2.20552,-0.56519
+1.41011,0.74360,-1.40075,-1.58068,-0.97826,2.20560,-0.56529
+1.41081,0.74349,-1.40024,-1.58164,-0.97787,2.20567,-0.56539
+1.41150,0.74338,-1.39975,-1.58259,-0.97748,2.20574,-0.56549
+1.41220,0.74328,-1.39926,-1.58352,-0.97709,2.20582,-0.56558
+1.41289,0.74317,-1.39877,-1.58443,-0.97671,2.20589,-0.56567
+1.41359,0.74307,-1.39830,-1.58533,-0.97634,2.20595,-0.56576
+1.41428,0.74297,-1.39783,-1.58621,-0.97597,2.20602,-0.56584
+1.41498,0.74288,-1.39738,-1.58708,-0.97561,2.20609,-0.56593
+1.41567,0.74278,-1.39693,-1.58793,-0.97526,2.20615,-0.56601
+1.41637,0.74269,-1.39649,-1.58877,-0.97491,2.20621,-0.56609
+1.41706,0.74260,-1.39605,-1.58959,-0.97456,2.20627,-0.56617
+1.41775,0.74251,-1.39563,-1.59040,-0.97422,2.20633,-0.56625
+1.41845,0.74242,-1.39521,-1.59120,-0.97389,2.20639,-0.56632
+1.41914,0.74234,-1.39479,-1.59198,-0.97356,2.20645,-0.56639
+1.41984,0.74226,-1.39439,-1.59275,-0.97324,2.20651,-0.56647
+1.42053,0.74218,-1.39399,-1.59351,-0.97292,2.20656,-0.56654
+1.42123,0.74210,-1.39360,-1.59425,-0.97261,2.20661,-0.56660
+1.42192,0.74202,-1.39322,-1.59498,-0.97230,2.20667,-0.56667
+1.42262,0.74194,-1.39284,-1.59570,-0.97200,2.20672,-0.56673
+1.42331,0.74187,-1.39247,-1.59640,-0.97170,2.20677,-0.56680
+1.42401,0.74180,-1.39210,-1.59710,-0.97140,2.20682,-0.56686
+1.42470,0.74173,-1.39175,-1.59778,-0.97111,2.20686,-0.56692
+1.42540,0.74166,-1.39139,-1.59845,-0.97083,2.20691,-0.56698
+1.42609,0.74159,-1.39105,-1.59911,-0.97055,2.20696,-0.56704
+1.42679,0.74153,-1.39071,-1.59975,-0.97027,2.20700,-0.56709
+1.42748,0.74146,-1.39037,-1.60039,-0.97000,2.20705,-0.56715
+1.42817,0.74140,-1.39004,-1.60102,-0.96973,2.20709,-0.56720
+1.42887,0.74134,-1.38972,-1.60163,-0.96947,2.20713,-0.56725
+1.42956,0.74128,-1.38940,-1.60224,-0.96921,2.20717,-0.56730
+1.43026,0.74122,-1.38909,-1.60283,-0.96896,2.20721,-0.56735
+1.43095,0.74116,-1.38879,-1.60341,-0.96870,2.20725,-0.56740
+1.43165,0.74111,-1.38848,-1.60399,-0.96846,2.20729,-0.56745
+1.43234,0.74108,-1.38821,-1.60447,-0.96826,2.20730,-0.56747
+1.43304,0.74117,-1.38731,-1.60585,-0.96774,2.20724,-0.56739
+1.43373,0.74126,-1.38642,-1.60721,-0.96722,2.20719,-0.56731
+1.43443,0.74134,-1.38555,-1.60855,-0.96672,2.20713,-0.56723
+1.43512,0.74143,-1.38469,-1.60986,-0.96622,2.20707,-0.56716
+1.43582,0.74152,-1.38385,-1.61115,-0.96573,2.20701,-0.56708
+1.43651,0.74160,-1.38302,-1.61242,-0.96525,2.20695,-0.56700
+1.43720,0.74169,-1.38221,-1.61367,-0.96477,2.20690,-0.56693
+1.43790,0.74177,-1.38141,-1.61489,-0.96430,2.20684,-0.56685
+1.43859,0.74186,-1.38062,-1.61610,-0.96384,2.20678,-0.56677
+1.43929,0.74194,-1.37985,-1.61728,-0.96339,2.20673,-0.56670
+1.43998,0.74202,-1.37909,-1.61844,-0.96294,2.20667,-0.56662
+1.44068,0.74210,-1.37835,-1.61959,-0.96250,2.20661,-0.56655
+1.44137,0.74219,-1.37761,-1.62071,-0.96207,2.20656,-0.56647
+1.44207,0.74227,-1.37689,-1.62182,-0.96164,2.20650,-0.56640
+1.44276,0.74235,-1.37619,-1.62290,-0.96122,2.20645,-0.56633
+1.44346,0.74243,-1.37549,-1.62397,-0.96080,2.20640,-0.56625
+1.44415,0.74251,-1.37481,-1.62502,-0.96040,2.20634,-0.56618
+1.44485,0.74258,-1.37414,-1.62605,-0.96000,2.20629,-0.56611
+1.44554,0.74266,-1.37347,-1.62707,-0.95960,2.20624,-0.56603
+1.44624,0.74274,-1.37283,-1.62806,-0.95921,2.20618,-0.56596
+1.44693,0.74282,-1.37219,-1.62904,-0.95883,2.20613,-0.56589
+1.44762,0.74289,-1.37156,-1.63001,-0.95845,2.20608,-0.56582
+1.44832,0.74297,-1.37095,-1.63095,-0.95808,2.20603,-0.56575
+1.44901,0.74304,-1.37034,-1.63188,-0.95771,2.20598,-0.56568
+1.44971,0.74312,-1.36975,-1.63280,-0.95735,2.20593,-0.56561
+1.45040,0.74319,-1.36916,-1.63370,-0.95699,2.20587,-0.56554
+1.45110,0.74326,-1.36859,-1.63458,-0.95664,2.20582,-0.56547
+1.45179,0.74334,-1.36802,-1.63545,-0.95630,2.20577,-0.56540
+1.45249,0.74341,-1.36747,-1.63630,-0.95596,2.20573,-0.56534
+1.45318,0.74348,-1.36692,-1.63714,-0.95563,2.20568,-0.56527
+1.45388,0.74355,-1.36639,-1.63797,-0.95530,2.20563,-0.56520
+1.45457,0.74362,-1.36586,-1.63878,-0.95497,2.20558,-0.56514
+1.45527,0.74369,-1.36534,-1.63957,-0.95465,2.20553,-0.56507
+1.45596,0.74376,-1.36483,-1.64036,-0.95434,2.20548,-0.56501
+1.45665,0.74383,-1.36433,-1.64113,-0.95403,2.20544,-0.56494
+1.45735,0.74390,-1.36384,-1.64189,-0.95372,2.20539,-0.56488
+1.45804,0.74396,-1.36336,-1.64263,-0.95342,2.20535,-0.56481
+1.45874,0.74403,-1.36289,-1.64336,-0.95313,2.20530,-0.56475
+1.45943,0.74410,-1.36242,-1.64408,-0.95283,2.20525,-0.56469
+1.46013,0.74416,-1.36196,-1.64479,-0.95255,2.20521,-0.56462
+1.46082,0.74423,-1.36151,-1.64548,-0.95226,2.20516,-0.56456
+1.46152,0.74429,-1.36107,-1.64617,-0.95198,2.20512,-0.56450
+1.46221,0.74435,-1.36064,-1.64684,-0.95171,2.20508,-0.56444
+1.46291,0.74442,-1.36021,-1.64750,-0.95144,2.20503,-0.56438
+1.46360,0.74448,-1.35979,-1.64815,-0.95117,2.20499,-0.56432
+1.46430,0.74454,-1.35938,-1.64879,-0.95091,2.20495,-0.56426
+1.46499,0.74460,-1.35897,-1.64942,-0.95065,2.20490,-0.56420
+1.46568,0.74466,-1.35857,-1.65003,-0.95040,2.20486,-0.56414
+1.46638,0.74472,-1.35818,-1.65064,-0.95015,2.20482,-0.56409
+1.46707,0.74478,-1.35779,-1.65123,-0.94990,2.20478,-0.56403
+1.46777,0.74484,-1.35742,-1.65182,-0.94966,2.20474,-0.56397
+1.46846,0.74490,-1.35704,-1.65240,-0.94942,2.20470,-0.56392
+1.46916,0.74496,-1.35668,-1.65296,-0.94918,2.20466,-0.56386
+1.46985,0.74502,-1.35632,-1.65352,-0.94895,2.20462,-0.56380
+1.47055,0.74505,-1.35622,-1.65366,-0.94890,2.20460,-0.56378
+1.47124,0.74535,-1.35519,-1.65500,-0.94842,2.20439,-0.56350
+1.47194,0.74566,-1.35419,-1.65632,-0.94795,2.20418,-0.56323
+1.47263,0.74596,-1.35320,-1.65762,-0.94749,2.20398,-0.56296
+1.47333,0.74625,-1.35223,-1.65890,-0.94703,2.20378,-0.56270
+1.47402,0.74654,-1.35128,-1.66015,-0.94658,2.20358,-0.56244
+1.47472,0.74683,-1.35034,-1.66138,-0.94613,2.20339,-0.56218
+1.47541,0.74711,-1.34942,-1.66259,-0.94570,2.20320,-0.56192
+1.47610,0.74740,-1.34851,-1.66379,-0.94527,2.20300,-0.56167
+1.47680,0.74767,-1.34762,-1.66496,-0.94484,2.20282,-0.56142
+1.47749,0.74795,-1.34675,-1.66611,-0.94442,2.20263,-0.56118
+1.47819,0.74822,-1.34589,-1.66724,-0.94401,2.20245,-0.56093
+1.47888,0.74848,-1.34504,-1.66835,-0.94361,2.20226,-0.56069
+1.47958,0.74875,-1.34421,-1.66944,-0.94321,2.20208,-0.56046
+1.48027,0.74901,-1.34340,-1.67052,-0.94281,2.20191,-0.56022
+1.48097,0.74927,-1.34260,-1.67157,-0.94242,2.20173,-0.55999
+1.48166,0.74952,-1.34181,-1.67261,-0.94204,2.20156,-0.55976
+1.48236,0.74977,-1.34104,-1.67363,-0.94167,2.20139,-0.55954
+1.48305,0.75002,-1.34027,-1.67463,-0.94129,2.20122,-0.55931
+1.48375,0.75026,-1.33953,-1.67562,-0.94093,2.20105,-0.55909
+1.48444,0.75050,-1.33879,-1.67658,-0.94057,2.20089,-0.55888
+1.48513,0.75074,-1.33807,-1.67754,-0.94021,2.20072,-0.55866
+1.48583,0.75097,-1.33736,-1.67847,-0.93986,2.20056,-0.55845
+1.48652,0.75121,-1.33666,-1.67939,-0.93952,2.20040,-0.55824
+1.48722,0.75143,-1.33598,-1.68030,-0.93918,2.20025,-0.55803
+1.48791,0.75166,-1.33530,-1.68118,-0.93884,2.20009,-0.55783
+1.48861,0.75188,-1.33464,-1.68206,-0.93851,2.19994,-0.55763
+1.48930,0.75210,-1.33399,-1.68292,-0.93819,2.19979,-0.55743
+1.49000,0.75232,-1.33335,-1.68376,-0.93787,2.19964,-0.55723
+1.49069,0.75253,-1.33272,-1.68459,-0.93755,2.19949,-0.55704
+1.49139,0.75274,-1.33211,-1.68541,-0.93724,2.19935,-0.55685
+1.49208,0.75295,-1.33150,-1.68621,-0.93694,2.19920,-0.55666
+1.49278,0.75316,-1.33090,-1.68700,-0.93663,2.19906,-0.55647
+1.49347,0.75336,-1.33032,-1.68777,-0.93634,2.19892,-0.55628
+1.49417,0.75356,-1.32974,-1.68853,-0.93604,2.19878,-0.55610
+1.49486,0.75376,-1.32918,-1.68928,-0.93575,2.19865,-0.55592
+1.49555,0.75395,-1.32862,-1.69002,-0.93547,2.19851,-0.55575
+1.49625,0.75415,-1.32807,-1.69074,-0.93519,2.19838,-0.55557
+1.49694,0.75434,-1.32754,-1.69146,-0.93491,2.19825,-0.55540
+1.49764,0.75452,-1.32701,-1.69216,-0.93464,2.19812,-0.55523
+1.49833,0.75471,-1.32649,-1.69284,-0.93437,2.19799,-0.55506
+1.49903,0.75489,-1.32598,-1.69352,-0.93411,2.19786,-0.55489
+1.49972,0.75507,-1.32548,-1.69418,-0.93384,2.19774,-0.55473
+1.50042,0.75525,-1.32499,-1.69484,-0.93359,2.19762,-0.55456
+1.50111,0.75543,-1.32450,-1.69548,-0.93333,2.19750,-0.55440
+1.50181,0.75560,-1.32403,-1.69611,-0.93308,2.19738,-0.55425
+1.50250,0.75577,-1.32356,-1.69673,-0.93284,2.19726,-0.55409
+1.50320,0.75594,-1.32310,-1.69734,-0.93259,2.19714,-0.55394
+1.50389,0.75610,-1.32265,-1.69794,-0.93236,2.19703,-0.55378
+1.50458,0.75627,-1.32221,-1.69853,-0.93212,2.19691,-0.55363
+1.50528,0.75643,-1.32177,-1.69911,-0.93189,2.19680,-0.55349
+1.50597,0.75659,-1.32134,-1.69968,-0.93166,2.19669,-0.55334
+1.50667,0.75675,-1.32092,-1.70024,-0.93143,2.19658,-0.55320
+1.50736,0.75690,-1.32051,-1.70080,-0.93121,2.19647,-0.55305
+1.50806,0.75705,-1.32010,-1.70134,-0.93099,2.19637,-0.55291
+1.50875,0.75720,-1.31970,-1.70187,-0.93078,2.19626,-0.55278
+1.50945,0.75735,-1.31931,-1.70239,-0.93056,2.19616,-0.55264
+1.51014,0.75750,-1.31892,-1.70290,-0.93036,2.19605,-0.55250
+1.51084,0.75784,-1.31812,-1.70386,-0.93002,2.19582,-0.55220
+1.51153,0.75818,-1.31734,-1.70481,-0.92969,2.19559,-0.55190
+1.51223,0.75851,-1.31657,-1.70574,-0.92936,2.19537,-0.55161
+1.51292,0.75883,-1.31582,-1.70665,-0.92904,2.19514,-0.55132
+1.51361,0.75915,-1.31507,-1.70755,-0.92872,2.19492,-0.55104
+1.51431,0.75947,-1.31434,-1.70843,-0.92841,2.19471,-0.55075
+1.51500,0.75978,-1.31362,-1.70930,-0.92810,2.19449,-0.55048
+1.51570,0.76008,-1.31292,-1.71015,-0.92779,2.19428,-0.55020
+1.51639,0.76039,-1.31222,-1.71099,-0.92749,2.19407,-0.54993
+1.51709,0.76069,-1.31154,-1.71181,-0.92720,2.19387,-0.54966
+1.51778,0.76098,-1.31087,-1.71262,-0.92690,2.19366,-0.54940
+1.51848,0.76127,-1.31022,-1.71341,-0.92662,2.19346,-0.54914
+1.51917,0.76156,-1.30957,-1.71420,-0.92633,2.19326,-0.54888
+1.51987,0.76184,-1.30893,-1.71497,-0.92605,2.19307,-0.54863
+1.52056,0.76212,-1.30831,-1.71572,-0.92578,2.19288,-0.54838
+1.52126,0.76240,-1.30770,-1.71647,-0.92550,2.19269,-0.54814
+1.52195,0.76267,-1.30709,-1.71720,-0.92524,2.19250,-0.54789
+1.52265,0.76294,-1.30650,-1.71791,-0.92497,2.19231,-0.54765
+1.52334,0.76320,-1.30592,-1.71862,-0.92471,2.19213,-0.54742
+1.52403,0.76346,-1.30535,-1.71931,-0.92445,2.19195,-0.54718
+1.52473,0.76372,-1.30478,-1.72000,-0.92420,2.19177,-0.54695
+1.52542,0.76397,-1.30423,-1.72067,-0.92395,2.19160,-0.54673
+1.52612,0.76422,-1.30369,-1.72133,-0.92370,2.19142,-0.54650
+1.52681,0.76447,-1.30315,-1.72198,-0.92346,2.19125,-0.54628
+1.52751,0.76471,-1.30263,-1.72261,-0.92322,2.19108,-0.54606
+1.52820,0.76495,-1.30211,-1.72324,-0.92299,2.19092,-0.54585
+1.52890,0.76519,-1.30161,-1.72386,-0.92275,2.19075,-0.54564
+1.52959,0.76542,-1.30111,-1.72446,-0.92252,2.19059,-0.54543
+1.53029,0.76565,-1.30062,-1.72506,-0.92230,2.19043,-0.54522
+1.53098,0.76588,-1.30014,-1.72564,-0.92207,2.19027,-0.54502
+1.53168,0.76610,-1.29967,-1.72622,-0.92185,2.19012,-0.54482
+1.53237,0.76632,-1.29920,-1.72678,-0.92164,2.18997,-0.54462
+1.53306,0.76654,-1.29875,-1.72734,-0.92142,2.18981,-0.54443
+1.53376,0.76675,-1.29830,-1.72789,-0.92121,2.18967,-0.54423
+1.53445,0.76696,-1.29786,-1.72842,-0.92100,2.18952,-0.54404
+1.53515,0.76717,-1.29742,-1.72895,-0.92080,2.18937,-0.54386
+1.53584,0.76737,-1.29700,-1.72947,-0.92060,2.18923,-0.54367
+1.53654,0.76758,-1.29658,-1.72998,-0.92040,2.18909,-0.54349
+1.53723,0.76778,-1.29617,-1.73049,-0.92020,2.18895,-0.54331
+1.53793,0.76797,-1.29577,-1.73098,-0.92001,2.18881,-0.54313
+1.53862,0.76817,-1.29537,-1.73147,-0.91982,2.18868,-0.54296
+1.53932,0.76820,-1.29531,-1.73154,-0.91979,2.18865,-0.54293
+1.54001,0.76852,-1.29469,-1.73223,-0.91955,2.18843,-0.54265
+1.54071,0.76884,-1.29409,-1.73291,-0.91931,2.18821,-0.54237
+1.54140,0.76915,-1.29350,-1.73358,-0.91907,2.18800,-0.54209
+1.54210,0.76946,-1.29292,-1.73424,-0.91884,2.18779,-0.54182
+1.54279,0.76976,-1.29235,-1.73489,-0.91861,2.18758,-0.54155
+1.54348,0.77006,-1.29179,-1.73552,-0.91838,2.18737,-0.54129
+1.54418,0.77035,-1.29124,-1.73615,-0.91816,2.18716,-0.54103
+1.54487,0.77064,-1.29069,-1.73676,-0.91794,2.18696,-0.54077
+1.54557,0.77093,-1.29016,-1.73737,-0.91772,2.18676,-0.54051
+1.54626,0.77121,-1.28964,-1.73796,-0.91751,2.18657,-0.54026
+1.54696,0.77149,-1.28912,-1.73854,-0.91729,2.18637,-0.54002
+1.54765,0.77176,-1.28862,-1.73912,-0.91708,2.18618,-0.53977
+1.54835,0.77203,-1.28812,-1.73968,-0.91688,2.18600,-0.53953
+1.54904,0.77230,-1.28763,-1.74024,-0.91668,2.18581,-0.53930
+1.54974,0.77256,-1.28715,-1.74079,-0.91648,2.18563,-0.53907
+1.55043,0.77282,-1.28668,-1.74132,-0.91628,2.18545,-0.53884
+1.55113,0.77308,-1.28622,-1.74185,-0.91608,2.18527,-0.53861
+1.55182,0.77333,-1.28576,-1.74237,-0.91589,2.18509,-0.53839
+1.55251,0.77358,-1.28531,-1.74288,-0.91570,2.18492,-0.53816
+1.55321,0.77382,-1.28487,-1.74338,-0.91551,2.18475,-0.53795
+1.55390,0.77406,-1.28444,-1.74387,-0.91533,2.18458,-0.53773
+1.55460,0.77430,-1.28402,-1.74436,-0.91515,2.18442,-0.53752
+1.55529,0.77453,-1.28360,-1.74484,-0.91497,2.18425,-0.53731
+1.55599,0.77476,-1.28319,-1.74531,-0.91479,2.18409,-0.53711
+1.55668,0.77499,-1.28279,-1.74577,-0.91461,2.18393,-0.53691
+1.55738,0.77511,-1.28260,-1.74595,-0.91455,2.18385,-0.53680
+1.55807,0.77585,-1.28158,-1.74687,-0.91430,2.18334,-0.53616
+1.55877,0.77658,-1.28057,-1.74777,-0.91404,2.18284,-0.53552
+1.55946,0.77731,-1.27958,-1.74865,-0.91380,2.18234,-0.53490
+1.56016,0.77802,-1.27860,-1.74953,-0.91355,2.18185,-0.53428
+1.56085,0.77872,-1.27765,-1.75038,-0.91331,2.18136,-0.53367
+1.56154,0.77941,-1.27671,-1.75122,-0.91306,2.18089,-0.53307
+1.56224,0.78009,-1.27578,-1.75205,-0.91283,2.18042,-0.53248
+1.56293,0.78076,-1.27488,-1.75286,-0.91259,2.17995,-0.53190
+1.56363,0.78143,-1.27398,-1.75366,-0.91236,2.17949,-0.53132
+1.56432,0.78208,-1.27311,-1.75445,-0.91213,2.17904,-0.53076
+1.56502,0.78273,-1.27225,-1.75522,-0.91191,2.17859,-0.53020
+1.56571,0.78336,-1.27140,-1.75598,-0.91168,2.17815,-0.52965
+1.56641,0.78399,-1.27057,-1.75672,-0.91146,2.17772,-0.52911
+1.56710,0.78461,-1.26975,-1.75746,-0.91125,2.17729,-0.52857
+1.56780,0.78522,-1.26895,-1.75818,-0.91103,2.17687,-0.52804
+1.56849,0.78582,-1.26816,-1.75889,-0.91082,2.17645,-0.52752
+1.56919,0.78641,-1.26738,-1.75958,-0.91061,2.17604,-0.52701
+1.56988,0.78699,-1.26662,-1.76027,-0.91040,2.17563,-0.52651
+1.57058,0.78757,-1.26587,-1.76094,-0.91020,2.17523,-0.52601
+1.57127,0.78813,-1.26514,-1.76161,-0.91000,2.17484,-0.52552
+1.57196,0.78869,-1.26441,-1.76226,-0.90980,2.17445,-0.52504
+1.57266,0.78924,-1.26370,-1.76290,-0.90960,2.17406,-0.52456
+1.57335,0.78979,-1.26300,-1.76353,-0.90941,2.17369,-0.52409
+1.57405,0.79032,-1.26232,-1.76414,-0.90921,2.17331,-0.52363
+1.57474,0.79085,-1.26164,-1.76475,-0.90902,2.17294,-0.52317
+1.57544,0.79137,-1.26098,-1.76535,-0.90884,2.17258,-0.52273
+1.57613,0.79188,-1.26033,-1.76594,-0.90865,2.17222,-0.52228
+1.57683,0.79239,-1.25969,-1.76652,-0.90847,2.17187,-0.52185
+1.57752,0.79289,-1.25906,-1.76709,-0.90829,2.17152,-0.52142
+1.57822,0.79338,-1.25844,-1.76764,-0.90811,2.17117,-0.52099
+1.57891,0.79386,-1.25784,-1.76819,-0.90793,2.17083,-0.52058
+1.57961,0.79434,-1.25724,-1.76873,-0.90776,2.17050,-0.52016
+1.58030,0.79481,-1.25665,-1.76927,-0.90758,2.17017,-0.51976
+1.58099,0.79527,-1.25608,-1.76979,-0.90741,2.16985,-0.51936
+1.58169,0.79573,-1.25551,-1.77030,-0.90725,2.16952,-0.51897
+1.58238,0.79617,-1.25495,-1.77081,-0.90708,2.16921,-0.51858
+1.58308,0.79662,-1.25441,-1.77130,-0.90692,2.16890,-0.51820
+1.58377,0.79705,-1.25387,-1.77179,-0.90675,2.16859,-0.51782
+1.58447,0.79749,-1.25334,-1.77227,-0.90659,2.16829,-0.51745
+1.58516,0.79791,-1.25282,-1.77275,-0.90644,2.16799,-0.51708
+1.58586,0.79833,-1.25231,-1.77321,-0.90628,2.16769,-0.51672
+1.58655,0.79874,-1.25181,-1.77367,-0.90613,2.16740,-0.51637
+1.58725,0.79914,-1.25132,-1.77412,-0.90597,2.16712,-0.51602
+1.58794,0.79954,-1.25084,-1.77456,-0.90582,2.16683,-0.51567
+1.58864,0.79994,-1.25036,-1.77499,-0.90567,2.16656,-0.51533
+1.58933,0.80033,-1.24989,-1.77542,-0.90553,2.16628,-0.51500
+1.59003,0.80071,-1.24943,-1.77584,-0.90538,2.16601,-0.51467
+1.59072,0.80109,-1.24898,-1.77625,-0.90524,2.16574,-0.51434
+1.59141,0.80146,-1.24854,-1.77666,-0.90510,2.16548,-0.51402
+1.59211,0.80182,-1.24810,-1.77706,-0.90496,2.16522,-0.51371
+1.59280,0.80218,-1.24767,-1.77745,-0.90482,2.16497,-0.51340
+1.59350,0.80254,-1.24725,-1.77784,-0.90468,2.16471,-0.51309
+1.59419,0.80289,-1.24684,-1.77822,-0.90455,2.16447,-0.51279
+1.59489,0.80323,-1.24643,-1.77859,-0.90441,2.16422,-0.51249
+1.59558,0.80357,-1.24603,-1.77896,-0.90428,2.16398,-0.51220
+1.59628,0.80391,-1.24564,-1.77932,-0.90415,2.16374,-0.51191
+1.59697,0.80406,-1.24547,-1.77947,-0.90410,2.16363,-0.51178
+1.59767,0.80458,-1.24492,-1.77990,-0.90397,2.16327,-0.51134
+1.59836,0.80509,-1.24438,-1.78033,-0.90385,2.16291,-0.51090
+1.59906,0.80559,-1.24385,-1.78074,-0.90373,2.16256,-0.51047
+1.59975,0.80609,-1.24332,-1.78115,-0.90360,2.16221,-0.51005
+1.60044,0.80658,-1.24281,-1.78156,-0.90348,2.16186,-0.50964
+1.60114,0.80706,-1.24231,-1.78195,-0.90336,2.16152,-0.50922
+1.60183,0.80753,-1.24181,-1.78234,-0.90325,2.16119,-0.50882
+1.60253,0.80800,-1.24132,-1.78273,-0.90313,2.16086,-0.50842
+1.60322,0.80846,-1.24084,-1.78311,-0.90301,2.16053,-0.50803
+1.60392,0.80892,-1.24037,-1.78348,-0.90290,2.16021,-0.50764
+1.60461,0.80936,-1.23991,-1.78384,-0.90279,2.15989,-0.50726
+1.60531,0.80980,-1.23946,-1.78420,-0.90267,2.15958,-0.50689
+1.60600,0.81024,-1.23901,-1.78455,-0.90256,2.15928,-0.50652
+1.60670,0.81066,-1.23857,-1.78490,-0.90245,2.15897,-0.50616
+1.60739,0.81109,-1.23814,-1.78524,-0.90234,2.15867,-0.50580
+1.60809,0.81150,-1.23772,-1.78558,-0.90224,2.15838,-0.50544
+1.60878,0.81191,-1.23730,-1.78591,-0.90213,2.15809,-0.50510
+1.60947,0.81231,-1.23689,-1.78624,-0.90203,2.15780,-0.50475
+1.61017,0.81271,-1.23649,-1.78656,-0.90192,2.15752,-0.50442
+1.61086,0.81310,-1.23610,-1.78687,-0.90182,2.15724,-0.50408
+1.61156,0.81348,-1.23571,-1.78718,-0.90172,2.15697,-0.50376
+1.61225,0.81386,-1.23533,-1.78748,-0.90162,2.15670,-0.50343
+1.61295,0.81427,-1.23495,-1.78776,-0.90153,2.15642,-0.50309
+1.61364,0.81529,-1.23415,-1.78811,-0.90151,2.15570,-0.50224
+1.61434,0.81629,-1.23337,-1.78845,-0.90149,2.15500,-0.50140
+1.61503,0.81728,-1.23260,-1.78878,-0.90147,2.15430,-0.50057
+1.61573,0.81826,-1.23185,-1.78912,-0.90145,2.15361,-0.49975
+1.61642,0.81922,-1.23111,-1.78944,-0.90142,2.15294,-0.49895
+1.61712,0.82017,-1.23038,-1.78976,-0.90140,2.15227,-0.49816
+1.61781,0.82110,-1.22967,-1.79007,-0.90137,2.15161,-0.49738
+1.61851,0.82202,-1.22897,-1.79038,-0.90135,2.15096,-0.49661
+1.61920,0.82293,-1.22828,-1.79069,-0.90132,2.15032,-0.49585
+1.61989,0.82382,-1.22760,-1.79099,-0.90130,2.14969,-0.49511
+1.62059,0.82470,-1.22694,-1.79128,-0.90127,2.14907,-0.49438
+1.62128,0.82557,-1.22629,-1.79157,-0.90124,2.14846,-0.49366
+1.62198,0.82642,-1.22564,-1.79185,-0.90121,2.14785,-0.49294
+1.62267,0.82727,-1.22501,-1.79213,-0.90118,2.14726,-0.49224
+1.62337,0.82810,-1.22440,-1.79241,-0.90115,2.14667,-0.49155
+1.62406,0.82891,-1.22379,-1.79268,-0.90112,2.14609,-0.49088
+1.62476,0.82972,-1.22319,-1.79295,-0.90109,2.14552,-0.49021
+1.62545,0.83051,-1.22260,-1.79321,-0.90106,2.14495,-0.48955
+1.62615,0.83129,-1.22203,-1.79347,-0.90103,2.14440,-0.48890
+1.62684,0.83206,-1.22146,-1.79372,-0.90100,2.14385,-0.48826
+1.62754,0.83282,-1.22091,-1.79397,-0.90097,2.14331,-0.48763
+1.62823,0.83357,-1.22036,-1.79422,-0.90094,2.14278,-0.48701
+1.62892,0.83431,-1.21982,-1.79446,-0.90090,2.14226,-0.48641
+1.62962,0.83503,-1.21930,-1.79470,-0.90087,2.14174,-0.48580
+1.63031,0.83575,-1.21878,-1.79493,-0.90084,2.14123,-0.48521
+1.63101,0.83645,-1.21827,-1.79516,-0.90080,2.14073,-0.48463
+1.63170,0.83715,-1.21777,-1.79539,-0.90077,2.14023,-0.48406
+1.63240,0.83783,-1.21728,-1.79561,-0.90074,2.13974,-0.48349
+1.63309,0.83850,-1.21680,-1.79583,-0.90070,2.13926,-0.48294
+1.63379,0.83916,-1.21632,-1.79605,-0.90067,2.13879,-0.48239
+1.63448,0.83982,-1.21586,-1.79626,-0.90063,2.13832,-0.48185
+1.63518,0.84046,-1.21540,-1.79647,-0.90060,2.13786,-0.48132
+1.63587,0.84109,-1.21495,-1.79668,-0.90056,2.13741,-0.48080
+1.63657,0.84172,-1.21451,-1.79688,-0.90053,2.13696,-0.48029
+1.63726,0.84233,-1.21408,-1.79708,-0.90049,2.13652,-0.47978
+1.63795,0.84294,-1.21365,-1.79728,-0.90046,2.13608,-0.47928
+1.63865,0.84353,-1.21323,-1.79747,-0.90042,2.13565,-0.47879
+1.63934,0.84412,-1.21282,-1.79766,-0.90038,2.13523,-0.47831
+1.64004,0.84470,-1.21241,-1.79785,-0.90035,2.13481,-0.47783
+1.64073,0.84527,-1.21202,-1.79804,-0.90031,2.13440,-0.47736
+1.64143,0.84583,-1.21163,-1.79822,-0.90027,2.13400,-0.47690
+1.64212,0.84638,-1.21124,-1.79840,-0.90024,2.13360,-0.47644
+1.64282,0.84693,-1.21087,-1.79857,-0.90020,2.13321,-0.47600
+1.64351,0.84747,-1.21050,-1.79875,-0.90016,2.13282,-0.47556
+1.64421,0.84799,-1.21013,-1.79892,-0.90013,2.13244,-0.47512
+1.64490,0.84851,-1.20977,-1.79909,-0.90009,2.13207,-0.47469
+1.64560,0.84903,-1.20942,-1.79925,-0.90005,2.13170,-0.47427
+1.64629,0.84953,-1.20908,-1.79942,-0.90002,2.13133,-0.47386
+1.64699,0.85003,-1.20874,-1.79958,-0.89998,2.13097,-0.47345
+1.64768,0.85052,-1.20840,-1.79974,-0.89994,2.13062,-0.47305
+1.64837,0.85100,-1.20808,-1.79990,-0.89991,2.13027,-0.47265
+1.64907,0.85147,-1.20775,-1.80005,-0.89987,2.12993,-0.47226
+1.64976,0.85194,-1.20744,-1.80020,-0.89983,2.12959,-0.47188
+1.65046,0.85240,-1.20713,-1.80035,-0.89979,2.12925,-0.47150
+1.65115,0.85269,-1.20694,-1.80044,-0.89978,2.12904,-0.47127
+1.65185,0.85331,-1.20656,-1.80055,-0.89978,2.12860,-0.47077
+1.65254,0.85391,-1.20620,-1.80065,-0.89977,2.12817,-0.47027
+1.65324,0.85451,-1.20584,-1.80076,-0.89977,2.12774,-0.46979
+1.65393,0.85509,-1.20548,-1.80087,-0.89977,2.12731,-0.46931
+1.65463,0.85567,-1.20514,-1.80097,-0.89977,2.12690,-0.46884
+1.65532,0.85624,-1.20480,-1.80107,-0.89976,2.12649,-0.46838
+1.65602,0.85680,-1.20446,-1.80117,-0.89976,2.12608,-0.46792
+1.65671,0.85735,-1.20413,-1.80127,-0.89975,2.12568,-0.46747
+1.65740,0.85789,-1.20381,-1.80137,-0.89975,2.12529,-0.46703
+1.65810,0.85843,-1.20349,-1.80147,-0.89974,2.12490,-0.46660
+1.65879,0.85896,-1.20318,-1.80157,-0.89973,2.12452,-0.46617
+1.65949,0.85947,-1.20287,-1.80166,-0.89973,2.12415,-0.46575
+1.66018,0.85999,-1.20257,-1.80175,-0.89972,2.12378,-0.46533
+1.66088,0.86049,-1.20227,-1.80185,-0.89971,2.12341,-0.46492
+1.66157,0.86098,-1.20198,-1.80194,-0.89970,2.12305,-0.46452
+1.66227,0.86147,-1.20169,-1.80203,-0.89969,2.12270,-0.46412
+1.66296,0.86195,-1.20141,-1.80211,-0.89968,2.12235,-0.46373
+1.66366,0.86243,-1.20114,-1.80220,-0.89967,2.12200,-0.46335
+1.66435,0.86253,-1.20109,-1.80219,-0.89969,2.12193,-0.46327
+1.66505,0.86357,-1.20062,-1.80209,-0.89982,2.12119,-0.46243
+1.66574,0.86459,-1.20016,-1.80200,-0.89996,2.12045,-0.46161
+1.66644,0.86559,-1.19970,-1.80190,-0.90009,2.11973,-0.46081
+1.66713,0.86658,-1.19926,-1.80181,-0.90021,2.11902,-0.46001
+1.66782,0.86756,-1.19882,-1.80172,-0.90034,2.11832,-0.45923
+1.66852,0.86852,-1.19839,-1.80163,-0.90046,2.11763,-0.45846
+1.66921,0.86947,-1.19797,-1.80154,-0.90057,2.11694,-0.45771
+1.66991,0.87040,-1.19756,-1.80145,-0.90069,2.11627,-0.45696
+1.67060,0.87132,-1.19716,-1.80137,-0.90080,2.11561,-0.45623
+1.67130,0.87222,-1.19676,-1.80129,-0.90091,2.11496,-0.45551
+1.67199,0.87311,-1.19637,-1.80120,-0.90102,2.11432,-0.45480
+1.67269,0.87398,-1.19598,-1.80113,-0.90112,2.11368,-0.45410
+1.67338,0.87485,-1.19561,-1.80105,-0.90122,2.11306,-0.45341
+1.67408,0.87570,-1.19524,-1.80097,-0.90132,2.11245,-0.45274
+1.67477,0.87653,-1.19487,-1.80090,-0.90142,2.11184,-0.45207
+1.67547,0.87736,-1.19452,-1.80083,-0.90151,2.11124,-0.45141
+1.67616,0.87817,-1.19417,-1.80076,-0.90160,2.11066,-0.45077
+1.67685,0.87897,-1.19382,-1.80069,-0.90169,2.11008,-0.45013
+1.67755,0.87975,-1.19349,-1.80062,-0.90178,2.10950,-0.44951
+1.67824,0.88053,-1.19315,-1.80055,-0.90187,2.10894,-0.44889
+1.67894,0.88129,-1.19283,-1.80049,-0.90195,2.10839,-0.44829
+1.67963,0.88204,-1.19251,-1.80043,-0.90203,2.10784,-0.44769
+1.68033,0.88278,-1.19219,-1.80036,-0.90211,2.10730,-0.44711
+1.68102,0.88351,-1.19189,-1.80030,-0.90219,2.10677,-0.44653
+1.68172,0.88422,-1.19158,-1.80024,-0.90226,2.10625,-0.44596
+1.68241,0.88493,-1.19129,-1.80019,-0.90233,2.10574,-0.44540
+1.68311,0.88563,-1.19099,-1.80013,-0.90240,2.10523,-0.44485
+1.68380,0.88631,-1.19071,-1.80008,-0.90247,2.10473,-0.44431
+1.68450,0.88698,-1.19042,-1.80002,-0.90254,2.10424,-0.44378
+1.68519,0.88765,-1.19015,-1.79997,-0.90261,2.10375,-0.44325
+1.68588,0.88830,-1.18987,-1.79992,-0.90267,2.10328,-0.44274
+1.68658,0.88894,-1.18961,-1.79987,-0.90273,2.10281,-0.44223
+1.68727,0.88958,-1.18934,-1.79982,-0.90279,2.10234,-0.44173
+1.68797,0.89020,-1.18909,-1.79977,-0.90285,2.10189,-0.44124
+1.68866,0.89081,-1.18883,-1.79973,-0.90291,2.10144,-0.44075
+1.68936,0.89142,-1.18858,-1.79968,-0.90296,2.10099,-0.44028
+1.69005,0.89201,-1.18834,-1.79964,-0.90302,2.10056,-0.43981
+1.69075,0.89260,-1.18810,-1.79960,-0.90307,2.10013,-0.43935
+1.69144,0.89318,-1.18786,-1.79955,-0.90312,2.09970,-0.43889
+1.69214,0.89374,-1.18763,-1.79951,-0.90317,2.09929,-0.43844
+1.69283,0.89430,-1.18740,-1.79947,-0.90322,2.09888,-0.43800
+1.69353,0.89485,-1.18718,-1.79944,-0.90326,2.09847,-0.43757
+1.69422,0.89539,-1.18696,-1.79940,-0.90331,2.09807,-0.43714
+1.69492,0.89593,-1.18674,-1.79936,-0.90335,2.09768,-0.43672
+1.69561,0.89645,-1.18653,-1.79933,-0.90340,2.09729,-0.43631
+1.69630,0.89697,-1.18632,-1.79929,-0.90344,2.09691,-0.43590
+1.69700,0.89748,-1.18612,-1.79926,-0.90348,2.09654,-0.43550
+1.69769,0.89798,-1.18591,-1.79922,-0.90352,2.09617,-0.43511
+1.69839,0.89847,-1.18572,-1.79919,-0.90356,2.09580,-0.43472
+1.69908,0.89861,-1.18570,-1.79912,-0.90360,2.09571,-0.43462
+1.69978,0.89993,-1.18551,-1.79841,-0.90398,2.09475,-0.43359
+1.70047,0.90122,-1.18533,-1.79770,-0.90436,2.09381,-0.43258
+1.70117,0.90250,-1.18516,-1.79701,-0.90473,2.09288,-0.43159
+1.70186,0.90376,-1.18499,-1.79633,-0.90510,2.09197,-0.43062
+1.70256,0.90499,-1.18482,-1.79567,-0.90546,2.09107,-0.42966
+1.70325,0.90621,-1.18465,-1.79501,-0.90581,2.09018,-0.42872
+1.70395,0.90741,-1.18450,-1.79437,-0.90615,2.08931,-0.42779
+1.70464,0.90859,-1.18434,-1.79374,-0.90649,2.08845,-0.42688
+1.70533,0.90975,-1.18419,-1.79311,-0.90682,2.08760,-0.42598
+1.70603,0.91089,-1.18404,-1.79250,-0.90715,2.08676,-0.42510
+1.70672,0.91201,-1.18389,-1.79190,-0.90747,2.08594,-0.42424
+1.70742,0.91312,-1.18375,-1.79131,-0.90778,2.08513,-0.42338
+1.70811,0.91421,-1.18361,-1.79073,-0.90809,2.08434,-0.42255
+1.70881,0.91528,-1.18348,-1.79016,-0.90839,2.08355,-0.42172
+1.70950,0.91633,-1.18335,-1.78960,-0.90869,2.08278,-0.42091
+1.71020,0.91737,-1.18322,-1.78905,-0.90898,2.08202,-0.42012
+1.71089,0.91839,-1.18309,-1.78851,-0.90927,2.08127,-0.41933
+1.71159,0.91939,-1.18297,-1.78798,-0.90955,2.08053,-0.41856
+1.71228,0.92038,-1.18285,-1.78746,-0.90982,2.07980,-0.41781
+1.71298,0.92135,-1.18273,-1.78695,-0.91009,2.07909,-0.41706
+1.71367,0.92231,-1.18261,-1.78645,-0.91036,2.07838,-0.41633
+1.71437,0.92325,-1.18250,-1.78595,-0.91062,2.07769,-0.41561
+1.71506,0.92418,-1.18239,-1.78547,-0.91087,2.07701,-0.41490
+1.71575,0.92509,-1.18228,-1.78499,-0.91112,2.07633,-0.41420
+1.71645,0.92599,-1.18218,-1.78452,-0.91137,2.07567,-0.41352
+1.71714,0.92687,-1.18207,-1.78406,-0.91161,2.07502,-0.41284
+1.71784,0.92774,-1.18197,-1.78361,-0.91184,2.07438,-0.41218
+1.71853,0.92859,-1.18187,-1.78317,-0.91207,2.07374,-0.41153
+1.71923,0.92944,-1.18178,-1.78273,-0.91230,2.07312,-0.41089
+1.71992,0.93026,-1.18168,-1.78230,-0.91253,2.07251,-0.41026
+1.72062,0.93108,-1.18159,-1.78188,-0.91274,2.07190,-0.40964
+1.72131,0.93188,-1.18150,-1.78147,-0.91296,2.07131,-0.40903
+1.72201,0.93267,-1.18141,-1.78106,-0.91317,2.07073,-0.40843
+1.72270,0.93345,-1.18132,-1.78067,-0.91337,2.07015,-0.40784
+1.72340,0.93421,-1.18123,-1.78027,-0.91358,2.06958,-0.40726
+1.72409,0.93496,-1.18115,-1.77989,-0.91378,2.06902,-0.40669
+1.72478,0.93570,-1.18107,-1.77951,-0.91397,2.06847,-0.40612
+1.72548,0.93643,-1.18099,-1.77914,-0.91416,2.06793,-0.40557
+1.72617,0.93715,-1.18091,-1.77878,-0.91435,2.06740,-0.40503
+1.72687,0.93785,-1.18083,-1.77842,-0.91453,2.06687,-0.40449
+1.72756,0.93854,-1.18075,-1.77807,-0.91471,2.06636,-0.40397
+1.72826,0.93923,-1.18068,-1.77773,-0.91489,2.06585,-0.40345
+1.72895,0.93990,-1.18061,-1.77739,-0.91506,2.06535,-0.40294
+1.72965,0.94056,-1.18054,-1.77706,-0.91523,2.06486,-0.40244
+1.73034,0.94121,-1.18046,-1.77673,-0.91540,2.06437,-0.40195
+1.73104,0.94185,-1.18040,-1.77641,-0.91556,2.06389,-0.40147
+1.73173,0.94248,-1.18033,-1.77610,-0.91572,2.06342,-0.40099
+1.73243,0.94310,-1.18026,-1.77579,-0.91588,2.06296,-0.40052
+1.73312,0.94371,-1.18020,-1.77548,-0.91603,2.06250,-0.40006
+1.73381,0.94431,-1.18013,-1.77519,-0.91619,2.06205,-0.39961
+1.73451,0.94490,-1.18007,-1.77489,-0.91633,2.06161,-0.39916
+1.73520,0.94548,-1.18001,-1.77461,-0.91648,2.06118,-0.39873
+1.73590,0.94605,-1.17995,-1.77433,-0.91662,2.06075,-0.39830
+1.73659,0.94662,-1.17989,-1.77405,-0.91676,2.06033,-0.39787
+1.73729,0.94717,-1.17983,-1.77378,-0.91690,2.05991,-0.39745
+1.73798,0.94771,-1.17977,-1.77351,-0.91703,2.05950,-0.39704
+1.73868,0.94825,-1.17972,-1.77325,-0.91717,2.05910,-0.39664
+1.73937,0.94878,-1.17966,-1.77299,-0.91729,2.05870,-0.39624
+1.74007,0.94930,-1.17961,-1.77274,-0.91742,2.05831,-0.39585
+1.74076,0.94981,-1.17955,-1.77249,-0.91755,2.05793,-0.39547
+1.74146,0.95031,-1.17950,-1.77225,-0.91767,2.05755,-0.39509
+1.74215,0.95081,-1.17945,-1.77201,-0.91779,2.05718,-0.39472
+1.74285,0.95129,-1.17940,-1.77178,-0.91790,2.05681,-0.39435
+1.74354,0.95177,-1.17935,-1.77155,-0.91802,2.05645,-0.39399
+1.74423,0.95224,-1.17930,-1.77132,-0.91813,2.05610,-0.39364
+1.74493,0.95271,-1.17925,-1.77110,-0.91824,2.05575,-0.39329
+1.74562,0.95284,-1.17925,-1.77101,-0.91828,2.05565,-0.39319
+1.74632,0.95368,-1.17931,-1.77036,-0.91860,2.05502,-0.39256
+1.74701,0.95451,-1.17936,-1.76971,-0.91890,2.05441,-0.39194
+1.74771,0.95532,-1.17941,-1.76907,-0.91921,2.05380,-0.39134
+1.74840,0.95612,-1.17946,-1.76845,-0.91950,2.05321,-0.39074
+1.74910,0.95691,-1.17952,-1.76784,-0.91979,2.05262,-0.39015
+1.74979,0.95769,-1.17957,-1.76723,-0.92008,2.05204,-0.38958
+1.75049,0.95845,-1.17962,-1.76664,-0.92036,2.05147,-0.38901
+1.75118,0.95920,-1.17967,-1.76606,-0.92064,2.05091,-0.38845
+1.75188,0.95994,-1.17972,-1.76549,-0.92091,2.05036,-0.38790
+1.75257,0.96066,-1.17976,-1.76493,-0.92118,2.04982,-0.38736
+1.75326,0.96138,-1.17981,-1.76438,-0.92144,2.04928,-0.38683
+1.75396,0.96208,-1.17986,-1.76383,-0.92169,2.04876,-0.38631
+1.75465,0.96277,-1.17991,-1.76330,-0.92195,2.04824,-0.38580
+1.75535,0.96345,-1.17995,-1.76278,-0.92219,2.04773,-0.38530
+1.75604,0.96412,-1.18000,-1.76227,-0.92244,2.04723,-0.38480
+1.75674,0.96477,-1.18004,-1.76176,-0.92268,2.04674,-0.38431
+1.75743,0.96542,-1.18009,-1.76127,-0.92291,2.04625,-0.38383
+1.75813,0.96606,-1.18013,-1.76078,-0.92314,2.04578,-0.38336
+1.75882,0.96668,-1.18017,-1.76030,-0.92337,2.04531,-0.38290
+1.75952,0.96730,-1.18022,-1.75983,-0.92359,2.04485,-0.38244
+1.76021,0.96790,-1.18026,-1.75937,-0.92381,2.04439,-0.38200
+1.76091,0.96850,-1.18030,-1.75892,-0.92402,2.04394,-0.38156
+1.76160,0.96908,-1.18034,-1.75847,-0.92423,2.04350,-0.38112
+1.76230,0.96966,-1.18038,-1.75803,-0.92444,2.04307,-0.38070
+1.76299,0.97023,-1.18042,-1.75760,-0.92464,2.04264,-0.38028
+1.76368,0.97079,-1.18046,-1.75718,-0.92484,2.04222,-0.37987
+1.76438,0.97133,-1.18050,-1.75677,-0.92504,2.04181,-0.37946
+1.76507,0.97187,-1.18054,-1.75636,-0.92523,2.04140,-0.37906
+1.76577,0.97240,-1.18057,-1.75596,-0.92542,2.04100,-0.37867
+1.76646,0.97293,-1.18061,-1.75557,-0.92560,2.04061,-0.37829
+1.76716,0.97344,-1.18065,-1.75518,-0.92578,2.04022,-0.37791
+1.76785,0.97394,-1.18068,-1.75480,-0.92596,2.03984,-0.37754
+1.76855,0.97444,-1.18072,-1.75443,-0.92614,2.03947,-0.37717
+1.76924,0.97493,-1.18075,-1.75406,-0.92631,2.03910,-0.37681
+1.76994,0.97541,-1.18078,-1.75370,-0.92648,2.03873,-0.37646
+1.77063,0.97588,-1.18082,-1.75335,-0.92664,2.03837,-0.37611
+1.77133,0.97635,-1.18085,-1.75300,-0.92681,2.03802,-0.37577
+1.77202,0.97681,-1.18088,-1.75266,-0.92697,2.03768,-0.37543
+1.77271,0.97726,-1.18091,-1.75233,-0.92712,2.03734,-0.37510
+1.77341,0.97770,-1.18094,-1.75200,-0.92728,2.03700,-0.37477
+1.77410,0.97813,-1.18097,-1.75168,-0.92743,2.03667,-0.37445
+1.77480,0.97856,-1.18100,-1.75136,-0.92758,2.03635,-0.37414
+1.77549,0.97898,-1.18103,-1.75105,-0.92772,2.03603,-0.37383
+1.77619,0.97926,-1.18107,-1.75081,-0.92783,2.03582,-0.37362
+1.77688,0.97994,-1.18133,-1.74997,-0.92820,2.03531,-0.37313
+1.77758,0.98060,-1.18159,-1.74914,-0.92855,2.03481,-0.37264
+1.77827,0.98126,-1.18184,-1.74832,-0.92891,2.03432,-0.37216
+1.77897,0.98190,-1.18209,-1.74752,-0.92925,2.03383,-0.37169
+1.77966,0.98253,-1.18233,-1.74673,-0.92959,2.03336,-0.37123
+1.78036,0.98315,-1.18257,-1.74595,-0.92993,2.03289,-0.37078
+1.78105,0.98376,-1.18280,-1.74519,-0.93026,2.03243,-0.37033
+1.78174,0.98437,-1.18303,-1.74444,-0.93058,2.03198,-0.36990
+1.78244,0.98496,-1.18326,-1.74371,-0.93090,2.03154,-0.36947
+1.78313,0.98553,-1.18348,-1.74298,-0.93121,2.03110,-0.36904
+1.78383,0.98611,-1.18370,-1.74227,-0.93152,2.03067,-0.36863
+1.78452,0.98667,-1.18392,-1.74158,-0.93182,2.03025,-0.36822
+1.78522,0.98722,-1.18413,-1.74089,-0.93211,2.02983,-0.36782
+1.78591,0.98776,-1.18434,-1.74022,-0.93241,2.02942,-0.36742
+1.78661,0.98829,-1.18455,-1.73955,-0.93269,2.02902,-0.36704
+1.78730,0.98881,-1.18475,-1.73890,-0.93298,2.02862,-0.36666
+1.78800,0.98933,-1.18495,-1.73826,-0.93325,2.02824,-0.36628
+1.78869,0.98983,-1.18514,-1.73763,-0.93353,2.02785,-0.36592
+1.78939,0.99033,-1.18534,-1.73702,-0.93379,2.02748,-0.36555
+1.79008,0.99082,-1.18552,-1.73641,-0.93406,2.02711,-0.36520
+1.79078,0.99130,-1.18571,-1.73581,-0.93432,2.02674,-0.36485
+1.79147,0.99177,-1.18589,-1.73523,-0.93457,2.02639,-0.36451
+1.79216,0.99224,-1.18607,-1.73465,-0.93482,2.02603,-0.36417
+1.79286,0.99269,-1.18625,-1.73408,-0.93507,2.02569,-0.36384
+1.79355,0.99314,-1.18642,-1.73353,-0.93531,2.02535,-0.36351
+1.79425,0.99358,-1.18659,-1.73298,-0.93555,2.02501,-0.36319
+1.79494,0.99401,-1.18676,-1.73244,-0.93578,2.02468,-0.36288
+1.79564,0.99444,-1.18693,-1.73192,-0.93601,2.02436,-0.36257
+1.79633,0.99486,-1.18709,-1.73140,-0.93624,2.02404,-0.36227
+1.79703,0.99527,-1.18725,-1.73089,-0.93646,2.02373,-0.36197
+1.79772,0.99568,-1.18740,-1.73039,-0.93668,2.02342,-0.36168
+1.79842,0.99607,-1.18756,-1.72990,-0.93689,2.02312,-0.36139
+1.79911,0.99647,-1.18771,-1.72941,-0.93710,2.02282,-0.36110
+1.79981,0.99685,-1.18786,-1.72894,-0.93731,2.02253,-0.36083
+1.80050,0.99723,-1.18800,-1.72847,-0.93751,2.02224,-0.36055
+1.80119,0.99760,-1.18815,-1.72801,-0.93771,2.02196,-0.36028
+1.80189,0.99797,-1.18829,-1.72756,-0.93791,2.02168,-0.36002
+1.80258,0.99833,-1.18843,-1.72712,-0.93810,2.02141,-0.35976
+1.80328,0.99868,-1.18856,-1.72669,-0.93829,2.02114,-0.35950
+1.80397,0.99903,-1.18870,-1.72626,-0.93848,2.02087,-0.35925
+1.80467,0.99937,-1.18883,-1.72584,-0.93866,2.02061,-0.35901
+1.80536,0.99970,-1.18896,-1.72543,-0.93884,2.02035,-0.35876
+1.80606,0.99991,-1.18906,-1.72513,-0.93897,2.02020,-0.35861
+1.80675,1.00031,-1.18946,-1.72427,-0.93931,2.01990,-0.35833
+1.80745,1.00069,-1.18985,-1.72342,-0.93965,2.01960,-0.35805
+1.80814,1.00108,-1.19023,-1.72258,-0.93998,2.01931,-0.35777
+1.80884,1.00145,-1.19061,-1.72176,-0.94031,2.01903,-0.35750
+1.80953,1.00182,-1.19098,-1.72095,-0.94063,2.01875,-0.35724
+1.81023,1.00218,-1.19135,-1.72015,-0.94095,2.01847,-0.35698
+1.81092,1.00253,-1.19171,-1.71937,-0.94126,2.01820,-0.35672
+1.81161,1.00288,-1.19206,-1.71860,-0.94157,2.01794,-0.35647
+1.81231,1.00323,-1.19240,-1.71785,-0.94187,2.01767,-0.35622
+1.81300,1.00356,-1.19274,-1.71711,-0.94217,2.01742,-0.35598
+1.81370,1.00389,-1.19308,-1.71638,-0.94246,2.01717,-0.35574
+1.81439,1.00422,-1.19341,-1.71566,-0.94275,2.01692,-0.35551
+1.81509,1.00453,-1.19373,-1.71496,-0.94303,2.01668,-0.35528
+1.81578,1.00485,-1.19405,-1.71426,-0.94331,2.01644,-0.35506
+1.81648,1.00515,-1.19436,-1.71358,-0.94359,2.01620,-0.35484
+1.81717,1.00546,-1.19467,-1.71291,-0.94386,2.01597,-0.35462
+1.81787,1.00575,-1.19497,-1.71226,-0.94412,2.01575,-0.35441
+1.81856,1.00604,-1.19527,-1.71161,-0.94438,2.01553,-0.35420
+1.81926,1.00633,-1.19556,-1.71097,-0.94464,2.01531,-0.35399
+1.81995,1.00661,-1.19584,-1.71035,-0.94490,2.01509,-0.35379
+1.82064,1.00688,-1.19612,-1.70973,-0.94514,2.01488,-0.35359
+1.82134,1.00715,-1.19640,-1.70913,-0.94539,2.01468,-0.35340
+1.82203,1.00742,-1.19667,-1.70854,-0.94563,2.01447,-0.35321
+1.82273,1.00768,-1.19694,-1.70795,-0.94587,2.01427,-0.35302
+1.82342,1.00794,-1.19720,-1.70738,-0.94610,2.01408,-0.35284
+1.82412,1.00819,-1.19746,-1.70682,-0.94633,2.01388,-0.35266
+1.82481,1.00844,-1.19771,-1.70627,-0.94656,2.01369,-0.35248
+1.82551,1.00868,-1.19796,-1.70572,-0.94678,2.01351,-0.35231
+1.82620,1.00892,-1.19821,-1.70519,-0.94700,2.01332,-0.35214
+1.82690,1.00915,-1.19845,-1.70466,-0.94721,2.01314,-0.35197
+1.82759,1.00938,-1.19868,-1.70414,-0.94742,2.01297,-0.35180
+1.82829,1.00961,-1.19892,-1.70364,-0.94763,2.01279,-0.35164
+1.82898,1.00983,-1.19914,-1.70314,-0.94784,2.01262,-0.35148
+1.82967,1.01005,-1.19939,-1.70261,-0.94805,2.01246,-0.35133
+1.83037,1.01027,-1.19985,-1.70177,-0.94837,2.01229,-0.35117
+1.83106,1.01048,-1.20029,-1.70094,-0.94869,2.01212,-0.35102
+1.83176,1.01069,-1.20073,-1.70012,-0.94901,2.01196,-0.35087
+1.83245,1.01090,-1.20116,-1.69932,-0.94931,2.01181,-0.35072
+1.83315,1.01110,-1.20158,-1.69853,-0.94962,2.01165,-0.35058
+1.83384,1.01130,-1.20200,-1.69775,-0.94992,2.01150,-0.35043
+1.83454,1.01149,-1.20241,-1.69699,-0.95021,2.01135,-0.35029
+1.83523,1.01168,-1.20281,-1.69624,-0.95050,2.01120,-0.35016
+1.83593,1.01187,-1.20320,-1.69550,-0.95079,2.01106,-0.35002
+1.83662,1.01205,-1.20359,-1.69478,-0.95107,2.01092,-0.34989
+1.83732,1.01223,-1.20397,-1.69407,-0.95135,2.01078,-0.34977
+1.83801,1.01241,-1.20434,-1.69337,-0.95162,2.01064,-0.34964
+1.83871,1.01258,-1.20471,-1.69268,-0.95189,2.01051,-0.34952
+1.83940,1.01275,-1.20507,-1.69200,-0.95215,2.01038,-0.34940
+1.84009,1.01292,-1.20543,-1.69134,-0.95241,2.01025,-0.34928
+1.84079,1.01308,-1.20578,-1.69068,-0.95267,2.01013,-0.34916
+1.84148,1.01324,-1.20612,-1.69004,-0.95292,2.01000,-0.34905
+1.84218,1.01340,-1.20646,-1.68941,-0.95317,2.00988,-0.34893
+1.84287,1.01355,-1.20679,-1.68879,-0.95341,2.00976,-0.34883
+1.84357,1.01370,-1.20712,-1.68817,-0.95365,2.00965,-0.34872
+1.84426,1.01385,-1.20744,-1.68757,-0.95389,2.00953,-0.34861
+1.84496,1.01399,-1.20775,-1.68698,-0.95412,2.00942,-0.34851
+1.84565,1.01414,-1.20806,-1.68640,-0.95435,2.00931,-0.34841
+1.84635,1.01428,-1.20836,-1.68583,-0.95458,2.00920,-0.34831
+1.84704,1.01441,-1.20866,-1.68527,-0.95480,2.00910,-0.34821
+1.84774,1.01455,-1.20895,-1.68472,-0.95502,2.00899,-0.34812
+1.84843,1.01468,-1.20924,-1.68418,-0.95524,2.00889,-0.34802
+1.84912,1.01481,-1.20953,-1.68365,-0.95545,2.00879,-0.34793
+1.84982,1.01484,-1.20964,-1.68344,-0.95553,2.00877,-0.34791
+1.85051,1.01487,-1.21023,-1.68250,-0.95587,2.00874,-0.34789
+1.85121,1.01491,-1.21082,-1.68157,-0.95620,2.00871,-0.34786
+1.85190,1.01494,-1.21139,-1.68065,-0.95654,2.00868,-0.34784
+1.85260,1.01497,-1.21195,-1.67975,-0.95687,2.00865,-0.34781
+1.85329,1.01501,-1.21250,-1.67886,-0.95719,2.00863,-0.34779
+1.85399,1.01504,-1.21304,-1.67799,-0.95751,2.00860,-0.34777
+1.85468,1.01506,-1.21357,-1.67713,-0.95782,2.00858,-0.34775
+1.85538,1.01509,-1.21410,-1.67629,-0.95813,2.00855,-0.34773
+1.85607,1.01512,-1.21461,-1.67546,-0.95843,2.00853,-0.34771
+1.85677,1.01514,-1.21512,-1.67465,-0.95873,2.00851,-0.34769
+1.85746,1.01517,-1.21562,-1.67385,-0.95903,2.00849,-0.34767
+1.85816,1.01519,-1.21610,-1.67306,-0.95932,2.00847,-0.34766
+1.85885,1.01522,-1.21658,-1.67229,-0.95961,2.00845,-0.34764
+1.85954,1.01524,-1.21706,-1.67152,-0.95989,2.00843,-0.34763
+1.86024,1.01526,-1.21752,-1.67077,-0.96017,2.00841,-0.34761
+1.86093,1.01528,-1.21797,-1.67004,-0.96045,2.00840,-0.34760
+1.86163,1.01530,-1.21842,-1.66931,-0.96072,2.00838,-0.34758
+1.86232,1.01532,-1.21886,-1.66860,-0.96098,2.00836,-0.34757
+1.86302,1.01533,-1.21929,-1.66790,-0.96125,2.00835,-0.34756
+1.86371,1.01535,-1.21972,-1.66721,-0.96150,2.00833,-0.34755
+1.86441,1.01537,-1.22014,-1.66653,-0.96176,2.00832,-0.34754
+1.86510,1.01538,-1.22055,-1.66587,-0.96201,2.00831,-0.34753
+1.86580,1.01540,-1.22095,-1.66521,-0.96226,2.00829,-0.34752
+1.86649,1.01541,-1.22135,-1.66457,-0.96250,2.00828,-0.34751
+1.86719,1.01542,-1.22174,-1.66394,-0.96274,2.00827,-0.34750
+1.86788,1.01544,-1.22212,-1.66331,-0.96298,2.00826,-0.34749
+1.86857,1.01545,-1.22250,-1.66270,-0.96321,2.00825,-0.34748
+1.86927,1.01546,-1.22287,-1.66210,-0.96344,2.00824,-0.34748
+1.86996,1.01547,-1.22323,-1.66151,-0.96367,2.00823,-0.34747
+1.87066,1.01548,-1.22359,-1.66093,-0.96389,2.00822,-0.34746
+1.87135,1.01549,-1.22394,-1.66035,-0.96411,2.00821,-0.34746
+1.87205,1.01550,-1.22428,-1.65979,-0.96433,2.00820,-0.34745
+1.87274,1.01550,-1.22459,-1.65930,-0.96452,2.00820,-0.34746
+1.87344,1.01539,-1.22528,-1.65827,-0.96488,2.00828,-0.34753
+1.87413,1.01529,-1.22596,-1.65727,-0.96524,2.00835,-0.34760
+1.87483,1.01519,-1.22662,-1.65628,-0.96559,2.00842,-0.34767
+1.87552,1.01510,-1.22727,-1.65530,-0.96594,2.00850,-0.34774
+1.87622,1.01500,-1.22792,-1.65434,-0.96628,2.00857,-0.34781
+1.87691,1.01490,-1.22855,-1.65340,-0.96662,2.00864,-0.34788
+1.87760,1.01481,-1.22917,-1.65247,-0.96695,2.00871,-0.34795
+1.87830,1.01471,-1.22978,-1.65156,-0.96728,2.00878,-0.34802
+1.87899,1.01462,-1.23038,-1.65066,-0.96761,2.00885,-0.34808
+1.87969,1.01453,-1.23097,-1.64978,-0.96793,2.00892,-0.34815
+1.88038,1.01444,-1.23154,-1.64891,-0.96824,2.00898,-0.34822
+1.88108,1.01435,-1.23211,-1.64806,-0.96856,2.00905,-0.34828
+1.88177,1.01426,-1.23267,-1.64722,-0.96886,2.00912,-0.34835
+1.88247,1.01417,-1.23322,-1.64639,-0.96916,2.00918,-0.34841
+1.88316,1.01408,-1.23376,-1.64558,-0.96946,2.00925,-0.34847
+1.88386,1.01399,-1.23429,-1.64478,-0.96976,2.00931,-0.34854
+1.88455,1.01391,-1.23481,-1.64399,-0.97005,2.00938,-0.34860
+1.88525,1.01382,-1.23533,-1.64322,-0.97033,2.00944,-0.34866
+1.88594,1.01374,-1.23583,-1.64246,-0.97062,2.00950,-0.34872
+1.88664,1.01366,-1.23632,-1.64171,-0.97089,2.00956,-0.34878
+1.88733,1.01357,-1.23681,-1.64098,-0.97117,2.00962,-0.34884
+1.88802,1.01349,-1.23729,-1.64025,-0.97144,2.00968,-0.34890
+1.88872,1.01341,-1.23776,-1.63954,-0.97170,2.00974,-0.34896
+1.88941,1.01333,-1.23822,-1.63884,-0.97197,2.00980,-0.34902
+1.89011,1.01326,-1.23867,-1.63815,-0.97222,2.00986,-0.34908
+1.89080,1.01318,-1.23912,-1.63748,-0.97248,2.00992,-0.34913
+1.89150,1.01310,-1.23956,-1.63681,-0.97273,2.00998,-0.34919
+1.89219,1.01303,-1.23999,-1.63615,-0.97298,2.01003,-0.34924
+1.89289,1.01295,-1.24041,-1.63551,-0.97322,2.01009,-0.34930
+1.89358,1.01288,-1.24083,-1.63488,-0.97346,2.01015,-0.34935
+1.89428,1.01280,-1.24124,-1.63425,-0.97370,2.01020,-0.34941
+1.89497,1.01273,-1.24164,-1.63364,-0.97393,2.01026,-0.34946
+1.89567,1.01266,-1.24204,-1.63304,-0.97417,2.01031,-0.34952
+1.89636,1.01259,-1.24243,-1.63245,-0.97439,2.01036,-0.34957
+1.89705,1.01252,-1.24281,-1.63186,-0.97462,2.01042,-0.34962
+1.89775,1.01245,-1.24318,-1.63129,-0.97484,2.01047,-0.34967
+1.89844,1.01238,-1.24355,-1.63073,-0.97505,2.01052,-0.34972
+1.89914,1.01232,-1.24378,-1.63040,-0.97518,2.01056,-0.34976
+1.89983,1.01205,-1.24455,-1.62933,-0.97554,2.01077,-0.34996
+1.90053,1.01177,-1.24532,-1.62829,-0.97590,2.01097,-0.35016
+1.90122,1.01150,-1.24607,-1.62726,-0.97626,2.01118,-0.35035
+1.90192,1.01124,-1.24681,-1.62624,-0.97661,2.01137,-0.35054
+1.90261,1.01098,-1.24753,-1.62525,-0.97696,2.01157,-0.35073
+1.90331,1.01072,-1.24824,-1.62427,-0.97730,2.01176,-0.35091
+1.90400,1.01047,-1.24894,-1.62330,-0.97764,2.01195,-0.35109
+1.90470,1.01022,-1.24963,-1.62236,-0.97798,2.01214,-0.35127
+1.90539,1.00997,-1.25031,-1.62142,-0.97830,2.01232,-0.35145
+1.90609,1.00973,-1.25097,-1.62050,-0.97863,2.01251,-0.35162
+1.90678,1.00949,-1.25163,-1.61960,-0.97895,2.01268,-0.35179
+1.90747,1.00926,-1.25227,-1.61871,-0.97927,2.01286,-0.35196
+1.90817,1.00902,-1.25290,-1.61784,-0.97958,2.01304,-0.35213
+1.90886,1.00880,-1.25352,-1.61698,-0.97989,2.01321,-0.35230
+1.90956,1.00857,-1.25413,-1.61613,-0.98019,2.01338,-0.35246
+1.91025,1.00835,-1.25473,-1.61530,-0.98049,2.01354,-0.35262
+1.91095,1.00813,-1.25532,-1.61448,-0.98079,2.01371,-0.35278
+1.91164,1.00792,-1.25590,-1.61367,-0.98108,2.01387,-0.35293
+1.91234,1.00770,-1.25647,-1.61288,-0.98137,2.01403,-0.35309
+1.91303,1.00750,-1.25703,-1.61210,-0.98165,2.01419,-0.35324
+1.91373,1.00729,-1.25758,-1.61133,-0.98193,2.01434,-0.35339
+1.91442,1.00709,-1.25812,-1.61058,-0.98221,2.01449,-0.35353
+1.91512,1.00689,-1.25865,-1.60983,-0.98248,2.01465,-0.35368
+1.91581,1.00669,-1.25917,-1.60910,-0.98275,2.01479,-0.35382
+1.91650,1.00650,-1.25968,-1.60838,-0.98302,2.01494,-0.35396
+1.91720,1.00631,-1.26019,-1.60768,-0.98328,2.01508,-0.35410
+1.91789,1.00612,-1.26068,-1.60698,-0.98354,2.01523,-0.35424
+1.91859,1.00593,-1.26117,-1.60630,-0.98379,2.01537,-0.35437
+1.91928,1.00575,-1.26165,-1.60562,-0.98405,2.01551,-0.35451
+1.91998,1.00557,-1.26212,-1.60496,-0.98429,2.01564,-0.35464
+1.92067,1.00539,-1.26258,-1.60431,-0.98454,2.01578,-0.35477
+1.92137,1.00522,-1.26304,-1.60367,-0.98478,2.01591,-0.35490
+1.92206,1.00504,-1.26349,-1.60304,-0.98502,2.01604,-0.35502
+1.92276,1.00487,-1.26392,-1.60242,-0.98525,2.01617,-0.35515
+1.92345,1.00471,-1.26436,-1.60181,-0.98548,2.01629,-0.35527
+1.92415,1.00454,-1.26478,-1.60120,-0.98571,2.01642,-0.35539
+1.92484,1.00438,-1.26520,-1.60061,-0.98594,2.01654,-0.35551
+1.92553,1.00422,-1.26561,-1.60003,-0.98616,2.01666,-0.35563
+1.92623,1.00406,-1.26601,-1.59946,-0.98638,2.01678,-0.35574
+1.92692,1.00391,-1.26641,-1.59890,-0.98660,2.01690,-0.35586
+1.92762,1.00375,-1.26680,-1.59834,-0.98681,2.01702,-0.35597
+1.92831,1.00357,-1.26719,-1.59782,-0.98700,2.01716,-0.35610
+1.92901,1.00280,-1.26838,-1.59643,-0.98743,2.01773,-0.35666
+1.92970,1.00204,-1.26954,-1.59507,-0.98785,2.01830,-0.35720
+1.93040,1.00130,-1.27069,-1.59372,-0.98827,2.01886,-0.35773
+1.93109,1.00056,-1.27182,-1.59240,-0.98869,2.01940,-0.35826
+1.93179,0.99984,-1.27293,-1.59109,-0.98910,2.01994,-0.35877
+1.93248,0.99914,-1.27402,-1.58981,-0.98951,2.02047,-0.35928
+1.93318,0.99844,-1.27509,-1.58854,-0.98991,2.02099,-0.35978
+1.93387,0.99776,-1.27614,-1.58730,-0.99031,2.02150,-0.36028
+1.93457,0.99709,-1.27718,-1.58607,-0.99071,2.02201,-0.36076
+1.93526,0.99643,-1.27820,-1.58486,-0.99110,2.02250,-0.36124
+1.93595,0.99578,-1.27920,-1.58368,-0.99148,2.02299,-0.36170
+1.93665,0.99514,-1.28018,-1.58251,-0.99187,2.02347,-0.36217
+1.93734,0.99451,-1.28115,-1.58135,-0.99224,2.02394,-0.36262
+1.93804,0.99390,-1.28210,-1.58022,-0.99262,2.02440,-0.36307
+1.93873,0.99329,-1.28303,-1.57910,-0.99299,2.02485,-0.36351
+1.93943,0.99269,-1.28395,-1.57800,-0.99335,2.02530,-0.36394
+1.94012,0.99211,-1.28485,-1.57692,-0.99371,2.02574,-0.36436
+1.94082,0.99153,-1.28574,-1.57586,-0.99407,2.02617,-0.36478
+1.94151,0.99097,-1.28661,-1.57481,-0.99443,2.02660,-0.36519
+1.94221,0.99041,-1.28746,-1.57378,-0.99478,2.02701,-0.36560
+1.94290,0.98986,-1.28831,-1.57276,-0.99512,2.02743,-0.36600
+1.94360,0.98932,-1.28913,-1.57176,-0.99546,2.02783,-0.36639
+1.94429,0.98879,-1.28995,-1.57078,-0.99580,2.02823,-0.36678
+1.94498,0.98827,-1.29075,-1.56981,-0.99614,2.02862,-0.36716
+1.94568,0.98776,-1.29153,-1.56885,-0.99647,2.02900,-0.36753
+1.94637,0.98726,-1.29230,-1.56791,-0.99679,2.02938,-0.36790
+1.94707,0.98676,-1.29306,-1.56699,-0.99711,2.02976,-0.36826
+1.94776,0.98628,-1.29381,-1.56608,-0.99743,2.03012,-0.36862
+1.94846,0.98580,-1.29454,-1.56518,-0.99775,2.03048,-0.36897
+1.94915,0.98533,-1.29527,-1.56430,-0.99806,2.03084,-0.36931
+1.94985,0.98486,-1.29597,-1.56343,-0.99837,2.03118,-0.36965
+1.95054,0.98441,-1.29667,-1.56258,-0.99867,2.03153,-0.36999
+1.95124,0.98396,-1.29736,-1.56174,-0.99897,2.03187,-0.37032
+1.95193,0.98352,-1.29803,-1.56091,-0.99927,2.03220,-0.37064
+1.95263,0.98309,-1.29869,-1.56009,-0.99956,2.03252,-0.37096
+1.95332,0.98266,-1.29934,-1.55929,-0.99985,2.03284,-0.37127
+1.95402,0.98224,-1.29998,-1.55850,-1.00014,2.03316,-0.37158
+1.95471,0.98183,-1.30061,-1.55773,-1.00042,2.03347,-0.37189
+1.95540,0.98142,-1.30123,-1.55696,-1.00070,2.03378,-0.37219
+1.95610,0.98103,-1.30184,-1.55621,-1.00097,2.03408,-0.37248
+1.95679,0.98063,-1.30244,-1.55547,-1.00124,2.03437,-0.37277
+1.95749,0.98025,-1.30302,-1.55474,-1.00151,2.03467,-0.37306
+1.95818,0.97987,-1.30360,-1.55402,-1.00178,2.03495,-0.37334
+1.95888,0.97949,-1.30417,-1.55331,-1.00204,2.03523,-0.37362
+1.95957,0.97913,-1.30473,-1.55262,-1.00230,2.03551,-0.37389
+1.96027,0.97877,-1.30527,-1.55193,-1.00256,2.03578,-0.37416
+1.96096,0.97841,-1.30581,-1.55126,-1.00281,2.03605,-0.37442
+1.96166,0.97806,-1.30634,-1.55059,-1.00306,2.03632,-0.37468
+1.96235,0.97772,-1.30686,-1.54994,-1.00330,2.03658,-0.37494
+1.96305,0.97738,-1.30738,-1.54930,-1.00355,2.03683,-0.37519
+1.96374,0.97705,-1.30788,-1.54867,-1.00379,2.03709,-0.37543
+1.96443,0.97672,-1.30837,-1.54804,-1.00402,2.03733,-0.37568
+1.96513,0.97640,-1.30886,-1.54743,-1.00426,2.03758,-0.37592
+1.96582,0.97608,-1.30934,-1.54683,-1.00449,2.03782,-0.37616
+1.96652,0.97577,-1.30981,-1.54623,-1.00472,2.03805,-0.37639
+1.96721,0.97546,-1.31027,-1.54565,-1.00494,2.03829,-0.37662
+1.96791,0.97516,-1.31073,-1.54508,-1.00517,2.03851,-0.37684
+1.96860,0.97486,-1.31117,-1.54451,-1.00538,2.03874,-0.37706
+1.96930,0.97457,-1.31161,-1.54395,-1.00560,2.03896,-0.37728
+1.96999,0.97428,-1.31204,-1.54340,-1.00582,2.03918,-0.37750
+1.97069,0.97400,-1.31247,-1.54286,-1.00603,2.03939,-0.37771
+1.97138,0.97372,-1.31289,-1.54233,-1.00624,2.03960,-0.37792
+1.97208,0.97345,-1.31330,-1.54181,-1.00644,2.03981,-0.37812
+1.97277,0.97318,-1.31370,-1.54130,-1.00664,2.04002,-0.37833
+1.97346,0.97291,-1.31410,-1.54079,-1.00684,2.04022,-0.37852
+1.97416,0.97265,-1.31449,-1.54029,-1.00704,2.04042,-0.37872
+1.97485,0.97251,-1.31469,-1.54005,-1.00713,2.04052,-0.37883
+1.97555,0.97188,-1.31554,-1.53907,-1.00746,2.04100,-0.37929
+1.97624,0.97126,-1.31638,-1.53812,-1.00778,2.04146,-0.37975
+1.97694,0.97064,-1.31721,-1.53717,-1.00810,2.04192,-0.38020
+1.97763,0.97004,-1.31802,-1.53625,-1.00841,2.04237,-0.38065
+1.97833,0.96945,-1.31881,-1.53533,-1.00872,2.04281,-0.38109
+1.97902,0.96887,-1.31960,-1.53443,-1.00903,2.04324,-0.38152
+1.97972,0.96830,-1.32037,-1.53355,-1.00933,2.04367,-0.38194
+1.98041,0.96774,-1.32113,-1.53268,-1.00963,2.04409,-0.38236
+1.98111,0.96718,-1.32187,-1.53182,-1.00993,2.04451,-0.38277
+1.98180,0.96664,-1.32260,-1.53097,-1.01022,2.04491,-0.38317
+1.98250,0.96611,-1.32332,-1.53014,-1.01052,2.04531,-0.38357
+1.98319,0.96558,-1.32403,-1.52932,-1.01080,2.04570,-0.38396
+1.98388,0.96507,-1.32473,-1.52851,-1.01109,2.04609,-0.38434
+1.98458,0.96456,-1.32541,-1.52772,-1.01137,2.04647,-0.38472
+1.98527,0.96406,-1.32608,-1.52693,-1.01165,2.04684,-0.38509
+1.98597,0.96357,-1.32674,-1.52616,-1.01192,2.04721,-0.38545
+1.98666,0.96309,-1.32739,-1.52540,-1.01219,2.04757,-0.38581
+1.98736,0.96262,-1.32803,-1.52466,-1.01246,2.04793,-0.38617
+1.98805,0.96215,-1.32866,-1.52392,-1.01273,2.04828,-0.38651
+1.98875,0.96169,-1.32927,-1.52320,-1.01299,2.04862,-0.38686
+1.98944,0.96124,-1.32988,-1.52249,-1.01325,2.04896,-0.38719
+1.99014,0.96080,-1.33048,-1.52178,-1.01351,2.04929,-0.38753
+1.99083,0.96037,-1.33106,-1.52109,-1.01376,2.04961,-0.38785
+1.99153,0.95994,-1.33164,-1.52041,-1.01401,2.04994,-0.38817
+1.99222,0.95952,-1.33221,-1.51974,-1.01426,2.05025,-0.38849
+1.99291,0.95910,-1.33276,-1.51908,-1.01450,2.05056,-0.38880
+1.99361,0.95870,-1.33331,-1.51843,-1.01474,2.05087,-0.38911
+1.99430,0.95830,-1.33385,-1.51779,-1.01498,2.05117,-0.38941
+1.99500,0.95790,-1.33438,-1.51717,-1.01522,2.05146,-0.38970
+1.99569,0.95752,-1.33490,-1.51655,-1.01545,2.05176,-0.38999
+1.99639,0.95714,-1.33541,-1.51594,-1.01568,2.05204,-0.39028
+1.99708,0.95676,-1.33591,-1.51534,-1.01591,2.05232,-0.39056
+1.99778,0.95639,-1.33641,-1.51474,-1.01613,2.05260,-0.39084
+1.99847,0.95603,-1.33689,-1.51416,-1.01635,2.05287,-0.39111
+1.99917,0.95568,-1.33737,-1.51359,-1.01657,2.05314,-0.39138
+1.99986,0.95533,-1.33784,-1.51303,-1.01679,2.05340,-0.39165
+2.00056,0.95498,-1.33830,-1.51247,-1.01700,2.05366,-0.39191
+2.00125,0.95464,-1.33876,-1.51192,-1.01722,2.05392,-0.39216
+2.00194,0.95431,-1.33920,-1.51139,-1.01742,2.05417,-0.39242
+2.00264,0.95398,-1.33964,-1.51086,-1.01763,2.05441,-0.39267
+2.00333,0.95366,-1.34007,-1.51033,-1.01783,2.05466,-0.39291
+2.00403,0.95335,-1.34050,-1.50982,-1.01804,2.05489,-0.39315
+2.00472,0.95303,-1.34091,-1.50932,-1.01823,2.05513,-0.39339
+2.00542,0.95273,-1.34132,-1.50882,-1.01843,2.05536,-0.39362
+2.00611,0.95243,-1.34173,-1.50833,-1.01862,2.05559,-0.39385
+2.00681,0.95213,-1.34212,-1.50785,-1.01882,2.05581,-0.39407
+2.00750,0.95184,-1.34251,-1.50737,-1.01900,2.05603,-0.39430
+2.00820,0.95152,-1.34294,-1.50686,-1.01920,2.05627,-0.39454
+2.00889,0.95092,-1.34372,-1.50597,-1.01951,2.05671,-0.39499
+2.00959,0.95034,-1.34450,-1.50510,-1.01981,2.05715,-0.39543
+2.01028,0.94976,-1.34526,-1.50424,-1.02011,2.05758,-0.39586
+2.01098,0.94919,-1.34600,-1.50339,-1.02040,2.05800,-0.39629
+2.01167,0.94863,-1.34674,-1.50256,-1.02070,2.05842,-0.39671
+2.01236,0.94809,-1.34746,-1.50173,-1.02098,2.05883,-0.39712
+2.01306,0.94755,-1.34817,-1.50092,-1.02127,2.05923,-0.39752
+2.01375,0.94702,-1.34887,-1.50013,-1.02155,2.05962,-0.39792
+2.01445,0.94650,-1.34956,-1.49934,-1.02183,2.06001,-0.39832
+2.01514,0.94599,-1.35023,-1.49857,-1.02211,2.06039,-0.39870
+2.01584,0.94548,-1.35090,-1.49781,-1.02238,2.06077,-0.39908
+2.01653,0.94499,-1.35155,-1.49706,-1.02265,2.06113,-0.39946
+2.01723,0.94450,-1.35219,-1.49632,-1.02292,2.06150,-0.39982
+2.01792,0.94402,-1.35282,-1.49559,-1.02318,2.06185,-0.40019
+2.01862,0.94356,-1.35344,-1.49488,-1.02345,2.06220,-0.40054
+2.01931,0.94309,-1.35405,-1.49417,-1.02370,2.06255,-0.40089
+2.02001,0.94264,-1.35465,-1.49348,-1.02396,2.06289,-0.40124
+2.02070,0.94219,-1.35524,-1.49280,-1.02421,2.06322,-0.40158
+2.02139,0.94176,-1.35581,-1.49212,-1.02446,2.06355,-0.40191
+2.02209,0.94133,-1.35638,-1.49146,-1.02471,2.06387,-0.40224
+2.02278,0.94090,-1.35694,-1.49081,-1.02495,2.06418,-0.40256
+2.02348,0.94049,-1.35749,-1.49016,-1.02519,2.06450,-0.40288
+2.02417,0.94008,-1.35803,-1.48953,-1.02543,2.06480,-0.40319
+2.02487,0.93967,-1.35857,-1.48891,-1.02567,2.06510,-0.40350
+2.02556,0.93928,-1.35909,-1.48830,-1.02590,2.06540,-0.40380
+2.02626,0.93889,-1.35960,-1.48769,-1.02613,2.06569,-0.40410
+2.02695,0.93851,-1.36011,-1.48710,-1.02636,2.06597,-0.40439
+2.02765,0.93813,-1.36060,-1.48651,-1.02658,2.06626,-0.40468
+2.02834,0.93776,-1.36109,-1.48594,-1.02680,2.06653,-0.40496
+2.02904,0.93740,-1.36157,-1.48537,-1.02702,2.06680,-0.40524
+2.02973,0.93704,-1.36204,-1.48481,-1.02724,2.06707,-0.40551
+2.03043,0.93669,-1.36251,-1.48426,-1.02745,2.06734,-0.40578
+2.03112,0.93634,-1.36296,-1.48372,-1.02766,2.06759,-0.40605
+2.03181,0.93600,-1.36341,-1.48318,-1.02787,2.06785,-0.40631
+2.03251,0.93567,-1.36385,-1.48266,-1.02808,2.06810,-0.40657
+2.03320,0.93534,-1.36429,-1.48214,-1.02828,2.06835,-0.40682
+2.03390,0.93502,-1.36471,-1.48163,-1.02848,2.06859,-0.40707
+2.03459,0.93470,-1.36513,-1.48113,-1.02868,2.06883,-0.40731
+2.03529,0.93439,-1.36554,-1.48064,-1.02888,2.06906,-0.40755
+2.03598,0.93408,-1.36595,-1.48015,-1.02907,2.06929,-0.40779
+2.03668,0.93378,-1.36635,-1.47967,-1.02927,2.06952,-0.40802
+2.03737,0.93348,-1.36674,-1.47920,-1.02945,2.06974,-0.40825
+2.03807,0.93319,-1.36712,-1.47874,-1.02964,2.06996,-0.40848
+2.03876,0.93296,-1.36741,-1.47841,-1.02977,2.07013,-0.40865
+2.03946,0.93219,-1.36837,-1.47737,-1.03011,2.07070,-0.40923
+2.04015,0.93143,-1.36932,-1.47635,-1.03045,2.07125,-0.40981
+2.04084,0.93069,-1.37025,-1.47535,-1.03079,2.07180,-0.41038
+2.04154,0.92996,-1.37117,-1.47436,-1.03113,2.07234,-0.41093
+2.04223,0.92924,-1.37207,-1.47338,-1.03146,2.07288,-0.41148
+2.04293,0.92853,-1.37295,-1.47242,-1.03179,2.07340,-0.41202
+2.04362,0.92784,-1.37382,-1.47148,-1.03211,2.07391,-0.41255
+2.04432,0.92715,-1.37468,-1.47054,-1.03243,2.07441,-0.41307
+2.04501,0.92649,-1.37552,-1.46963,-1.03275,2.07491,-0.41358
+2.04571,0.92583,-1.37635,-1.46872,-1.03307,2.07539,-0.41408
+2.04640,0.92518,-1.37716,-1.46783,-1.03338,2.07587,-0.41458
+2.04710,0.92455,-1.37796,-1.46695,-1.03369,2.07634,-0.41506
+2.04779,0.92392,-1.37874,-1.46609,-1.03400,2.07680,-0.41554
+2.04849,0.92331,-1.37952,-1.46524,-1.03430,2.07725,-0.41601
+2.04918,0.92271,-1.38028,-1.46440,-1.03460,2.07770,-0.41647
+2.04987,0.92212,-1.38102,-1.46357,-1.03489,2.07813,-0.41693
+2.05057,0.92154,-1.38176,-1.46276,-1.03519,2.07856,-0.41737
+2.05126,0.92096,-1.38248,-1.46195,-1.03548,2.07899,-0.41781
+2.05196,0.92040,-1.38319,-1.46116,-1.03577,2.07940,-0.41825
+2.05265,0.91985,-1.38388,-1.46039,-1.03605,2.07981,-0.41867
+2.05335,0.91931,-1.38457,-1.45962,-1.03633,2.08021,-0.41909
+2.05404,0.91878,-1.38524,-1.45887,-1.03661,2.08060,-0.41950
+2.05474,0.91825,-1.38591,-1.45812,-1.03688,2.08099,-0.41991
+2.05543,0.91774,-1.38656,-1.45739,-1.03716,2.08137,-0.42030
+2.05613,0.91724,-1.38720,-1.45667,-1.03743,2.08174,-0.42069
+2.05682,0.91674,-1.38783,-1.45596,-1.03769,2.08211,-0.42108
+2.05752,0.91625,-1.38845,-1.45526,-1.03796,2.08247,-0.42146
+2.05821,0.91577,-1.38906,-1.45457,-1.03822,2.08283,-0.42183
+2.05891,0.91530,-1.38965,-1.45389,-1.03847,2.08318,-0.42220
+2.05960,0.91484,-1.39024,-1.45322,-1.03873,2.08352,-0.42256
+2.06029,0.91438,-1.39082,-1.45256,-1.03898,2.08386,-0.42291
+2.06099,0.91394,-1.39139,-1.45192,-1.03923,2.08419,-0.42326
+2.06168,0.91350,-1.39195,-1.45128,-1.03947,2.08451,-0.42360
+2.06238,0.91306,-1.39250,-1.45065,-1.03972,2.08484,-0.42394
+2.06307,0.91264,-1.39304,-1.45003,-1.03996,2.08515,-0.42427
+2.06377,0.91222,-1.39357,-1.44942,-1.04020,2.08546,-0.42460
+2.06446,0.91181,-1.39409,-1.44882,-1.04043,2.08576,-0.42492
+2.06516,0.91141,-1.39461,-1.44823,-1.04066,2.08606,-0.42523
+2.06585,0.91101,-1.39511,-1.44764,-1.04089,2.08636,-0.42554
+2.06655,0.91062,-1.39561,-1.44707,-1.04112,2.08665,-0.42585
+2.06724,0.91024,-1.39609,-1.44651,-1.04134,2.08693,-0.42615
+2.06794,0.90986,-1.39657,-1.44595,-1.04156,2.08721,-0.42644
+2.06863,0.90949,-1.39705,-1.44540,-1.04178,2.08749,-0.42673
+2.06932,0.90913,-1.39751,-1.44486,-1.04200,2.08776,-0.42702
+2.07002,0.90877,-1.39797,-1.44433,-1.04221,2.08802,-0.42730
+2.07071,0.90842,-1.39841,-1.44381,-1.04242,2.08828,-0.42758
+2.07141,0.90808,-1.39885,-1.44329,-1.04263,2.08854,-0.42785
+2.07210,0.90774,-1.39929,-1.44278,-1.04284,2.08879,-0.42812
+2.07280,0.90740,-1.39971,-1.44228,-1.04304,2.08904,-0.42838
+2.07349,0.90707,-1.40013,-1.44179,-1.04325,2.08928,-0.42864
+2.07419,0.90675,-1.40055,-1.44131,-1.04344,2.08952,-0.42889
+2.07488,0.90643,-1.40095,-1.44083,-1.04364,2.08976,-0.42914
+2.07558,0.90612,-1.40135,-1.44036,-1.04383,2.08999,-0.42939
+2.07627,0.90582,-1.40174,-1.43990,-1.04403,2.09022,-0.42963
+2.07697,0.90551,-1.40212,-1.43944,-1.04422,2.09045,-0.42987
+2.07766,0.90522,-1.40250,-1.43899,-1.04440,2.09067,-0.43011
+2.07836,0.90505,-1.40272,-1.43874,-1.04450,2.09079,-0.43024
+2.07905,0.90453,-1.40334,-1.43807,-1.04475,2.09117,-0.43064
+2.07974,0.90402,-1.40395,-1.43741,-1.04499,2.09155,-0.43104
+2.08044,0.90352,-1.40456,-1.43675,-1.04524,2.09191,-0.43143
+2.08113,0.90303,-1.40515,-1.43611,-1.04548,2.09227,-0.43182
+2.08183,0.90255,-1.40573,-1.43547,-1.04571,2.09263,-0.43219
+2.08252,0.90208,-1.40631,-1.43485,-1.04595,2.09298,-0.43256
+2.08322,0.90161,-1.40687,-1.43423,-1.04618,2.09332,-0.43293
+2.08391,0.90115,-1.40743,-1.43363,-1.04641,2.09366,-0.43329
+2.08461,0.90070,-1.40797,-1.43303,-1.04663,2.09399,-0.43364
+2.08530,0.90026,-1.40851,-1.43244,-1.04686,2.09431,-0.43399
+2.08600,0.89983,-1.40903,-1.43186,-1.04708,2.09463,-0.43433
+2.08669,0.89940,-1.40955,-1.43129,-1.04730,2.09495,-0.43467
+2.08739,0.89898,-1.41006,-1.43073,-1.04752,2.09526,-0.43500
+2.08808,0.89857,-1.41056,-1.43017,-1.04773,2.09556,-0.43532
+2.08877,0.89816,-1.41106,-1.42963,-1.04794,2.09586,-0.43564
+2.08947,0.89777,-1.41154,-1.42909,-1.04815,2.09615,-0.43596
+2.09016,0.89738,-1.41202,-1.42856,-1.04836,2.09644,-0.43627
+2.09086,0.89699,-1.41248,-1.42804,-1.04857,2.09672,-0.43657
+2.09155,0.89661,-1.41294,-1.42753,-1.04877,2.09700,-0.43687
+2.09225,0.89624,-1.41340,-1.42702,-1.04897,2.09728,-0.43716
+2.09294,0.89588,-1.41384,-1.42652,-1.04917,2.09755,-0.43745
+2.09364,0.89552,-1.41428,-1.42603,-1.04936,2.09781,-0.43774
+2.09433,0.89517,-1.41471,-1.42555,-1.04956,2.09807,-0.43802
+2.09503,0.89482,-1.41513,-1.42507,-1.04975,2.09833,-0.43829
+2.09572,0.89448,-1.41555,-1.42460,-1.04994,2.09858,-0.43856
+2.09642,0.89414,-1.41595,-1.42414,-1.05012,2.09883,-0.43883
+2.09711,0.89381,-1.41636,-1.42368,-1.05031,2.09907,-0.43909
+2.09780,0.89349,-1.41675,-1.42324,-1.05049,2.09931,-0.43935
+2.09850,0.89317,-1.41714,-1.42280,-1.05067,2.09954,-0.43960
+2.09919,0.89286,-1.41752,-1.42236,-1.05085,2.09978,-0.43985
+2.09989,0.89255,-1.41790,-1.42193,-1.05103,2.10000,-0.44010
+2.10058,0.89228,-1.41823,-1.42156,-1.05117,2.10021,-0.44032
+2.10128,0.89163,-1.41895,-1.42084,-1.05143,2.10067,-0.44082
+2.10197,0.89101,-1.41966,-1.42012,-1.05168,2.10113,-0.44132
+2.10267,0.89039,-1.42036,-1.41941,-1.05193,2.10158,-0.44180
+2.10336,0.88978,-1.42105,-1.41872,-1.05217,2.10203,-0.44228
+2.10406,0.88918,-1.42173,-1.41803,-1.05241,2.10246,-0.44275
+2.10475,0.88860,-1.42240,-1.41736,-1.05266,2.10289,-0.44321
+2.10545,0.88802,-1.42305,-1.41669,-1.05289,2.10331,-0.44367
+2.10614,0.88746,-1.42369,-1.41603,-1.05313,2.10372,-0.44412
+2.10684,0.88690,-1.42432,-1.41539,-1.05337,2.10413,-0.44455
+2.10753,0.88636,-1.42495,-1.41475,-1.05360,2.10452,-0.44499
+2.10822,0.88582,-1.42556,-1.41412,-1.05383,2.10491,-0.44541
+2.10892,0.88530,-1.42616,-1.41350,-1.05405,2.10530,-0.44583
+2.10961,0.88478,-1.42675,-1.41289,-1.05428,2.10568,-0.44624
+2.11031,0.88427,-1.42733,-1.41229,-1.05450,2.10605,-0.44664
+2.11100,0.88377,-1.42790,-1.41170,-1.05472,2.10641,-0.44704
+2.11170,0.88328,-1.42846,-1.41112,-1.05494,2.10677,-0.44743
+2.11239,0.88280,-1.42902,-1.41054,-1.05516,2.10712,-0.44781
+2.11309,0.88233,-1.42956,-1.40998,-1.05537,2.10747,-0.44819
+2.11378,0.88186,-1.43009,-1.40942,-1.05558,2.10781,-0.44856
+2.11448,0.88140,-1.43062,-1.40887,-1.05579,2.10814,-0.44893
+2.11517,0.88096,-1.43113,-1.40833,-1.05600,2.10847,-0.44929
+2.11587,0.88051,-1.43164,-1.40779,-1.05621,2.10879,-0.44964
+2.11656,0.88008,-1.43214,-1.40727,-1.05641,2.10911,-0.44998
+2.11725,0.87966,-1.43263,-1.40675,-1.05661,2.10942,-0.45033
+2.11795,0.87924,-1.43311,-1.40624,-1.05681,2.10973,-0.45066
+2.11864,0.87883,-1.43358,-1.40574,-1.05700,2.11003,-0.45099
+2.11934,0.87842,-1.43405,-1.40524,-1.05720,2.11032,-0.45132
+2.12003,0.87802,-1.43451,-1.40476,-1.05739,2.11062,-0.45163
+2.12073,0.87763,-1.43496,-1.40427,-1.05758,2.11090,-0.45195
+2.12142,0.87725,-1.43540,-1.40380,-1.05777,2.11118,-0.45226
+2.12212,0.87687,-1.43584,-1.40334,-1.05796,2.11146,-0.45256
+2.12281,0.87650,-1.43626,-1.40288,-1.05814,2.11173,-0.45286
+2.12351,0.87614,-1.43669,-1.40242,-1.05832,2.11200,-0.45315
+2.12420,0.87578,-1.43710,-1.40198,-1.05850,2.11226,-0.45344
+2.12490,0.87543,-1.43751,-1.40154,-1.05868,2.11252,-0.45372
+2.12559,0.87509,-1.43791,-1.40111,-1.05886,2.11277,-0.45400
+2.12629,0.87475,-1.43830,-1.40068,-1.05903,2.11302,-0.45428
+2.12698,0.87441,-1.43869,-1.40026,-1.05920,2.11326,-0.45455
+2.12767,0.87409,-1.43907,-1.39985,-1.05937,2.11350,-0.45481
+2.12837,0.87376,-1.43944,-1.39944,-1.05954,2.11374,-0.45507
+2.12906,0.87345,-1.43981,-1.39904,-1.05971,2.11397,-0.45533
+2.12976,0.87313,-1.44016,-1.39866,-1.05986,2.11420,-0.45558
+2.13045,0.87248,-1.44083,-1.39805,-1.06007,2.11468,-0.45611
+2.13115,0.87183,-1.44149,-1.39744,-1.06027,2.11514,-0.45662
+2.13184,0.87120,-1.44214,-1.39685,-1.06048,2.11560,-0.45713
+2.13254,0.87058,-1.44278,-1.39626,-1.06068,2.11605,-0.45762
+2.13323,0.86997,-1.44340,-1.39568,-1.06089,2.11649,-0.45811
+2.13393,0.86937,-1.44402,-1.39511,-1.06109,2.11692,-0.45859
+2.13462,0.86878,-1.44462,-1.39455,-1.06129,2.11735,-0.45906
+2.13532,0.86821,-1.44522,-1.39400,-1.06148,2.11777,-0.45953
+2.13601,0.86764,-1.44581,-1.39345,-1.06168,2.11818,-0.45998
+2.13670,0.86708,-1.44638,-1.39291,-1.06187,2.11858,-0.46043
+2.13740,0.86654,-1.44695,-1.39238,-1.06206,2.11898,-0.46087
+2.13809,0.86600,-1.44750,-1.39186,-1.06225,2.11937,-0.46131
+2.13879,0.86547,-1.44805,-1.39134,-1.06244,2.11975,-0.46173
+2.13948,0.86495,-1.44859,-1.39083,-1.06263,2.12013,-0.46215
+2.14018,0.86444,-1.44911,-1.39033,-1.06282,2.12049,-0.46256
+2.14087,0.86394,-1.44963,-1.38984,-1.06300,2.12086,-0.46297
+2.14157,0.86345,-1.45015,-1.38935,-1.06318,2.12121,-0.46337
+2.14226,0.86297,-1.45065,-1.38887,-1.06336,2.12156,-0.46376
+2.14296,0.86249,-1.45114,-1.38840,-1.06354,2.12191,-0.46414
+2.14365,0.86203,-1.45163,-1.38793,-1.06372,2.12225,-0.46452
+2.14435,0.86157,-1.45210,-1.38747,-1.06389,2.12258,-0.46489
+2.14504,0.86112,-1.45257,-1.38702,-1.06406,2.12290,-0.46526
+2.14573,0.86068,-1.45303,-1.38657,-1.06424,2.12322,-0.46562
+2.14643,0.86025,-1.45349,-1.38613,-1.06441,2.12354,-0.46597
+2.14712,0.85982,-1.45393,-1.38570,-1.06457,2.12385,-0.46632
+2.14782,0.85940,-1.45437,-1.38527,-1.06474,2.12415,-0.46666
+2.14851,0.85899,-1.45480,-1.38485,-1.06491,2.12445,-0.46699
+2.14921,0.85859,-1.45523,-1.38444,-1.06507,2.12475,-0.46732
+2.14990,0.85819,-1.45564,-1.38403,-1.06523,2.12503,-0.46765
+2.15060,0.85780,-1.45605,-1.38363,-1.06539,2.12532,-0.46797
+2.15129,0.85741,-1.45646,-1.38323,-1.06555,2.12560,-0.46828
+2.15199,0.85704,-1.45685,-1.38284,-1.06571,2.12587,-0.46859
+2.15268,0.85667,-1.45724,-1.38245,-1.06586,2.12614,-0.46889
+2.15338,0.85630,-1.45763,-1.38207,-1.06602,2.12640,-0.46919
+2.15407,0.85595,-1.45800,-1.38170,-1.06617,2.12666,-0.46949
+2.15477,0.85559,-1.45837,-1.38133,-1.06632,2.12692,-0.46977
+2.15546,0.85525,-1.45874,-1.38097,-1.06647,2.12717,-0.47006
+2.15615,0.85491,-1.45909,-1.38061,-1.06661,2.12742,-0.47034
+2.15685,0.85458,-1.45945,-1.38026,-1.06676,2.12766,-0.47061
+2.15754,0.85423,-1.45980,-1.37991,-1.06690,2.12791,-0.47090
+2.15824,0.85371,-1.46026,-1.37955,-1.06703,2.12829,-0.47132
+2.15893,0.85320,-1.46070,-1.37920,-1.06715,2.12865,-0.47173
+2.15963,0.85270,-1.46114,-1.37885,-1.06727,2.12901,-0.47214
+2.16032,0.85221,-1.46157,-1.37851,-1.06740,2.12937,-0.47255
+2.16102,0.85173,-1.46199,-1.37817,-1.06752,2.12972,-0.47294
+2.16171,0.85125,-1.46241,-1.37784,-1.06764,2.13006,-0.47333
+2.16241,0.85079,-1.46282,-1.37751,-1.06776,2.13040,-0.47371
+2.16310,0.85033,-1.46322,-1.37719,-1.06788,2.13073,-0.47409
+2.16380,0.84988,-1.46362,-1.37687,-1.06800,2.13105,-0.47445
+2.16449,0.84944,-1.46401,-1.37656,-1.06811,2.13137,-0.47482
+2.16518,0.84900,-1.46439,-1.37625,-1.06823,2.13168,-0.47517
+2.16588,0.84858,-1.46476,-1.37594,-1.06834,2.13199,-0.47552
+2.16657,0.84816,-1.46513,-1.37564,-1.06846,2.13229,-0.47587
+2.16727,0.84775,-1.46550,-1.37534,-1.06857,2.13259,-0.47621
+2.16796,0.84734,-1.46585,-1.37505,-1.06868,2.13288,-0.47654
+2.16866,0.84695,-1.46621,-1.37476,-1.06880,2.13317,-0.47687
+2.16935,0.84656,-1.46655,-1.37448,-1.06891,2.13345,-0.47719
+2.17005,0.84617,-1.46689,-1.37420,-1.06902,2.13373,-0.47751
+2.17074,0.84580,-1.46722,-1.37392,-1.06913,2.13400,-0.47782
+2.17144,0.84543,-1.46755,-1.37365,-1.06923,2.13426,-0.47812
+2.17213,0.84506,-1.46788,-1.37338,-1.06934,2.13453,-0.47842
+2.17283,0.84471,-1.46819,-1.37311,-1.06945,2.13479,-0.47872
+2.17352,0.84441,-1.46845,-1.37290,-1.06953,2.13500,-0.47896
+2.17422,0.84396,-1.46881,-1.37266,-1.06961,2.13533,-0.47934
+2.17491,0.84351,-1.46916,-1.37241,-1.06970,2.13565,-0.47971
+2.17560,0.84306,-1.46951,-1.37218,-1.06979,2.13597,-0.48007
+2.17630,0.84263,-1.46985,-1.37194,-1.06987,2.13628,-0.48043
+2.17699,0.84220,-1.47019,-1.37171,-1.06995,2.13659,-0.48078
+2.17769,0.84178,-1.47052,-1.37148,-1.07004,2.13689,-0.48113
+2.17838,0.84137,-1.47085,-1.37125,-1.07012,2.13718,-0.48147
+2.17908,0.84097,-1.47117,-1.37103,-1.07020,2.13747,-0.48181
+2.17977,0.84057,-1.47148,-1.37081,-1.07029,2.13776,-0.48213
+2.18047,0.84018,-1.47179,-1.37059,-1.07037,2.13804,-0.48246
+2.18116,0.83980,-1.47210,-1.37037,-1.07045,2.13832,-0.48278
+2.18186,0.83942,-1.47239,-1.37016,-1.07053,2.13859,-0.48309
+2.18255,0.83905,-1.47269,-1.36995,-1.07061,2.13885,-0.48340
+2.18325,0.83867,-1.47298,-1.36975,-1.07069,2.13913,-0.48371
+2.18394,0.83819,-1.47330,-1.36961,-1.07072,2.13947,-0.48411
+2.18463,0.83771,-1.47361,-1.36948,-1.07076,2.13982,-0.48451
+2.18533,0.83724,-1.47391,-1.36934,-1.07080,2.14015,-0.48490
+2.18602,0.83678,-1.47422,-1.36921,-1.07084,2.14048,-0.48528
+2.18672,0.83632,-1.47451,-1.36908,-1.07088,2.14081,-0.48566
+2.18741,0.83588,-1.47480,-1.36894,-1.07092,2.14113,-0.48603
+2.18811,0.83544,-1.47509,-1.36881,-1.07096,2.14144,-0.48639
+2.18880,0.83501,-1.47537,-1.36869,-1.07100,2.14175,-0.48675
+2.18950,0.83459,-1.47564,-1.36856,-1.07104,2.14205,-0.48710
+2.19019,0.83417,-1.47592,-1.36843,-1.07108,2.14235,-0.48744
+2.19089,0.83377,-1.47618,-1.36831,-1.07112,2.14264,-0.48778
+2.19158,0.83337,-1.47645,-1.36819,-1.07116,2.14293,-0.48812
+2.19228,0.83297,-1.47670,-1.36807,-1.07120,2.14321,-0.48844
+2.19297,0.83259,-1.47696,-1.36795,-1.07124,2.14349,-0.48877
+2.19366,0.83221,-1.47721,-1.36783,-1.07128,2.14376,-0.48908
+2.19436,0.83197,-1.47736,-1.36776,-1.07130,2.14393,-0.48928
+2.19505,0.83146,-1.47765,-1.36770,-1.07131,2.14429,-0.48970
+2.19575,0.83096,-1.47793,-1.36764,-1.07131,2.14465,-0.49012
+2.19644,0.83047,-1.47821,-1.36758,-1.07132,2.14500,-0.49053
+2.19714,0.82999,-1.47848,-1.36751,-1.07132,2.14535,-0.49093
+2.19783,0.82951,-1.47875,-1.36745,-1.07133,2.14568,-0.49133
+2.19853,0.82905,-1.47902,-1.36739,-1.07134,2.14602,-0.49171
+2.19922,0.82859,-1.47928,-1.36733,-1.07135,2.14634,-0.49210
+2.19992,0.82814,-1.47953,-1.36727,-1.07135,2.14666,-0.49247
+2.20061,0.82770,-1.47979,-1.36721,-1.07136,2.14698,-0.49284
+2.20131,0.82727,-1.48003,-1.36715,-1.07137,2.14729,-0.49320
+2.20200,0.82684,-1.48028,-1.36709,-1.07139,2.14759,-0.49356
+2.20270,0.82642,-1.48052,-1.36703,-1.07140,2.14789,-0.49391
+2.20339,0.82601,-1.48075,-1.36697,-1.07141,2.14818,-0.49425
+2.20408,0.82561,-1.48098,-1.36691,-1.07142,2.14847,-0.49459
+2.20478,0.82521,-1.48121,-1.36685,-1.07143,2.14875,-0.49492
+2.20547,0.82482,-1.48143,-1.36679,-1.07145,2.14903,-0.49525
+2.20617,0.82444,-1.48165,-1.36673,-1.07146,2.14930,-0.49557
+2.20686,0.82411,-1.48182,-1.36673,-1.07145,2.14954,-0.49585
+2.20756,0.82343,-1.48194,-1.36711,-1.07126,2.15002,-0.49641
+2.20825,0.82277,-1.48207,-1.36748,-1.07107,2.15049,-0.49697
+2.20895,0.82212,-1.48219,-1.36784,-1.07089,2.15095,-0.49751
+2.20964,0.82147,-1.48231,-1.36819,-1.07071,2.15140,-0.49805
+2.21034,0.82084,-1.48243,-1.36854,-1.07053,2.15185,-0.49858
+2.21103,0.82023,-1.48255,-1.36888,-1.07036,2.15229,-0.49910
+2.21173,0.81962,-1.48266,-1.36922,-1.07019,2.15272,-0.49960
+2.21242,0.81902,-1.48278,-1.36955,-1.07003,2.15314,-0.50010
+2.21311,0.81844,-1.48289,-1.36987,-1.06986,2.15355,-0.50060
+2.21381,0.81786,-1.48300,-1.37018,-1.06971,2.15396,-0.50108
+2.21450,0.81730,-1.48311,-1.37049,-1.06955,2.15436,-0.50155
+2.21520,0.81675,-1.48321,-1.37080,-1.06940,2.15475,-0.50202
+2.21589,0.81620,-1.48332,-1.37109,-1.06925,2.15514,-0.50248
+2.21659,0.81567,-1.48342,-1.37139,-1.06911,2.15551,-0.50293
+2.21728,0.81514,-1.48352,-1.37167,-1.06896,2.15588,-0.50337
+2.21798,0.81463,-1.48362,-1.37195,-1.06882,2.15625,-0.50380
+2.21867,0.81412,-1.48372,-1.37223,-1.06869,2.15661,-0.50423
+2.21937,0.81363,-1.48381,-1.37250,-1.06855,2.15696,-0.50465
+2.22006,0.81314,-1.48391,-1.37277,-1.06842,2.15730,-0.50506
+2.22076,0.81266,-1.48400,-1.37303,-1.06829,2.15764,-0.50547
+2.22145,0.81219,-1.48409,-1.37328,-1.06817,2.15798,-0.50587
+2.22215,0.81173,-1.48418,-1.37353,-1.06804,2.15830,-0.50626
+2.22284,0.81127,-1.48427,-1.37378,-1.06792,2.15862,-0.50664
+2.22353,0.81083,-1.48436,-1.37402,-1.06781,2.15894,-0.50702
+2.22423,0.81039,-1.48444,-1.37426,-1.06769,2.15925,-0.50739
+2.22492,0.80996,-1.48453,-1.37449,-1.06758,2.15955,-0.50775
+2.22562,0.80954,-1.48461,-1.37471,-1.06747,2.15985,-0.50811
+2.22631,0.80913,-1.48469,-1.37494,-1.06736,2.16015,-0.50846
+2.22701,0.80872,-1.48477,-1.37516,-1.06725,2.16043,-0.50881
+2.22770,0.80832,-1.48485,-1.37537,-1.06715,2.16072,-0.50915
+2.22840,0.80793,-1.48492,-1.37558,-1.06705,2.16099,-0.50948
+2.22909,0.80754,-1.48500,-1.37579,-1.06695,2.16127,-0.50981
+2.22979,0.80716,-1.48507,-1.37599,-1.06685,2.16154,-0.51013
+2.23048,0.80679,-1.48515,-1.37619,-1.06675,2.16180,-0.51045
+2.23118,0.80643,-1.48522,-1.37639,-1.06666,2.16206,-0.51076
+2.23187,0.80607,-1.48529,-1.37658,-1.06657,2.16231,-0.51107
+2.23256,0.80599,-1.48529,-1.37664,-1.06654,2.16237,-0.51114
+2.23326,0.80553,-1.48528,-1.37708,-1.06634,2.16269,-0.51153
+2.23395,0.80508,-1.48526,-1.37750,-1.06614,2.16301,-0.51191
+2.23465,0.80464,-1.48524,-1.37793,-1.06595,2.16332,-0.51228
+2.23534,0.80421,-1.48522,-1.37834,-1.06576,2.16362,-0.51265
+2.23604,0.80378,-1.48521,-1.37874,-1.06558,2.16392,-0.51301
+2.23673,0.80337,-1.48519,-1.37914,-1.06540,2.16422,-0.51337
+2.23743,0.80296,-1.48517,-1.37953,-1.06522,2.16451,-0.51372
+2.23812,0.80256,-1.48516,-1.37992,-1.06504,2.16479,-0.51406
+2.23882,0.80216,-1.48514,-1.38030,-1.06487,2.16507,-0.51440
+2.23951,0.80177,-1.48512,-1.38067,-1.06470,2.16534,-0.51473
+2.24021,0.80139,-1.48511,-1.38103,-1.06454,2.16561,-0.51506
+2.24090,0.80102,-1.48509,-1.38139,-1.06437,2.16588,-0.51538
+2.24159,0.80065,-1.48508,-1.38174,-1.06421,2.16614,-0.51569
+2.24229,0.80029,-1.48506,-1.38209,-1.06406,2.16639,-0.51600
+2.24298,0.79994,-1.48505,-1.38243,-1.06390,2.16664,-0.51631
+2.24368,0.79959,-1.48504,-1.38276,-1.06375,2.16689,-0.51660
+2.24437,0.79925,-1.48502,-1.38309,-1.06360,2.16713,-0.51690
+2.24507,0.79891,-1.48501,-1.38341,-1.06346,2.16736,-0.51718
+2.24576,0.79858,-1.48499,-1.38372,-1.06331,2.16760,-0.51747
+2.24646,0.79831,-1.48496,-1.38402,-1.06318,2.16779,-0.51770
+2.24715,0.79786,-1.48474,-1.38481,-1.06284,2.16811,-0.51809
+2.24785,0.79741,-1.48452,-1.38558,-1.06250,2.16842,-0.51847
+2.24854,0.79698,-1.48430,-1.38634,-1.06217,2.16872,-0.51885
+2.24924,0.79655,-1.48409,-1.38709,-1.06184,2.16902,-0.51921
+2.24993,0.79613,-1.48388,-1.38782,-1.06152,2.16932,-0.51957
+2.25063,0.79572,-1.48368,-1.38855,-1.06121,2.16961,-0.51993
+2.25132,0.79531,-1.48348,-1.38926,-1.06090,2.16989,-0.52028
+2.25201,0.79491,-1.48328,-1.38995,-1.06060,2.17017,-0.52062
+2.25271,0.79452,-1.48309,-1.39064,-1.06030,2.17045,-0.52096
+2.25340,0.79414,-1.48290,-1.39131,-1.06000,2.17071,-0.52129
+2.25410,0.79376,-1.48271,-1.39197,-1.05971,2.17098,-0.52161
+2.25479,0.79339,-1.48252,-1.39262,-1.05943,2.17124,-0.52193
+2.25549,0.79303,-1.48234,-1.39326,-1.05915,2.17149,-0.52224
+2.25618,0.79267,-1.48216,-1.39389,-1.05887,2.17174,-0.52255
+2.25688,0.79232,-1.48199,-1.39451,-1.05860,2.17199,-0.52285
+2.25757,0.79198,-1.48182,-1.39512,-1.05834,2.17223,-0.52315
+2.25827,0.79164,-1.48165,-1.39571,-1.05808,2.17247,-0.52344
+2.25896,0.79131,-1.48148,-1.39630,-1.05782,2.17270,-0.52372
+2.25966,0.79099,-1.48132,-1.39687,-1.05757,2.17293,-0.52400
+2.26035,0.79067,-1.48116,-1.39744,-1.05732,2.17315,-0.52428
+2.26104,0.79036,-1.48100,-1.39800,-1.05707,2.17337,-0.52455
+2.26174,0.79005,-1.48084,-1.39854,-1.05683,2.17359,-0.52481
+2.26243,0.78975,-1.48069,-1.39908,-1.05660,2.17380,-0.52507
+2.26313,0.78945,-1.48054,-1.39961,-1.05637,2.17401,-0.52533
+2.26382,0.78916,-1.48039,-1.40013,-1.05614,2.17421,-0.52558
+2.26452,0.78888,-1.48025,-1.40064,-1.05591,2.17441,-0.52583
+2.26521,0.78859,-1.48010,-1.40114,-1.05569,2.17461,-0.52607
+2.26591,0.78832,-1.47996,-1.40163,-1.05547,2.17480,-0.52631
+2.26660,0.78805,-1.47982,-1.40212,-1.05526,2.17499,-0.52654
+2.26730,0.78778,-1.47969,-1.40259,-1.05505,2.17518,-0.52677
+2.26799,0.78752,-1.47955,-1.40306,-1.05484,2.17536,-0.52700
+2.26869,0.78727,-1.47942,-1.40352,-1.05464,2.17554,-0.52722
+2.26938,0.78710,-1.47930,-1.40389,-1.05448,2.17566,-0.52736
+2.27008,0.78667,-1.47874,-1.40524,-1.05391,2.17596,-0.52774
+2.27077,0.78625,-1.47818,-1.40657,-1.05335,2.17625,-0.52810
+2.27146,0.78584,-1.47763,-1.40788,-1.05280,2.17654,-0.52846
+2.27216,0.78543,-1.47710,-1.40917,-1.05225,2.17682,-0.52881
+2.27285,0.78504,-1.47657,-1.41043,-1.05172,2.17709,-0.52915
+2.27355,0.78465,-1.47605,-1.41168,-1.05119,2.17737,-0.52949
+2.27424,0.78426,-1.47554,-1.41290,-1.05067,2.17763,-0.52982
+2.27494,0.78389,-1.47504,-1.41410,-1.05016,2.17789,-0.53015
+2.27563,0.78352,-1.47455,-1.41528,-1.04966,2.17815,-0.53047
+2.27633,0.78316,-1.47407,-1.41644,-1.04917,2.17840,-0.53078
+2.27702,0.78280,-1.47360,-1.41758,-1.04868,2.17865,-0.53109
+2.27772,0.78246,-1.47313,-1.41870,-1.04820,2.17889,-0.53139
+2.27841,0.78211,-1.47267,-1.41980,-1.04773,2.17913,-0.53169
+2.27911,0.78178,-1.47222,-1.42088,-1.04727,2.17936,-0.53198
+2.27980,0.78145,-1.47178,-1.42195,-1.04682,2.17959,-0.53227
+2.28049,0.78113,-1.47134,-1.42299,-1.04637,2.17981,-0.53255
+2.28119,0.78081,-1.47092,-1.42402,-1.04593,2.18004,-0.53282
+2.28188,0.78050,-1.47049,-1.42503,-1.04549,2.18025,-0.53309
+2.28258,0.78019,-1.47008,-1.42602,-1.04507,2.18046,-0.53336
+2.28327,0.77989,-1.46968,-1.42700,-1.04465,2.18067,-0.53362
+2.28397,0.77960,-1.46928,-1.42796,-1.04424,2.18088,-0.53388
+2.28466,0.77931,-1.46888,-1.42890,-1.04383,2.18108,-0.53413
+2.28536,0.77903,-1.46850,-1.42983,-1.04343,2.18127,-0.53437
+2.28605,0.77875,-1.46812,-1.43074,-1.04304,2.18147,-0.53461
+2.28675,0.77848,-1.46775,-1.43164,-1.04265,2.18166,-0.53485
+2.28744,0.77821,-1.46738,-1.43252,-1.04227,2.18184,-0.53508
+2.28814,0.77795,-1.46702,-1.43339,-1.04189,2.18203,-0.53531
+2.28883,0.77769,-1.46667,-1.43424,-1.04153,2.18221,-0.53553
+2.28952,0.77744,-1.46632,-1.43507,-1.04116,2.18238,-0.53575
+2.29022,0.77719,-1.46598,-1.43590,-1.04081,2.18255,-0.53597
+2.29091,0.77695,-1.46564,-1.43671,-1.04046,2.18272,-0.53618
+2.29161,0.77671,-1.46531,-1.43750,-1.04011,2.18289,-0.53639
+2.29230,0.77648,-1.46499,-1.43828,-1.03977,2.18305,-0.53659
+2.29300,0.77625,-1.46467,-1.43905,-1.03943,2.18321,-0.53679
+2.29369,0.77602,-1.46435,-1.43981,-1.03911,2.18337,-0.53698
+2.29439,0.77580,-1.46404,-1.44055,-1.03878,2.18352,-0.53718
+2.29508,0.77558,-1.46374,-1.44128,-1.03846,2.18367,-0.53736
+2.29578,0.77537,-1.46344,-1.44199,-1.03815,2.18382,-0.53755
+2.29647,0.77516,-1.46315,-1.44270,-1.03784,2.18397,-0.53773
+2.29717,0.77496,-1.46286,-1.44339,-1.03754,2.18411,-0.53791
+2.29786,0.77476,-1.46258,-1.44408,-1.03724,2.18425,-0.53808
+2.29856,0.77456,-1.46230,-1.44475,-1.03694,2.18439,-0.53825
+2.29925,0.77437,-1.46203,-1.44540,-1.03665,2.18452,-0.53842
+2.29994,0.77418,-1.46176,-1.44605,-1.03637,2.18466,-0.53858
+2.30064,0.77399,-1.46149,-1.44669,-1.03609,2.18479,-0.53875
+2.30133,0.77381,-1.46123,-1.44731,-1.03581,2.18491,-0.53890
+2.30203,0.77363,-1.46098,-1.44793,-1.03554,2.18504,-0.53906
+2.30272,0.77345,-1.46072,-1.44853,-1.03527,2.18516,-0.53921
+2.30342,0.77328,-1.46048,-1.44913,-1.03501,2.18528,-0.53936
+2.30411,0.77311,-1.46023,-1.44971,-1.03475,2.18540,-0.53951
+2.30481,0.77295,-1.45999,-1.45029,-1.03449,2.18551,-0.53965
+2.30550,0.77278,-1.45976,-1.45085,-1.03424,2.18563,-0.53979
+2.30620,0.77262,-1.45953,-1.45141,-1.03400,2.18574,-0.53993
+2.30689,0.77253,-1.45937,-1.45178,-1.03384,2.18581,-0.54001
+2.30759,0.77235,-1.45894,-1.45269,-1.03345,2.18593,-0.54017
+2.30828,0.77217,-1.45851,-1.45359,-1.03307,2.18606,-0.54033
+2.30897,0.77199,-1.45809,-1.45447,-1.03270,2.18618,-0.54048
+2.30967,0.77182,-1.45768,-1.45534,-1.03233,2.18630,-0.54063
+2.31036,0.77165,-1.45727,-1.45619,-1.03196,2.18641,-0.54078
+2.31106,0.77149,-1.45688,-1.45703,-1.03161,2.18653,-0.54092
+2.31175,0.77133,-1.45648,-1.45785,-1.03125,2.18664,-0.54106
+2.31245,0.77117,-1.45610,-1.45866,-1.03091,2.18675,-0.54120
+2.31314,0.77101,-1.45572,-1.45946,-1.03057,2.18686,-0.54133
+2.31384,0.77086,-1.45535,-1.46024,-1.03023,2.18696,-0.54146
+2.31453,0.77071,-1.45498,-1.46101,-1.02990,2.18707,-0.54159
+2.31523,0.77057,-1.45463,-1.46177,-1.02958,2.18717,-0.54172
+2.31592,0.77042,-1.45427,-1.46252,-1.02926,2.18727,-0.54184
+2.31662,0.77028,-1.45393,-1.46325,-1.02894,2.18737,-0.54197
+2.31731,0.77014,-1.45358,-1.46397,-1.02863,2.18746,-0.54209
+2.31801,0.77001,-1.45325,-1.46467,-1.02833,2.18756,-0.54220
+2.31870,0.76988,-1.45292,-1.46537,-1.02803,2.18765,-0.54232
+2.31939,0.76975,-1.45259,-1.46605,-1.02773,2.18774,-0.54243
+2.32009,0.76962,-1.45228,-1.46673,-1.02744,2.18783,-0.54254
+2.32078,0.76950,-1.45196,-1.46739,-1.02715,2.18791,-0.54265
+2.32148,0.76938,-1.45165,-1.46804,-1.02687,2.18800,-0.54275
+2.32217,0.76926,-1.45135,-1.46868,-1.02659,2.18808,-0.54285
+2.32287,0.76914,-1.45105,-1.46930,-1.02632,2.18816,-0.54296
+2.32356,0.76902,-1.45076,-1.46992,-1.02605,2.18824,-0.54306
+2.32426,0.76891,-1.45047,-1.47053,-1.02579,2.18832,-0.54315
+2.32495,0.76880,-1.45019,-1.47113,-1.02553,2.18840,-0.54325
+2.32565,0.76869,-1.44991,-1.47171,-1.02527,2.18847,-0.54334
+2.32634,0.76858,-1.44958,-1.47240,-1.02497,2.18855,-0.54344
+2.32704,0.76837,-1.44869,-1.47408,-1.02429,2.18869,-0.54362
+2.32773,0.76817,-1.44783,-1.47574,-1.02362,2.18883,-0.54380
+2.32842,0.76798,-1.44697,-1.47736,-1.02295,2.18897,-0.54397
+2.32912,0.76778,-1.44613,-1.47895,-1.02230,2.18910,-0.54414
+2.32981,0.76759,-1.44531,-1.48052,-1.02166,2.18923,-0.54431
+2.33051,0.76741,-1.44450,-1.48206,-1.02103,2.18935,-0.54447
+2.33120,0.76723,-1.44370,-1.48358,-1.02041,2.18948,-0.54463
+2.33190,0.76705,-1.44292,-1.48507,-1.01980,2.18960,-0.54478
+2.33259,0.76688,-1.44215,-1.48653,-1.01919,2.18972,-0.54494
+2.33329,0.76671,-1.44140,-1.48797,-1.01860,2.18983,-0.54508
+2.33398,0.76654,-1.44066,-1.48938,-1.01802,2.18995,-0.54523
+2.33468,0.76638,-1.43993,-1.49077,-1.01744,2.19006,-0.54537
+2.33537,0.76622,-1.43921,-1.49214,-1.01688,2.19017,-0.54551
+2.33607,0.76607,-1.43851,-1.49348,-1.01632,2.19028,-0.54564
+2.33676,0.76591,-1.43781,-1.49480,-1.01578,2.19038,-0.54578
+2.33745,0.76577,-1.43713,-1.49610,-1.01524,2.19048,-0.54591
+2.33815,0.76562,-1.43646,-1.49737,-1.01471,2.19058,-0.54603
+2.33884,0.76548,-1.43581,-1.49862,-1.01419,2.19068,-0.54616
+2.33954,0.76534,-1.43516,-1.49986,-1.01367,2.19077,-0.54628
+2.34023,0.76520,-1.43453,-1.50107,-1.01317,2.19087,-0.54640
+2.34093,0.76507,-1.43390,-1.50226,-1.01267,2.19096,-0.54651
+2.34162,0.76494,-1.43329,-1.50343,-1.01218,2.19105,-0.54663
+2.34232,0.76481,-1.43269,-1.50458,-1.01170,2.19114,-0.54674
+2.34301,0.76468,-1.43209,-1.50571,-1.01122,2.19122,-0.54684
+2.34371,0.76456,-1.43151,-1.50682,-1.01076,2.19131,-0.54695
+2.34440,0.76444,-1.43094,-1.50791,-1.01030,2.19139,-0.54705
+2.34510,0.76433,-1.43038,-1.50898,-1.00984,2.19147,-0.54715
+2.34579,0.76421,-1.42982,-1.51004,-1.00940,2.19155,-0.54725
+2.34649,0.76410,-1.42928,-1.51108,-1.00896,2.19162,-0.54735
+2.34718,0.76399,-1.42875,-1.51210,-1.00853,2.19170,-0.54744
+2.34787,0.76388,-1.42822,-1.51310,-1.00810,2.19177,-0.54753
+2.34857,0.76378,-1.42771,-1.51409,-1.00768,2.19184,-0.54762
+2.34926,0.76368,-1.42720,-1.51506,-1.00727,2.19191,-0.54771
+2.34996,0.76358,-1.42670,-1.51601,-1.00687,2.19198,-0.54779
+2.35065,0.76348,-1.42621,-1.51694,-1.00647,2.19205,-0.54788
+2.35135,0.76338,-1.42573,-1.51786,-1.00608,2.19212,-0.54796
+2.35204,0.76329,-1.42526,-1.51877,-1.00569,2.19218,-0.54804
+2.35274,0.76320,-1.42479,-1.51966,-1.00531,2.19224,-0.54812
+2.35343,0.76311,-1.42434,-1.52053,-1.00493,2.19230,-0.54819
+2.35413,0.76302,-1.42389,-1.52139,-1.00456,2.19236,-0.54827
+2.35482,0.76293,-1.42345,-1.52224,-1.00420,2.19242,-0.54834
+2.35552,0.76285,-1.42301,-1.52307,-1.00384,2.19248,-0.54841
+2.35621,0.76277,-1.42259,-1.52389,-1.00349,2.19253,-0.54848
+2.35690,0.76269,-1.42217,-1.52469,-1.00314,2.19259,-0.54854
+2.35760,0.76261,-1.42175,-1.52548,-1.00280,2.19264,-0.54861
+2.35829,0.76254,-1.42135,-1.52625,-1.00247,2.19269,-0.54867
+2.35899,0.76246,-1.42095,-1.52702,-1.00214,2.19275,-0.54873
+2.35968,0.76239,-1.42056,-1.52777,-1.00181,2.19280,-0.54880
+2.36038,0.76232,-1.42018,-1.52850,-1.00149,2.19284,-0.54885
+2.36107,0.76225,-1.41980,-1.52923,-1.00118,2.19289,-0.54891
+2.36177,0.76218,-1.41943,-1.52994,-1.00086,2.19294,-0.54897
+2.36246,0.76211,-1.41906,-1.53064,-1.00056,2.19298,-0.54902
+2.36316,0.76205,-1.41870,-1.53133,-1.00026,2.19303,-0.54908
+2.36385,0.76199,-1.41835,-1.53201,-0.99996,2.19307,-0.54913
+2.36455,0.76192,-1.41800,-1.53267,-0.99967,2.19311,-0.54918
+2.36524,0.76186,-1.41766,-1.53333,-0.99938,2.19316,-0.54923
+2.36593,0.76181,-1.41733,-1.53397,-0.99910,2.19320,-0.54928
+2.36663,0.76175,-1.41700,-1.53461,-0.99882,2.19323,-0.54933
+2.36732,0.76169,-1.41667,-1.53523,-0.99855,2.19327,-0.54937
+2.36802,0.76164,-1.41635,-1.53584,-0.99828,2.19331,-0.54942
+2.36871,0.76158,-1.41604,-1.53644,-0.99801,2.19335,-0.54946
+2.36941,0.76153,-1.41573,-1.53703,-0.99775,2.19338,-0.54950
+2.37010,0.76149,-1.41548,-1.53752,-0.99753,2.19341,-0.54954
+2.37080,0.76143,-1.41504,-1.53834,-0.99719,2.19345,-0.54959
+2.37149,0.76137,-1.41460,-1.53914,-0.99685,2.19349,-0.54964
+2.37219,0.76131,-1.41418,-1.53993,-0.99651,2.19353,-0.54968
+2.37288,0.76126,-1.41376,-1.54070,-0.99618,2.19357,-0.54973
+2.37358,0.76120,-1.41335,-1.54146,-0.99586,2.19361,-0.54977
+2.37427,0.76115,-1.41294,-1.54221,-0.99554,2.19364,-0.54982
+2.37497,0.76110,-1.41254,-1.54295,-0.99522,2.19368,-0.54986
+2.37566,0.76105,-1.41215,-1.54367,-0.99491,2.19371,-0.54990
+2.37635,0.76100,-1.41177,-1.54438,-0.99461,2.19375,-0.54994
+2.37705,0.76095,-1.41139,-1.54508,-0.99431,2.19378,-0.54998
+2.37774,0.76090,-1.41102,-1.54577,-0.99401,2.19381,-0.55002
+2.37844,0.76086,-1.41065,-1.54645,-0.99372,2.19384,-0.55006
+2.37913,0.76081,-1.41030,-1.54711,-0.99343,2.19387,-0.55009
+2.37983,0.76077,-1.40994,-1.54776,-0.99315,2.19390,-0.55013
+2.38052,0.76073,-1.40960,-1.54841,-0.99287,2.19393,-0.55016
+2.38122,0.76069,-1.40926,-1.54904,-0.99260,2.19396,-0.55020
+2.38191,0.76065,-1.40892,-1.54966,-0.99233,2.19399,-0.55023
+2.38261,0.76061,-1.40859,-1.55027,-0.99207,2.19401,-0.55026
+2.38330,0.76057,-1.40827,-1.55087,-0.99180,2.19404,-0.55029
+2.38400,0.76053,-1.40795,-1.55146,-0.99155,2.19406,-0.55032
+2.38469,0.76050,-1.40765,-1.55202,-0.99131,2.19409,-0.55034
+2.38538,0.76042,-1.40679,-1.55352,-0.99071,2.19414,-0.55042
+2.38608,0.76034,-1.40594,-1.55501,-0.99012,2.19419,-0.55048
+2.38677,0.76026,-1.40511,-1.55646,-0.98953,2.19425,-0.55055
+2.38747,0.76019,-1.40430,-1.55789,-0.98896,2.19430,-0.55062
+2.38816,0.76011,-1.40349,-1.55930,-0.98840,2.19434,-0.55068
+2.38886,0.76004,-1.40271,-1.56068,-0.98784,2.19439,-0.55074
+2.38955,0.75997,-1.40193,-1.56204,-0.98729,2.19444,-0.55080
+2.39025,0.75991,-1.40117,-1.56338,-0.98676,2.19448,-0.55086
+2.39094,0.75984,-1.40042,-1.56469,-0.98623,2.19453,-0.55091
+2.39164,0.75978,-1.39969,-1.56598,-0.98571,2.19457,-0.55097
+2.39233,0.75972,-1.39897,-1.56725,-0.98519,2.19461,-0.55102
+2.39303,0.75966,-1.39826,-1.56849,-0.98469,2.19465,-0.55107
+2.39372,0.75960,-1.39756,-1.56972,-0.98419,2.19469,-0.55112
+2.39442,0.75955,-1.39688,-1.57092,-0.98370,2.19472,-0.55116
+2.39511,0.75949,-1.39620,-1.57211,-0.98322,2.19476,-0.55121
+2.39580,0.75944,-1.39554,-1.57327,-0.98274,2.19480,-0.55125
+2.39650,0.75939,-1.39489,-1.57441,-0.98228,2.19483,-0.55130
+2.39719,0.75934,-1.39425,-1.57554,-0.98182,2.19486,-0.55134
+2.39789,0.75929,-1.39363,-1.57664,-0.98137,2.19490,-0.55138
+2.39858,0.75924,-1.39301,-1.57772,-0.98092,2.19493,-0.55141
+2.39928,0.75920,-1.39240,-1.57879,-0.98048,2.19496,-0.55145
+2.39997,0.75915,-1.39181,-1.57984,-0.98005,2.19499,-0.55149
+2.40067,0.75911,-1.39122,-1.58087,-0.97963,2.19501,-0.55152
+2.40136,0.75907,-1.39064,-1.58188,-0.97921,2.19504,-0.55155
+2.40206,0.75903,-1.39008,-1.58288,-0.97880,2.19507,-0.55159
+2.40275,0.75899,-1.38952,-1.58386,-0.97839,2.19509,-0.55162
+2.40345,0.75895,-1.38898,-1.58482,-0.97799,2.19512,-0.55165
+2.40414,0.75892,-1.38844,-1.58577,-0.97760,2.19514,-0.55168
+2.40483,0.75888,-1.38791,-1.58670,-0.97721,2.19516,-0.55170
+2.40553,0.75885,-1.38739,-1.58761,-0.97683,2.19519,-0.55173
+2.40622,0.75882,-1.38688,-1.58851,-0.97646,2.19521,-0.55175
+2.40692,0.75878,-1.38638,-1.58939,-0.97609,2.19523,-0.55178
+2.40761,0.75875,-1.38589,-1.59026,-0.97573,2.19525,-0.55180
+2.40831,0.75872,-1.38541,-1.59111,-0.97537,2.19527,-0.55182
+2.40900,0.75870,-1.38493,-1.59195,-0.97502,2.19529,-0.55184
+2.40970,0.75867,-1.38446,-1.59278,-0.97467,2.19530,-0.55186
+2.41039,0.75864,-1.38400,-1.59359,-0.97433,2.19532,-0.55188
+2.41109,0.75862,-1.38355,-1.59438,-0.97399,2.19534,-0.55190
+2.41178,0.75859,-1.38311,-1.59517,-0.97366,2.19535,-0.55192
+2.41248,0.75857,-1.38267,-1.59594,-0.97334,2.19537,-0.55194
+2.41317,0.75855,-1.38225,-1.59669,-0.97302,2.19538,-0.55195
+2.41386,0.75852,-1.38182,-1.59744,-0.97270,2.19540,-0.55197
+2.41456,0.75850,-1.38141,-1.59817,-0.97239,2.19541,-0.55198
+2.41525,0.75848,-1.38100,-1.59889,-0.97208,2.19543,-0.55200
+2.41595,0.75846,-1.38060,-1.59959,-0.97178,2.19544,-0.55201
+2.41664,0.75844,-1.38021,-1.60029,-0.97148,2.19545,-0.55202
+2.41734,0.75843,-1.37983,-1.60097,-0.97119,2.19546,-0.55203
+2.41803,0.75841,-1.37945,-1.60164,-0.97091,2.19547,-0.55204
+2.41873,0.75839,-1.37907,-1.60230,-0.97062,2.19548,-0.55206
+2.41942,0.75838,-1.37871,-1.60295,-0.97034,2.19549,-0.55207
+2.42012,0.75836,-1.37835,-1.60359,-0.97007,2.19550,-0.55207
+2.42081,0.75835,-1.37799,-1.60421,-0.96980,2.19551,-0.55208
+2.42151,0.75833,-1.37764,-1.60483,-0.96953,2.19552,-0.55209
+2.42220,0.75832,-1.37730,-1.60544,-0.96927,2.19553,-0.55210
+2.42290,0.75831,-1.37697,-1.60603,-0.96901,2.19554,-0.55211
+2.42359,0.75830,-1.37664,-1.60662,-0.96876,2.19554,-0.55211
+2.42428,0.75829,-1.37631,-1.60719,-0.96851,2.19555,-0.55212
+2.42498,0.75829,-1.37624,-1.60732,-0.96845,2.19555,-0.55212
+2.42567,0.75830,-1.37580,-1.60804,-0.96815,2.19554,-0.55210
+2.42637,0.75831,-1.37538,-1.60875,-0.96786,2.19553,-0.55209
+2.42706,0.75833,-1.37496,-1.60945,-0.96757,2.19552,-0.55207
+2.42776,0.75834,-1.37455,-1.61014,-0.96728,2.19551,-0.55205
+2.42845,0.75836,-1.37415,-1.61081,-0.96700,2.19550,-0.55204
+2.42915,0.75837,-1.37375,-1.61147,-0.96672,2.19549,-0.55202
+2.42984,0.75838,-1.37336,-1.61212,-0.96645,2.19548,-0.55200
+2.43054,0.75840,-1.37298,-1.61276,-0.96618,2.19547,-0.55199
+2.43123,0.75841,-1.37260,-1.61339,-0.96592,2.19546,-0.55197
+2.43193,0.75843,-1.37223,-1.61401,-0.96566,2.19545,-0.55195
+2.43262,0.75845,-1.37187,-1.61462,-0.96540,2.19544,-0.55194
+2.43331,0.75846,-1.37151,-1.61522,-0.96515,2.19542,-0.55192
+2.43401,0.75848,-1.37116,-1.61581,-0.96490,2.19541,-0.55190
+2.43470,0.75849,-1.37081,-1.61639,-0.96465,2.19540,-0.55188
+2.43540,0.75851,-1.37051,-1.61689,-0.96444,2.19539,-0.55186
+2.43609,0.75862,-1.36984,-1.61789,-0.96406,2.19532,-0.55177
+2.43679,0.75872,-1.36919,-1.61887,-0.96368,2.19525,-0.55168
+2.43748,0.75882,-1.36854,-1.61984,-0.96330,2.19518,-0.55158
+2.43818,0.75892,-1.36791,-1.62079,-0.96293,2.19511,-0.55149
+2.43887,0.75902,-1.36729,-1.62172,-0.96257,2.19504,-0.55140
+2.43957,0.75912,-1.36667,-1.62264,-0.96221,2.19497,-0.55132
+2.44026,0.75921,-1.36607,-1.62355,-0.96186,2.19490,-0.55123
+2.44096,0.75931,-1.36548,-1.62443,-0.96151,2.19484,-0.55114
+2.44165,0.75941,-1.36490,-1.62531,-0.96117,2.19477,-0.55105
+2.44235,0.75950,-1.36433,-1.62617,-0.96083,2.19471,-0.55097
+2.44304,0.75959,-1.36377,-1.62701,-0.96050,2.19464,-0.55088
+2.44373,0.75969,-1.36322,-1.62784,-0.96017,2.19458,-0.55080
+2.44443,0.75978,-1.36268,-1.62865,-0.95985,2.19452,-0.55072
+2.44512,0.75987,-1.36214,-1.62945,-0.95953,2.19445,-0.55063
+2.44582,0.75996,-1.36162,-1.63024,-0.95922,2.19439,-0.55055
+2.44651,0.76005,-1.36111,-1.63102,-0.95891,2.19433,-0.55047
+2.44721,0.76013,-1.36060,-1.63178,-0.95861,2.19427,-0.55039
+2.44790,0.76022,-1.36011,-1.63253,-0.95831,2.19421,-0.55031
+2.44860,0.76031,-1.35962,-1.63326,-0.95802,2.19415,-0.55023
+2.44929,0.76039,-1.35914,-1.63399,-0.95773,2.19409,-0.55015
+2.44999,0.76047,-1.35867,-1.63470,-0.95744,2.19403,-0.55007
+2.45068,0.76056,-1.35820,-1.63540,-0.95716,2.19398,-0.55000
+2.45138,0.76064,-1.35775,-1.63608,-0.95688,2.19392,-0.54992
+2.45207,0.76072,-1.35730,-1.63676,-0.95661,2.19386,-0.54985
+2.45276,0.76080,-1.35686,-1.63742,-0.95634,2.19381,-0.54977
+2.45346,0.76088,-1.35643,-1.63808,-0.95608,2.19375,-0.54970
+2.45415,0.76096,-1.35600,-1.63872,-0.95582,2.19370,-0.54963
+2.45485,0.76104,-1.35559,-1.63935,-0.95556,2.19364,-0.54955
+2.45554,0.76111,-1.35518,-1.63997,-0.95531,2.19359,-0.54948
+2.45624,0.76119,-1.35477,-1.64058,-0.95506,2.19354,-0.54941
+2.45693,0.76127,-1.35438,-1.64118,-0.95481,2.19348,-0.54934
+2.45763,0.76134,-1.35399,-1.64177,-0.95457,2.19343,-0.54927
+2.45832,0.76141,-1.35361,-1.64235,-0.95433,2.19338,-0.54920
+2.45902,0.76149,-1.35323,-1.64292,-0.95410,2.19333,-0.54913
+2.45971,0.76156,-1.35286,-1.64348,-0.95386,2.19328,-0.54907
+2.46041,0.76162,-1.35259,-1.64388,-0.95371,2.19324,-0.54901
+2.46110,0.76188,-1.35168,-1.64510,-0.95326,2.19306,-0.54878
+2.46179,0.76213,-1.35078,-1.64631,-0.95282,2.19289,-0.54856
+2.46249,0.76238,-1.34990,-1.64749,-0.95239,2.19271,-0.54834
+2.46318,0.76263,-1.34904,-1.64866,-0.95197,2.19254,-0.54812
+2.46388,0.76288,-1.34819,-1.64980,-0.95155,2.19238,-0.54790
+2.46457,0.76312,-1.34736,-1.65092,-0.95114,2.19221,-0.54769
+2.46527,0.76336,-1.34654,-1.65203,-0.95074,2.19205,-0.54748
+2.46596,0.76359,-1.34574,-1.65311,-0.95034,2.19188,-0.54727
+2.46666,0.76382,-1.34494,-1.65418,-0.94994,2.19172,-0.54706
+2.46735,0.76405,-1.34417,-1.65523,-0.94956,2.19157,-0.54686
+2.46805,0.76428,-1.34340,-1.65626,-0.94917,2.19141,-0.54666
+2.46874,0.76450,-1.34265,-1.65728,-0.94880,2.19126,-0.54646
+2.46944,0.76473,-1.34191,-1.65827,-0.94843,2.19110,-0.54626
+2.47013,0.76494,-1.34119,-1.65925,-0.94806,2.19095,-0.54607
+2.47083,0.76516,-1.34047,-1.66022,-0.94770,2.19080,-0.54588
+2.47152,0.76537,-1.33977,-1.66116,-0.94735,2.19066,-0.54569
+2.47221,0.76558,-1.33909,-1.66209,-0.94700,2.19051,-0.54550
+2.47291,0.76579,-1.33841,-1.66301,-0.94665,2.19037,-0.54531
+2.47360,0.76600,-1.33774,-1.66391,-0.94632,2.19023,-0.54513
+2.47430,0.76620,-1.33709,-1.66479,-0.94598,2.19009,-0.54495
+2.47499,0.76640,-1.33645,-1.66566,-0.94565,2.18995,-0.54477
+2.47569,0.76659,-1.33582,-1.66651,-0.94533,2.18981,-0.54460
+2.47638,0.76679,-1.33520,-1.66735,-0.94501,2.18968,-0.54442
+2.47708,0.76698,-1.33459,-1.66818,-0.94469,2.18954,-0.54425
+2.47777,0.76717,-1.33399,-1.66899,-0.94438,2.18941,-0.54408
+2.47847,0.76736,-1.33340,-1.66979,-0.94408,2.18928,-0.54391
+2.47916,0.76754,-1.33282,-1.67057,-0.94378,2.18915,-0.54375
+2.47986,0.76773,-1.33225,-1.67134,-0.94348,2.18903,-0.54358
+2.48055,0.76791,-1.33169,-1.67210,-0.94319,2.18890,-0.54342
+2.48124,0.76808,-1.33114,-1.67285,-0.94290,2.18878,-0.54326
+2.48194,0.76826,-1.33060,-1.67358,-0.94262,2.18866,-0.54311
+2.48263,0.76843,-1.33007,-1.67430,-0.94234,2.18854,-0.54295
+2.48333,0.76860,-1.32955,-1.67501,-0.94206,2.18842,-0.54280
+2.48402,0.76877,-1.32904,-1.67570,-0.94179,2.18830,-0.54265
+2.48472,0.76894,-1.32854,-1.67639,-0.94152,2.18818,-0.54250
+2.48541,0.76910,-1.32804,-1.67706,-0.94126,2.18807,-0.54235
+2.48611,0.76926,-1.32756,-1.67772,-0.94100,2.18796,-0.54220
+2.48680,0.76942,-1.32708,-1.67837,-0.94074,2.18784,-0.54206
+2.48750,0.76958,-1.32661,-1.67901,-0.94049,2.18773,-0.54192
+2.48819,0.76974,-1.32615,-1.67964,-0.94024,2.18763,-0.54178
+2.48889,0.76989,-1.32569,-1.68025,-0.93999,2.18752,-0.54164
+2.48958,0.77004,-1.32525,-1.68086,-0.93975,2.18741,-0.54150
+2.49028,0.77019,-1.32481,-1.68146,-0.93951,2.18731,-0.54137
+2.49097,0.77034,-1.32438,-1.68205,-0.93928,2.18720,-0.54123
+2.49166,0.77048,-1.32396,-1.68262,-0.93905,2.18710,-0.54110
+2.49236,0.77063,-1.32354,-1.68319,-0.93882,2.18700,-0.54097
+2.49305,0.77077,-1.32313,-1.68375,-0.93860,2.18690,-0.54084
+2.49375,0.77091,-1.32273,-1.68430,-0.93838,2.18680,-0.54072
+2.49444,0.77105,-1.32234,-1.68484,-0.93816,2.18671,-0.54059
+2.49514,0.77118,-1.32195,-1.68537,-0.93794,2.18661,-0.54047
+2.49583,0.77131,-1.32165,-1.68575,-0.93780,2.18653,-0.54036
+2.49653,0.77188,-1.32053,-1.68699,-0.93739,2.18614,-0.53986
+2.49722,0.77244,-1.31943,-1.68821,-0.93699,2.18575,-0.53937
+2.49792,0.77299,-1.31836,-1.68941,-0.93660,2.18537,-0.53889
+2.49861,0.77354,-1.31730,-1.69059,-0.93621,2.18500,-0.53842
+2.49931,0.77407,-1.31626,-1.69174,-0.93583,2.18463,-0.53795
+2.50000,0.77460,-1.31524,-1.69288,-0.93546,2.18426,-0.53748
+2.50069,0.77513,-1.31423,-1.69400,-0.93509,2.18390,-0.53703
+2.50139,0.77564,-1.31324,-1.69510,-0.93472,2.18354,-0.53658
+2.50208,0.77615,-1.31227,-1.69618,-0.93436,2.18319,-0.53613
+2.50278,0.77666,-1.31132,-1.69724,-0.93401,2.18284,-0.53570
+2.50347,0.77715,-1.31038,-1.69828,-0.93366,2.18250,-0.53526
+2.50417,0.77764,-1.30946,-1.69930,-0.93331,2.18216,-0.53484
+2.50486,0.77812,-1.30856,-1.70031,-0.93297,2.18183,-0.53442
+2.50556,0.77860,-1.30767,-1.70130,-0.93263,2.18150,-0.53400
+2.50625,0.77907,-1.30679,-1.70228,-0.93230,2.18118,-0.53359
+2.50695,0.77953,-1.30593,-1.70323,-0.93198,2.18086,-0.53319
+2.50764,0.77999,-1.30509,-1.70418,-0.93166,2.18054,-0.53279
+2.50834,0.78044,-1.30426,-1.70510,-0.93134,2.18023,-0.53240
+2.50903,0.78088,-1.30344,-1.70601,-0.93103,2.17992,-0.53201
+2.50972,0.78132,-1.30264,-1.70690,-0.93072,2.17961,-0.53163
+2.51042,0.78175,-1.30185,-1.70778,-0.93041,2.17931,-0.53125
+2.51111,0.78218,-1.30108,-1.70864,-0.93011,2.17902,-0.53088
+2.51181,0.78260,-1.30032,-1.70949,-0.92982,2.17873,-0.53052
+2.51250,0.78301,-1.29957,-1.71033,-0.92953,2.17844,-0.53016
+2.51320,0.78342,-1.29884,-1.71115,-0.92924,2.17815,-0.52980
+2.51389,0.78383,-1.29812,-1.71196,-0.92896,2.17787,-0.52945
+2.51459,0.78422,-1.29741,-1.71275,-0.92868,2.17759,-0.52910
+2.51528,0.78461,-1.29671,-1.71353,-0.92840,2.17732,-0.52876
+2.51598,0.78500,-1.29602,-1.71429,-0.92813,2.17705,-0.52842
+2.51667,0.78538,-1.29535,-1.71505,-0.92786,2.17679,-0.52809
+2.51737,0.78576,-1.29469,-1.71579,-0.92760,2.17652,-0.52776
+2.51806,0.78613,-1.29404,-1.71652,-0.92734,2.17626,-0.52744
+2.51876,0.78649,-1.29340,-1.71723,-0.92708,2.17601,-0.52712
+2.51945,0.78685,-1.29277,-1.71794,-0.92683,2.17576,-0.52681
+2.52014,0.78721,-1.29216,-1.71863,-0.92658,2.17551,-0.52650
+2.52084,0.78756,-1.29155,-1.71931,-0.92633,2.17526,-0.52619
+2.52153,0.78790,-1.29095,-1.71998,-0.92609,2.17502,-0.52589
+2.52223,0.78824,-1.29037,-1.72063,-0.92585,2.17478,-0.52560
+2.52292,0.78858,-1.28979,-1.72128,-0.92561,2.17455,-0.52530
+2.52362,0.78891,-1.28923,-1.72192,-0.92538,2.17432,-0.52502
+2.52431,0.78923,-1.28867,-1.72254,-0.92515,2.17409,-0.52473
+2.52501,0.78955,-1.28812,-1.72316,-0.92492,2.17386,-0.52445
+2.52570,0.78987,-1.28759,-1.72376,-0.92470,2.17364,-0.52417
+2.52640,0.79018,-1.28706,-1.72435,-0.92448,2.17342,-0.52390
+2.52709,0.79049,-1.28654,-1.72494,-0.92426,2.17320,-0.52363
+2.52779,0.79079,-1.28603,-1.72551,-0.92404,2.17299,-0.52337
+2.52848,0.79109,-1.28553,-1.72608,-0.92383,2.17278,-0.52311
+2.52917,0.79138,-1.28504,-1.72663,-0.92362,2.17257,-0.52285
+2.52987,0.79167,-1.28455,-1.72718,-0.92342,2.17237,-0.52260
+2.53056,0.79196,-1.28408,-1.72771,-0.92321,2.17217,-0.52235
+2.53126,0.79224,-1.28361,-1.72824,-0.92301,2.17197,-0.52210
+2.53195,0.79252,-1.28315,-1.72876,-0.92282,2.17177,-0.52186
+2.53265,0.79279,-1.28270,-1.72927,-0.92262,2.17158,-0.52162
+2.53334,0.79306,-1.28226,-1.72977,-0.92243,2.17139,-0.52138
+2.53404,0.79333,-1.28182,-1.73027,-0.92224,2.17120,-0.52115
+2.53473,0.79359,-1.28139,-1.73075,-0.92205,2.17101,-0.52092
+2.53543,0.79385,-1.28097,-1.73123,-0.92187,2.17083,-0.52069
+2.53612,0.79411,-1.28056,-1.73170,-0.92168,2.17065,-0.52047
+2.53682,0.79436,-1.28015,-1.73216,-0.92151,2.17047,-0.52025
+2.53751,0.79460,-1.27975,-1.73261,-0.92133,2.17030,-0.52003
+2.53821,0.79469,-1.27962,-1.73276,-0.92127,2.17023,-0.51996
+2.53890,0.79509,-1.27906,-1.73332,-0.92108,2.16996,-0.51962
+2.53959,0.79547,-1.27851,-1.73387,-0.92089,2.16969,-0.51928
+2.54029,0.79585,-1.27797,-1.73441,-0.92070,2.16942,-0.51895
+2.54098,0.79623,-1.27744,-1.73494,-0.92052,2.16916,-0.51863
+2.54168,0.79660,-1.27692,-1.73547,-0.92033,2.16890,-0.51831
+2.54237,0.79696,-1.27641,-1.73598,-0.92015,2.16864,-0.51800
+2.54307,0.79732,-1.27591,-1.73649,-0.91998,2.16839,-0.51768
+2.54376,0.79768,-1.27541,-1.73699,-0.91980,2.16814,-0.51738
+2.54446,0.79803,-1.27493,-1.73748,-0.91963,2.16789,-0.51708
+2.54515,0.79837,-1.27445,-1.73796,-0.91945,2.16765,-0.51678
+2.54585,0.79871,-1.27398,-1.73843,-0.91929,2.16741,-0.51649
+2.54654,0.79904,-1.27352,-1.73890,-0.91912,2.16718,-0.51620
+2.54724,0.79937,-1.27307,-1.73936,-0.91895,2.16694,-0.51592
+2.54793,0.79970,-1.27263,-1.73981,-0.91879,2.16672,-0.51564
+2.54862,0.80002,-1.27219,-1.74025,-0.91863,2.16649,-0.51536
+2.54932,0.80033,-1.27176,-1.74069,-0.91847,2.16627,-0.51509
+2.55001,0.80064,-1.27134,-1.74111,-0.91831,2.16605,-0.51482
+2.55071,0.80095,-1.27092,-1.74154,-0.91816,2.16583,-0.51456
+2.55140,0.80125,-1.27051,-1.74195,-0.91801,2.16562,-0.51430
+2.55210,0.80154,-1.27011,-1.74236,-0.91786,2.16541,-0.51404
+2.55279,0.80181,-1.26978,-1.74267,-0.91775,2.16522,-0.51381
+2.55349,0.80266,-1.26888,-1.74332,-0.91760,2.16463,-0.51309
+2.55418,0.80350,-1.26799,-1.74397,-0.91744,2.16404,-0.51238
+2.55488,0.80433,-1.26712,-1.74461,-0.91729,2.16346,-0.51167
+2.55557,0.80515,-1.26626,-1.74523,-0.91713,2.16289,-0.51098
+2.55627,0.80596,-1.26542,-1.74585,-0.91698,2.16232,-0.51030
+2.55696,0.80676,-1.26459,-1.74646,-0.91684,2.16177,-0.50962
+2.55765,0.80754,-1.26378,-1.74705,-0.91669,2.16122,-0.50896
+2.55835,0.80831,-1.26298,-1.74763,-0.91654,2.16068,-0.50831
+2.55904,0.80907,-1.26220,-1.74821,-0.91640,2.16014,-0.50766
+2.55974,0.80982,-1.26143,-1.74877,-0.91625,2.15962,-0.50703
+2.56043,0.81056,-1.26067,-1.74933,-0.91611,2.15910,-0.50641
+2.56113,0.81129,-1.25992,-1.74988,-0.91597,2.15859,-0.50579
+2.56182,0.81201,-1.25919,-1.75041,-0.91583,2.15808,-0.50518
+2.56252,0.81272,-1.25847,-1.75094,-0.91570,2.15758,-0.50459
+2.56321,0.81342,-1.25777,-1.75146,-0.91556,2.15709,-0.50400
+2.56391,0.81410,-1.25707,-1.75197,-0.91542,2.15661,-0.50342
+2.56460,0.81478,-1.25639,-1.75247,-0.91529,2.15613,-0.50285
+2.56530,0.81545,-1.25572,-1.75297,-0.91516,2.15566,-0.50229
+2.56599,0.81611,-1.25507,-1.75345,-0.91503,2.15520,-0.50173
+2.56669,0.81676,-1.25442,-1.75393,-0.91490,2.15474,-0.50119
+2.56738,0.81739,-1.25378,-1.75440,-0.91477,2.15429,-0.50065
+2.56807,0.81802,-1.25316,-1.75486,-0.91464,2.15384,-0.50012
+2.56877,0.81864,-1.25255,-1.75532,-0.91452,2.15340,-0.49960
+2.56946,0.81926,-1.25194,-1.75576,-0.91439,2.15297,-0.49909
+2.57016,0.81986,-1.25135,-1.75620,-0.91427,2.15254,-0.49858
+2.57085,0.82045,-1.25077,-1.75664,-0.91415,2.15212,-0.49808
+2.57155,0.82104,-1.25020,-1.75706,-0.91403,2.15171,-0.49759
+2.57224,0.82161,-1.24964,-1.75748,-0.91391,2.15130,-0.49711
+2.57294,0.82218,-1.24908,-1.75789,-0.91379,2.15090,-0.49663
+2.57363,0.82274,-1.24854,-1.75830,-0.91367,2.15050,-0.49616
+2.57433,0.82329,-1.24801,-1.75869,-0.91355,2.15011,-0.49570
+2.57502,0.82383,-1.24749,-1.75908,-0.91344,2.14972,-0.49524
+2.57572,0.82437,-1.24697,-1.75947,-0.91332,2.14934,-0.49480
+2.57641,0.82489,-1.24646,-1.75985,-0.91321,2.14897,-0.49435
+2.57710,0.82541,-1.24597,-1.76022,-0.91310,2.14860,-0.49392
+2.57780,0.82592,-1.24548,-1.76059,-0.91299,2.14823,-0.49349
+2.57849,0.82643,-1.24500,-1.76095,-0.91288,2.14787,-0.49307
+2.57919,0.82692,-1.24453,-1.76130,-0.91277,2.14752,-0.49265
+2.57988,0.82741,-1.24407,-1.76165,-0.91266,2.14717,-0.49224
+2.58058,0.82789,-1.24361,-1.76199,-0.91256,2.14683,-0.49184
+2.58127,0.82837,-1.24316,-1.76233,-0.91245,2.14649,-0.49144
+2.58197,0.82883,-1.24272,-1.76266,-0.91235,2.14615,-0.49105
+2.58266,0.82929,-1.24229,-1.76299,-0.91225,2.14582,-0.49067
+2.58336,0.82975,-1.24187,-1.76331,-0.91214,2.14550,-0.49029
+2.58405,0.83019,-1.24145,-1.76363,-0.91204,2.14518,-0.48991
+2.58475,0.83063,-1.24104,-1.76394,-0.91194,2.14486,-0.48955
+2.58544,0.83107,-1.24064,-1.76424,-0.91184,2.14455,-0.48918
+2.58614,0.83149,-1.24024,-1.76454,-0.91175,2.14425,-0.48883
+2.58683,0.83191,-1.23985,-1.76484,-0.91165,2.14395,-0.48847
+2.58752,0.83233,-1.23947,-1.76513,-0.91155,2.14365,-0.48813
+2.58822,0.83274,-1.23909,-1.76542,-0.91146,2.14336,-0.48779
+2.58891,0.83314,-1.23873,-1.76570,-0.91136,2.14307,-0.48745
+2.58961,0.83353,-1.23836,-1.76598,-0.91127,2.14278,-0.48712
+2.59030,0.83367,-1.23825,-1.76606,-0.91125,2.14269,-0.48701
+2.59100,0.83421,-1.23782,-1.76631,-0.91118,2.14230,-0.48656
+2.59169,0.83474,-1.23739,-1.76656,-0.91112,2.14192,-0.48612
+2.59239,0.83526,-1.23698,-1.76680,-0.91106,2.14155,-0.48568
+2.59308,0.83578,-1.23657,-1.76705,-0.91099,2.14118,-0.48526
+2.59378,0.83628,-1.23617,-1.76728,-0.91093,2.14081,-0.48483
+2.59447,0.83679,-1.23577,-1.76752,-0.91087,2.14046,-0.48442
+2.59517,0.83728,-1.23538,-1.76775,-0.91081,2.14010,-0.48401
+2.59586,0.83776,-1.23500,-1.76797,-0.91075,2.13975,-0.48361
+2.59655,0.83824,-1.23463,-1.76820,-0.91069,2.13941,-0.48321
+2.59725,0.83871,-1.23426,-1.76842,-0.91062,2.13907,-0.48282
+2.59794,0.83918,-1.23390,-1.76863,-0.91056,2.13874,-0.48244
+2.59864,0.83963,-1.23354,-1.76885,-0.91050,2.13841,-0.48206
+2.59933,0.84008,-1.23319,-1.76905,-0.91045,2.13809,-0.48169
+2.60003,0.84052,-1.23285,-1.76926,-0.91039,2.13777,-0.48132
+2.60072,0.84096,-1.23251,-1.76946,-0.91033,2.13746,-0.48096
+2.60142,0.84139,-1.23218,-1.76966,-0.91027,2.13715,-0.48060
+2.60211,0.84149,-1.23212,-1.76967,-0.91028,2.13708,-0.48052
+2.60281,0.84247,-1.23155,-1.76976,-0.91034,2.13638,-0.47972
+2.60350,0.84344,-1.23099,-1.76984,-0.91040,2.13569,-0.47893
+2.60420,0.84439,-1.23044,-1.76992,-0.91045,2.13502,-0.47815
+2.60489,0.84533,-1.22989,-1.77000,-0.91051,2.13435,-0.47738
+2.60558,0.84625,-1.22936,-1.77008,-0.91056,2.13369,-0.47663
+2.60628,0.84716,-1.22884,-1.77015,-0.91061,2.13304,-0.47589
+2.60697,0.84805,-1.22833,-1.77023,-0.91066,2.13240,-0.47516
+2.60767,0.84894,-1.22782,-1.77031,-0.91071,2.13177,-0.47444
+2.60836,0.84980,-1.22733,-1.77038,-0.91076,2.13115,-0.47373
+2.60906,0.85066,-1.22684,-1.77045,-0.91080,2.13054,-0.47304
+2.60975,0.85150,-1.22637,-1.77053,-0.91084,2.12994,-0.47235
+2.61045,0.85233,-1.22590,-1.77060,-0.91088,2.12935,-0.47168
+2.61114,0.85315,-1.22544,-1.77067,-0.91092,2.12876,-0.47101
+2.61184,0.85395,-1.22498,-1.77074,-0.91096,2.12818,-0.47036
+2.61253,0.85475,-1.22454,-1.77081,-0.91100,2.12761,-0.46971
+2.61323,0.85553,-1.22411,-1.77087,-0.91104,2.12705,-0.46908
+2.61392,0.85630,-1.22368,-1.77094,-0.91107,2.12650,-0.46846
+2.61462,0.85705,-1.22326,-1.77101,-0.91110,2.12596,-0.46784
+2.61531,0.85780,-1.22284,-1.77107,-0.91113,2.12542,-0.46724
+2.61600,0.85853,-1.22244,-1.77114,-0.91116,2.12489,-0.46665
+2.61670,0.85925,-1.22204,-1.77120,-0.91119,2.12437,-0.46606
+2.61739,0.85996,-1.22165,-1.77127,-0.91122,2.12386,-0.46549
+2.61809,0.86067,-1.22127,-1.77133,-0.91125,2.12336,-0.46492
+2.61878,0.86136,-1.22089,-1.77139,-0.91127,2.12286,-0.46436
+2.61948,0.86203,-1.22052,-1.77145,-0.91129,2.12237,-0.46381
+2.62017,0.86270,-1.22015,-1.77151,-0.91132,2.12188,-0.46327
+2.62087,0.86336,-1.21980,-1.77157,-0.91134,2.12141,-0.46274
+2.62156,0.86401,-1.21944,-1.77163,-0.91136,2.12094,-0.46222
+2.62226,0.86465,-1.21910,-1.77169,-0.91138,2.12048,-0.46170
+2.62295,0.86528,-1.21876,-1.77175,-0.91140,2.12002,-0.46119
+2.62365,0.86590,-1.21843,-1.77180,-0.91141,2.11957,-0.46069
+2.62434,0.86651,-1.21810,-1.77186,-0.91143,2.11913,-0.46020
+2.62503,0.86711,-1.21778,-1.77191,-0.91145,2.11870,-0.45972
+2.62573,0.86770,-1.21746,-1.77197,-0.91146,2.11827,-0.45924
+2.62642,0.86828,-1.21715,-1.77202,-0.91147,2.11785,-0.45877
+2.62712,0.86885,-1.21685,-1.77208,-0.91149,2.11743,-0.45831
+2.62781,0.86942,-1.21655,-1.77213,-0.91150,2.11702,-0.45786
+2.62851,0.86997,-1.21626,-1.77218,-0.91151,2.11662,-0.45741
+2.62920,0.87052,-1.21597,-1.77224,-0.91152,2.11622,-0.45697
+2.62990,0.87106,-1.21568,-1.77229,-0.91153,2.11583,-0.45654
+2.63059,0.87159,-1.21540,-1.77234,-0.91154,2.11544,-0.45611
+2.63129,0.87211,-1.21513,-1.77239,-0.91155,2.11506,-0.45569
+2.63198,0.87262,-1.21486,-1.77244,-0.91156,2.11469,-0.45528
+2.63268,0.87313,-1.21460,-1.77249,-0.91156,2.11432,-0.45488
+2.63337,0.87363,-1.21434,-1.77254,-0.91157,2.11395,-0.45448
+2.63407,0.87412,-1.21408,-1.77259,-0.91157,2.11360,-0.45408
+2.63476,0.87460,-1.21383,-1.77264,-0.91158,2.11324,-0.45369
+2.63545,0.87510,-1.21359,-1.77264,-0.91161,2.11288,-0.45329
+2.63615,0.87628,-1.21324,-1.77226,-0.91185,2.11203,-0.45235
+2.63684,0.87745,-1.21289,-1.77190,-0.91210,2.11119,-0.45143
+2.63754,0.87859,-1.21254,-1.77154,-0.91234,2.11036,-0.45052
+2.63823,0.87972,-1.21221,-1.77118,-0.91257,2.10955,-0.44963
+2.63893,0.88083,-1.21188,-1.77083,-0.91280,2.10875,-0.44875
+2.63962,0.88192,-1.21155,-1.77049,-0.91302,2.10796,-0.44789
+2.64032,0.88300,-1.21123,-1.77016,-0.91324,2.10718,-0.44703
+2.64101,0.88406,-1.21092,-1.76983,-0.91346,2.10641,-0.44620
+2.64171,0.88510,-1.21062,-1.76950,-0.91367,2.10566,-0.44538
+2.64240,0.88613,-1.21032,-1.76918,-0.91388,2.10491,-0.44457
+2.64310,0.88714,-1.21003,-1.76887,-0.91408,2.10418,-0.44377
+2.64379,0.88813,-1.20974,-1.76857,-0.91428,2.10346,-0.44299
+2.64448,0.88911,-1.20946,-1.76826,-0.91447,2.10275,-0.44222
+2.64518,0.89008,-1.20918,-1.76797,-0.91466,2.10204,-0.44146
+2.64587,0.89103,-1.20891,-1.76768,-0.91485,2.10135,-0.44071
+2.64657,0.89196,-1.20864,-1.76739,-0.91503,2.10068,-0.43998
+2.64726,0.89288,-1.20838,-1.76711,-0.91521,2.10001,-0.43926
+2.64796,0.89378,-1.20813,-1.76684,-0.91538,2.09935,-0.43855
+2.64865,0.89467,-1.20788,-1.76657,-0.91556,2.09870,-0.43785
+2.64935,0.89555,-1.20763,-1.76630,-0.91572,2.09806,-0.43716
+2.65004,0.89641,-1.20739,-1.76604,-0.91589,2.09743,-0.43649
+2.65074,0.89726,-1.20715,-1.76579,-0.91605,2.09681,-0.43583
+2.65143,0.89810,-1.20692,-1.76554,-0.91621,2.09620,-0.43517
+2.65213,0.89892,-1.20669,-1.76529,-0.91636,2.09559,-0.43453
+2.65282,0.89973,-1.20647,-1.76505,-0.91651,2.09500,-0.43390
+2.65351,0.90053,-1.20625,-1.76481,-0.91666,2.09442,-0.43327
+2.65421,0.90131,-1.20603,-1.76458,-0.91681,2.09384,-0.43266
+2.65490,0.90208,-1.20582,-1.76435,-0.91695,2.09328,-0.43206
+2.65560,0.90284,-1.20562,-1.76412,-0.91709,2.09272,-0.43147
+2.65629,0.90359,-1.20541,-1.76390,-0.91722,2.09217,-0.43089
+2.65699,0.90432,-1.20521,-1.76369,-0.91736,2.09163,-0.43031
+2.65768,0.90505,-1.20502,-1.76348,-0.91749,2.09110,-0.42975
+2.65838,0.90576,-1.20482,-1.76327,-0.91761,2.09057,-0.42919
+2.65907,0.90646,-1.20464,-1.76306,-0.91774,2.09006,-0.42865
+2.65977,0.90715,-1.20445,-1.76286,-0.91786,2.08955,-0.42811
+2.66046,0.90783,-1.20427,-1.76267,-0.91798,2.08905,-0.42758
+2.66116,0.90850,-1.20409,-1.76247,-0.91810,2.08856,-0.42706
+2.66185,0.90916,-1.20391,-1.76229,-0.91821,2.08807,-0.42655
+2.66255,0.90981,-1.20374,-1.76210,-0.91832,2.08759,-0.42605
+2.66324,0.91045,-1.20357,-1.76192,-0.91843,2.08712,-0.42555
+2.66393,0.91107,-1.20341,-1.76174,-0.91854,2.08666,-0.42507
+2.66463,0.91169,-1.20324,-1.76156,-0.91865,2.08620,-0.42459
+2.66532,0.91230,-1.20308,-1.76139,-0.91875,2.08575,-0.42412
+2.66602,0.91290,-1.20293,-1.76122,-0.91885,2.08531,-0.42365
+2.66671,0.91349,-1.20277,-1.76106,-0.91895,2.08488,-0.42320
+2.66741,0.91407,-1.20262,-1.76090,-0.91904,2.08445,-0.42275
+2.66810,0.91464,-1.20247,-1.76074,-0.91914,2.08402,-0.42231
+2.66880,0.91520,-1.20232,-1.76058,-0.91923,2.08361,-0.42187
+2.66949,0.91575,-1.20218,-1.76043,-0.91932,2.08320,-0.42145
+2.67019,0.91629,-1.20204,-1.76028,-0.91941,2.08280,-0.42103
+2.67088,0.91683,-1.20190,-1.76013,-0.91949,2.08240,-0.42061
+2.67158,0.91735,-1.20176,-1.75999,-0.91958,2.08201,-0.42020
+2.67227,0.91787,-1.20163,-1.75985,-0.91966,2.08162,-0.41980
+2.67296,0.91838,-1.20150,-1.75971,-0.91974,2.08124,-0.41941
+2.67366,0.91888,-1.20137,-1.75957,-0.91982,2.08087,-0.41902
+2.67435,0.91938,-1.20124,-1.75944,-0.91990,2.08050,-0.41864
+2.67505,0.91986,-1.20112,-1.75931,-0.91997,2.08014,-0.41827
+2.67574,0.92039,-1.20100,-1.75913,-0.92007,2.07975,-0.41786
+2.67644,0.92131,-1.20098,-1.75850,-0.92037,2.07908,-0.41716
+2.67713,0.92221,-1.20096,-1.75789,-0.92067,2.07841,-0.41647
+2.67783,0.92310,-1.20093,-1.75729,-0.92097,2.07776,-0.41578
+2.67852,0.92398,-1.20091,-1.75670,-0.92126,2.07711,-0.41512
+2.67922,0.92484,-1.20089,-1.75612,-0.92154,2.07648,-0.41446
+2.67991,0.92569,-1.20087,-1.75555,-0.92182,2.07586,-0.41381
+2.68061,0.92652,-1.20085,-1.75499,-0.92209,2.07524,-0.41317
+2.68130,0.92734,-1.20084,-1.75444,-0.92236,2.07464,-0.41255
+2.68199,0.92814,-1.20082,-1.75389,-0.92262,2.07404,-0.41193
+2.68269,0.92894,-1.20080,-1.75336,-0.92288,2.07346,-0.41133
+2.68338,0.92972,-1.20079,-1.75284,-0.92313,2.07288,-0.41074
+2.68408,0.93048,-1.20077,-1.75233,-0.92338,2.07231,-0.41015
+2.68477,0.93124,-1.20076,-1.75182,-0.92363,2.07175,-0.40958
+2.68547,0.93198,-1.20074,-1.75133,-0.92387,2.07120,-0.40901
+2.68616,0.93271,-1.20073,-1.75084,-0.92410,2.07066,-0.40846
+2.68686,0.93343,-1.20072,-1.75036,-0.92434,2.07013,-0.40791
+2.68755,0.93414,-1.20070,-1.74989,-0.92456,2.06961,-0.40738
+2.68825,0.93483,-1.20069,-1.74943,-0.92479,2.06909,-0.40685
+2.68894,0.93552,-1.20068,-1.74898,-0.92500,2.06858,-0.40633
+2.68964,0.93619,-1.20067,-1.74853,-0.92522,2.06808,-0.40582
+2.69033,0.93685,-1.20066,-1.74810,-0.92543,2.06759,-0.40532
+2.69103,0.93750,-1.20065,-1.74767,-0.92564,2.06711,-0.40482
+2.69172,0.93814,-1.20064,-1.74725,-0.92584,2.06663,-0.40434
+2.69241,0.93877,-1.20063,-1.74683,-0.92604,2.06616,-0.40386
+2.69311,0.93939,-1.20062,-1.74643,-0.92623,2.06570,-0.40339
+2.69380,0.94000,-1.20061,-1.74603,-0.92643,2.06525,-0.40293
+2.69450,0.94060,-1.20060,-1.74563,-0.92662,2.06480,-0.40248
+2.69519,0.94119,-1.20059,-1.74525,-0.92680,2.06436,-0.40203
+2.69589,0.94177,-1.20059,-1.74487,-0.92698,2.06393,-0.40160
+2.69658,0.94234,-1.20058,-1.74450,-0.92716,2.06350,-0.40116
+2.69728,0.94290,-1.20057,-1.74413,-0.92733,2.06308,-0.40074
+2.69797,0.94345,-1.20056,-1.74377,-0.92751,2.06267,-0.40032
+2.69867,0.94400,-1.20056,-1.74342,-0.92767,2.06226,-0.39991
+2.69936,0.94453,-1.20055,-1.74307,-0.92784,2.06187,-0.39951
+2.70006,0.94506,-1.20054,-1.74273,-0.92800,2.06147,-0.39912
+2.70075,0.94557,-1.20054,-1.74240,-0.92816,2.06109,-0.39873
+2.70144,0.94608,-1.20053,-1.74207,-0.92832,2.06070,-0.39834
+2.70214,0.94658,-1.20052,-1.74175,-0.92847,2.06033,-0.39797
+2.70283,0.94707,-1.20052,-1.74143,-0.92862,2.05996,-0.39759
+2.70353,0.94756,-1.20051,-1.74112,-0.92877,2.05960,-0.39723
+2.70422,0.94803,-1.20051,-1.74082,-0.92891,2.05924,-0.39687
+2.70492,0.94850,-1.20050,-1.74052,-0.92906,2.05889,-0.39652
+2.70561,0.94896,-1.20050,-1.74023,-0.92920,2.05854,-0.39617
+2.70631,0.94941,-1.20049,-1.73994,-0.92933,2.05820,-0.39583
+2.70700,0.94986,-1.20049,-1.73965,-0.92947,2.05787,-0.39550
+2.70770,0.95030,-1.20048,-1.73938,-0.92960,2.05754,-0.39517
+2.70839,0.95073,-1.20048,-1.73910,-0.92973,2.05722,-0.39484
+2.70909,0.95090,-1.20051,-1.73893,-0.92980,2.05709,-0.39471
+2.70978,0.95178,-1.20087,-1.73777,-0.93030,2.05643,-0.39406
+2.71048,0.95265,-1.20121,-1.73663,-0.93079,2.05579,-0.39341
+2.71117,0.95350,-1.20156,-1.73551,-0.93126,2.05516,-0.39278
+2.71186,0.95433,-1.20190,-1.73441,-0.93174,2.05454,-0.39216
+2.71256,0.95515,-1.20223,-1.73333,-0.93220,2.05394,-0.39155
+2.71325,0.95595,-1.20256,-1.73227,-0.93265,2.05334,-0.39095
+2.71395,0.95674,-1.20288,-1.73122,-0.93310,2.05275,-0.39036
+2.71464,0.95752,-1.20320,-1.73020,-0.93354,2.05217,-0.38978
+2.71534,0.95829,-1.20351,-1.72919,-0.93398,2.05160,-0.38921
+2.71603,0.95904,-1.20382,-1.72820,-0.93440,2.05104,-0.38865
+2.71673,0.95977,-1.20412,-1.72722,-0.93482,2.05049,-0.38811
+2.71742,0.96050,-1.20442,-1.72626,-0.93523,2.04995,-0.38757
+2.71812,0.96121,-1.20471,-1.72532,-0.93564,2.04942,-0.38704
+2.71881,0.96191,-1.20500,-1.72439,-0.93604,2.04890,-0.38652
+2.71951,0.96260,-1.20528,-1.72348,-0.93643,2.04838,-0.38601
+2.72020,0.96327,-1.20556,-1.72259,-0.93682,2.04788,-0.38551
+2.72089,0.96394,-1.20584,-1.72171,-0.93719,2.04738,-0.38502
+2.72159,0.96459,-1.20611,-1.72084,-0.93757,2.04690,-0.38454
+2.72228,0.96523,-1.20638,-1.71999,-0.93793,2.04642,-0.38406
+2.72298,0.96586,-1.20664,-1.71916,-0.93829,2.04594,-0.38360
+2.72367,0.96648,-1.20690,-1.71834,-0.93865,2.04548,-0.38314
+2.72437,0.96709,-1.20715,-1.71753,-0.93900,2.04502,-0.38269
+2.72506,0.96769,-1.20740,-1.71674,-0.93934,2.04457,-0.38225
+2.72576,0.96827,-1.20765,-1.71596,-0.93968,2.04413,-0.38181
+2.72645,0.96885,-1.20789,-1.71519,-0.94001,2.04370,-0.38139
+2.72715,0.96942,-1.20813,-1.71444,-0.94033,2.04327,-0.38097
+2.72784,0.96998,-1.20836,-1.71370,-0.94065,2.04286,-0.38056
+2.72854,0.97052,-1.20859,-1.71297,-0.94097,2.04244,-0.38015
+2.72923,0.97106,-1.20882,-1.71226,-0.94128,2.04204,-0.37976
+2.72992,0.97159,-1.20904,-1.71155,-0.94158,2.04164,-0.37937
+2.73062,0.97211,-1.20926,-1.71086,-0.94188,2.04125,-0.37898
+2.73131,0.97262,-1.20948,-1.71018,-0.94218,2.04086,-0.37861
+2.73201,0.97313,-1.20969,-1.70952,-0.94247,2.04048,-0.37824
+2.73270,0.97362,-1.20990,-1.70886,-0.94275,2.04011,-0.37787
+2.73340,0.97411,-1.21010,-1.70822,-0.94303,2.03975,-0.37752
+2.73409,0.97458,-1.21030,-1.70758,-0.94330,2.03939,-0.37717
+2.73479,0.97505,-1.21050,-1.70696,-0.94358,2.03903,-0.37682
+2.73548,0.97551,-1.21070,-1.70635,-0.94384,2.03869,-0.37648
+2.73618,0.97596,-1.21089,-1.70575,-0.94410,2.03834,-0.37615
+2.73687,0.97641,-1.21108,-1.70516,-0.94436,2.03801,-0.37582
+2.73757,0.97685,-1.21126,-1.70458,-0.94461,2.03768,-0.37550
+2.73826,0.97728,-1.21145,-1.70401,-0.94486,2.03735,-0.37519
+2.73896,0.97770,-1.21163,-1.70345,-0.94511,2.03703,-0.37488
+2.73965,0.97811,-1.21180,-1.70290,-0.94535,2.03672,-0.37457
+2.74034,0.97852,-1.21198,-1.70236,-0.94558,2.03641,-0.37427
+2.74104,0.97892,-1.21215,-1.70183,-0.94581,2.03611,-0.37398
+2.74173,0.97932,-1.21232,-1.70130,-0.94604,2.03581,-0.37369
+2.74243,0.97970,-1.21248,-1.70079,-0.94627,2.03551,-0.37341
+2.74312,0.98009,-1.21264,-1.70028,-0.94649,2.03523,-0.37313
+2.74382,0.98046,-1.21280,-1.69979,-0.94670,2.03494,-0.37286
+2.74451,0.98083,-1.21296,-1.69930,-0.94692,2.03466,-0.37259
+2.74521,0.98119,-1.21311,-1.69882,-0.94713,2.03439,-0.37232
+2.74590,0.98154,-1.21326,-1.69835,-0.94733,2.03412,-0.37206
+2.74660,0.98189,-1.21341,-1.69789,-0.94753,2.03385,-0.37181
+2.74729,0.98224,-1.21356,-1.69743,-0.94773,2.03359,-0.37155
+2.74799,0.98257,-1.21370,-1.69699,-0.94793,2.03334,-0.37131
+2.74868,0.98291,-1.21384,-1.69655,-0.94812,2.03308,-0.37107
+2.74937,0.98323,-1.21398,-1.69612,-0.94831,2.03284,-0.37083
+2.75007,0.98355,-1.21412,-1.69569,-0.94850,2.03259,-0.37059
+2.75076,0.98373,-1.21421,-1.69543,-0.94861,2.03246,-0.37046
+2.75146,0.98427,-1.21461,-1.69444,-0.94902,2.03205,-0.37007
+2.75215,0.98480,-1.21500,-1.69348,-0.94943,2.03165,-0.36968
+2.75285,0.98532,-1.21538,-1.69253,-0.94983,2.03126,-0.36930
+2.75354,0.98583,-1.21575,-1.69160,-0.95022,2.03088,-0.36893
+2.75424,0.98633,-1.21612,-1.69068,-0.95061,2.03050,-0.36857
+2.75493,0.98683,-1.21649,-1.68978,-0.95099,2.03013,-0.36821
+2.75563,0.98731,-1.21684,-1.68889,-0.95136,2.02976,-0.36786
+2.75632,0.98779,-1.21719,-1.68802,-0.95173,2.02940,-0.36751
+2.75702,0.98825,-1.21754,-1.68716,-0.95209,2.02905,-0.36717
+2.75771,0.98871,-1.21788,-1.68632,-0.95245,2.02871,-0.36684
+2.75841,0.98916,-1.21821,-1.68549,-0.95280,2.02837,-0.36651
+2.75910,0.98961,-1.21854,-1.68468,-0.95314,2.02803,-0.36619
+2.75979,0.99004,-1.21887,-1.68388,-0.95348,2.02770,-0.36588
+2.76049,0.99047,-1.21918,-1.68309,-0.95381,2.02738,-0.36557
+2.76118,0.99089,-1.21950,-1.68232,-0.95414,2.02706,-0.36527
+2.76188,0.99130,-1.21980,-1.68156,-0.95447,2.02675,-0.36497
+2.76257,0.99170,-1.22010,-1.68081,-0.95478,2.02645,-0.36468
+2.76327,0.99210,-1.22040,-1.68007,-0.95510,2.02615,-0.36439
+2.76396,0.99249,-1.22069,-1.67935,-0.95540,2.02585,-0.36411
+2.76466,0.99287,-1.22098,-1.67864,-0.95571,2.02556,-0.36383
+2.76535,0.99325,-1.22126,-1.67795,-0.95600,2.02528,-0.36356
+2.76605,0.99362,-1.22154,-1.67726,-0.95630,2.02499,-0.36329
+2.76674,0.99398,-1.22181,-1.67659,-0.95658,2.02472,-0.36303
+2.76744,0.99434,-1.22208,-1.67592,-0.95687,2.02445,-0.36277
+2.76813,0.99469,-1.22234,-1.67527,-0.95715,2.02418,-0.36252
+2.76882,0.99503,-1.22260,-1.67463,-0.95742,2.02392,-0.36227
+2.76952,0.99537,-1.22286,-1.67400,-0.95769,2.02367,-0.36202
+2.77021,0.99570,-1.22311,-1.67338,-0.95795,2.02341,-0.36178
+2.77091,0.99603,-1.22336,-1.67278,-0.95822,2.02317,-0.36155
+2.77160,0.99635,-1.22360,-1.67218,-0.95847,2.02292,-0.36132
+2.77230,0.99666,-1.22384,-1.67159,-0.95872,2.02268,-0.36109
+2.77299,0.99697,-1.22407,-1.67102,-0.95897,2.02245,-0.36087
+2.77369,0.99728,-1.22430,-1.67045,-0.95922,2.02222,-0.36065
+2.77438,0.99758,-1.22453,-1.66989,-0.95946,2.02199,-0.36043
+2.77508,0.99787,-1.22475,-1.66934,-0.95969,2.02177,-0.36022
+2.77577,0.99816,-1.22497,-1.66880,-0.95993,2.02155,-0.36001
+2.77647,0.99844,-1.22518,-1.66827,-0.96016,2.02133,-0.35981
+2.77716,0.99872,-1.22539,-1.66775,-0.96038,2.02112,-0.35961
+2.77785,0.99899,-1.22560,-1.66724,-0.96060,2.02091,-0.35941
+2.77855,0.99926,-1.22580,-1.66674,-0.96082,2.02071,-0.35922
+2.77924,0.99952,-1.22600,-1.66624,-0.96103,2.02051,-0.35903
+2.77994,0.99978,-1.22620,-1.66576,-0.96124,2.02031,-0.35885
+2.78063,1.00003,-1.22639,-1.66528,-0.96145,2.02011,-0.35866
+2.78133,1.00015,-1.22650,-1.66503,-0.96156,2.02003,-0.35858
+2.78202,1.00054,-1.22699,-1.66399,-0.96198,2.01973,-0.35830
+2.78272,1.00093,-1.22748,-1.66297,-0.96240,2.01944,-0.35802
+2.78341,1.00130,-1.22795,-1.66196,-0.96281,2.01916,-0.35775
+2.78411,1.00167,-1.22842,-1.66097,-0.96322,2.01888,-0.35749
+2.78480,1.00204,-1.22888,-1.66000,-0.96362,2.01860,-0.35723
+2.78550,1.00239,-1.22933,-1.65904,-0.96401,2.01833,-0.35697
+2.78619,1.00274,-1.22978,-1.65810,-0.96440,2.01807,-0.35672
+2.78689,1.00309,-1.23021,-1.65717,-0.96478,2.01781,-0.35647
+2.78758,1.00342,-1.23064,-1.65626,-0.96516,2.01755,-0.35623
+2.78827,1.00375,-1.23107,-1.65537,-0.96553,2.01730,-0.35600
+2.78897,1.00408,-1.23148,-1.65449,-0.96589,2.01705,-0.35576
+2.78966,1.00440,-1.23189,-1.65362,-0.96625,2.01681,-0.35554
+2.79036,1.00471,-1.23229,-1.65277,-0.96660,2.01657,-0.35531
+2.79105,1.00502,-1.23269,-1.65194,-0.96695,2.01634,-0.35509
+2.79175,1.00532,-1.23307,-1.65111,-0.96729,2.01611,-0.35488
+2.79244,1.00561,-1.23346,-1.65031,-0.96763,2.01589,-0.35467
+2.79314,1.00590,-1.23383,-1.64951,-0.96796,2.01567,-0.35446
+2.79383,1.00619,-1.23420,-1.64873,-0.96829,2.01545,-0.35426
+2.79453,1.00647,-1.23456,-1.64796,-0.96861,2.01524,-0.35406
+2.79522,1.00674,-1.23492,-1.64721,-0.96892,2.01503,-0.35386
+2.79592,1.00701,-1.23527,-1.64647,-0.96923,2.01483,-0.35367
+2.79661,1.00727,-1.23561,-1.64574,-0.96954,2.01463,-0.35348
+2.79730,1.00753,-1.23595,-1.64502,-0.96984,2.01443,-0.35330
+2.79800,1.00779,-1.23628,-1.64431,-0.97014,2.01423,-0.35311
+2.79869,1.00804,-1.23661,-1.64362,-0.97043,2.01404,-0.35294
+2.79939,1.00828,-1.23693,-1.64294,-0.97072,2.01386,-0.35276
+2.80008,1.00852,-1.23725,-1.64227,-0.97100,2.01367,-0.35259
+2.80078,1.00876,-1.23756,-1.64161,-0.97128,2.01349,-0.35242
+2.80147,1.00899,-1.23787,-1.64096,-0.97155,2.01332,-0.35226
+2.80217,1.00922,-1.23817,-1.64032,-0.97182,2.01314,-0.35210
+2.80286,1.00944,-1.23846,-1.63970,-0.97209,2.01297,-0.35194
+2.80356,1.00966,-1.23875,-1.63908,-0.97235,2.01281,-0.35178
+2.80425,1.00987,-1.23904,-1.63848,-0.97260,2.01264,-0.35163
+2.80495,1.01009,-1.23932,-1.63788,-0.97286,2.01248,-0.35148
+2.80564,1.01029,-1.23959,-1.63730,-0.97310,2.01232,-0.35133
+2.80634,1.01050,-1.23986,-1.63672,-0.97335,2.01217,-0.35119
+2.80703,1.01070,-1.24013,-1.63616,-0.97359,2.01202,-0.35105
+2.80772,1.01089,-1.24039,-1.63560,-0.97383,2.01187,-0.35091
+2.80842,1.01108,-1.24065,-1.63505,-0.97406,2.01172,-0.35077
+2.80911,1.01127,-1.24090,-1.63452,-0.97429,2.01157,-0.35064
+2.80981,1.01146,-1.24115,-1.63399,-0.97452,2.01143,-0.35051
+2.81050,1.01164,-1.24142,-1.63343,-0.97475,2.01129,-0.35038
+2.81120,1.01184,-1.24191,-1.63251,-0.97512,2.01114,-0.35024
+2.81189,1.01203,-1.24239,-1.63161,-0.97548,2.01100,-0.35010
+2.81259,1.01221,-1.24286,-1.63072,-0.97583,2.01085,-0.34997
+2.81328,1.01240,-1.24333,-1.62985,-0.97618,2.01071,-0.34984
+2.81398,1.01258,-1.24379,-1.62900,-0.97653,2.01058,-0.34971
+2.81467,1.01275,-1.24424,-1.62816,-0.97687,2.01044,-0.34959
+2.81537,1.01293,-1.24468,-1.62733,-0.97720,2.01031,-0.34946
+2.81606,1.01309,-1.24511,-1.62651,-0.97753,2.01018,-0.34934
+2.81675,1.01326,-1.24554,-1.62571,-0.97785,2.01005,-0.34923
+2.81745,1.01342,-1.24596,-1.62493,-0.97817,2.00993,-0.34911
+2.81814,1.01358,-1.24637,-1.62415,-0.97849,2.00981,-0.34900
+2.81884,1.01374,-1.24678,-1.62339,-0.97880,2.00969,-0.34889
+2.81953,1.01389,-1.24718,-1.62264,-0.97910,2.00957,-0.34878
+2.82023,1.01404,-1.24757,-1.62191,-0.97940,2.00946,-0.34868
+2.82092,1.01419,-1.24795,-1.62118,-0.97970,2.00934,-0.34857
+2.82162,1.01433,-1.24833,-1.62047,-0.97999,2.00923,-0.34847
+2.82231,1.01447,-1.24871,-1.61977,-0.98027,2.00913,-0.34837
+2.82301,1.01461,-1.24907,-1.61908,-0.98055,2.00902,-0.34827
+2.82370,1.01474,-1.24943,-1.61840,-0.98083,2.00892,-0.34818
+2.82440,1.01488,-1.24978,-1.61774,-0.98111,2.00882,-0.34809
+2.82509,1.01501,-1.25013,-1.61709,-0.98137,2.00872,-0.34799
+2.82578,1.01513,-1.25047,-1.61644,-0.98164,2.00862,-0.34790
+2.82648,1.01526,-1.25081,-1.61581,-0.98190,2.00852,-0.34782
+2.82717,1.01538,-1.25114,-1.61519,-0.98216,2.00843,-0.34773
+2.82787,1.01550,-1.25146,-1.61458,-0.98241,2.00834,-0.34765
+2.82856,1.01562,-1.25178,-1.61397,-0.98266,2.00825,-0.34756
+2.82926,1.01573,-1.25210,-1.61338,-0.98291,2.00816,-0.34748
+2.82995,1.01585,-1.25241,-1.61280,-0.98315,2.00807,-0.34740
+2.83065,1.01596,-1.25271,-1.61223,-0.98339,2.00799,-0.34733
+2.83134,1.01606,-1.25301,-1.61167,-0.98362,2.00790,-0.34725
+2.83204,1.01617,-1.25330,-1.61111,-0.98385,2.00782,-0.34718
+2.83273,1.01617,-1.25341,-1.61093,-0.98392,2.00782,-0.34717
+2.83343,1.01611,-1.25423,-1.60965,-0.98439,2.00787,-0.34722
+2.83412,1.01604,-1.25504,-1.60840,-0.98485,2.00791,-0.34727
+2.83482,1.01598,-1.25584,-1.60716,-0.98530,2.00796,-0.34731
+2.83551,1.01591,-1.25662,-1.60595,-0.98575,2.00801,-0.34736
+2.83620,1.01585,-1.25739,-1.60475,-0.98619,2.00805,-0.34741
+2.83690,1.01579,-1.25815,-1.60358,-0.98663,2.00810,-0.34745
+2.83759,1.01572,-1.25889,-1.60242,-0.98706,2.00814,-0.34750
+2.83829,1.01566,-1.25962,-1.60128,-0.98748,2.00819,-0.34754
+2.83898,1.01560,-1.26033,-1.60016,-0.98790,2.00824,-0.34759
+2.83968,1.01553,-1.26104,-1.59906,-0.98831,2.00828,-0.34763
+2.84037,1.01547,-1.26173,-1.59798,-0.98872,2.00833,-0.34768
+2.84107,1.01541,-1.26241,-1.59691,-0.98912,2.00837,-0.34772
+2.84176,1.01535,-1.26308,-1.59586,-0.98952,2.00842,-0.34777
+2.84246,1.01529,-1.26374,-1.59483,-0.98991,2.00846,-0.34781
+2.84315,1.01523,-1.26439,-1.59382,-0.99029,2.00850,-0.34786
+2.84385,1.01517,-1.26502,-1.59282,-0.99067,2.00855,-0.34790
+2.84454,1.01511,-1.26565,-1.59184,-0.99104,2.00859,-0.34794
+2.84523,1.01505,-1.26626,-1.59087,-0.99141,2.00864,-0.34799
+2.84593,1.01499,-1.26687,-1.58992,-0.99177,2.00868,-0.34803
+2.84662,1.01493,-1.26746,-1.58899,-0.99213,2.00872,-0.34807
+2.84732,1.01487,-1.26804,-1.58807,-0.99248,2.00876,-0.34812
+2.84801,1.01481,-1.26862,-1.58716,-0.99283,2.00881,-0.34816
+2.84871,1.01475,-1.26918,-1.58627,-0.99318,2.00885,-0.34820
+2.84940,1.01470,-1.26973,-1.58540,-0.99351,2.00889,-0.34824
+2.85010,1.01464,-1.27028,-1.58454,-0.99385,2.00893,-0.34829
+2.85079,1.01458,-1.27081,-1.58369,-0.99418,2.00897,-0.34833
+2.85149,1.01453,-1.27134,-1.58286,-0.99450,2.00902,-0.34837
+2.85218,1.01447,-1.27186,-1.58204,-0.99482,2.00906,-0.34841
+2.85288,1.01442,-1.27237,-1.58123,-0.99513,2.00910,-0.34845
+2.85357,1.01436,-1.27287,-1.58044,-0.99544,2.00914,-0.34849
+2.85427,1.01431,-1.27336,-1.57966,-0.99575,2.00918,-0.34853
+2.85496,1.01426,-1.27384,-1.57889,-0.99605,2.00922,-0.34857
+2.85565,1.01420,-1.27432,-1.57814,-0.99635,2.00926,-0.34861
+2.85635,1.01415,-1.27478,-1.57740,-0.99664,2.00930,-0.34865
+2.85704,1.01410,-1.27524,-1.57667,-0.99693,2.00934,-0.34869
+2.85774,1.01405,-1.27569,-1.57595,-0.99721,2.00938,-0.34873
+2.85843,1.01399,-1.27614,-1.57524,-0.99749,2.00941,-0.34877
+2.85913,1.01394,-1.27657,-1.57455,-0.99777,2.00945,-0.34881
+2.85982,1.01389,-1.27700,-1.57386,-0.99804,2.00949,-0.34885
+2.86052,1.01384,-1.27742,-1.57319,-0.99831,2.00953,-0.34888
+2.86121,1.01379,-1.27783,-1.57253,-0.99858,2.00956,-0.34892
+2.86191,1.01374,-1.27824,-1.57188,-0.99884,2.00960,-0.34896
+2.86260,1.01369,-1.27864,-1.57124,-0.99909,2.00964,-0.34900
+2.86330,1.01365,-1.27903,-1.57061,-0.99935,2.00968,-0.34903
+2.86399,1.01360,-1.27942,-1.56999,-0.99960,2.00971,-0.34907
+2.86468,1.01355,-1.27980,-1.56938,-0.99984,2.00975,-0.34911
+2.86538,1.01350,-1.28017,-1.56878,-1.00009,2.00978,-0.34914
+2.86607,1.01345,-1.28054,-1.56819,-1.00032,2.00982,-0.34918
+2.86677,1.01341,-1.28090,-1.56761,-1.00056,2.00985,-0.34921
+2.86746,1.01337,-1.28109,-1.56733,-1.00067,2.00988,-0.34924
+2.86816,1.01312,-1.28185,-1.56624,-1.00107,2.01007,-0.34942
+2.86885,1.01287,-1.28261,-1.56516,-1.00146,2.01025,-0.34960
+2.86955,1.01263,-1.28335,-1.56411,-1.00184,2.01044,-0.34977
+2.87024,1.01239,-1.28408,-1.56306,-1.00222,2.01062,-0.34994
+2.87094,1.01215,-1.28480,-1.56204,-1.00260,2.01079,-0.35011
+2.87163,1.01192,-1.28551,-1.56103,-1.00297,2.01097,-0.35028
+2.87233,1.01169,-1.28620,-1.56004,-1.00333,2.01114,-0.35045
+2.87302,1.01147,-1.28688,-1.55907,-1.00369,2.01131,-0.35061
+2.87371,1.01124,-1.28755,-1.55811,-1.00405,2.01148,-0.35077
+2.87441,1.01102,-1.28821,-1.55716,-1.00440,2.01164,-0.35093
+2.87510,1.01081,-1.28886,-1.55623,-1.00475,2.01180,-0.35108
+2.87580,1.01060,-1.28949,-1.55532,-1.00509,2.01196,-0.35124
+2.87649,1.01039,-1.29012,-1.55442,-1.00543,2.01212,-0.35139
+2.87719,1.01018,-1.29073,-1.55353,-1.00576,2.01227,-0.35154
+2.87788,1.00998,-1.29134,-1.55266,-1.00609,2.01243,-0.35168
+2.87858,1.00978,-1.29193,-1.55180,-1.00641,2.01258,-0.35183
+2.87927,1.00958,-1.29251,-1.55096,-1.00673,2.01273,-0.35197
+2.87997,1.00939,-1.29309,-1.55013,-1.00705,2.01287,-0.35211
+2.88066,1.00919,-1.29365,-1.54931,-1.00736,2.01302,-0.35225
+2.88136,1.00901,-1.29421,-1.54851,-1.00766,2.01316,-0.35239
+2.88205,1.00882,-1.29475,-1.54772,-1.00797,2.01330,-0.35252
+2.88275,1.00864,-1.29529,-1.54694,-1.00827,2.01344,-0.35266
+2.88344,1.00846,-1.29582,-1.54618,-1.00856,2.01358,-0.35279
+2.88413,1.00828,-1.29633,-1.54542,-1.00885,2.01371,-0.35292
+2.88483,1.00810,-1.29684,-1.54468,-1.00914,2.01384,-0.35305
+2.88552,1.00793,-1.29734,-1.54395,-1.00942,2.01397,-0.35317
+2.88622,1.00776,-1.29784,-1.54324,-1.00970,2.01410,-0.35330
+2.88691,1.00759,-1.29832,-1.54253,-1.00997,2.01423,-0.35342
+2.88761,1.00743,-1.29879,-1.54184,-1.01024,2.01435,-0.35354
+2.88830,1.00726,-1.29926,-1.54115,-1.01051,2.01448,-0.35366
+2.88900,1.00710,-1.29972,-1.54048,-1.01077,2.01460,-0.35378
+2.88969,1.00695,-1.30017,-1.53982,-1.01103,2.01472,-0.35389
+2.89039,1.00679,-1.30062,-1.53917,-1.01129,2.01484,-0.35401
+2.89108,1.00664,-1.30105,-1.53853,-1.01154,2.01495,-0.35412
+2.89178,1.00648,-1.30148,-1.53790,-1.01179,2.01507,-0.35423
+2.89247,1.00634,-1.30191,-1.53728,-1.01204,2.01518,-0.35434
+2.89316,1.00619,-1.30232,-1.53667,-1.01228,2.01529,-0.35445
+2.89386,1.00604,-1.30273,-1.53607,-1.01252,2.01540,-0.35456
+2.89455,1.00590,-1.30313,-1.53548,-1.01276,2.01551,-0.35466
+2.89525,1.00576,-1.30352,-1.53490,-1.01299,2.01562,-0.35477
+2.89594,1.00562,-1.30391,-1.53432,-1.01322,2.01572,-0.35487
+2.89664,1.00545,-1.30431,-1.53377,-1.01343,2.01585,-0.35499
+2.89733,1.00470,-1.30557,-1.53222,-1.01394,2.01642,-0.35553
+2.89803,1.00396,-1.30681,-1.53068,-1.01445,2.01697,-0.35606
+2.89872,1.00323,-1.30803,-1.52918,-1.01495,2.01751,-0.35658
+2.89942,1.00252,-1.30923,-1.52769,-1.01545,2.01805,-0.35709
+2.90011,1.00181,-1.31041,-1.52623,-1.01594,2.01857,-0.35760
+2.90081,1.00112,-1.31157,-1.52479,-1.01643,2.01909,-0.35809
+2.90150,1.00045,-1.31271,-1.52337,-1.01691,2.01960,-0.35858
+2.90220,0.99978,-1.31383,-1.52197,-1.01739,2.02010,-0.35906
+2.90289,0.99912,-1.31494,-1.52060,-1.01786,2.02059,-0.35953
+2.90358,0.99848,-1.31602,-1.51924,-1.01832,2.02107,-0.36000
+2.90428,0.99785,-1.31708,-1.51791,-1.01878,2.02154,-0.36045
+2.90497,0.99723,-1.31813,-1.51660,-1.01924,2.02201,-0.36090
+2.90567,0.99662,-1.31916,-1.51530,-1.01969,2.02247,-0.36134
+2.90636,0.99602,-1.32017,-1.51403,-1.02013,2.02292,-0.36178
+2.90706,0.99543,-1.32116,-1.51278,-1.02057,2.02336,-0.36221
+2.90775,0.99484,-1.32214,-1.51154,-1.02101,2.02380,-0.36263
+2.90845,0.99427,-1.32310,-1.51033,-1.02144,2.02423,-0.36304
+2.90914,0.99371,-1.32405,-1.50913,-1.02186,2.02465,-0.36345
+2.90984,0.99316,-1.32497,-1.50795,-1.02228,2.02506,-0.36385
+2.91053,0.99262,-1.32589,-1.50679,-1.02270,2.02547,-0.36424
+2.91123,0.99209,-1.32678,-1.50565,-1.02311,2.02587,-0.36463
+2.91192,0.99156,-1.32767,-1.50453,-1.02351,2.02626,-0.36501
+2.91261,0.99105,-1.32853,-1.50342,-1.02391,2.02665,-0.36539
+2.91331,0.99054,-1.32939,-1.50233,-1.02431,2.02703,-0.36576
+2.91400,0.99005,-1.33022,-1.50126,-1.02470,2.02741,-0.36612
+2.91470,0.98956,-1.33105,-1.50020,-1.02509,2.02777,-0.36648
+2.91539,0.98907,-1.33186,-1.49916,-1.02547,2.02814,-0.36683
+2.91609,0.98860,-1.33265,-1.49814,-1.02585,2.02849,-0.36718
+2.91678,0.98814,-1.33344,-1.49713,-1.02622,2.02884,-0.36752
+2.91748,0.98768,-1.33421,-1.49614,-1.02659,2.02919,-0.36785
+2.91817,0.98723,-1.33496,-1.49516,-1.02695,2.02953,-0.36818
+2.91887,0.98679,-1.33571,-1.49420,-1.02731,2.02986,-0.36851
+2.91956,0.98635,-1.33644,-1.49325,-1.02767,2.03019,-0.36883
+2.92026,0.98592,-1.33716,-1.49232,-1.02802,2.03051,-0.36914
+2.92095,0.98550,-1.33786,-1.49140,-1.02836,2.03083,-0.36945
+2.92164,0.98509,-1.33856,-1.49050,-1.02871,2.03114,-0.36976
+2.92234,0.98468,-1.33924,-1.48961,-1.02904,2.03145,-0.37006
+2.92303,0.98428,-1.33991,-1.48873,-1.02938,2.03175,-0.37035
+2.92373,0.98389,-1.34057,-1.48787,-1.02971,2.03205,-0.37064
+2.92442,0.98350,-1.34122,-1.48702,-1.03003,2.03234,-0.37093
+2.92512,0.98312,-1.34186,-1.48619,-1.03035,2.03263,-0.37121
+2.92581,0.98275,-1.34249,-1.48536,-1.03067,2.03291,-0.37149
+2.92651,0.98238,-1.34311,-1.48455,-1.03098,2.03319,-0.37176
+2.92720,0.98202,-1.34371,-1.48376,-1.03129,2.03346,-0.37203
+2.92790,0.98166,-1.34431,-1.48297,-1.03160,2.03373,-0.37229
+2.92859,0.98131,-1.34490,-1.48220,-1.03190,2.03400,-0.37255
+2.92929,0.98097,-1.34547,-1.48144,-1.03220,2.03426,-0.37281
+2.92998,0.98063,-1.34604,-1.48069,-1.03249,2.03451,-0.37306
+2.93068,0.98030,-1.34660,-1.47995,-1.03278,2.03476,-0.37331
+2.93137,0.97997,-1.34714,-1.47923,-1.03307,2.03501,-0.37355
+2.93206,0.97965,-1.34768,-1.47852,-1.03335,2.03526,-0.37379
+2.93276,0.97933,-1.34821,-1.47781,-1.03363,2.03550,-0.37403
+2.93345,0.97902,-1.34873,-1.47712,-1.03391,2.03573,-0.37426
+2.93415,0.97871,-1.34925,-1.47644,-1.03418,2.03597,-0.37449
+2.93484,0.97841,-1.34975,-1.47577,-1.03445,2.03620,-0.37471
+2.93554,0.97811,-1.35024,-1.47511,-1.03471,2.03642,-0.37494
+2.93623,0.97782,-1.35073,-1.47446,-1.03497,2.03664,-0.37515
+2.93693,0.97753,-1.35121,-1.47382,-1.03523,2.03686,-0.37537
+2.93762,0.97725,-1.35168,-1.47319,-1.03549,2.03708,-0.37558
+2.93832,0.97697,-1.35214,-1.47257,-1.03574,2.03729,-0.37579
+2.93901,0.97670,-1.35260,-1.47196,-1.03599,2.03749,-0.37600
+2.93971,0.97643,-1.35304,-1.47136,-1.03623,2.03770,-0.37620
+2.94040,0.97616,-1.35348,-1.47077,-1.03647,2.03790,-0.37640
+2.94109,0.97590,-1.35392,-1.47019,-1.03671,2.03810,-0.37659
+2.94179,0.97565,-1.35434,-1.46961,-1.03695,2.03829,-0.37678
+2.94248,0.97539,-1.35476,-1.46905,-1.03718,2.03848,-0.37697
+2.94318,0.97515,-1.35517,-1.46849,-1.03741,2.03867,-0.37716
+2.94387,0.97490,-1.35557,-1.46795,-1.03764,2.03886,-0.37734
+2.94457,0.97466,-1.35597,-1.46741,-1.03786,2.03904,-0.37753
+2.94526,0.97443,-1.35636,-1.46688,-1.03808,2.03922,-0.37770
+2.94596,0.97424,-1.35663,-1.46654,-1.03821,2.03936,-0.37784
+2.94665,0.97335,-1.35780,-1.46522,-1.03865,2.04003,-0.37850
+2.94735,0.97247,-1.35895,-1.46392,-1.03909,2.04068,-0.37914
+2.94804,0.97160,-1.36008,-1.46263,-1.03952,2.04132,-0.37978
+2.94874,0.97076,-1.36120,-1.46137,-1.03994,2.04196,-0.38040
+2.94943,0.96992,-1.36229,-1.46013,-1.04037,2.04258,-0.38101
+2.95013,0.96911,-1.36336,-1.45890,-1.04079,2.04319,-0.38162
+2.95082,0.96830,-1.36442,-1.45769,-1.04120,2.04378,-0.38221
+2.95151,0.96751,-1.36546,-1.45650,-1.04161,2.04437,-0.38279
+2.95221,0.96674,-1.36648,-1.45533,-1.04202,2.04495,-0.38336
+2.95290,0.96598,-1.36748,-1.45417,-1.04242,2.04552,-0.38393
+2.95360,0.96523,-1.36847,-1.45303,-1.04282,2.04608,-0.38448
+2.95429,0.96450,-1.36944,-1.45191,-1.04321,2.04662,-0.38503
+2.95499,0.96377,-1.37040,-1.45081,-1.04360,2.04716,-0.38556
+2.95568,0.96307,-1.37134,-1.44972,-1.04399,2.04769,-0.38609
+2.95638,0.96237,-1.37226,-1.44865,-1.04437,2.04821,-0.38660
+2.95707,0.96169,-1.37317,-1.44759,-1.04474,2.04872,-0.38711
+2.95777,0.96101,-1.37406,-1.44655,-1.04512,2.04922,-0.38761
+2.95846,0.96035,-1.37493,-1.44553,-1.04549,2.04972,-0.38811
+2.95916,0.95971,-1.37580,-1.44452,-1.04585,2.05020,-0.38859
+2.95985,0.95907,-1.37664,-1.44352,-1.04622,2.05068,-0.38907
+2.96054,0.95844,-1.37748,-1.44254,-1.04657,2.05114,-0.38953
+2.96124,0.95783,-1.37830,-1.44158,-1.04693,2.05160,-0.38999
+2.96193,0.95722,-1.37910,-1.44063,-1.04728,2.05206,-0.39045
+2.96263,0.95663,-1.37990,-1.43969,-1.04762,2.05250,-0.39089
+2.96332,0.95605,-1.38068,-1.43877,-1.04797,2.05294,-0.39133
+2.96402,0.95547,-1.38144,-1.43786,-1.04831,2.05336,-0.39176
+2.96471,0.95491,-1.38219,-1.43697,-1.04864,2.05379,-0.39218
+2.96541,0.95436,-1.38294,-1.43609,-1.04897,2.05420,-0.39260
+2.96610,0.95381,-1.38366,-1.43522,-1.04930,2.05461,-0.39301
+2.96680,0.95328,-1.38438,-1.43437,-1.04962,2.05501,-0.39341
+2.96749,0.95275,-1.38508,-1.43353,-1.04994,2.05540,-0.39381
+2.96819,0.95223,-1.38578,-1.43270,-1.05026,2.05579,-0.39420
+2.96888,0.95173,-1.38646,-1.43188,-1.05057,2.05617,-0.39458
+2.96957,0.95123,-1.38712,-1.43108,-1.05088,2.05654,-0.39496
+2.97027,0.95074,-1.38778,-1.43028,-1.05119,2.05691,-0.39533
+2.97096,0.95026,-1.38843,-1.42950,-1.05149,2.05727,-0.39570
+2.97166,0.94978,-1.38907,-1.42874,-1.05179,2.05762,-0.39605
+2.97235,0.94932,-1.38969,-1.42798,-1.05208,2.05797,-0.39641
+2.97305,0.94886,-1.39031,-1.42723,-1.05237,2.05832,-0.39675
+2.97374,0.94841,-1.39091,-1.42650,-1.05266,2.05865,-0.39710
+2.97444,0.94797,-1.39151,-1.42578,-1.05295,2.05899,-0.39743
+2.97513,0.94753,-1.39209,-1.42507,-1.05323,2.05931,-0.39776
+2.97583,0.94711,-1.39267,-1.42436,-1.05350,2.05963,-0.39809
+2.97652,0.94669,-1.39323,-1.42367,-1.05378,2.05995,-0.39841
+2.97722,0.94628,-1.39379,-1.42299,-1.05405,2.06026,-0.39872
+2.97791,0.94587,-1.39433,-1.42232,-1.05432,2.06056,-0.39903
+2.97861,0.94547,-1.39487,-1.42166,-1.05458,2.06086,-0.39933
+2.97930,0.94508,-1.39540,-1.42101,-1.05485,2.06115,-0.39963
+2.97999,0.94469,-1.39592,-1.42038,-1.05510,2.06144,-0.39993
+2.98069,0.94431,-1.39643,-1.41975,-1.05536,2.06173,-0.40022
+2.98138,0.94394,-1.39693,-1.41913,-1.05561,2.06201,-0.40050
+2.98208,0.94358,-1.39743,-1.41851,-1.05586,2.06228,-0.40078
+2.98277,0.94322,-1.39791,-1.41791,-1.05611,2.06255,-0.40106
+2.98347,0.94286,-1.39839,-1.41732,-1.05635,2.06282,-0.40133
+2.98416,0.94251,-1.39886,-1.41674,-1.05659,2.06308,-0.40160
+2.98486,0.94217,-1.39932,-1.41616,-1.05683,2.06334,-0.40186
+2.98555,0.94184,-1.39977,-1.41560,-1.05706,2.06359,-0.40212
+2.98625,0.94151,-1.40022,-1.41504,-1.05729,2.06384,-0.40237
+2.98694,0.94118,-1.40066,-1.41449,-1.05752,2.06409,-0.40262
+2.98764,0.94086,-1.40109,-1.41395,-1.05775,2.06433,-0.40287
+2.98833,0.94055,-1.40152,-1.41342,-1.05797,2.06456,-0.40311
+2.98902,0.94024,-1.40193,-1.41289,-1.05819,2.06480,-0.40335
+2.98972,0.93993,-1.40234,-1.41238,-1.05841,2.06503,-0.40359
+2.99041,0.93964,-1.40275,-1.41187,-1.05862,2.06525,-0.40382
+2.99111,0.93934,-1.40314,-1.41137,-1.05884,2.06547,-0.40404
+2.99180,0.93905,-1.40353,-1.41088,-1.05904,2.06569,-0.40427
+2.99250,0.93877,-1.40392,-1.41039,-1.05925,2.06590,-0.40449
+2.99319,0.93853,-1.40423,-1.41000,-1.05942,2.06608,-0.40467
+2.99389,0.93813,-1.40473,-1.40942,-1.05965,2.06638,-0.40498
+2.99458,0.93773,-1.40523,-1.40884,-1.05987,2.06668,-0.40528
+2.99528,0.93734,-1.40571,-1.40828,-1.06010,2.06697,-0.40558
+2.99597,0.93696,-1.40618,-1.40772,-1.06032,2.06726,-0.40588
+2.99667,0.93658,-1.40665,-1.40717,-1.06054,2.06754,-0.40617
+2.99736,0.93621,-1.40711,-1.40663,-1.06076,2.06782,-0.40645
+2.99806,0.93585,-1.40756,-1.40610,-1.06097,2.06809,-0.40673
+2.99875,0.93549,-1.40801,-1.40557,-1.06118,2.06836,-0.40701
+2.99944,0.93513,-1.40844,-1.40506,-1.06139,2.06862,-0.40728
+3.00014,0.93479,-1.40887,-1.40455,-1.06160,2.06888,-0.40754
+3.00083,0.93445,-1.40929,-1.40405,-1.06180,2.06914,-0.40781
+3.00153,0.93411,-1.40971,-1.40355,-1.06200,2.06939,-0.40806
+3.00222,0.93378,-1.41012,-1.40307,-1.06220,2.06963,-0.40832
+3.00292,0.93346,-1.41052,-1.40259,-1.06240,2.06988,-0.40857
+3.00361,0.93314,-1.41091,-1.40212,-1.06259,2.07011,-0.40881
+3.00431,0.93283,-1.41130,-1.40165,-1.06278,2.07035,-0.40906
+3.00500,0.93252,-1.41168,-1.40120,-1.06297,2.07058,-0.40929
+3.00570,0.93222,-1.41206,-1.40075,-1.06316,2.07080,-0.40953
+3.00639,0.93209,-1.41222,-1.40057,-1.06323,2.07091,-0.40963
+3.00709,0.93133,-1.41307,-1.39969,-1.06353,2.07146,-0.41021
+3.00778,0.93058,-1.41391,-1.39882,-1.06383,2.07201,-0.41077
+3.00847,0.92985,-1.41473,-1.39797,-1.06412,2.07255,-0.41133
+3.00917,0.92914,-1.41554,-1.39713,-1.06441,2.07308,-0.41187
+3.00986,0.92843,-1.41633,-1.39630,-1.06470,2.07360,-0.41241
+3.01056,0.92774,-1.41711,-1.39548,-1.06499,2.07411,-0.41294
+3.01125,0.92706,-1.41788,-1.39467,-1.06527,2.07461,-0.41346
+3.01195,0.92639,-1.41864,-1.39388,-1.06556,2.07511,-0.41397
+3.01264,0.92574,-1.41938,-1.39309,-1.06583,2.07559,-0.41447
+3.01334,0.92509,-1.42011,-1.39232,-1.06611,2.07607,-0.41496
+3.01403,0.92446,-1.42083,-1.39156,-1.06638,2.07653,-0.41545
+3.01473,0.92384,-1.42153,-1.39081,-1.06666,2.07699,-0.41593
+3.01542,0.92323,-1.42223,-1.39007,-1.06692,2.07744,-0.41640
+3.01612,0.92263,-1.42291,-1.38934,-1.06719,2.07789,-0.41686
+3.01681,0.92204,-1.42358,-1.38863,-1.06745,2.07832,-0.41731
+3.01750,0.92146,-1.42424,-1.38792,-1.06771,2.07875,-0.41776
+3.01820,0.92089,-1.42489,-1.38722,-1.06797,2.07917,-0.41819
+3.01889,0.92033,-1.42553,-1.38654,-1.06822,2.07958,-0.41862
+3.01959,0.91978,-1.42616,-1.38586,-1.06848,2.07999,-0.41905
+3.02028,0.91924,-1.42678,-1.38519,-1.06873,2.08039,-0.41946
+3.02098,0.91872,-1.42738,-1.38454,-1.06897,2.08078,-0.41987
+3.02167,0.91820,-1.42798,-1.38389,-1.06922,2.08116,-0.42028
+3.02237,0.91768,-1.42857,-1.38325,-1.06946,2.08154,-0.42067
+3.02306,0.91718,-1.42914,-1.38262,-1.06970,2.08191,-0.42106
+3.02376,0.91669,-1.42971,-1.38201,-1.06994,2.08228,-0.42144
+3.02445,0.91620,-1.43027,-1.38140,-1.07017,2.08264,-0.42182
+3.02515,0.91573,-1.43082,-1.38079,-1.07040,2.08299,-0.42219
+3.02584,0.91526,-1.43136,-1.38020,-1.07063,2.08334,-0.42255
+3.02654,0.91480,-1.43189,-1.37962,-1.07086,2.08368,-0.42291
+3.02723,0.91435,-1.43241,-1.37904,-1.07108,2.08401,-0.42326
+3.02792,0.91390,-1.43292,-1.37848,-1.07131,2.08434,-0.42361
+3.02862,0.91347,-1.43343,-1.37792,-1.07153,2.08467,-0.42395
+3.02931,0.91304,-1.43392,-1.37737,-1.07174,2.08498,-0.42429
+3.03001,0.91262,-1.43441,-1.37683,-1.07196,2.08530,-0.42461
+3.03070,0.91220,-1.43489,-1.37629,-1.07217,2.08560,-0.42494
+3.03140,0.91180,-1.43536,-1.37577,-1.07238,2.08591,-0.42526
+3.03209,0.91140,-1.43582,-1.37525,-1.07259,2.08620,-0.42557
+3.03279,0.91100,-1.43628,-1.37474,-1.07279,2.08649,-0.42588
+3.03348,0.91062,-1.43673,-1.37424,-1.07300,2.08678,-0.42618
+3.03418,0.91024,-1.43717,-1.37374,-1.07320,2.08706,-0.42648
+3.03487,0.90986,-1.43760,-1.37325,-1.07340,2.08734,-0.42677
+3.03557,0.90950,-1.43803,-1.37277,-1.07359,2.08761,-0.42706
+3.03626,0.90914,-1.43845,-1.37230,-1.07379,2.08788,-0.42734
+3.03695,0.90878,-1.43886,-1.37183,-1.07398,2.08814,-0.42762
+3.03765,0.90843,-1.43927,-1.37137,-1.07417,2.08840,-0.42789
+3.03834,0.90809,-1.43966,-1.37092,-1.07436,2.08865,-0.42816
+3.03904,0.90776,-1.44006,-1.37048,-1.07454,2.08890,-0.42843
+3.03973,0.90743,-1.44044,-1.37004,-1.07472,2.08915,-0.42869
+3.04043,0.90710,-1.44082,-1.36960,-1.07490,2.08939,-0.42895
+3.04112,0.90678,-1.44119,-1.36918,-1.07508,2.08963,-0.42920
+3.04182,0.90647,-1.44156,-1.36876,-1.07526,2.08986,-0.42945
+3.04251,0.90633,-1.44172,-1.36858,-1.07533,2.08996,-0.42955
+3.04321,0.90588,-1.44221,-1.36806,-1.07553,2.09029,-0.42990
+3.04390,0.90545,-1.44269,-1.36755,-1.07573,2.09062,-0.43025
+3.04460,0.90502,-1.44317,-1.36704,-1.07593,2.09093,-0.43058
+3.04529,0.90459,-1.44363,-1.36654,-1.07612,2.09125,-0.43092
+3.04598,0.90418,-1.44409,-1.36605,-1.07631,2.09155,-0.43124
+3.04668,0.90377,-1.44455,-1.36557,-1.07650,2.09185,-0.43156
+3.04737,0.90337,-1.44499,-1.36510,-1.07669,2.09215,-0.43188
+3.04807,0.90297,-1.44543,-1.36463,-1.07688,2.09244,-0.43219
+3.04876,0.90259,-1.44586,-1.36416,-1.07706,2.09273,-0.43249
+3.04946,0.90221,-1.44628,-1.36371,-1.07724,2.09301,-0.43279
+3.05015,0.90183,-1.44669,-1.36326,-1.07742,2.09329,-0.43309
+3.05085,0.90146,-1.44710,-1.36282,-1.07760,2.09356,-0.43338
+3.05154,0.90110,-1.44750,-1.36238,-1.07778,2.09382,-0.43366
+3.05224,0.90075,-1.44790,-1.36195,-1.07795,2.09409,-0.43394
+3.05293,0.90040,-1.44829,-1.36153,-1.07812,2.09435,-0.43422
+3.05363,0.90006,-1.44867,-1.36111,-1.07829,2.09460,-0.43449
+3.05432,0.89972,-1.44904,-1.36070,-1.07846,2.09485,-0.43476
+3.05502,0.89939,-1.44941,-1.36030,-1.07863,2.09509,-0.43502
+3.05571,0.89906,-1.44978,-1.35990,-1.07879,2.09533,-0.43528
+3.05640,0.89874,-1.45013,-1.35952,-1.07895,2.09557,-0.43553
+3.05710,0.89813,-1.45077,-1.35889,-1.07917,2.09602,-0.43601
+3.05779,0.89752,-1.45140,-1.35828,-1.07939,2.09646,-0.43649
+3.05849,0.89693,-1.45203,-1.35767,-1.07960,2.09689,-0.43695
+3.05918,0.89635,-1.45264,-1.35706,-1.07982,2.09732,-0.43741
+3.05988,0.89578,-1.45324,-1.35647,-1.08003,2.09774,-0.43786
+3.06057,0.89521,-1.45383,-1.35589,-1.08025,2.09815,-0.43830
+3.06127,0.89466,-1.45441,-1.35531,-1.08045,2.09856,-0.43873
+3.06196,0.89412,-1.45499,-1.35474,-1.08066,2.09895,-0.43916
+3.06266,0.89359,-1.45555,-1.35418,-1.08087,2.09934,-0.43958
+3.06335,0.89306,-1.45610,-1.35363,-1.08107,2.09973,-0.43999
+3.06405,0.89255,-1.45665,-1.35309,-1.08127,2.10010,-0.44040
+3.06474,0.89204,-1.45718,-1.35255,-1.08147,2.10047,-0.44080
+3.06543,0.89155,-1.45771,-1.35202,-1.08167,2.10084,-0.44119
+3.06613,0.89106,-1.45823,-1.35150,-1.08187,2.10119,-0.44157
+3.06682,0.89058,-1.45873,-1.35099,-1.08206,2.10154,-0.44195
+3.06752,0.89011,-1.45923,-1.35048,-1.08226,2.10189,-0.44233
+3.06821,0.88965,-1.45973,-1.34998,-1.08245,2.10223,-0.44269
+3.06891,0.88919,-1.46021,-1.34949,-1.08263,2.10256,-0.44305
+3.06960,0.88875,-1.46069,-1.34901,-1.08282,2.10289,-0.44341
+3.07030,0.88831,-1.46115,-1.34853,-1.08301,2.10321,-0.44375
+3.07099,0.88788,-1.46161,-1.34806,-1.08319,2.10352,-0.44410
+3.07169,0.88746,-1.46207,-1.34760,-1.08337,2.10383,-0.44443
+3.07238,0.88704,-1.46251,-1.34714,-1.08355,2.10414,-0.44476
+3.07308,0.88663,-1.46295,-1.34669,-1.08373,2.10444,-0.44509
+3.07377,0.88623,-1.46338,-1.34625,-1.08390,2.10473,-0.44541
+3.07447,0.88584,-1.46380,-1.34581,-1.08408,2.10502,-0.44572
+3.07516,0.88545,-1.46422,-1.34538,-1.08425,2.10531,-0.44603
+3.07585,0.88507,-1.46462,-1.34495,-1.08442,2.10559,-0.44634
+3.07655,0.88470,-1.46503,-1.34453,-1.08459,2.10586,-0.44664
+3.07724,0.88433,-1.46542,-1.34412,-1.08475,2.10613,-0.44693
+3.07794,0.88397,-1.46581,-1.34371,-1.08492,2.10640,-0.44722
+3.07863,0.88361,-1.46619,-1.34331,-1.08508,2.10666,-0.44750
+3.07933,0.88326,-1.46657,-1.34292,-1.08524,2.10691,-0.44778
+3.08002,0.88292,-1.46694,-1.34253,-1.08540,2.10716,-0.44806
+3.08072,0.88259,-1.46730,-1.34215,-1.08556,2.10741,-0.44833
+3.08141,0.88225,-1.46766,-1.34177,-1.08571,2.10765,-0.44859
+3.08211,0.88193,-1.46801,-1.34140,-1.08587,2.10789,-0.44885
+3.08280,0.88185,-1.46810,-1.34131,-1.08590,2.10796,-0.44892
+3.08350,0.88133,-1.46863,-1.34079,-1.08609,2.10833,-0.44933
+3.08419,0.88082,-1.46916,-1.34029,-1.08628,2.10870,-0.44974
+3.08488,0.88032,-1.46967,-1.33979,-1.08646,2.10907,-0.45014
+3.08558,0.87983,-1.47018,-1.33930,-1.08665,2.10943,-0.45053
+3.08627,0.87934,-1.47068,-1.33882,-1.08683,2.10978,-0.45092
+3.08697,0.87887,-1.47117,-1.33834,-1.08701,2.11012,-0.45129
+3.08766,0.87840,-1.47165,-1.33787,-1.08718,2.11046,-0.45167
+3.08836,0.87795,-1.47212,-1.33740,-1.08736,2.11080,-0.45203
+3.08905,0.87750,-1.47259,-1.33695,-1.08753,2.11113,-0.45239
+3.08975,0.87706,-1.47305,-1.33650,-1.08771,2.11145,-0.45275
+3.09044,0.87662,-1.47350,-1.33605,-1.08788,2.11176,-0.45309
+3.09114,0.87620,-1.47394,-1.33561,-1.08805,2.11207,-0.45343
+3.09183,0.87578,-1.47438,-1.33518,-1.08821,2.11238,-0.45377
+3.09253,0.87537,-1.47480,-1.33476,-1.08838,2.11268,-0.45410
+3.09322,0.87496,-1.47523,-1.33434,-1.08855,2.11298,-0.45443
+3.09391,0.87457,-1.47564,-1.33392,-1.08871,2.11326,-0.45475
+3.09461,0.87418,-1.47605,-1.33352,-1.08887,2.11355,-0.45506
+3.09530,0.87379,-1.47645,-1.33311,-1.08903,2.11383,-0.45537
+3.09600,0.87342,-1.47684,-1.33272,-1.08919,2.11410,-0.45567
+3.09669,0.87305,-1.47723,-1.33233,-1.08934,2.11437,-0.45597
+3.09739,0.87268,-1.47761,-1.33194,-1.08950,2.11464,-0.45626
+3.09808,0.87233,-1.47798,-1.33156,-1.08965,2.11490,-0.45655
+3.09878,0.87198,-1.47835,-1.33119,-1.08980,2.11516,-0.45684
+3.09947,0.87163,-1.47871,-1.33082,-1.08995,2.11541,-0.45711
+3.10017,0.87129,-1.47907,-1.33046,-1.09010,2.11566,-0.45739
+3.10086,0.87096,-1.47942,-1.33010,-1.09025,2.11590,-0.45766
+3.10156,0.87063,-1.47976,-1.32975,-1.09039,2.11614,-0.45792
+3.10225,0.87058,-1.47981,-1.32971,-1.09041,2.11618,-0.45796
+3.10295,0.87009,-1.48029,-1.32928,-1.09056,2.11653,-0.45836
+3.10364,0.86960,-1.48076,-1.32885,-1.09072,2.11689,-0.45875
+3.10433,0.86913,-1.48122,-1.32844,-1.09087,2.11723,-0.45913
+3.10503,0.86866,-1.48167,-1.32802,-1.09103,2.11757,-0.45951
+3.10572,0.86820,-1.48211,-1.32762,-1.09118,2.11790,-0.45988
+3.10642,0.86775,-1.48255,-1.32722,-1.09133,2.11823,-0.46024
+3.10711,0.86731,-1.48298,-1.32682,-1.09148,2.11855,-0.46060
+3.10781,0.86687,-1.48340,-1.32643,-1.09163,2.11887,-0.46095
+3.10850,0.86644,-1.48382,-1.32605,-1.09177,2.11918,-0.46130
+3.10920,0.86602,-1.48423,-1.32567,-1.09192,2.11949,-0.46164
+3.10989,0.86561,-1.48463,-1.32530,-1.09206,2.11979,-0.46197
+3.11059,0.86521,-1.48503,-1.32493,-1.09220,2.12008,-0.46230
+3.11128,0.86481,-1.48542,-1.32457,-1.09234,2.12037,-0.46262
+3.11198,0.86442,-1.48580,-1.32421,-1.09248,2.12065,-0.46294
+3.11267,0.86403,-1.48617,-1.32386,-1.09262,2.12093,-0.46325
+3.11336,0.86366,-1.48654,-1.32351,-1.09276,2.12121,-0.46356
+3.11406,0.86328,-1.48691,-1.32317,-1.09289,2.12148,-0.46386
+3.11475,0.86292,-1.48726,-1.32283,-1.09303,2.12174,-0.46416
+3.11545,0.86256,-1.48762,-1.32250,-1.09316,2.12200,-0.46445
+3.11614,0.86221,-1.48796,-1.32217,-1.09329,2.12226,-0.46474
+3.11684,0.86186,-1.48830,-1.32185,-1.09342,2.12251,-0.46502
+3.11753,0.86153,-1.48864,-1.32153,-1.09355,2.12276,-0.46530
+3.11823,0.86132,-1.48884,-1.32134,-1.09363,2.12291,-0.46547
+3.11892,0.86092,-1.48921,-1.32101,-1.09376,2.12320,-0.46579
+3.11962,0.86052,-1.48958,-1.32069,-1.09388,2.12349,-0.46611
+3.12031,0.86014,-1.48994,-1.32037,-1.09401,2.12377,-0.46643
+3.12101,0.85976,-1.49029,-1.32005,-1.09413,2.12404,-0.46674
+3.12170,0.85938,-1.49064,-1.31974,-1.09425,2.12431,-0.46704
+3.12240,0.85902,-1.49098,-1.31944,-1.09437,2.12458,-0.46734
+3.12309,0.85866,-1.49132,-1.31913,-1.09449,2.12484,-0.46763
+3.12378,0.85830,-1.49165,-1.31884,-1.09461,2.12510,-0.46792
+3.12448,0.85795,-1.49197,-1.31854,-1.09473,2.12535,-0.46821
+3.12517,0.85763,-1.49227,-1.31829,-1.09483,2.12558,-0.46847
+3.12587,0.85717,-1.49262,-1.31805,-1.09491,2.12591,-0.46884
+3.12656,0.85672,-1.49296,-1.31782,-1.09499,2.12624,-0.46921
+3.12726,0.85628,-1.49330,-1.31759,-1.09507,2.12656,-0.46957
+3.12795,0.85584,-1.49363,-1.31737,-1.09515,2.12688,-0.46993
+3.12865,0.85541,-1.49396,-1.31714,-1.09523,2.12719,-0.47028
+3.12934,0.85499,-1.49428,-1.31693,-1.09530,2.12749,-0.47062
+3.13004,0.85458,-1.49460,-1.31671,-1.09538,2.12779,-0.47096
+3.13073,0.85417,-1.49491,-1.31649,-1.09546,2.12808,-0.47129
+3.13143,0.85378,-1.49521,-1.31628,-1.09554,2.12837,-0.47162
+3.13212,0.85338,-1.49552,-1.31607,-1.09562,2.12865,-0.47194
+3.13281,0.85300,-1.49581,-1.31587,-1.09569,2.12893,-0.47225
+3.13351,0.85262,-1.49610,-1.31567,-1.09577,2.12920,-0.47256
+3.13420,0.85225,-1.49639,-1.31546,-1.09584,2.12947,-0.47287
+3.13490,0.85189,-1.49667,-1.31527,-1.09592,2.12974,-0.47317
+3.13559,0.85176,-1.49675,-1.31523,-1.09593,2.12983,-0.47327
+3.13629,0.85122,-1.49702,-1.31522,-1.09591,2.13022,-0.47371
+3.13698,0.85069,-1.49728,-1.31521,-1.09589,2.13060,-0.47414
+3.13768,0.85017,-1.49753,-1.31519,-1.09588,2.13097,-0.47457
+3.13837,0.84965,-1.49778,-1.31518,-1.09586,2.13134,-0.47499
+3.13907,0.84915,-1.49803,-1.31517,-1.09585,2.13170,-0.47540
+3.13976,0.84866,-1.49827,-1.31516,-1.09583,2.13205,-0.47581
+3.14046,0.84817,-1.49851,-1.31514,-1.09582,2.13240,-0.47620
+3.14115,0.84770,-1.49875,-1.31513,-1.09581,2.13274,-0.47659
+3.14184,0.84723,-1.49898,-1.31511,-1.09579,2.13308,-0.47698
+3.14254,0.84677,-1.49920,-1.31510,-1.09578,2.13341,-0.47735
+3.14323,0.84632,-1.49943,-1.31508,-1.09578,2.13373,-0.47772
+3.14393,0.84588,-1.49965,-1.31507,-1.09577,2.13405,-0.47809
+3.14462,0.84544,-1.49986,-1.31505,-1.09576,2.13437,-0.47845
+3.14532,0.84502,-1.50008,-1.31503,-1.09575,2.13467,-0.47880
+3.14601,0.84460,-1.50028,-1.31502,-1.09575,2.13497,-0.47914
+3.14671,0.84419,-1.50049,-1.31500,-1.09574,2.13527,-0.47948
+3.14740,0.84378,-1.50069,-1.31498,-1.09574,2.13556,-0.47982
+3.14810,0.84338,-1.50089,-1.31496,-1.09573,2.13585,-0.48014
+3.14879,0.84299,-1.50108,-1.31494,-1.09573,2.13613,-0.48047
+3.14949,0.84261,-1.50127,-1.31492,-1.09573,2.13640,-0.48078
+3.15018,0.84234,-1.50140,-1.31493,-1.09572,2.13660,-0.48101
+3.15088,0.84186,-1.50154,-1.31509,-1.09563,2.13695,-0.48141
+3.15157,0.84138,-1.50167,-1.31525,-1.09555,2.13728,-0.48179
+3.15226,0.84092,-1.50180,-1.31541,-1.09546,2.13761,-0.48218
+3.15296,0.84047,-1.50193,-1.31557,-1.09538,2.13794,-0.48255
+3.15365,0.84002,-1.50206,-1.31572,-1.09530,2.13826,-0.48292
+3.15435,0.83958,-1.50219,-1.31586,-1.09523,2.13857,-0.48328
+3.15504,0.83915,-1.50231,-1.31601,-1.09515,2.13888,-0.48364
+3.15574,0.83873,-1.50243,-1.31615,-1.09508,2.13918,-0.48399
+3.15643,0.83832,-1.50255,-1.31629,-1.09501,2.13948,-0.48433
+3.15713,0.83791,-1.50267,-1.31643,-1.09494,2.13977,-0.48467
+3.15782,0.83751,-1.50278,-1.31656,-1.09487,2.14006,-0.48500
+3.15852,0.83712,-1.50289,-1.31669,-1.09480,2.14034,-0.48533
+3.15921,0.83673,-1.50300,-1.31682,-1.09473,2.14062,-0.48565
+3.15991,0.83635,-1.50311,-1.31694,-1.09467,2.14089,-0.48596
+3.16060,0.83598,-1.50322,-1.31707,-1.09461,2.14116,-0.48627
+3.16129,0.83588,-1.50320,-1.31718,-1.09456,2.14123,-0.48636
+3.16199,0.83521,-1.50294,-1.31821,-1.09410,2.14170,-0.48691
+3.16268,0.83456,-1.50267,-1.31922,-1.09365,2.14217,-0.48745
+3.16338,0.83392,-1.50242,-1.32022,-1.09321,2.14262,-0.48798
+3.16407,0.83330,-1.50216,-1.32120,-1.09277,2.14307,-0.48850
+3.16477,0.83268,-1.50191,-1.32216,-1.09235,2.14350,-0.48901
+3.16546,0.83208,-1.50167,-1.32310,-1.09193,2.14393,-0.48951
+3.16616,0.83148,-1.50143,-1.32403,-1.09151,2.14435,-0.49000
+3.16685,0.83090,-1.50119,-1.32494,-1.09111,2.14477,-0.49049
+3.16755,0.83033,-1.50096,-1.32583,-1.09071,2.14518,-0.49096
+3.16824,0.82976,-1.50073,-1.32671,-1.09032,2.14557,-0.49143
+3.16894,0.82921,-1.50051,-1.32758,-1.08993,2.14597,-0.49189
+3.16963,0.82867,-1.50029,-1.32843,-1.08955,2.14635,-0.49234
+3.17033,0.82814,-1.50007,-1.32926,-1.08918,2.14673,-0.49279
+3.17102,0.82762,-1.49986,-1.33008,-1.08882,2.14710,-0.49322
+3.17171,0.82710,-1.49965,-1.33089,-1.08846,2.14746,-0.49365
+3.17241,0.82660,-1.49944,-1.33168,-1.08810,2.14782,-0.49407
+3.17310,0.82611,-1.49924,-1.33246,-1.08775,2.14817,-0.49448
+3.17380,0.82562,-1.49904,-1.33322,-1.08741,2.14852,-0.49489
+3.17449,0.82515,-1.49885,-1.33398,-1.08708,2.14886,-0.49529
+3.17519,0.82468,-1.49866,-1.33472,-1.08675,2.14919,-0.49568
+3.17588,0.82422,-1.49847,-1.33544,-1.08642,2.14952,-0.49606
+3.17658,0.82377,-1.49828,-1.33616,-1.08610,2.14984,-0.49644
+3.17727,0.82333,-1.49810,-1.33686,-1.08579,2.15015,-0.49681
+3.17797,0.82289,-1.49792,-1.33755,-1.08548,2.15046,-0.49717
+3.17866,0.82246,-1.49775,-1.33822,-1.08517,2.15076,-0.49753
+3.17936,0.82205,-1.49757,-1.33889,-1.08488,2.15106,-0.49788
+3.18005,0.82163,-1.49740,-1.33955,-1.08458,2.15135,-0.49822
+3.18074,0.82123,-1.49723,-1.34019,-1.08429,2.15164,-0.49856
+3.18144,0.82084,-1.49707,-1.34082,-1.08401,2.15192,-0.49890
+3.18213,0.82045,-1.49691,-1.34144,-1.08373,2.15220,-0.49922
+3.18283,0.82006,-1.49675,-1.34205,-1.08346,2.15247,-0.49954
+3.18352,0.81969,-1.49659,-1.34266,-1.08319,2.15274,-0.49986
+3.18422,0.81932,-1.49644,-1.34325,-1.08292,2.15300,-0.50017
+3.18491,0.81896,-1.49629,-1.34383,-1.08266,2.15325,-0.50047
+3.18561,0.81860,-1.49614,-1.34440,-1.08240,2.15351,-0.50077
+3.18630,0.81826,-1.49599,-1.34496,-1.08215,2.15376,-0.50106
+3.18700,0.81791,-1.49585,-1.34551,-1.08190,2.15400,-0.50135
+3.18769,0.81758,-1.49571,-1.34605,-1.08166,2.15424,-0.50163
+3.18839,0.81725,-1.49557,-1.34658,-1.08142,2.15447,-0.50191
+3.18908,0.81693,-1.49543,-1.34711,-1.08118,2.15470,-0.50218
+3.18977,0.81661,-1.49530,-1.34762,-1.08095,2.15493,-0.50245
+3.19047,0.81630,-1.49516,-1.34813,-1.08072,2.15515,-0.50271
+3.19116,0.81599,-1.49503,-1.34862,-1.08050,2.15537,-0.50297
+3.19186,0.81569,-1.49490,-1.34911,-1.08028,2.15558,-0.50322
+3.19255,0.81539,-1.49478,-1.34959,-1.08006,2.15579,-0.50347
+3.19325,0.81511,-1.49465,-1.35006,-1.07985,2.15600,-0.50372
+3.19394,0.81482,-1.49453,-1.35053,-1.07964,2.15620,-0.50396
+3.19464,0.81454,-1.49441,-1.35098,-1.07943,2.15640,-0.50419
+3.19533,0.81427,-1.49429,-1.35143,-1.07923,2.15660,-0.50442
+3.19603,0.81399,-1.49415,-1.35192,-1.07901,2.15679,-0.50465
+3.19672,0.81367,-1.49380,-1.35282,-1.07862,2.15702,-0.50493
+3.19742,0.81335,-1.49345,-1.35370,-1.07824,2.15725,-0.50520
+3.19811,0.81303,-1.49311,-1.35457,-1.07786,2.15747,-0.50547
+3.19881,0.81272,-1.49277,-1.35542,-1.07750,2.15769,-0.50573
+3.19950,0.81242,-1.49244,-1.35626,-1.07713,2.15791,-0.50599
+3.20019,0.81212,-1.49211,-1.35709,-1.07677,2.15812,-0.50624
+3.20089,0.81183,-1.49179,-1.35790,-1.07642,2.15832,-0.50648
+3.20158,0.81155,-1.49148,-1.35870,-1.07608,2.15853,-0.50673
+3.20228,0.81126,-1.49117,-1.35948,-1.07574,2.15873,-0.50696
+3.20297,0.81099,-1.49086,-1.36025,-1.07540,2.15892,-0.50720
+3.20367,0.81072,-1.49056,-1.36101,-1.07507,2.15911,-0.50743
+3.20436,0.81045,-1.49027,-1.36176,-1.07475,2.15930,-0.50765
+3.20506,0.81019,-1.48998,-1.36249,-1.07443,2.15949,-0.50787
+3.20575,0.80994,-1.48969,-1.36321,-1.07411,2.15967,-0.50809
+3.20645,0.80969,-1.48941,-1.36392,-1.07380,2.15985,-0.50830
+3.20714,0.80944,-1.48914,-1.36461,-1.07350,2.16002,-0.50851
+3.20784,0.80920,-1.48887,-1.36530,-1.07320,2.16019,-0.50871
+3.20853,0.80896,-1.48860,-1.36597,-1.07290,2.16036,-0.50891
+3.20922,0.80873,-1.48834,-1.36664,-1.07261,2.16053,-0.50911
+3.20992,0.80850,-1.48808,-1.36729,-1.07233,2.16069,-0.50930
+3.21061,0.80828,-1.48783,-1.36793,-1.07205,2.16085,-0.50949
+3.21131,0.80806,-1.48758,-1.36856,-1.07177,2.16100,-0.50968
+3.21200,0.80784,-1.48733,-1.36918,-1.07150,2.16116,-0.50986
+3.21270,0.80763,-1.48709,-1.36978,-1.07123,2.16131,-0.51004
+3.21339,0.80742,-1.48686,-1.37038,-1.07097,2.16145,-0.51022
+3.21409,0.80722,-1.48662,-1.37097,-1.07071,2.16160,-0.51039
+3.21478,0.80702,-1.48639,-1.37155,-1.07045,2.16174,-0.51056
+3.21548,0.80682,-1.48617,-1.37212,-1.07020,2.16188,-0.51072
+3.21617,0.80663,-1.48595,-1.37268,-1.06995,2.16202,-0.51089
+3.21687,0.80644,-1.48573,-1.37323,-1.06971,2.16215,-0.51105
+3.21756,0.80630,-1.48552,-1.37372,-1.06949,2.16226,-0.51117
+3.21826,0.80595,-1.48475,-1.37535,-1.06881,2.16250,-0.51147
+3.21895,0.80561,-1.48399,-1.37696,-1.06813,2.16274,-0.51176
+3.21964,0.80528,-1.48324,-1.37854,-1.06746,2.16297,-0.51204
+3.22034,0.80495,-1.48251,-1.38009,-1.06681,2.16320,-0.51232
+3.22103,0.80463,-1.48179,-1.38161,-1.06616,2.16342,-0.51259
+3.22173,0.80432,-1.48108,-1.38311,-1.06553,2.16364,-0.51286
+3.22242,0.80401,-1.48038,-1.38459,-1.06491,2.16386,-0.51312
+3.22312,0.80371,-1.47970,-1.38604,-1.06429,2.16407,-0.51338
+3.22381,0.80341,-1.47903,-1.38746,-1.06369,2.16428,-0.51363
+3.22451,0.80312,-1.47836,-1.38886,-1.06309,2.16448,-0.51388
+3.22520,0.80283,-1.47771,-1.39024,-1.06251,2.16468,-0.51412
+3.22590,0.80255,-1.47707,-1.39159,-1.06193,2.16488,-0.51436
+3.22659,0.80228,-1.47645,-1.39292,-1.06136,2.16507,-0.51459
+3.22729,0.80201,-1.47583,-1.39423,-1.06080,2.16526,-0.51482
+3.22798,0.80175,-1.47522,-1.39552,-1.06025,2.16545,-0.51504
+3.22867,0.80149,-1.47463,-1.39678,-1.05971,2.16563,-0.51526
+3.22937,0.80123,-1.47404,-1.39802,-1.05918,2.16581,-0.51548
+3.23006,0.80099,-1.47346,-1.39925,-1.05865,2.16598,-0.51569
+3.23076,0.80074,-1.47290,-1.40045,-1.05814,2.16615,-0.51590
+3.23145,0.80050,-1.47234,-1.40163,-1.05763,2.16632,-0.51610
+3.23215,0.80027,-1.47179,-1.40279,-1.05713,2.16648,-0.51630
+3.23284,0.80004,-1.47125,-1.40393,-1.05664,2.16664,-0.51649
+3.23354,0.79981,-1.47072,-1.40505,-1.05615,2.16680,-0.51668
+3.23423,0.79959,-1.47020,-1.40616,-1.05568,2.16696,-0.51687
+3.23493,0.79938,-1.46969,-1.40724,-1.05521,2.16711,-0.51705
+3.23562,0.79916,-1.46919,-1.40831,-1.05475,2.16726,-0.51723
+3.23632,0.79896,-1.46870,-1.40936,-1.05429,2.16740,-0.51741
+3.23701,0.79875,-1.46821,-1.41039,-1.05384,2.16755,-0.51758
+3.23770,0.79855,-1.46773,-1.41140,-1.05340,2.16769,-0.51775
+3.23840,0.79835,-1.46726,-1.41240,-1.05297,2.16783,-0.51792
+3.23909,0.79816,-1.46680,-1.41338,-1.05254,2.16796,-0.51808
+3.23979,0.79797,-1.46635,-1.41434,-1.05212,2.16809,-0.51824
+3.24048,0.79779,-1.46590,-1.41529,-1.05171,2.16822,-0.51839
+3.24118,0.79761,-1.46546,-1.41622,-1.05130,2.16835,-0.51855
+3.24187,0.79743,-1.46503,-1.41714,-1.05090,2.16848,-0.51870
+3.24257,0.79726,-1.46461,-1.41804,-1.05051,2.16860,-0.51884
+3.24326,0.79709,-1.46419,-1.41892,-1.05012,2.16872,-0.51899
+3.24396,0.79692,-1.46378,-1.41979,-1.04974,2.16884,-0.51913
+3.24465,0.79675,-1.46338,-1.42065,-1.04936,2.16895,-0.51927
+3.24535,0.79659,-1.46298,-1.42149,-1.04899,2.16906,-0.51940
+3.24604,0.79644,-1.46260,-1.42232,-1.04862,2.16918,-0.51953
+3.24674,0.79628,-1.46221,-1.42313,-1.04826,2.16928,-0.51966
+3.24743,0.79613,-1.46184,-1.42393,-1.04791,2.16939,-0.51979
+3.24812,0.79598,-1.46147,-1.42472,-1.04756,2.16949,-0.51991
+3.24882,0.79584,-1.46110,-1.42549,-1.04722,2.16960,-0.52004
+3.24951,0.79569,-1.46075,-1.42625,-1.04688,2.16970,-0.52016
+3.25021,0.79555,-1.46039,-1.42700,-1.04655,2.16980,-0.52027
+3.25090,0.79542,-1.46005,-1.42773,-1.04622,2.16989,-0.52039
+3.25160,0.79528,-1.45971,-1.42846,-1.04590,2.16999,-0.52050
+3.25229,0.79515,-1.45938,-1.42917,-1.04559,2.17008,-0.52061
+3.25299,0.79502,-1.45905,-1.42987,-1.04527,2.17017,-0.52072
+3.25368,0.79490,-1.45872,-1.43055,-1.04497,2.17026,-0.52082
+3.25438,0.79477,-1.45841,-1.43123,-1.04466,2.17034,-0.52093
+3.25507,0.79465,-1.45809,-1.43189,-1.04437,2.17043,-0.52103
+3.25577,0.79453,-1.45779,-1.43255,-1.04407,2.17051,-0.52113
+3.25646,0.79442,-1.45749,-1.43319,-1.04379,2.17060,-0.52122
+3.25715,0.79430,-1.45719,-1.43382,-1.04350,2.17068,-0.52132
+3.25785,0.79419,-1.45690,-1.43444,-1.04322,2.17075,-0.52141
+3.25854,0.79408,-1.45661,-1.43506,-1.04295,2.17083,-0.52150
+3.25924,0.79397,-1.45633,-1.43566,-1.04268,2.17091,-0.52159
+3.25993,0.79387,-1.45605,-1.43625,-1.04241,2.17098,-0.52168
+3.26063,0.79383,-1.45591,-1.43653,-1.04228,2.17101,-0.52171
+3.26132,0.79372,-1.45535,-1.43759,-1.04184,2.17109,-0.52181
+3.26202,0.79361,-1.45480,-1.43864,-1.04139,2.17116,-0.52189
+3.26271,0.79351,-1.45426,-1.43967,-1.04096,2.17123,-0.52198
+3.26341,0.79341,-1.45372,-1.44068,-1.04053,2.17130,-0.52207
+3.26410,0.79331,-1.45320,-1.44167,-1.04011,2.17137,-0.52215
+3.26480,0.79322,-1.45269,-1.44265,-1.03969,2.17144,-0.52223
+3.26549,0.79312,-1.45218,-1.44361,-1.03928,2.17151,-0.52231
+3.26619,0.79303,-1.45168,-1.44455,-1.03888,2.17157,-0.52239
+3.26688,0.79294,-1.45119,-1.44548,-1.03848,2.17163,-0.52246
+3.26757,0.79285,-1.45071,-1.44640,-1.03809,2.17170,-0.52253
+3.26827,0.79277,-1.45024,-1.44729,-1.03771,2.17176,-0.52261
+3.26896,0.79268,-1.44977,-1.44818,-1.03733,2.17181,-0.52268
+3.26966,0.79260,-1.44932,-1.44904,-1.03695,2.17187,-0.52274
+3.27035,0.79252,-1.44887,-1.44990,-1.03659,2.17193,-0.52281
+3.27105,0.79244,-1.44843,-1.45074,-1.03623,2.17198,-0.52288
+3.27174,0.79237,-1.44799,-1.45156,-1.03587,2.17204,-0.52294
+3.27244,0.79229,-1.44757,-1.45237,-1.03552,2.17209,-0.52300
+3.27313,0.79222,-1.44715,-1.45317,-1.03517,2.17214,-0.52306
+3.27383,0.79215,-1.44673,-1.45396,-1.03483,2.17219,-0.52312
+3.27452,0.79208,-1.44633,-1.45473,-1.03450,2.17224,-0.52318
+3.27522,0.79201,-1.44593,-1.45549,-1.03417,2.17229,-0.52323
+3.27591,0.79194,-1.44554,-1.45623,-1.03384,2.17233,-0.52329
+3.27660,0.79188,-1.44515,-1.45697,-1.03353,2.17238,-0.52334
+3.27730,0.79181,-1.44477,-1.45769,-1.03321,2.17242,-0.52339
+3.27799,0.79175,-1.44440,-1.45840,-1.03290,2.17247,-0.52344
+3.27869,0.79169,-1.44404,-1.45910,-1.03260,2.17251,-0.52349
+3.27938,0.79163,-1.44368,-1.45978,-1.03229,2.17255,-0.52354
+3.28008,0.79157,-1.44332,-1.46046,-1.03200,2.17259,-0.52359
+3.28077,0.79152,-1.44297,-1.46112,-1.03171,2.17263,-0.52363
+3.28147,0.79146,-1.44263,-1.46177,-1.03142,2.17267,-0.52368
+3.28216,0.79141,-1.44230,-1.46241,-1.03114,2.17271,-0.52372
+3.28286,0.79136,-1.44196,-1.46304,-1.03086,2.17274,-0.52376
+3.28355,0.79131,-1.44164,-1.46366,-1.03059,2.17278,-0.52380
+3.28425,0.79126,-1.44132,-1.46427,-1.03032,2.17281,-0.52384
+3.28494,0.79121,-1.44101,-1.46487,-1.03005,2.17285,-0.52388
+3.28563,0.79121,-1.44092,-1.46502,-1.02999,2.17285,-0.52388
+3.28633,0.79119,-1.44010,-1.46642,-1.02942,2.17286,-0.52390
+3.28702,0.79117,-1.43929,-1.46780,-1.02886,2.17287,-0.52391
+3.28772,0.79115,-1.43850,-1.46916,-1.02831,2.17289,-0.52393
+3.28841,0.79114,-1.43772,-1.47050,-1.02776,2.17290,-0.52394
+3.28911,0.79113,-1.43695,-1.47181,-1.02723,2.17291,-0.52395
+3.28980,0.79111,-1.43620,-1.47310,-1.02670,2.17291,-0.52396
+3.29050,0.79110,-1.43546,-1.47437,-1.02618,2.17292,-0.52397
+3.29119,0.79109,-1.43473,-1.47562,-1.02567,2.17293,-0.52398
+3.29189,0.79108,-1.43401,-1.47685,-1.02516,2.17294,-0.52398
+3.29258,0.79107,-1.43331,-1.47806,-1.02467,2.17294,-0.52399
+3.29328,0.79106,-1.43261,-1.47924,-1.02418,2.17295,-0.52400
+3.29397,0.79105,-1.43193,-1.48041,-1.02370,2.17295,-0.52400
+3.29467,0.79105,-1.43127,-1.48156,-1.02322,2.17296,-0.52400
+3.29536,0.79104,-1.43061,-1.48268,-1.02276,2.17296,-0.52401
+3.29605,0.79104,-1.42996,-1.48379,-1.02230,2.17297,-0.52401
+3.29675,0.79103,-1.42933,-1.48488,-1.02185,2.17297,-0.52401
+3.29744,0.79103,-1.42870,-1.48595,-1.02140,2.17297,-0.52401
+3.29814,0.79103,-1.42809,-1.48701,-1.02096,2.17297,-0.52401
+3.29883,0.79102,-1.42749,-1.48804,-1.02053,2.17297,-0.52401
+3.29953,0.79102,-1.42689,-1.48906,-1.02010,2.17297,-0.52401
+3.30022,0.79102,-1.42631,-1.49006,-1.01969,2.17297,-0.52401
+3.30092,0.79102,-1.42574,-1.49104,-1.01927,2.17297,-0.52401
+3.30161,0.79102,-1.42518,-1.49201,-1.01887,2.17297,-0.52400
+3.30231,0.79102,-1.42462,-1.49296,-1.01847,2.17297,-0.52400
+3.30300,0.79102,-1.42408,-1.49390,-1.01807,2.17297,-0.52399
+3.30370,0.79103,-1.42354,-1.49482,-1.01768,2.17297,-0.52399
+3.30439,0.79103,-1.42302,-1.49572,-1.01730,2.17297,-0.52398
+3.30508,0.79103,-1.42250,-1.49661,-1.01693,2.17297,-0.52398
+3.30578,0.79103,-1.42199,-1.49749,-1.01655,2.17296,-0.52397
+3.30647,0.79104,-1.42149,-1.49835,-1.01619,2.17296,-0.52397
+3.30717,0.79104,-1.42100,-1.49919,-1.01583,2.17296,-0.52396
+3.30786,0.79105,-1.42052,-1.50003,-1.01548,2.17295,-0.52395
+3.30856,0.79105,-1.42005,-1.50084,-1.01513,2.17295,-0.52394
+3.30925,0.79106,-1.41958,-1.50165,-1.01478,2.17294,-0.52393
+3.30995,0.79106,-1.41912,-1.50244,-1.01445,2.17294,-0.52393
+3.31064,0.79107,-1.41867,-1.50321,-1.01411,2.17293,-0.52392
+3.31134,0.79108,-1.41823,-1.50398,-1.01378,2.17293,-0.52391
+3.31203,0.79109,-1.41780,-1.50473,-1.01346,2.17292,-0.52390
+3.31273,0.79109,-1.41737,-1.50547,-1.01314,2.17292,-0.52389
+3.31342,0.79110,-1.41695,-1.50619,-1.01283,2.17291,-0.52388
+3.31412,0.79111,-1.41653,-1.50691,-1.01252,2.17291,-0.52387
+3.31481,0.79112,-1.41613,-1.50761,-1.01222,2.17290,-0.52385
+3.31550,0.79113,-1.41573,-1.50830,-1.01192,2.17289,-0.52384
+3.31620,0.79113,-1.41534,-1.50898,-1.01162,2.17289,-0.52383
+3.31689,0.79114,-1.41495,-1.50965,-1.01133,2.17288,-0.52382
+3.31759,0.79115,-1.41457,-1.51030,-1.01105,2.17287,-0.52381
+3.31828,0.79116,-1.41420,-1.51095,-1.01076,2.17286,-0.52380
+3.31898,0.79117,-1.41383,-1.51158,-1.01049,2.17286,-0.52378
+3.31967,0.79118,-1.41347,-1.51221,-1.01021,2.17285,-0.52377
+3.32037,0.79119,-1.41312,-1.51282,-1.00994,2.17284,-0.52376
+3.32106,0.79120,-1.41277,-1.51343,-1.00968,2.17283,-0.52374
+3.32176,0.79122,-1.41242,-1.51402,-1.00942,2.17282,-0.52373
+3.32245,0.79122,-1.41238,-1.51410,-1.00939,2.17282,-0.52373
+3.32315,0.79126,-1.41193,-1.51484,-1.00907,2.17279,-0.52369
+3.32384,0.79130,-1.41148,-1.51557,-1.00876,2.17277,-0.52366
+3.32453,0.79133,-1.41105,-1.51629,-1.00846,2.17274,-0.52362
+3.32523,0.79137,-1.41062,-1.51700,-1.00816,2.17271,-0.52358
+3.32592,0.79141,-1.41020,-1.51770,-1.00786,2.17269,-0.52355
+3.32662,0.79145,-1.40978,-1.51838,-1.00757,2.17266,-0.52351
+3.32731,0.79148,-1.40937,-1.51906,-1.00728,2.17264,-0.52348
+3.32801,0.79152,-1.40897,-1.51972,-1.00700,2.17261,-0.52344
+3.32870,0.79156,-1.40858,-1.52037,-1.00672,2.17258,-0.52341
+3.32940,0.79159,-1.40819,-1.52101,-1.00644,2.17256,-0.52337
+3.33009,0.79163,-1.40781,-1.52164,-1.00617,2.17253,-0.52334
+3.33079,0.79167,-1.40744,-1.52226,-1.00591,2.17251,-0.52330
+3.33148,0.79170,-1.40707,-1.52287,-1.00565,2.17248,-0.52327
+3.33218,0.79174,-1.40671,-1.52347,-1.00539,2.17245,-0.52323
+3.33287,0.79177,-1.40635,-1.52406,-1.00513,2.17243,-0.52320
+3.33356,0.79179,-1.40626,-1.52421,-1.00507,2.17242,-0.52319
+3.33426,0.79189,-1.40564,-1.52515,-1.00469,2.17235,-0.52309
+3.33495,0.79200,-1.40504,-1.52607,-1.00432,2.17227,-0.52300
+3.33565,0.79210,-1.40445,-1.52698,-1.00396,2.17220,-0.52291
+3.33634,0.79220,-1.40387,-1.52787,-1.00360,2.17213,-0.52282
+3.33704,0.79231,-1.40330,-1.52874,-1.00324,2.17206,-0.52273
+3.33773,0.79241,-1.40274,-1.52961,-1.00289,2.17199,-0.52264
+3.33843,0.79250,-1.40218,-1.53045,-1.00255,2.17192,-0.52256
+3.33912,0.79260,-1.40164,-1.53129,-1.00221,2.17185,-0.52247
+3.33982,0.79270,-1.40111,-1.53211,-1.00187,2.17178,-0.52238
+3.34051,0.79280,-1.40058,-1.53291,-1.00155,2.17171,-0.52230
+3.34121,0.79289,-1.40007,-1.53370,-1.00122,2.17165,-0.52222
+3.34190,0.79298,-1.39956,-1.53448,-1.00090,2.17158,-0.52213
+3.34260,0.79308,-1.39906,-1.53525,-1.00059,2.17152,-0.52205
+3.34329,0.79317,-1.39858,-1.53600,-1.00028,2.17145,-0.52197
+3.34398,0.79326,-1.39809,-1.53674,-0.99997,2.17139,-0.52189
+3.34468,0.79335,-1.39762,-1.53747,-0.99967,2.17132,-0.52181
+3.34537,0.79344,-1.39716,-1.53819,-0.99937,2.17126,-0.52173
+3.34607,0.79352,-1.39670,-1.53889,-0.99908,2.17120,-0.52165
+3.34676,0.79361,-1.39625,-1.53958,-0.99879,2.17114,-0.52157
+3.34746,0.79370,-1.39581,-1.54026,-0.99851,2.17108,-0.52150
+3.34815,0.79378,-1.39538,-1.54093,-0.99823,2.17102,-0.52142
+3.34885,0.79387,-1.39495,-1.54159,-0.99796,2.17096,-0.52135
+3.34954,0.79395,-1.39453,-1.54224,-0.99768,2.17090,-0.52127
+3.35024,0.79403,-1.39412,-1.54288,-0.99742,2.17084,-0.52120
+3.35093,0.79411,-1.39371,-1.54350,-0.99715,2.17079,-0.52113
+3.35163,0.79419,-1.39332,-1.54412,-0.99689,2.17073,-0.52105
+3.35232,0.79427,-1.39293,-1.54472,-0.99664,2.17067,-0.52098
+3.35301,0.79435,-1.39254,-1.54532,-0.99639,2.17062,-0.52091
+3.35371,0.79442,-1.39216,-1.54590,-0.99614,2.17056,-0.52084
+3.35440,0.79450,-1.39179,-1.54648,-0.99590,2.17051,-0.52077
+3.35510,0.79455,-1.39163,-1.54672,-0.99580,2.17048,-0.52073
+3.35579,0.79485,-1.39072,-1.54794,-0.99534,2.17026,-0.52047
+3.35649,0.79515,-1.38982,-1.54914,-0.99489,2.17005,-0.52021
+3.35718,0.79545,-1.38895,-1.55032,-0.99445,2.16985,-0.51996
+3.35788,0.79575,-1.38808,-1.55149,-0.99402,2.16964,-0.51971
+3.35857,0.79604,-1.38723,-1.55263,-0.99358,2.16944,-0.51946
+3.35927,0.79632,-1.38640,-1.55375,-0.99316,2.16924,-0.51921
+3.35996,0.79661,-1.38558,-1.55486,-0.99274,2.16904,-0.51897
+3.36066,0.79689,-1.38478,-1.55594,-0.99233,2.16885,-0.51873
+3.36135,0.79716,-1.38398,-1.55701,-0.99193,2.16865,-0.51849
+3.36205,0.79743,-1.38321,-1.55806,-0.99153,2.16846,-0.51826
+3.36274,0.79770,-1.38244,-1.55909,-0.99113,2.16828,-0.51803
+3.36343,0.79797,-1.38169,-1.56011,-0.99074,2.16809,-0.51780
+3.36413,0.79823,-1.38095,-1.56110,-0.99036,2.16791,-0.51758
+3.36482,0.79848,-1.38022,-1.56208,-0.98999,2.16773,-0.51736
+3.36552,0.79874,-1.37951,-1.56305,-0.98961,2.16755,-0.51714
+3.36621,0.79899,-1.37881,-1.56400,-0.98925,2.16738,-0.51692
+3.36691,0.79924,-1.37812,-1.56493,-0.98889,2.16720,-0.51671
+3.36760,0.79948,-1.37744,-1.56585,-0.98853,2.16703,-0.51650
+3.36830,0.79972,-1.37678,-1.56675,-0.98818,2.16686,-0.51629
+3.36899,0.79996,-1.37612,-1.56763,-0.98784,2.16670,-0.51609
+3.36969,0.80019,-1.37548,-1.56850,-0.98750,2.16653,-0.51589
+3.37038,0.80042,-1.37485,-1.56936,-0.98716,2.16637,-0.51569
+3.37108,0.80065,-1.37423,-1.57020,-0.98683,2.16621,-0.51549
+3.37177,0.80087,-1.37362,-1.57103,-0.98650,2.16605,-0.51530
+3.37246,0.80110,-1.37302,-1.57185,-0.98618,2.16589,-0.51510
+3.37316,0.80131,-1.37243,-1.57265,-0.98587,2.16574,-0.51492
+3.37385,0.80153,-1.37185,-1.57343,-0.98556,2.16559,-0.51473
+3.37455,0.80174,-1.37128,-1.57421,-0.98525,2.16544,-0.51455
+3.37524,0.80195,-1.37072,-1.57497,-0.98495,2.16529,-0.51436
+3.37594,0.80216,-1.37016,-1.57572,-0.98465,2.16515,-0.51418
+3.37663,0.80236,-1.36962,-1.57646,-0.98435,2.16500,-0.51401
+3.37733,0.80256,-1.36909,-1.57718,-0.98406,2.16486,-0.51383
+3.37802,0.80276,-1.36857,-1.57789,-0.98378,2.16472,-0.51366
+3.37872,0.80296,-1.36806,-1.57859,-0.98350,2.16458,-0.51349
+3.37941,0.80315,-1.36755,-1.57928,-0.98322,2.16444,-0.51332
+3.38011,0.80334,-1.36705,-1.57996,-0.98295,2.16431,-0.51316
+3.38080,0.80353,-1.36657,-1.58062,-0.98268,2.16418,-0.51299
+3.38149,0.80371,-1.36609,-1.58128,-0.98241,2.16405,-0.51283
+3.38219,0.80390,-1.36562,-1.58192,-0.98215,2.16392,-0.51268
+3.38288,0.80408,-1.36515,-1.58255,-0.98189,2.16379,-0.51252
+3.38358,0.80425,-1.36470,-1.58317,-0.98164,2.16366,-0.51236
+3.38427,0.80443,-1.36425,-1.58379,-0.98139,2.16354,-0.51221
+3.38497,0.80460,-1.36381,-1.58439,-0.98114,2.16342,-0.51206
+3.38566,0.80477,-1.36338,-1.58498,-0.98090,2.16330,-0.51191
+3.38636,0.80494,-1.36295,-1.58556,-0.98066,2.16318,-0.51177
+3.38705,0.80510,-1.36254,-1.58613,-0.98042,2.16306,-0.51162
+3.38775,0.80527,-1.36213,-1.58670,-0.98019,2.16294,-0.51148
+3.38844,0.80543,-1.36172,-1.58725,-0.97996,2.16283,-0.51134
+3.38914,0.80559,-1.36133,-1.58779,-0.97973,2.16272,-0.51120
+3.38983,0.80574,-1.36094,-1.58833,-0.97951,2.16260,-0.51106
+3.39053,0.80580,-1.36081,-1.58851,-0.97944,2.16257,-0.51102
+3.39122,0.80602,-1.36028,-1.58920,-0.97916,2.16241,-0.51082
+3.39191,0.80624,-1.35975,-1.58989,-0.97889,2.16225,-0.51063
+3.39261,0.80646,-1.35924,-1.59056,-0.97863,2.16209,-0.51044
+3.39330,0.80668,-1.35874,-1.59122,-0.97837,2.16194,-0.51025
+3.39400,0.80689,-1.35824,-1.59187,-0.97811,2.16179,-0.51007
+3.39469,0.80710,-1.35775,-1.59251,-0.97786,2.16164,-0.50989
+3.39539,0.80731,-1.35727,-1.59314,-0.97761,2.16149,-0.50971
+3.39608,0.80752,-1.35680,-1.59376,-0.97736,2.16135,-0.50953
+3.39678,0.80772,-1.35634,-1.59436,-0.97712,2.16120,-0.50936
+3.39747,0.80792,-1.35589,-1.59496,-0.97688,2.16106,-0.50919
+3.39817,0.80811,-1.35544,-1.59555,-0.97664,2.16092,-0.50902
+3.39886,0.80831,-1.35500,-1.59613,-0.97641,2.16079,-0.50885
+3.39956,0.80850,-1.35457,-1.59670,-0.97618,2.16065,-0.50869
+3.40025,0.80869,-1.35415,-1.59725,-0.97596,2.16052,-0.50852
+3.40094,0.80887,-1.35373,-1.59780,-0.97573,2.16039,-0.50836
+3.40164,0.80905,-1.35332,-1.59835,-0.97551,2.16026,-0.50820
+3.40233,0.80923,-1.35292,-1.59888,-0.97530,2.16013,-0.50805
+3.40303,0.80941,-1.35252,-1.59940,-0.97508,2.16000,-0.50790
+3.40372,0.80955,-1.35224,-1.59975,-0.97494,2.15990,-0.50778
+3.40442,0.81004,-1.35139,-1.60070,-0.97462,2.15956,-0.50736
+3.40511,0.81052,-1.35056,-1.60164,-0.97429,2.15922,-0.50695
+3.40581,0.81100,-1.34974,-1.60256,-0.97397,2.15889,-0.50655
+3.40650,0.81147,-1.34894,-1.60346,-0.97366,2.15856,-0.50615
+3.40720,0.81193,-1.34815,-1.60435,-0.97335,2.15823,-0.50576
+3.40789,0.81239,-1.34737,-1.60522,-0.97304,2.15791,-0.50538
+3.40859,0.81284,-1.34661,-1.60608,-0.97274,2.15759,-0.50500
+3.40928,0.81329,-1.34586,-1.60692,-0.97244,2.15728,-0.50462
+3.40997,0.81372,-1.34512,-1.60775,-0.97215,2.15697,-0.50425
+3.41067,0.81416,-1.34440,-1.60856,-0.97186,2.15667,-0.50389
+3.41136,0.81458,-1.34368,-1.60937,-0.97157,2.15637,-0.50353
+3.41206,0.81500,-1.34298,-1.61016,-0.97129,2.15607,-0.50318
+3.41275,0.81541,-1.34230,-1.61093,-0.97101,2.15578,-0.50283
+3.41345,0.81582,-1.34162,-1.61169,-0.97074,2.15549,-0.50248
+3.41414,0.81622,-1.34096,-1.61244,-0.97047,2.15521,-0.50214
+3.41484,0.81662,-1.34030,-1.61318,-0.97020,2.15493,-0.50181
+3.41553,0.81701,-1.33966,-1.61390,-0.96994,2.15465,-0.50148
+3.41623,0.81739,-1.33903,-1.61462,-0.96968,2.15438,-0.50116
+3.41692,0.81777,-1.33841,-1.61532,-0.96942,2.15411,-0.50084
+3.41762,0.81814,-1.33780,-1.61601,-0.96917,2.15385,-0.50052
+3.41831,0.81851,-1.33720,-1.61669,-0.96892,2.15359,-0.50021
+3.41901,0.81887,-1.33662,-1.61735,-0.96868,2.15333,-0.49990
+3.41970,0.81923,-1.33604,-1.61801,-0.96843,2.15308,-0.49960
+3.42039,0.81958,-1.33547,-1.61865,-0.96819,2.15283,-0.49931
+3.42109,0.81993,-1.33491,-1.61929,-0.96796,2.15258,-0.49901
+3.42178,0.82027,-1.33436,-1.61991,-0.96773,2.15234,-0.49872
+3.42248,0.82061,-1.33382,-1.62052,-0.96750,2.15210,-0.49844
+3.42317,0.82094,-1.33329,-1.62112,-0.96727,2.15186,-0.49816
+3.42387,0.82126,-1.33277,-1.62172,-0.96705,2.15163,-0.49788
+3.42456,0.82159,-1.33226,-1.62230,-0.96683,2.15140,-0.49761
+3.42526,0.82190,-1.33176,-1.62287,-0.96661,2.15118,-0.49734
+3.42595,0.82222,-1.33126,-1.62344,-0.96640,2.15095,-0.49708
+3.42665,0.82252,-1.33078,-1.62399,-0.96619,2.15073,-0.49682
+3.42734,0.82283,-1.33030,-1.62454,-0.96598,2.15052,-0.49656
+3.42804,0.82313,-1.32983,-1.62507,-0.96577,2.15030,-0.49631
+3.42873,0.82342,-1.32937,-1.62560,-0.96557,2.15009,-0.49606
+3.42942,0.82371,-1.32892,-1.62612,-0.96537,2.14989,-0.49581
+3.43012,0.82400,-1.32847,-1.62663,-0.96517,2.14968,-0.49557
+3.43081,0.82428,-1.32803,-1.62713,-0.96498,2.14948,-0.49533
+3.43151,0.82456,-1.32760,-1.62762,-0.96479,2.14928,-0.49510
+3.43220,0.82483,-1.32718,-1.62811,-0.96460,2.14909,-0.49487
+3.43290,0.82510,-1.32677,-1.62859,-0.96441,2.14889,-0.49464
+3.43359,0.82536,-1.32636,-1.62906,-0.96423,2.14870,-0.49441
+3.43429,0.82562,-1.32596,-1.62952,-0.96404,2.14852,-0.49419
+3.43498,0.82588,-1.32556,-1.62997,-0.96386,2.14833,-0.49397
+3.43568,0.82598,-1.32543,-1.63011,-0.96381,2.14827,-0.49389
+3.43637,0.82641,-1.32489,-1.63064,-0.96363,2.14796,-0.49353
+3.43707,0.82684,-1.32436,-1.63115,-0.96345,2.14765,-0.49317
+3.43776,0.82727,-1.32383,-1.63166,-0.96328,2.14735,-0.49281
+3.43846,0.82768,-1.32332,-1.63216,-0.96310,2.14705,-0.49247
+3.43915,0.82809,-1.32281,-1.63265,-0.96293,2.14676,-0.49212
+3.43984,0.82850,-1.32232,-1.63313,-0.96276,2.14647,-0.49178
+3.44054,0.82890,-1.32183,-1.63360,-0.96259,2.14619,-0.49145
+3.44123,0.82929,-1.32135,-1.63407,-0.96243,2.14591,-0.49112
+3.44193,0.82967,-1.32088,-1.63453,-0.96227,2.14564,-0.49080
+3.44262,0.83006,-1.32042,-1.63498,-0.96210,2.14536,-0.49048
+3.44332,0.83043,-1.31996,-1.63542,-0.96195,2.14510,-0.49017
+3.44401,0.83080,-1.31952,-1.63586,-0.96179,2.14483,-0.48986
+3.44471,0.83116,-1.31908,-1.63629,-0.96163,2.14457,-0.48955
+3.44540,0.83152,-1.31865,-1.63671,-0.96148,2.14432,-0.48926
+3.44610,0.83187,-1.31822,-1.63713,-0.96133,2.14407,-0.48896
+3.44679,0.83222,-1.31781,-1.63753,-0.96118,2.14382,-0.48867
+3.44749,0.83256,-1.31740,-1.63794,-0.96103,2.14357,-0.48838
+3.44818,0.83290,-1.31699,-1.63833,-0.96089,2.14333,-0.48810
+3.44887,0.83323,-1.31660,-1.63872,-0.96074,2.14309,-0.48782
+3.44957,0.83356,-1.31621,-1.63910,-0.96060,2.14286,-0.48755
+3.45026,0.83388,-1.31583,-1.63948,-0.96046,2.14263,-0.48728
+3.45096,0.83399,-1.31570,-1.63959,-0.96042,2.14255,-0.48719
+3.45165,0.83450,-1.31521,-1.63998,-0.96030,2.14219,-0.48676
+3.45235,0.83501,-1.31472,-1.64036,-0.96018,2.14183,-0.48635
+3.45304,0.83550,-1.31424,-1.64074,-0.96007,2.14148,-0.48594
+3.45374,0.83599,-1.31377,-1.64111,-0.95995,2.14113,-0.48553
+3.45443,0.83647,-1.31330,-1.64147,-0.95983,2.14079,-0.48514
+3.45513,0.83694,-1.31285,-1.64183,-0.95972,2.14045,-0.48475
+3.45582,0.83740,-1.31240,-1.64218,-0.95961,2.14012,-0.48436
+3.45652,0.83786,-1.31196,-1.64253,-0.95950,2.13979,-0.48398
+3.45721,0.83831,-1.31153,-1.64287,-0.95939,2.13947,-0.48361
+3.45790,0.83876,-1.31111,-1.64321,-0.95928,2.13915,-0.48324
+3.45860,0.83919,-1.31069,-1.64354,-0.95917,2.13884,-0.48288
+3.45929,0.83962,-1.31028,-1.64386,-0.95907,2.13853,-0.48252
+3.45999,0.84005,-1.30988,-1.64418,-0.95896,2.13823,-0.48217
+3.46068,0.84046,-1.30948,-1.64450,-0.95886,2.13793,-0.48183
+3.46138,0.84087,-1.30910,-1.64481,-0.95875,2.13764,-0.48149
+3.46207,0.84128,-1.30871,-1.64511,-0.95865,2.13735,-0.48116
+3.46277,0.84167,-1.30834,-1.64541,-0.95855,2.13706,-0.48083
+3.46346,0.84207,-1.30797,-1.64570,-0.95845,2.13678,-0.48050
+3.46416,0.84245,-1.30761,-1.64599,-0.95835,2.13650,-0.48018
+3.46485,0.84283,-1.30725,-1.64628,-0.95825,2.13623,-0.47987
+3.46555,0.84316,-1.30696,-1.64649,-0.95818,2.13600,-0.47960
+3.46624,0.84382,-1.30653,-1.64667,-0.95816,2.13553,-0.47906
+3.46694,0.84446,-1.30610,-1.64683,-0.95814,2.13507,-0.47853
+3.46763,0.84509,-1.30567,-1.64700,-0.95812,2.13462,-0.47801
+3.46832,0.84572,-1.30526,-1.64717,-0.95810,2.13417,-0.47750
+3.46902,0.84633,-1.30485,-1.64733,-0.95808,2.13373,-0.47700
+3.46971,0.84694,-1.30445,-1.64749,-0.95805,2.13330,-0.47650
+3.47041,0.84753,-1.30406,-1.64764,-0.95803,2.13287,-0.47601
+3.47110,0.84812,-1.30367,-1.64780,-0.95801,2.13246,-0.47553
+3.47180,0.84870,-1.30329,-1.64795,-0.95798,2.13204,-0.47506
+3.47249,0.84927,-1.30292,-1.64810,-0.95796,2.13164,-0.47460
+3.47319,0.84983,-1.30255,-1.64825,-0.95794,2.13123,-0.47414
+3.47388,0.85038,-1.30219,-1.64839,-0.95791,2.13084,-0.47369
+3.47458,0.85092,-1.30184,-1.64853,-0.95789,2.13045,-0.47325
+3.47527,0.85145,-1.30149,-1.64868,-0.95786,2.13007,-0.47281
+3.47597,0.85197,-1.30115,-1.64881,-0.95784,2.12969,-0.47238
+3.47666,0.85249,-1.30082,-1.64895,-0.95781,2.12932,-0.47196
+3.47735,0.85300,-1.30049,-1.64909,-0.95779,2.12896,-0.47155
+3.47805,0.85350,-1.30016,-1.64922,-0.95776,2.12860,-0.47114
+3.47874,0.85399,-1.29985,-1.64935,-0.95774,2.12824,-0.47074
+3.47944,0.85448,-1.29954,-1.64948,-0.95771,2.12789,-0.47034
+3.48013,0.85495,-1.29923,-1.64961,-0.95768,2.12755,-0.46995
+3.48083,0.85542,-1.29893,-1.64973,-0.95766,2.12721,-0.46957
+3.48152,0.85588,-1.29863,-1.64985,-0.95763,2.12688,-0.46920
+3.48222,0.85634,-1.29834,-1.64998,-0.95760,2.12655,-0.46883
+3.48291,0.85679,-1.29806,-1.65010,-0.95758,2.12623,-0.46846
+3.48361,0.85723,-1.29778,-1.65021,-0.95755,2.12591,-0.46810
+3.48430,0.85766,-1.29750,-1.65033,-0.95752,2.12560,-0.46775
+3.48500,0.85787,-1.29741,-1.65030,-0.95755,2.12544,-0.46758
+3.48569,0.85914,-1.29708,-1.64978,-0.95786,2.12454,-0.46655
+3.48639,0.86039,-1.29676,-1.64927,-0.95817,2.12364,-0.46555
+3.48708,0.86162,-1.29644,-1.64877,-0.95847,2.12277,-0.46456
+3.48777,0.86283,-1.29613,-1.64827,-0.95876,2.12190,-0.46359
+3.48847,0.86402,-1.29583,-1.64778,-0.95905,2.12105,-0.46263
+3.48916,0.86519,-1.29554,-1.64730,-0.95933,2.12021,-0.46169
+3.48986,0.86635,-1.29525,-1.64683,-0.95961,2.11938,-0.46077
+3.49055,0.86748,-1.29496,-1.64637,-0.95989,2.11857,-0.45986
+3.49125,0.86860,-1.29469,-1.64592,-0.96015,2.11777,-0.45897
+3.49194,0.86969,-1.29441,-1.64547,-0.96042,2.11698,-0.45809
+3.49264,0.87077,-1.29415,-1.64503,-0.96067,2.11621,-0.45723
+3.49333,0.87183,-1.29389,-1.64460,-0.96093,2.11544,-0.45638
+3.49403,0.87288,-1.29364,-1.64417,-0.96117,2.11469,-0.45555
+3.49472,0.87391,-1.29339,-1.64375,-0.96142,2.11395,-0.45473
+3.49542,0.87492,-1.29314,-1.64334,-0.96165,2.11322,-0.45393
+3.49611,0.87591,-1.29291,-1.64294,-0.96189,2.11250,-0.45314
+3.49680,0.87689,-1.29267,-1.64254,-0.96212,2.11180,-0.45236
+3.49750,0.87785,-1.29245,-1.64215,-0.96234,2.11110,-0.45160
+3.49819,0.87880,-1.29222,-1.64177,-0.96256,2.11042,-0.45085
+3.49889,0.87973,-1.29200,-1.64139,-0.96278,2.10974,-0.45011
+3.49958,0.88064,-1.29179,-1.64102,-0.96299,2.10908,-0.44938
+3.50028,0.88154,-1.29158,-1.64066,-0.96320,2.10843,-0.44867
+3.50097,0.88243,-1.29137,-1.64030,-0.96340,2.10779,-0.44797
+3.50167,0.88330,-1.29117,-1.63995,-0.96361,2.10715,-0.44728
+3.50236,0.88416,-1.29098,-1.63961,-0.96380,2.10653,-0.44660
+3.50306,0.88500,-1.29078,-1.63927,-0.96399,2.10592,-0.44593
+3.50375,0.88583,-1.29060,-1.63894,-0.96418,2.10532,-0.44528
+3.50445,0.88665,-1.29041,-1.63861,-0.96437,2.10472,-0.44463
+3.50514,0.88745,-1.29023,-1.63829,-0.96455,2.10414,-0.44400
+3.50583,0.88824,-1.29005,-1.63797,-0.96473,2.10356,-0.44338
+3.50653,0.88901,-1.28988,-1.63766,-0.96490,2.10300,-0.44276
+3.50722,0.88978,-1.28971,-1.63736,-0.96507,2.10244,-0.44216
+3.50792,0.89053,-1.28954,-1.63706,-0.96524,2.10189,-0.44157
+3.50861,0.89127,-1.28938,-1.63677,-0.96540,2.10135,-0.44099
+3.50931,0.89199,-1.28922,-1.63648,-0.96557,2.10082,-0.44042
+3.51000,0.89271,-1.28906,-1.63619,-0.96572,2.10030,-0.43986
+3.51070,0.89341,-1.28891,-1.63591,-0.96588,2.09979,-0.43930
+3.51139,0.89410,-1.28876,-1.63564,-0.96603,2.09928,-0.43876
+3.51209,0.89478,-1.28861,-1.63537,-0.96618,2.09878,-0.43823
+3.51278,0.89545,-1.28847,-1.63511,-0.96633,2.09829,-0.43770
+3.51348,0.89611,-1.28832,-1.63485,-0.96647,2.09781,-0.43718
+3.51417,0.89676,-1.28819,-1.63460,-0.96661,2.09734,-0.43668
+3.51487,0.89739,-1.28805,-1.63435,-0.96675,2.09687,-0.43618
+3.51556,0.89802,-1.28792,-1.63410,-0.96688,2.09641,-0.43569
+3.51625,0.89863,-1.28778,-1.63386,-0.96701,2.09596,-0.43520
+3.51695,0.89924,-1.28766,-1.63362,-0.96714,2.09551,-0.43473
+3.51764,0.89984,-1.28753,-1.63339,-0.96727,2.09508,-0.43426
+3.51834,0.90042,-1.28741,-1.63316,-0.96739,2.09465,-0.43381
+3.51903,0.90100,-1.28729,-1.63294,-0.96752,2.09422,-0.43336
+3.51973,0.90156,-1.28717,-1.63272,-0.96763,2.09381,-0.43291
+3.52042,0.90212,-1.28705,-1.63250,-0.96775,2.09339,-0.43248
+3.52112,0.90267,-1.28694,-1.63229,-0.96787,2.09299,-0.43205
+3.52181,0.90321,-1.28683,-1.63208,-0.96798,2.09259,-0.43163
+3.52251,0.90374,-1.28672,-1.63188,-0.96809,2.09220,-0.43121
+3.52320,0.90426,-1.28661,-1.63168,-0.96820,2.09182,-0.43081
+3.52390,0.90477,-1.28650,-1.63148,-0.96830,2.09144,-0.43041
+3.52459,0.90528,-1.28640,-1.63129,-0.96841,2.09107,-0.43001
+3.52528,0.90577,-1.28630,-1.63110,-0.96851,2.09070,-0.42963
+3.52598,0.90626,-1.28620,-1.63091,-0.96861,2.09034,-0.42924
+3.52667,0.90674,-1.28610,-1.63073,-0.96870,2.08999,-0.42887
+3.52737,0.90721,-1.28600,-1.63055,-0.96880,2.08964,-0.42850
+3.52806,0.90767,-1.28591,-1.63037,-0.96889,2.08929,-0.42814
+3.52876,0.90813,-1.28582,-1.63020,-0.96898,2.08895,-0.42779
+3.52945,0.90858,-1.28573,-1.63003,-0.96907,2.08862,-0.42744
+3.53015,0.90902,-1.28564,-1.62986,-0.96916,2.08830,-0.42709
+3.53084,0.90919,-1.28562,-1.62977,-0.96921,2.08817,-0.42696
+3.53154,0.90997,-1.28563,-1.62917,-0.96950,2.08760,-0.42635
+3.53223,0.91075,-1.28564,-1.62858,-0.96978,2.08703,-0.42575
+3.53293,0.91151,-1.28564,-1.62800,-0.97006,2.08647,-0.42517
+3.53362,0.91226,-1.28565,-1.62744,-0.97034,2.08592,-0.42459
+3.53432,0.91299,-1.28566,-1.62688,-0.97061,2.08538,-0.42402
+3.53501,0.91372,-1.28567,-1.62633,-0.97087,2.08485,-0.42346
+3.53570,0.91443,-1.28568,-1.62579,-0.97113,2.08433,-0.42292
+3.53640,0.91512,-1.28569,-1.62526,-0.97139,2.08381,-0.42238
+3.53709,0.91581,-1.28570,-1.62474,-0.97164,2.08331,-0.42185
+3.53779,0.91649,-1.28571,-1.62423,-0.97189,2.08281,-0.42133
+3.53848,0.91715,-1.28572,-1.62373,-0.97213,2.08232,-0.42082
+3.53918,0.91780,-1.28573,-1.62323,-0.97237,2.08184,-0.42031
+3.53987,0.91844,-1.28574,-1.62275,-0.97260,2.08137,-0.41982
+3.54057,0.91908,-1.28576,-1.62227,-0.97283,2.08090,-0.41934
+3.54126,0.91970,-1.28577,-1.62180,-0.97306,2.08044,-0.41886
+3.54196,0.92030,-1.28578,-1.62134,-0.97328,2.07999,-0.41839
+3.54265,0.92090,-1.28579,-1.62089,-0.97350,2.07955,-0.41793
+3.54335,0.92149,-1.28581,-1.62044,-0.97371,2.07911,-0.41748
+3.54404,0.92207,-1.28582,-1.62000,-0.97392,2.07869,-0.41703
+3.54473,0.92264,-1.28583,-1.61957,-0.97413,2.07826,-0.41660
+3.54543,0.92320,-1.28584,-1.61915,-0.97433,2.07785,-0.41617
+3.54612,0.92375,-1.28586,-1.61874,-0.97453,2.07744,-0.41575
+3.54682,0.92429,-1.28587,-1.61833,-0.97472,2.07704,-0.41533
+3.54751,0.92482,-1.28588,-1.61793,-0.97492,2.07665,-0.41493
+3.54821,0.92535,-1.28590,-1.61753,-0.97510,2.07626,-0.41452
+3.54890,0.92586,-1.28591,-1.61715,-0.97529,2.07588,-0.41413
+3.54960,0.92637,-1.28592,-1.61677,-0.97547,2.07550,-0.41374
+3.55029,0.92686,-1.28593,-1.61639,-0.97565,2.07513,-0.41336
+3.55099,0.92735,-1.28595,-1.61603,-0.97583,2.07477,-0.41299
+3.55168,0.92783,-1.28596,-1.61567,-0.97600,2.07441,-0.41262
+3.55238,0.92830,-1.28597,-1.61531,-0.97617,2.07406,-0.41226
+3.55307,0.92877,-1.28599,-1.61496,-0.97633,2.07372,-0.41191
+3.55376,0.92922,-1.28600,-1.61462,-0.97650,2.07338,-0.41156
+3.55446,0.92967,-1.28601,-1.61428,-0.97666,2.07304,-0.41122
+3.55515,0.93011,-1.28603,-1.61395,-0.97681,2.07272,-0.41088
+3.55585,0.93054,-1.28604,-1.61363,-0.97697,2.07239,-0.41055
+3.55654,0.93097,-1.28605,-1.61331,-0.97712,2.07208,-0.41023
+3.55724,0.93139,-1.28607,-1.61300,-0.97727,2.07176,-0.40991
+3.55793,0.93180,-1.28608,-1.61269,-0.97742,2.07146,-0.40959
+3.55863,0.93220,-1.28609,-1.61239,-0.97756,2.07115,-0.40928
+3.55932,0.93260,-1.28610,-1.61209,-0.97770,2.07086,-0.40898
+3.56002,0.93279,-1.28613,-1.61191,-0.97778,2.07072,-0.40884
+3.56071,0.93349,-1.28640,-1.61096,-0.97820,2.07020,-0.40831
+3.56141,0.93418,-1.28667,-1.61004,-0.97861,2.06969,-0.40779
+3.56210,0.93485,-1.28693,-1.60913,-0.97901,2.06919,-0.40727
+3.56280,0.93551,-1.28719,-1.60823,-0.97941,2.06870,-0.40677
+3.56349,0.93617,-1.28745,-1.60735,-0.97980,2.06822,-0.40628
+3.56418,0.93681,-1.28770,-1.60648,-0.98018,2.06775,-0.40580
+3.56488,0.93743,-1.28794,-1.60563,-0.98056,2.06728,-0.40532
+3.56557,0.93805,-1.28819,-1.60479,-0.98093,2.06682,-0.40485
+3.56627,0.93866,-1.28843,-1.60397,-0.98130,2.06637,-0.40440
+3.56696,0.93925,-1.28866,-1.60316,-0.98165,2.06593,-0.40395
+3.56766,0.93984,-1.28890,-1.60236,-0.98201,2.06550,-0.40350
+3.56835,0.94041,-1.28913,-1.60158,-0.98235,2.06507,-0.40307
+3.56905,0.94098,-1.28935,-1.60081,-0.98270,2.06465,-0.40264
+3.56974,0.94153,-1.28957,-1.60006,-0.98303,2.06424,-0.40223
+3.57044,0.94208,-1.28979,-1.59931,-0.98336,2.06384,-0.40181
+3.57113,0.94261,-1.29001,-1.59858,-0.98369,2.06344,-0.40141
+3.57183,0.94314,-1.29022,-1.59786,-0.98401,2.06305,-0.40102
+3.57252,0.94365,-1.29043,-1.59716,-0.98432,2.06266,-0.40063
+3.57321,0.94416,-1.29063,-1.59646,-0.98463,2.06228,-0.40025
+3.57391,0.94466,-1.29084,-1.59578,-0.98493,2.06191,-0.39987
+3.57460,0.94515,-1.29104,-1.59511,-0.98523,2.06155,-0.39950
+3.57530,0.94563,-1.29123,-1.59445,-0.98553,2.06119,-0.39914
+3.57599,0.94610,-1.29143,-1.59380,-0.98582,2.06084,-0.39879
+3.57669,0.94657,-1.29162,-1.59316,-0.98610,2.06049,-0.39844
+3.57738,0.94702,-1.29180,-1.59253,-0.98638,2.06015,-0.39809
+3.57808,0.94747,-1.29199,-1.59192,-0.98666,2.05981,-0.39776
+3.57877,0.94791,-1.29217,-1.59131,-0.98693,2.05948,-0.39743
+3.57947,0.94834,-1.29235,-1.59072,-0.98719,2.05916,-0.39710
+3.58016,0.94877,-1.29252,-1.59013,-0.98746,2.05884,-0.39679
+3.58086,0.94918,-1.29270,-1.58955,-0.98771,2.05853,-0.39647
+3.58155,0.94959,-1.29287,-1.58899,-0.98797,2.05822,-0.39617
+3.58225,0.95000,-1.29304,-1.58843,-0.98822,2.05792,-0.39586
+3.58294,0.95039,-1.29320,-1.58788,-0.98846,2.05763,-0.39557
+3.58363,0.95078,-1.29336,-1.58735,-0.98870,2.05734,-0.39528
+3.58433,0.95116,-1.29352,-1.58682,-0.98894,2.05705,-0.39499
+3.58502,0.95154,-1.29368,-1.58630,-0.98917,2.05677,-0.39471
+3.58572,0.95191,-1.29383,-1.58579,-0.98940,2.05649,-0.39443
+3.58641,0.95227,-1.29399,-1.58529,-0.98963,2.05622,-0.39416
+3.58711,0.95262,-1.29414,-1.58479,-0.98985,2.05595,-0.39390
+3.58780,0.95297,-1.29428,-1.58431,-0.99007,2.05569,-0.39364
+3.58850,0.95332,-1.29443,-1.58383,-0.99028,2.05543,-0.39338
+3.58919,0.95365,-1.29457,-1.58336,-0.99049,2.05518,-0.39313
+3.58989,0.95398,-1.29471,-1.58290,-0.99070,2.05493,-0.39288
+3.59058,0.95431,-1.29485,-1.58245,-0.99090,2.05469,-0.39264
+3.59128,0.95463,-1.29499,-1.58200,-0.99110,2.05444,-0.39240
+3.59197,0.95494,-1.29512,-1.58156,-0.99130,2.05421,-0.39216
+3.59266,0.95525,-1.29525,-1.58113,-0.99149,2.05398,-0.39193
+3.59336,0.95538,-1.29532,-1.58093,-0.99159,2.05388,-0.39184
+3.59405,0.95578,-1.29563,-1.58016,-0.99192,2.05358,-0.39154
+3.59475,0.95617,-1.29592,-1.57939,-0.99224,2.05329,-0.39125
+3.59544,0.95656,-1.29622,-1.57865,-0.99257,2.05300,-0.39096
+3.59614,0.95693,-1.29651,-1.57791,-0.99288,2.05272,-0.39068
+3.59683,0.95730,-1.29679,-1.57719,-0.99319,2.05244,-0.39041
+3.59753,0.95767,-1.29707,-1.57648,-0.99350,2.05217,-0.39014
+3.59822,0.95802,-1.29734,-1.57578,-0.99380,2.05190,-0.38987
+3.59892,0.95837,-1.29761,-1.57509,-0.99410,2.05164,-0.38961
+3.59961,0.95872,-1.29788,-1.57441,-0.99439,2.05138,-0.38935
+3.60031,0.95905,-1.29814,-1.57375,-0.99468,2.05112,-0.38910
+3.60100,0.95938,-1.29840,-1.57310,-0.99496,2.05088,-0.38886
+3.60169,0.95971,-1.29865,-1.57245,-0.99524,2.05063,-0.38861
+3.60239,0.96003,-1.29890,-1.57182,-0.99552,2.05039,-0.38838
+3.60308,0.96034,-1.29915,-1.57120,-0.99579,2.05015,-0.38814
+3.60378,0.96065,-1.29939,-1.57059,-0.99605,2.04992,-0.38792
+3.60447,0.96095,-1.29963,-1.56999,-0.99631,2.04970,-0.38769
+3.60517,0.96125,-1.29986,-1.56940,-0.99657,2.04947,-0.38747
+3.60586,0.96154,-1.30009,-1.56882,-0.99682,2.04925,-0.38726
+3.60656,0.96183,-1.30031,-1.56825,-0.99707,2.04904,-0.38704
+3.60725,0.96211,-1.30053,-1.56769,-0.99732,2.04882,-0.38683
+3.60795,0.96239,-1.30075,-1.56713,-0.99756,2.04862,-0.38663
+3.60864,0.96266,-1.30097,-1.56659,-0.99779,2.04841,-0.38643
+3.60934,0.96292,-1.30118,-1.56606,-0.99803,2.04821,-0.38623
+3.61003,0.96318,-1.30139,-1.56553,-0.99826,2.04801,-0.38604
+3.61073,0.96344,-1.30159,-1.56502,-0.99848,2.04782,-0.38585
+3.61142,0.96369,-1.30179,-1.56451,-0.99871,2.04763,-0.38566
+3.61211,0.96394,-1.30199,-1.56401,-0.99892,2.04744,-0.38548
+3.61281,0.96418,-1.30218,-1.56352,-0.99914,2.04726,-0.38530
+3.61350,0.96422,-1.30224,-1.56340,-0.99919,2.04723,-0.38527
+3.61420,0.96457,-1.30285,-1.56216,-0.99970,2.04697,-0.38501
+3.61489,0.96492,-1.30344,-1.56095,-1.00020,2.04671,-0.38475
+3.61559,0.96526,-1.30403,-1.55975,-1.00069,2.04645,-0.38450
+3.61628,0.96560,-1.30461,-1.55857,-1.00117,2.04620,-0.38425
+3.61698,0.96592,-1.30517,-1.55742,-1.00165,2.04596,-0.38401
+3.61767,0.96625,-1.30573,-1.55628,-1.00212,2.04572,-0.38377
+3.61837,0.96656,-1.30628,-1.55516,-1.00258,2.04548,-0.38354
+3.61906,0.96687,-1.30682,-1.55406,-1.00304,2.04525,-0.38331
+3.61976,0.96717,-1.30735,-1.55297,-1.00349,2.04502,-0.38309
+3.62045,0.96747,-1.30787,-1.55191,-1.00393,2.04480,-0.38287
+3.62114,0.96776,-1.30838,-1.55086,-1.00436,2.04458,-0.38266
+3.62184,0.96805,-1.30888,-1.54983,-1.00479,2.04436,-0.38245
+3.62253,0.96833,-1.30938,-1.54881,-1.00521,2.04415,-0.38224
+3.62323,0.96860,-1.30987,-1.54782,-1.00563,2.04395,-0.38204
+3.62392,0.96887,-1.31035,-1.54684,-1.00604,2.04375,-0.38184
+3.62462,0.96913,-1.31082,-1.54587,-1.00644,2.04355,-0.38165
+3.62531,0.96939,-1.31128,-1.54492,-1.00684,2.04335,-0.38146
+3.62601,0.96964,-1.31174,-1.54399,-1.00723,2.04316,-0.38127
+3.62670,0.96989,-1.31219,-1.54307,-1.00762,2.04298,-0.38109
+3.62740,0.97014,-1.31263,-1.54217,-1.00800,2.04279,-0.38091
+3.62809,0.97037,-1.31306,-1.54128,-1.00837,2.04261,-0.38074
+3.62879,0.97061,-1.31349,-1.54041,-1.00874,2.04244,-0.38057
+3.62948,0.97084,-1.31391,-1.53955,-1.00910,2.04226,-0.38040
+3.63018,0.97106,-1.31432,-1.53870,-1.00946,2.04209,-0.38023
+3.63087,0.97128,-1.31473,-1.53787,-1.00981,2.04193,-0.38007
+3.63156,0.97150,-1.31513,-1.53706,-1.01016,2.04176,-0.37991
+3.63226,0.97171,-1.31552,-1.53625,-1.01050,2.04160,-0.37976
+3.63295,0.97192,-1.31591,-1.53546,-1.01084,2.04145,-0.37961
+3.63365,0.97212,-1.31628,-1.53468,-1.01117,2.04129,-0.37946
+3.63434,0.97232,-1.31666,-1.53392,-1.01149,2.04114,-0.37931
+3.63504,0.97252,-1.31703,-1.53317,-1.01182,2.04099,-0.37917
+3.63573,0.97271,-1.31739,-1.53243,-1.01213,2.04085,-0.37903
+3.63643,0.97290,-1.31774,-1.53170,-1.01244,2.04071,-0.37889
+3.63712,0.97308,-1.31809,-1.53098,-1.01275,2.04057,-0.37876
+3.63782,0.97327,-1.31843,-1.53028,-1.01305,2.04043,-0.37862
+3.63851,0.97344,-1.31877,-1.52959,-1.01335,2.04030,-0.37850
+3.63921,0.97362,-1.31910,-1.52891,-1.01364,2.04016,-0.37837
+3.63990,0.97379,-1.31943,-1.52824,-1.01393,2.04004,-0.37824
+3.64059,0.97396,-1.31975,-1.52758,-1.01421,2.03991,-0.37812
+3.64129,0.97412,-1.32007,-1.52693,-1.01449,2.03978,-0.37800
+3.64198,0.97428,-1.32038,-1.52629,-1.01477,2.03966,-0.37789
+3.64268,0.97444,-1.32068,-1.52567,-1.01504,2.03954,-0.37777
+3.64337,0.97459,-1.32098,-1.52505,-1.01531,2.03943,-0.37766
+3.64407,0.97474,-1.32128,-1.52445,-1.01557,2.03931,-0.37755
+3.64476,0.97489,-1.32157,-1.52385,-1.01583,2.03920,-0.37744
+3.64546,0.97504,-1.32186,-1.52326,-1.01608,2.03909,-0.37734
+3.64615,0.97518,-1.32214,-1.52269,-1.01633,2.03898,-0.37723
+3.64685,0.97532,-1.32241,-1.52212,-1.01658,2.03887,-0.37713
+3.64754,0.97546,-1.32269,-1.52155,-1.01683,2.03877,-0.37703
+3.64824,0.97556,-1.32305,-1.52088,-1.01711,2.03869,-0.37696
+3.64893,0.97567,-1.32340,-1.52022,-1.01738,2.03861,-0.37688
+3.64962,0.97577,-1.32374,-1.51958,-1.01766,2.03853,-0.37681
+3.65032,0.97587,-1.32407,-1.51894,-1.01793,2.03846,-0.37674
+3.65101,0.97596,-1.32441,-1.51831,-1.01819,2.03838,-0.37667
+3.65171,0.97606,-1.32473,-1.51770,-1.01845,2.03831,-0.37660
+3.65240,0.97615,-1.32505,-1.51709,-1.01871,2.03824,-0.37653
+3.65310,0.97624,-1.32537,-1.51650,-1.01896,2.03817,-0.37647
+3.65379,0.97633,-1.32568,-1.51591,-1.01921,2.03810,-0.37640
+3.65449,0.97642,-1.32598,-1.51534,-1.01945,2.03803,-0.37634
+3.65518,0.97643,-1.32603,-1.51525,-1.01949,2.03803,-0.37634
+3.65588,0.97646,-1.32651,-1.51443,-1.01982,2.03800,-0.37631
+3.65657,0.97649,-1.32698,-1.51362,-1.02015,2.03797,-0.37629
+3.65727,0.97653,-1.32745,-1.51282,-1.02047,2.03795,-0.37626
+3.65796,0.97656,-1.32790,-1.51204,-1.02079,2.03792,-0.37624
+3.65866,0.97659,-1.32835,-1.51126,-1.02110,2.03790,-0.37622
+3.65935,0.97662,-1.32879,-1.51050,-1.02141,2.03788,-0.37620
+3.66004,0.97664,-1.32923,-1.50976,-1.02171,2.03785,-0.37618
+3.66074,0.97667,-1.32965,-1.50902,-1.02201,2.03783,-0.37616
+3.66143,0.97670,-1.33007,-1.50830,-1.02231,2.03781,-0.37614
+3.66213,0.97672,-1.33049,-1.50759,-1.02260,2.03779,-0.37613
+3.66282,0.97675,-1.33089,-1.50689,-1.02288,2.03777,-0.37611
+3.66352,0.97677,-1.33129,-1.50620,-1.02317,2.03775,-0.37609
+3.66421,0.97679,-1.33168,-1.50552,-1.02345,2.03773,-0.37608
+3.66491,0.97682,-1.33207,-1.50485,-1.02372,2.03771,-0.37606
+3.66560,0.97684,-1.33245,-1.50420,-1.02399,2.03770,-0.37605
+3.66630,0.97686,-1.33282,-1.50355,-1.02426,2.03768,-0.37603
+3.66699,0.97688,-1.33319,-1.50292,-1.02452,2.03766,-0.37602
+3.66769,0.97690,-1.33355,-1.50230,-1.02478,2.03765,-0.37601
+3.66838,0.97691,-1.33390,-1.50168,-1.02503,2.03763,-0.37600
+3.66907,0.97693,-1.33425,-1.50108,-1.02529,2.03762,-0.37598
+3.66977,0.97695,-1.33459,-1.50048,-1.02553,2.03761,-0.37597
+3.67046,0.97695,-1.33474,-1.50023,-1.02564,2.03760,-0.37597
+3.67116,0.97692,-1.33520,-1.49948,-1.02594,2.03762,-0.37599
+3.67185,0.97689,-1.33565,-1.49874,-1.02624,2.03764,-0.37602
+3.67255,0.97686,-1.33610,-1.49801,-1.02653,2.03767,-0.37604
+3.67324,0.97683,-1.33654,-1.49729,-1.02682,2.03769,-0.37606
+3.67394,0.97680,-1.33697,-1.49658,-1.02711,2.03771,-0.37609
+3.67463,0.97677,-1.33739,-1.49589,-1.02739,2.03773,-0.37611
+3.67533,0.97675,-1.33781,-1.49520,-1.02766,2.03775,-0.37613
+3.67602,0.97672,-1.33822,-1.49453,-1.02794,2.03777,-0.37615
+3.67672,0.97669,-1.33862,-1.49387,-1.02821,2.03779,-0.37618
+3.67741,0.97666,-1.33902,-1.49322,-1.02847,2.03781,-0.37620
+3.67811,0.97663,-1.33941,-1.49258,-1.02874,2.03783,-0.37622
+3.67880,0.97660,-1.33979,-1.49195,-1.02899,2.03785,-0.37624
+3.67949,0.97657,-1.34016,-1.49133,-1.02925,2.03787,-0.37627
+3.68019,0.97654,-1.34053,-1.49072,-1.02950,2.03789,-0.37629
+3.68088,0.97652,-1.34090,-1.49012,-1.02975,2.03791,-0.37631
+3.68158,0.97647,-1.34124,-1.48957,-1.02996,2.03795,-0.37635
+3.68227,0.97616,-1.34213,-1.48831,-1.03043,2.03817,-0.37657
+3.68297,0.97587,-1.34301,-1.48706,-1.03089,2.03839,-0.37678
+3.68366,0.97558,-1.34388,-1.48583,-1.03135,2.03860,-0.37700
+3.68436,0.97529,-1.34473,-1.48462,-1.03180,2.03882,-0.37721
+3.68505,0.97501,-1.34556,-1.48342,-1.03224,2.03903,-0.37741
+3.68575,0.97473,-1.34639,-1.48225,-1.03268,2.03923,-0.37762
+3.68644,0.97446,-1.34719,-1.48110,-1.03311,2.03943,-0.37782
+3.68714,0.97419,-1.34799,-1.47996,-1.03354,2.03963,-0.37802
+3.68783,0.97392,-1.34877,-1.47884,-1.03396,2.03983,-0.37821
+3.68852,0.97366,-1.34954,-1.47774,-1.03437,2.04002,-0.37840
+3.68922,0.97340,-1.35029,-1.47666,-1.03478,2.04021,-0.37859
+3.68991,0.97315,-1.35103,-1.47559,-1.03519,2.04040,-0.37878
+3.69061,0.97290,-1.35176,-1.47454,-1.03559,2.04059,-0.37896
+3.69130,0.97266,-1.35248,-1.47351,-1.03598,2.04077,-0.37914
+3.69200,0.97242,-1.35318,-1.47249,-1.03637,2.04095,-0.37932
+3.69269,0.97218,-1.35387,-1.47149,-1.03676,2.04112,-0.37950
+3.69339,0.97194,-1.35456,-1.47051,-1.03714,2.04130,-0.37967
+3.69408,0.97171,-1.35523,-1.46954,-1.03751,2.04147,-0.37984
+3.69478,0.97149,-1.35588,-1.46858,-1.03788,2.04164,-0.38001
+3.69547,0.97126,-1.35653,-1.46764,-1.03825,2.04180,-0.38017
+3.69617,0.97104,-1.35717,-1.46672,-1.03861,2.04197,-0.38034
+3.69686,0.97083,-1.35779,-1.46581,-1.03896,2.04213,-0.38050
+3.69755,0.97061,-1.35841,-1.46491,-1.03931,2.04229,-0.38066
+3.69825,0.97041,-1.35901,-1.46403,-1.03966,2.04244,-0.38081
+3.69894,0.97020,-1.35961,-1.46316,-1.04000,2.04260,-0.38097
+3.69964,0.97000,-1.36019,-1.46231,-1.04034,2.04275,-0.38112
+3.70033,0.96979,-1.36077,-1.46147,-1.04067,2.04290,-0.38127
+3.70103,0.96960,-1.36133,-1.46064,-1.04100,2.04304,-0.38142
+3.70172,0.96940,-1.36189,-1.45983,-1.04132,2.04319,-0.38156
+3.70242,0.96921,-1.36244,-1.45903,-1.04164,2.04333,-0.38170
+3.70311,0.96902,-1.36297,-1.45824,-1.04195,2.04347,-0.38185
+3.70381,0.96884,-1.36350,-1.45746,-1.04227,2.04361,-0.38198
+3.70450,0.96866,-1.36402,-1.45670,-1.04257,2.04375,-0.38212
+3.70520,0.96848,-1.36453,-1.45594,-1.04287,2.04388,-0.38226
+3.70589,0.96830,-1.36503,-1.45520,-1.04317,2.04401,-0.38239
+3.70659,0.96812,-1.36553,-1.45447,-1.04347,2.04415,-0.38252
+3.70728,0.96795,-1.36601,-1.45376,-1.04376,2.04427,-0.38265
+3.70797,0.96778,-1.36649,-1.45305,-1.04405,2.04440,-0.38278
+3.70867,0.96762,-1.36696,-1.45236,-1.04433,2.04453,-0.38290
+3.70936,0.96745,-1.36742,-1.45167,-1.04461,2.04465,-0.38303
+3.71006,0.96729,-1.36787,-1.45100,-1.04488,2.04477,-0.38315
+3.71075,0.96713,-1.36832,-1.45034,-1.04515,2.04489,-0.38327
+3.71145,0.96698,-1.36876,-1.44969,-1.04542,2.04501,-0.38339
+3.71214,0.96682,-1.36919,-1.44905,-1.04569,2.04512,-0.38351
+3.71284,0.96667,-1.36961,-1.44841,-1.04595,2.04524,-0.38362
+3.71353,0.96652,-1.37003,-1.44779,-1.04620,2.04535,-0.38373
+3.71423,0.96637,-1.37044,-1.44718,-1.04646,2.04546,-0.38385
+3.71492,0.96623,-1.37084,-1.44658,-1.04671,2.04557,-0.38396
+3.71562,0.96608,-1.37124,-1.44599,-1.04695,2.04568,-0.38407
+3.71631,0.96594,-1.37163,-1.44540,-1.04720,2.04578,-0.38417
+3.71700,0.96585,-1.37185,-1.44509,-1.04733,2.04585,-0.38424
+3.71770,0.96552,-1.37249,-1.44423,-1.04765,2.04609,-0.38449
+3.71839,0.96520,-1.37313,-1.44338,-1.04798,2.04634,-0.38473
+3.71909,0.96488,-1.37375,-1.44254,-1.04829,2.04657,-0.38496
+3.71978,0.96456,-1.37436,-1.44172,-1.04861,2.04681,-0.38520
+3.72048,0.96426,-1.37497,-1.44091,-1.04892,2.04704,-0.38543
+3.72117,0.96395,-1.37556,-1.44011,-1.04923,2.04727,-0.38566
+3.72187,0.96365,-1.37614,-1.43933,-1.04953,2.04749,-0.38588
+3.72256,0.96336,-1.37671,-1.43856,-1.04983,2.04771,-0.38610
+3.72326,0.96307,-1.37728,-1.43779,-1.05012,2.04792,-0.38632
+3.72395,0.96278,-1.37783,-1.43705,-1.05042,2.04814,-0.38653
+3.72465,0.96250,-1.37837,-1.43631,-1.05070,2.04835,-0.38674
+3.72534,0.96223,-1.37891,-1.43558,-1.05099,2.04855,-0.38695
+3.72604,0.96196,-1.37943,-1.43487,-1.05127,2.04875,-0.38715
+3.72673,0.96169,-1.37995,-1.43417,-1.05155,2.04895,-0.38735
+3.72742,0.96143,-1.38046,-1.43347,-1.05182,2.04915,-0.38755
+3.72812,0.96117,-1.38096,-1.43279,-1.05209,2.04934,-0.38774
+3.72881,0.96092,-1.38145,-1.43212,-1.05236,2.04953,-0.38793
+3.72951,0.96067,-1.38194,-1.43146,-1.05262,2.04972,-0.38812
+3.73020,0.96042,-1.38241,-1.43081,-1.05288,2.04990,-0.38830
+3.73090,0.96018,-1.38288,-1.43017,-1.05314,2.05008,-0.38849
+3.73159,0.95994,-1.38334,-1.42954,-1.05339,2.05026,-0.38867
+3.73229,0.95971,-1.38379,-1.42892,-1.05364,2.05044,-0.38884
+3.73298,0.95948,-1.38423,-1.42831,-1.05389,2.05061,-0.38902
+3.73368,0.95925,-1.38467,-1.42771,-1.05413,2.05078,-0.38919
+3.73437,0.95903,-1.38510,-1.42712,-1.05437,2.05094,-0.38936
+3.73507,0.95881,-1.38552,-1.42653,-1.05461,2.05111,-0.38952
+3.73576,0.95859,-1.38594,-1.42596,-1.05484,2.05127,-0.38968
+3.73645,0.95838,-1.38635,-1.42540,-1.05507,2.05143,-0.38985
+3.73715,0.95817,-1.38675,-1.42484,-1.05530,2.05159,-0.39000
+3.73784,0.95797,-1.38714,-1.42429,-1.05553,2.05174,-0.39016
+3.73854,0.95788,-1.38729,-1.42410,-1.05560,2.05180,-0.39022
+3.73923,0.95747,-1.38796,-1.42325,-1.05592,2.05211,-0.39053
+3.73993,0.95706,-1.38863,-1.42241,-1.05623,2.05242,-0.39084
+3.74062,0.95665,-1.38928,-1.42159,-1.05654,2.05272,-0.39114
+3.74132,0.95626,-1.38992,-1.42077,-1.05685,2.05301,-0.39144
+3.74201,0.95587,-1.39055,-1.41997,-1.05715,2.05330,-0.39173
+3.74271,0.95548,-1.39117,-1.41919,-1.05745,2.05359,-0.39202
+3.74340,0.95511,-1.39178,-1.41841,-1.05774,2.05387,-0.39230
+3.74410,0.95474,-1.39238,-1.41765,-1.05803,2.05414,-0.39258
+3.74479,0.95437,-1.39297,-1.41690,-1.05832,2.05441,-0.39285
+3.74548,0.95401,-1.39355,-1.41616,-1.05860,2.05468,-0.39312
+3.74618,0.95366,-1.39412,-1.41543,-1.05888,2.05494,-0.39339
+3.74687,0.95332,-1.39468,-1.41471,-1.05916,2.05520,-0.39365
+3.74757,0.95298,-1.39523,-1.41400,-1.05943,2.05545,-0.39390
+3.74826,0.95264,-1.39577,-1.41331,-1.05971,2.05570,-0.39416
+3.74896,0.95231,-1.39631,-1.41262,-1.05997,2.05595,-0.39440
+3.74965,0.95199,-1.39683,-1.41195,-1.06024,2.05619,-0.39465
+3.75035,0.95167,-1.39735,-1.41128,-1.06050,2.05643,-0.39489
+3.75104,0.95136,-1.39785,-1.41063,-1.06075,2.05666,-0.39513
+3.75174,0.95105,-1.39835,-1.40998,-1.06101,2.05689,-0.39536
+3.75243,0.95075,-1.39884,-1.40935,-1.06126,2.05712,-0.39559
+3.75313,0.95045,-1.39932,-1.40872,-1.06151,2.05734,-0.39581
+3.75382,0.95016,-1.39979,-1.40811,-1.06175,2.05756,-0.39603
+3.75452,0.94987,-1.40026,-1.40750,-1.06199,2.05777,-0.39625
+3.75521,0.94959,-1.40072,-1.40691,-1.06223,2.05798,-0.39647
+3.75590,0.94931,-1.40117,-1.40632,-1.06247,2.05819,-0.39668
+3.75660,0.94903,-1.40161,-1.40574,-1.06270,2.05840,-0.39689
+3.75729,0.94877,-1.40204,-1.40517,-1.06293,2.05860,-0.39709
+3.75799,0.94850,-1.40247,-1.40461,-1.06316,2.05880,-0.39729
+3.75868,0.94824,-1.40289,-1.40406,-1.06338,2.05899,-0.39749
+3.75938,0.94798,-1.40331,-1.40352,-1.06361,2.05918,-0.39769
+3.76007,0.94773,-1.40371,-1.40298,-1.06382,2.05937,-0.39788
+3.76077,0.94749,-1.40411,-1.40245,-1.06404,2.05956,-0.39807
+3.76146,0.94724,-1.40451,-1.40193,-1.06425,2.05974,-0.39825
+3.76216,0.94709,-1.40473,-1.40166,-1.06436,2.05985,-0.39837
+3.76285,0.94631,-1.40576,-1.40050,-1.06476,2.06043,-0.39896
+3.76355,0.94553,-1.40678,-1.39935,-1.06515,2.06100,-0.39953
+3.76424,0.94478,-1.40778,-1.39821,-1.06555,2.06156,-0.40010
+3.76493,0.94403,-1.40876,-1.39710,-1.06594,2.06211,-0.40066
+3.76563,0.94330,-1.40973,-1.39600,-1.06632,2.06265,-0.40121
+3.76632,0.94259,-1.41068,-1.39491,-1.06670,2.06318,-0.40174
+3.76702,0.94188,-1.41161,-1.39385,-1.06708,2.06370,-0.40227
+3.76771,0.94119,-1.41253,-1.39279,-1.06745,2.06421,-0.40280
+3.76841,0.94051,-1.41343,-1.39176,-1.06782,2.06471,-0.40331
+3.76910,0.93985,-1.41432,-1.39074,-1.06819,2.06520,-0.40381
+3.76980,0.93919,-1.41519,-1.38973,-1.06855,2.06569,-0.40431
+3.77049,0.93855,-1.41605,-1.38874,-1.06891,2.06616,-0.40479
+3.77119,0.93791,-1.41690,-1.38776,-1.06927,2.06663,-0.40527
+3.77188,0.93729,-1.41773,-1.38680,-1.06962,2.06709,-0.40574
+3.77258,0.93668,-1.41854,-1.38585,-1.06996,2.06754,-0.40620
+3.77327,0.93608,-1.41935,-1.38491,-1.07031,2.06799,-0.40666
+3.77396,0.93549,-1.42014,-1.38399,-1.07065,2.06842,-0.40711
+3.77466,0.93492,-1.42091,-1.38309,-1.07099,2.06885,-0.40755
+3.77535,0.93435,-1.42168,-1.38219,-1.07132,2.06927,-0.40798
+3.77605,0.93379,-1.42243,-1.38131,-1.07165,2.06969,-0.40840
+3.77674,0.93324,-1.42317,-1.38044,-1.07197,2.07009,-0.40882
+3.77744,0.93270,-1.42389,-1.37959,-1.07230,2.07049,-0.40923
+3.77813,0.93217,-1.42460,-1.37875,-1.07262,2.07088,-0.40964
+3.77883,0.93165,-1.42531,-1.37792,-1.07293,2.07127,-0.41003
+3.77952,0.93114,-1.42600,-1.37710,-1.07324,2.07165,-0.41042
+3.78022,0.93064,-1.42667,-1.37630,-1.07355,2.07202,-0.41081
+3.78091,0.93015,-1.42734,-1.37550,-1.07386,2.07239,-0.41119
+3.78161,0.92966,-1.42800,-1.37472,-1.07416,2.07275,-0.41156
+3.78230,0.92918,-1.42864,-1.37395,-1.07446,2.07310,-0.41192
+3.78300,0.92872,-1.42928,-1.37319,-1.07475,2.07345,-0.41228
+3.78369,0.92826,-1.42990,-1.37245,-1.07504,2.07379,-0.41264
+3.78438,0.92780,-1.43051,-1.37171,-1.07533,2.07412,-0.41299
+3.78508,0.92736,-1.43112,-1.37099,-1.07562,2.07445,-0.41333
+3.78577,0.92692,-1.43171,-1.37027,-1.07590,2.07478,-0.41366
+3.78647,0.92649,-1.43229,-1.36957,-1.07617,2.07510,-0.41399
+3.78716,0.92607,-1.43287,-1.36887,-1.07645,2.07541,-0.41432
+3.78786,0.92566,-1.43343,-1.36819,-1.07672,2.07572,-0.41464
+3.78855,0.92525,-1.43399,-1.36752,-1.07699,2.07602,-0.41495
+3.78925,0.92485,-1.43453,-1.36686,-1.07726,2.07632,-0.41526
+3.78994,0.92446,-1.43507,-1.36620,-1.07752,2.07661,-0.41557
+3.79064,0.92407,-1.43560,-1.36556,-1.07778,2.07690,-0.41587
+3.79133,0.92369,-1.43611,-1.36493,-1.07803,2.07718,-0.41616
+3.79203,0.92332,-1.43662,-1.36431,-1.07829,2.07746,-0.41645
+3.79272,0.92295,-1.43713,-1.36369,-1.07854,2.07773,-0.41674
+3.79341,0.92259,-1.43762,-1.36309,-1.07879,2.07800,-0.41702
+3.79411,0.92224,-1.43810,-1.36249,-1.07903,2.07826,-0.41729
+3.79480,0.92189,-1.43858,-1.36190,-1.07927,2.07852,-0.41756
+3.79550,0.92154,-1.43905,-1.36132,-1.07951,2.07878,-0.41783
+3.79619,0.92121,-1.43951,-1.36076,-1.07975,2.07903,-0.41809
+3.79689,0.92088,-1.43996,-1.36019,-1.07998,2.07928,-0.41835
+3.79758,0.92055,-1.44041,-1.35964,-1.08021,2.07952,-0.41860
+3.79828,0.92023,-1.44085,-1.35910,-1.08044,2.07976,-0.41885
+3.79897,0.91992,-1.44128,-1.35856,-1.08066,2.07999,-0.41910
+3.79967,0.91961,-1.44170,-1.35803,-1.08088,2.08022,-0.41934
+3.80036,0.91930,-1.44212,-1.35751,-1.08110,2.08045,-0.41958
+3.80106,0.91901,-1.44253,-1.35700,-1.08132,2.08067,-0.41981
+3.80175,0.91871,-1.44294,-1.35650,-1.08153,2.08089,-0.42004
+3.80245,0.91842,-1.44333,-1.35600,-1.08174,2.08111,-0.42027
+3.80314,0.91814,-1.44372,-1.35551,-1.08195,2.08132,-0.42049
+3.80383,0.91786,-1.44411,-1.35503,-1.08216,2.08153,-0.42071
+3.80453,0.91766,-1.44438,-1.35469,-1.08230,2.08168,-0.42087
+3.80522,0.91730,-1.44484,-1.35415,-1.08252,2.08194,-0.42115
+3.80592,0.91694,-1.44529,-1.35362,-1.08274,2.08221,-0.42143
+3.80661,0.91660,-1.44573,-1.35310,-1.08295,2.08247,-0.42170
+3.80731,0.91625,-1.44616,-1.35258,-1.08316,2.08272,-0.42197
+3.80800,0.91592,-1.44659,-1.35207,-1.08337,2.08297,-0.42223
+3.80870,0.91559,-1.44701,-1.35157,-1.08358,2.08322,-0.42249
+3.80939,0.91526,-1.44742,-1.35108,-1.08378,2.08346,-0.42274
+3.81009,0.91494,-1.44783,-1.35060,-1.08398,2.08369,-0.42299
+3.81078,0.91463,-1.44823,-1.35012,-1.08418,2.08393,-0.42324
+3.81148,0.91432,-1.44862,-1.34965,-1.08438,2.08416,-0.42348
+3.81217,0.91401,-1.44901,-1.34919,-1.08457,2.08438,-0.42372
+3.81286,0.91372,-1.44939,-1.34873,-1.08476,2.08460,-0.42395
+3.81356,0.91342,-1.44976,-1.34828,-1.08495,2.08482,-0.42418
+3.81425,0.91335,-1.44985,-1.34819,-1.08498,2.08488,-0.42424
+3.81495,0.91258,-1.45071,-1.34731,-1.08529,2.08544,-0.42483
+3.81564,0.91183,-1.45156,-1.34644,-1.08559,2.08599,-0.42541
+3.81634,0.91109,-1.45239,-1.34558,-1.08589,2.08653,-0.42598
+3.81703,0.91036,-1.45321,-1.34474,-1.08619,2.08706,-0.42654
+3.81773,0.90965,-1.45401,-1.34390,-1.08648,2.08758,-0.42709
+3.81842,0.90895,-1.45480,-1.34308,-1.08678,2.08810,-0.42763
+3.81912,0.90827,-1.45558,-1.34227,-1.08707,2.08860,-0.42817
+3.81981,0.90759,-1.45635,-1.34147,-1.08736,2.08909,-0.42869
+3.82051,0.90693,-1.45710,-1.34069,-1.08764,2.08958,-0.42920
+3.82120,0.90628,-1.45784,-1.33991,-1.08792,2.09006,-0.42971
+3.82189,0.90564,-1.45857,-1.33915,-1.08820,2.09052,-0.43020
+3.82259,0.90502,-1.45928,-1.33839,-1.08848,2.09098,-0.43069
+3.82328,0.90440,-1.45998,-1.33765,-1.08875,2.09144,-0.43117
+3.82398,0.90379,-1.46068,-1.33692,-1.08902,2.09188,-0.43164
+3.82467,0.90320,-1.46136,-1.33619,-1.08929,2.09231,-0.43211
+3.82537,0.90262,-1.46203,-1.33548,-1.08956,2.09274,-0.43256
+3.82606,0.90204,-1.46268,-1.33478,-1.08982,2.09316,-0.43301
+3.82676,0.90148,-1.46333,-1.33409,-1.09008,2.09358,-0.43345
+3.82745,0.90093,-1.46397,-1.33341,-1.09034,2.09398,-0.43388
+3.82815,0.90039,-1.46459,-1.33274,-1.09060,2.09438,-0.43431
+3.82884,0.89985,-1.46521,-1.33207,-1.09085,2.09477,-0.43473
+3.82954,0.89933,-1.46581,-1.33142,-1.09110,2.09516,-0.43514
+3.83023,0.89881,-1.46641,-1.33078,-1.09135,2.09553,-0.43554
+3.83093,0.89831,-1.46700,-1.33015,-1.09160,2.09591,-0.43594
+3.83162,0.89781,-1.46757,-1.32952,-1.09184,2.09627,-0.43633
+3.83231,0.89732,-1.46814,-1.32890,-1.09208,2.09663,-0.43672
+3.83301,0.89684,-1.46869,-1.32830,-1.09232,2.09698,-0.43710
+3.83370,0.89637,-1.46924,-1.32770,-1.09255,2.09733,-0.43747
+3.83440,0.89591,-1.46978,-1.32711,-1.09279,2.09767,-0.43783
+3.83509,0.89546,-1.47031,-1.32653,-1.09302,2.09800,-0.43819
+3.83579,0.89501,-1.47083,-1.32596,-1.09325,2.09833,-0.43854
+3.83648,0.89457,-1.47134,-1.32539,-1.09347,2.09865,-0.43889
+3.83718,0.89414,-1.47184,-1.32484,-1.09369,2.09897,-0.43923
+3.83787,0.89372,-1.47234,-1.32429,-1.09392,2.09928,-0.43957
+3.83857,0.89330,-1.47283,-1.32375,-1.09413,2.09959,-0.43990
+3.83926,0.89289,-1.47330,-1.32322,-1.09435,2.09989,-0.44022
+3.83996,0.89249,-1.47378,-1.32269,-1.09456,2.10018,-0.44054
+3.84065,0.89210,-1.47424,-1.32218,-1.09478,2.10047,-0.44086
+3.84134,0.89171,-1.47469,-1.32167,-1.09498,2.10076,-0.44117
+3.84204,0.89133,-1.47514,-1.32117,-1.09519,2.10104,-0.44147
+3.84273,0.89095,-1.47558,-1.32067,-1.09540,2.10132,-0.44177
+3.84343,0.89059,-1.47601,-1.32018,-1.09560,2.10159,-0.44206
+3.84412,0.89023,-1.47644,-1.31970,-1.09580,2.10185,-0.44235
+3.84482,0.88987,-1.47686,-1.31923,-1.09599,2.10212,-0.44263
+3.84551,0.88952,-1.47727,-1.31876,-1.09619,2.10237,-0.44291
+3.84621,0.88918,-1.47768,-1.31831,-1.09638,2.10263,-0.44319
+3.84690,0.88884,-1.47807,-1.31785,-1.09657,2.10287,-0.44346
+3.84760,0.88851,-1.47847,-1.31741,-1.09676,2.10312,-0.44372
+3.84829,0.88819,-1.47885,-1.31697,-1.09695,2.10336,-0.44398
+3.84899,0.88787,-1.47923,-1.31653,-1.09713,2.10359,-0.44424
+3.84968,0.88755,-1.47960,-1.31611,-1.09732,2.10383,-0.44449
+3.85038,0.88724,-1.47997,-1.31569,-1.09750,2.10405,-0.44474
+3.85107,0.88699,-1.48026,-1.31535,-1.09764,2.10424,-0.44494
+3.85176,0.88661,-1.48068,-1.31490,-1.09783,2.10452,-0.44524
+3.85246,0.88624,-1.48110,-1.31445,-1.09801,2.10479,-0.44554
+3.85315,0.88588,-1.48151,-1.31401,-1.09819,2.10506,-0.44583
+3.85385,0.88552,-1.48191,-1.31358,-1.09837,2.10532,-0.44612
+3.85454,0.88517,-1.48230,-1.31315,-1.09855,2.10558,-0.44640
+3.85524,0.88482,-1.48269,-1.31273,-1.09872,2.10584,-0.44668
+3.85593,0.88448,-1.48307,-1.31231,-1.09890,2.10609,-0.44695
+3.85663,0.88415,-1.48344,-1.31190,-1.09907,2.10633,-0.44722
+3.85732,0.88382,-1.48381,-1.31150,-1.09924,2.10657,-0.44748
+3.85802,0.88349,-1.48417,-1.31110,-1.09940,2.10681,-0.44774
+3.85871,0.88318,-1.48453,-1.31071,-1.09957,2.10704,-0.44800
+3.85941,0.88304,-1.48468,-1.31054,-1.09964,2.10715,-0.44811
+3.86010,0.88258,-1.48517,-1.31005,-1.09983,2.10748,-0.44847
+3.86079,0.88213,-1.48565,-1.30957,-1.10002,2.10781,-0.44883
+3.86149,0.88168,-1.48612,-1.30909,-1.10020,2.10814,-0.44919
+3.86218,0.88125,-1.48658,-1.30862,-1.10038,2.10845,-0.44954
+3.86288,0.88082,-1.48704,-1.30816,-1.10057,2.10877,-0.44988
+3.86357,0.88040,-1.48749,-1.30770,-1.10075,2.10907,-0.45022
+3.86427,0.87998,-1.48793,-1.30725,-1.10092,2.10938,-0.45055
+3.86496,0.87958,-1.48836,-1.30681,-1.10110,2.10967,-0.45087
+3.86566,0.87918,-1.48879,-1.30637,-1.10128,2.10996,-0.45119
+3.86635,0.87879,-1.48920,-1.30594,-1.10145,2.11025,-0.45151
+3.86705,0.87840,-1.48962,-1.30552,-1.10162,2.11053,-0.45181
+3.86774,0.87803,-1.49002,-1.30510,-1.10179,2.11081,-0.45212
+3.86844,0.87765,-1.49042,-1.30468,-1.10196,2.11108,-0.45242
+3.86913,0.87729,-1.49081,-1.30428,-1.10212,2.11135,-0.45271
+3.86982,0.87693,-1.49120,-1.30388,-1.10229,2.11161,-0.45300
+3.87052,0.87658,-1.49158,-1.30348,-1.10245,2.11187,-0.45328
+3.87121,0.87623,-1.49195,-1.30309,-1.10261,2.11212,-0.45356
+3.87191,0.87589,-1.49231,-1.30271,-1.10277,2.11237,-0.45384
+3.87260,0.87556,-1.49267,-1.30233,-1.10293,2.11261,-0.45411
+3.87330,0.87523,-1.49303,-1.30196,-1.10308,2.11285,-0.45437
+3.87399,0.87491,-1.49338,-1.30159,-1.10323,2.11309,-0.45463
+3.87469,0.87479,-1.49350,-1.30147,-1.10328,2.11317,-0.45473
+3.87538,0.87428,-1.49400,-1.30100,-1.10345,2.11355,-0.45513
+3.87608,0.87378,-1.49449,-1.30054,-1.10362,2.11391,-0.45554
+3.87677,0.87329,-1.49498,-1.30009,-1.10379,2.11427,-0.45593
+3.87747,0.87280,-1.49546,-1.29965,-1.10396,2.11462,-0.45632
+3.87816,0.87233,-1.49593,-1.29921,-1.10412,2.11497,-0.45670
+3.87886,0.87186,-1.49639,-1.29877,-1.10429,2.11530,-0.45708
+3.87955,0.87140,-1.49684,-1.29835,-1.10445,2.11564,-0.45745
+3.88024,0.87095,-1.49729,-1.29793,-1.10461,2.11597,-0.45781
+3.88094,0.87051,-1.49773,-1.29751,-1.10477,2.11629,-0.45817
+3.88163,0.87007,-1.49816,-1.29710,-1.10493,2.11660,-0.45852
+3.88233,0.86964,-1.49858,-1.29670,-1.10509,2.11691,-0.45886
+3.88302,0.86923,-1.49900,-1.29630,-1.10524,2.11722,-0.45920
+3.88372,0.86881,-1.49941,-1.29591,-1.10540,2.11752,-0.45953
+3.88441,0.86841,-1.49982,-1.29552,-1.10555,2.11781,-0.45986
+3.88511,0.86801,-1.50021,-1.29514,-1.10570,2.11810,-0.46018
+3.88580,0.86762,-1.50060,-1.29476,-1.10585,2.11839,-0.46050
+3.88650,0.86724,-1.50099,-1.29439,-1.10600,2.11867,-0.46081
+3.88719,0.86686,-1.50136,-1.29402,-1.10615,2.11894,-0.46111
+3.88789,0.86649,-1.50174,-1.29366,-1.10629,2.11921,-0.46141
+3.88858,0.86612,-1.50210,-1.29331,-1.10643,2.11948,-0.46171
+3.88927,0.86577,-1.50246,-1.29296,-1.10658,2.11974,-0.46200
+3.88997,0.86542,-1.50281,-1.29261,-1.10672,2.11999,-0.46229
+3.89066,0.86507,-1.50316,-1.29227,-1.10686,2.12024,-0.46257
+3.89136,0.86473,-1.50350,-1.29193,-1.10700,2.12049,-0.46284
+3.89205,0.86440,-1.50384,-1.29160,-1.10713,2.12073,-0.46311
+3.89275,0.86423,-1.50401,-1.29144,-1.10720,2.12086,-0.46325
+3.89344,0.86385,-1.50437,-1.29111,-1.10733,2.12113,-0.46356
+3.89414,0.86347,-1.50472,-1.29078,-1.10746,2.12141,-0.46387
+3.89483,0.86310,-1.50507,-1.29046,-1.10759,2.12168,-0.46417
+3.89553,0.86274,-1.50542,-1.29014,-1.10772,2.12194,-0.46446
+3.89622,0.86238,-1.50576,-1.28983,-1.10784,2.12220,-0.46475
+3.89692,0.86203,-1.50609,-1.28952,-1.10797,2.12245,-0.46504
+3.89761,0.86169,-1.50641,-1.28922,-1.10809,2.12270,-0.46532
+3.89831,0.86134,-1.50674,-1.28892,-1.10821,2.12296,-0.46560
+3.89900,0.86093,-1.50709,-1.28865,-1.10832,2.12326,-0.46594
+3.89969,0.86052,-1.50743,-1.28837,-1.10842,2.12355,-0.46627
+3.90039,0.86012,-1.50777,-1.28810,-1.10852,2.12384,-0.46660
+3.90108,0.85973,-1.50810,-1.28784,-1.10862,2.12412,-0.46692
+3.90178,0.85934,-1.50842,-1.28758,-1.10873,2.12440,-0.46723
+3.90247,0.85896,-1.50874,-1.28732,-1.10883,2.12468,-0.46754
+3.90317,0.85859,-1.50906,-1.28707,-1.10893,2.12495,-0.46784
+3.90386,0.85823,-1.50936,-1.28681,-1.10902,2.12521,-0.46814
+3.90456,0.85787,-1.50967,-1.28657,-1.10912,2.12547,-0.46843
+3.90525,0.85751,-1.50997,-1.28632,-1.10922,2.12573,-0.46872
+3.90595,0.85747,-1.51000,-1.28630,-1.10923,2.12576,-0.46876
+3.90664,0.85701,-1.51031,-1.28613,-1.10928,2.12609,-0.46913
+3.90734,0.85656,-1.51062,-1.28595,-1.10934,2.12642,-0.46950
+3.90803,0.85612,-1.51093,-1.28578,-1.10940,2.12673,-0.46986
+3.90872,0.85569,-1.51123,-1.28560,-1.10946,2.12705,-0.47021
+3.90942,0.85526,-1.51152,-1.28544,-1.10952,2.12735,-0.47056
+3.91011,0.85484,-1.51181,-1.28527,-1.10958,2.12766,-0.47090
+3.91081,0.85443,-1.51210,-1.28510,-1.10964,2.12795,-0.47123
+3.91150,0.85403,-1.51238,-1.28494,-1.10969,2.12824,-0.47156
+3.91220,0.85364,-1.51265,-1.28478,-1.10975,2.12853,-0.47189
+3.91289,0.85325,-1.51292,-1.28462,-1.10981,2.12881,-0.47221
+3.91359,0.85286,-1.51319,-1.28446,-1.10987,2.12909,-0.47252
+3.91428,0.85249,-1.51345,-1.28430,-1.10992,2.12936,-0.47283
+3.91498,0.85212,-1.51371,-1.28415,-1.10998,2.12962,-0.47313
+3.91567,0.85203,-1.51376,-1.28414,-1.10998,2.12969,-0.47320
+3.91637,0.85151,-1.51399,-1.28416,-1.10995,2.13007,-0.47363
+3.91706,0.85099,-1.51422,-1.28419,-1.10992,2.13044,-0.47405
+3.91775,0.85048,-1.51445,-1.28422,-1.10989,2.13080,-0.47447
+3.91845,0.84999,-1.51467,-1.28424,-1.10986,2.13116,-0.47487
+3.91914,0.84950,-1.51489,-1.28426,-1.10983,2.13151,-0.47527
+3.91984,0.84902,-1.51511,-1.28429,-1.10980,2.13185,-0.47567
+3.92053,0.84855,-1.51532,-1.28431,-1.10977,2.13219,-0.47605
+3.92123,0.84808,-1.51553,-1.28433,-1.10975,2.13252,-0.47643
+3.92192,0.84763,-1.51573,-1.28435,-1.10973,2.13285,-0.47681
+3.92262,0.84718,-1.51593,-1.28436,-1.10970,2.13317,-0.47717
+3.92331,0.84675,-1.51613,-1.28438,-1.10968,2.13349,-0.47753
+3.92401,0.84632,-1.51632,-1.28440,-1.10966,2.13380,-0.47789
+3.92470,0.84589,-1.51652,-1.28441,-1.10964,2.13410,-0.47823
+3.92540,0.84548,-1.51670,-1.28442,-1.10962,2.13440,-0.47858
+3.92609,0.84507,-1.51689,-1.28444,-1.10960,2.13469,-0.47891
+3.92679,0.84467,-1.51707,-1.28445,-1.10959,2.13498,-0.47924
+3.92748,0.84428,-1.51725,-1.28446,-1.10957,2.13526,-0.47957
+3.92817,0.84389,-1.51742,-1.28447,-1.10956,2.13554,-0.47988
+3.92887,0.84351,-1.51760,-1.28448,-1.10954,2.13581,-0.48020
+3.92956,0.84332,-1.51768,-1.28450,-1.10953,2.13595,-0.48036
+3.93026,0.84285,-1.51781,-1.28466,-1.10944,2.13629,-0.48074
+3.93095,0.84240,-1.51794,-1.28482,-1.10936,2.13661,-0.48112
+3.93165,0.84195,-1.51807,-1.28497,-1.10928,2.13693,-0.48149
+3.93234,0.84151,-1.51819,-1.28512,-1.10920,2.13725,-0.48185
+3.93304,0.84108,-1.51832,-1.28526,-1.10913,2.13756,-0.48221
+3.93373,0.84066,-1.51844,-1.28540,-1.10905,2.13786,-0.48255
+3.93443,0.84024,-1.51855,-1.28554,-1.10898,2.13816,-0.48290
+3.93512,0.83983,-1.51867,-1.28568,-1.10891,2.13845,-0.48324
+3.93582,0.83943,-1.51879,-1.28582,-1.10884,2.13874,-0.48357
+3.93651,0.83904,-1.51890,-1.28595,-1.10877,2.13902,-0.48389
+3.93720,0.83865,-1.51901,-1.28608,-1.10871,2.13930,-0.48421
+3.93790,0.83827,-1.51912,-1.28620,-1.10864,2.13957,-0.48453
+3.93859,0.83790,-1.51923,-1.28633,-1.10858,2.13984,-0.48484
+3.93929,0.83759,-1.51929,-1.28647,-1.10851,2.14006,-0.48510
+3.93998,0.83705,-1.51924,-1.28702,-1.10826,2.14045,-0.48554
+3.94068,0.83652,-1.51919,-1.28756,-1.10801,2.14082,-0.48598
+3.94137,0.83601,-1.51913,-1.28809,-1.10776,2.14119,-0.48641
+3.94207,0.83550,-1.51908,-1.28862,-1.10752,2.14155,-0.48683
+3.94276,0.83500,-1.51903,-1.28913,-1.10728,2.14191,-0.48724
+3.94346,0.83451,-1.51898,-1.28964,-1.10705,2.14226,-0.48765
+3.94415,0.83403,-1.51893,-1.29014,-1.10682,2.14260,-0.48805
+3.94485,0.83356,-1.51888,-1.29062,-1.10660,2.14294,-0.48844
+3.94554,0.83309,-1.51883,-1.29110,-1.10638,2.14327,-0.48882
+3.94624,0.83264,-1.51879,-1.29157,-1.10616,2.14359,-0.48920
+3.94693,0.83219,-1.51874,-1.29204,-1.10595,2.14391,-0.48957
+3.94762,0.83175,-1.51870,-1.29249,-1.10574,2.14422,-0.48994
+3.94832,0.83132,-1.51865,-1.29294,-1.10554,2.14453,-0.49030
+3.94901,0.83090,-1.51861,-1.29338,-1.10533,2.14483,-0.49065
+3.94971,0.83049,-1.51856,-1.29381,-1.10514,2.14513,-0.49099
+3.95040,0.83008,-1.51852,-1.29423,-1.10494,2.14542,-0.49133
+3.95110,0.82968,-1.51848,-1.29465,-1.10475,2.14571,-0.49167
+3.95179,0.82929,-1.51844,-1.29506,-1.10456,2.14599,-0.49199
+3.95249,0.82890,-1.51839,-1.29546,-1.10438,2.14626,-0.49232
+3.95318,0.82852,-1.51835,-1.29586,-1.10420,2.14653,-0.49263
+3.95388,0.82815,-1.51831,-1.29625,-1.10402,2.14680,-0.49294
+3.95457,0.82778,-1.51828,-1.29663,-1.10384,2.14706,-0.49325
+3.95527,0.82743,-1.51824,-1.29700,-1.10367,2.14731,-0.49355
+3.95596,0.82707,-1.51820,-1.29737,-1.10350,2.14757,-0.49384
+3.95665,0.82673,-1.51816,-1.29773,-1.10334,2.14781,-0.49413
+3.95735,0.82639,-1.51812,-1.29809,-1.10317,2.14805,-0.49442
+3.95804,0.82606,-1.51809,-1.29844,-1.10301,2.14829,-0.49469
+3.95874,0.82573,-1.51805,-1.29878,-1.10286,2.14853,-0.49497
+3.95943,0.82541,-1.51802,-1.29912,-1.10270,2.14876,-0.49524
+3.96013,0.82527,-1.51798,-1.29930,-1.10262,2.14886,-0.49535
+3.96082,0.82482,-1.51774,-1.30010,-1.10226,2.14917,-0.49573
+3.96152,0.82438,-1.51751,-1.30089,-1.10192,2.14948,-0.49609
+3.96221,0.82395,-1.51728,-1.30167,-1.10157,2.14979,-0.49645
+3.96291,0.82353,-1.51705,-1.30243,-1.10123,2.15009,-0.49681
+3.96360,0.82312,-1.51683,-1.30318,-1.10090,2.15038,-0.49715
+3.96430,0.82271,-1.51661,-1.30392,-1.10057,2.15067,-0.49750
+3.96499,0.82231,-1.51639,-1.30464,-1.10025,2.15095,-0.49783
+3.96568,0.82192,-1.51618,-1.30536,-1.09994,2.15123,-0.49816
+3.96638,0.82154,-1.51597,-1.30606,-1.09962,2.15151,-0.49848
+3.96707,0.82116,-1.51576,-1.30675,-1.09932,2.15177,-0.49880
+3.96777,0.82079,-1.51556,-1.30742,-1.09902,2.15204,-0.49911
+3.96846,0.82042,-1.51536,-1.30809,-1.09872,2.15230,-0.49942
+3.96916,0.82007,-1.51517,-1.30874,-1.09843,2.15255,-0.49972
+3.96985,0.81972,-1.51497,-1.30939,-1.09814,2.15280,-0.50001
+3.97055,0.81937,-1.51478,-1.31002,-1.09786,2.15304,-0.50030
+3.97124,0.81903,-1.51460,-1.31064,-1.09758,2.15328,-0.50058
+3.97194,0.81870,-1.51441,-1.31125,-1.09731,2.15352,-0.50086
+3.97263,0.81838,-1.51423,-1.31185,-1.09704,2.15375,-0.50114
+3.97333,0.81806,-1.51406,-1.31244,-1.09678,2.15398,-0.50140
+3.97402,0.81774,-1.51388,-1.31302,-1.09652,2.15420,-0.50167
+3.97472,0.81744,-1.51371,-1.31360,-1.09626,2.15442,-0.50193
+3.97541,0.81713,-1.51354,-1.31416,-1.09601,2.15463,-0.50218
+3.97610,0.81684,-1.51338,-1.31471,-1.09576,2.15484,-0.50243
+3.97680,0.81655,-1.51321,-1.31525,-1.09552,2.15505,-0.50268
+3.97749,0.81626,-1.51305,-1.31579,-1.09528,2.15526,-0.50292
+3.97819,0.81598,-1.51289,-1.31631,-1.09504,2.15546,-0.50315
+3.97888,0.81571,-1.51274,-1.31683,-1.09481,2.15565,-0.50339
+3.97958,0.81544,-1.51259,-1.31733,-1.09458,2.15584,-0.50361
+3.98027,0.81517,-1.51243,-1.31783,-1.09436,2.15603,-0.50384
+3.98097,0.81491,-1.51229,-1.31832,-1.09414,2.15622,-0.50406
+3.98166,0.81465,-1.51214,-1.31881,-1.09392,2.15640,-0.50427
+3.98236,0.81440,-1.51200,-1.31928,-1.09371,2.15658,-0.50449
+3.98305,0.81437,-1.51197,-1.31935,-1.09368,2.15660,-0.50451
+3.98375,0.81410,-1.51169,-1.32008,-1.09336,2.15680,-0.50474
+3.98444,0.81382,-1.51142,-1.32079,-1.09305,2.15699,-0.50497
+3.98513,0.81356,-1.51116,-1.32149,-1.09274,2.15718,-0.50520
+3.98583,0.81330,-1.51089,-1.32218,-1.09244,2.15736,-0.50542
+3.98652,0.81304,-1.51064,-1.32286,-1.09214,2.15755,-0.50564
+3.98722,0.81279,-1.51038,-1.32352,-1.09185,2.15773,-0.50585
+3.98791,0.81254,-1.51013,-1.32418,-1.09156,2.15790,-0.50606
+3.98861,0.81229,-1.50989,-1.32482,-1.09128,2.15808,-0.50627
+3.98930,0.81206,-1.50964,-1.32546,-1.09100,2.15825,-0.50647
+3.99000,0.81182,-1.50941,-1.32608,-1.09072,2.15841,-0.50667
+3.99069,0.81159,-1.50917,-1.32669,-1.09045,2.15858,-0.50686
+3.99139,0.81137,-1.50894,-1.32729,-1.09019,2.15874,-0.50705
+3.99208,0.81114,-1.50872,-1.32789,-1.08993,2.15889,-0.50724
+3.99278,0.81093,-1.50850,-1.32847,-1.08967,2.15905,-0.50742
+3.99347,0.81071,-1.50828,-1.32904,-1.08941,2.15920,-0.50760
+3.99417,0.81051,-1.50806,-1.32960,-1.08916,2.15935,-0.50778
+3.99486,0.81030,-1.50785,-1.33016,-1.08892,2.15949,-0.50795
+3.99555,0.81010,-1.50764,-1.33070,-1.08868,2.15964,-0.50812
+3.99625,0.80994,-1.50744,-1.33120,-1.08846,2.15975,-0.50826
+3.99694,0.80956,-1.50664,-1.33292,-1.08773,2.16002,-0.50858
+3.99764,0.80919,-1.50585,-1.33461,-1.08701,2.16028,-0.50890
+3.99833,0.80882,-1.50508,-1.33627,-1.08631,2.16053,-0.50921
+3.99903,0.80846,-1.50432,-1.33790,-1.08561,2.16079,-0.50952
+3.99972,0.80811,-1.50357,-1.33951,-1.08493,2.16103,-0.50981
+4.00042,0.80776,-1.50284,-1.34109,-1.08426,2.16128,-0.51011
+4.00111,0.80743,-1.50211,-1.34264,-1.08360,2.16151,-0.51040
+4.00181,0.80709,-1.50140,-1.34417,-1.08294,2.16175,-0.51068
+4.00250,0.80677,-1.50071,-1.34567,-1.08230,2.16198,-0.51096
+4.00320,0.80645,-1.50002,-1.34714,-1.08167,2.16220,-0.51123
+4.00389,0.80613,-1.49935,-1.34859,-1.08105,2.16242,-0.51149
+4.00458,0.80583,-1.49869,-1.35002,-1.08044,2.16264,-0.51175
+4.00528,0.80552,-1.49803,-1.35142,-1.07984,2.16285,-0.51201
+4.00597,0.80523,-1.49739,-1.35280,-1.07924,2.16306,-0.51226
+4.00667,0.80494,-1.49677,-1.35415,-1.07866,2.16326,-0.51251
+4.00736,0.80465,-1.49615,-1.35548,-1.07809,2.16346,-0.51275
+4.00806,0.80437,-1.49554,-1.35679,-1.07752,2.16366,-0.51299
+4.00875,0.80410,-1.49494,-1.35808,-1.07697,2.16385,-0.51322
+4.00945,0.80383,-1.49435,-1.35935,-1.07642,2.16404,-0.51345
+4.01014,0.80357,-1.49378,-1.36059,-1.07588,2.16422,-0.51367
+4.01084,0.80331,-1.49321,-1.36182,-1.07535,2.16440,-0.51389
+4.01153,0.80306,-1.49265,-1.36302,-1.07483,2.16458,-0.51410
+4.01223,0.80281,-1.49210,-1.36420,-1.07431,2.16475,-0.51431
+4.01292,0.80257,-1.49156,-1.36537,-1.07380,2.16493,-0.51452
+4.01361,0.80233,-1.49103,-1.36651,-1.07331,2.16509,-0.51472
+4.01431,0.80209,-1.49051,-1.36764,-1.07282,2.16526,-0.51492
+4.01500,0.80186,-1.48999,-1.36874,-1.07233,2.16542,-0.51511
+4.01570,0.80164,-1.48949,-1.36983,-1.07186,2.16558,-0.51530
+4.01639,0.80142,-1.48899,-1.37090,-1.07139,2.16573,-0.51549
+4.01709,0.80120,-1.48851,-1.37195,-1.07093,2.16588,-0.51567
+4.01778,0.80099,-1.48803,-1.37298,-1.07047,2.16603,-0.51585
+4.01848,0.80078,-1.48756,-1.37400,-1.07003,2.16618,-0.51602
+4.01917,0.80058,-1.48709,-1.37500,-1.06959,2.16632,-0.51620
+4.01987,0.80038,-1.48664,-1.37598,-1.06916,2.16646,-0.51636
+4.02056,0.80018,-1.48619,-1.37695,-1.06873,2.16660,-0.51653
+4.02126,0.79999,-1.48575,-1.37790,-1.06831,2.16674,-0.51669
+4.02195,0.79980,-1.48532,-1.37884,-1.06790,2.16687,-0.51685
+4.02265,0.79962,-1.48489,-1.37976,-1.06749,2.16700,-0.51700
+4.02334,0.79944,-1.48447,-1.38066,-1.06709,2.16713,-0.51716
+4.02403,0.79926,-1.48406,-1.38155,-1.06670,2.16725,-0.51731
+4.02473,0.79908,-1.48366,-1.38242,-1.06631,2.16737,-0.51745
+4.02542,0.79891,-1.48326,-1.38328,-1.06593,2.16749,-0.51760
+4.02612,0.79875,-1.48287,-1.38413,-1.06555,2.16761,-0.51774
+4.02681,0.79858,-1.48248,-1.38496,-1.06518,2.16772,-0.51787
+4.02751,0.79842,-1.48210,-1.38577,-1.06482,2.16784,-0.51801
+4.02820,0.79827,-1.48173,-1.38658,-1.06446,2.16795,-0.51814
+4.02890,0.79811,-1.48137,-1.38737,-1.06410,2.16806,-0.51827
+4.02959,0.79796,-1.48101,-1.38815,-1.06376,2.16816,-0.51840
+4.03029,0.79781,-1.48065,-1.38891,-1.06341,2.16827,-0.51852
+4.03098,0.79767,-1.48031,-1.38966,-1.06308,2.16837,-0.51864
+4.03168,0.79752,-1.47996,-1.39040,-1.06274,2.16847,-0.51876
+4.03237,0.79739,-1.47963,-1.39113,-1.06242,2.16857,-0.51888
+4.03306,0.79725,-1.47930,-1.39184,-1.06209,2.16866,-0.51899
+4.03376,0.79711,-1.47897,-1.39254,-1.06178,2.16876,-0.51910
+4.03445,0.79698,-1.47865,-1.39324,-1.06147,2.16885,-0.51921
+4.03515,0.79686,-1.47834,-1.39392,-1.06116,2.16894,-0.51932
+4.03584,0.79673,-1.47803,-1.39458,-1.06086,2.16903,-0.51942
+4.03654,0.79661,-1.47772,-1.39524,-1.06056,2.16912,-0.51953
+4.03723,0.79648,-1.47743,-1.39589,-1.06027,2.16920,-0.51963
+4.03793,0.79637,-1.47713,-1.39652,-1.05998,2.16929,-0.51973
+4.03862,0.79625,-1.47684,-1.39715,-1.05969,2.16937,-0.51982
+4.03932,0.79614,-1.47656,-1.39776,-1.05941,2.16945,-0.51992
+4.04001,0.79602,-1.47628,-1.39837,-1.05914,2.16953,-0.52001
+4.04071,0.79591,-1.47600,-1.39896,-1.05887,2.16960,-0.52010
+4.04140,0.79589,-1.47593,-1.39911,-1.05880,2.16962,-0.52012
+4.04210,0.79578,-1.47549,-1.39999,-1.05842,2.16970,-0.52022
+4.04279,0.79567,-1.47505,-1.40086,-1.05804,2.16978,-0.52031
+4.04348,0.79556,-1.47462,-1.40172,-1.05767,2.16986,-0.52040
+4.04418,0.79545,-1.47420,-1.40256,-1.05730,2.16993,-0.52049
+4.04487,0.79534,-1.47378,-1.40339,-1.05694,2.17001,-0.52058
+4.04557,0.79524,-1.47337,-1.40420,-1.05658,2.17008,-0.52067
+4.04626,0.79514,-1.47297,-1.40500,-1.05623,2.17015,-0.52075
+4.04696,0.79504,-1.47257,-1.40578,-1.05589,2.17022,-0.52083
+4.04765,0.79494,-1.47219,-1.40656,-1.05555,2.17029,-0.52091
+4.04835,0.79485,-1.47180,-1.40732,-1.05521,2.17035,-0.52099
+4.04904,0.79476,-1.47143,-1.40806,-1.05488,2.17042,-0.52107
+4.04974,0.79467,-1.47106,-1.40880,-1.05456,2.17048,-0.52114
+4.05043,0.79458,-1.47070,-1.40952,-1.05424,2.17054,-0.52122
+4.05113,0.79449,-1.47034,-1.41023,-1.05392,2.17061,-0.52129
+4.05182,0.79441,-1.46999,-1.41093,-1.05361,2.17067,-0.52136
+4.05251,0.79432,-1.46964,-1.41162,-1.05331,2.17072,-0.52143
+4.05321,0.79424,-1.46930,-1.41230,-1.05301,2.17078,-0.52149
+4.05390,0.79416,-1.46897,-1.41296,-1.05271,2.17084,-0.52156
+4.05460,0.79409,-1.46864,-1.41361,-1.05242,2.17089,-0.52162
+4.05529,0.79401,-1.46832,-1.41426,-1.05213,2.17094,-0.52169
+4.05599,0.79394,-1.46800,-1.41489,-1.05185,2.17100,-0.52175
+4.05668,0.79386,-1.46769,-1.41551,-1.05157,2.17105,-0.52181
+4.05738,0.79379,-1.46738,-1.41612,-1.05130,2.17110,-0.52186
+4.05807,0.79373,-1.46711,-1.41665,-1.05107,2.17114,-0.52191
+4.05877,0.79358,-1.46623,-1.41829,-1.05038,2.17124,-0.52204
+4.05946,0.79343,-1.46537,-1.41991,-1.04971,2.17135,-0.52217
+4.06016,0.79329,-1.46452,-1.42150,-1.04905,2.17145,-0.52229
+4.06085,0.79315,-1.46368,-1.42306,-1.04840,2.17154,-0.52241
+4.06154,0.79301,-1.46286,-1.42460,-1.04776,2.17164,-0.52253
+4.06224,0.79287,-1.46205,-1.42610,-1.04713,2.17173,-0.52265
+4.06293,0.79274,-1.46126,-1.42759,-1.04650,2.17183,-0.52276
+4.06363,0.79261,-1.46048,-1.42905,-1.04589,2.17191,-0.52287
+4.06432,0.79249,-1.45971,-1.43048,-1.04529,2.17200,-0.52297
+4.06502,0.79236,-1.45896,-1.43189,-1.04470,2.17209,-0.52308
+4.06571,0.79224,-1.45822,-1.43328,-1.04411,2.17217,-0.52318
+4.06641,0.79212,-1.45749,-1.43464,-1.04354,2.17225,-0.52328
+4.06710,0.79201,-1.45677,-1.43598,-1.04297,2.17233,-0.52338
+4.06780,0.79190,-1.45607,-1.43729,-1.04242,2.17241,-0.52347
+4.06849,0.79179,-1.45538,-1.43859,-1.04187,2.17249,-0.52356
+4.06919,0.79168,-1.45470,-1.43986,-1.04133,2.17256,-0.52365
+4.06988,0.79157,-1.45403,-1.44111,-1.04080,2.17263,-0.52374
+4.07058,0.79147,-1.45337,-1.44234,-1.04027,2.17270,-0.52383
+4.07127,0.79137,-1.45273,-1.44355,-1.03976,2.17277,-0.52391
+4.07196,0.79127,-1.45209,-1.44474,-1.03925,2.17284,-0.52399
+4.07266,0.79118,-1.45147,-1.44591,-1.03875,2.17291,-0.52407
+4.07335,0.79108,-1.45086,-1.44706,-1.03826,2.17297,-0.52415
+4.07405,0.79099,-1.45025,-1.44819,-1.03777,2.17303,-0.52422
+4.07474,0.79090,-1.44966,-1.44930,-1.03730,2.17309,-0.52429
+4.07544,0.79082,-1.44908,-1.45039,-1.03683,2.17315,-0.52437
+4.07613,0.79073,-1.44851,-1.45147,-1.03637,2.17321,-0.52444
+4.07683,0.79065,-1.44794,-1.45252,-1.03591,2.17327,-0.52450
+4.07752,0.79057,-1.44739,-1.45356,-1.03546,2.17333,-0.52457
+4.07822,0.79049,-1.44685,-1.45458,-1.03502,2.17338,-0.52463
+4.07891,0.79042,-1.44631,-1.45559,-1.03459,2.17343,-0.52470
+4.07961,0.79034,-1.44579,-1.45658,-1.03416,2.17348,-0.52476
+4.08030,0.79027,-1.44527,-1.45755,-1.03374,2.17353,-0.52482
+4.08099,0.79020,-1.44476,-1.45850,-1.03332,2.17358,-0.52487
+4.08169,0.79013,-1.44426,-1.45944,-1.03292,2.17363,-0.52493
+4.08238,0.79006,-1.44377,-1.46036,-1.03251,2.17368,-0.52498
+4.08308,0.78999,-1.44329,-1.46127,-1.03212,2.17372,-0.52504
+4.08377,0.78993,-1.44281,-1.46216,-1.03173,2.17377,-0.52509
+4.08447,0.78987,-1.44235,-1.46304,-1.03135,2.17381,-0.52514
+4.08516,0.78980,-1.44189,-1.46390,-1.03097,2.17385,-0.52519
+4.08586,0.78974,-1.44144,-1.46475,-1.03060,2.17390,-0.52523
+4.08655,0.78969,-1.44100,-1.46558,-1.03023,2.17394,-0.52528
+4.08725,0.78963,-1.44056,-1.46640,-1.02987,2.17397,-0.52533
+4.08794,0.78957,-1.44013,-1.46721,-1.02951,2.17401,-0.52537
+4.08864,0.78952,-1.43971,-1.46800,-1.02916,2.17405,-0.52541
+4.08933,0.78947,-1.43930,-1.46878,-1.02882,2.17409,-0.52545
+4.09003,0.78942,-1.43889,-1.46955,-1.02848,2.17412,-0.52549
+4.09072,0.78937,-1.43849,-1.47030,-1.02815,2.17416,-0.52553
+4.09141,0.78932,-1.43810,-1.47104,-1.02782,2.17419,-0.52557
+4.09211,0.78927,-1.43771,-1.47177,-1.02749,2.17422,-0.52561
+4.09280,0.78922,-1.43733,-1.47249,-1.02717,2.17425,-0.52564
+4.09350,0.78918,-1.43696,-1.47319,-1.02686,2.17428,-0.52568
+4.09419,0.78914,-1.43659,-1.47388,-1.02655,2.17431,-0.52571
+4.09489,0.78909,-1.43623,-1.47456,-1.02625,2.17434,-0.52574
+4.09558,0.78905,-1.43587,-1.47523,-1.02595,2.17437,-0.52577
+4.09628,0.78901,-1.43553,-1.47589,-1.02565,2.17440,-0.52580
+4.09697,0.78897,-1.43518,-1.47654,-1.02536,2.17443,-0.52583
+4.09767,0.78893,-1.43485,-1.47718,-1.02507,2.17445,-0.52586
+4.09836,0.78890,-1.43451,-1.47780,-1.02479,2.17448,-0.52589
+4.09906,0.78886,-1.43419,-1.47842,-1.02451,2.17450,-0.52592
+4.09975,0.78882,-1.43387,-1.47902,-1.02424,2.17453,-0.52594
+4.10044,0.78880,-1.43363,-1.47947,-1.02404,2.17455,-0.52596
+4.10114,0.78875,-1.43320,-1.48027,-1.02369,2.17458,-0.52600
+4.10183,0.78871,-1.43276,-1.48107,-1.02335,2.17461,-0.52603
+4.10253,0.78867,-1.43234,-1.48185,-1.02301,2.17463,-0.52606
+4.10322,0.78863,-1.43192,-1.48262,-1.02267,2.17466,-0.52610
+4.10392,0.78859,-1.43151,-1.48337,-1.02234,2.17469,-0.52613
+4.10461,0.78855,-1.43111,-1.48412,-1.02202,2.17472,-0.52616
+4.10531,0.78851,-1.43072,-1.48485,-1.02170,2.17474,-0.52619
+4.10600,0.78847,-1.43033,-1.48557,-1.02138,2.17477,-0.52621
+4.10670,0.78844,-1.42994,-1.48627,-1.02107,2.17479,-0.52624
+4.10739,0.78840,-1.42957,-1.48697,-1.02076,2.17482,-0.52627
+4.10809,0.78837,-1.42920,-1.48765,-1.02046,2.17484,-0.52629
+4.10878,0.78834,-1.42883,-1.48832,-1.02017,2.17486,-0.52632
+4.10947,0.78830,-1.42848,-1.48898,-1.01988,2.17488,-0.52634
+4.11017,0.78827,-1.42813,-1.48963,-1.01959,2.17490,-0.52636
+4.11086,0.78824,-1.42778,-1.49027,-1.01931,2.17492,-0.52638
+4.11156,0.78822,-1.42744,-1.49090,-1.01903,2.17494,-0.52640
+4.11225,0.78819,-1.42711,-1.49152,-1.01875,2.17496,-0.52643
+4.11295,0.78816,-1.42678,-1.49212,-1.01848,2.17498,-0.52644
+4.11364,0.78813,-1.42646,-1.49272,-1.01822,2.17500,-0.52646
+4.11434,0.78813,-1.42641,-1.49280,-1.01818,2.17500,-0.52646
+4.11503,0.78812,-1.42597,-1.49358,-1.01785,2.17501,-0.52647
+4.11573,0.78811,-1.42553,-1.49435,-1.01752,2.17502,-0.52648
+4.11642,0.78810,-1.42510,-1.49511,-1.01719,2.17502,-0.52649
+4.11712,0.78809,-1.42468,-1.49585,-1.01687,2.17503,-0.52649
+4.11781,0.78808,-1.42426,-1.49659,-1.01656,2.17504,-0.52650
+4.11851,0.78807,-1.42385,-1.49731,-1.01625,2.17504,-0.52650
+4.11920,0.78806,-1.42345,-1.49801,-1.01594,2.17505,-0.52651
+4.11989,0.78805,-1.42306,-1.49871,-1.01564,2.17505,-0.52651
+4.12059,0.78804,-1.42267,-1.49939,-1.01535,2.17506,-0.52651
+4.12128,0.78804,-1.42229,-1.50007,-1.01505,2.17506,-0.52651
+4.12198,0.78803,-1.42192,-1.50073,-1.01477,2.17507,-0.52652
+4.12267,0.78802,-1.42155,-1.50138,-1.01448,2.17507,-0.52652
+4.12337,0.78802,-1.42119,-1.50202,-1.01421,2.17507,-0.52652
+4.12406,0.78801,-1.42083,-1.50265,-1.01393,2.17508,-0.52652
+4.12476,0.78801,-1.42048,-1.50326,-1.01366,2.17508,-0.52652
+4.12545,0.78800,-1.42014,-1.50387,-1.01340,2.17508,-0.52652
+4.12615,0.78800,-1.41980,-1.50447,-1.01313,2.17508,-0.52652
+4.12684,0.78802,-1.41960,-1.50479,-1.01300,2.17507,-0.52650
+4.12754,0.78824,-1.41861,-1.50624,-1.01245,2.17491,-0.52631
+4.12823,0.78846,-1.41764,-1.50765,-1.01190,2.17476,-0.52612
+4.12892,0.78868,-1.41668,-1.50905,-1.01136,2.17461,-0.52594
+4.12962,0.78889,-1.41574,-1.51042,-1.01084,2.17446,-0.52575
+4.13031,0.78911,-1.41482,-1.51176,-1.01031,2.17432,-0.52557
+4.13101,0.78931,-1.41391,-1.51309,-1.00980,2.17417,-0.52539
+4.13170,0.78952,-1.41301,-1.51439,-1.00930,2.17403,-0.52521
+4.13240,0.78973,-1.41214,-1.51567,-1.00880,2.17389,-0.52504
+4.13309,0.78993,-1.41127,-1.51693,-1.00831,2.17375,-0.52486
+4.13379,0.79013,-1.41043,-1.51816,-1.00782,2.17361,-0.52469
+4.13448,0.79032,-1.40959,-1.51938,-1.00735,2.17347,-0.52452
+4.13518,0.79052,-1.40878,-1.52058,-1.00688,2.17334,-0.52435
+4.13587,0.79071,-1.40797,-1.52175,-1.00642,2.17320,-0.52419
+4.13657,0.79090,-1.40718,-1.52291,-1.00596,2.17307,-0.52402
+4.13726,0.79109,-1.40640,-1.52404,-1.00551,2.17294,-0.52386
+4.13795,0.79127,-1.40564,-1.52516,-1.00507,2.17281,-0.52370
+4.13865,0.79146,-1.40489,-1.52626,-1.00464,2.17268,-0.52354
+4.13934,0.79164,-1.40415,-1.52734,-1.00421,2.17256,-0.52338
+4.14004,0.79181,-1.40342,-1.52840,-1.00379,2.17243,-0.52323
+4.14073,0.79199,-1.40271,-1.52945,-1.00337,2.17231,-0.52307
+4.14143,0.79216,-1.40201,-1.53047,-1.00296,2.17219,-0.52292
+4.14212,0.79234,-1.40132,-1.53148,-1.00256,2.17207,-0.52277
+4.14282,0.79251,-1.40064,-1.53248,-1.00216,2.17195,-0.52262
+4.14351,0.79267,-1.39998,-1.53345,-1.00177,2.17183,-0.52248
+4.14421,0.79284,-1.39932,-1.53441,-1.00138,2.17171,-0.52233
+4.14490,0.79300,-1.39868,-1.53535,-1.00100,2.17160,-0.52219
+4.14560,0.79316,-1.39805,-1.53628,-1.00063,2.17149,-0.52205
+4.14629,0.79332,-1.39743,-1.53719,-1.00026,2.17137,-0.52191
+4.14699,0.79348,-1.39681,-1.53809,-0.99989,2.17126,-0.52177
+4.14768,0.79364,-1.39621,-1.53897,-0.99953,2.17115,-0.52163
+4.14837,0.79379,-1.39562,-1.53984,-0.99918,2.17105,-0.52150
+4.14907,0.79394,-1.39504,-1.54069,-0.99883,2.17094,-0.52136
+4.14976,0.79409,-1.39447,-1.54153,-0.99849,2.17083,-0.52123
+4.15046,0.79424,-1.39391,-1.54236,-0.99815,2.17073,-0.52110
+4.15115,0.79439,-1.39336,-1.54317,-0.99782,2.17063,-0.52097
+4.15185,0.79453,-1.39282,-1.54396,-0.99749,2.17053,-0.52084
+4.15254,0.79467,-1.39229,-1.54475,-0.99717,2.17043,-0.52072
+4.15324,0.79481,-1.39177,-1.54552,-0.99685,2.17033,-0.52059
+4.15393,0.79495,-1.39125,-1.54628,-0.99654,2.17023,-0.52047
+4.15463,0.79509,-1.39075,-1.54702,-0.99623,2.17013,-0.52035
+4.15532,0.79522,-1.39025,-1.54775,-0.99592,2.17004,-0.52023
+4.15602,0.79536,-1.38976,-1.54847,-0.99562,2.16994,-0.52011
+4.15671,0.79549,-1.38928,-1.54918,-0.99533,2.16985,-0.52000
+4.15740,0.79562,-1.38881,-1.54988,-0.99503,2.16976,-0.51988
+4.15810,0.79575,-1.38835,-1.55056,-0.99475,2.16967,-0.51977
+4.15879,0.79587,-1.38789,-1.55124,-0.99446,2.16958,-0.51965
+4.15949,0.79600,-1.38745,-1.55190,-0.99419,2.16949,-0.51954
+4.16018,0.79612,-1.38701,-1.55255,-0.99391,2.16940,-0.51943
+4.16088,0.79624,-1.38657,-1.55319,-0.99364,2.16932,-0.51933
+4.16157,0.79636,-1.38615,-1.55382,-0.99337,2.16923,-0.51922
+4.16227,0.79648,-1.38573,-1.55444,-0.99311,2.16915,-0.51911
+4.16296,0.79660,-1.38532,-1.55505,-0.99285,2.16906,-0.51901
+4.16366,0.79671,-1.38491,-1.55565,-0.99260,2.16898,-0.51891
+4.16435,0.79683,-1.38452,-1.55624,-0.99235,2.16890,-0.51880
+4.16505,0.79694,-1.38413,-1.55682,-0.99210,2.16882,-0.51870
+4.16574,0.79705,-1.38374,-1.55739,-0.99185,2.16874,-0.51860
+4.16644,0.79716,-1.38338,-1.55793,-0.99163,2.16866,-0.51851
+4.16713,0.79737,-1.38275,-1.55880,-0.99129,2.16851,-0.51832
+4.16782,0.79758,-1.38213,-1.55965,-0.99095,2.16837,-0.51814
+4.16852,0.79779,-1.38152,-1.56049,-0.99062,2.16822,-0.51796
+4.16921,0.79800,-1.38092,-1.56132,-0.99029,2.16808,-0.51778
+4.16991,0.79820,-1.38033,-1.56213,-0.98997,2.16793,-0.51761
+4.17060,0.79840,-1.37975,-1.56293,-0.98965,2.16779,-0.51743
+4.17130,0.79860,-1.37918,-1.56372,-0.98934,2.16765,-0.51726
+4.17199,0.79879,-1.37862,-1.56449,-0.98903,2.16752,-0.51709
+4.17269,0.79898,-1.37807,-1.56525,-0.98872,2.16738,-0.51692
+4.17338,0.79917,-1.37754,-1.56600,-0.98842,2.16725,-0.51676
+4.17408,0.79936,-1.37700,-1.56673,-0.98813,2.16712,-0.51660
+4.17477,0.79954,-1.37648,-1.56745,-0.98784,2.16699,-0.51644
+4.17547,0.79972,-1.37597,-1.56816,-0.98755,2.16686,-0.51628
+4.17616,0.79990,-1.37547,-1.56886,-0.98727,2.16673,-0.51612
+4.17685,0.80008,-1.37497,-1.56955,-0.98699,2.16661,-0.51597
+4.17755,0.80025,-1.37448,-1.57023,-0.98672,2.16649,-0.51582
+4.17824,0.80042,-1.37401,-1.57089,-0.98645,2.16637,-0.51567
+4.17894,0.80059,-1.37354,-1.57154,-0.98618,2.16625,-0.51552
+4.17963,0.80076,-1.37307,-1.57219,-0.98592,2.16613,-0.51537
+4.18033,0.80092,-1.37262,-1.57282,-0.98566,2.16601,-0.51523
+4.18102,0.80109,-1.37217,-1.57344,-0.98540,2.16590,-0.51509
+4.18172,0.80125,-1.37173,-1.57405,-0.98515,2.16578,-0.51495
+4.18241,0.80141,-1.37130,-1.57465,-0.98490,2.16567,-0.51481
+4.18311,0.80156,-1.37088,-1.57524,-0.98466,2.16556,-0.51467
+4.18380,0.80171,-1.37046,-1.57582,-0.98442,2.16545,-0.51454
+4.18450,0.80187,-1.37005,-1.57639,-0.98418,2.16534,-0.51441
+4.18519,0.80202,-1.36965,-1.57696,-0.98395,2.16524,-0.51427
+4.18588,0.80216,-1.36925,-1.57751,-0.98372,2.16513,-0.51414
+4.18658,0.80231,-1.36887,-1.57805,-0.98349,2.16503,-0.51402
+4.18727,0.80240,-1.36865,-1.57833,-0.98338,2.16497,-0.51394
+4.18797,0.80285,-1.36769,-1.57950,-0.98296,2.16465,-0.51356
+4.18866,0.80329,-1.36675,-1.58066,-0.98255,2.16434,-0.51318
+4.18936,0.80373,-1.36582,-1.58179,-0.98214,2.16404,-0.51281
+4.19005,0.80416,-1.36490,-1.58291,-0.98174,2.16373,-0.51244
+4.19075,0.80459,-1.36401,-1.58400,-0.98134,2.16344,-0.51208
+4.19144,0.80501,-1.36312,-1.58508,-0.98095,2.16314,-0.51173
+4.19214,0.80542,-1.36226,-1.58614,-0.98057,2.16285,-0.51137
+4.19283,0.80583,-1.36141,-1.58718,-0.98019,2.16256,-0.51103
+4.19353,0.80623,-1.36057,-1.58820,-0.97981,2.16228,-0.51069
+4.19422,0.80663,-1.35975,-1.58921,-0.97944,2.16200,-0.51035
+4.19492,0.80702,-1.35894,-1.59020,-0.97908,2.16173,-0.51001
+4.19561,0.80741,-1.35814,-1.59117,-0.97872,2.16146,-0.50969
+4.19630,0.80779,-1.35736,-1.59213,-0.97837,2.16119,-0.50936
+4.19700,0.80816,-1.35659,-1.59307,-0.97802,2.16092,-0.50904
+4.19769,0.80853,-1.35584,-1.59400,-0.97768,2.16066,-0.50873
+4.19839,0.80890,-1.35510,-1.59491,-0.97734,2.16041,-0.50842
+4.19908,0.80926,-1.35437,-1.59580,-0.97701,2.16015,-0.50811
+4.19978,0.80961,-1.35365,-1.59668,-0.97668,2.15990,-0.50781
+4.20047,0.80996,-1.35295,-1.59754,-0.97636,2.15966,-0.50751
+4.20117,0.81031,-1.35226,-1.59839,-0.97604,2.15941,-0.50722
+4.20186,0.81065,-1.35158,-1.59923,-0.97572,2.15917,-0.50693
+4.20256,0.81098,-1.35091,-1.60005,-0.97541,2.15894,-0.50664
+4.20325,0.81131,-1.35025,-1.60086,-0.97510,2.15870,-0.50636
+4.20395,0.81164,-1.34960,-1.60165,-0.97480,2.15847,-0.50608
+4.20464,0.81196,-1.34897,-1.60243,-0.97451,2.15824,-0.50581
+4.20533,0.81227,-1.34835,-1.60320,-0.97421,2.15802,-0.50554
+4.20603,0.81259,-1.34773,-1.60396,-0.97392,2.15780,-0.50527
+4.20672,0.81289,-1.34713,-1.60470,-0.97364,2.15758,-0.50501
+4.20742,0.81320,-1.34654,-1.60543,-0.97336,2.15737,-0.50475
+4.20811,0.81350,-1.34596,-1.60615,-0.97308,2.15715,-0.50450
+4.20881,0.81379,-1.34539,-1.60685,-0.97281,2.15694,-0.50424
+4.20950,0.81408,-1.34482,-1.60755,-0.97254,2.15674,-0.50400
+4.21020,0.81437,-1.34427,-1.60823,-0.97227,2.15653,-0.50375
+4.21089,0.81465,-1.34373,-1.60890,-0.97201,2.15633,-0.50351
+4.21159,0.81493,-1.34320,-1.60956,-0.97175,2.15614,-0.50327
+4.21228,0.81520,-1.34267,-1.61021,-0.97150,2.15594,-0.50304
+4.21298,0.81547,-1.34216,-1.61085,-0.97125,2.15575,-0.50281
+4.21367,0.81574,-1.34165,-1.61148,-0.97100,2.15556,-0.50258
+4.21437,0.81600,-1.34115,-1.61210,-0.97076,2.15537,-0.50236
+4.21506,0.81626,-1.34066,-1.61270,-0.97052,2.15519,-0.50213
+4.21575,0.81651,-1.34018,-1.61330,-0.97028,2.15501,-0.50192
+4.21645,0.81677,-1.33971,-1.61389,-0.97005,2.15483,-0.50170
+4.21714,0.81701,-1.33924,-1.61446,-0.96982,2.15465,-0.50149
+4.21784,0.81726,-1.33879,-1.61503,-0.96959,2.15448,-0.50128
+4.21853,0.81750,-1.33834,-1.61559,-0.96937,2.15430,-0.50107
+4.21923,0.81773,-1.33790,-1.61614,-0.96915,2.15413,-0.50087
+4.21992,0.81797,-1.33747,-1.61668,-0.96893,2.15397,-0.50067
+4.22062,0.81820,-1.33704,-1.61721,-0.96871,2.15380,-0.50047
+4.22131,0.81842,-1.33662,-1.61773,-0.96850,2.15364,-0.50028
+4.22201,0.81865,-1.33621,-1.61825,-0.96829,2.15348,-0.50009
+4.22270,0.81887,-1.33581,-1.61875,-0.96809,2.15332,-0.49990
+4.22340,0.81909,-1.33541,-1.61925,-0.96789,2.15317,-0.49971
+4.22409,0.81931,-1.33505,-1.61965,-0.96773,2.15301,-0.49952
+4.22478,0.82023,-1.33387,-1.62075,-0.96741,2.15236,-0.49875
+4.22548,0.82115,-1.33270,-1.62183,-0.96708,2.15172,-0.49799
+4.22617,0.82205,-1.33155,-1.62289,-0.96676,2.15109,-0.49724
+4.22687,0.82293,-1.33043,-1.62393,-0.96645,2.15046,-0.49651
+4.22756,0.82381,-1.32932,-1.62496,-0.96614,2.14984,-0.49578
+4.22826,0.82467,-1.32823,-1.62596,-0.96583,2.14924,-0.49506
+4.22895,0.82552,-1.32716,-1.62695,-0.96553,2.14864,-0.49436
+4.22965,0.82636,-1.32611,-1.62793,-0.96523,2.14804,-0.49366
+4.23034,0.82719,-1.32508,-1.62888,-0.96494,2.14746,-0.49297
+4.23104,0.82800,-1.32407,-1.62982,-0.96465,2.14688,-0.49230
+4.23173,0.82881,-1.32307,-1.63075,-0.96436,2.14632,-0.49163
+4.23243,0.82960,-1.32209,-1.63166,-0.96408,2.14576,-0.49097
+4.23312,0.83038,-1.32113,-1.63255,-0.96380,2.14520,-0.49033
+4.23381,0.83115,-1.32019,-1.63343,-0.96353,2.14466,-0.48969
+4.23451,0.83191,-1.31926,-1.63429,-0.96326,2.14412,-0.48906
+4.23520,0.83266,-1.31835,-1.63514,-0.96299,2.14359,-0.48844
+4.23590,0.83340,-1.31745,-1.63598,-0.96272,2.14306,-0.48783
+4.23659,0.83412,-1.31657,-1.63680,-0.96246,2.14255,-0.48723
+4.23729,0.83484,-1.31570,-1.63760,-0.96220,2.14204,-0.48664
+4.23798,0.83555,-1.31485,-1.63840,-0.96195,2.14154,-0.48605
+4.23868,0.83624,-1.31402,-1.63918,-0.96170,2.14104,-0.48548
+4.23937,0.83693,-1.31319,-1.63994,-0.96145,2.14055,-0.48491
+4.24007,0.83760,-1.31239,-1.64070,-0.96121,2.14007,-0.48435
+4.24076,0.83827,-1.31159,-1.64144,-0.96096,2.13960,-0.48380
+4.24146,0.83892,-1.31081,-1.64217,-0.96073,2.13913,-0.48326
+4.24215,0.83957,-1.31005,-1.64288,-0.96049,2.13867,-0.48272
+4.24285,0.84021,-1.30930,-1.64359,-0.96026,2.13821,-0.48220
+4.24354,0.84084,-1.30856,-1.64428,-0.96003,2.13776,-0.48168
+4.24423,0.84146,-1.30783,-1.64496,-0.95980,2.13732,-0.48117
+4.24493,0.84207,-1.30712,-1.64563,-0.95958,2.13688,-0.48067
+4.24562,0.84267,-1.30641,-1.64629,-0.95936,2.13645,-0.48017
+4.24632,0.84326,-1.30572,-1.64694,-0.95914,2.13603,-0.47968
+4.24701,0.84384,-1.30505,-1.64758,-0.95892,2.13561,-0.47920
+4.24771,0.84442,-1.30438,-1.64820,-0.95871,2.13520,-0.47873
+4.24840,0.84498,-1.30373,-1.64882,-0.95850,2.13479,-0.47826
+4.24910,0.84554,-1.30308,-1.64942,-0.95830,2.13439,-0.47780
+4.24979,0.84609,-1.30245,-1.65002,-0.95809,2.13399,-0.47735
+4.25049,0.84663,-1.30183,-1.65061,-0.95789,2.13360,-0.47690
+4.25118,0.84717,-1.30122,-1.65118,-0.95769,2.13322,-0.47646
+4.25188,0.84769,-1.30062,-1.65175,-0.95749,2.13284,-0.47603
+4.25257,0.84821,-1.30003,-1.65231,-0.95730,2.13247,-0.47560
+4.25326,0.84872,-1.29945,-1.65286,-0.95711,2.13210,-0.47518
+4.25396,0.84922,-1.29888,-1.65340,-0.95692,2.13174,-0.47477
+4.25465,0.84972,-1.29832,-1.65393,-0.95673,2.13138,-0.47436
+4.25535,0.85021,-1.29777,-1.65445,-0.95655,2.13103,-0.47396
+4.25604,0.85069,-1.29723,-1.65496,-0.95636,2.13068,-0.47356
+4.25674,0.85116,-1.29670,-1.65546,-0.95618,2.13034,-0.47317
+4.25743,0.85163,-1.29618,-1.65596,-0.95601,2.13000,-0.47279
+4.25813,0.85209,-1.29567,-1.65645,-0.95583,2.12967,-0.47241
+4.25882,0.85254,-1.29517,-1.65693,-0.95566,2.12934,-0.47204
+4.25952,0.85299,-1.29467,-1.65740,-0.95549,2.12902,-0.47167
+4.26021,0.85343,-1.29418,-1.65787,-0.95532,2.12870,-0.47131
+4.26091,0.85386,-1.29371,-1.65832,-0.95515,2.12839,-0.47095
+4.26160,0.85429,-1.29324,-1.65877,-0.95499,2.12808,-0.47060
+4.26230,0.85471,-1.29277,-1.65921,-0.95483,2.12777,-0.47026
+4.26299,0.85512,-1.29232,-1.65965,-0.95466,2.12747,-0.46992
+4.26368,0.85553,-1.29187,-1.66008,-0.95451,2.12718,-0.46958
+4.26438,0.85593,-1.29144,-1.66050,-0.95435,2.12689,-0.46925
+4.26507,0.85632,-1.29101,-1.66091,-0.95420,2.12660,-0.46893
+4.26577,0.85671,-1.29058,-1.66132,-0.95404,2.12631,-0.46861
+4.26646,0.85710,-1.29017,-1.66172,-0.95389,2.12604,-0.46829
+4.26716,0.85747,-1.28976,-1.66211,-0.95374,2.12576,-0.46798
+4.26785,0.85785,-1.28936,-1.66250,-0.95360,2.12549,-0.46768
+4.26855,0.85821,-1.28896,-1.66288,-0.95345,2.12522,-0.46737
+4.26924,0.85857,-1.28857,-1.66326,-0.95331,2.12496,-0.46708
+4.26994,0.85893,-1.28819,-1.66362,-0.95317,2.12470,-0.46679
+4.27063,0.85928,-1.28782,-1.66399,-0.95303,2.12445,-0.46650
+4.27133,0.85947,-1.28762,-1.66418,-0.95296,2.12431,-0.46634
+4.27202,0.86000,-1.28709,-1.66462,-0.95282,2.12392,-0.46591
+4.27271,0.86052,-1.28657,-1.66505,-0.95268,2.12355,-0.46549
+4.27341,0.86104,-1.28607,-1.66548,-0.95254,2.12317,-0.46507
+4.27410,0.86154,-1.28557,-1.66590,-0.95240,2.12281,-0.46466
+4.27480,0.86204,-1.28508,-1.66632,-0.95226,2.12245,-0.46425
+4.27549,0.86253,-1.28460,-1.66672,-0.95213,2.12209,-0.46385
+4.27619,0.86302,-1.28412,-1.66712,-0.95200,2.12174,-0.46346
+4.27688,0.86350,-1.28366,-1.66752,-0.95187,2.12139,-0.46307
+4.27758,0.86397,-1.28320,-1.66790,-0.95174,2.12105,-0.46269
+4.27827,0.86443,-1.28275,-1.66829,-0.95161,2.12072,-0.46231
+4.27897,0.86488,-1.28231,-1.66866,-0.95148,2.12039,-0.46194
+4.27966,0.86533,-1.28188,-1.66903,-0.95136,2.12006,-0.46158
+4.28036,0.86577,-1.28145,-1.66939,-0.95123,2.11974,-0.46122
+4.28105,0.86621,-1.28104,-1.66975,-0.95111,2.11942,-0.46087
+4.28174,0.86664,-1.28062,-1.67010,-0.95099,2.11911,-0.46052
+4.28244,0.86706,-1.28022,-1.67045,-0.95087,2.11880,-0.46018
+4.28313,0.86748,-1.27982,-1.67079,-0.95075,2.11850,-0.45984
+4.28383,0.86789,-1.27943,-1.67112,-0.95064,2.11820,-0.45951
+4.28452,0.86829,-1.27905,-1.67145,-0.95052,2.11791,-0.45918
+4.28522,0.86869,-1.27867,-1.67177,-0.95041,2.11762,-0.45886
+4.28591,0.86908,-1.27830,-1.67209,-0.95029,2.11733,-0.45854
+4.28661,0.86946,-1.27794,-1.67241,-0.95018,2.11705,-0.45823
+4.28730,0.86983,-1.27760,-1.67268,-0.95009,2.11679,-0.45793
+4.28800,0.87043,-1.27713,-1.67298,-0.95001,2.11635,-0.45745
+4.28869,0.87103,-1.27666,-1.67327,-0.94994,2.11592,-0.45696
+4.28939,0.87162,-1.27621,-1.67355,-0.94987,2.11549,-0.45649
+4.29008,0.87220,-1.27576,-1.67383,-0.94980,2.11507,-0.45603
+4.29078,0.87277,-1.27532,-1.67411,-0.94972,2.11466,-0.45557
+4.29147,0.87333,-1.27489,-1.67438,-0.94965,2.11425,-0.45512
+4.29216,0.87389,-1.27446,-1.67465,-0.94958,2.11385,-0.45467
+4.29286,0.87443,-1.27404,-1.67491,-0.94951,2.11345,-0.45424
+4.29355,0.87497,-1.27363,-1.67517,-0.94944,2.11306,-0.45381
+4.29425,0.87550,-1.27323,-1.67543,-0.94937,2.11268,-0.45338
+4.29494,0.87602,-1.27283,-1.67568,-0.94930,2.11230,-0.45296
+4.29564,0.87653,-1.27244,-1.67593,-0.94924,2.11192,-0.45255
+4.29633,0.87704,-1.27206,-1.67617,-0.94917,2.11156,-0.45215
+4.29703,0.87753,-1.27168,-1.67641,-0.94910,2.11120,-0.45175
+4.29772,0.87802,-1.27131,-1.67665,-0.94903,2.11084,-0.45136
+4.29842,0.87850,-1.27095,-1.67688,-0.94897,2.11049,-0.45097
+4.29911,0.87898,-1.27059,-1.67711,-0.94890,2.11014,-0.45060
+4.29981,0.87945,-1.27024,-1.67733,-0.94884,2.10980,-0.45022
+4.30050,0.87990,-1.26990,-1.67755,-0.94877,2.10947,-0.44985
+4.30119,0.88036,-1.26956,-1.67777,-0.94871,2.10914,-0.44949
+4.30189,0.88080,-1.26922,-1.67798,-0.94865,2.10881,-0.44914
+4.30258,0.88124,-1.26890,-1.67820,-0.94858,2.10849,-0.44878
+4.30328,0.88167,-1.26858,-1.67840,-0.94852,2.10817,-0.44844
+4.30397,0.88201,-1.26834,-1.67854,-0.94848,2.10793,-0.44817
+4.30467,0.88278,-1.26791,-1.67863,-0.94851,2.10737,-0.44756
+4.30536,0.88353,-1.26749,-1.67873,-0.94853,2.10683,-0.44696
+4.30606,0.88428,-1.26707,-1.67883,-0.94855,2.10629,-0.44637
+4.30675,0.88501,-1.26666,-1.67892,-0.94857,2.10575,-0.44579
+4.30745,0.88573,-1.26626,-1.67902,-0.94859,2.10523,-0.44522
+4.30814,0.88644,-1.26586,-1.67911,-0.94860,2.10471,-0.44466
+4.30884,0.88714,-1.26548,-1.67920,-0.94862,2.10420,-0.44411
+4.30953,0.88783,-1.26510,-1.67929,-0.94864,2.10370,-0.44356
+4.31023,0.88851,-1.26472,-1.67938,-0.94865,2.10321,-0.44303
+4.31092,0.88918,-1.26436,-1.67947,-0.94866,2.10272,-0.44250
+4.31161,0.88983,-1.26400,-1.67955,-0.94868,2.10225,-0.44198
+4.31231,0.89048,-1.26364,-1.67964,-0.94869,2.10177,-0.44147
+4.31300,0.89112,-1.26329,-1.67972,-0.94870,2.10131,-0.44097
+4.31370,0.89174,-1.26295,-1.67980,-0.94871,2.10085,-0.44048
+4.31439,0.89236,-1.26262,-1.67988,-0.94872,2.10040,-0.43999
+4.31509,0.89297,-1.26229,-1.67997,-0.94873,2.09996,-0.43951
+4.31578,0.89357,-1.26196,-1.68005,-0.94873,2.09952,-0.43904
+4.31648,0.89415,-1.26165,-1.68012,-0.94874,2.09909,-0.43858
+4.31717,0.89473,-1.26133,-1.68020,-0.94875,2.09867,-0.43812
+4.31787,0.89530,-1.26103,-1.68028,-0.94875,2.09825,-0.43767
+4.31856,0.89587,-1.26072,-1.68035,-0.94876,2.09784,-0.43723
+4.31926,0.89642,-1.26043,-1.68043,-0.94876,2.09743,-0.43680
+4.31995,0.89696,-1.26014,-1.68050,-0.94876,2.09703,-0.43637
+4.32064,0.89750,-1.25985,-1.68057,-0.94877,2.09664,-0.43595
+4.32134,0.89802,-1.25957,-1.68065,-0.94877,2.09626,-0.43554
+4.32203,0.89854,-1.25929,-1.68072,-0.94877,2.09587,-0.43513
+4.32273,0.89905,-1.25902,-1.68079,-0.94877,2.09550,-0.43473
+4.32342,0.89955,-1.25876,-1.68086,-0.94877,2.09513,-0.43433
+4.32412,0.90005,-1.25850,-1.68092,-0.94877,2.09477,-0.43394
+4.32481,0.90054,-1.25824,-1.68099,-0.94877,2.09441,-0.43356
+4.32551,0.90102,-1.25799,-1.68106,-0.94877,2.09406,-0.43319
+4.32620,0.90149,-1.25774,-1.68112,-0.94877,2.09371,-0.43282
+4.32690,0.90196,-1.25752,-1.68114,-0.94879,2.09336,-0.43244
+4.32759,0.90298,-1.25726,-1.68078,-0.94902,2.09262,-0.43165
+4.32829,0.90398,-1.25700,-1.68042,-0.94924,2.09189,-0.43087
+4.32898,0.90497,-1.25676,-1.68007,-0.94945,2.09117,-0.43011
+4.32967,0.90594,-1.25651,-1.67973,-0.94967,2.09046,-0.42935
+4.33037,0.90690,-1.25628,-1.67939,-0.94988,2.08976,-0.42861
+4.33106,0.90784,-1.25604,-1.67906,-0.95008,2.08908,-0.42788
+4.33176,0.90876,-1.25581,-1.67873,-0.95028,2.08840,-0.42717
+4.33245,0.90967,-1.25559,-1.67841,-0.95048,2.08773,-0.42646
+4.33315,0.91057,-1.25537,-1.67810,-0.95067,2.08708,-0.42577
+4.33384,0.91145,-1.25515,-1.67779,-0.95086,2.08643,-0.42509
+4.33454,0.91232,-1.25494,-1.67749,-0.95104,2.08580,-0.42442
+4.33523,0.91317,-1.25474,-1.67719,-0.95122,2.08517,-0.42376
+4.33593,0.91401,-1.25453,-1.67690,-0.95140,2.08456,-0.42311
+4.33662,0.91484,-1.25433,-1.67661,-0.95158,2.08395,-0.42248
+4.33732,0.91565,-1.25414,-1.67633,-0.95175,2.08336,-0.42185
+4.33801,0.91645,-1.25395,-1.67605,-0.95191,2.08277,-0.42124
+4.33871,0.91724,-1.25376,-1.67578,-0.95208,2.08219,-0.42063
+4.33940,0.91801,-1.25358,-1.67551,-0.95224,2.08162,-0.42003
+4.34009,0.91877,-1.25340,-1.67525,-0.95240,2.08106,-0.41945
+4.34079,0.91952,-1.25322,-1.67499,-0.95255,2.08051,-0.41887
+4.34148,0.92026,-1.25305,-1.67474,-0.95270,2.07997,-0.41831
+4.34218,0.92098,-1.25288,-1.67449,-0.95285,2.07943,-0.41775
+4.34287,0.92170,-1.25271,-1.67425,-0.95299,2.07890,-0.41720
+4.34357,0.92240,-1.25255,-1.67401,-0.95314,2.07839,-0.41666
+4.34426,0.92309,-1.25239,-1.67377,-0.95328,2.07788,-0.41613
+4.34496,0.92377,-1.25223,-1.67354,-0.95341,2.07737,-0.41561
+4.34565,0.92444,-1.25207,-1.67331,-0.95355,2.07688,-0.41510
+4.34635,0.92509,-1.25192,-1.67309,-0.95368,2.07639,-0.41460
+4.34704,0.92574,-1.25178,-1.67287,-0.95381,2.07592,-0.41410
+4.34774,0.92638,-1.25163,-1.67266,-0.95393,2.07544,-0.41361
+4.34843,0.92700,-1.25149,-1.67245,-0.95406,2.07498,-0.41313
+4.34912,0.92762,-1.25135,-1.67224,-0.95418,2.07452,-0.41266
+4.34982,0.92823,-1.25121,-1.67204,-0.95430,2.07407,-0.41220
+4.35051,0.92882,-1.25107,-1.67184,-0.95441,2.07363,-0.41174
+4.35121,0.92941,-1.25094,-1.67164,-0.95453,2.07320,-0.41129
+4.35190,0.92999,-1.25081,-1.67145,-0.95464,2.07277,-0.41085
+4.35260,0.93055,-1.25068,-1.67126,-0.95475,2.07235,-0.41042
+4.35329,0.93111,-1.25056,-1.67108,-0.95485,2.07193,-0.40999
+4.35399,0.93166,-1.25044,-1.67090,-0.95496,2.07152,-0.40957
+4.35468,0.93220,-1.25031,-1.67072,-0.95506,2.07112,-0.40916
+4.35538,0.93273,-1.25020,-1.67054,-0.95516,2.07072,-0.40876
+4.35607,0.93326,-1.25008,-1.67037,-0.95526,2.07033,-0.40836
+4.35677,0.93377,-1.24997,-1.67020,-0.95536,2.06995,-0.40796
+4.35746,0.93428,-1.24985,-1.67004,-0.95545,2.06957,-0.40758
+4.35816,0.93478,-1.24974,-1.66988,-0.95554,2.06920,-0.40720
+4.35885,0.93527,-1.24964,-1.66972,-0.95563,2.06884,-0.40683
+4.35954,0.93575,-1.24953,-1.66956,-0.95572,2.06848,-0.40646
+4.36024,0.93622,-1.24943,-1.66941,-0.95581,2.06812,-0.40610
+4.36093,0.93669,-1.24932,-1.66926,-0.95589,2.06777,-0.40574
+4.36163,0.93708,-1.24927,-1.66908,-0.95598,2.06748,-0.40544
+4.36232,0.93779,-1.24941,-1.66836,-0.95630,2.06696,-0.40491
+4.36302,0.93849,-1.24955,-1.66765,-0.95662,2.06644,-0.40438
+4.36371,0.93917,-1.24969,-1.66696,-0.95693,2.06593,-0.40386
+4.36441,0.93984,-1.24983,-1.66627,-0.95723,2.06544,-0.40335
+4.36510,0.94050,-1.24997,-1.66560,-0.95753,2.06494,-0.40285
+4.36580,0.94115,-1.25010,-1.66494,-0.95782,2.06446,-0.40236
+4.36649,0.94179,-1.25023,-1.66429,-0.95811,2.06399,-0.40188
+4.36719,0.94242,-1.25036,-1.66365,-0.95840,2.06352,-0.40141
+4.36788,0.94303,-1.25049,-1.66302,-0.95868,2.06306,-0.40094
+4.36857,0.94364,-1.25062,-1.66240,-0.95895,2.06261,-0.40048
+4.36927,0.94424,-1.25074,-1.66179,-0.95922,2.06217,-0.40003
+4.36996,0.94482,-1.25086,-1.66120,-0.95948,2.06173,-0.39959
+4.37066,0.94540,-1.25099,-1.66061,-0.95975,2.06131,-0.39916
+4.37135,0.94596,-1.25110,-1.66004,-0.96000,2.06088,-0.39873
+4.37205,0.94652,-1.25122,-1.65947,-0.96025,2.06047,-0.39831
+4.37274,0.94706,-1.25134,-1.65891,-0.96050,2.06006,-0.39790
+4.37344,0.94760,-1.25145,-1.65837,-0.96074,2.05966,-0.39750
+4.37413,0.94813,-1.25156,-1.65783,-0.96098,2.05927,-0.39710
+4.37483,0.94865,-1.25167,-1.65730,-0.96122,2.05888,-0.39671
+4.37552,0.94916,-1.25178,-1.65678,-0.96145,2.05850,-0.39633
+4.37622,0.94966,-1.25189,-1.65627,-0.96167,2.05812,-0.39595
+4.37691,0.95015,-1.25200,-1.65577,-0.96190,2.05775,-0.39558
+4.37760,0.95064,-1.25210,-1.65528,-0.96212,2.05739,-0.39522
+4.37830,0.95111,-1.25220,-1.65480,-0.96233,2.05703,-0.39486
+4.37899,0.95158,-1.25230,-1.65432,-0.96254,2.05668,-0.39451
+4.37969,0.95204,-1.25240,-1.65385,-0.96275,2.05634,-0.39416
+4.38038,0.95249,-1.25250,-1.65339,-0.96295,2.05600,-0.39382
+4.38108,0.95294,-1.25260,-1.65294,-0.96315,2.05567,-0.39349
+4.38177,0.95338,-1.25269,-1.65250,-0.96335,2.05534,-0.39316
+4.38247,0.95380,-1.25278,-1.65206,-0.96355,2.05502,-0.39284
+4.38316,0.95423,-1.25288,-1.65164,-0.96374,2.05470,-0.39252
+4.38386,0.95464,-1.25297,-1.65121,-0.96392,2.05439,-0.39221
+4.38455,0.95505,-1.25305,-1.65080,-0.96411,2.05408,-0.39191
+4.38525,0.95545,-1.25314,-1.65040,-0.96429,2.05378,-0.39161
+4.38594,0.95584,-1.25323,-1.65000,-0.96447,2.05348,-0.39131
+4.38664,0.95623,-1.25331,-1.64960,-0.96464,2.05319,-0.39102
+4.38733,0.95661,-1.25340,-1.64922,-0.96481,2.05291,-0.39074
+4.38802,0.95699,-1.25348,-1.64884,-0.96498,2.05262,-0.39046
+4.38872,0.95735,-1.25356,-1.64847,-0.96515,2.05235,-0.39018
+4.38941,0.95772,-1.25364,-1.64810,-0.96531,2.05207,-0.38991
+4.39011,0.95777,-1.25369,-1.64799,-0.96536,2.05204,-0.38987
+4.39080,0.95826,-1.25419,-1.64685,-0.96581,2.05166,-0.38950
+4.39150,0.95875,-1.25469,-1.64573,-0.96626,2.05130,-0.38914
+4.39219,0.95923,-1.25518,-1.64462,-0.96671,2.05094,-0.38878
+4.39289,0.95970,-1.25566,-1.64354,-0.96714,2.05059,-0.38843
+4.39358,0.96016,-1.25614,-1.64248,-0.96757,2.05024,-0.38809
+4.39428,0.96061,-1.25660,-1.64143,-0.96799,2.04991,-0.38775
+4.39497,0.96106,-1.25706,-1.64040,-0.96841,2.04957,-0.38742
+4.39567,0.96149,-1.25751,-1.63939,-0.96882,2.04925,-0.38709
+4.39636,0.96192,-1.25796,-1.63839,-0.96922,2.04892,-0.38678
+4.39705,0.96234,-1.25839,-1.63741,-0.96962,2.04861,-0.38646
+4.39775,0.96276,-1.25882,-1.63645,-0.97001,2.04830,-0.38616
+4.39844,0.96316,-1.25924,-1.63550,-0.97039,2.04800,-0.38586
+4.39914,0.96356,-1.25966,-1.63457,-0.97077,2.04770,-0.38556
+4.39983,0.96395,-1.26006,-1.63366,-0.97115,2.04740,-0.38527
+4.40053,0.96433,-1.26047,-1.63276,-0.97151,2.04712,-0.38499
+4.40122,0.96470,-1.26086,-1.63187,-0.97187,2.04683,-0.38471
+4.40192,0.96507,-1.26125,-1.63100,-0.97223,2.04656,-0.38444
+4.40261,0.96543,-1.26163,-1.63015,-0.97258,2.04629,-0.38417
+4.40331,0.96579,-1.26200,-1.62931,-0.97292,2.04602,-0.38391
+4.40400,0.96614,-1.26237,-1.62848,-0.97326,2.04576,-0.38365
+4.40470,0.96648,-1.26274,-1.62767,-0.97360,2.04550,-0.38339
+4.40539,0.96682,-1.26309,-1.62687,-0.97393,2.04524,-0.38315
+4.40609,0.96715,-1.26344,-1.62608,-0.97425,2.04500,-0.38290
+4.40678,0.96747,-1.26379,-1.62531,-0.97457,2.04475,-0.38266
+4.40747,0.96779,-1.26413,-1.62455,-0.97488,2.04451,-0.38243
+4.40817,0.96810,-1.26446,-1.62380,-0.97519,2.04428,-0.38220
+4.40886,0.96840,-1.26479,-1.62307,-0.97549,2.04405,-0.38197
+4.40956,0.96870,-1.26511,-1.62235,-0.97579,2.04382,-0.38175
+4.41025,0.96900,-1.26543,-1.62164,-0.97608,2.04360,-0.38153
+4.41095,0.96929,-1.26574,-1.62094,-0.97637,2.04338,-0.38132
+4.41164,0.96957,-1.26604,-1.62025,-0.97666,2.04316,-0.38111
+4.41234,0.96985,-1.26635,-1.61958,-0.97694,2.04295,-0.38090
+4.41303,0.97012,-1.26664,-1.61892,-0.97721,2.04275,-0.38070
+4.41373,0.97039,-1.26693,-1.61827,-0.97749,2.04254,-0.38050
+4.41442,0.97066,-1.26722,-1.61762,-0.97775,2.04234,-0.38031
+4.41512,0.97092,-1.26750,-1.61699,-0.97802,2.04215,-0.38012
+4.41581,0.97117,-1.26778,-1.61637,-0.97828,2.04195,-0.37993
+4.41650,0.97142,-1.26805,-1.61577,-0.97853,2.04177,-0.37975
+4.41720,0.97166,-1.26832,-1.61517,-0.97878,2.04158,-0.37957
+4.41789,0.97190,-1.26858,-1.61458,-0.97903,2.04140,-0.37939
+4.41859,0.97214,-1.26884,-1.61400,-0.97927,2.04122,-0.37922
+4.41928,0.97237,-1.26909,-1.61343,-0.97951,2.04104,-0.37905
+4.41998,0.97260,-1.26934,-1.61287,-0.97974,2.04087,-0.37888
+4.42067,0.97282,-1.26959,-1.61232,-0.97998,2.04070,-0.37871
+4.42137,0.97304,-1.26983,-1.61178,-0.98020,2.04053,-0.37855
+4.42206,0.97326,-1.27007,-1.61125,-0.98043,2.04037,-0.37840
+4.42276,0.97347,-1.27030,-1.61073,-0.98065,2.04021,-0.37824
+4.42345,0.97367,-1.27053,-1.61021,-0.98087,2.04005,-0.37809
+4.42415,0.97379,-1.27070,-1.60987,-0.98101,2.03996,-0.37800
+4.42484,0.97395,-1.27121,-1.60894,-0.98137,2.03984,-0.37788
+4.42553,0.97411,-1.27171,-1.60803,-0.98172,2.03972,-0.37777
+4.42623,0.97426,-1.27220,-1.60714,-0.98207,2.03960,-0.37766
+4.42692,0.97441,-1.27268,-1.60626,-0.98241,2.03949,-0.37755
+4.42762,0.97456,-1.27316,-1.60539,-0.98275,2.03938,-0.37744
+4.42831,0.97470,-1.27363,-1.60454,-0.98309,2.03927,-0.37733
+4.42901,0.97484,-1.27409,-1.60371,-0.98341,2.03916,-0.37723
+4.42970,0.97498,-1.27454,-1.60289,-0.98374,2.03906,-0.37713
+4.43040,0.97511,-1.27498,-1.60208,-0.98406,2.03895,-0.37703
+4.43109,0.97524,-1.27542,-1.60128,-0.98437,2.03885,-0.37693
+4.43179,0.97537,-1.27585,-1.60050,-0.98468,2.03875,-0.37684
+4.43248,0.97550,-1.27627,-1.59973,-0.98498,2.03866,-0.37674
+4.43318,0.97562,-1.27669,-1.59897,-0.98528,2.03856,-0.37665
+4.43387,0.97574,-1.27710,-1.59823,-0.98558,2.03847,-0.37657
+4.43457,0.97586,-1.27750,-1.59750,-0.98587,2.03838,-0.37648
+4.43526,0.97598,-1.27789,-1.59678,-0.98616,2.03829,-0.37639
+4.43595,0.97609,-1.27828,-1.59607,-0.98644,2.03820,-0.37631
+4.43665,0.97620,-1.27866,-1.59538,-0.98672,2.03812,-0.37623
+4.43734,0.97631,-1.27904,-1.59469,-0.98699,2.03803,-0.37615
+4.43804,0.97642,-1.27940,-1.59402,-0.98726,2.03795,-0.37607
+4.43873,0.97652,-1.27977,-1.59336,-0.98753,2.03787,-0.37600
+4.43943,0.97662,-1.28012,-1.59271,-0.98779,2.03779,-0.37592
+4.44012,0.97672,-1.28047,-1.59207,-0.98805,2.03771,-0.37585
+4.44082,0.97682,-1.28082,-1.59144,-0.98830,2.03764,-0.37578
+4.44151,0.97692,-1.28115,-1.59082,-0.98855,2.03757,-0.37571
+4.44221,0.97701,-1.28149,-1.59021,-0.98880,2.03749,-0.37564
+4.44290,0.97710,-1.28181,-1.58961,-0.98904,2.03742,-0.37557
+4.44360,0.97719,-1.28213,-1.58902,-0.98928,2.03735,-0.37551
+4.44429,0.97728,-1.28245,-1.58844,-0.98952,2.03729,-0.37545
+4.44498,0.97737,-1.28276,-1.58788,-0.98975,2.03722,-0.37538
+4.44568,0.97744,-1.28312,-1.58723,-0.99001,2.03716,-0.37533
+4.44637,0.97743,-1.28399,-1.58584,-0.99053,2.03717,-0.37533
+4.44707,0.97742,-1.28484,-1.58447,-0.99104,2.03717,-0.37534
+4.44776,0.97741,-1.28568,-1.58313,-0.99154,2.03718,-0.37535
+4.44846,0.97740,-1.28650,-1.58181,-0.99204,2.03718,-0.37535
+4.44915,0.97739,-1.28731,-1.58050,-0.99253,2.03719,-0.37536
+4.44985,0.97738,-1.28810,-1.57922,-0.99302,2.03720,-0.37537
+4.45054,0.97736,-1.28888,-1.57796,-0.99349,2.03720,-0.37538
+4.45124,0.97735,-1.28965,-1.57672,-0.99397,2.03721,-0.37539
+4.45193,0.97734,-1.29041,-1.57551,-0.99443,2.03722,-0.37540
+4.45263,0.97732,-1.29115,-1.57431,-0.99489,2.03723,-0.37541
+4.45332,0.97731,-1.29188,-1.57313,-0.99534,2.03724,-0.37542
+4.45402,0.97729,-1.29260,-1.57196,-0.99579,2.03725,-0.37543
+4.45471,0.97728,-1.29330,-1.57082,-0.99623,2.03726,-0.37545
+4.45540,0.97726,-1.29399,-1.56970,-0.99666,2.03727,-0.37546
+4.45610,0.97724,-1.29467,-1.56859,-0.99709,2.03728,-0.37547
+4.45679,0.97723,-1.29534,-1.56750,-0.99751,2.03729,-0.37548
+4.45749,0.97721,-1.29600,-1.56644,-0.99792,2.03730,-0.37550
+4.45818,0.97719,-1.29665,-1.56538,-0.99833,2.03732,-0.37551
+4.45888,0.97717,-1.29729,-1.56435,-0.99874,2.03733,-0.37553
+4.45957,0.97715,-1.29791,-1.56333,-0.99913,2.03734,-0.37554
+4.46027,0.97714,-1.29853,-1.56233,-0.99953,2.03735,-0.37556
+4.46096,0.97712,-1.29913,-1.56134,-0.99991,2.03737,-0.37557
+4.46166,0.97710,-1.29972,-1.56037,-1.00029,2.03738,-0.37559
+4.46235,0.97708,-1.30031,-1.55942,-1.00067,2.03739,-0.37560
+4.46305,0.97706,-1.30088,-1.55848,-1.00104,2.03741,-0.37562
+4.46374,0.97704,-1.30145,-1.55755,-1.00141,2.03742,-0.37563
+4.46443,0.97702,-1.30200,-1.55665,-1.00177,2.03744,-0.37565
+4.46513,0.97700,-1.30255,-1.55575,-1.00212,2.03745,-0.37567
+4.46582,0.97698,-1.30308,-1.55487,-1.00247,2.03747,-0.37568
+4.46652,0.97695,-1.30361,-1.55401,-1.00282,2.03748,-0.37570
+4.46721,0.97693,-1.30413,-1.55316,-1.00316,2.03750,-0.37572
+4.46791,0.97691,-1.30464,-1.55232,-1.00349,2.03751,-0.37574
+4.46860,0.97689,-1.30514,-1.55150,-1.00382,2.03753,-0.37575
+4.46930,0.97687,-1.30563,-1.55069,-1.00415,2.03754,-0.37577
+4.46999,0.97685,-1.30611,-1.54989,-1.00447,2.03756,-0.37579
+4.47069,0.97682,-1.30659,-1.54911,-1.00478,2.03757,-0.37581
+4.47138,0.97680,-1.30706,-1.54834,-1.00510,2.03759,-0.37583
+4.47208,0.97678,-1.30752,-1.54758,-1.00540,2.03761,-0.37584
+4.47277,0.97676,-1.30797,-1.54683,-1.00571,2.03762,-0.37586
+4.47346,0.97674,-1.30841,-1.54610,-1.00600,2.03764,-0.37588
+4.47416,0.97671,-1.30885,-1.54538,-1.00630,2.03766,-0.37590
+4.47485,0.97669,-1.30928,-1.54467,-1.00659,2.03767,-0.37592
+4.47555,0.97667,-1.30970,-1.54397,-1.00687,2.03769,-0.37594
+4.47624,0.97665,-1.31012,-1.54328,-1.00716,2.03770,-0.37596
+4.47694,0.97662,-1.31052,-1.54261,-1.00743,2.03772,-0.37598
+4.47763,0.97660,-1.31092,-1.54194,-1.00771,2.03774,-0.37599
+4.47833,0.97658,-1.31132,-1.54129,-1.00798,2.03775,-0.37601
+4.47902,0.97656,-1.31171,-1.54064,-1.00824,2.03777,-0.37603
+4.47972,0.97653,-1.31209,-1.54001,-1.00850,2.03779,-0.37605
+4.48041,0.97651,-1.31246,-1.53939,-1.00876,2.03781,-0.37607
+4.48111,0.97649,-1.31283,-1.53877,-1.00902,2.03782,-0.37609
+4.48180,0.97646,-1.31319,-1.53817,-1.00927,2.03784,-0.37611
+4.48250,0.97644,-1.31355,-1.53758,-1.00951,2.03786,-0.37613
+4.48319,0.97641,-1.31389,-1.53702,-1.00974,2.03788,-0.37615
+4.48388,0.97628,-1.31450,-1.53609,-1.01010,2.03798,-0.37625
+4.48458,0.97615,-1.31510,-1.53518,-1.01045,2.03807,-0.37634
+4.48527,0.97602,-1.31569,-1.53429,-1.01080,2.03816,-0.37644
+4.48597,0.97590,-1.31627,-1.53341,-1.01114,2.03826,-0.37653
+4.48666,0.97578,-1.31684,-1.53254,-1.01148,2.03835,-0.37662
+4.48736,0.97565,-1.31740,-1.53169,-1.01181,2.03844,-0.37672
+4.48805,0.97553,-1.31795,-1.53085,-1.01214,2.03853,-0.37680
+4.48875,0.97542,-1.31849,-1.53003,-1.01246,2.03862,-0.37689
+4.48944,0.97530,-1.31902,-1.52921,-1.01278,2.03870,-0.37698
+4.49014,0.97518,-1.31954,-1.52842,-1.01310,2.03879,-0.37707
+4.49083,0.97507,-1.32006,-1.52763,-1.01341,2.03888,-0.37715
+4.49153,0.97496,-1.32056,-1.52686,-1.01371,2.03896,-0.37724
+4.49222,0.97485,-1.32106,-1.52609,-1.01401,2.03904,-0.37732
+4.49291,0.97474,-1.32155,-1.52535,-1.01431,2.03912,-0.37740
+4.49361,0.97463,-1.32203,-1.52461,-1.01461,2.03920,-0.37749
+4.49430,0.97452,-1.32250,-1.52388,-1.01490,2.03928,-0.37757
+4.49500,0.97442,-1.32296,-1.52317,-1.01518,2.03936,-0.37765
+4.49569,0.97431,-1.32342,-1.52247,-1.01546,2.03944,-0.37772
+4.49639,0.97421,-1.32387,-1.52178,-1.01574,2.03952,-0.37780
+4.49708,0.97411,-1.32431,-1.52110,-1.01601,2.03959,-0.37788
+4.49778,0.97401,-1.32474,-1.52043,-1.01628,2.03967,-0.37795
+4.49847,0.97391,-1.32516,-1.51977,-1.01655,2.03974,-0.37803
+4.49917,0.97381,-1.32558,-1.51913,-1.01681,2.03981,-0.37810
+4.49986,0.97372,-1.32600,-1.51849,-1.01707,2.03989,-0.37818
+4.50056,0.97362,-1.32640,-1.51786,-1.01732,2.03996,-0.37825
+4.50125,0.97353,-1.32680,-1.51725,-1.01758,2.04003,-0.37832
+4.50194,0.97344,-1.32719,-1.51664,-1.01782,2.04010,-0.37839
+4.50264,0.97335,-1.32757,-1.51605,-1.01807,2.04016,-0.37846
+4.50333,0.97326,-1.32795,-1.51546,-1.01831,2.04023,-0.37853
+4.50403,0.97315,-1.32828,-1.51498,-1.01850,2.04031,-0.37860
+4.50472,0.97265,-1.32932,-1.51362,-1.01897,2.04068,-0.37897
+4.50542,0.97216,-1.33034,-1.51229,-1.01944,2.04105,-0.37933
+4.50611,0.97167,-1.33134,-1.51098,-1.01991,2.04141,-0.37969
+4.50681,0.97120,-1.33232,-1.50969,-1.02037,2.04176,-0.38004
+4.50750,0.97073,-1.33329,-1.50841,-1.02082,2.04211,-0.38038
+4.50820,0.97027,-1.33424,-1.50716,-1.02127,2.04245,-0.38072
+4.50889,0.96981,-1.33518,-1.50593,-1.02171,2.04279,-0.38106
+4.50959,0.96937,-1.33609,-1.50472,-1.02215,2.04312,-0.38138
+4.51028,0.96893,-1.33700,-1.50352,-1.02258,2.04344,-0.38171
+4.51098,0.96850,-1.33789,-1.50235,-1.02301,2.04376,-0.38203
+4.51167,0.96807,-1.33876,-1.50119,-1.02343,2.04408,-0.38234
+4.51236,0.96766,-1.33962,-1.50005,-1.02385,2.04439,-0.38265
+4.51306,0.96725,-1.34046,-1.49893,-1.02426,2.04469,-0.38295
+4.51375,0.96684,-1.34129,-1.49783,-1.02467,2.04499,-0.38325
+4.51445,0.96645,-1.34211,-1.49674,-1.02507,2.04529,-0.38354
+4.51514,0.96606,-1.34291,-1.49567,-1.02546,2.04558,-0.38383
+4.51584,0.96567,-1.34370,-1.49462,-1.02586,2.04586,-0.38412
+4.51653,0.96530,-1.34447,-1.49358,-1.02624,2.04614,-0.38440
+4.51723,0.96493,-1.34523,-1.49256,-1.02663,2.04642,-0.38467
+4.51792,0.96456,-1.34598,-1.49155,-1.02700,2.04669,-0.38495
+4.51862,0.96420,-1.34672,-1.49056,-1.02738,2.04696,-0.38521
+4.51931,0.96385,-1.34744,-1.48959,-1.02774,2.04722,-0.38548
+4.52001,0.96350,-1.34815,-1.48863,-1.02811,2.04748,-0.38574
+4.52070,0.96316,-1.34885,-1.48769,-1.02847,2.04774,-0.38599
+4.52139,0.96282,-1.34954,-1.48676,-1.02882,2.04799,-0.38624
+4.52209,0.96249,-1.35021,-1.48585,-1.02917,2.04824,-0.38649
+4.52278,0.96217,-1.35088,-1.48495,-1.02952,2.04848,-0.38673
+4.52348,0.96185,-1.35153,-1.48406,-1.02986,2.04872,-0.38697
+4.52417,0.96153,-1.35217,-1.48319,-1.03019,2.04895,-0.38721
+4.52487,0.96122,-1.35281,-1.48233,-1.03053,2.04918,-0.38744
+4.52556,0.96092,-1.35343,-1.48149,-1.03085,2.04941,-0.38767
+4.52626,0.96062,-1.35404,-1.48065,-1.03118,2.04964,-0.38790
+4.52695,0.96033,-1.35464,-1.47983,-1.03150,2.04986,-0.38812
+4.52765,0.96004,-1.35523,-1.47903,-1.03181,2.05007,-0.38834
+4.52834,0.95975,-1.35581,-1.47824,-1.03213,2.05029,-0.38855
+4.52904,0.95947,-1.35638,-1.47746,-1.03243,2.05050,-0.38876
+4.52973,0.95919,-1.35694,-1.47669,-1.03274,2.05071,-0.38897
+4.53043,0.95892,-1.35749,-1.47593,-1.03304,2.05091,-0.38918
+4.53112,0.95865,-1.35803,-1.47519,-1.03333,2.05111,-0.38938
+4.53181,0.95839,-1.35856,-1.47445,-1.03362,2.05131,-0.38958
+4.53251,0.95813,-1.35908,-1.47373,-1.03391,2.05150,-0.38977
+4.53320,0.95788,-1.35960,-1.47302,-1.03420,2.05169,-0.38997
+4.53390,0.95763,-1.36011,-1.47232,-1.03448,2.05188,-0.39016
+4.53459,0.95738,-1.36060,-1.47163,-1.03475,2.05207,-0.39034
+4.53529,0.95714,-1.36109,-1.47096,-1.03503,2.05225,-0.39053
+4.53598,0.95690,-1.36157,-1.47029,-1.03530,2.05243,-0.39071
+4.53668,0.95666,-1.36205,-1.46964,-1.03556,2.05260,-0.39089
+4.53737,0.95643,-1.36251,-1.46899,-1.03583,2.05278,-0.39106
+4.53807,0.95621,-1.36297,-1.46835,-1.03609,2.05295,-0.39124
+4.53876,0.95598,-1.36342,-1.46773,-1.03634,2.05312,-0.39141
+4.53946,0.95576,-1.36386,-1.46711,-1.03659,2.05328,-0.39157
+4.54015,0.95554,-1.36429,-1.46651,-1.03684,2.05345,-0.39174
+4.54084,0.95533,-1.36472,-1.46591,-1.03709,2.05361,-0.39190
+4.54154,0.95512,-1.36514,-1.46532,-1.03733,2.05376,-0.39206
+4.54223,0.95492,-1.36555,-1.46474,-1.03757,2.05392,-0.39222
+4.54293,0.95471,-1.36596,-1.46418,-1.03781,2.05407,-0.39238
+4.54362,0.95451,-1.36636,-1.46362,-1.03804,2.05422,-0.39253
+4.54432,0.95431,-1.36675,-1.46307,-1.03827,2.05437,-0.39268
+4.54501,0.95422,-1.36692,-1.46283,-1.03836,2.05444,-0.39275
+4.54571,0.95391,-1.36748,-1.46210,-1.03865,2.05468,-0.39299
+4.54640,0.95360,-1.36802,-1.46139,-1.03892,2.05491,-0.39322
+4.54710,0.95329,-1.36856,-1.46069,-1.03920,2.05514,-0.39345
+4.54779,0.95299,-1.36909,-1.46000,-1.03947,2.05536,-0.39368
+4.54849,0.95269,-1.36960,-1.45931,-1.03974,2.05558,-0.39391
+4.54918,0.95240,-1.37011,-1.45864,-1.04000,2.05580,-0.39413
+4.54987,0.95211,-1.37061,-1.45798,-1.04026,2.05602,-0.39434
+4.55057,0.95183,-1.37110,-1.45733,-1.04052,2.05623,-0.39456
+4.55126,0.95156,-1.37159,-1.45669,-1.04077,2.05643,-0.39477
+4.55196,0.95128,-1.37206,-1.45606,-1.04102,2.05664,-0.39498
+4.55265,0.95101,-1.37253,-1.45544,-1.04127,2.05684,-0.39518
+4.55335,0.95075,-1.37299,-1.45483,-1.04151,2.05704,-0.39538
+4.55404,0.95049,-1.37344,-1.45423,-1.04176,2.05723,-0.39558
+4.55474,0.95024,-1.37389,-1.45364,-1.04199,2.05742,-0.39577
+4.55543,0.94998,-1.37432,-1.45306,-1.04223,2.05761,-0.39596
+4.55613,0.94974,-1.37475,-1.45249,-1.04246,2.05780,-0.39615
+4.55682,0.94949,-1.37517,-1.45192,-1.04269,2.05798,-0.39634
+4.55752,0.94925,-1.37559,-1.45137,-1.04292,2.05816,-0.39652
+4.55821,0.94902,-1.37600,-1.45082,-1.04314,2.05833,-0.39670
+4.55891,0.94879,-1.37640,-1.45028,-1.04336,2.05851,-0.39688
+4.55960,0.94856,-1.37679,-1.44975,-1.04358,2.05868,-0.39705
+4.56029,0.94838,-1.37708,-1.44939,-1.04372,2.05881,-0.39719
+4.56099,0.94770,-1.37798,-1.44838,-1.04406,2.05932,-0.39770
+4.56168,0.94703,-1.37886,-1.44739,-1.04441,2.05981,-0.39820
+4.56238,0.94638,-1.37972,-1.44641,-1.04475,2.06030,-0.39869
+4.56307,0.94573,-1.38058,-1.44544,-1.04508,2.06077,-0.39917
+4.56377,0.94510,-1.38142,-1.44449,-1.04541,2.06124,-0.39965
+4.56446,0.94448,-1.38224,-1.44355,-1.04574,2.06170,-0.40012
+4.56516,0.94386,-1.38305,-1.44263,-1.04607,2.06215,-0.40058
+4.56585,0.94326,-1.38385,-1.44172,-1.04639,2.06260,-0.40103
+4.56655,0.94267,-1.38463,-1.44082,-1.04671,2.06303,-0.40147
+4.56724,0.94209,-1.38540,-1.43994,-1.04702,2.06346,-0.40191
+4.56794,0.94153,-1.38616,-1.43907,-1.04733,2.06388,-0.40234
+4.56863,0.94097,-1.38690,-1.43822,-1.04764,2.06430,-0.40276
+4.56932,0.94042,-1.38763,-1.43737,-1.04795,2.06471,-0.40318
+4.57002,0.93988,-1.38835,-1.43654,-1.04825,2.06511,-0.40359
+4.57071,0.93934,-1.38906,-1.43573,-1.04855,2.06550,-0.40399
+4.57141,0.93882,-1.38975,-1.43492,-1.04884,2.06589,-0.40439
+4.57210,0.93831,-1.39044,-1.43413,-1.04913,2.06627,-0.40478
+4.57280,0.93781,-1.39111,-1.43335,-1.04942,2.06664,-0.40516
+4.57349,0.93731,-1.39177,-1.43258,-1.04971,2.06701,-0.40554
+4.57419,0.93682,-1.39242,-1.43182,-1.04999,2.06737,-0.40591
+4.57488,0.93635,-1.39306,-1.43107,-1.05027,2.06772,-0.40627
+4.57558,0.93588,-1.39369,-1.43034,-1.05054,2.06807,-0.40663
+4.57627,0.93541,-1.39431,-1.42961,-1.05082,2.06842,-0.40698
+4.57697,0.93496,-1.39491,-1.42890,-1.05109,2.06875,-0.40733
+4.57766,0.93451,-1.39551,-1.42820,-1.05135,2.06908,-0.40767
+4.57836,0.93408,-1.39610,-1.42750,-1.05162,2.06941,-0.40800
+4.57905,0.93364,-1.39668,-1.42682,-1.05188,2.06973,-0.40833
+4.57974,0.93322,-1.39724,-1.42615,-1.05213,2.07005,-0.40866
+4.58044,0.93280,-1.39780,-1.42549,-1.05239,2.07035,-0.40898
+4.58113,0.93239,-1.39835,-1.42484,-1.05264,2.07066,-0.40929
+4.58183,0.93199,-1.39889,-1.42420,-1.05289,2.07096,-0.40960
+4.58252,0.93160,-1.39942,-1.42357,-1.05313,2.07125,-0.40990
+4.58322,0.93121,-1.39994,-1.42294,-1.05338,2.07154,-0.41020
+4.58391,0.93083,-1.40045,-1.42233,-1.05362,2.07183,-0.41050
+4.58461,0.93045,-1.40096,-1.42173,-1.05385,2.07211,-0.41079
+4.58530,0.93008,-1.40145,-1.42113,-1.05409,2.07238,-0.41107
+4.58600,0.92972,-1.40194,-1.42055,-1.05432,2.07265,-0.41135
+4.58669,0.92936,-1.40242,-1.41997,-1.05455,2.07292,-0.41163
+4.58739,0.92901,-1.40289,-1.41941,-1.05478,2.07318,-0.41190
+4.58808,0.92867,-1.40335,-1.41885,-1.05500,2.07343,-0.41216
+4.58877,0.92833,-1.40381,-1.41830,-1.05522,2.07369,-0.41242
+4.58947,0.92799,-1.40426,-1.41775,-1.05544,2.07394,-0.41268
+4.59016,0.92767,-1.40470,-1.41722,-1.05565,2.07418,-0.41294
+4.59086,0.92734,-1.40513,-1.41670,-1.05587,2.07442,-0.41318
+4.59155,0.92703,-1.40556,-1.41618,-1.05608,2.07466,-0.41343
+4.59225,0.92672,-1.40598,-1.41567,-1.05628,2.07489,-0.41367
+4.59294,0.92641,-1.40639,-1.41517,-1.05649,2.07512,-0.41391
+4.59364,0.92611,-1.40679,-1.41467,-1.05669,2.07534,-0.41414
+4.59433,0.92581,-1.40719,-1.41419,-1.05689,2.07556,-0.41437
+4.59503,0.92552,-1.40758,-1.41371,-1.05709,2.07578,-0.41460
+4.59572,0.92524,-1.40797,-1.41323,-1.05728,2.07599,-0.41482
+4.59642,0.92502,-1.40825,-1.41289,-1.05742,2.07616,-0.41499
+4.59711,0.92450,-1.40884,-1.41226,-1.05765,2.07654,-0.41539
+4.59780,0.92399,-1.40943,-1.41164,-1.05788,2.07691,-0.41578
+4.59850,0.92349,-1.41000,-1.41103,-1.05810,2.07728,-0.41616
+4.59919,0.92300,-1.41056,-1.41043,-1.05832,2.07764,-0.41654
+4.59989,0.92252,-1.41111,-1.40983,-1.05854,2.07800,-0.41691
+4.60058,0.92205,-1.41165,-1.40925,-1.05876,2.07835,-0.41727
+4.60128,0.92158,-1.41219,-1.40867,-1.05898,2.07869,-0.41763
+4.60197,0.92113,-1.41271,-1.40810,-1.05919,2.07903,-0.41798
+4.60267,0.92068,-1.41323,-1.40754,-1.05940,2.07936,-0.41833
+4.60336,0.92024,-1.41374,-1.40699,-1.05961,2.07969,-0.41867
+4.60406,0.91981,-1.41424,-1.40645,-1.05981,2.08001,-0.41901
+4.60475,0.91938,-1.41473,-1.40592,-1.06002,2.08032,-0.41934
+4.60545,0.91896,-1.41521,-1.40539,-1.06022,2.08063,-0.41966
+4.60614,0.91855,-1.41568,-1.40487,-1.06042,2.08094,-0.41998
+4.60684,0.91815,-1.41615,-1.40436,-1.06061,2.08124,-0.42029
+4.60753,0.91775,-1.41661,-1.40386,-1.06081,2.08153,-0.42060
+4.60822,0.91736,-1.41706,-1.40336,-1.06100,2.08182,-0.42090
+4.60892,0.91697,-1.41750,-1.40287,-1.06119,2.08210,-0.42120
+4.60961,0.91660,-1.41794,-1.40239,-1.06138,2.08238,-0.42150
+4.61031,0.91623,-1.41837,-1.40192,-1.06156,2.08266,-0.42178
+4.61100,0.91586,-1.41879,-1.40145,-1.06175,2.08293,-0.42207
+4.61170,0.91550,-1.41921,-1.40099,-1.06193,2.08319,-0.42235
+4.61239,0.91515,-1.41961,-1.40054,-1.06211,2.08345,-0.42262
+4.61309,0.91481,-1.42001,-1.40009,-1.06229,2.08371,-0.42289
+4.61378,0.91447,-1.42041,-1.39965,-1.06246,2.08396,-0.42316
+4.61448,0.91413,-1.42079,-1.39922,-1.06264,2.08421,-0.42342
+4.61517,0.91380,-1.42118,-1.39879,-1.06281,2.08445,-0.42368
+4.61587,0.91348,-1.42155,-1.39837,-1.06298,2.08469,-0.42393
+4.61656,0.91316,-1.42192,-1.39795,-1.06315,2.08493,-0.42418
+4.61725,0.91302,-1.42208,-1.39778,-1.06322,2.08504,-0.42429
+4.61795,0.91250,-1.42261,-1.39727,-1.06340,2.08542,-0.42469
+4.61864,0.91199,-1.42313,-1.39676,-1.06358,2.08579,-0.42508
+4.61934,0.91150,-1.42363,-1.39626,-1.06376,2.08616,-0.42547
+4.62003,0.91101,-1.42413,-1.39577,-1.06394,2.08652,-0.42585
+4.62073,0.91052,-1.42463,-1.39528,-1.06412,2.08687,-0.42623
+4.62142,0.91005,-1.42511,-1.39480,-1.06429,2.08722,-0.42659
+4.62212,0.90959,-1.42559,-1.39433,-1.06446,2.08756,-0.42695
+4.62281,0.90913,-1.42605,-1.39386,-1.06464,2.08790,-0.42731
+4.62351,0.90868,-1.42651,-1.39341,-1.06481,2.08823,-0.42766
+4.62420,0.90824,-1.42697,-1.39296,-1.06497,2.08855,-0.42800
+4.62490,0.90781,-1.42741,-1.39251,-1.06514,2.08887,-0.42834
+4.62559,0.90738,-1.42785,-1.39207,-1.06530,2.08918,-0.42867
+4.62629,0.90697,-1.42828,-1.39164,-1.06547,2.08949,-0.42900
+4.62698,0.90656,-1.42870,-1.39122,-1.06563,2.08980,-0.42932
+4.62767,0.90615,-1.42912,-1.39080,-1.06579,2.09009,-0.42964
+4.62837,0.90576,-1.42952,-1.39038,-1.06595,2.09039,-0.42995
+4.62906,0.90537,-1.42993,-1.38998,-1.06610,2.09067,-0.43025
+4.62976,0.90498,-1.43032,-1.38958,-1.06626,2.09096,-0.43055
+4.63045,0.90461,-1.43071,-1.38918,-1.06641,2.09123,-0.43085
+4.63115,0.90424,-1.43109,-1.38879,-1.06656,2.09151,-0.43114
+4.63184,0.90387,-1.43147,-1.38841,-1.06671,2.09177,-0.43143
+4.63254,0.90352,-1.43184,-1.38803,-1.06686,2.09204,-0.43171
+4.63323,0.90317,-1.43220,-1.38766,-1.06701,2.09230,-0.43198
+4.63393,0.90282,-1.43256,-1.38729,-1.06715,2.09255,-0.43226
+4.63462,0.90248,-1.43291,-1.38693,-1.06730,2.09280,-0.43252
+4.63532,0.90237,-1.43302,-1.38681,-1.06734,2.09289,-0.43261
+4.63601,0.90192,-1.43347,-1.38639,-1.06750,2.09322,-0.43297
+4.63670,0.90147,-1.43390,-1.38597,-1.06765,2.09354,-0.43331
+4.63740,0.90104,-1.43433,-1.38555,-1.06780,2.09386,-0.43366
+4.63809,0.90061,-1.43476,-1.38515,-1.06795,2.09418,-0.43399
+4.63879,0.90019,-1.43517,-1.38475,-1.06810,2.09449,-0.43432
+4.63948,0.89977,-1.43558,-1.38435,-1.06825,2.09479,-0.43465
+4.64018,0.89937,-1.43599,-1.38396,-1.06840,2.09509,-0.43497
+4.64087,0.89897,-1.43638,-1.38358,-1.06854,2.09539,-0.43528
+4.64157,0.89857,-1.43677,-1.38320,-1.06869,2.09568,-0.43559
+4.64226,0.89819,-1.43715,-1.38282,-1.06883,2.09596,-0.43590
+4.64296,0.89781,-1.43753,-1.38246,-1.06897,2.09624,-0.43620
+4.64365,0.89744,-1.43790,-1.38209,-1.06911,2.09651,-0.43649
+4.64435,0.89707,-1.43826,-1.38174,-1.06925,2.09678,-0.43678
+4.64504,0.89671,-1.43862,-1.38138,-1.06938,2.09705,-0.43706
+4.64573,0.89636,-1.43897,-1.38104,-1.06952,2.09731,-0.43734
+4.64643,0.89601,-1.43932,-1.38070,-1.06965,2.09756,-0.43762
+4.64712,0.89576,-1.43956,-1.38046,-1.06975,2.09775,-0.43781
+4.64782,0.89535,-1.43994,-1.38011,-1.06987,2.09805,-0.43814
+4.64851,0.89494,-1.44032,-1.37977,-1.07000,2.09834,-0.43846
+4.64921,0.89455,-1.44069,-1.37943,-1.07013,2.09864,-0.43877
+4.64990,0.89415,-1.44105,-1.37910,-1.07025,2.09892,-0.43908
+4.65060,0.89377,-1.44141,-1.37877,-1.07037,2.09921,-0.43939
+4.65129,0.89339,-1.44176,-1.37845,-1.07050,2.09948,-0.43969
+4.65199,0.89302,-1.44211,-1.37813,-1.07062,2.09976,-0.43998
+4.65268,0.89266,-1.44244,-1.37781,-1.07074,2.10002,-0.44027
+4.65338,0.89230,-1.44278,-1.37751,-1.07086,2.10029,-0.44055
+4.65407,0.89204,-1.44301,-1.37729,-1.07094,2.10048,-0.44076
+4.65477,0.89159,-1.44338,-1.37700,-1.07104,2.10080,-0.44111
+4.65546,0.89116,-1.44374,-1.37672,-1.07114,2.10113,-0.44146
+4.65615,0.89072,-1.44410,-1.37643,-1.07124,2.10144,-0.44180
+4.65685,0.89030,-1.44445,-1.37615,-1.07134,2.10175,-0.44213
+4.65754,0.88988,-1.44479,-1.37588,-1.07144,2.10206,-0.44246
+4.65824,0.88947,-1.44513,-1.37561,-1.07153,2.10236,-0.44279
+4.65893,0.88907,-1.44546,-1.37534,-1.07163,2.10265,-0.44311
+4.65963,0.88868,-1.44579,-1.37508,-1.07172,2.10294,-0.44342
+4.66032,0.88829,-1.44611,-1.37482,-1.07182,2.10322,-0.44373
+4.66102,0.88791,-1.44642,-1.37456,-1.07191,2.10350,-0.44403
+4.66171,0.88753,-1.44673,-1.37431,-1.07201,2.10378,-0.44433
+4.66241,0.88722,-1.44698,-1.37412,-1.07208,2.10401,-0.44458
+4.66310,0.88670,-1.44731,-1.37397,-1.07211,2.10439,-0.44499
+4.66380,0.88618,-1.44762,-1.37382,-1.07215,2.10476,-0.44540
+4.66449,0.88568,-1.44794,-1.37368,-1.07218,2.10513,-0.44580
+4.66518,0.88518,-1.44825,-1.37353,-1.07222,2.10549,-0.44619
+4.66588,0.88469,-1.44855,-1.37339,-1.07225,2.10585,-0.44658
+4.66657,0.88421,-1.44885,-1.37325,-1.07229,2.10620,-0.44696
+4.66727,0.88374,-1.44914,-1.37311,-1.07232,2.10654,-0.44734
+4.66796,0.88328,-1.44943,-1.37297,-1.07236,2.10688,-0.44770
+4.66866,0.88283,-1.44971,-1.37284,-1.07240,2.10721,-0.44806
+4.66935,0.88238,-1.44999,-1.37270,-1.07244,2.10753,-0.44842
+4.67005,0.88194,-1.45027,-1.37257,-1.07247,2.10785,-0.44877
+4.67074,0.88151,-1.45054,-1.37244,-1.07251,2.10817,-0.44911
+4.67144,0.88109,-1.45080,-1.37231,-1.07255,2.10847,-0.44945
+4.67213,0.88068,-1.45106,-1.37218,-1.07259,2.10878,-0.44978
+4.67283,0.88027,-1.45132,-1.37205,-1.07262,2.10908,-0.45011
+4.67352,0.87987,-1.45157,-1.37193,-1.07266,2.10937,-0.45043
+4.67422,0.87947,-1.45182,-1.37180,-1.07270,2.10966,-0.45074
+4.67491,0.87937,-1.45186,-1.37180,-1.07269,2.10973,-0.45082
+4.67560,0.87874,-1.45208,-1.37194,-1.07260,2.11019,-0.45133
+4.67630,0.87812,-1.45230,-1.37207,-1.07251,2.11064,-0.45182
+4.67699,0.87751,-1.45251,-1.37219,-1.07243,2.11108,-0.45230
+4.67769,0.87691,-1.45271,-1.37232,-1.07234,2.11151,-0.45278
+4.67838,0.87633,-1.45292,-1.37244,-1.07226,2.11194,-0.45325
+4.67908,0.87575,-1.45312,-1.37255,-1.07218,2.11235,-0.45371
+4.67977,0.87518,-1.45332,-1.37267,-1.07210,2.11276,-0.45416
+4.68047,0.87463,-1.45351,-1.37278,-1.07203,2.11317,-0.45461
+4.68116,0.87408,-1.45370,-1.37289,-1.07196,2.11356,-0.45504
+4.68186,0.87354,-1.45389,-1.37300,-1.07188,2.11395,-0.45547
+4.68255,0.87302,-1.45407,-1.37310,-1.07181,2.11433,-0.45589
+4.68325,0.87250,-1.45425,-1.37320,-1.07175,2.11471,-0.45631
+4.68394,0.87199,-1.45443,-1.37330,-1.07168,2.11508,-0.45672
+4.68463,0.87149,-1.45461,-1.37340,-1.07162,2.11544,-0.45712
+4.68533,0.87100,-1.45478,-1.37349,-1.07155,2.11580,-0.45751
+4.68602,0.87052,-1.45495,-1.37359,-1.07149,2.11615,-0.45790
+4.68672,0.87005,-1.45512,-1.37368,-1.07143,2.11649,-0.45828
+4.68741,0.86958,-1.45528,-1.37376,-1.07138,2.11683,-0.45865
+4.68811,0.86913,-1.45544,-1.37385,-1.07132,2.11716,-0.45902
+4.68880,0.86868,-1.45560,-1.37393,-1.07127,2.11748,-0.45938
+4.68950,0.86824,-1.45576,-1.37401,-1.07121,2.11780,-0.45973
+4.69019,0.86780,-1.45591,-1.37409,-1.07116,2.11812,-0.46008
+4.69089,0.86738,-1.45606,-1.37417,-1.07111,2.11842,-0.46043
+4.69158,0.86696,-1.45621,-1.37425,-1.07106,2.11873,-0.46076
+4.69228,0.86655,-1.45636,-1.37432,-1.07102,2.11902,-0.46109
+4.69297,0.86615,-1.45650,-1.37439,-1.07097,2.11932,-0.46142
+4.69366,0.86575,-1.45664,-1.37447,-1.07092,2.11960,-0.46174
+4.69436,0.86563,-1.45667,-1.37451,-1.07090,2.11970,-0.46184
+4.69505,0.86513,-1.45673,-1.37481,-1.07076,2.12006,-0.46224
+4.69575,0.86464,-1.45679,-1.37510,-1.07061,2.12041,-0.46264
+4.69644,0.86416,-1.45685,-1.37538,-1.07047,2.12076,-0.46302
+4.69714,0.86369,-1.45691,-1.37566,-1.07034,2.12110,-0.46341
+4.69783,0.86323,-1.45697,-1.37594,-1.07020,2.12143,-0.46378
+4.69853,0.86277,-1.45702,-1.37621,-1.07007,2.12176,-0.46415
+4.69922,0.86233,-1.45708,-1.37647,-1.06994,2.12209,-0.46451
+4.69992,0.86189,-1.45713,-1.37673,-1.06981,2.12240,-0.46486
+4.70061,0.86146,-1.45719,-1.37699,-1.06969,2.12271,-0.46521
+4.70131,0.86103,-1.45724,-1.37724,-1.06957,2.12302,-0.46556
+4.70200,0.86062,-1.45729,-1.37748,-1.06945,2.12332,-0.46589
+4.70270,0.86021,-1.45734,-1.37772,-1.06933,2.12362,-0.46622
+4.70339,0.85981,-1.45739,-1.37796,-1.06922,2.12391,-0.46655
+4.70408,0.85942,-1.45744,-1.37819,-1.06910,2.12419,-0.46687
+4.70478,0.85903,-1.45749,-1.37842,-1.06899,2.12447,-0.46718
+4.70547,0.85865,-1.45754,-1.37864,-1.06889,2.12475,-0.46749
+4.70617,0.85828,-1.45758,-1.37886,-1.06878,2.12502,-0.46780
+4.70686,0.85808,-1.45759,-1.37900,-1.06871,2.12516,-0.46795
+4.70756,0.85761,-1.45749,-1.37956,-1.06846,2.12550,-0.46834
+4.70825,0.85715,-1.45738,-1.38011,-1.06822,2.12583,-0.46871
+4.70895,0.85670,-1.45728,-1.38065,-1.06797,2.12616,-0.46908
+4.70964,0.85625,-1.45719,-1.38118,-1.06773,2.12648,-0.46944
+4.71034,0.85581,-1.45709,-1.38170,-1.06750,2.12679,-0.46980
+4.71103,0.85539,-1.45699,-1.38222,-1.06727,2.12710,-0.47015
+4.71173,0.85496,-1.45690,-1.38272,-1.06704,2.12740,-0.47049
+4.71242,0.85455,-1.45681,-1.38321,-1.06682,2.12770,-0.47083
+4.71311,0.85414,-1.45672,-1.38370,-1.06660,2.12800,-0.47116
+4.71381,0.85374,-1.45663,-1.38418,-1.06639,2.12828,-0.47149
+4.71450,0.85335,-1.45654,-1.38465,-1.06618,2.12857,-0.47180
+4.71520,0.85297,-1.45646,-1.38511,-1.06597,2.12885,-0.47212
+4.71589,0.85259,-1.45637,-1.38556,-1.06577,2.12912,-0.47243
+4.71659,0.85222,-1.45629,-1.38600,-1.06557,2.12939,-0.47273
+4.71728,0.85185,-1.45621,-1.38644,-1.06537,2.12965,-0.47303
+4.71798,0.85150,-1.45613,-1.38687,-1.06518,2.12991,-0.47332
+4.71867,0.85114,-1.45605,-1.38729,-1.06499,2.13016,-0.47361
+4.71937,0.85080,-1.45597,-1.38771,-1.06480,2.13041,-0.47389
+4.72006,0.85046,-1.45590,-1.38811,-1.06462,2.13066,-0.47417
+4.72076,0.85013,-1.45582,-1.38852,-1.06444,2.13090,-0.47444
+4.72145,0.84980,-1.45575,-1.38891,-1.06426,2.13113,-0.47471
+4.72215,0.84948,-1.45568,-1.38929,-1.06409,2.13136,-0.47497
+4.72284,0.84916,-1.45561,-1.38967,-1.06392,2.13159,-0.47523
+4.72353,0.84900,-1.45554,-1.38993,-1.06381,2.13171,-0.47537
+4.72423,0.84857,-1.45516,-1.39093,-1.06338,2.13202,-0.47572
+4.72492,0.84815,-1.45478,-1.39192,-1.06296,2.13232,-0.47606
+4.72562,0.84774,-1.45441,-1.39289,-1.06254,2.13261,-0.47640
+4.72631,0.84734,-1.45405,-1.39384,-1.06213,2.13290,-0.47673
+4.72701,0.84694,-1.45369,-1.39478,-1.06173,2.13319,-0.47706
+4.72770,0.84655,-1.45334,-1.39570,-1.06133,2.13347,-0.47737
+4.72840,0.84617,-1.45299,-1.39661,-1.06095,2.13374,-0.47769
+4.72909,0.84580,-1.45265,-1.39750,-1.06056,2.13401,-0.47800
+4.72979,0.84543,-1.45232,-1.39838,-1.06019,2.13427,-0.47830
+4.73048,0.84507,-1.45199,-1.39924,-1.05982,2.13453,-0.47859
+4.73118,0.84471,-1.45167,-1.40008,-1.05945,2.13479,-0.47889
+4.73187,0.84436,-1.45135,-1.40091,-1.05909,2.13504,-0.47917
+4.73256,0.84402,-1.45104,-1.40173,-1.05874,2.13528,-0.47945
+4.73326,0.84369,-1.45073,-1.40253,-1.05840,2.13552,-0.47973
+4.73395,0.84336,-1.45043,-1.40332,-1.05805,2.13576,-0.48000
+4.73465,0.84303,-1.45014,-1.40410,-1.05772,2.13599,-0.48027
+4.73534,0.84272,-1.44984,-1.40486,-1.05739,2.13622,-0.48053
+4.73604,0.84240,-1.44956,-1.40561,-1.05706,2.13644,-0.48078
+4.73673,0.84210,-1.44928,-1.40635,-1.05674,2.13666,-0.48103
+4.73743,0.84180,-1.44900,-1.40707,-1.05643,2.13688,-0.48128
+4.73812,0.84150,-1.44873,-1.40779,-1.05612,2.13709,-0.48152
+4.73882,0.84121,-1.44846,-1.40849,-1.05582,2.13730,-0.48176
+4.73951,0.84093,-1.44820,-1.40917,-1.05552,2.13750,-0.48200
+4.74021,0.84065,-1.44794,-1.40985,-1.05522,2.13770,-0.48223
+4.74090,0.84038,-1.44769,-1.41052,-1.05493,2.13790,-0.48245
+4.74159,0.84011,-1.44744,-1.41117,-1.05465,2.13810,-0.48267
+4.74229,0.83984,-1.44720,-1.41181,-1.05437,2.13828,-0.48289
+4.74298,0.83959,-1.44696,-1.41245,-1.05409,2.13847,-0.48310
+4.74368,0.83933,-1.44672,-1.41307,-1.05382,2.13865,-0.48331
+4.74437,0.83908,-1.44649,-1.41368,-1.05355,2.13883,-0.48352
+4.74507,0.83884,-1.44626,-1.41428,-1.05329,2.13901,-0.48372
+4.74576,0.83860,-1.44603,-1.41487,-1.05303,2.13918,-0.48392
+4.74646,0.83836,-1.44581,-1.41545,-1.05278,2.13935,-0.48411
+4.74715,0.83813,-1.44559,-1.41602,-1.05253,2.13952,-0.48430
+4.74785,0.83790,-1.44538,-1.41658,-1.05228,2.13968,-0.48449
+4.74854,0.83768,-1.44517,-1.41713,-1.05204,2.13984,-0.48467
+4.74924,0.83746,-1.44496,-1.41767,-1.05180,2.14000,-0.48485
+4.74993,0.83725,-1.44476,-1.41821,-1.05157,2.14016,-0.48503
+4.75063,0.83703,-1.44456,-1.41873,-1.05134,2.14031,-0.48521
+4.75132,0.83693,-1.44443,-1.41904,-1.05120,2.14038,-0.48529
+4.75201,0.83670,-1.44391,-1.42011,-1.05076,2.14055,-0.48548
+4.75271,0.83648,-1.44340,-1.42116,-1.05032,2.14070,-0.48566
+4.75340,0.83627,-1.44290,-1.42220,-1.04989,2.14086,-0.48584
+4.75410,0.83605,-1.44241,-1.42321,-1.04947,2.14101,-0.48602
+4.75479,0.83585,-1.44192,-1.42421,-1.04905,2.14116,-0.48619
+4.75549,0.83564,-1.44144,-1.42519,-1.04864,2.14131,-0.48636
+4.75618,0.83544,-1.44098,-1.42616,-1.04823,2.14145,-0.48653
+4.75688,0.83525,-1.44052,-1.42710,-1.04784,2.14159,-0.48669
+4.75757,0.83505,-1.44006,-1.42804,-1.04744,2.14173,-0.48685
+4.75827,0.83486,-1.43962,-1.42895,-1.04706,2.14187,-0.48700
+4.75896,0.83468,-1.43918,-1.42986,-1.04668,2.14200,-0.48716
+4.75966,0.83450,-1.43875,-1.43074,-1.04631,2.14213,-0.48731
+4.76035,0.83432,-1.43833,-1.43161,-1.04594,2.14226,-0.48745
+4.76104,0.83415,-1.43792,-1.43247,-1.04558,2.14238,-0.48760
+4.76174,0.83397,-1.43751,-1.43331,-1.04522,2.14251,-0.48774
+4.76243,0.83381,-1.43711,-1.43414,-1.04487,2.14263,-0.48788
+4.76313,0.83364,-1.43671,-1.43495,-1.04452,2.14274,-0.48801
+4.76382,0.83348,-1.43632,-1.43575,-1.04418,2.14286,-0.48815
+4.76452,0.83332,-1.43594,-1.43654,-1.04385,2.14297,-0.48828
+4.76521,0.83317,-1.43557,-1.43732,-1.04352,2.14309,-0.48841
+4.76591,0.83302,-1.43520,-1.43808,-1.04320,2.14319,-0.48853
+4.76660,0.83287,-1.43484,-1.43883,-1.04288,2.14330,-0.48865
+4.76730,0.83272,-1.43448,-1.43956,-1.04256,2.14341,-0.48877
+4.76799,0.83258,-1.43413,-1.44028,-1.04225,2.14351,-0.48889
+4.76869,0.83244,-1.43379,-1.44100,-1.04195,2.14361,-0.48901
+4.76938,0.83230,-1.43345,-1.44169,-1.04165,2.14371,-0.48912
+4.77008,0.83217,-1.43312,-1.44238,-1.04135,2.14381,-0.48923
+4.77077,0.83203,-1.43279,-1.44306,-1.04106,2.14390,-0.48934
+4.77146,0.83190,-1.43247,-1.44372,-1.04078,2.14399,-0.48945
+4.77216,0.83178,-1.43215,-1.44438,-1.04050,2.14409,-0.48955
+4.77285,0.83165,-1.43184,-1.44502,-1.04022,2.14418,-0.48965
+4.77355,0.83153,-1.43154,-1.44565,-1.03995,2.14426,-0.48975
+4.77424,0.83141,-1.43124,-1.44627,-1.03968,2.14435,-0.48985
+4.77494,0.83129,-1.43094,-1.44688,-1.03941,2.14443,-0.48995
+4.77563,0.83118,-1.43065,-1.44748,-1.03915,2.14452,-0.49004
+4.77633,0.83107,-1.43037,-1.44807,-1.03890,2.14460,-0.49013
+4.77702,0.83096,-1.43005,-1.44872,-1.03862,2.14467,-0.49022
+4.77772,0.83091,-1.42936,-1.44991,-1.03814,2.14471,-0.49026
+4.77841,0.83087,-1.42868,-1.45109,-1.03767,2.14474,-0.49030
+4.77911,0.83082,-1.42802,-1.45224,-1.03720,2.14478,-0.49034
+4.77980,0.83078,-1.42737,-1.45338,-1.03674,2.14481,-0.49037
+4.78049,0.83074,-1.42673,-1.45450,-1.03629,2.14484,-0.49041
+4.78119,0.83070,-1.42610,-1.45560,-1.03584,2.14487,-0.49044
+4.78188,0.83066,-1.42548,-1.45668,-1.03540,2.14490,-0.49048
+4.78258,0.83062,-1.42487,-1.45774,-1.03497,2.14493,-0.49051
+4.78327,0.83058,-1.42427,-1.45878,-1.03454,2.14495,-0.49054
+4.78397,0.83055,-1.42368,-1.45981,-1.03412,2.14498,-0.49057
+4.78466,0.83051,-1.42310,-1.46082,-1.03371,2.14501,-0.49060
+4.78536,0.83048,-1.42253,-1.46181,-1.03330,2.14503,-0.49062
+4.78605,0.83045,-1.42197,-1.46279,-1.03290,2.14505,-0.49065
+4.78675,0.83041,-1.42142,-1.46375,-1.03251,2.14508,-0.49067
+4.78744,0.83038,-1.42088,-1.46469,-1.03212,2.14510,-0.49070
+4.78814,0.83036,-1.42035,-1.46562,-1.03174,2.14512,-0.49072
+4.78883,0.83033,-1.41983,-1.46653,-1.03136,2.14514,-0.49074
+4.78952,0.83030,-1.41932,-1.46743,-1.03099,2.14516,-0.49077
+4.79022,0.83027,-1.41881,-1.46831,-1.03063,2.14518,-0.49079
+4.79091,0.83025,-1.41832,-1.46918,-1.03027,2.14520,-0.49081
+4.79161,0.83023,-1.41783,-1.47003,-1.02991,2.14522,-0.49083
+4.79230,0.83020,-1.41735,-1.47087,-1.02956,2.14523,-0.49084
+4.79300,0.83018,-1.41688,-1.47169,-1.02922,2.14525,-0.49086
+4.79369,0.83016,-1.41642,-1.47250,-1.02888,2.14527,-0.49088
+4.79439,0.83014,-1.41596,-1.47330,-1.02855,2.14528,-0.49089
+4.79508,0.83012,-1.41551,-1.47408,-1.02822,2.14530,-0.49091
+4.79578,0.83010,-1.41507,-1.47486,-1.02790,2.14531,-0.49092
+4.79647,0.83008,-1.41464,-1.47561,-1.02758,2.14532,-0.49093
+4.79717,0.83006,-1.41422,-1.47636,-1.02726,2.14534,-0.49095
+4.79786,0.83005,-1.41380,-1.47709,-1.02695,2.14535,-0.49096
+4.79856,0.83003,-1.41339,-1.47781,-1.02665,2.14536,-0.49097
+4.79925,0.83001,-1.41298,-1.47852,-1.02635,2.14537,-0.49098
+4.79994,0.83000,-1.41259,-1.47922,-1.02606,2.14538,-0.49099
+4.80064,0.82999,-1.41220,-1.47990,-1.02577,2.14539,-0.49100
+4.80133,0.82997,-1.41181,-1.48058,-1.02548,2.14540,-0.49101
+4.80203,0.82996,-1.41144,-1.48124,-1.02520,2.14541,-0.49102
+4.80272,0.82995,-1.41106,-1.48189,-1.02492,2.14542,-0.49103
+4.80342,0.82994,-1.41070,-1.48253,-1.02465,2.14543,-0.49103
+4.80411,0.82993,-1.41034,-1.48316,-1.02438,2.14544,-0.49104
+4.80481,0.82991,-1.40999,-1.48378,-1.02411,2.14545,-0.49105
+4.80550,0.82991,-1.40964,-1.48439,-1.02385,2.14545,-0.49105
+4.80620,0.82990,-1.40930,-1.48499,-1.02359,2.14546,-0.49106
+4.80689,0.82990,-1.40918,-1.48519,-1.02351,2.14546,-0.49106
+4.80759,0.82994,-1.40868,-1.48602,-1.02317,2.14543,-0.49102
+4.80828,0.82998,-1.40818,-1.48684,-1.02284,2.14541,-0.49099
+4.80897,0.83001,-1.40769,-1.48764,-1.02251,2.14538,-0.49096
+4.80967,0.83005,-1.40720,-1.48843,-1.02218,2.14535,-0.49092
+4.81036,0.83009,-1.40673,-1.48921,-1.02186,2.14532,-0.49089
+4.81106,0.83013,-1.40626,-1.48997,-1.02155,2.14530,-0.49086
+4.81175,0.83017,-1.40580,-1.49072,-1.02124,2.14527,-0.49082
+4.81245,0.83021,-1.40535,-1.49146,-1.02093,2.14524,-0.49079
+4.81314,0.83024,-1.40491,-1.49218,-1.02063,2.14522,-0.49076
+4.81384,0.83028,-1.40447,-1.49290,-1.02034,2.14519,-0.49072
+4.81453,0.83032,-1.40405,-1.49360,-1.02005,2.14517,-0.49069
+4.81523,0.83035,-1.40362,-1.49429,-1.01976,2.14514,-0.49066
+4.81592,0.83039,-1.40321,-1.49497,-1.01948,2.14511,-0.49063
+4.81662,0.83043,-1.40280,-1.49564,-1.01920,2.14509,-0.49059
+4.81731,0.83046,-1.40240,-1.49629,-1.01892,2.14506,-0.49056
+4.81801,0.83050,-1.40201,-1.49694,-1.01865,2.14504,-0.49053
+4.81870,0.83054,-1.40162,-1.49757,-1.01839,2.14501,-0.49050
+4.81939,0.83057,-1.40124,-1.49820,-1.01812,2.14499,-0.49046
+4.82009,0.83061,-1.40087,-1.49881,-1.01786,2.14496,-0.49043
+4.82078,0.83064,-1.40050,-1.49941,-1.01761,2.14494,-0.49040
+4.82148,0.83068,-1.40014,-1.50001,-1.01736,2.14491,-0.49037
+4.82217,0.83070,-1.40001,-1.50022,-1.01727,2.14490,-0.49035
+4.82287,0.83081,-1.39941,-1.50113,-1.01691,2.14482,-0.49026
+4.82356,0.83092,-1.39882,-1.50203,-1.01655,2.14474,-0.49017
+4.82426,0.83103,-1.39824,-1.50291,-1.01620,2.14466,-0.49008
+4.82495,0.83113,-1.39767,-1.50378,-1.01585,2.14459,-0.48999
+4.82565,0.83124,-1.39711,-1.50464,-1.01551,2.14451,-0.48990
+4.82634,0.83135,-1.39656,-1.50548,-1.01517,2.14444,-0.48981
+4.82704,0.83145,-1.39602,-1.50631,-1.01484,2.14437,-0.48972
+4.82773,0.83155,-1.39549,-1.50712,-1.01451,2.14429,-0.48964
+4.82842,0.83165,-1.39497,-1.50792,-1.01419,2.14422,-0.48955
+4.82912,0.83175,-1.39446,-1.50870,-1.01387,2.14415,-0.48946
+4.82981,0.83185,-1.39395,-1.50948,-1.01356,2.14408,-0.48938
+4.83051,0.83195,-1.39345,-1.51024,-1.01325,2.14401,-0.48930
+4.83120,0.83205,-1.39297,-1.51098,-1.01295,2.14394,-0.48922
+4.83190,0.83214,-1.39249,-1.51172,-1.01265,2.14387,-0.48913
+4.83259,0.83224,-1.39202,-1.51244,-1.01236,2.14381,-0.48905
+4.83329,0.83233,-1.39155,-1.51315,-1.01207,2.14374,-0.48897
+4.83398,0.83242,-1.39110,-1.51385,-1.01178,2.14367,-0.48890
+4.83468,0.83251,-1.39065,-1.51454,-1.01150,2.14361,-0.48882
+4.83537,0.83261,-1.39021,-1.51521,-1.01122,2.14354,-0.48874
+4.83607,0.83269,-1.38978,-1.51588,-1.01095,2.14348,-0.48867
+4.83676,0.83278,-1.38935,-1.51653,-1.01068,2.14342,-0.48859
+4.83745,0.83287,-1.38893,-1.51717,-1.01041,2.14336,-0.48852
+4.83815,0.83296,-1.38852,-1.51781,-1.01015,2.14329,-0.48844
+4.83884,0.83304,-1.38812,-1.51843,-1.00989,2.14323,-0.48837
+4.83954,0.83312,-1.38772,-1.51904,-1.00964,2.14317,-0.48830
+4.84023,0.83321,-1.38733,-1.51964,-1.00939,2.14311,-0.48823
+4.84093,0.83329,-1.38695,-1.52023,-1.00914,2.14306,-0.48815
+4.84162,0.83337,-1.38657,-1.52081,-1.00890,2.14300,-0.48808
+4.84232,0.83344,-1.38633,-1.52117,-1.00875,2.14295,-0.48803
+4.84301,0.83377,-1.38539,-1.52244,-1.00829,2.14272,-0.48776
+4.84371,0.83410,-1.38447,-1.52368,-1.00782,2.14248,-0.48749
+4.84440,0.83442,-1.38356,-1.52490,-1.00737,2.14225,-0.48722
+4.84510,0.83474,-1.38267,-1.52611,-1.00692,2.14203,-0.48696
+4.84579,0.83506,-1.38179,-1.52729,-1.00648,2.14180,-0.48670
+4.84649,0.83537,-1.38093,-1.52845,-1.00604,2.14158,-0.48644
+4.84718,0.83568,-1.38008,-1.52960,-1.00561,2.14137,-0.48619
+4.84787,0.83598,-1.37925,-1.53072,-1.00519,2.14115,-0.48594
+4.84857,0.83628,-1.37843,-1.53182,-1.00478,2.14094,-0.48569
+4.84926,0.83657,-1.37763,-1.53291,-1.00437,2.14073,-0.48544
+4.84996,0.83686,-1.37684,-1.53398,-1.00396,2.14052,-0.48520
+4.85065,0.83715,-1.37606,-1.53503,-1.00356,2.14032,-0.48497
+4.85135,0.83744,-1.37530,-1.53606,-1.00317,2.14012,-0.48473
+4.85204,0.83771,-1.37455,-1.53708,-1.00278,2.13992,-0.48450
+4.85274,0.83799,-1.37381,-1.53808,-1.00240,2.13972,-0.48427
+4.85343,0.83826,-1.37309,-1.53906,-1.00203,2.13953,-0.48405
+4.85413,0.83853,-1.37237,-1.54002,-1.00166,2.13934,-0.48382
+4.85482,0.83880,-1.37167,-1.54097,-1.00129,2.13915,-0.48361
+4.85552,0.83906,-1.37098,-1.54191,-1.00093,2.13896,-0.48339
+4.85621,0.83931,-1.37031,-1.54282,-1.00058,2.13878,-0.48317
+4.85690,0.83957,-1.36964,-1.54373,-1.00023,2.13860,-0.48296
+4.85760,0.83982,-1.36899,-1.54461,-0.99988,2.13842,-0.48276
+4.85829,0.84007,-1.36835,-1.54549,-0.99955,2.13824,-0.48255
+4.85899,0.84031,-1.36772,-1.54635,-0.99921,2.13807,-0.48235
+4.85968,0.84055,-1.36709,-1.54719,-0.99888,2.13789,-0.48215
+4.86038,0.84079,-1.36648,-1.54802,-0.99856,2.13772,-0.48195
+4.86107,0.84102,-1.36588,-1.54883,-0.99824,2.13756,-0.48176
+4.86177,0.84125,-1.36530,-1.54964,-0.99792,2.13739,-0.48156
+4.86246,0.84148,-1.36472,-1.55043,-0.99761,2.13723,-0.48137
+4.86316,0.84170,-1.36415,-1.55120,-0.99731,2.13707,-0.48119
+4.86385,0.84193,-1.36359,-1.55196,-0.99700,2.13691,-0.48100
+4.86455,0.84214,-1.36304,-1.55271,-0.99671,2.13675,-0.48082
+4.86524,0.84236,-1.36250,-1.55345,-0.99641,2.13660,-0.48064
+4.86593,0.84257,-1.36196,-1.55418,-0.99613,2.13644,-0.48046
+4.86663,0.84278,-1.36144,-1.55489,-0.99584,2.13629,-0.48029
+4.86732,0.84299,-1.36093,-1.55559,-0.99556,2.13614,-0.48012
+4.86802,0.84319,-1.36042,-1.55628,-0.99528,2.13600,-0.47995
+4.86871,0.84339,-1.35993,-1.55696,-0.99501,2.13585,-0.47978
+4.86941,0.84359,-1.35944,-1.55763,-0.99474,2.13571,-0.47961
+4.87010,0.84378,-1.35896,-1.55828,-0.99448,2.13557,-0.47945
+4.87080,0.84398,-1.35849,-1.55893,-0.99422,2.13543,-0.47929
+4.87149,0.84417,-1.35803,-1.55956,-0.99396,2.13530,-0.47913
+4.87219,0.84435,-1.35757,-1.56019,-0.99371,2.13516,-0.47897
+4.87288,0.84454,-1.35712,-1.56080,-0.99346,2.13503,-0.47882
+4.87358,0.84472,-1.35668,-1.56140,-0.99321,2.13490,-0.47866
+4.87427,0.84490,-1.35625,-1.56200,-0.99297,2.13477,-0.47851
+4.87497,0.84508,-1.35583,-1.56258,-0.99273,2.13464,-0.47837
+4.87566,0.84525,-1.35541,-1.56316,-0.99250,2.13451,-0.47822
+4.87635,0.84542,-1.35500,-1.56372,-0.99226,2.13439,-0.47808
+4.87705,0.84559,-1.35460,-1.56427,-0.99203,2.13427,-0.47793
+4.87774,0.84576,-1.35420,-1.56482,-0.99181,2.13414,-0.47779
+4.87844,0.84592,-1.35381,-1.56536,-0.99159,2.13403,-0.47765
+4.87913,0.84598,-1.35370,-1.56550,-0.99153,2.13399,-0.47761
+4.87983,0.84632,-1.35302,-1.56634,-0.99122,2.13374,-0.47733
+4.88052,0.84666,-1.35235,-1.56717,-0.99091,2.13350,-0.47705
+4.88122,0.84700,-1.35169,-1.56798,-0.99061,2.13325,-0.47677
+4.88191,0.84733,-1.35105,-1.56878,-0.99031,2.13302,-0.47649
+4.88261,0.84766,-1.35041,-1.56957,-0.99002,2.13278,-0.47623
+4.88330,0.84798,-1.34979,-1.57035,-0.98973,2.13255,-0.47596
+4.88400,0.84830,-1.34917,-1.57111,-0.98944,2.13232,-0.47570
+4.88469,0.84862,-1.34857,-1.57186,-0.98916,2.13210,-0.47544
+4.88538,0.84893,-1.34798,-1.57260,-0.98888,2.13187,-0.47518
+4.88608,0.84923,-1.34739,-1.57332,-0.98861,2.13166,-0.47493
+4.88677,0.84953,-1.34682,-1.57404,-0.98834,2.13144,-0.47469
+4.88747,0.84983,-1.34626,-1.57474,-0.98807,2.13123,-0.47444
+4.88816,0.85012,-1.34570,-1.57543,-0.98781,2.13102,-0.47420
+4.88886,0.85041,-1.34516,-1.57610,-0.98755,2.13081,-0.47396
+4.88955,0.85069,-1.34462,-1.57677,-0.98729,2.13061,-0.47373
+4.89025,0.85097,-1.34410,-1.57743,-0.98704,2.13040,-0.47350
+4.89094,0.85125,-1.34358,-1.57807,-0.98679,2.13021,-0.47327
+4.89164,0.85152,-1.34307,-1.57870,-0.98655,2.13001,-0.47305
+4.89233,0.85179,-1.34257,-1.57933,-0.98631,2.12982,-0.47283
+4.89303,0.85205,-1.34208,-1.57994,-0.98607,2.12963,-0.47261
+4.89372,0.85231,-1.34160,-1.58054,-0.98583,2.12944,-0.47240
+4.89442,0.85257,-1.34113,-1.58114,-0.98560,2.12925,-0.47218
+4.89511,0.85282,-1.34066,-1.58172,-0.98537,2.12907,-0.47198
+4.89580,0.85307,-1.34020,-1.58229,-0.98515,2.12889,-0.47177
+4.89650,0.85331,-1.33975,-1.58286,-0.98493,2.12871,-0.47157
+4.89719,0.85356,-1.33931,-1.58341,-0.98471,2.12854,-0.47137
+4.89789,0.85379,-1.33888,-1.58396,-0.98449,2.12837,-0.47117
+4.89858,0.85403,-1.33845,-1.58450,-0.98428,2.12820,-0.47098
+4.89928,0.85426,-1.33803,-1.58502,-0.98407,2.12803,-0.47079
+4.89997,0.85449,-1.33762,-1.58554,-0.98387,2.12787,-0.47060
+4.90067,0.85471,-1.33721,-1.58605,-0.98366,2.12770,-0.47041
+4.90136,0.85493,-1.33681,-1.58656,-0.98346,2.12754,-0.47023
+4.90206,0.85512,-1.33648,-1.58697,-0.98330,2.12741,-0.47007
+4.90275,0.85546,-1.33591,-1.58764,-0.98305,2.12716,-0.46979
+4.90345,0.85580,-1.33535,-1.58829,-0.98281,2.12692,-0.46952
+4.90414,0.85613,-1.33480,-1.58894,-0.98257,2.12668,-0.46925
+4.90483,0.85646,-1.33426,-1.58957,-0.98234,2.12644,-0.46898
+4.90553,0.85679,-1.33373,-1.59020,-0.98210,2.12621,-0.46871
+4.90622,0.85710,-1.33321,-1.59081,-0.98188,2.12598,-0.46845
+4.90692,0.85742,-1.33270,-1.59142,-0.98165,2.12575,-0.46820
+4.90761,0.85773,-1.33219,-1.59201,-0.98143,2.12553,-0.46794
+4.90831,0.85803,-1.33170,-1.59259,-0.98121,2.12531,-0.46769
+4.90900,0.85833,-1.33121,-1.59317,-0.98099,2.12509,-0.46745
+4.90970,0.85863,-1.33073,-1.59373,-0.98078,2.12488,-0.46721
+4.91039,0.85892,-1.33026,-1.59429,-0.98057,2.12467,-0.46697
+4.91109,0.85921,-1.32980,-1.59483,-0.98036,2.12446,-0.46673
+4.91178,0.85949,-1.32935,-1.59537,-0.98016,2.12425,-0.46650
+4.91248,0.85977,-1.32890,-1.59590,-0.97995,2.12405,-0.46627
+4.91317,0.86004,-1.32846,-1.59642,-0.97976,2.12385,-0.46605
+4.91386,0.86032,-1.32803,-1.59693,-0.97956,2.12366,-0.46583
+4.91456,0.86058,-1.32761,-1.59743,-0.97937,2.12346,-0.46561
+4.91525,0.86084,-1.32719,-1.59793,-0.97918,2.12327,-0.46539
+4.91595,0.86110,-1.32678,-1.59842,-0.97899,2.12308,-0.46518
+4.91664,0.86136,-1.32638,-1.59889,-0.97880,2.12290,-0.46497
+4.91734,0.86161,-1.32598,-1.59936,-0.97862,2.12272,-0.46477
+4.91803,0.86171,-1.32584,-1.59952,-0.97856,2.12265,-0.46469
+4.91873,0.86218,-1.32524,-1.60012,-0.97836,2.12230,-0.46430
+4.91942,0.86265,-1.32465,-1.60072,-0.97816,2.12197,-0.46392
+4.92012,0.86311,-1.32407,-1.60130,-0.97796,2.12163,-0.46355
+4.92081,0.86357,-1.32350,-1.60188,-0.97777,2.12131,-0.46318
+4.92151,0.86402,-1.32294,-1.60244,-0.97757,2.12099,-0.46282
+4.92220,0.86446,-1.32238,-1.60300,-0.97738,2.12067,-0.46246
+4.92290,0.86489,-1.32184,-1.60355,-0.97720,2.12035,-0.46211
+4.92359,0.86532,-1.32131,-1.60409,-0.97701,2.12005,-0.46177
+4.92428,0.86574,-1.32078,-1.60462,-0.97683,2.11974,-0.46143
+4.92498,0.86616,-1.32027,-1.60514,-0.97665,2.11944,-0.46109
+4.92567,0.86657,-1.31976,-1.60565,-0.97647,2.11915,-0.46076
+4.92637,0.86697,-1.31927,-1.60615,-0.97630,2.11885,-0.46043
+4.92706,0.86737,-1.31878,-1.60665,-0.97612,2.11857,-0.46011
+4.92776,0.86776,-1.31830,-1.60714,-0.97595,2.11828,-0.45980
+4.92845,0.86814,-1.31783,-1.60762,-0.97578,2.11801,-0.45949
+4.92915,0.86852,-1.31736,-1.60809,-0.97561,2.11773,-0.45918
+4.92984,0.86890,-1.31691,-1.60855,-0.97545,2.11746,-0.45888
+4.93054,0.86926,-1.31646,-1.60901,-0.97529,2.11719,-0.45858
+4.93123,0.86963,-1.31602,-1.60946,-0.97513,2.11693,-0.45829
+4.93193,0.86998,-1.31559,-1.60990,-0.97497,2.11667,-0.45800
+4.93262,0.87033,-1.31516,-1.61033,-0.97481,2.11642,-0.45772
+4.93331,0.87068,-1.31474,-1.61076,-0.97466,2.11616,-0.45744
+4.93401,0.87102,-1.31433,-1.61118,-0.97451,2.11592,-0.45716
+4.93470,0.87136,-1.31393,-1.61159,-0.97436,2.11567,-0.45689
+4.93540,0.87169,-1.31353,-1.61200,-0.97421,2.11543,-0.45662
+4.93609,0.87201,-1.31314,-1.61240,-0.97406,2.11519,-0.45636
+4.93679,0.87234,-1.31276,-1.61279,-0.97392,2.11496,-0.45610
+4.93748,0.87244,-1.31264,-1.61291,-0.97387,2.11488,-0.45601
+4.93818,0.87289,-1.31218,-1.61332,-0.97374,2.11456,-0.45566
+4.93887,0.87332,-1.31173,-1.61373,-0.97361,2.11425,-0.45531
+4.93957,0.87375,-1.31129,-1.61413,-0.97347,2.11394,-0.45496
+4.94026,0.87417,-1.31085,-1.61452,-0.97334,2.11363,-0.45463
+4.94096,0.87459,-1.31042,-1.61490,-0.97322,2.11333,-0.45429
+4.94165,0.87499,-1.31000,-1.61528,-0.97309,2.11303,-0.45396
+4.94235,0.87540,-1.30959,-1.61565,-0.97296,2.11274,-0.45364
+4.94304,0.87579,-1.30918,-1.61602,-0.97284,2.11245,-0.45332
+4.94373,0.87619,-1.30879,-1.61638,-0.97272,2.11217,-0.45301
+4.94443,0.87657,-1.30839,-1.61673,-0.97260,2.11189,-0.45270
+4.94512,0.87695,-1.30801,-1.61708,-0.97248,2.11161,-0.45240
+4.94582,0.87732,-1.30763,-1.61743,-0.97236,2.11134,-0.45210
+4.94651,0.87769,-1.30726,-1.61776,-0.97224,2.11108,-0.45180
+4.94721,0.87805,-1.30689,-1.61809,-0.97213,2.11081,-0.45151
+4.94790,0.87817,-1.30678,-1.61819,-0.97209,2.11072,-0.45141
+4.94860,0.87868,-1.30636,-1.61847,-0.97202,2.11035,-0.45101
+4.94929,0.87918,-1.30595,-1.61875,-0.97194,2.10999,-0.45061
+4.94999,0.87968,-1.30555,-1.61903,-0.97186,2.10963,-0.45021
+4.95068,0.88017,-1.30516,-1.61930,-0.97178,2.10928,-0.44983
+4.95138,0.88064,-1.30477,-1.61957,-0.97171,2.10893,-0.44944
+4.95207,0.88112,-1.30439,-1.61983,-0.97163,2.10859,-0.44907
+4.95276,0.88158,-1.30402,-1.62009,-0.97156,2.10825,-0.44870
+4.95346,0.88204,-1.30365,-1.62035,-0.97148,2.10792,-0.44834
+4.95415,0.88249,-1.30329,-1.62060,-0.97141,2.10759,-0.44798
+4.95485,0.88293,-1.30294,-1.62084,-0.97134,2.10727,-0.44762
+4.95554,0.88336,-1.30259,-1.62109,-0.97127,2.10695,-0.44728
+4.95624,0.88379,-1.30225,-1.62133,-0.97119,2.10664,-0.44694
+4.95693,0.88422,-1.30191,-1.62156,-0.97112,2.10633,-0.44660
+4.95763,0.88463,-1.30158,-1.62179,-0.97105,2.10603,-0.44627
+4.95832,0.88504,-1.30126,-1.62202,-0.97098,2.10573,-0.44594
+4.95902,0.88510,-1.30123,-1.62202,-0.97099,2.10568,-0.44589
+4.95971,0.88573,-1.30092,-1.62204,-0.97102,2.10523,-0.44540
+4.96041,0.88635,-1.30062,-1.62206,-0.97105,2.10478,-0.44491
+4.96110,0.88695,-1.30032,-1.62208,-0.97109,2.10434,-0.44443
+4.96179,0.88755,-1.30003,-1.62211,-0.97112,2.10391,-0.44396
+4.96249,0.88814,-1.29974,-1.62213,-0.97115,2.10348,-0.44350
+4.96318,0.88872,-1.29946,-1.62215,-0.97118,2.10306,-0.44304
+4.96388,0.88928,-1.29919,-1.62217,-0.97120,2.10265,-0.44259
+4.96457,0.88984,-1.29892,-1.62219,-0.97123,2.10224,-0.44215
+4.96527,0.89039,-1.29865,-1.62221,-0.97126,2.10184,-0.44171
+4.96596,0.89094,-1.29839,-1.62223,-0.97128,2.10145,-0.44129
+4.96666,0.89147,-1.29813,-1.62225,-0.97130,2.10106,-0.44087
+4.96735,0.89199,-1.29788,-1.62227,-0.97133,2.10068,-0.44045
+4.96805,0.89251,-1.29763,-1.62229,-0.97135,2.10030,-0.44005
+4.96874,0.89302,-1.29739,-1.62231,-0.97137,2.09993,-0.43965
+4.96944,0.89352,-1.29715,-1.62233,-0.97139,2.09957,-0.43925
+4.97013,0.89401,-1.29691,-1.62235,-0.97141,2.09921,-0.43886
+4.97083,0.89449,-1.29668,-1.62237,-0.97143,2.09885,-0.43848
+4.97152,0.89497,-1.29646,-1.62239,-0.97144,2.09851,-0.43811
+4.97221,0.89543,-1.29624,-1.62241,-0.97146,2.09816,-0.43774
+4.97291,0.89590,-1.29602,-1.62242,-0.97148,2.09783,-0.43738
+4.97360,0.89635,-1.29580,-1.62244,-0.97149,2.09749,-0.43702
+4.97430,0.89651,-1.29576,-1.62239,-0.97152,2.09738,-0.43689
+4.97499,0.89722,-1.29580,-1.62180,-0.97179,2.09686,-0.43634
+4.97569,0.89792,-1.29584,-1.62122,-0.97206,2.09635,-0.43579
+4.97638,0.89861,-1.29587,-1.62064,-0.97232,2.09585,-0.43525
+4.97708,0.89929,-1.29591,-1.62008,-0.97258,2.09535,-0.43472
+4.97777,0.89995,-1.29595,-1.61953,-0.97283,2.09487,-0.43420
+4.97847,0.90061,-1.29598,-1.61899,-0.97307,2.09439,-0.43369
+4.97916,0.90125,-1.29602,-1.61845,-0.97332,2.09392,-0.43319
+4.97986,0.90188,-1.29606,-1.61793,-0.97356,2.09346,-0.43269
+4.98055,0.90250,-1.29609,-1.61742,-0.97379,2.09301,-0.43221
+4.98124,0.90311,-1.29613,-1.61691,-0.97402,2.09256,-0.43173
+4.98194,0.90371,-1.29616,-1.61641,-0.97425,2.09213,-0.43127
+4.98263,0.90430,-1.29620,-1.61592,-0.97447,2.09169,-0.43081
+4.98333,0.90488,-1.29623,-1.61544,-0.97469,2.09127,-0.43035
+4.98402,0.90545,-1.29627,-1.61497,-0.97490,2.09085,-0.42991
+4.98472,0.90601,-1.29630,-1.61451,-0.97511,2.09044,-0.42947
+4.98541,0.90656,-1.29634,-1.61405,-0.97532,2.09004,-0.42905
+4.98611,0.90710,-1.29637,-1.61360,-0.97553,2.08964,-0.42863
+4.98680,0.90763,-1.29641,-1.61316,-0.97573,2.08925,-0.42821
+4.98750,0.90815,-1.29644,-1.61273,-0.97592,2.08887,-0.42781
+4.98819,0.90867,-1.29647,-1.61230,-0.97612,2.08849,-0.42741
+4.98889,0.90917,-1.29651,-1.61188,-0.97630,2.08812,-0.42701
+4.98958,0.90967,-1.29654,-1.61147,-0.97649,2.08776,-0.42663
+4.99028,0.91016,-1.29657,-1.61107,-0.97667,2.08740,-0.42625
+4.99097,0.91063,-1.29660,-1.61067,-0.97685,2.08704,-0.42588
+4.99166,0.91111,-1.29664,-1.61028,-0.97703,2.08670,-0.42551
+4.99236,0.91157,-1.29667,-1.60990,-0.97720,2.08636,-0.42515
+4.99305,0.91202,-1.29670,-1.60952,-0.97737,2.08602,-0.42480
+4.99375,0.91247,-1.29673,-1.60915,-0.97754,2.08569,-0.42445
+4.99444,0.91291,-1.29676,-1.60879,-0.97771,2.08537,-0.42411
+4.99514,0.91334,-1.29679,-1.60843,-0.97787,2.08505,-0.42378
+4.99583,0.91377,-1.29682,-1.60808,-0.97803,2.08473,-0.42345
+4.99653,0.91419,-1.29685,-1.60774,-0.97818,2.08442,-0.42312
+4.99722,0.91460,-1.29688,-1.60740,-0.97833,2.08412,-0.42281
+4.99792,0.91500,-1.29691,-1.60707,-0.97848,2.08382,-0.42249
+4.99861,0.91540,-1.29694,-1.60674,-0.97863,2.08353,-0.42219
+4.99931,0.91579,-1.29696,-1.60642,-0.97878,2.08324,-0.42189
+5.00000,0.91617,-1.29699,-1.60610,-0.97892,2.08296,-0.42159
diff --git a/python/examples/path_in_pixels.csv b/python/examples/path_in_pixels.csv
index a55a6f859a818118e7c8a1697bf7d88b76ae490e..fec04227694d6d7d224516efec65b4917df923f1 100644
--- a/python/examples/path_in_pixels.csv
+++ b/python/examples/path_in_pixels.csv
@@ -1,482 +1,211 @@
-0.04611,0.63318
-0.04907,0.63451
-0.05352,0.63583
-0.05796,0.63849
-0.06241,0.64114
-0.06537,0.64247
-0.06833,0.64512
-0.06981,0.64512
-0.07278,0.64777
-0.07722,0.65175
-0.08166,0.65573
-0.08463,0.65838
-0.08759,0.66236
-0.09055,0.66502
-0.09352,0.67032
-0.09796,0.67430
-0.10240,0.67961
-0.10685,0.68492
-0.11277,0.69288
-0.11722,0.69685
-0.12018,0.70349
-0.12314,0.70879
-0.12611,0.71410
-0.12759,0.71808
-0.12907,0.72339
-0.13203,0.73002
-0.13351,0.73400
-0.13500,0.74063
-0.13648,0.74859
-0.14092,0.76053
-0.14240,0.76849
-0.14388,0.77777
-0.14536,0.78839
-0.14536,0.79237
-0.14536,0.79767
-0.14536,0.80431
-0.14536,0.81094
-0.14536,0.81757
-0.14536,0.82288
-0.14536,0.82951
-0.14536,0.83614
-0.14388,0.84012
-0.14240,0.84543
-0.14240,0.84808
-0.14092,0.85206
-0.13944,0.85339
-0.13944,0.85472
-0.13944,0.85472
-0.13796,0.85604
-0.13648,0.85737
-0.13500,0.85869
-0.13203,0.86002
-0.13203,0.86002
-0.12907,0.85737
-0.12611,0.85074
-0.12463,0.84410
-0.12314,0.83880
-0.12166,0.83216
-0.12166,0.82818
-0.12166,0.82155
-0.12166,0.81492
-0.12166,0.80696
-0.12166,0.78839
-0.12166,0.78175
-0.12166,0.77380
-0.12166,0.76849
-0.12166,0.76451
-0.12166,0.75788
-0.12166,0.75257
-0.12166,0.74063
-0.12166,0.72737
-0.12166,0.71675
-0.12166,0.69951
-0.12166,0.69420
-0.12166,0.68757
-0.12166,0.67961
-0.12314,0.66634
-0.12314,0.65573
-0.12314,0.64247
-0.12314,0.63318
-0.12314,0.62655
-0.12314,0.61991
-0.12314,0.61461
-0.12314,0.60532
-0.12314,0.59736
-0.12314,0.58675
-0.12463,0.57746
-0.12463,0.56287
-0.12463,0.55757
-0.12463,0.55093
-0.12463,0.54430
-0.12463,0.53767
-0.12463,0.52971
-0.12463,0.52175
-0.12611,0.51114
-0.12611,0.50185
-0.12611,0.49522
-0.12611,0.48858
-0.12611,0.47797
-0.12463,0.47134
-0.12314,0.46073
-0.12018,0.44746
-0.11870,0.43950
-0.11574,0.43420
-0.11426,0.43154
-0.11426,0.42889
-0.11277,0.42358
-0.11129,0.42093
-0.10685,0.40766
-0.10389,0.40369
-0.10240,0.39705
-0.09796,0.38909
-0.09500,0.38113
-0.08907,0.37450
-0.08611,0.36787
-0.08315,0.36389
-0.08166,0.36124
-0.08018,0.35991
-0.07870,0.35858
-0.07870,0.35726
-0.07722,0.35726
-0.07722,0.35593
-0.07574,0.35593
-0.07426,0.35593
-0.07278,0.35593
-0.07278,0.35858
-0.07278,0.36389
-0.07278,0.36654
-0.07278,0.37317
-0.07129,0.38246
-0.07426,0.39042
-0.07870,0.40369
-0.08907,0.43552
-0.09203,0.44614
-0.09352,0.45409
-0.09500,0.46338
-0.09796,0.47665
-0.09944,0.49124
-0.09944,0.50052
-0.09944,0.50848
-0.09944,0.51512
-0.09944,0.52042
-0.09796,0.52440
-0.09648,0.52971
-0.09500,0.53634
-0.09203,0.54165
-0.09055,0.54695
-0.08759,0.55226
-0.08463,0.55624
-0.07870,0.56155
-0.07574,0.56420
-0.07278,0.56553
-0.06981,0.56685
-0.06833,0.56818
-0.06685,0.56818
-0.06537,0.56818
-0.06389,0.56818
-0.06389,0.56951
-0.07278,0.57746
-0.08018,0.58144
-0.08907,0.58542
-0.11277,0.58940
-0.12463,0.58940
-0.14240,0.58675
-0.14833,0.58675
-0.15573,0.58675
-0.16462,0.58675
-0.17647,0.58940
-0.18684,0.59073
-0.20166,0.59471
-0.21795,0.59869
-0.22388,0.60134
-0.23129,0.60400
-0.23721,0.60665
-0.24018,0.60798
-0.24166,0.60798
-0.24314,0.60798
-0.24462,0.60798
-0.24758,0.61063
-0.25055,0.61726
-0.25351,0.62389
-0.25795,0.63451
-0.26092,0.64379
-0.26240,0.65043
-0.26684,0.66369
-0.26980,0.67298
-0.27277,0.68624
-0.27425,0.69951
-0.27573,0.70747
-0.27869,0.71808
-0.27869,0.72206
-0.27869,0.72869
-0.28166,0.73532
-0.28462,0.74461
-0.28758,0.75655
-0.29054,0.76584
-0.29351,0.78043
-0.29499,0.78573
-0.29647,0.79104
-0.29795,0.79502
-0.29943,0.80033
-0.30091,0.80829
-0.30240,0.81359
-0.30388,0.82022
-0.30536,0.82420
-0.30536,0.82818
-0.30536,0.82951
-0.30536,0.83084
-0.30536,0.83216
-0.30388,0.83084
-0.29943,0.82553
-0.29351,0.81227
-0.28462,0.79635
-0.27721,0.78175
-0.27425,0.77247
-0.27129,0.76584
-0.26832,0.75788
-0.26536,0.74992
-0.26240,0.73930
-0.25647,0.71808
-0.25351,0.70216
-0.25203,0.69553
-0.24906,0.69022
-0.24758,0.67961
-0.24462,0.66634
-0.24462,0.65308
-0.24462,0.63849
-0.24462,0.63053
-0.24462,0.62124
-0.24758,0.60134
-0.25055,0.58940
-0.25351,0.57614
-0.25499,0.56553
-0.25647,0.55757
-0.25795,0.55093
-0.25943,0.54165
-0.26388,0.52838
-0.26536,0.51777
-0.26832,0.50716
-0.26980,0.49654
-0.26980,0.49124
-0.27129,0.48461
-0.27277,0.47797
-0.27425,0.47134
-0.27573,0.46736
-0.27573,0.46471
-0.27721,0.46073
-0.28017,0.45807
-0.28610,0.45011
-0.29054,0.44614
-0.29351,0.44348
-0.29795,0.44083
-0.30240,0.43818
-0.30388,0.43685
-0.30536,0.43685
-0.30684,0.43552
-0.30832,0.43552
-0.30832,0.43552
-0.30980,0.43552
-0.32165,0.43552
-0.33351,0.43420
-0.34536,0.43552
-0.35128,0.43552
-0.35573,0.43685
-0.35721,0.43685
-0.35869,0.43685
-0.36017,0.43685
-0.36165,0.43685
-0.36165,0.43685
-0.36313,0.43685
-0.36462,0.43818
-0.36610,0.43818
-0.38091,0.45277
-0.38832,0.45940
-0.40017,0.47001
-0.40758,0.47399
-0.41647,0.48063
-0.41943,0.48328
-0.42091,0.48461
-0.42387,0.48726
-0.42832,0.49124
-0.42980,0.49389
-0.43721,0.50185
-0.44758,0.51379
-0.45498,0.52440
-0.46387,0.53369
-0.47276,0.54297
-0.48017,0.54961
-0.48757,0.55624
-0.49202,0.56022
-0.49943,0.56951
-0.50535,0.57746
-0.51128,0.58940
-0.51424,0.59869
-0.52017,0.61063
-0.52313,0.61593
-0.52609,0.62257
-0.53202,0.63053
-0.54239,0.64645
-0.54683,0.65440
-0.55128,0.66369
-0.55424,0.67032
-0.55424,0.67961
-0.55424,0.68226
-0.55424,0.68757
-0.55128,0.69420
-0.54831,0.69951
-0.54239,0.70481
-0.53794,0.70879
-0.52609,0.71808
-0.51424,0.72604
-0.50239,0.73135
-0.49054,0.73400
-0.48165,0.73532
-0.47572,0.73532
-0.47128,0.73532
-0.46683,0.73532
-0.46387,0.73532
-0.46091,0.73532
-0.44758,0.72869
-0.44461,0.72869
-0.44165,0.72737
-0.43424,0.72339
-0.43128,0.72073
-0.42535,0.71808
-0.41795,0.71145
-0.40906,0.70216
-0.40165,0.69288
-0.39573,0.68492
-0.39128,0.67828
-0.38980,0.67430
-0.38684,0.66900
-0.38536,0.66104
-0.38536,0.65573
-0.38536,0.64910
-0.38536,0.63053
-0.38536,0.62124
-0.38536,0.61195
-0.38536,0.60267
-0.38684,0.59736
-0.38980,0.58675
-0.38980,0.58542
-0.38980,0.58277
-0.38980,0.58144
-0.39128,0.57879
-0.39276,0.57481
-0.40017,0.56685
-0.40461,0.56022
-0.40906,0.55359
-0.41202,0.54828
-0.41647,0.54297
-0.42684,0.53236
-0.43721,0.52308
-0.44758,0.51644
-0.45498,0.50981
-0.46239,0.50583
-0.46683,0.50185
-0.47276,0.49787
-0.47869,0.49389
-0.48313,0.48991
-0.49794,0.48328
-0.50535,0.48063
-0.50980,0.47797
-0.51424,0.47665
-0.52017,0.47532
-0.52313,0.47399
-0.52461,0.47399
-0.52609,0.47399
-0.52757,0.47399
-0.53202,0.47399
-0.53498,0.47399
-0.54683,0.47532
-0.55868,0.47797
-0.58090,0.48726
-0.59868,0.49389
-0.60905,0.49654
-0.61498,0.49920
-0.61646,0.50052
-0.62238,0.50318
-0.62683,0.50848
-0.63275,0.51246
-0.64016,0.52042
-0.64757,0.52706
-0.65349,0.53236
-0.66090,0.54032
-0.66979,0.55226
-0.67572,0.56155
-0.68016,0.57216
-0.68609,0.58012
-0.69053,0.58675
-0.69497,0.59604
-0.69942,0.60400
-0.70238,0.61593
-0.70534,0.63053
-0.70683,0.64247
-0.70683,0.64910
-0.70979,0.65838
-0.71127,0.66767
-0.71275,0.67696
-0.71423,0.68624
-0.71423,0.69288
-0.71423,0.69951
-0.71423,0.70349
-0.71423,0.70879
-0.71423,0.71277
-0.71423,0.71410
-0.71423,0.71675
-0.71423,0.71808
-0.71127,0.71410
-0.70831,0.69420
-0.70831,0.68492
-0.70831,0.67430
-0.70831,0.65573
-0.70831,0.63716
-0.70831,0.62787
-0.70979,0.62124
-0.71127,0.60665
-0.71423,0.59073
-0.72016,0.56818
-0.72460,0.55491
-0.73053,0.53634
-0.73349,0.52042
-0.73349,0.50981
-0.73349,0.50185
-0.73349,0.49522
-0.73349,0.48461
-0.73053,0.46603
-0.72905,0.45011
-0.72608,0.44216
-0.72460,0.43552
-0.72164,0.42889
-0.71868,0.42093
-0.71423,0.41032
-0.70979,0.39838
-0.70683,0.38777
-0.70534,0.38113
-0.69794,0.36919
-0.69053,0.36256
-0.68164,0.35726
-0.66238,0.34930
-0.65942,0.34797
-0.65498,0.34664
-0.64757,0.34266
-0.64164,0.34134
-0.62979,0.33736
-0.61201,0.33470
-0.60016,0.33205
-0.58979,0.33072
-0.58239,0.33072
-0.57646,0.32940
-0.56461,0.32940
-0.55276,0.32940
-0.54387,0.32940
-0.53054,0.32940
-0.51720,0.33205
-0.51276,0.33338
-0.50980,0.33338
-0.50831,0.33338
-0.50683,0.33338
-0.50535,0.33470
-0.50387,0.33470
-0.49794,0.34001
-0.49498,0.34664
-0.49202,0.35328
-0.49202,0.35858
-0.49202,0.36654
-0.49202,0.37185
-0.49202,0.37848
-0.49350,0.38379
-0.50831,0.39971
-0.51720,0.40501
-0.52017,0.40766
-0.52313,0.40899
-0.52313,0.40899
-0.52461,0.40899
-0.52757,0.40899
-0.52905,0.40899
-0.53054,0.40899
-0.53054,0.40899
-0.53202,0.40899
-0.53350,0.40899
-0.53350,0.40899
+0.22388,0.54695
+0.23129,0.57481
+0.24166,0.58940
+0.26832,0.61195
+0.28314,0.61991
+0.29943,0.62787
+0.34091,0.64247
+0.36165,0.64645
+0.38239,0.65175
+0.41054,0.65440
+0.42832,0.65440
+0.44017,0.65440
+0.46239,0.65308
+0.49646,0.64777
+0.50535,0.64379
+0.51720,0.63716
+0.53054,0.62257
+0.54535,0.59206
+0.54831,0.57879
+0.54979,0.53767
+0.54387,0.49787
+0.53202,0.43685
+0.52461,0.42491
+0.50980,0.35991
+0.50387,0.34266
+0.49646,0.31879
+0.48461,0.28960
+0.45795,0.26174
+0.43869,0.24582
+0.37499,0.20868
+0.35425,0.20337
+0.31277,0.20337
+0.27277,0.21133
+0.25499,0.22062
+0.21203,0.24317
+0.19870,0.25511
+0.16314,0.29889
+0.15129,0.32144
+0.13796,0.36919
+0.13796,0.39042
+0.14388,0.42491
+0.15129,0.44614
+0.16166,0.46471
+0.18833,0.49654
+0.26388,0.55359
+0.29054,0.57083
+0.37795,0.60134
+0.44313,0.62124
+0.47572,0.62920
+0.53202,0.63716
+0.55128,0.63849
+0.57202,0.63849
+0.59424,0.63451
+0.60461,0.63185
+0.61498,0.62522
+0.62387,0.61859
+0.63572,0.60400
+0.66090,0.56685
+0.66683,0.54695
+0.67127,0.52042
+0.66979,0.45542
+0.66386,0.44216
+0.64164,0.35991
+0.63127,0.33603
+0.60609,0.28960
+0.55720,0.24980
+0.49943,0.21664
+0.46239,0.19940
+0.44165,0.19276
+0.37647,0.19011
+0.35721,0.19409
+0.30091,0.22062
+0.28906,0.22991
+0.25055,0.26572
+0.21055,0.34399
+0.19573,0.38777
+0.19277,0.43420
+0.20166,0.46869
+0.21203,0.49389
+0.23129,0.52042
+0.25351,0.54961
+0.28462,0.57746
+0.35869,0.61328
+0.40461,0.63053
+0.44461,0.64512
+0.50535,0.66104
+0.53350,0.66502
+0.57498,0.66767
+0.61498,0.66369
+0.63424,0.65440
+0.64461,0.64777
+0.65498,0.63716
+0.66683,0.62655
+0.68164,0.58542
+0.68312,0.56553
+0.67868,0.53103
+0.66238,0.47001
+0.65053,0.44746
+0.61646,0.37848
+0.60757,0.36389
+0.57350,0.30685
+0.56461,0.29889
+0.53794,0.27766
+0.49202,0.24715
+0.42239,0.22593
+0.40461,0.22593
+0.34536,0.23654
+0.33351,0.24450
+0.29203,0.27634
+0.25055,0.33338
+0.23277,0.38379
+0.22684,0.46073
+0.22684,0.50716
+0.23277,0.55093
+0.24314,0.57879
+0.27721,0.62257
+0.30832,0.65043
+0.38684,0.69420
+0.46683,0.71941
+0.48165,0.72073
+0.53646,0.72737
+0.55276,0.72737
+0.58831,0.72737
+0.61201,0.72604
+0.63127,0.72206
+0.63868,0.71941
+0.64905,0.71012
+0.66090,0.69022
+0.66535,0.67430
+0.66386,0.60798
+0.65349,0.57879
+0.62979,0.50848
+0.61201,0.48063
+0.57794,0.43552
+0.56905,0.42756
+0.54831,0.41032
+0.50091,0.38379
+0.48757,0.37715
+0.44165,0.36654
+0.42239,0.37052
+0.40461,0.37848
+0.38387,0.39838
+0.33499,0.47665
+0.32017,0.51910
+0.31573,0.57348
+0.31869,0.60002
+0.33202,0.65308
+0.33795,0.65971
+0.34980,0.67430
+0.35869,0.68359
+0.40165,0.71675
+0.42684,0.72737
+0.45498,0.73798
+0.52313,0.75522
+0.53350,0.75522
+0.59127,0.75920
+0.60016,0.75788
+0.61794,0.75655
+0.64016,0.75257
+0.64609,0.74992
+0.65349,0.74461
+0.66238,0.73532
+0.67275,0.71675
+0.67720,0.70349
+0.68016,0.67032
+0.67720,0.63716
+0.67127,0.62124
+0.64757,0.54563
+0.63720,0.52838
+0.60609,0.46471
+0.59868,0.45144
+0.58979,0.44083
+0.53498,0.40369
+0.51276,0.39042
+0.45943,0.36787
+0.37202,0.36521
+0.35276,0.36787
+0.33351,0.37848
+0.30832,0.39971
+0.27721,0.45011
+0.27573,0.49787
+0.28906,0.55491
+0.30536,0.58144
+0.33795,0.63318
+0.35721,0.65175
+0.41498,0.68624
+0.43128,0.69288
+0.48609,0.70481
+0.51276,0.70481
+0.53498,0.70216
+0.54831,0.70083
+0.55572,0.69818
+0.56461,0.69288
+0.57646,0.67961
+0.59127,0.65308
+0.59424,0.63451
+0.59276,0.60930
+0.58239,0.56685
+0.56461,0.53369
+0.53646,0.50052
+0.52313,0.48858
+0.50387,0.47267
+0.45498,0.44348
+0.42684,0.43287
+0.40906,0.42756
+0.38387,0.42889
+0.37202,0.43287
+0.36017,0.44216
+0.34832,0.46471
+0.34684,0.51512
+0.34684,0.51512
diff --git a/python/joint_trajectory.csv b/python/joint_trajectory.csv
new file mode 100644
index 0000000000000000000000000000000000000000..fd2eaa62adb99e423920b54030ba979ded28d6ee
--- /dev/null
+++ b/python/joint_trajectory.csv
@@ -0,0 +1,608 @@
+0.00000,0.97256,-1.20668,-1.71645,-0.93893,2.04046,-0.37847
+0.00824,0.97202,-1.20742,-1.71570,-0.93910,2.04086,-0.37886
+0.01647,0.97150,-1.20815,-1.71497,-0.93927,2.04125,-0.37925
+0.02471,0.97098,-1.20887,-1.71424,-0.93944,2.04163,-0.37963
+0.03295,0.97047,-1.20957,-1.71353,-0.93961,2.04201,-0.38000
+0.04119,0.96996,-1.21026,-1.71283,-0.93978,2.04238,-0.38036
+0.04942,0.96947,-1.21094,-1.71214,-0.93995,2.04274,-0.38072
+0.05766,0.96898,-1.21161,-1.71146,-0.94011,2.04310,-0.38108
+0.06590,0.96850,-1.21227,-1.71079,-0.94028,2.04346,-0.38143
+0.07414,0.96803,-1.21291,-1.71013,-0.94044,2.04381,-0.38177
+0.08237,0.96757,-1.21355,-1.70949,-0.94060,2.04415,-0.38211
+0.09061,0.96711,-1.21417,-1.70885,-0.94076,2.04448,-0.38245
+0.09885,0.96666,-1.21479,-1.70822,-0.94091,2.04482,-0.38278
+0.10708,0.96622,-1.21539,-1.70761,-0.94107,2.04514,-0.38310
+0.11532,0.96579,-1.21598,-1.70700,-0.94123,2.04546,-0.38342
+0.12356,0.96536,-1.21656,-1.70640,-0.94138,2.04578,-0.38373
+0.13180,0.96494,-1.21713,-1.70581,-0.94153,2.04609,-0.38404
+0.14003,0.96453,-1.21770,-1.70524,-0.94168,2.04640,-0.38434
+0.14827,0.96412,-1.21825,-1.70467,-0.94183,2.04670,-0.38464
+0.15651,0.96372,-1.21879,-1.70411,-0.94198,2.04700,-0.38494
+0.16474,0.96333,-1.21932,-1.70355,-0.94213,2.04729,-0.38523
+0.17298,0.96294,-1.21985,-1.70301,-0.94227,2.04758,-0.38551
+0.18122,0.96256,-1.22036,-1.70248,-0.94241,2.04786,-0.38580
+0.18946,0.96218,-1.22087,-1.70195,-0.94256,2.04814,-0.38607
+0.19769,0.96181,-1.22137,-1.70143,-0.94270,2.04841,-0.38635
+0.20593,0.96145,-1.22186,-1.70093,-0.94284,2.04868,-0.38661
+0.21417,0.96109,-1.22234,-1.70042,-0.94297,2.04895,-0.38688
+0.22241,0.96074,-1.22281,-1.69993,-0.94311,2.04921,-0.38714
+0.23064,0.96039,-1.22327,-1.69945,-0.94324,2.04947,-0.38740
+0.23888,0.96005,-1.22373,-1.69897,-0.94338,2.04972,-0.38765
+0.24712,0.95972,-1.22418,-1.69850,-0.94351,2.04997,-0.38790
+0.25535,0.95938,-1.22462,-1.69804,-0.94364,2.05021,-0.38814
+0.26359,0.95906,-1.22505,-1.69758,-0.94377,2.05046,-0.38838
+0.27183,0.95874,-1.22548,-1.69713,-0.94390,2.05069,-0.38862
+0.28007,0.95843,-1.22590,-1.69669,-0.94403,2.05093,-0.38886
+0.28830,0.95812,-1.22631,-1.69626,-0.94415,2.05116,-0.38909
+0.29654,0.95781,-1.22671,-1.69583,-0.94428,2.05139,-0.38931
+0.30478,0.95770,-1.22686,-1.69568,-0.94432,2.05147,-0.38939
+0.31301,0.95723,-1.22751,-1.69500,-0.94451,2.05182,-0.38974
+0.32125,0.95677,-1.22815,-1.69432,-0.94470,2.05216,-0.39009
+0.32949,0.95631,-1.22878,-1.69366,-0.94488,2.05250,-0.39042
+0.33773,0.95586,-1.22940,-1.69300,-0.94507,2.05283,-0.39076
+0.34596,0.95542,-1.23001,-1.69236,-0.94525,2.05316,-0.39108
+0.35420,0.95499,-1.23060,-1.69173,-0.94543,2.05348,-0.39141
+0.36244,0.95456,-1.23119,-1.69110,-0.94561,2.05380,-0.39172
+0.37068,0.95414,-1.23177,-1.69049,-0.94578,2.05411,-0.39204
+0.37891,0.95373,-1.23234,-1.68989,-0.94596,2.05441,-0.39235
+0.38715,0.95332,-1.23289,-1.68929,-0.94613,2.05472,-0.39265
+0.39539,0.95292,-1.23344,-1.68871,-0.94630,2.05501,-0.39295
+0.40362,0.95253,-1.23398,-1.68813,-0.94647,2.05531,-0.39324
+0.41186,0.95214,-1.23451,-1.68757,-0.94664,2.05559,-0.39353
+0.42010,0.95176,-1.23503,-1.68701,-0.94681,2.05588,-0.39382
+0.42834,0.95139,-1.23554,-1.68646,-0.94697,2.05616,-0.39410
+0.43657,0.95102,-1.23604,-1.68592,-0.94713,2.05643,-0.39437
+0.44481,0.95065,-1.23654,-1.68539,-0.94729,2.05670,-0.39464
+0.45305,0.95030,-1.23702,-1.68487,-0.94745,2.05697,-0.39491
+0.46129,0.94995,-1.23750,-1.68435,-0.94761,2.05723,-0.39518
+0.46952,0.94960,-1.23797,-1.68385,-0.94777,2.05749,-0.39543
+0.47776,0.94926,-1.23843,-1.68335,-0.94792,2.05774,-0.39569
+0.48600,0.94892,-1.23888,-1.68286,-0.94807,2.05799,-0.39594
+0.49423,0.94859,-1.23933,-1.68238,-0.94822,2.05823,-0.39619
+0.50247,0.94827,-1.23976,-1.68190,-0.94837,2.05848,-0.39643
+0.51071,0.94795,-1.24019,-1.68144,-0.94852,2.05871,-0.39667
+0.51895,0.94764,-1.24062,-1.68098,-0.94866,2.05895,-0.39691
+0.52718,0.94733,-1.24103,-1.68053,-0.94881,2.05918,-0.39714
+0.53542,0.94702,-1.24144,-1.68008,-0.94895,2.05941,-0.39737
+0.54366,0.94673,-1.24184,-1.67964,-0.94909,2.05963,-0.39760
+0.55189,0.94650,-1.24219,-1.67925,-0.94921,2.05979,-0.39777
+0.56013,0.94547,-1.24408,-1.67704,-0.94986,2.06055,-0.39853
+0.56837,0.94446,-1.24594,-1.67487,-0.95051,2.06130,-0.39928
+0.57661,0.94347,-1.24777,-1.67273,-0.95115,2.06203,-0.40002
+0.58484,0.94249,-1.24956,-1.67063,-0.95179,2.06275,-0.40075
+0.59308,0.94154,-1.25132,-1.66855,-0.95242,2.06345,-0.40147
+0.60132,0.94060,-1.25306,-1.66651,-0.95305,2.06415,-0.40217
+0.60956,0.93967,-1.25476,-1.66450,-0.95367,2.06483,-0.40286
+0.61779,0.93877,-1.25643,-1.66252,-0.95428,2.06550,-0.40354
+0.62603,0.93787,-1.25807,-1.66057,-0.95489,2.06615,-0.40421
+0.63427,0.93700,-1.25969,-1.65865,-0.95549,2.06680,-0.40487
+0.64250,0.93614,-1.26127,-1.65676,-0.95609,2.06743,-0.40552
+0.65074,0.93530,-1.26283,-1.65490,-0.95668,2.06805,-0.40616
+0.65898,0.93447,-1.26436,-1.65307,-0.95727,2.06867,-0.40678
+0.66722,0.93365,-1.26587,-1.65127,-0.95785,2.06927,-0.40740
+0.67545,0.93285,-1.26734,-1.64949,-0.95842,2.06986,-0.40800
+0.68369,0.93206,-1.26880,-1.64774,-0.95899,2.07044,-0.40860
+0.69193,0.93129,-1.27022,-1.64602,-0.95955,2.07101,-0.40918
+0.70016,0.93053,-1.27163,-1.64433,-0.96011,2.07157,-0.40976
+0.70840,0.92979,-1.27300,-1.64266,-0.96066,2.07212,-0.41033
+0.71664,0.92905,-1.27436,-1.64102,-0.96121,2.07266,-0.41088
+0.72488,0.92833,-1.27569,-1.63940,-0.96175,2.07320,-0.41143
+0.73311,0.92763,-1.27700,-1.63781,-0.96228,2.07372,-0.41197
+0.74135,0.92693,-1.27828,-1.63624,-0.96281,2.07423,-0.41250
+0.74959,0.92625,-1.27954,-1.63470,-0.96333,2.07474,-0.41302
+0.75783,0.92557,-1.28079,-1.63318,-0.96385,2.07524,-0.41354
+0.76606,0.92491,-1.28200,-1.63169,-0.96436,2.07573,-0.41404
+0.77430,0.92427,-1.28320,-1.63021,-0.96486,2.07621,-0.41454
+0.78254,0.92363,-1.28438,-1.62877,-0.96536,2.07668,-0.41503
+0.79077,0.92300,-1.28554,-1.62734,-0.96586,2.07714,-0.41551
+0.79901,0.92238,-1.28667,-1.62594,-0.96635,2.07760,-0.41598
+0.80725,0.92178,-1.28779,-1.62456,-0.96683,2.07805,-0.41645
+0.81549,0.92118,-1.28889,-1.62320,-0.96731,2.07849,-0.41691
+0.82372,0.92060,-1.28997,-1.62186,-0.96778,2.07892,-0.41736
+0.83196,0.92002,-1.29103,-1.62054,-0.96825,2.07935,-0.41780
+0.84020,0.91946,-1.29207,-1.61924,-0.96871,2.07977,-0.41824
+0.84843,0.91890,-1.29310,-1.61797,-0.96916,2.08018,-0.41867
+0.85667,0.91835,-1.29410,-1.61671,-0.96961,2.08059,-0.41909
+0.86491,0.91782,-1.29509,-1.61547,-0.97006,2.08099,-0.41951
+0.87315,0.91729,-1.29606,-1.61425,-0.97050,2.08138,-0.41992
+0.88138,0.91677,-1.29702,-1.61306,-0.97093,2.08176,-0.42032
+0.88962,0.91626,-1.29796,-1.61188,-0.97136,2.08214,-0.42072
+0.89786,0.91575,-1.29888,-1.61072,-0.97179,2.08252,-0.42111
+0.90610,0.91526,-1.29979,-1.60957,-0.97221,2.08288,-0.42149
+0.91433,0.91477,-1.30068,-1.60845,-0.97262,2.08324,-0.42187
+0.92257,0.91430,-1.30156,-1.60734,-0.97303,2.08360,-0.42224
+0.93081,0.91383,-1.30242,-1.60625,-0.97344,2.08395,-0.42261
+0.93904,0.91336,-1.30326,-1.60518,-0.97384,2.08429,-0.42297
+0.94728,0.91291,-1.30410,-1.60413,-0.97423,2.08463,-0.42332
+0.95552,0.91246,-1.30491,-1.60309,-0.97462,2.08496,-0.42367
+0.96376,0.91202,-1.30572,-1.60206,-0.97501,2.08529,-0.42401
+0.97199,0.91159,-1.30651,-1.60106,-0.97539,2.08561,-0.42435
+0.98023,0.91117,-1.30728,-1.60007,-0.97576,2.08593,-0.42469
+0.98847,0.91075,-1.30804,-1.59909,-0.97613,2.08624,-0.42501
+0.99671,0.91034,-1.30879,-1.59813,-0.97650,2.08654,-0.42534
+1.00494,0.90993,-1.30953,-1.59719,-0.97686,2.08684,-0.42565
+1.01318,0.90953,-1.31026,-1.59626,-0.97722,2.08714,-0.42597
+1.02142,0.90914,-1.31097,-1.59535,-0.97757,2.08743,-0.42627
+1.02965,0.90876,-1.31167,-1.59445,-0.97792,2.08772,-0.42658
+1.03789,0.90838,-1.31235,-1.59356,-0.97826,2.08800,-0.42688
+1.04613,0.90801,-1.31303,-1.59269,-0.97860,2.08828,-0.42717
+1.05437,0.90764,-1.31369,-1.59183,-0.97894,2.08855,-0.42746
+1.06260,0.90728,-1.31435,-1.59099,-0.97927,2.08882,-0.42774
+1.07084,0.90693,-1.31499,-1.59016,-0.97960,2.08908,-0.42802
+1.07908,0.90658,-1.31562,-1.58934,-0.97992,2.08934,-0.42830
+1.08731,0.90623,-1.31624,-1.58853,-0.98024,2.08960,-0.42857
+1.09555,0.90590,-1.31685,-1.58774,-0.98055,2.08985,-0.42884
+1.10379,0.90556,-1.31745,-1.58696,-0.98086,2.09010,-0.42910
+1.11203,0.90524,-1.31804,-1.58620,-0.98117,2.09034,-0.42936
+1.12026,0.90492,-1.31862,-1.58544,-0.98147,2.09058,-0.42962
+1.12850,0.90460,-1.31918,-1.58470,-0.98177,2.09082,-0.42987
+1.13674,0.90429,-1.31974,-1.58397,-0.98207,2.09105,-0.43011
+1.14498,0.90398,-1.32029,-1.58325,-0.98236,2.09128,-0.43036
+1.15321,0.90368,-1.32083,-1.58254,-0.98264,2.09150,-0.43060
+1.16145,0.90339,-1.32136,-1.58184,-0.98293,2.09173,-0.43083
+1.16969,0.90309,-1.32189,-1.58116,-0.98321,2.09194,-0.43107
+1.17792,0.90281,-1.32240,-1.58048,-0.98348,2.09216,-0.43129
+1.18616,0.90253,-1.32290,-1.57982,-0.98375,2.09237,-0.43152
+1.19440,0.90225,-1.32340,-1.57917,-0.98402,2.09258,-0.43174
+1.20264,0.90198,-1.32389,-1.57852,-0.98429,2.09278,-0.43196
+1.21087,0.90171,-1.32437,-1.57789,-0.98455,2.09298,-0.43218
+1.21911,0.90144,-1.32484,-1.57727,-0.98481,2.09318,-0.43239
+1.22735,0.90118,-1.32530,-1.57666,-0.98506,2.09338,-0.43260
+1.23558,0.90093,-1.32575,-1.57605,-0.98531,2.09357,-0.43280
+1.24382,0.90067,-1.32620,-1.57546,-0.98556,2.09376,-0.43300
+1.25206,0.90043,-1.32664,-1.57488,-0.98581,2.09394,-0.43320
+1.26030,0.90018,-1.32707,-1.57430,-0.98605,2.09412,-0.43340
+1.26853,0.89994,-1.32750,-1.57374,-0.98629,2.09430,-0.43359
+1.27677,0.89971,-1.32791,-1.57318,-0.98652,2.09448,-0.43378
+1.28501,0.89947,-1.32832,-1.57263,-0.98675,2.09466,-0.43397
+1.29325,0.89924,-1.32873,-1.57209,-0.98698,2.09483,-0.43415
+1.30148,0.89902,-1.32912,-1.57156,-0.98721,2.09500,-0.43433
+1.30972,0.89880,-1.32951,-1.57104,-0.98743,2.09516,-0.43451
+1.31796,0.89860,-1.32989,-1.57054,-0.98764,2.09531,-0.43467
+1.32619,0.89814,-1.33093,-1.56917,-0.98814,2.09565,-0.43503
+1.33443,0.89768,-1.33195,-1.56783,-0.98864,2.09598,-0.43539
+1.34267,0.89724,-1.33295,-1.56650,-0.98913,2.09631,-0.43574
+1.35091,0.89680,-1.33394,-1.56519,-0.98962,2.09663,-0.43608
+1.35914,0.89637,-1.33490,-1.56391,-0.99010,2.09695,-0.43642
+1.36738,0.89595,-1.33586,-1.56264,-0.99057,2.09726,-0.43676
+1.37562,0.89553,-1.33679,-1.56140,-0.99104,2.09757,-0.43709
+1.38386,0.89512,-1.33771,-1.56017,-0.99151,2.09787,-0.43741
+1.39209,0.89472,-1.33862,-1.55897,-0.99196,2.09817,-0.43773
+1.40033,0.89432,-1.33951,-1.55778,-0.99242,2.09846,-0.43804
+1.40857,0.89393,-1.34038,-1.55661,-0.99286,2.09875,-0.43835
+1.41680,0.89355,-1.34124,-1.55546,-0.99330,2.09903,-0.43865
+1.42504,0.89317,-1.34208,-1.55433,-0.99374,2.09931,-0.43895
+1.43328,0.89280,-1.34291,-1.55321,-0.99417,2.09958,-0.43925
+1.44152,0.89244,-1.34373,-1.55212,-0.99459,2.09985,-0.43954
+1.44975,0.89208,-1.34453,-1.55104,-0.99501,2.10011,-0.43982
+1.45799,0.89173,-1.34531,-1.54997,-0.99542,2.10037,-0.44010
+1.46623,0.89138,-1.34609,-1.54893,-0.99583,2.10063,-0.44038
+1.47446,0.89104,-1.34685,-1.54790,-0.99623,2.10088,-0.44065
+1.48270,0.89070,-1.34760,-1.54689,-0.99663,2.10113,-0.44092
+1.49094,0.89037,-1.34833,-1.54589,-0.99703,2.10137,-0.44118
+1.49918,0.89005,-1.34905,-1.54491,-0.99741,2.10161,-0.44144
+1.50741,0.88973,-1.34977,-1.54394,-0.99780,2.10185,-0.44170
+1.51565,0.88941,-1.35046,-1.54299,-0.99817,2.10208,-0.44195
+1.52389,0.88910,-1.35115,-1.54206,-0.99855,2.10231,-0.44220
+1.53213,0.88880,-1.35182,-1.54113,-0.99892,2.10254,-0.44244
+1.54036,0.88850,-1.35249,-1.54023,-0.99928,2.10276,-0.44268
+1.54860,0.88821,-1.35314,-1.53934,-0.99964,2.10298,-0.44292
+1.55684,0.88792,-1.35378,-1.53846,-0.99999,2.10319,-0.44315
+1.56507,0.88763,-1.35441,-1.53760,-1.00034,2.10340,-0.44338
+1.57331,0.88735,-1.35503,-1.53675,-1.00069,2.10361,-0.44361
+1.58155,0.88707,-1.35564,-1.53591,-1.00103,2.10382,-0.44383
+1.58979,0.88680,-1.35623,-1.53509,-1.00136,2.10402,-0.44405
+1.59802,0.88653,-1.35682,-1.53427,-1.00169,2.10422,-0.44427
+1.60626,0.88627,-1.35740,-1.53348,-1.00202,2.10441,-0.44448
+1.61450,0.88601,-1.35797,-1.53269,-1.00234,2.10460,-0.44469
+1.62273,0.88576,-1.35853,-1.53192,-1.00266,2.10479,-0.44490
+1.63097,0.88551,-1.35908,-1.53116,-1.00298,2.10498,-0.44510
+1.63921,0.88526,-1.35962,-1.53041,-1.00329,2.10516,-0.44530
+1.64745,0.88502,-1.36015,-1.52968,-1.00359,2.10534,-0.44549
+1.65568,0.88478,-1.36067,-1.52895,-1.00390,2.10552,-0.44569
+1.66392,0.88454,-1.36118,-1.52824,-1.00419,2.10569,-0.44588
+1.67216,0.88431,-1.36168,-1.52754,-1.00449,2.10586,-0.44607
+1.68040,0.88409,-1.36218,-1.52685,-1.00478,2.10603,-0.44625
+1.68863,0.88386,-1.36267,-1.52617,-1.00506,2.10620,-0.44644
+1.69687,0.88364,-1.36314,-1.52550,-1.00535,2.10636,-0.44662
+1.70511,0.88342,-1.36362,-1.52484,-1.00563,2.10652,-0.44679
+1.71334,0.88321,-1.36408,-1.52419,-1.00590,2.10668,-0.44697
+1.72158,0.88300,-1.36453,-1.52355,-1.00617,2.10684,-0.44714
+1.72982,0.88279,-1.36498,-1.52293,-1.00644,2.10699,-0.44731
+1.73806,0.88259,-1.36542,-1.52231,-1.00670,2.10714,-0.44747
+1.74629,0.88239,-1.36585,-1.52170,-1.00696,2.10729,-0.44764
+1.75453,0.88219,-1.36628,-1.52110,-1.00722,2.10744,-0.44780
+1.76277,0.88200,-1.36669,-1.52051,-1.00747,2.10759,-0.44796
+1.77100,0.88181,-1.36710,-1.51994,-1.00772,2.10773,-0.44811
+1.77924,0.88162,-1.36751,-1.51937,-1.00797,2.10787,-0.44827
+1.78748,0.88144,-1.36790,-1.51881,-1.00821,2.10801,-0.44842
+1.79572,0.88125,-1.36829,-1.51825,-1.00845,2.10814,-0.44857
+1.80395,0.88107,-1.36870,-1.51769,-1.00869,2.10828,-0.44872
+1.81219,0.88064,-1.36968,-1.51637,-1.00919,2.10859,-0.44906
+1.82043,0.88022,-1.37065,-1.51508,-1.00968,2.10890,-0.44940
+1.82867,0.87981,-1.37160,-1.51380,-1.01016,2.10920,-0.44973
+1.83690,0.87940,-1.37254,-1.51255,-1.01064,2.10949,-0.45005
+1.84514,0.87900,-1.37346,-1.51132,-1.01111,2.10979,-0.45037
+1.85338,0.87861,-1.37436,-1.51010,-1.01158,2.11007,-0.45068
+1.86161,0.87823,-1.37525,-1.50891,-1.01204,2.11035,-0.45099
+1.86985,0.87785,-1.37612,-1.50773,-1.01250,2.11063,-0.45129
+1.87809,0.87747,-1.37698,-1.50657,-1.01295,2.11090,-0.45159
+1.88633,0.87711,-1.37782,-1.50543,-1.01339,2.11117,-0.45189
+1.89456,0.87675,-1.37865,-1.50431,-1.01383,2.11144,-0.45218
+1.90280,0.87639,-1.37947,-1.50320,-1.01426,2.11169,-0.45246
+1.91104,0.87604,-1.38027,-1.50211,-1.01469,2.11195,-0.45274
+1.91928,0.87570,-1.38106,-1.50104,-1.01512,2.11220,-0.45302
+1.92751,0.87536,-1.38183,-1.49999,-1.01553,2.11245,-0.45329
+1.93575,0.87503,-1.38259,-1.49895,-1.01594,2.11269,-0.45356
+1.94399,0.87470,-1.38334,-1.49793,-1.01635,2.11293,-0.45382
+1.95222,0.87438,-1.38408,-1.49692,-1.01675,2.11317,-0.45408
+1.96046,0.87407,-1.38480,-1.49593,-1.01715,2.11340,-0.45434
+1.96870,0.87376,-1.38551,-1.49496,-1.01754,2.11362,-0.45459
+1.97694,0.87345,-1.38621,-1.49400,-1.01793,2.11385,-0.45484
+1.98517,0.87315,-1.38689,-1.49305,-1.01831,2.11407,-0.45508
+1.99341,0.87285,-1.38757,-1.49213,-1.01868,2.11429,-0.45532
+2.00165,0.87256,-1.38823,-1.49121,-1.01906,2.11450,-0.45556
+2.00988,0.87228,-1.38888,-1.49031,-1.01942,2.11471,-0.45579
+2.01812,0.87200,-1.38953,-1.48942,-1.01979,2.11491,-0.45602
+2.02636,0.87172,-1.39016,-1.48855,-1.02014,2.11512,-0.45625
+2.03460,0.87145,-1.39078,-1.48769,-1.02050,2.11532,-0.45647
+2.04283,0.87118,-1.39139,-1.48685,-1.02084,2.11551,-0.45669
+2.05107,0.87092,-1.39198,-1.48601,-1.02119,2.11571,-0.45690
+2.05931,0.87066,-1.39257,-1.48520,-1.02153,2.11590,-0.45711
+2.06755,0.87040,-1.39315,-1.48439,-1.02186,2.11609,-0.45732
+2.07578,0.87015,-1.39372,-1.48360,-1.02219,2.11627,-0.45753
+2.08402,0.86990,-1.39428,-1.48282,-1.02252,2.11645,-0.45773
+2.09226,0.86966,-1.39483,-1.48205,-1.02284,2.11663,-0.45793
+2.10049,0.86942,-1.39537,-1.48129,-1.02316,2.11681,-0.45813
+2.10873,0.86919,-1.39590,-1.48055,-1.02347,2.11698,-0.45832
+2.11697,0.86896,-1.39643,-1.47981,-1.02378,2.11715,-0.45851
+2.12521,0.86873,-1.39694,-1.47909,-1.02409,2.11732,-0.45870
+2.13344,0.86850,-1.39744,-1.47838,-1.02439,2.11748,-0.45888
+2.14168,0.86828,-1.39794,-1.47768,-1.02468,2.11764,-0.45906
+2.14992,0.86807,-1.39843,-1.47699,-1.02498,2.11780,-0.45924
+2.15815,0.86785,-1.39891,-1.47632,-1.02527,2.11796,-0.45942
+2.16639,0.86764,-1.39938,-1.47565,-1.02555,2.11812,-0.45959
+2.17463,0.86744,-1.39984,-1.47499,-1.02583,2.11827,-0.45976
+2.18287,0.86723,-1.40030,-1.47435,-1.02611,2.11842,-0.45993
+2.19110,0.86703,-1.40075,-1.47371,-1.02639,2.11857,-0.46010
+2.19934,0.86684,-1.40119,-1.47309,-1.02666,2.11871,-0.46026
+2.20758,0.86664,-1.40162,-1.47247,-1.02692,2.11885,-0.46042
+2.21582,0.86645,-1.40205,-1.47187,-1.02719,2.11899,-0.46058
+2.22405,0.86627,-1.40247,-1.47127,-1.02745,2.11913,-0.46073
+2.23229,0.86608,-1.40288,-1.47068,-1.02770,2.11927,-0.46089
+2.24053,0.86590,-1.40328,-1.47010,-1.02796,2.11940,-0.46104
+2.24876,0.86572,-1.40368,-1.46954,-1.02820,2.11954,-0.46119
+2.25700,0.86554,-1.40407,-1.46898,-1.02845,2.11967,-0.46133
+2.26524,0.86536,-1.40454,-1.46832,-1.02872,2.11980,-0.46149
+2.27348,0.86469,-1.40647,-1.46565,-1.02972,2.12028,-0.46202
+2.28171,0.86404,-1.40836,-1.46302,-1.03071,2.12076,-0.46254
+2.28995,0.86339,-1.41023,-1.46043,-1.03168,2.12122,-0.46305
+2.29819,0.86276,-1.41206,-1.45787,-1.03265,2.12167,-0.46356
+2.30643,0.86214,-1.41386,-1.45536,-1.03360,2.12212,-0.46405
+2.31466,0.86154,-1.41563,-1.45288,-1.03455,2.12256,-0.46454
+2.32290,0.86094,-1.41738,-1.45044,-1.03548,2.12299,-0.46502
+2.33114,0.86035,-1.41909,-1.44804,-1.03641,2.12341,-0.46549
+2.33937,0.85978,-1.42077,-1.44567,-1.03732,2.12383,-0.46596
+2.34761,0.85921,-1.42243,-1.44334,-1.03822,2.12424,-0.46641
+2.35585,0.85865,-1.42405,-1.44104,-1.03912,2.12464,-0.46686
+2.36409,0.85811,-1.42565,-1.43878,-1.04000,2.12504,-0.46730
+2.37232,0.85757,-1.42722,-1.43655,-1.04087,2.12542,-0.46774
+2.38056,0.85704,-1.42877,-1.43435,-1.04173,2.12580,-0.46816
+2.38880,0.85653,-1.43029,-1.43219,-1.04259,2.12618,-0.46858
+2.39703,0.85602,-1.43178,-1.43006,-1.04343,2.12655,-0.46900
+2.40527,0.85552,-1.43325,-1.42796,-1.04426,2.12691,-0.46940
+2.41351,0.85503,-1.43470,-1.42589,-1.04508,2.12726,-0.46980
+2.42175,0.85454,-1.43612,-1.42386,-1.04590,2.12761,-0.47020
+2.42998,0.85407,-1.43752,-1.42185,-1.04670,2.12796,-0.47058
+2.43822,0.85360,-1.43889,-1.41988,-1.04749,2.12830,-0.47097
+2.44646,0.85314,-1.44024,-1.41793,-1.04828,2.12863,-0.47134
+2.45470,0.85269,-1.44157,-1.41601,-1.04905,2.12895,-0.47171
+2.46293,0.85225,-1.44287,-1.41413,-1.04982,2.12927,-0.47207
+2.47117,0.85182,-1.44416,-1.41227,-1.05057,2.12959,-0.47243
+2.47941,0.85139,-1.44542,-1.41044,-1.05132,2.12990,-0.47278
+2.48764,0.85097,-1.44666,-1.40864,-1.05206,2.13020,-0.47313
+2.49588,0.85056,-1.44788,-1.40686,-1.05279,2.13050,-0.47347
+2.50412,0.85015,-1.44908,-1.40511,-1.05351,2.13080,-0.47380
+2.51236,0.84975,-1.45026,-1.40339,-1.05422,2.13109,-0.47413
+2.52059,0.84936,-1.45142,-1.40169,-1.05492,2.13137,-0.47446
+2.52883,0.84897,-1.45256,-1.40002,-1.05562,2.13165,-0.47478
+2.53707,0.84859,-1.45369,-1.39838,-1.05630,2.13193,-0.47509
+2.54530,0.84822,-1.45479,-1.39676,-1.05698,2.13220,-0.47540
+2.55354,0.84785,-1.45588,-1.39516,-1.05765,2.13247,-0.47571
+2.56178,0.84749,-1.45694,-1.39359,-1.05831,2.13273,-0.47601
+2.57002,0.84714,-1.45799,-1.39204,-1.05896,2.13299,-0.47630
+2.57825,0.84679,-1.45902,-1.39052,-1.05960,2.13324,-0.47659
+2.58649,0.84645,-1.46004,-1.38902,-1.06024,2.13349,-0.47688
+2.59473,0.84611,-1.46104,-1.38754,-1.06087,2.13374,-0.47716
+2.60297,0.84578,-1.46202,-1.38609,-1.06149,2.13398,-0.47744
+2.61120,0.84545,-1.46298,-1.38465,-1.06210,2.13421,-0.47771
+2.61944,0.84513,-1.46393,-1.38324,-1.06270,2.13445,-0.47798
+2.62768,0.84482,-1.46487,-1.38185,-1.06330,2.13468,-0.47824
+2.63591,0.84451,-1.46578,-1.38048,-1.06389,2.13490,-0.47851
+2.64415,0.84420,-1.46669,-1.37913,-1.06447,2.13513,-0.47876
+2.65239,0.84390,-1.46757,-1.37781,-1.06504,2.13535,-0.47901
+2.66063,0.84361,-1.46845,-1.37650,-1.06561,2.13556,-0.47926
+2.66886,0.84332,-1.46931,-1.37521,-1.06617,2.13577,-0.47951
+2.67710,0.84303,-1.47015,-1.37394,-1.06672,2.13598,-0.47975
+2.68534,0.84275,-1.47098,-1.37269,-1.06726,2.13619,-0.47999
+2.69357,0.84247,-1.47180,-1.37146,-1.06780,2.13639,-0.48022
+2.70181,0.84220,-1.47260,-1.37025,-1.06833,2.13659,-0.48045
+2.71005,0.84193,-1.47339,-1.36906,-1.06886,2.13678,-0.48068
+2.71829,0.84167,-1.47417,-1.36789,-1.06937,2.13697,-0.48090
+2.72652,0.84141,-1.47493,-1.36673,-1.06988,2.13716,-0.48112
+2.73476,0.84116,-1.47568,-1.36559,-1.07039,2.13735,-0.48134
+2.74300,0.84091,-1.47642,-1.36447,-1.07089,2.13753,-0.48155
+2.75124,0.84066,-1.47715,-1.36337,-1.07138,2.13771,-0.48176
+2.75947,0.84042,-1.47786,-1.36228,-1.07186,2.13789,-0.48197
+2.76771,0.84018,-1.47857,-1.36121,-1.07234,2.13806,-0.48217
+2.77595,0.83995,-1.47926,-1.36015,-1.07281,2.13823,-0.48237
+2.78418,0.83971,-1.47994,-1.35911,-1.07328,2.13840,-0.48257
+2.79242,0.83949,-1.48061,-1.35809,-1.07374,2.13857,-0.48277
+2.80066,0.83926,-1.48127,-1.35709,-1.07419,2.13873,-0.48296
+2.80890,0.83904,-1.48191,-1.35609,-1.07464,2.13889,-0.48315
+2.81713,0.83883,-1.48255,-1.35512,-1.07508,2.13905,-0.48333
+2.82537,0.83861,-1.48318,-1.35416,-1.07551,2.13921,-0.48352
+2.83361,0.83841,-1.48379,-1.35321,-1.07594,2.13936,-0.48370
+2.84185,0.83820,-1.48440,-1.35228,-1.07637,2.13951,-0.48388
+2.85008,0.83800,-1.48499,-1.35136,-1.07679,2.13966,-0.48405
+2.85832,0.83780,-1.48558,-1.35046,-1.07720,2.13981,-0.48422
+2.86656,0.83760,-1.48616,-1.34957,-1.07761,2.13995,-0.48439
+2.87479,0.83741,-1.48672,-1.34869,-1.07801,2.14009,-0.48456
+2.88303,0.83722,-1.48728,-1.34783,-1.07841,2.14023,-0.48473
+2.89127,0.83703,-1.48783,-1.34698,-1.07880,2.14037,-0.48489
+2.89951,0.83684,-1.48837,-1.34614,-1.07918,2.14051,-0.48505
+2.90774,0.83666,-1.48890,-1.34532,-1.07957,2.14064,-0.48521
+2.91598,0.83648,-1.48942,-1.34451,-1.07994,2.14077,-0.48536
+2.92422,0.83631,-1.48993,-1.34371,-1.08031,2.14090,-0.48551
+2.93245,0.83614,-1.49044,-1.34292,-1.08068,2.14103,-0.48566
+2.94069,0.83597,-1.49093,-1.34215,-1.08104,2.14115,-0.48581
+2.94893,0.83580,-1.49142,-1.34138,-1.08140,2.14128,-0.48596
+2.95717,0.83563,-1.49190,-1.34063,-1.08175,2.14140,-0.48610
+2.96540,0.83547,-1.49238,-1.33989,-1.08209,2.14152,-0.48625
+2.97364,0.83531,-1.49284,-1.33916,-1.08243,2.14163,-0.48639
+2.98188,0.83515,-1.49330,-1.33845,-1.08277,2.14175,-0.48652
+2.99012,0.83500,-1.49375,-1.33774,-1.08310,2.14186,-0.48666
+2.99835,0.83485,-1.49419,-1.33705,-1.08343,2.14198,-0.48679
+3.00659,0.83470,-1.49463,-1.33636,-1.08376,2.14209,-0.48692
+3.01483,0.83455,-1.49505,-1.33569,-1.08408,2.14219,-0.48705
+3.02306,0.83440,-1.49547,-1.33502,-1.08439,2.14230,-0.48718
+3.03130,0.83426,-1.49589,-1.33437,-1.08470,2.14241,-0.48731
+3.03954,0.83412,-1.49630,-1.33373,-1.08501,2.14251,-0.48743
+3.04778,0.83398,-1.49670,-1.33309,-1.08531,2.14261,-0.48755
+3.05601,0.83385,-1.49709,-1.33247,-1.08561,2.14271,-0.48768
+3.06425,0.83371,-1.49748,-1.33186,-1.08590,2.14281,-0.48779
+3.07249,0.83358,-1.49787,-1.33124,-1.08619,2.14291,-0.48791
+3.08072,0.83331,-1.49876,-1.32991,-1.08676,2.14310,-0.48813
+3.08896,0.83305,-1.49963,-1.32859,-1.08732,2.14329,-0.48835
+3.09720,0.83279,-1.50048,-1.32730,-1.08787,2.14348,-0.48857
+3.10544,0.83254,-1.50132,-1.32603,-1.08841,2.14366,-0.48879
+3.11367,0.83229,-1.50215,-1.32478,-1.08895,2.14384,-0.48900
+3.12191,0.83205,-1.50296,-1.32354,-1.08948,2.14402,-0.48920
+3.13015,0.83180,-1.50376,-1.32233,-1.09000,2.14419,-0.48941
+3.13839,0.83157,-1.50455,-1.32113,-1.09052,2.14436,-0.48961
+3.14662,0.83133,-1.50532,-1.31995,-1.09103,2.14453,-0.48981
+3.15486,0.83110,-1.50608,-1.31879,-1.09153,2.14470,-0.49000
+3.16310,0.83088,-1.50683,-1.31765,-1.09203,2.14486,-0.49020
+3.17133,0.83066,-1.50756,-1.31652,-1.09252,2.14502,-0.49039
+3.17957,0.83044,-1.50829,-1.31541,-1.09301,2.14518,-0.49057
+3.18781,0.83022,-1.50900,-1.31432,-1.09349,2.14534,-0.49076
+3.19605,0.83001,-1.50970,-1.31325,-1.09396,2.14549,-0.49094
+3.20428,0.82980,-1.51039,-1.31219,-1.09442,2.14564,-0.49112
+3.21252,0.82960,-1.51107,-1.31114,-1.09488,2.14579,-0.49129
+3.22076,0.82940,-1.51174,-1.31012,-1.09534,2.14593,-0.49146
+3.22900,0.82920,-1.51239,-1.30910,-1.09579,2.14608,-0.49164
+3.23723,0.82900,-1.51304,-1.30811,-1.09623,2.14622,-0.49180
+3.24547,0.82881,-1.51367,-1.30712,-1.09667,2.14636,-0.49197
+3.25371,0.82862,-1.51430,-1.30616,-1.09710,2.14650,-0.49213
+3.26194,0.82843,-1.51491,-1.30520,-1.09752,2.14663,-0.49229
+3.27018,0.82825,-1.51551,-1.30427,-1.09794,2.14677,-0.49245
+3.27842,0.82807,-1.51611,-1.30334,-1.09836,2.14690,-0.49261
+3.28666,0.82789,-1.51669,-1.30243,-1.09877,2.14703,-0.49276
+3.29489,0.82772,-1.51727,-1.30154,-1.09917,2.14715,-0.49291
+3.30313,0.82755,-1.51783,-1.30065,-1.09957,2.14728,-0.49306
+3.31137,0.82738,-1.51839,-1.29979,-1.09996,2.14740,-0.49321
+3.31960,0.82721,-1.51894,-1.29893,-1.10035,2.14752,-0.49335
+3.32784,0.82705,-1.51948,-1.29809,-1.10074,2.14764,-0.49350
+3.33608,0.82688,-1.52001,-1.29726,-1.10111,2.14776,-0.49364
+3.34432,0.82673,-1.52053,-1.29644,-1.10149,2.14788,-0.49378
+3.35255,0.82657,-1.52104,-1.29563,-1.10185,2.14799,-0.49391
+3.36079,0.82641,-1.52155,-1.29484,-1.10222,2.14810,-0.49405
+3.36903,0.82626,-1.52204,-1.29406,-1.10258,2.14821,-0.49418
+3.37727,0.82611,-1.52253,-1.29329,-1.10293,2.14832,-0.49431
+3.38550,0.82597,-1.52301,-1.29253,-1.10328,2.14843,-0.49444
+3.39374,0.82582,-1.52348,-1.29179,-1.10362,2.14853,-0.49457
+3.40198,0.82568,-1.52395,-1.29105,-1.10396,2.14864,-0.49469
+3.41021,0.82554,-1.52441,-1.29033,-1.10430,2.14874,-0.49481
+3.41845,0.82540,-1.52486,-1.28962,-1.10463,2.14884,-0.49494
+3.42669,0.82527,-1.52530,-1.28891,-1.10496,2.14894,-0.49506
+3.43493,0.82513,-1.52573,-1.28822,-1.10528,2.14904,-0.49517
+3.44316,0.82500,-1.52616,-1.28754,-1.10560,2.14913,-0.49529
+3.45140,0.82487,-1.52658,-1.28687,-1.10591,2.14923,-0.49540
+3.45964,0.82474,-1.52700,-1.28621,-1.10622,2.14932,-0.49552
+3.46787,0.82462,-1.52741,-1.28556,-1.10653,2.14941,-0.49563
+3.47611,0.82449,-1.52781,-1.28492,-1.10683,2.14950,-0.49574
+3.48435,0.82437,-1.52820,-1.28429,-1.10712,2.14959,-0.49585
+3.49259,0.82425,-1.52859,-1.28367,-1.10742,2.14968,-0.49595
+3.50082,0.82423,-1.52866,-1.28356,-1.10746,2.14969,-0.49597
+3.50906,0.82402,-1.52937,-1.28249,-1.10793,2.14985,-0.49615
+3.51730,0.82381,-1.53006,-1.28143,-1.10839,2.15000,-0.49633
+3.52554,0.82361,-1.53074,-1.28039,-1.10884,2.15014,-0.49650
+3.53377,0.82341,-1.53141,-1.27936,-1.10929,2.15029,-0.49668
+3.54201,0.82321,-1.53207,-1.27835,-1.10973,2.15043,-0.49684
+3.55025,0.82301,-1.53272,-1.27736,-1.11017,2.15057,-0.49701
+3.55848,0.82282,-1.53335,-1.27638,-1.11060,2.15071,-0.49718
+3.56672,0.82263,-1.53398,-1.27541,-1.11103,2.15084,-0.49734
+3.57496,0.82245,-1.53460,-1.27446,-1.11145,2.15098,-0.49750
+3.58320,0.82227,-1.53520,-1.27353,-1.11186,2.15111,-0.49766
+3.59143,0.82209,-1.53580,-1.27260,-1.11227,2.15124,-0.49781
+3.59967,0.82191,-1.53639,-1.27169,-1.11267,2.15137,-0.49796
+3.60791,0.82173,-1.53697,-1.27080,-1.11307,2.15149,-0.49811
+3.61614,0.82156,-1.53754,-1.26992,-1.11347,2.15162,-0.49826
+3.62438,0.82139,-1.53810,-1.26905,-1.11386,2.15174,-0.49841
+3.63262,0.82123,-1.53865,-1.26819,-1.11424,2.15186,-0.49855
+3.64086,0.82107,-1.53919,-1.26735,-1.11462,2.15198,-0.49869
+3.64909,0.82090,-1.53972,-1.26652,-1.11499,2.15209,-0.49883
+3.65733,0.82075,-1.54025,-1.26570,-1.11536,2.15221,-0.49897
+3.66557,0.82059,-1.54076,-1.26490,-1.11573,2.15232,-0.49911
+3.67381,0.82044,-1.54127,-1.26411,-1.11609,2.15243,-0.49924
+3.68204,0.82029,-1.54177,-1.26332,-1.11644,2.15254,-0.49937
+3.69028,0.82014,-1.54226,-1.26256,-1.11679,2.15265,-0.49950
+3.69852,0.81999,-1.54274,-1.26180,-1.11714,2.15275,-0.49963
+3.70675,0.81985,-1.54322,-1.26105,-1.11748,2.15286,-0.49976
+3.71499,0.81971,-1.54368,-1.26032,-1.11781,2.15296,-0.49988
+3.72323,0.81957,-1.54414,-1.25959,-1.11815,2.15306,-0.50000
+3.73147,0.81943,-1.54460,-1.25888,-1.11847,2.15316,-0.50012
+3.73970,0.81930,-1.54504,-1.25818,-1.11880,2.15326,-0.50024
+3.74794,0.81916,-1.54548,-1.25748,-1.11912,2.15335,-0.50036
+3.75618,0.81903,-1.54591,-1.25680,-1.11943,2.15345,-0.50047
+3.76442,0.81890,-1.54634,-1.25613,-1.11974,2.15354,-0.50059
+3.77265,0.81878,-1.54675,-1.25547,-1.12005,2.15363,-0.50070
+3.78089,0.81865,-1.54716,-1.25482,-1.12035,2.15372,-0.50081
+3.78913,0.81853,-1.54757,-1.25418,-1.12065,2.15381,-0.50092
+3.79736,0.81841,-1.54797,-1.25354,-1.12095,2.15390,-0.50103
+3.80560,0.81829,-1.54835,-1.25294,-1.12123,2.15398,-0.50113
+3.81384,0.81813,-1.54903,-1.25187,-1.12170,2.15410,-0.50127
+3.82208,0.81796,-1.54970,-1.25081,-1.12216,2.15422,-0.50141
+3.83031,0.81780,-1.55035,-1.24978,-1.12261,2.15434,-0.50155
+3.83855,0.81764,-1.55100,-1.24875,-1.12306,2.15446,-0.50169
+3.84679,0.81748,-1.55164,-1.24775,-1.12350,2.15457,-0.50183
+3.85502,0.81732,-1.55226,-1.24676,-1.12394,2.15468,-0.50197
+3.86326,0.81717,-1.55288,-1.24578,-1.12438,2.15479,-0.50210
+3.87150,0.81702,-1.55348,-1.24482,-1.12480,2.15490,-0.50223
+3.87974,0.81687,-1.55408,-1.24387,-1.12522,2.15501,-0.50236
+3.88797,0.81672,-1.55467,-1.24293,-1.12564,2.15512,-0.50249
+3.89621,0.81658,-1.55525,-1.24201,-1.12605,2.15522,-0.50261
+3.90445,0.81643,-1.55581,-1.24111,-1.12646,2.15532,-0.50274
+3.91269,0.81629,-1.55637,-1.24021,-1.12686,2.15542,-0.50286
+3.92092,0.81616,-1.55692,-1.23934,-1.12725,2.15552,-0.50298
+3.92916,0.81602,-1.55746,-1.23847,-1.12764,2.15562,-0.50310
+3.93740,0.81589,-1.55800,-1.23762,-1.12803,2.15572,-0.50322
+3.94563,0.81575,-1.55852,-1.23677,-1.12841,2.15581,-0.50333
+3.95387,0.81562,-1.55904,-1.23595,-1.12878,2.15591,-0.50345
+3.96211,0.81550,-1.55954,-1.23513,-1.12915,2.15600,-0.50356
+3.97035,0.81537,-1.56004,-1.23433,-1.12952,2.15609,-0.50367
+3.97858,0.81525,-1.56054,-1.23353,-1.12988,2.15618,-0.50378
+3.98682,0.81513,-1.56102,-1.23276,-1.13023,2.15627,-0.50389
+3.99506,0.81501,-1.56149,-1.23199,-1.13059,2.15636,-0.50399
+4.00329,0.81489,-1.56196,-1.23123,-1.13093,2.15644,-0.50410
+4.01153,0.81477,-1.56242,-1.23048,-1.13128,2.15653,-0.50420
+4.01977,0.81466,-1.56288,-1.22975,-1.13161,2.15661,-0.50430
+4.02801,0.81454,-1.56332,-1.22903,-1.13195,2.15669,-0.50440
+4.03624,0.81443,-1.56376,-1.22831,-1.13228,2.15677,-0.50450
+4.04448,0.81432,-1.56419,-1.22761,-1.13260,2.15685,-0.50460
+4.05272,0.81421,-1.56462,-1.22692,-1.13292,2.15693,-0.50470
+4.06096,0.81411,-1.56504,-1.22624,-1.13324,2.15701,-0.50479
+4.06919,0.81400,-1.56545,-1.22557,-1.13355,2.15708,-0.50488
+4.07743,0.81390,-1.56585,-1.22491,-1.13386,2.15716,-0.50498
+4.08567,0.81380,-1.56625,-1.22426,-1.13416,2.15723,-0.50507
+4.09390,0.81370,-1.56664,-1.22362,-1.13446,2.15730,-0.50516
+4.10214,0.81368,-1.56669,-1.22354,-1.13450,2.15731,-0.50517
+4.11038,0.81355,-1.56719,-1.22275,-1.13485,2.15741,-0.50529
+4.11862,0.81342,-1.56768,-1.22198,-1.13520,2.15750,-0.50540
+4.12685,0.81329,-1.56816,-1.22121,-1.13555,2.15760,-0.50551
+4.13509,0.81316,-1.56863,-1.22046,-1.13589,2.15769,-0.50563
+4.14333,0.81304,-1.56909,-1.21972,-1.13623,2.15778,-0.50574
+4.15157,0.81291,-1.56955,-1.21899,-1.13656,2.15787,-0.50585
+4.15980,0.81279,-1.57000,-1.21827,-1.13689,2.15796,-0.50595
+4.16804,0.81267,-1.57044,-1.21756,-1.13722,2.15804,-0.50606
+4.17628,0.81256,-1.57088,-1.21687,-1.13754,2.15813,-0.50616
+4.18451,0.81244,-1.57130,-1.21618,-1.13785,2.15821,-0.50627
+4.19275,0.81233,-1.57173,-1.21550,-1.13817,2.15829,-0.50637
+4.20099,0.81221,-1.57214,-1.21484,-1.13847,2.15837,-0.50647
+4.20923,0.81210,-1.57255,-1.21418,-1.13878,2.15845,-0.50656
+4.21746,0.81199,-1.57295,-1.21353,-1.13908,2.15853,-0.50666
+4.22570,0.81187,-1.57339,-1.21282,-1.13940,2.15862,-0.50677
+4.23394,0.81166,-1.57426,-1.21149,-1.13997,2.15877,-0.50695
+4.24217,0.81145,-1.57510,-1.21017,-1.14054,2.15892,-0.50713
+4.25041,0.81124,-1.57594,-1.20887,-1.14110,2.15907,-0.50731
+4.25865,0.81103,-1.57676,-1.20759,-1.14165,2.15922,-0.50749
+4.26689,0.81083,-1.57757,-1.20633,-1.14219,2.15936,-0.50766
+4.27512,0.81063,-1.57836,-1.20508,-1.14273,2.15951,-0.50783
+4.28336,0.81043,-1.57915,-1.20386,-1.14326,2.15965,-0.50800
+4.29160,0.81024,-1.57992,-1.20265,-1.14378,2.15978,-0.50817
+4.29984,0.81005,-1.58068,-1.20146,-1.14430,2.15992,-0.50833
+4.30807,0.80986,-1.58142,-1.20029,-1.14481,2.16005,-0.50849
+4.31631,0.80967,-1.58216,-1.19914,-1.14532,2.16019,-0.50865
+4.32455,0.80949,-1.58288,-1.19800,-1.14581,2.16032,-0.50881
+4.33278,0.80931,-1.58359,-1.19688,-1.14631,2.16044,-0.50896
+4.34102,0.80914,-1.58429,-1.19577,-1.14679,2.16057,-0.50911
+4.34926,0.80896,-1.58498,-1.19468,-1.14727,2.16069,-0.50926
+4.35750,0.80879,-1.58566,-1.19361,-1.14775,2.16081,-0.50941
+4.36573,0.80863,-1.58632,-1.19255,-1.14822,2.16093,-0.50956
+4.37397,0.80846,-1.58698,-1.19151,-1.14868,2.16105,-0.50970
+4.38221,0.80830,-1.58762,-1.19048,-1.14914,2.16117,-0.50984
+4.39044,0.80814,-1.58826,-1.18947,-1.14959,2.16128,-0.50998
+4.39868,0.80798,-1.58889,-1.18848,-1.15004,2.16139,-0.51012
+4.40692,0.80783,-1.58950,-1.18749,-1.15048,2.16151,-0.51025
+4.41516,0.80767,-1.59011,-1.18653,-1.15091,2.16161,-0.51039
+4.42339,0.80752,-1.59070,-1.18557,-1.15134,2.16172,-0.51052
+4.43163,0.80738,-1.59129,-1.18463,-1.15176,2.16183,-0.51065
+4.43987,0.80723,-1.59187,-1.18371,-1.15218,2.16193,-0.51078
+4.44811,0.80709,-1.59244,-1.18279,-1.15260,2.16204,-0.51090
+4.45634,0.80695,-1.59300,-1.18189,-1.15300,2.16214,-0.51103
+4.46458,0.80681,-1.59355,-1.18101,-1.15341,2.16224,-0.51115
+4.47282,0.80667,-1.59409,-1.18013,-1.15381,2.16233,-0.51127
+4.48105,0.80654,-1.59462,-1.17927,-1.15420,2.16243,-0.51139
+4.48929,0.80640,-1.59515,-1.17843,-1.15459,2.16253,-0.51151
+4.49753,0.80627,-1.59567,-1.17759,-1.15497,2.16262,-0.51162
+4.50577,0.80614,-1.59618,-1.17677,-1.15535,2.16271,-0.51174
+4.51400,0.80602,-1.59668,-1.17596,-1.15572,2.16280,-0.51185
+4.52224,0.80589,-1.59717,-1.17516,-1.15609,2.16289,-0.51196
+4.53048,0.80577,-1.59765,-1.17437,-1.15645,2.16298,-0.51207
+4.53871,0.80565,-1.59813,-1.17359,-1.15681,2.16307,-0.51218
+4.54695,0.80553,-1.59860,-1.17283,-1.15717,2.16315,-0.51228
+4.55519,0.80541,-1.59906,-1.17208,-1.15752,2.16324,-0.51239
+4.56343,0.80530,-1.59952,-1.17133,-1.15786,2.16332,-0.51249
+4.57166,0.80519,-1.59997,-1.17060,-1.15821,2.16340,-0.51259
+4.57990,0.80507,-1.60041,-1.16988,-1.15854,2.16348,-0.51269
+4.58814,0.80496,-1.60084,-1.16917,-1.15887,2.16356,-0.51279
+4.59638,0.80486,-1.60127,-1.16847,-1.15920,2.16364,-0.51289
+4.60461,0.80475,-1.60169,-1.16778,-1.15953,2.16372,-0.51299
+4.61285,0.80464,-1.60210,-1.16710,-1.15985,2.16379,-0.51308
+4.62109,0.80454,-1.60251,-1.16643,-1.16016,2.16387,-0.51318
+4.62932,0.80444,-1.60291,-1.16577,-1.16048,2.16394,-0.51327
+4.63756,0.80438,-1.60316,-1.16536,-1.16067,2.16399,-0.51332
+4.64580,0.80426,-1.60364,-1.16459,-1.16103,2.16407,-0.51342
+4.65404,0.80415,-1.60410,-1.16382,-1.16138,2.16415,-0.51352
+4.66227,0.80404,-1.60457,-1.16306,-1.16173,2.16422,-0.51362
+4.67051,0.80394,-1.60502,-1.16231,-1.16208,2.16430,-0.51372
+4.67875,0.80383,-1.60547,-1.16158,-1.16242,2.16438,-0.51381
+4.68699,0.80373,-1.60591,-1.16085,-1.16276,2.16445,-0.51391
+4.69522,0.80362,-1.60634,-1.16014,-1.16309,2.16453,-0.51400
+4.70346,0.80352,-1.60677,-1.15944,-1.16342,2.16460,-0.51409
+4.71170,0.80342,-1.60719,-1.15874,-1.16374,2.16467,-0.51418
+4.71993,0.80333,-1.60760,-1.15806,-1.16406,2.16474,-0.51427
+4.72817,0.80323,-1.60801,-1.15739,-1.16438,2.16481,-0.51436
+4.73641,0.80313,-1.60841,-1.15672,-1.16469,2.16488,-0.51444
+4.74465,0.80308,-1.60863,-1.15637,-1.16486,2.16492,-0.51449
+4.75288,0.80291,-1.60922,-1.15544,-1.16527,2.16504,-0.51464
+4.76112,0.80274,-1.60981,-1.15453,-1.16568,2.16516,-0.51479
+4.76936,0.80257,-1.61039,-1.15363,-1.16608,2.16528,-0.51493
+4.77759,0.80241,-1.61095,-1.15274,-1.16648,2.16540,-0.51508
+4.78583,0.80224,-1.61151,-1.15187,-1.16687,2.16551,-0.51522
+4.79407,0.80208,-1.61206,-1.15100,-1.16726,2.16563,-0.51536
+4.80231,0.80193,-1.61260,-1.15015,-1.16765,2.16574,-0.51550
+4.81054,0.80177,-1.61314,-1.14932,-1.16802,2.16585,-0.51563
+4.81878,0.80162,-1.61366,-1.14849,-1.16840,2.16596,-0.51576
+4.82702,0.80147,-1.61418,-1.14768,-1.16877,2.16606,-0.51590
+4.83526,0.80133,-1.61469,-1.14688,-1.16913,2.16617,-0.51603
+4.84349,0.80118,-1.61519,-1.14609,-1.16949,2.16627,-0.51615
+4.85173,0.80104,-1.61568,-1.14531,-1.16985,2.16637,-0.51628
+4.85997,0.80090,-1.61616,-1.14454,-1.17020,2.16647,-0.51640
+4.86820,0.80076,-1.61664,-1.14379,-1.17055,2.16657,-0.51652
+4.87644,0.80063,-1.61711,-1.14304,-1.17089,2.16666,-0.51664
+4.88468,0.80049,-1.61757,-1.14231,-1.17123,2.16676,-0.51676
+4.89292,0.80036,-1.61803,-1.14158,-1.17156,2.16685,-0.51688
+4.90115,0.80023,-1.61848,-1.14087,-1.17189,2.16695,-0.51699
+4.90939,0.80011,-1.61892,-1.14017,-1.17222,2.16704,-0.51711
+4.91763,0.79998,-1.61935,-1.13947,-1.17254,2.16713,-0.51722
+4.92586,0.79986,-1.61978,-1.13879,-1.17286,2.16721,-0.51733
+4.93410,0.79974,-1.62020,-1.13812,-1.17317,2.16730,-0.51744
+4.94234,0.79962,-1.62061,-1.13746,-1.17348,2.16739,-0.51754
+4.95058,0.79950,-1.62102,-1.13680,-1.17379,2.16747,-0.51765
+4.95881,0.79943,-1.62126,-1.13641,-1.17397,2.16752,-0.51771
+4.96705,0.79931,-1.62168,-1.13574,-1.17429,2.16760,-0.51782
+4.97529,0.79920,-1.62210,-1.13507,-1.17460,2.16769,-0.51792
+4.98353,0.79908,-1.62250,-1.13442,-1.17490,2.16777,-0.51802
+4.99176,0.79905,-1.62262,-1.13422,-1.17499,2.16779,-0.51805
+5.00000,0.79895,-1.62303,-1.13356,-1.17531,2.16787,-0.51815
diff --git a/python/path_in_pixels.csv b/python/path_in_pixels.csv
new file mode 100644
index 0000000000000000000000000000000000000000..aa2da6b86e1a2da828316040bb983a11b2917be2
--- /dev/null
+++ b/python/path_in_pixels.csv
@@ -0,0 +1,24 @@
+0.24166,0.39084
+0.24166,0.39084
+0.24314,0.39084
+0.24462,0.39084
+0.24610,0.39235
+0.24758,0.39235
+0.25055,0.39235
+0.25943,0.39537
+0.30684,0.42410
+0.32906,0.43619
+0.44609,0.52842
+0.49646,0.57226
+0.54535,0.60855
+0.66386,0.71135
+0.70238,0.74461
+0.72757,0.76427
+0.74831,0.78543
+0.75719,0.79148
+0.79275,0.82172
+0.79867,0.82777
+0.81645,0.83684
+0.81793,0.83835
+0.81793,0.83986
+0.81793,0.83986
diff --git a/python/ur_simple_control/__pycache__/managers.cpython-311.pyc b/python/ur_simple_control/__pycache__/managers.cpython-311.pyc
index 5455df7279181101a5bbc6a30cb325d201481eab..278ae766df43c7922059b8626aa229b37a25a8ea 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__/__init__.cpython-311.pyc b/python/ur_simple_control/basics/__pycache__/__init__.cpython-311.pyc
index 365e03849ae95513d34c4a86d71412c495a29df3..46754c908e5bf6f1099bbea41f50042c6e03f530 100644
Binary files a/python/ur_simple_control/basics/__pycache__/__init__.cpython-311.pyc and b/python/ur_simple_control/basics/__pycache__/__init__.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 bd8ded4dfba677133962cb31a6759bb16044798a..d015b983dfd1f3a5c10e8f110c39caab5852592e 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/clik/__pycache__/clik_point_to_point.cpython-311.pyc b/python/ur_simple_control/clik/__pycache__/clik_point_to_point.cpython-311.pyc
index 9b3a270c6e1c04ea59a98227f6d366babc3201fd..6d54d607bb2c5e41063b9c43b89277f3124eb954 100644
Binary files a/python/ur_simple_control/clik/__pycache__/clik_point_to_point.cpython-311.pyc and b/python/ur_simple_control/clik/__pycache__/clik_point_to_point.cpython-311.pyc differ
diff --git a/python/ur_simple_control/clik/__pycache__/clik_trajectory_following.cpython-311.pyc b/python/ur_simple_control/clik/__pycache__/clik_trajectory_following.cpython-311.pyc
index 18db5c996e4046d8835349b00b98255b309ada41..bd7ec689a085ec851760ba7fdeef9af6ec978125 100644
Binary files a/python/ur_simple_control/clik/__pycache__/clik_trajectory_following.cpython-311.pyc and b/python/ur_simple_control/clik/__pycache__/clik_trajectory_following.cpython-311.pyc differ
diff --git a/python/ur_simple_control/clik/clik_point_to_point.py b/python/ur_simple_control/clik/clik_point_to_point.py
index ba8399c1675a5522e05d691cb9155eefdb023440..ca9cc340f3c6f65591ff30ba64b63f11b3c381cf 100644
--- a/python/ur_simple_control/clik/clik_point_to_point.py
+++ b/python/ur_simple_control/clik/clik_point_to_point.py
@@ -27,6 +27,8 @@ def get_args():
             formatter_class=argparse.ArgumentDefaultsHelpFormatter)
     parser.add_argument('--simulation', action=argparse.BooleanOptionalAction, 
             help="whether you are running the UR simulator", default=False)
+    parser.add_argument('--debug_prints', action=argparse.BooleanOptionalAction, 
+            help="print some info for debugging", default=False)
     parser.add_argument('--pinocchio-only', action=argparse.BooleanOptionalAction, 
             help="whether you want to just integrate with pinocchio", default=False)
     parser.add_argument('--visualize', action=argparse.BooleanOptionalAction, 
@@ -225,7 +227,11 @@ def moveL(args, robot, goal_point):
     clik_controller = getClikController(args)
     controlLoop = partial(controlLoopClik, robot, clik_controller)
     # we're not using any past data or logging, hence the empty arguments
-    loop_manager = ControlLoopManager(robot, controlLoop, args, {}, {})
+    log_item = {
+            'qs' : np.zeros(robot.model.nq),
+            'dqs' : np.zeros(robot.model.nq),
+        }
+    loop_manager = ControlLoopManager(robot, controlLoop, args, {}, log_item)
     log_dict, final_iteration = loop_manager.run()
     # TODO: remove, this isn't doing anything
     time.sleep(0.01)
diff --git a/python/ur_simple_control/clik/clik_trajectory_following.py b/python/ur_simple_control/clik/clik_trajectory_following.py
index c57b099427e0c0c03a5048b52cbfc26c634c43d6..621be7dc9234cc8bc663b6f0d9c5bb9ccc6bf797 100644
--- a/python/ur_simple_control/clik/clik_trajectory_following.py
+++ b/python/ur_simple_control/clik/clik_trajectory_following.py
@@ -130,7 +130,10 @@ def clikCartesianPathIntoJointPath(path, args, robot, \
         else:
             if i == args.max_running_clik_iterations - 1:
                 print("DID NOT CONVERGE -- exiting")
-                ControlLoopManager.stopHandler(None, None)
+                # nothing is moving 
+                # and i'm not even using a manager here
+                # so no need, right?
+                #ControlLoopManager.stopHandler(None, None, None)
                 exit()
 
     ##############################################
diff --git a/python/ur_simple_control/dmp/__pycache__/dmp.cpython-311.pyc b/python/ur_simple_control/dmp/__pycache__/dmp.cpython-311.pyc
index b69c2546b2f2d3fb8359d3d6fa2b74bce0dfc2e6..dfdea907d28b992845d18251ccc1b2c9062a2a40 100644
Binary files a/python/ur_simple_control/dmp/__pycache__/dmp.cpython-311.pyc and b/python/ur_simple_control/dmp/__pycache__/dmp.cpython-311.pyc differ
diff --git a/python/ur_simple_control/managers.py b/python/ur_simple_control/managers.py
index 716a238d6d44df1c272c3c5decf47050f656e220..7d0f8e9a48bc5827029d7a6b2f539d9f9979b0a0 100644
--- a/python/ur_simple_control/managers.py
+++ b/python/ur_simple_control/managers.py
@@ -16,8 +16,9 @@ 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
+from ur_simple_control.visualize.visualize import plotFromDict, realTimePlotter
 from pinocchio.visualize import MeshcatVisualizer
+from multiprocessing import Process, Queue
 
 """
 general notes
@@ -99,30 +100,51 @@ Other info:
 
 """
 class ControlLoopManager:
-    def __init__(self, robot_manager, controlLoop, args, save_past_dict, log_dict):
+    def __init__(self, robot_manager, controlLoop, args, save_past_item, log_item):
         signal.signal(signal.SIGINT, self.stopHandler)
         self.max_iterations = args.max_iterations
         self.robot_manager = robot_manager
         self.controlLoop = controlLoop
+        self.final_iteration = -1 # because we didn't even start yet
         self.args = args
         self.past_data = {}
         # save_past_dict has to have the key and 1 example of what you're saving
         # so that it's type can be inferred (but we're in python so types don't really work).
         # the good thing is this way you also immediatelly put in the initial values
-        for key in save_past_dict:
+        for key in save_past_item:
             self.past_data[key] = deque()
             # immediatelly populate every deque with initial values
-            for i in range(args.past_window_size):
+            for i in range(self.args.past_window_size):
                 # deepcopy just in case, better safe than sorry plus it's during initialization,
                 # not real time
-                self.past_data[key].append(copy.deepcopy(save_past_dict[key]))
+                self.past_data[key].append(copy.deepcopy(save_past_item[key]))
 
         # similar story for log_dict as for past_data,
         # except this is not used in the control loop,
-        # and we pre-declare the sizes 
-        # TODO the itialization is done on client side,
-        # but i want to do it here. this is a big ick
-        self.log_dict = log_dict
+        # we don't predeclare sizes, but instead
+        # just shove items into linked lists (python lists) in dictionaries (hash-maps)
+        self.log_dict = {}
+        for key in log_item:
+            self.log_dict[key] = []
+
+        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: 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")
+            # 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")
+            # let it boot up, hope you're not in a hurry lmao
+            time.sleep(1)
 
     """
     run
@@ -138,7 +160,9 @@ class ControlLoopManager:
             start = time.time()
             # TODO make the arguments to controlLoop kwargs or whatever
             # so that you don't have to declare them on client side if you're not using them
-            breakFlag, latest_to_save_dict, log_entry_dict = self.controlLoop(i, self.past_data)
+            breakFlag, latest_to_save_dict, log_item = self.controlLoop(i, self.past_data)
+            self.final_iteration = i
+
             # update past rolling window
             # TODO: write an assert assuring the keys are what's been promised
             # (ideally this is done only once, not every time, so think whether/how that can be avoided)
@@ -151,21 +175,35 @@ class ControlLoopManager:
             # log the data
             # check that you can
             # TODO only need to check this once, pls enforce better
-            for key in log_entry_dict:
-                if key not in self.log_dict.keys():
-                    break
-                    #self.robot_manager.stopHandler(None, None)
-                self.log_dict[key][i] = log_entry_dict[key]
+            #if len(self.log_dict) > 0:
+            for key in log_item:
+                    #if key not in self.log_dict.keys():
+                    #    raise KeyError("you need to provide log items you promised!")
+                    #    break
+                        #self.robot_manager.stopHandler(None, None)
+                self.log_dict[key].append(log_item[key])
             
-            # TODO: offload this to a different 
-            # process, it's hindering real-time performance (not by a lot,
-            # but it does)
-            if self.args.visualize:
-                if i % 20 == 0:
+            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
+                if self.args.visualize_manipulator:
                     self.robot_manager.viz.display(self.robot_manager.q)
+                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())
+
             # break if done
             if breakFlag:
                 break
+
+            # sleep for the rest of the frequency cycle
             end = time.time()
             diff = end - start
             if self.robot_manager.dt < diff:
@@ -174,13 +212,29 @@ class ControlLoopManager:
                 continue
             else:
                 time.sleep(self.robot_manager.dt - diff)
-            self.final_iteration = i
+
+
         if self.args.debug_prints:
             if i < self.max_iterations -1:
                 print("success in", i, "iterations!")
             else:
                 print("FAIL: did not succed in", max_iterations, "iterations")
 
+        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")
+            # just fcks me over when i call again from stopHandler,
+            # 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()
+
+        # now turn the logs into numpy arrays
+        for key in self.log_dict:
+            self.log_dict[key] = np.array(self.log_dict[key])
+
         return self.log_dict, self.final_iteration
 
     """
@@ -196,15 +250,30 @@ class ControlLoopManager:
         print('sending 300 speedjs full of zeros and exiting')
         for i in range(300):
             vel_cmd = np.zeros(6)
-            self.robot_manager.rtde_control.speedJ(vel_cmd, 0.1, 1.0 / 500)
+            #self.robot_manager.rtde_control.speedJ(vel_cmd, 0.1, 1.0 / 500)
+            self.robot_manager.sendQd(vel_cmd)
         # hopefully this actually stops it
-        self.robot_manager.rtde_control.speedStop(1)
-        print("sending a stopj as well")
-        self.robot_manager.rtde_control.stopJ(1)
-        print("putting it to freedrive for good measure too")
-        self.robot_manager.rtde_control.freedriveMode()
+        if not self.args.pinocchio_only:
+            self.robot_manager.rtde_control.speedStop(1)
+            print("sending a stopj as well")
+            self.robot_manager.rtde_control.stopJ(1)
+            print("putting it to freedrive for good measure too")
+            self.robot_manager.rtde_control.freedriveMode()
+
+        # need to turn logs into ndarrays here too 
+        for key in self.log_dict:
+            self.log_dict[key] = np.array(self.log_dict[key])
         plotFromDict(self.log_dict, self.final_iteration, self.args)
-        self.robot_manager.rtde_control.endFreedriveMode()
+        
+        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()
 
 """
 robotmanager:
@@ -243,7 +312,7 @@ class RobotManager:
         # we're using meshcat exclusively.
         # there are no good options, 
         # but this does work and isn't a dead project
-        if args.visualize:
+        if args.visualize_manipulator:
             # for whatever reason the hand-e files don't have/
             # meshcat can't read scaling information.
             # so we scale manually
@@ -256,6 +325,48 @@ class RobotManager:
             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)
+
+        # ur specific magic numbers 
+        # NOTE: all of this is ur-specific, and needs to be if-ed if other robots are added.
+        # TODO: this is 8 in pinocchio and that's what you actually use 
+        # if we're being real lmao
+        # the TODO here is make this consistent obviously
+        self.n_arm_joints = 6
+        # last joint because pinocchio adds base frame as 0th joint.
+        # and since this is unintuitive, we add the other variable too
+        # so that the control designer doesn't need to think about such bs
+        self.JOINT_ID = 6
+        self.update_rate = 500 #Hz
+        self.dt = 1 / self.update_rate
+        # you better not give me crazy stuff
+        # and i'm not clipping it, you're fixing it
+        assert args.acceleration <= 1.7 and args.acceleration > 0.0
+        # this is the number passed to speedj
+        self.acceleration = args.acceleration
+        # NOTE: this is evil and everything only works if it's set to 1
+        # you really should control the acceleration via the acceleration argument.
+        assert args.speed_slider <= 1.0 and args.acceleration > 0.0
+        # TODO: these are almost certainly higher
+        # NOTE and TODO: speed slider is evil, put it to 1, handle the rest yourself.
+        # NOTE: i have no idea what's the relationship between max_qdd and speed slider
+        #self.max_qdd = 1.7 * args.speed_slider
+        # NOTE: this is an additional kinda evil speed limitation (by this code, not UR).
+        # we're clipping joint velocities with this.
+        # if your controllers are not what you expect, you might be commanding a very high velocity,
+        # which is clipped, resulting in unexpected movement.
+        self.max_qd = 0.5 * args.speed_slider
 
 
         # TODO: make general
@@ -298,38 +409,9 @@ class RobotManager:
             self.rtde_receive = RTDEReceiveInterface("127.0.0.1")
             self.rtde_io = RTDEIOInterface("127.0.0.1")
 
-        # ur specific magic numbers 
-        # NOTE: all of this is ur-specific, and needs to be if-ed if other robots are added.
-        # TODO: this is 8 in pinocchio and that's what you actually use 
-        # if we're being real lmao
-        # the TODO here is make this consistent obviously
-        self.n_arm_joints = 6
-        # last joint because pinocchio adds base frame as 0th joint.
-        # and since this is unintuitive, we add the other variable too
-        # so that the control designer doesn't need to think about such bs
-        self.JOINT_ID = 6
-        self.update_rate = 500 #Hz
-        self.dt = 1 / self.update_rate
-        # you better not give me crazy stuff
-        # and i'm not clipping it, you're fixing it
-        assert args.acceleration <= 1.7 and args.acceleration > 0.0
-        # this is the number passed to speedj
-        self.acceleration = args.acceleration
-        # NOTE: this is evil and everything only works if it's set to 1
-        # you really should control the acceleration via the acceleration argument.
-        assert args.speed_slider <= 1.0 and args.acceleration > 0.0
         self.speed_slider = args.speed_slider
         if not args.pinocchio_only:
             self.rtde_io.setSpeedSlider(args.speed_slider)
-        # TODO: these are almost certainly higher
-        # NOTE and TODO: speed slider is evil, put it to 1, handle the rest yourself.
-        # NOTE: i have no idea what's the relationship between max_qdd and speed slider
-        #self.max_qdd = 1.7 * args.speed_slider
-        # NOTE: this is an additional kinda evil speed limitation (by this code, not UR).
-        # we're clipping joint velocities with this.
-        # if your controllers are not what you expect, you might be commanding a very high velocity,
-        # which is clipped, resulting in unexpected movement.
-        self.max_qd = 0.5 * args.speed_slider
 
     """
     calibrateFT
@@ -536,7 +618,10 @@ class RobotManager:
         return wrench
 
     def getWrench(self):
-        self.wrench = np.array(self.rtde_receive.getActualTCPForce()) - self.wrench_offset
+        if not self.pinocchio_only:
+            self.wrench = np.array(self.rtde_receive.getActualTCPForce()) - self.wrench_offset
+        else:
+            self.wrench = np.random.random(self.n_arm_joints)
         return self.wrench.copy()
 
     """
@@ -559,6 +644,13 @@ class RobotManager:
             self.rtde_control.speedJ(qd_cmd, self.acceleration, self.dt)
         else:
             # this one takes all 8 elements of qd since we're still in pinocchio
+            # this is ugly, todo: fix
+            if len(qd) == 6:
+                qd = qd.reshape((6,))
+                qd = list(qd)
+                qd.append(0.0)
+                qd.append(0.0)
+                qd = np.array(qd)
             self.q = pin.integrate(self.model, self.q, qd * self.dt)
 
 
diff --git a/python/ur_simple_control/util/__pycache__/calib_board_hacks.cpython-311.pyc b/python/ur_simple_control/util/__pycache__/calib_board_hacks.cpython-311.pyc
index 57e83edc7c7b02ed7d437219bc112d7cbf82253b..8d53c29d36e0513077275e824e0101c7fff95fe1 100644
Binary files a/python/ur_simple_control/util/__pycache__/calib_board_hacks.cpython-311.pyc and b/python/ur_simple_control/util/__pycache__/calib_board_hacks.cpython-311.pyc differ
diff --git a/python/ur_simple_control/util/__pycache__/draw_path.cpython-311.pyc b/python/ur_simple_control/util/__pycache__/draw_path.cpython-311.pyc
index 23e3c67c35826439c4c8181d26cb517804e294a3..7a563b7a7003b18cc44e56c7becc4c8bc9f83fec 100644
Binary files a/python/ur_simple_control/util/__pycache__/draw_path.cpython-311.pyc and b/python/ur_simple_control/util/__pycache__/draw_path.cpython-311.pyc differ
diff --git a/python/ur_simple_control/util/__pycache__/freedrive.cpython-311.pyc b/python/ur_simple_control/util/__pycache__/freedrive.cpython-311.pyc
index ab42d0ed7150f7f0ccd976b8ca6494a1da93e2a5..bf0e9a6472218454360769e79d76b2c88ed33ffe 100644
Binary files a/python/ur_simple_control/util/__pycache__/freedrive.cpython-311.pyc and b/python/ur_simple_control/util/__pycache__/freedrive.cpython-311.pyc differ
diff --git a/python/ur_simple_control/util/draw_path.py b/python/ur_simple_control/util/draw_path.py
index 4a54dca26f391b847aa8811f09a76e632748e387..b06db178645e9bdce5a13178429b022089c150a6 100644
--- a/python/ur_simple_control/util/draw_path.py
+++ b/python/ur_simple_control/util/draw_path.py
@@ -18,6 +18,7 @@ import matplotlib.pyplot as plt
 # Thus it is the correct tool for the job and there's no need
 # to reimplement it from mouse events.
 from matplotlib.widgets import LassoSelector
+from ur_simple_control.clik.clik_point_to_point import get_args
 # Path is the most generic matplotlib class.
 # It has some convenient functions to handle the draw line,
 # i.e. collection of points, but just refer to matplotlib 
@@ -45,7 +46,7 @@ class DrawPathManager:
     # made to save and exit
     def accept(self, event):
         if event.key == "enter":
-            if args.debug_prints:
+            if self.args.debug_prints:
                 print("pixel path:")
                 print(self.path)
             self.disconnect()
@@ -74,4 +75,12 @@ def drawPath(args):
 
 
 if __name__ == '__main__':
+    args = get_args()
     drawPath(args)
+    #plt.ion()
+    #fig = plt.figure()
+    #canvas = fig.canvas
+    #ax = fig.add_subplot(111)
+    #ax.plot(np.arange(100), np.sin(np.arange(100)))
+    #canvas.draw()
+    #canvas.flush_events()
diff --git a/python/ur_simple_control/util/path_in_pixels.csv b/python/ur_simple_control/util/path_in_pixels.csv
new file mode 100644
index 0000000000000000000000000000000000000000..99a805f95b3f92eb11cb419ff1357cc0df1d666e
--- /dev/null
+++ b/python/ur_simple_control/util/path_in_pixels.csv
@@ -0,0 +1,17 @@
+0.19034,0.61585
+0.22610,0.61585
+0.24249,0.61585
+0.25590,0.61585
+0.27229,0.62037
+0.31848,0.62037
+0.33189,0.62037
+0.34828,0.62037
+0.40788,0.62037
+0.42576,0.62490
+0.43321,0.62490
+0.48387,0.63093
+0.49877,0.63093
+0.50771,0.63093
+0.52410,0.63395
+0.52261,0.63395
+0.52261,0.63395
diff --git a/python/ur_simple_control/visualize/__pycache__/make_run.cpython-311.pyc b/python/ur_simple_control/visualize/__pycache__/make_run.cpython-311.pyc
index 23e19ea34b35ec3423378895ac32ab709f55df04..00cb31d5333325fb66550d6d78158995c55770a6 100644
Binary files a/python/ur_simple_control/visualize/__pycache__/make_run.cpython-311.pyc and b/python/ur_simple_control/visualize/__pycache__/make_run.cpython-311.pyc differ
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 44f507b6f1ebdeda62574ea70174ab2afce3bc34..ceacac05da4b5625053574aeb600448166a3a142 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/manipulator_visual_motion_analyzer.py b/python/ur_simple_control/visualize/manipulator_visual_motion_analyzer.py
index 59952dc1d02ab557f1ff176a436e9bb7495d3802..e949abd66610a22caf14e894e8144b76b539f8f5 100644
--- a/python/ur_simple_control/visualize/manipulator_visual_motion_analyzer.py
+++ b/python/ur_simple_control/visualize/manipulator_visual_motion_analyzer.py
@@ -879,6 +879,7 @@ if __name__ == "__main__":
     log_data_file_name = "/home/gospodar/lund/praxis/projects/ur_simple_control/python/examples/data/clik_run_001.pickle"
     args_file_name = "/home/gospodar/lund/praxis/projects/ur_simple_control/python/examples/data/clik_run_001_args.pickle"
     log_data, args = loadRunForAnalysis(log_data_file_name, args_file_name)
+    args.visualize_manipulator = False
     log_data = cleanUpRun(log_data, log_data['qs'].shape[0], 200)
     robot = RobotManager(args)
     log_data = loadRun(args, robot, log_data)
diff --git a/python/ur_simple_control/visualize/robot_stuff/__pycache__/InverseKinematics.cpython-311.pyc b/python/ur_simple_control/visualize/robot_stuff/__pycache__/InverseKinematics.cpython-311.pyc
index 81bc2f37aa231c526f812026231dd727fce4febf..ae4581af57977272c8b86b55b63a71b9070d48bf 100644
Binary files a/python/ur_simple_control/visualize/robot_stuff/__pycache__/InverseKinematics.cpython-311.pyc and b/python/ur_simple_control/visualize/robot_stuff/__pycache__/InverseKinematics.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/robot_stuff/__pycache__/drawing.cpython-311.pyc b/python/ur_simple_control/visualize/robot_stuff/__pycache__/drawing.cpython-311.pyc
index d2a79d892789ed5d043d63dd60327e7406378152..7378640414b8a4afdd2020056b5600db66ba9480 100644
Binary files a/python/ur_simple_control/visualize/robot_stuff/__pycache__/drawing.cpython-311.pyc and b/python/ur_simple_control/visualize/robot_stuff/__pycache__/drawing.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/robot_stuff/__pycache__/drawing_for_anim.cpython-311.pyc b/python/ur_simple_control/visualize/robot_stuff/__pycache__/drawing_for_anim.cpython-311.pyc
index f2d4b539a9e209f4ee72fd81e1ec94f5f4debed2..43efb1598bae5ab1593b3c70a3831de06bbb9a64 100644
Binary files a/python/ur_simple_control/visualize/robot_stuff/__pycache__/drawing_for_anim.cpython-311.pyc and b/python/ur_simple_control/visualize/robot_stuff/__pycache__/drawing_for_anim.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/robot_stuff/__pycache__/follow_curve.cpython-311.pyc b/python/ur_simple_control/visualize/robot_stuff/__pycache__/follow_curve.cpython-311.pyc
index d6b1db7ea7b8d7d51b137c9a5a6167e09fd8afef..77ab0293549f91eb8b25ce64b155d3531f40e600 100644
Binary files a/python/ur_simple_control/visualize/robot_stuff/__pycache__/follow_curve.cpython-311.pyc and b/python/ur_simple_control/visualize/robot_stuff/__pycache__/follow_curve.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/robot_stuff/__pycache__/forw_kinm.cpython-311.pyc b/python/ur_simple_control/visualize/robot_stuff/__pycache__/forw_kinm.cpython-311.pyc
index 8ce06754984bf102f517d67911f123d9a2450c28..6eb87525bc95c201ad61c556d896ffb5d836cb38 100644
Binary files a/python/ur_simple_control/visualize/robot_stuff/__pycache__/forw_kinm.cpython-311.pyc and b/python/ur_simple_control/visualize/robot_stuff/__pycache__/forw_kinm.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/robot_stuff/__pycache__/inv_kinm.cpython-311.pyc b/python/ur_simple_control/visualize/robot_stuff/__pycache__/inv_kinm.cpython-311.pyc
index a1a7d7b3fee4c24af42dbb9f56b128ccd3d51e72..7634274867a3e3dac106a67031c328cb6dd8f7ab 100644
Binary files a/python/ur_simple_control/visualize/robot_stuff/__pycache__/inv_kinm.cpython-311.pyc and b/python/ur_simple_control/visualize/robot_stuff/__pycache__/inv_kinm.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/robot_stuff/__pycache__/joint_as_hom_mat.cpython-311.pyc b/python/ur_simple_control/visualize/robot_stuff/__pycache__/joint_as_hom_mat.cpython-311.pyc
index ae7fe28baef2a29d9ffc9307fdb9eb5dad48b285..b75ebe8f8d79d20222496eab4aae6a55715a8a71 100644
Binary files a/python/ur_simple_control/visualize/robot_stuff/__pycache__/joint_as_hom_mat.cpython-311.pyc and b/python/ur_simple_control/visualize/robot_stuff/__pycache__/joint_as_hom_mat.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/robot_stuff/__pycache__/utils.cpython-311.pyc b/python/ur_simple_control/visualize/robot_stuff/__pycache__/utils.cpython-311.pyc
index bd0beaf38e2640efba3ad16919ec4d6a81f2961c..0dfafc8954b5e5e1c2cb742e645539c63161200d 100644
Binary files a/python/ur_simple_control/visualize/robot_stuff/__pycache__/utils.cpython-311.pyc and b/python/ur_simple_control/visualize/robot_stuff/__pycache__/utils.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/robot_stuff/__pycache__/webots_api_helper_funs.cpython-311.pyc b/python/ur_simple_control/visualize/robot_stuff/__pycache__/webots_api_helper_funs.cpython-311.pyc
index 6bb8b3b96da35c8c2f45694c13c101e1c2ba64e3..df2953e577742e7fc28158824737a11f2704525a 100644
Binary files a/python/ur_simple_control/visualize/robot_stuff/__pycache__/webots_api_helper_funs.cpython-311.pyc and b/python/ur_simple_control/visualize/robot_stuff/__pycache__/webots_api_helper_funs.cpython-311.pyc differ
diff --git a/python/ur_simple_control/visualize/visualize.py b/python/ur_simple_control/visualize/visualize.py
index 4c7f71e165100d56a01d20fcd83d075e6847334e..6d8491efa669a753dab35222a26693e43ede3b93 100644
--- a/python/ur_simple_control/visualize/visualize.py
+++ b/python/ur_simple_control/visualize/visualize.py
@@ -1,5 +1,36 @@
 import numpy as np
 import matplotlib.pyplot as plt
+from collections import deque, namedtuple
+import time
+import copy
+
+# tkinter stuff
+from matplotlib.backends.backend_tkagg import (FigureCanvasTkAgg, NavigationToolbar2Tk)
+from tkinter import *
+from tkinter.ttk import *
+
+# rows and cols are flipped lel
+def getNRowsMColumnsFromTotalNumber(n_plots):
+    if n_plots == 1:
+        n_cols = 1
+        n_rows = 1
+    if n_plots == 2:
+        n_rows = 2
+        n_cols = 1
+    # i'm not going to bother with differently sized plots 
+    if (n_plots == 3) or (n_plots == 4):
+        n_cols = 2
+        n_rows = 2
+    if (n_plots == 5) or (n_plots == 6):
+        n_cols = 2
+        n_rows = 3
+    if (n_plots >= 7) and (n_plots <= 9):
+        n_cols = 3
+        n_rows = 3
+    if n_plots >= 10:
+        raise NotImplementedError("sorry, you can only do up to 9 plots. more require tabs, and that's future work")
+    return n_rows, n_cols
+
 
 """ 
 plotFromDict
@@ -9,18 +40,14 @@ plots logs stored in a dictionary
   is what you plot
 """ 
 def plotFromDict(plot_data, final_iteration, args):
-    # TODO cut zeros from data
-    # TODO: replace with actual time
-    # --> you should be able to extract/construct this from dmp data
-    #     or some timing
+    # TODO: replace with actual time ( you know what dt is from args)
     t = np.arange(final_iteration)
-    # TODO make the plot number assignment general
-    n_cols = 2
-    n_rows = 2
+    n_cols, n_rows = getNRowsMColumnsFromTotalNumber(len(plot_data))
     # this is what subplot wants
     subplot_col_row = str(n_cols) + str(n_rows)
     ax_dict ={}
-    # TODO: choose a nice color palette
+    # NOTE: cutting off after final iterations is a vestige from a time
+    # when logs were prealocated arrays, but it ain't hurtin' nobody as it is
     for i, data_key in enumerate(plot_data):
         colors = plt.cm.jet(np.linspace(0, 1, plot_data[data_key].shape[1]))
         ax_dict[data_key] = plt.subplot(int(subplot_col_row + str(i + 1)))
@@ -30,9 +57,102 @@ def plotFromDict(plot_data, final_iteration, args):
     plt.show()
 
 
-# you need to write out specifications for this.
-# only then implement.
-# this is too fucked to try to do it from your head
-#class RealTimePlotter:
-#    def __init__(self, TODO):
+"""
+realTimePlotter
+---------------
+- true to its name
+"""
+# STUPID MATPLOTLIB CAN'T HANDLE MULTIPLE FIGURES FROM DIFFERENT PROCESS
+# LITERALLY REFUSES TO GET ME A FIGURE
+def realTimePlotter(args, queue):
+    if args.debug_prints:
+#        print("REAL_TIME_PLOTTER: real time visualizer has been summoned")
+        print("REAL_TIME_PLOTTER: i got this queue:", queue)
+    plt.ion()
+    fig = plt.figure()
+    canvas = fig.canvas
+    queue.put("success")
+    logs_deque = {}
+    logs_ndarrays = {}
+    AxisAndArtists = namedtuple("AxAndArtists", "ax artists")
+    axes_and_updating_artists = {}
+    if args.debug_prints:
+        print("REAL_TIME_PLOTTER: i am waiting for the first log_item to initialize myself")
+    log_item = queue.get()
+    if args.debug_prints:
+        print("REAL_TIME_PLOTTER: got log_item, i am initializing the desired plots")
+    ROLLING_BUFFER_SIZE = 100
+    t = np.arange(ROLLING_BUFFER_SIZE)
+
+    n_cols, n_rows = getNRowsMColumnsFromTotalNumber(len(log_item))
+    # this is what subplot wants
+    subplot_col_row = str(n_cols) + str(n_rows)
+    # preload some zeros and initialize plots
+    for i, data_key in enumerate(log_item):
+        # you give single-vector numpy arrays, i instantiate and plot lists of these 
+        # so for your (6,) vector, i plot (N, 6) ndarrays resulting in 6 lines of length N.
+        # i manage N because plot data =/= all data for efficiency reasons.
+        assert type(log_item[data_key]) == np.ndarray
+        assert len(log_item[data_key].shape) == 1
+        # prepopulate with zeros via list comperhension (1 item is the array, the queue is 
+        # ROLLING_BUFFER_SIZE of such arrays, and these go in and out at every time step)
+        logs_deque[data_key] = deque([log_item[data_key] for index in range(ROLLING_BUFFER_SIZE)])
+        # i can only plot np_arrays, so these queues will have to be turned to nparray at every timestep
+        # thankfull, deque is an iterable
+        logs_ndarrays[data_key] = np.array(logs_deque[data_key])
+        colors = plt.cm.jet(np.linspace(0, 1, log_item[data_key].shape[0]))
+        ax = fig.add_subplot(int(subplot_col_row + str(i + 1)))
+        # some hacks, i'll have to standardize things somehow
+        if data_key == 'qs':
+            ax.set_ylim(bottom=-6.14, top=6.14)
+        if data_key == 'dmp_poss':
+            ax.set_ylim(bottom=-6.14, top=6.14)
+        if data_key == 'dqs':
+            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':
+            ax.set_ylim(bottom=-20.0, top=20.0)
+        if data_key == 'tau':
+            ax.set_ylim(bottom=-2.0, top=2.0)
+        axes_and_updating_artists[data_key] = AxisAndArtists(ax, {})
+        for j in range(log_item[data_key].shape[0]):
+            # the comma is because plot retuns ax, sth_unimportant.
+            # and python let's us assign iterable return values like this
+            axes_and_updating_artists[data_key].artists[str(data_key) + str(j)], = \
+                    axes_and_updating_artists[data_key].ax.plot(t, logs_ndarrays[data_key][:,j], 
+                                                             color=colors[j], label=data_key + "_" + str(j))
+        axes_and_updating_artists[data_key].ax.legend()
+
+    # 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()
+    plt.close(fig)
+