diff --git a/python/examples/.drawing_from_input_drawing.py.swp b/python/examples/.drawing_from_input_drawing.py.swp
new file mode 100644
index 0000000000000000000000000000000000000000..ae7c0e382af11260516d6ef45d8da293311fa6fb
Binary files /dev/null and b/python/examples/.drawing_from_input_drawing.py.swp differ
diff --git a/python/examples/drawing_from_input_drawing.py b/python/examples/drawing_from_input_drawing.py
index 41d9107279e4923f2ba771c0734c52390a6728fc..8ec4bf7185bf64a458b9ec9b4407a0dbefe847d2 100644
--- a/python/examples/drawing_from_input_drawing.py
+++ b/python/examples/drawing_from_input_drawing.py
@@ -112,7 +112,7 @@ def getArgs():
             default=0.001)
     parser.add_argument('--alpha', type=float, \
             help="force feedback proportional coefficient", \
-            default=0.005)
+            default=0.003)
     # TODO add low pass filtering and make it's parameters arguments too
     #######################################################################
     #                       task specific arguments                       #
@@ -120,10 +120,10 @@ def getArgs():
     # TODO measure this for the new board
     parser.add_argument('--board-width', type=float, \
             help="width of the board (in meters) the robot will write on", \
-            default=0.2)
+            default=0.3)
     parser.add_argument('--board-height', type=float, \
             help="height of the board (in meters) the robot will write on", \
-            default=0.2)
+            default=0.3)
     parser.add_argument('--calibration', action=argparse.BooleanOptionalAction, \
             help="whether you want to do calibration", default=False)
     parser.add_argument('--draw-new', action=argparse.BooleanOptionalAction, \
@@ -238,16 +238,19 @@ def controlLoopWriting(dmp, tc, controller, robot, i, past_data):
     # is actually better, who knows.
     # also you probably want to do the fusion of that onto tau (got from J.T @ wrench)
     wrench = robot.getWrench()
+    # evil hack because wrench is  not zeros (why? - no idea whatsoever)
+    # TODO: run it empty and zero it
+    wrench = wrench - np.array([-1.14156273, 11.05155707,  1.88523016, -0.06643418,  0.16550734,  0.09019818])
     # deepcopy for good coding practise (and correctness here)
     save_past_dict['wrench'] = copy.deepcopy(wrench)
     # rolling average
-    # TODO: try doing a low-pass filter instead
-    # TODO: check where the shape of this is correct (should be, but check)
-    #wrench = np.average(np.array(past_data['wrench']), axis=0)
+    wrench = np.average(np.array(past_data['wrench']), axis=0)
+    if i % 100 == 0:
+        print(wrench)
     # first-order low pass filtering instead
     # beta is a smoothing coefficient, smaller values smooth more, has to be in [0,1]
-    beta = 0.01
-    wrench = beta * wrench + (1 - beta) * past_data['wrench'][-1]
+    #beta = 0.01
+    #wrench = beta * wrench + (1 - beta) * past_data['wrench'][-1]
     pin.forwardKinematics(robot.model, robot.data, q)
     J = pin.computeJointJacobian(robot.model, robot.data, q, robot.JOINT_ID)
     dq = robot.getQd()[:6].reshape((6,1))
@@ -260,7 +263,9 @@ def controlLoopWriting(dmp, tc, controller, robot, i, past_data):
     # TODO: don't use vel for qd, it's confusion (yes, that means changing dmp code too)
     # TODO: put this in a controller function for easy swapping (or don't if you won't swap)
     # solve this q number connundrum
-    vel_cmd = dmp.vel + args.kp * (dmp.pos - q[:6].reshape((6,1))) - args.alpha * tau
+    # TODO evil hack
+    #vel_cmd = dmp.vel + args.kp * (dmp.pos - q[:6].reshape((6,1))) - args.alpha * tau
+    vel_cmd = dmp.vel + args.kp * (dmp.pos - q[:6].reshape((6,1))) + args.alpha * tau
     robot.sendQd(vel_cmd)
 
     # TODO find a better criterion for stopping
@@ -336,7 +341,12 @@ if __name__ == "__main__":
     else:
         #path = path + np.array([0.0, -0.0938, 0.0])
         #path = path + np.array([0.0, 0.0, -0.0938])
-        path = path + np.array([0.0, 0.0, -0.0873])
+        # NEW MARKER IS SHORTER
+        #path = path + np.array([0.0, 0.0, -0.0813])
+        # NOTE GOOD FOR SHORT
+        #path = path + np.array([0.0, 0.0, -0.0750])
+        path = path + np.array([0.0, 0.0, -0.0791])
+        #path = path + np.array([0.0, 0.0, -0.1073])
         #path = path + np.array([0.0, 0.2938, 0.0])
 
     # and if you don't want to draw new nor calibrate, but you want the same path
@@ -403,7 +413,18 @@ if __name__ == "__main__":
     #moveL(args, robot, current_pose)
     # move to initial pose
     dmp.step(1/500)
-    moveJ(args, robot, dmp.pos.reshape((6,)))
+    first_q = dmp.pos.reshape((6,))
+    first_q = list(first_q)
+    first_q.append(0.0)
+    first_q.append(0.0)
+    first_q = np.array(first_q)
+    #pin.forwardKinematics(robot.model, robot.data, first_q)
+    mtool = robot.getMtool(q_given=first_q)
+    mtool.translation[1] = mtool.translation[1] - 0.005
+    moveL(args, robot, mtool)
+    #moveL
+
+    #moveJ(args, robot, dmp.pos.reshape((6,)))
     # and now we can actually run
     loop_manager.run()
     mtool = robot.getMtool()
diff --git a/python/examples/joint_trajectory.csv b/python/examples/joint_trajectory.csv
index 63017f42fa0879c096ab79e848f32c9c80600779..2d1911f1af218bd08d8bccf3aa8adef3abae7945 100644
--- a/python/examples/joint_trajectory.csv
+++ b/python/examples/joint_trajectory.csv
@@ -1,1618 +1,3243 @@
-0.00000,1.34255,-1.42734,-1.20298,-0.51483,1.80111,0.00308
-0.00309,1.34299,-1.42696,-1.20377,-0.51442,1.80067,0.00308
-0.00618,1.34343,-1.42659,-1.20454,-0.51403,1.80024,0.00309
-0.00928,1.34386,-1.42623,-1.20530,-0.51364,1.79982,0.00309
-0.01237,1.34428,-1.42587,-1.20605,-0.51326,1.79940,0.00309
-0.01546,1.34470,-1.42552,-1.20679,-0.51288,1.79898,0.00309
-0.01855,1.34512,-1.42517,-1.20751,-0.51251,1.79857,0.00310
-0.02165,1.34552,-1.42482,-1.20823,-0.51214,1.79817,0.00310
-0.02474,1.34592,-1.42449,-1.20893,-0.51178,1.79777,0.00310
-0.02783,1.34632,-1.42415,-1.20963,-0.51143,1.79738,0.00310
-0.03092,1.34671,-1.42382,-1.21031,-0.51108,1.79700,0.00311
-0.03401,1.34709,-1.42350,-1.21098,-0.51073,1.79662,0.00311
-0.03711,1.34747,-1.42318,-1.21164,-0.51040,1.79624,0.00311
-0.04020,1.34784,-1.42287,-1.21230,-0.51006,1.79588,0.00311
-0.04329,1.34821,-1.42256,-1.21294,-0.50974,1.79551,0.00311
-0.04638,1.34857,-1.42225,-1.21357,-0.50941,1.79515,0.00312
-0.04947,1.34892,-1.42195,-1.21419,-0.50910,1.79480,0.00312
-0.05257,1.34927,-1.42165,-1.21481,-0.50878,1.79445,0.00312
-0.05566,1.34962,-1.42136,-1.21541,-0.50848,1.79411,0.00312
-0.05875,1.34996,-1.42108,-1.21600,-0.50817,1.79377,0.00312
-0.06184,1.35030,-1.42079,-1.21659,-0.50788,1.79344,0.00313
-0.06494,1.35053,-1.42059,-1.21700,-0.50767,1.79320,0.00313
-0.06803,1.35123,-1.42001,-1.21822,-0.50704,1.79251,0.00313
-0.07112,1.35192,-1.41943,-1.21941,-0.50643,1.79183,0.00314
-0.07421,1.35259,-1.41887,-1.22059,-0.50583,1.79116,0.00314
-0.07730,1.35326,-1.41831,-1.22175,-0.50524,1.79049,0.00315
-0.08040,1.35392,-1.41776,-1.22289,-0.50465,1.78984,0.00315
-0.08349,1.35457,-1.41722,-1.22402,-0.50408,1.78920,0.00315
-0.08658,1.35521,-1.41669,-1.22512,-0.50351,1.78856,0.00316
-0.08967,1.35584,-1.41616,-1.22621,-0.50296,1.78794,0.00316
-0.09276,1.35646,-1.41564,-1.22729,-0.50241,1.78732,0.00317
-0.09586,1.35707,-1.41513,-1.22834,-0.50187,1.78671,0.00317
-0.09895,1.35767,-1.41463,-1.22938,-0.50134,1.78611,0.00317
-0.10204,1.35827,-1.41414,-1.23040,-0.50082,1.78552,0.00318
-0.10513,1.35885,-1.41365,-1.23141,-0.50031,1.78494,0.00318
-0.10823,1.35943,-1.41317,-1.23240,-0.49980,1.78436,0.00319
-0.11132,1.36000,-1.41270,-1.23337,-0.49930,1.78379,0.00319
-0.11441,1.36056,-1.41223,-1.23434,-0.49881,1.78323,0.00319
-0.11750,1.36111,-1.41177,-1.23528,-0.49833,1.78268,0.00320
-0.12059,1.36166,-1.41132,-1.23621,-0.49786,1.78214,0.00320
-0.12369,1.36220,-1.41088,-1.23713,-0.49739,1.78160,0.00320
-0.12678,1.36272,-1.41044,-1.23803,-0.49693,1.78108,0.00321
-0.12987,1.36325,-1.41001,-1.23892,-0.49648,1.78056,0.00321
-0.13296,1.36376,-1.40958,-1.23979,-0.49604,1.78004,0.00322
-0.13605,1.36427,-1.40917,-1.24065,-0.49560,1.77954,0.00322
-0.13915,1.36477,-1.40875,-1.24150,-0.49517,1.77904,0.00322
-0.14224,1.36526,-1.40835,-1.24233,-0.49474,1.77855,0.00323
-0.14533,1.36574,-1.40795,-1.24315,-0.49433,1.77806,0.00323
-0.14842,1.36622,-1.40755,-1.24396,-0.49392,1.77758,0.00323
-0.15152,1.36669,-1.40716,-1.24476,-0.49351,1.77711,0.00324
-0.15461,1.36716,-1.40678,-1.24554,-0.49312,1.77665,0.00324
-0.15770,1.36761,-1.40640,-1.24631,-0.49272,1.77619,0.00324
-0.16079,1.36806,-1.40603,-1.24707,-0.49234,1.77574,0.00325
-0.16388,1.36851,-1.40567,-1.24782,-0.49196,1.77530,0.00325
-0.16698,1.36895,-1.40531,-1.24855,-0.49159,1.77486,0.00325
-0.17007,1.36938,-1.40495,-1.24928,-0.49122,1.77442,0.00326
-0.17316,1.36980,-1.40460,-1.24999,-0.49086,1.77400,0.00326
-0.17625,1.37022,-1.40426,-1.25069,-0.49050,1.77358,0.00326
-0.17934,1.37063,-1.40392,-1.25138,-0.49016,1.77316,0.00327
-0.18244,1.37104,-1.40358,-1.25206,-0.48981,1.77276,0.00327
-0.18553,1.37144,-1.40325,-1.25273,-0.48947,1.77235,0.00327
-0.18862,1.37184,-1.40293,-1.25339,-0.48914,1.77196,0.00328
-0.19171,1.37223,-1.40261,-1.25404,-0.48881,1.77157,0.00328
-0.19481,1.37261,-1.40229,-1.25468,-0.48849,1.77118,0.00328
-0.19790,1.37299,-1.40198,-1.25531,-0.48817,1.77080,0.00329
-0.20099,1.37336,-1.40168,-1.25593,-0.48786,1.77042,0.00329
-0.20408,1.37373,-1.40138,-1.25654,-0.48755,1.77006,0.00329
-0.20717,1.37409,-1.40108,-1.25714,-0.48725,1.76969,0.00330
-0.21027,1.37445,-1.40079,-1.25773,-0.48695,1.76933,0.00330
-0.21336,1.37480,-1.40050,-1.25831,-0.48666,1.76898,0.00330
-0.21645,1.37515,-1.40021,-1.25889,-0.48637,1.76863,0.00330
-0.21954,1.37536,-1.40004,-1.25924,-0.48619,1.76842,0.00331
-0.22263,1.37576,-1.39972,-1.25989,-0.48587,1.76801,0.00331
-0.22573,1.37616,-1.39940,-1.26052,-0.48555,1.76762,0.00331
-0.22882,1.37655,-1.39909,-1.26115,-0.48523,1.76722,0.00332
-0.23191,1.37693,-1.39878,-1.26177,-0.48492,1.76684,0.00332
-0.23500,1.37731,-1.39848,-1.26238,-0.48462,1.76646,0.00332
-0.23810,1.37768,-1.39818,-1.26298,-0.48432,1.76608,0.00333
-0.24119,1.37805,-1.39788,-1.26357,-0.48402,1.76571,0.00333
-0.24428,1.37841,-1.39759,-1.26416,-0.48373,1.76535,0.00333
-0.24737,1.37877,-1.39730,-1.26473,-0.48345,1.76499,0.00333
-0.25046,1.37912,-1.39702,-1.26529,-0.48316,1.76463,0.00334
-0.25356,1.37924,-1.39693,-1.26548,-0.48307,1.76452,0.00334
-0.25665,1.37969,-1.39655,-1.26627,-0.48266,1.76406,0.00334
-0.25974,1.38014,-1.39619,-1.26703,-0.48227,1.76361,0.00335
-0.26283,1.38058,-1.39582,-1.26779,-0.48188,1.76317,0.00335
-0.26592,1.38102,-1.39546,-1.26854,-0.48149,1.76273,0.00335
-0.26902,1.38144,-1.39511,-1.26927,-0.48111,1.76230,0.00336
-0.27211,1.38187,-1.39476,-1.26999,-0.48074,1.76188,0.00336
-0.27520,1.38228,-1.39442,-1.27070,-0.48037,1.76146,0.00336
-0.27829,1.38269,-1.39408,-1.27140,-0.48001,1.76105,0.00337
-0.28139,1.38310,-1.39375,-1.27209,-0.47966,1.76064,0.00337
-0.28448,1.38350,-1.39342,-1.27277,-0.47931,1.76024,0.00337
-0.28757,1.38389,-1.39310,-1.27344,-0.47896,1.75985,0.00338
-0.29066,1.38428,-1.39278,-1.27410,-0.47863,1.75946,0.00338
-0.29375,1.38466,-1.39247,-1.27474,-0.47829,1.75908,0.00338
-0.29685,1.38503,-1.39216,-1.27538,-0.47797,1.75870,0.00339
-0.29994,1.38540,-1.39186,-1.27601,-0.47764,1.75832,0.00339
-0.30303,1.38577,-1.39156,-1.27662,-0.47733,1.75796,0.00339
-0.30612,1.38613,-1.39126,-1.27723,-0.47702,1.75759,0.00339
-0.30921,1.38648,-1.39097,-1.27783,-0.47671,1.75724,0.00340
-0.31231,1.38683,-1.39069,-1.27842,-0.47641,1.75689,0.00340
-0.31540,1.38718,-1.39040,-1.27900,-0.47611,1.75654,0.00340
-0.31849,1.38752,-1.39013,-1.27957,-0.47582,1.75620,0.00341
-0.32158,1.38768,-1.39000,-1.27984,-0.47568,1.75603,0.00341
-0.32468,1.38830,-1.38952,-1.28080,-0.47520,1.75541,0.00341
-0.32777,1.38891,-1.38906,-1.28174,-0.47473,1.75480,0.00342
-0.33086,1.38951,-1.38860,-1.28267,-0.47426,1.75420,0.00342
-0.33395,1.39010,-1.38815,-1.28358,-0.47380,1.75361,0.00343
-0.33704,1.39069,-1.38770,-1.28449,-0.47335,1.75303,0.00343
-0.34014,1.39126,-1.38726,-1.28537,-0.47290,1.75245,0.00343
-0.34323,1.39183,-1.38683,-1.28624,-0.47247,1.75188,0.00344
-0.34632,1.39239,-1.38641,-1.28710,-0.47204,1.75132,0.00344
-0.34941,1.39294,-1.38599,-1.28795,-0.47161,1.75077,0.00345
-0.35250,1.39349,-1.38557,-1.28878,-0.47120,1.75023,0.00345
-0.35560,1.39402,-1.38517,-1.28960,-0.47079,1.74969,0.00345
-0.35869,1.39455,-1.38477,-1.29040,-0.47038,1.74916,0.00346
-0.36178,1.39507,-1.38437,-1.29120,-0.46999,1.74864,0.00346
-0.36487,1.39558,-1.38398,-1.29198,-0.46960,1.74812,0.00347
-0.36797,1.39609,-1.38360,-1.29275,-0.46921,1.74762,0.00347
-0.37106,1.39659,-1.38323,-1.29350,-0.46884,1.74712,0.00347
-0.37415,1.39708,-1.38285,-1.29425,-0.46846,1.74662,0.00348
-0.37724,1.39756,-1.38249,-1.29498,-0.46810,1.74614,0.00348
-0.38033,1.39804,-1.38213,-1.29570,-0.46774,1.74566,0.00349
-0.38343,1.39851,-1.38177,-1.29641,-0.46738,1.74519,0.00349
-0.38652,1.39897,-1.38142,-1.29711,-0.46704,1.74472,0.00349
-0.38961,1.39943,-1.38108,-1.29780,-0.46669,1.74426,0.00350
-0.39270,1.39988,-1.38074,-1.29848,-0.46636,1.74381,0.00350
-0.39579,1.40032,-1.38041,-1.29914,-0.46602,1.74337,0.00350
-0.39889,1.40076,-1.38008,-1.29980,-0.46570,1.74293,0.00351
-0.40198,1.40119,-1.37975,-1.30045,-0.46538,1.74249,0.00351
-0.40507,1.40162,-1.37943,-1.30108,-0.46506,1.74207,0.00351
-0.40816,1.40203,-1.37912,-1.30171,-0.46475,1.74164,0.00352
-0.41126,1.40245,-1.37881,-1.30232,-0.46444,1.74123,0.00352
-0.41435,1.40285,-1.37851,-1.30293,-0.46414,1.74082,0.00352
-0.41744,1.40325,-1.37821,-1.30353,-0.46385,1.74042,0.00353
-0.42053,1.40365,-1.37791,-1.30411,-0.46356,1.74002,0.00353
-0.42362,1.40404,-1.37762,-1.30469,-0.46327,1.73963,0.00353
-0.42672,1.40442,-1.37733,-1.30526,-0.46299,1.73924,0.00354
-0.42981,1.40480,-1.37705,-1.30582,-0.46271,1.73886,0.00354
-0.43290,1.40517,-1.37677,-1.30637,-0.46244,1.73848,0.00354
-0.43599,1.40554,-1.37649,-1.30692,-0.46217,1.73811,0.00355
-0.43908,1.40595,-1.37619,-1.30753,-0.46187,1.73770,0.00355
-0.44218,1.40636,-1.37589,-1.30812,-0.46158,1.73729,0.00355
-0.44527,1.40676,-1.37559,-1.30870,-0.46129,1.73689,0.00356
-0.44836,1.40715,-1.37530,-1.30927,-0.46101,1.73649,0.00356
-0.45145,1.40754,-1.37502,-1.30983,-0.46073,1.73610,0.00356
-0.45455,1.40792,-1.37474,-1.31039,-0.46046,1.73572,0.00356
-0.45764,1.40829,-1.37446,-1.31094,-0.46019,1.73534,0.00357
-0.46073,1.40860,-1.37423,-1.31139,-0.45996,1.73503,0.00357
-0.46382,1.40911,-1.37385,-1.31217,-0.45956,1.73452,0.00357
-0.46691,1.40962,-1.37347,-1.31294,-0.45917,1.73401,0.00358
-0.47001,1.41011,-1.37310,-1.31370,-0.45879,1.73352,0.00358
-0.47310,1.41060,-1.37274,-1.31444,-0.45841,1.73303,0.00359
-0.47619,1.41108,-1.37238,-1.31517,-0.45804,1.73254,0.00359
-0.47928,1.41155,-1.37203,-1.31590,-0.45767,1.73207,0.00359
-0.48237,1.41202,-1.37168,-1.31661,-0.45731,1.73160,0.00360
-0.48547,1.41248,-1.37134,-1.31730,-0.45696,1.73113,0.00360
-0.48856,1.41294,-1.37100,-1.31799,-0.45661,1.73068,0.00360
-0.49165,1.41338,-1.37067,-1.31867,-0.45627,1.73023,0.00361
-0.49474,1.41382,-1.37034,-1.31933,-0.45593,1.72978,0.00361
-0.49784,1.41426,-1.37002,-1.31999,-0.45560,1.72935,0.00361
-0.50093,1.41469,-1.36970,-1.32063,-0.45528,1.72892,0.00362
-0.50402,1.41511,-1.36938,-1.32127,-0.45496,1.72849,0.00362
-0.50711,1.41553,-1.36908,-1.32189,-0.45464,1.72807,0.00362
-0.51020,1.41594,-1.36877,-1.32251,-0.45433,1.72766,0.00363
-0.51330,1.41634,-1.36847,-1.32312,-0.45402,1.72725,0.00363
-0.51639,1.41674,-1.36818,-1.32371,-0.45372,1.72685,0.00363
-0.51948,1.41713,-1.36789,-1.32430,-0.45343,1.72646,0.00364
-0.52257,1.41752,-1.36760,-1.32488,-0.45314,1.72607,0.00364
-0.52566,1.41790,-1.36732,-1.32544,-0.45285,1.72568,0.00364
-0.52876,1.41828,-1.36704,-1.32600,-0.45257,1.72530,0.00365
-0.53185,1.41865,-1.36677,-1.32655,-0.45229,1.72493,0.00365
-0.53494,1.41901,-1.36650,-1.32710,-0.45202,1.72456,0.00365
-0.53803,1.41908,-1.36645,-1.32719,-0.45197,1.72449,0.00365
-0.54113,1.41973,-1.36598,-1.32815,-0.45148,1.72384,0.00366
-0.54422,1.42037,-1.36552,-1.32909,-0.45101,1.72320,0.00366
-0.54731,1.42100,-1.36507,-1.33002,-0.45054,1.72257,0.00367
-0.55040,1.42163,-1.36463,-1.33093,-0.45007,1.72195,0.00367
-0.55349,1.42224,-1.36419,-1.33183,-0.44962,1.72133,0.00368
-0.55659,1.42285,-1.36375,-1.33272,-0.44917,1.72072,0.00368
-0.55968,1.42344,-1.36333,-1.33359,-0.44873,1.72013,0.00368
-0.56277,1.42403,-1.36291,-1.33444,-0.44829,1.71954,0.00369
-0.56586,1.42461,-1.36250,-1.33529,-0.44787,1.71896,0.00369
-0.56895,1.42518,-1.36209,-1.33611,-0.44745,1.71838,0.00370
-0.57205,1.42575,-1.36169,-1.33693,-0.44704,1.71782,0.00370
-0.57514,1.42630,-1.36129,-1.33773,-0.44663,1.71726,0.00371
-0.57823,1.42685,-1.36091,-1.33852,-0.44623,1.71671,0.00371
-0.58132,1.42739,-1.36052,-1.33930,-0.44584,1.71617,0.00371
-0.58442,1.42792,-1.36015,-1.34007,-0.44545,1.71564,0.00372
-0.58751,1.42845,-1.35977,-1.34082,-0.44507,1.71511,0.00372
-0.59060,1.42896,-1.35941,-1.34156,-0.44470,1.71459,0.00373
-0.59369,1.42947,-1.35905,-1.34229,-0.44433,1.71408,0.00373
-0.59678,1.42997,-1.35869,-1.34301,-0.44397,1.71358,0.00373
-0.59988,1.43047,-1.35834,-1.34372,-0.44361,1.71308,0.00374
-0.60297,1.43096,-1.35800,-1.34441,-0.44326,1.71259,0.00374
-0.60606,1.43144,-1.35766,-1.34510,-0.44292,1.71211,0.00374
-0.60915,1.43191,-1.35733,-1.34577,-0.44258,1.71163,0.00375
-0.61224,1.43238,-1.35700,-1.34643,-0.44225,1.71116,0.00375
-0.61534,1.43284,-1.35667,-1.34709,-0.44192,1.71070,0.00376
-0.61843,1.43329,-1.35635,-1.34773,-0.44160,1.71024,0.00376
-0.62152,1.43374,-1.35604,-1.34836,-0.44128,1.70979,0.00376
-0.62461,1.43418,-1.35573,-1.34898,-0.44097,1.70935,0.00377
-0.62771,1.43461,-1.35543,-1.34959,-0.44066,1.70891,0.00377
-0.63080,1.43504,-1.35512,-1.35020,-0.44036,1.70848,0.00377
-0.63389,1.43546,-1.35483,-1.35079,-0.44007,1.70805,0.00378
-0.63698,1.43588,-1.35454,-1.35137,-0.43977,1.70763,0.00378
-0.64007,1.43629,-1.35425,-1.35195,-0.43949,1.70722,0.00378
-0.64317,1.43669,-1.35397,-1.35251,-0.43921,1.70681,0.00379
-0.64626,1.43709,-1.35369,-1.35307,-0.43893,1.70641,0.00379
-0.64935,1.43748,-1.35341,-1.35362,-0.43865,1.70601,0.00379
-0.65244,1.43787,-1.35314,-1.35416,-0.43839,1.70562,0.00379
-0.65553,1.43825,-1.35288,-1.35469,-0.43812,1.70524,0.00380
-0.65863,1.43841,-1.35277,-1.35491,-0.43801,1.70508,0.00380
-0.66172,1.43885,-1.35245,-1.35555,-0.43768,1.70464,0.00380
-0.66481,1.43928,-1.35215,-1.35618,-0.43736,1.70420,0.00381
-0.66790,1.43971,-1.35185,-1.35680,-0.43705,1.70377,0.00381
-0.67100,1.44013,-1.35155,-1.35740,-0.43674,1.70335,0.00381
-0.67409,1.44054,-1.35126,-1.35800,-0.43643,1.70293,0.00382
-0.67718,1.44095,-1.35097,-1.35859,-0.43613,1.70252,0.00382
-0.68027,1.44135,-1.35068,-1.35917,-0.43584,1.70212,0.00382
-0.68336,1.44175,-1.35040,-1.35975,-0.43555,1.70172,0.00383
-0.68646,1.44214,-1.35013,-1.36031,-0.43526,1.70132,0.00383
-0.68955,1.44252,-1.34985,-1.36086,-0.43498,1.70094,0.00383
-0.69264,1.44290,-1.34959,-1.36141,-0.43470,1.70055,0.00383
-0.69573,1.44328,-1.34932,-1.36194,-0.43443,1.70017,0.00384
-0.69882,1.44352,-1.34915,-1.36230,-0.43425,1.69993,0.00384
-0.70192,1.44413,-1.34872,-1.36321,-0.43377,1.69931,0.00384
-0.70501,1.44473,-1.34830,-1.36410,-0.43330,1.69871,0.00385
-0.70810,1.44533,-1.34788,-1.36498,-0.43284,1.69812,0.00385
-0.71119,1.44591,-1.34747,-1.36585,-0.43239,1.69753,0.00386
-0.71429,1.44649,-1.34706,-1.36670,-0.43195,1.69695,0.00386
-0.71738,1.44706,-1.34667,-1.36754,-0.43151,1.69638,0.00387
-0.72047,1.44762,-1.34627,-1.36837,-0.43108,1.69582,0.00387
-0.72356,1.44817,-1.34589,-1.36918,-0.43066,1.69527,0.00387
-0.72665,1.44872,-1.34551,-1.36998,-0.43024,1.69472,0.00388
-0.72975,1.44925,-1.34513,-1.37077,-0.42983,1.69418,0.00388
-0.73284,1.44978,-1.34476,-1.37154,-0.42943,1.69365,0.00389
-0.73593,1.45030,-1.34440,-1.37231,-0.42903,1.69313,0.00389
-0.73902,1.45082,-1.34404,-1.37306,-0.42864,1.69261,0.00389
-0.74212,1.45132,-1.34369,-1.37379,-0.42826,1.69210,0.00390
-0.74521,1.45182,-1.34334,-1.37452,-0.42788,1.69160,0.00390
-0.74830,1.45232,-1.34300,-1.37523,-0.42751,1.69110,0.00391
-0.75139,1.45280,-1.34266,-1.37594,-0.42715,1.69062,0.00391
-0.75448,1.45328,-1.34233,-1.37663,-0.42679,1.69013,0.00391
-0.75758,1.45375,-1.34200,-1.37731,-0.42644,1.68966,0.00392
-0.76067,1.45422,-1.34168,-1.37798,-0.42609,1.68919,0.00392
-0.76376,1.45468,-1.34136,-1.37864,-0.42575,1.68873,0.00392
-0.76685,1.45513,-1.34105,-1.37929,-0.42542,1.68828,0.00393
-0.76994,1.45557,-1.34074,-1.37993,-0.42509,1.68783,0.00393
-0.77304,1.45601,-1.34044,-1.38056,-0.42476,1.68739,0.00393
-0.77613,1.45644,-1.34014,-1.38117,-0.42444,1.68695,0.00394
-0.77922,1.45687,-1.33985,-1.38178,-0.42413,1.68652,0.00394
-0.78231,1.45729,-1.33956,-1.38238,-0.42382,1.68610,0.00394
-0.78541,1.45770,-1.33927,-1.38297,-0.42352,1.68568,0.00395
-0.78850,1.45811,-1.33899,-1.38355,-0.42322,1.68527,0.00395
-0.79159,1.45852,-1.33871,-1.38412,-0.42293,1.68486,0.00395
-0.79468,1.45891,-1.33844,-1.38468,-0.42264,1.68446,0.00396
-0.79777,1.45930,-1.33817,-1.38524,-0.42236,1.68406,0.00396
-0.80087,1.45969,-1.33791,-1.38578,-0.42208,1.68368,0.00396
-0.80396,1.46007,-1.33764,-1.38632,-0.42180,1.68329,0.00397
-0.80705,1.46044,-1.33739,-1.38684,-0.42153,1.68291,0.00397
-0.81014,1.46052,-1.33733,-1.38696,-0.42147,1.68283,0.00397
-0.81323,1.46096,-1.33703,-1.38759,-0.42114,1.68239,0.00397
-0.81633,1.46139,-1.33673,-1.38822,-0.42081,1.68196,0.00398
-0.81942,1.46181,-1.33644,-1.38883,-0.42049,1.68154,0.00398
-0.82251,1.46222,-1.33615,-1.38944,-0.42018,1.68112,0.00398
-0.82560,1.46263,-1.33587,-1.39003,-0.41987,1.68071,0.00399
-0.82870,1.46304,-1.33559,-1.39062,-0.41956,1.68030,0.00399
-0.83179,1.46343,-1.33532,-1.39119,-0.41926,1.67990,0.00399
-0.83488,1.46383,-1.33504,-1.39176,-0.41897,1.67950,0.00400
-0.83797,1.46421,-1.33478,-1.39232,-0.41868,1.67911,0.00400
-0.84106,1.46459,-1.33451,-1.39287,-0.41839,1.67873,0.00400
-0.84416,1.46497,-1.33425,-1.39341,-0.41811,1.67835,0.00400
-0.84725,1.46534,-1.33400,-1.39394,-0.41783,1.67797,0.00401
-0.85034,1.46559,-1.33383,-1.39430,-0.41765,1.67773,0.00401
-0.85343,1.46621,-1.33340,-1.39522,-0.41716,1.67710,0.00401
-0.85652,1.46683,-1.33298,-1.39612,-0.41668,1.67648,0.00402
-0.85962,1.46744,-1.33257,-1.39701,-0.41620,1.67587,0.00402
-0.86271,1.46804,-1.33216,-1.39789,-0.41574,1.67527,0.00403
-0.86580,1.46863,-1.33176,-1.39875,-0.41528,1.67467,0.00403
-0.86889,1.46922,-1.33137,-1.39960,-0.41483,1.67409,0.00404
-0.87199,1.46979,-1.33098,-1.40043,-0.41439,1.67351,0.00404
-0.87508,1.47036,-1.33060,-1.40125,-0.41395,1.67294,0.00404
-0.87817,1.47092,-1.33022,-1.40206,-0.41353,1.67238,0.00405
-0.88126,1.47147,-1.32985,-1.40286,-0.41311,1.67183,0.00405
-0.88435,1.47201,-1.32948,-1.40364,-0.41269,1.67128,0.00406
-0.88745,1.47255,-1.32912,-1.40441,-0.41229,1.67075,0.00406
-0.89054,1.47308,-1.32877,-1.40517,-0.41189,1.67022,0.00407
-0.89363,1.47360,-1.32842,-1.40591,-0.41149,1.66969,0.00407
-0.89672,1.47411,-1.32807,-1.40664,-0.41111,1.66918,0.00407
-0.89981,1.47462,-1.32774,-1.40737,-0.41073,1.66867,0.00408
-0.90291,1.47512,-1.32740,-1.40808,-0.41035,1.66817,0.00408
-0.90600,1.47561,-1.32707,-1.40877,-0.40999,1.66767,0.00408
-0.90909,1.47609,-1.32675,-1.40946,-0.40962,1.66719,0.00409
-0.91218,1.47657,-1.32643,-1.41014,-0.40927,1.66670,0.00409
-0.91528,1.47704,-1.32612,-1.41080,-0.40892,1.66623,0.00410
-0.91837,1.47751,-1.32581,-1.41146,-0.40858,1.66576,0.00410
-0.92146,1.47796,-1.32550,-1.41210,-0.40824,1.66530,0.00410
-0.92455,1.47841,-1.32520,-1.41273,-0.40791,1.66485,0.00411
-0.92764,1.47886,-1.32490,-1.41336,-0.40758,1.66440,0.00411
-0.93074,1.47930,-1.32461,-1.41397,-0.40726,1.66396,0.00411
-0.93383,1.47973,-1.32433,-1.41458,-0.40694,1.66352,0.00412
-0.93692,1.48016,-1.32404,-1.41517,-0.40663,1.66309,0.00412
-0.94001,1.48058,-1.32376,-1.41575,-0.40633,1.66267,0.00412
-0.94310,1.48099,-1.32349,-1.41633,-0.40603,1.66225,0.00413
-0.94620,1.48140,-1.32322,-1.41690,-0.40573,1.66184,0.00413
-0.94929,1.48180,-1.32295,-1.41745,-0.40544,1.66143,0.00413
-0.95238,1.48220,-1.32269,-1.41800,-0.40516,1.66103,0.00414
-0.95547,1.48259,-1.32243,-1.41854,-0.40488,1.66064,0.00414
-0.95857,1.48297,-1.32218,-1.41907,-0.40460,1.66025,0.00414
-0.96166,1.48335,-1.32193,-1.41959,-0.40433,1.65987,0.00414
-0.96475,1.48359,-1.32177,-1.41992,-0.40416,1.65963,0.00415
-0.96784,1.48406,-1.32145,-1.42062,-0.40378,1.65916,0.00415
-0.97093,1.48452,-1.32114,-1.42131,-0.40341,1.65869,0.00415
-0.97403,1.48498,-1.32083,-1.42199,-0.40304,1.65823,0.00416
-0.97712,1.48543,-1.32052,-1.42265,-0.40268,1.65777,0.00416
-0.98021,1.48587,-1.32022,-1.42331,-0.40233,1.65733,0.00416
-0.98330,1.48631,-1.31992,-1.42395,-0.40198,1.65689,0.00417
-0.98639,1.48674,-1.31963,-1.42459,-0.40164,1.65645,0.00417
-0.98949,1.48717,-1.31934,-1.42521,-0.40131,1.65602,0.00417
-0.99258,1.48759,-1.31906,-1.42583,-0.40098,1.65560,0.00418
-0.99567,1.48800,-1.31878,-1.42643,-0.40065,1.65518,0.00418
-0.99876,1.48841,-1.31851,-1.42703,-0.40033,1.65477,0.00418
-1.00186,1.48881,-1.31824,-1.42761,-0.40002,1.65436,0.00419
-1.00495,1.48921,-1.31797,-1.42819,-0.39971,1.65396,0.00419
-1.00804,1.48960,-1.31771,-1.42876,-0.39941,1.65357,0.00419
-1.01113,1.48999,-1.31745,-1.42931,-0.39911,1.65318,0.00420
-1.01422,1.49037,-1.31719,-1.42986,-0.39882,1.65280,0.00420
-1.01732,1.49074,-1.31694,-1.43040,-0.39853,1.65242,0.00420
-1.02041,1.49111,-1.31669,-1.43093,-0.39825,1.65205,0.00421
-1.02350,1.49149,-1.31644,-1.43148,-0.39796,1.65166,0.00421
-1.02659,1.49202,-1.31611,-1.43218,-0.39759,1.65113,0.00421
-1.02968,1.49254,-1.31578,-1.43287,-0.39723,1.65061,0.00422
-1.03278,1.49305,-1.31546,-1.43355,-0.39688,1.65010,0.00422
-1.03587,1.49356,-1.31514,-1.43421,-0.39653,1.64959,0.00422
-1.03896,1.49406,-1.31483,-1.43487,-0.39618,1.64909,0.00423
-1.04205,1.49455,-1.31452,-1.43552,-0.39585,1.64859,0.00423
-1.04515,1.49503,-1.31422,-1.43616,-0.39552,1.64811,0.00423
-1.04824,1.49551,-1.31392,-1.43678,-0.39519,1.64763,0.00424
-1.05133,1.49598,-1.31362,-1.43740,-0.39487,1.64715,0.00424
-1.05442,1.49645,-1.31333,-1.43800,-0.39456,1.64669,0.00424
-1.05751,1.49690,-1.31305,-1.43860,-0.39425,1.64623,0.00425
-1.06061,1.49735,-1.31277,-1.43919,-0.39394,1.64577,0.00425
-1.06370,1.49780,-1.31249,-1.43977,-0.39364,1.64532,0.00425
-1.06679,1.49824,-1.31222,-1.44033,-0.39335,1.64488,0.00426
-1.06988,1.49867,-1.31195,-1.44089,-0.39306,1.64445,0.00426
-1.07297,1.49910,-1.31168,-1.44144,-0.39277,1.64402,0.00426
-1.07607,1.49952,-1.31142,-1.44198,-0.39250,1.64360,0.00427
-1.07916,1.49993,-1.31117,-1.44252,-0.39222,1.64318,0.00427
-1.08225,1.50034,-1.31091,-1.44304,-0.39195,1.64277,0.00427
-1.08534,1.50074,-1.31066,-1.44356,-0.39168,1.64236,0.00428
-1.08844,1.50114,-1.31042,-1.44407,-0.39142,1.64196,0.00428
-1.09153,1.50141,-1.31024,-1.44443,-0.39123,1.64168,0.00428
-1.09462,1.50183,-1.30996,-1.44505,-0.39090,1.64126,0.00428
-1.09771,1.50225,-1.30969,-1.44565,-0.39057,1.64084,0.00429
-1.10080,1.50265,-1.30942,-1.44625,-0.39024,1.64043,0.00429
-1.10390,1.50305,-1.30915,-1.44684,-0.38992,1.64003,0.00429
-1.10699,1.50345,-1.30889,-1.44742,-0.38960,1.63963,0.00430
-1.11008,1.50384,-1.30863,-1.44799,-0.38929,1.63924,0.00430
-1.11317,1.50422,-1.30838,-1.44855,-0.38899,1.63885,0.00430
-1.11626,1.50460,-1.30813,-1.44910,-0.38869,1.63847,0.00431
-1.11936,1.50498,-1.30788,-1.44964,-0.38839,1.63809,0.00431
-1.12245,1.50534,-1.30764,-1.45018,-0.38810,1.63772,0.00431
-1.12554,1.50571,-1.30740,-1.45070,-0.38782,1.63735,0.00431
-1.12863,1.50593,-1.30725,-1.45102,-0.38765,1.63712,0.00432
-1.13173,1.50637,-1.30698,-1.45162,-0.38733,1.63668,0.00432
-1.13482,1.50681,-1.30670,-1.45220,-0.38702,1.63624,0.00432
-1.13791,1.50724,-1.30643,-1.45278,-0.38671,1.63581,0.00433
-1.14100,1.50766,-1.30617,-1.45335,-0.38641,1.63539,0.00433
-1.14409,1.50807,-1.30591,-1.45391,-0.38611,1.63497,0.00433
-1.14719,1.50848,-1.30565,-1.45446,-0.38582,1.63456,0.00434
-1.15028,1.50889,-1.30540,-1.45500,-0.38554,1.63415,0.00434
-1.15337,1.50929,-1.30515,-1.45553,-0.38525,1.63375,0.00434
-1.15646,1.50968,-1.30490,-1.45605,-0.38498,1.63335,0.00434
-1.15955,1.51007,-1.30466,-1.45657,-0.38470,1.63296,0.00435
-1.16265,1.51045,-1.30442,-1.45707,-0.38444,1.63258,0.00435
-1.16574,1.51050,-1.30439,-1.45715,-0.38440,1.63252,0.00435
-1.16883,1.51103,-1.30406,-1.45786,-0.38402,1.63199,0.00435
-1.17192,1.51155,-1.30374,-1.45856,-0.38364,1.63147,0.00436
-1.17502,1.51207,-1.30343,-1.45925,-0.38327,1.63095,0.00436
-1.17811,1.51257,-1.30311,-1.45993,-0.38291,1.63045,0.00437
-1.18120,1.51307,-1.30281,-1.46059,-0.38255,1.62994,0.00437
-1.18429,1.51356,-1.30250,-1.46125,-0.38220,1.62945,0.00437
-1.18738,1.51405,-1.30221,-1.46189,-0.38185,1.62896,0.00438
-1.19048,1.51453,-1.30191,-1.46253,-0.38151,1.62848,0.00438
-1.19357,1.51500,-1.30162,-1.46315,-0.38118,1.62801,0.00438
-1.19666,1.51546,-1.30134,-1.46377,-0.38085,1.62754,0.00439
-1.19975,1.51592,-1.30106,-1.46437,-0.38053,1.62708,0.00439
-1.20284,1.51637,-1.30078,-1.46497,-0.38021,1.62663,0.00439
-1.20594,1.51682,-1.30051,-1.46555,-0.37990,1.62618,0.00440
-1.20903,1.51726,-1.30024,-1.46613,-0.37960,1.62574,0.00440
-1.21212,1.51769,-1.29998,-1.46670,-0.37930,1.62530,0.00440
-1.21521,1.51812,-1.29972,-1.46725,-0.37900,1.62487,0.00441
-1.21831,1.51854,-1.29946,-1.46780,-0.37871,1.62445,0.00441
-1.22140,1.51895,-1.29921,-1.46834,-0.37842,1.62403,0.00441
-1.22449,1.51936,-1.29896,-1.46887,-0.37814,1.62362,0.00442
-1.22758,1.51977,-1.29871,-1.46940,-0.37787,1.62321,0.00442
-1.23067,1.52016,-1.29847,-1.46991,-0.37759,1.62281,0.00442
-1.23377,1.52055,-1.29823,-1.47042,-0.37733,1.62242,0.00443
-1.23686,1.52083,-1.29807,-1.47077,-0.37714,1.62214,0.00443
-1.23995,1.52121,-1.29782,-1.47131,-0.37684,1.62176,0.00443
-1.24304,1.52158,-1.29758,-1.47184,-0.37655,1.62138,0.00443
-1.24613,1.52195,-1.29735,-1.47237,-0.37626,1.62101,0.00444
-1.24923,1.52232,-1.29711,-1.47289,-0.37598,1.62064,0.00444
-1.25232,1.52244,-1.29704,-1.47305,-0.37589,1.62052,0.00444
-1.25541,1.52288,-1.29675,-1.47371,-0.37552,1.62007,0.00444
-1.25850,1.52331,-1.29647,-1.47435,-0.37516,1.61963,0.00445
-1.26160,1.52375,-1.29620,-1.47498,-0.37481,1.61920,0.00445
-1.26469,1.52417,-1.29592,-1.47561,-0.37446,1.61877,0.00445
-1.26778,1.52459,-1.29565,-1.47622,-0.37412,1.61835,0.00446
-1.27087,1.52500,-1.29539,-1.47682,-0.37378,1.61794,0.00446
-1.27396,1.52541,-1.29513,-1.47742,-0.37345,1.61753,0.00446
-1.27706,1.52581,-1.29487,-1.47800,-0.37313,1.61712,0.00447
-1.28015,1.52620,-1.29462,-1.47857,-0.37281,1.61672,0.00447
-1.28324,1.52659,-1.29437,-1.47914,-0.37250,1.61633,0.00447
-1.28633,1.52698,-1.29412,-1.47969,-0.37219,1.61594,0.00447
-1.28942,1.52736,-1.29388,-1.48024,-0.37189,1.61556,0.00448
-1.29252,1.52773,-1.29364,-1.48078,-0.37159,1.61518,0.00448
-1.29561,1.52810,-1.29341,-1.48131,-0.37129,1.61481,0.00448
-1.29870,1.52846,-1.29318,-1.48183,-0.37101,1.61444,0.00449
-1.30179,1.52871,-1.29302,-1.48219,-0.37081,1.61419,0.00449
-1.30489,1.52907,-1.29279,-1.48271,-0.37052,1.61383,0.00449
-1.30798,1.52925,-1.29267,-1.48298,-0.37036,1.61365,0.00449
-1.31107,1.52970,-1.29238,-1.48365,-0.36999,1.61319,0.00450
-1.31416,1.53014,-1.29210,-1.48430,-0.36962,1.61275,0.00450
-1.31725,1.53058,-1.29182,-1.48494,-0.36926,1.61231,0.00450
-1.32035,1.53101,-1.29155,-1.48557,-0.36891,1.61188,0.00451
-1.32344,1.53143,-1.29128,-1.48619,-0.36856,1.61145,0.00451
-1.32653,1.53185,-1.29101,-1.48680,-0.36822,1.61103,0.00451
-1.32962,1.53226,-1.29075,-1.48740,-0.36788,1.61061,0.00452
-1.33271,1.53267,-1.29049,-1.48799,-0.36755,1.61020,0.00452
-1.33581,1.53307,-1.29024,-1.48857,-0.36723,1.60980,0.00452
-1.33890,1.53347,-1.28999,-1.48914,-0.36691,1.60940,0.00453
-1.34199,1.53386,-1.28974,-1.48970,-0.36659,1.60901,0.00453
-1.34508,1.53424,-1.28950,-1.49025,-0.36629,1.60862,0.00453
-1.34818,1.53462,-1.28926,-1.49080,-0.36598,1.60824,0.00453
-1.35127,1.53499,-1.28903,-1.49133,-0.36568,1.60786,0.00454
-1.35436,1.53536,-1.28879,-1.49186,-0.36539,1.60749,0.00454
-1.35745,1.53572,-1.28857,-1.49237,-0.36510,1.60712,0.00454
-1.36054,1.53598,-1.28841,-1.49273,-0.36490,1.60687,0.00454
-1.36364,1.53635,-1.28817,-1.49326,-0.36461,1.60649,0.00455
-1.36673,1.53671,-1.28795,-1.49377,-0.36433,1.60613,0.00455
-1.36982,1.53694,-1.28780,-1.49410,-0.36414,1.60589,0.00455
-1.37291,1.53742,-1.28749,-1.49484,-0.36372,1.60542,0.00456
-1.37600,1.53789,-1.28719,-1.49556,-0.36330,1.60494,0.00456
-1.37910,1.53835,-1.28689,-1.49628,-0.36289,1.60448,0.00456
-1.38219,1.53881,-1.28660,-1.49698,-0.36248,1.60402,0.00457
-1.38528,1.53926,-1.28631,-1.49767,-0.36208,1.60357,0.00457
-1.38837,1.53970,-1.28603,-1.49835,-0.36169,1.60312,0.00457
-1.39147,1.54014,-1.28574,-1.49902,-0.36131,1.60268,0.00458
-1.39456,1.54057,-1.28547,-1.49967,-0.36093,1.60224,0.00458
-1.39765,1.54100,-1.28519,-1.50032,-0.36056,1.60182,0.00458
-1.40074,1.54142,-1.28493,-1.50096,-0.36020,1.60139,0.00459
-1.40383,1.54183,-1.28466,-1.50158,-0.35984,1.60098,0.00459
-1.40693,1.54224,-1.28440,-1.50220,-0.35948,1.60057,0.00459
-1.41002,1.54264,-1.28414,-1.50280,-0.35914,1.60016,0.00460
-1.41311,1.54304,-1.28389,-1.50340,-0.35880,1.59976,0.00460
-1.41620,1.54343,-1.28364,-1.50398,-0.35846,1.59937,0.00460
-1.41929,1.54381,-1.28340,-1.50456,-0.35813,1.59898,0.00461
-1.42239,1.54419,-1.28315,-1.50513,-0.35781,1.59860,0.00461
-1.42548,1.54457,-1.28292,-1.50568,-0.35749,1.59822,0.00461
-1.42857,1.54494,-1.28268,-1.50623,-0.35718,1.59784,0.00462
-1.43166,1.54530,-1.28245,-1.50677,-0.35687,1.59748,0.00462
-1.43476,1.54566,-1.28222,-1.50730,-0.35657,1.59711,0.00462
-1.43785,1.54602,-1.28200,-1.50782,-0.35627,1.59676,0.00462
-1.44094,1.54633,-1.28180,-1.50829,-0.35601,1.59644,0.00463
-1.44403,1.54669,-1.28157,-1.50882,-0.35571,1.59607,0.00463
-1.44712,1.54705,-1.28135,-1.50933,-0.35542,1.59571,0.00463
-1.45022,1.54726,-1.28121,-1.50964,-0.35525,1.59550,0.00463
-1.45331,1.54763,-1.28099,-1.51016,-0.35495,1.59513,0.00464
-1.45640,1.54799,-1.28076,-1.51068,-0.35466,1.59476,0.00464
-1.45949,1.54825,-1.28060,-1.51104,-0.35446,1.59450,0.00464
-1.46259,1.54865,-1.28035,-1.51163,-0.35412,1.59410,0.00464
-1.46568,1.54905,-1.28011,-1.51222,-0.35379,1.59370,0.00465
-1.46877,1.54944,-1.27986,-1.51279,-0.35346,1.59330,0.00465
-1.47186,1.54983,-1.27962,-1.51335,-0.35314,1.59291,0.00465
-1.47495,1.55021,-1.27938,-1.51391,-0.35282,1.59253,0.00466
-1.47805,1.55059,-1.27915,-1.51445,-0.35251,1.59215,0.00466
-1.48114,1.55096,-1.27892,-1.51499,-0.35221,1.59177,0.00466
-1.48423,1.55132,-1.27869,-1.51552,-0.35191,1.59140,0.00467
-1.48732,1.55168,-1.27847,-1.51603,-0.35161,1.59104,0.00467
-1.49041,1.55204,-1.27825,-1.51654,-0.35132,1.59068,0.00467
-1.49351,1.55207,-1.27823,-1.51660,-0.35129,1.59065,0.00467
-1.49660,1.55242,-1.27801,-1.51711,-0.35100,1.59029,0.00467
-1.49969,1.55252,-1.27792,-1.51736,-0.35084,1.59020,0.00468
-1.50278,1.55206,-1.27794,-1.51772,-0.35046,1.59064,0.00467
-1.50588,1.55161,-1.27795,-1.51808,-0.35009,1.59107,0.00467
-1.50897,1.55116,-1.27796,-1.51843,-0.34973,1.59149,0.00467
-1.51206,1.55073,-1.27797,-1.51877,-0.34937,1.59191,0.00467
-1.51515,1.55030,-1.27799,-1.51911,-0.34901,1.59233,0.00467
-1.51824,1.54991,-1.27801,-1.51937,-0.34873,1.59270,0.00467
-1.52134,1.54897,-1.27818,-1.51960,-0.34833,1.59361,0.00467
-1.52443,1.54805,-1.27834,-1.51984,-0.34793,1.59451,0.00466
-1.52752,1.54715,-1.27849,-1.52006,-0.34755,1.59539,0.00466
-1.53061,1.54626,-1.27865,-1.52028,-0.34716,1.59625,0.00466
-1.53370,1.54538,-1.27881,-1.52050,-0.34679,1.59711,0.00466
-1.53680,1.54451,-1.27896,-1.52071,-0.34642,1.59795,0.00465
-1.53989,1.54366,-1.27912,-1.52092,-0.34605,1.59878,0.00465
-1.54298,1.54282,-1.27927,-1.52112,-0.34570,1.59960,0.00465
-1.54607,1.54200,-1.27942,-1.52132,-0.34534,1.60040,0.00465
-1.54917,1.54118,-1.27957,-1.52151,-0.34500,1.60120,0.00464
-1.55226,1.54038,-1.27971,-1.52170,-0.34466,1.60198,0.00464
-1.55535,1.53959,-1.27986,-1.52189,-0.34432,1.60275,0.00464
-1.55844,1.53882,-1.28000,-1.52207,-0.34399,1.60351,0.00463
-1.56153,1.53805,-1.28015,-1.52224,-0.34367,1.60426,0.00463
-1.56463,1.53730,-1.28029,-1.52242,-0.34335,1.60499,0.00463
-1.56772,1.53656,-1.28043,-1.52259,-0.34303,1.60572,0.00463
-1.57081,1.53583,-1.28057,-1.52275,-0.34272,1.60643,0.00463
-1.57390,1.53511,-1.28071,-1.52292,-0.34242,1.60714,0.00462
-1.57699,1.53440,-1.28084,-1.52308,-0.34212,1.60783,0.00462
-1.58009,1.53370,-1.28098,-1.52323,-0.34183,1.60852,0.00462
-1.58318,1.53301,-1.28111,-1.52338,-0.34154,1.60919,0.00462
-1.58627,1.53234,-1.28124,-1.52353,-0.34125,1.60985,0.00461
-1.58936,1.53167,-1.28137,-1.52368,-0.34097,1.61051,0.00461
-1.59246,1.53101,-1.28150,-1.52382,-0.34070,1.61115,0.00461
-1.59555,1.53037,-1.28163,-1.52396,-0.34043,1.61178,0.00461
-1.59864,1.52973,-1.28176,-1.52410,-0.34016,1.61241,0.00461
-1.60173,1.52910,-1.28188,-1.52423,-0.33990,1.61302,0.00460
-1.60482,1.52849,-1.28201,-1.52436,-0.33964,1.61363,0.00460
-1.60792,1.52788,-1.28213,-1.52449,-0.33939,1.61423,0.00460
-1.61101,1.52728,-1.28225,-1.52461,-0.33914,1.61482,0.00460
-1.61410,1.52669,-1.28237,-1.52473,-0.33889,1.61540,0.00460
-1.61719,1.52611,-1.28249,-1.52485,-0.33865,1.61597,0.00459
-1.62028,1.52554,-1.28260,-1.52497,-0.33841,1.61653,0.00459
-1.62338,1.52497,-1.28272,-1.52508,-0.33818,1.61709,0.00459
-1.62647,1.52451,-1.28282,-1.52517,-0.33799,1.61754,0.00459
-1.62956,1.52380,-1.28298,-1.52525,-0.33775,1.61824,0.00459
-1.63265,1.52311,-1.28314,-1.52533,-0.33750,1.61892,0.00459
-1.63575,1.52242,-1.28330,-1.52540,-0.33727,1.61960,0.00458
-1.63884,1.52175,-1.28345,-1.52548,-0.33703,1.62026,0.00458
-1.64193,1.52108,-1.28361,-1.52555,-0.33680,1.62092,0.00458
-1.64502,1.52043,-1.28376,-1.52562,-0.33658,1.62156,0.00458
-1.64811,1.51978,-1.28391,-1.52568,-0.33635,1.62220,0.00457
-1.65121,1.51915,-1.28406,-1.52575,-0.33614,1.62282,0.00457
-1.65430,1.51852,-1.28421,-1.52581,-0.33592,1.62344,0.00457
-1.65739,1.51791,-1.28435,-1.52587,-0.33571,1.62405,0.00457
-1.66048,1.51730,-1.28450,-1.52593,-0.33550,1.62465,0.00457
-1.66357,1.51670,-1.28464,-1.52599,-0.33530,1.62524,0.00456
-1.66667,1.51612,-1.28478,-1.52605,-0.33509,1.62582,0.00456
-1.66976,1.51554,-1.28492,-1.52611,-0.33490,1.62639,0.00456
-1.67285,1.51507,-1.28504,-1.52613,-0.33475,1.62685,0.00456
-1.67594,1.51382,-1.28539,-1.52605,-0.33448,1.62808,0.00455
-1.67904,1.51259,-1.28573,-1.52597,-0.33421,1.62929,0.00455
-1.68213,1.51138,-1.28607,-1.52588,-0.33394,1.63049,0.00454
-1.68522,1.51019,-1.28641,-1.52580,-0.33368,1.63166,0.00454
-1.68831,1.50901,-1.28675,-1.52572,-0.33342,1.63282,0.00454
-1.69140,1.50786,-1.28708,-1.52564,-0.33317,1.63396,0.00453
-1.69450,1.50672,-1.28740,-1.52555,-0.33292,1.63508,0.00453
-1.69759,1.50560,-1.28773,-1.52547,-0.33267,1.63619,0.00452
-1.70068,1.50449,-1.28804,-1.52539,-0.33243,1.63728,0.00452
-1.70377,1.50341,-1.28836,-1.52530,-0.33219,1.63835,0.00451
-1.70686,1.50234,-1.28867,-1.52522,-0.33196,1.63941,0.00451
-1.70996,1.50128,-1.28898,-1.52514,-0.33173,1.64045,0.00451
-1.71305,1.50025,-1.28928,-1.52505,-0.33150,1.64147,0.00450
-1.71614,1.49923,-1.28959,-1.52497,-0.33128,1.64248,0.00450
-1.71923,1.49822,-1.28988,-1.52488,-0.33106,1.64348,0.00449
-1.72233,1.49723,-1.29018,-1.52480,-0.33085,1.64446,0.00449
-1.72542,1.49626,-1.29047,-1.52472,-0.33063,1.64542,0.00449
-1.72851,1.49530,-1.29075,-1.52464,-0.33042,1.64637,0.00448
-1.73160,1.49435,-1.29104,-1.52455,-0.33022,1.64731,0.00448
-1.73469,1.49342,-1.29132,-1.52447,-0.33002,1.64823,0.00448
-1.73779,1.49250,-1.29159,-1.52439,-0.32982,1.64914,0.00447
-1.74088,1.49160,-1.29187,-1.52431,-0.32962,1.65004,0.00447
-1.74397,1.49071,-1.29214,-1.52422,-0.32943,1.65092,0.00447
-1.74706,1.48984,-1.29240,-1.52414,-0.32924,1.65178,0.00446
-1.75015,1.48897,-1.29267,-1.52406,-0.32905,1.65264,0.00446
-1.75325,1.48813,-1.29292,-1.52398,-0.32887,1.65348,0.00446
-1.75634,1.48729,-1.29318,-1.52390,-0.32869,1.65431,0.00445
-1.75943,1.48647,-1.29343,-1.52382,-0.32851,1.65513,0.00445
-1.76252,1.48566,-1.29368,-1.52374,-0.32833,1.65593,0.00445
-1.76562,1.48486,-1.29393,-1.52366,-0.32816,1.65673,0.00445
-1.76871,1.48407,-1.29418,-1.52358,-0.32799,1.65751,0.00444
-1.77180,1.48330,-1.29442,-1.52350,-0.32783,1.65828,0.00444
-1.77489,1.48254,-1.29465,-1.52342,-0.32766,1.65903,0.00444
-1.77798,1.48179,-1.29489,-1.52334,-0.32750,1.65978,0.00443
-1.78108,1.48105,-1.29512,-1.52327,-0.32734,1.66052,0.00443
-1.78417,1.48032,-1.29535,-1.52319,-0.32719,1.66124,0.00443
-1.78726,1.47961,-1.29557,-1.52311,-0.32703,1.66195,0.00443
-1.79035,1.47890,-1.29580,-1.52304,-0.32688,1.66266,0.00442
-1.79344,1.47821,-1.29602,-1.52296,-0.32673,1.66335,0.00442
-1.79654,1.47752,-1.29623,-1.52288,-0.32659,1.66403,0.00442
-1.79963,1.47685,-1.29645,-1.52281,-0.32644,1.66470,0.00442
-1.80272,1.47619,-1.29666,-1.52274,-0.32630,1.66536,0.00441
-1.80581,1.47554,-1.29687,-1.52266,-0.32616,1.66601,0.00441
-1.80891,1.47489,-1.29707,-1.52259,-0.32603,1.66665,0.00441
-1.81200,1.47426,-1.29728,-1.52251,-0.32589,1.66729,0.00441
-1.81509,1.47364,-1.29748,-1.52244,-0.32576,1.66791,0.00441
-1.81818,1.47302,-1.29768,-1.52237,-0.32563,1.66852,0.00440
-1.82127,1.47242,-1.29787,-1.52230,-0.32550,1.66913,0.00440
-1.82437,1.47182,-1.29806,-1.52223,-0.32537,1.66972,0.00440
-1.82746,1.47124,-1.29825,-1.52216,-0.32525,1.67031,0.00440
-1.83055,1.47099,-1.29834,-1.52213,-0.32520,1.67056,0.00440
-1.83364,1.47024,-1.29858,-1.52202,-0.32506,1.67130,0.00439
-1.83673,1.46951,-1.29882,-1.52191,-0.32492,1.67203,0.00439
-1.83983,1.46878,-1.29906,-1.52181,-0.32478,1.67275,0.00439
-1.84292,1.46807,-1.29930,-1.52170,-0.32464,1.67346,0.00439
-1.84601,1.46737,-1.29953,-1.52160,-0.32451,1.67416,0.00438
-1.84910,1.46668,-1.29976,-1.52149,-0.32438,1.67485,0.00438
-1.85220,1.46600,-1.29999,-1.52139,-0.32425,1.67553,0.00438
-1.85529,1.46533,-1.30022,-1.52129,-0.32412,1.67619,0.00438
-1.85838,1.46467,-1.30044,-1.52119,-0.32400,1.67685,0.00437
-1.86147,1.46402,-1.30066,-1.52109,-0.32387,1.67750,0.00437
-1.86456,1.46338,-1.30087,-1.52099,-0.32375,1.67814,0.00437
-1.86766,1.46275,-1.30108,-1.52089,-0.32363,1.67877,0.00437
-1.87075,1.46213,-1.30129,-1.52080,-0.32352,1.67939,0.00436
-1.87384,1.46152,-1.30150,-1.52070,-0.32340,1.68000,0.00436
-1.87693,1.46092,-1.30170,-1.52061,-0.32329,1.68060,0.00436
-1.88002,1.46033,-1.30190,-1.52051,-0.32318,1.68119,0.00436
-1.88312,1.45975,-1.30210,-1.52042,-0.32307,1.68177,0.00436
-1.88621,1.45962,-1.30215,-1.52040,-0.32304,1.68190,0.00436
-1.88930,1.45889,-1.30240,-1.52027,-0.32292,1.68263,0.00435
-1.89239,1.45818,-1.30264,-1.52015,-0.32279,1.68334,0.00435
-1.89549,1.45747,-1.30289,-1.52002,-0.32267,1.68404,0.00435
-1.89858,1.45678,-1.30313,-1.51990,-0.32255,1.68473,0.00435
-1.90167,1.45610,-1.30336,-1.51978,-0.32243,1.68541,0.00434
-1.90476,1.45543,-1.30360,-1.51966,-0.32231,1.68608,0.00434
-1.90785,1.45476,-1.30383,-1.51954,-0.32220,1.68674,0.00434
-1.91095,1.45411,-1.30406,-1.51942,-0.32208,1.68739,0.00434
-1.91404,1.45347,-1.30428,-1.51930,-0.32197,1.68803,0.00433
-1.91713,1.45284,-1.30450,-1.51919,-0.32186,1.68866,0.00433
-1.92022,1.45222,-1.30472,-1.51907,-0.32176,1.68929,0.00433
-1.92331,1.45160,-1.30494,-1.51896,-0.32165,1.68990,0.00433
-1.92641,1.45100,-1.30515,-1.51885,-0.32155,1.69050,0.00432
-1.92950,1.45041,-1.30536,-1.51873,-0.32144,1.69110,0.00432
-1.93259,1.44982,-1.30556,-1.51862,-0.32134,1.69168,0.00432
-1.93568,1.44935,-1.30573,-1.51853,-0.32126,1.69215,0.00432
-1.93878,1.44808,-1.30619,-1.51826,-0.32108,1.69341,0.00431
-1.94187,1.44683,-1.30663,-1.51799,-0.32089,1.69465,0.00431
-1.94496,1.44560,-1.30708,-1.51773,-0.32071,1.69586,0.00430
-1.94805,1.44439,-1.30751,-1.51746,-0.32053,1.69706,0.00430
-1.95114,1.44320,-1.30795,-1.51720,-0.32036,1.69824,0.00430
-1.95424,1.44203,-1.30837,-1.51694,-0.32018,1.69940,0.00429
-1.95733,1.44088,-1.30879,-1.51669,-0.32001,1.70055,0.00429
-1.96042,1.43974,-1.30921,-1.51643,-0.31985,1.70167,0.00428
-1.96351,1.43863,-1.30962,-1.51618,-0.31968,1.70278,0.00428
-1.96660,1.43753,-1.31002,-1.51594,-0.31952,1.70388,0.00427
-1.96970,1.43644,-1.31042,-1.51569,-0.31936,1.70495,0.00427
-1.97279,1.43538,-1.31081,-1.51545,-0.31921,1.70601,0.00427
-1.97588,1.43433,-1.31120,-1.51521,-0.31905,1.70705,0.00426
-1.97897,1.43330,-1.31159,-1.51497,-0.31890,1.70808,0.00426
-1.98207,1.43228,-1.31196,-1.51474,-0.31875,1.70909,0.00425
-1.98516,1.43128,-1.31234,-1.51450,-0.31861,1.71009,0.00425
-1.98825,1.43029,-1.31271,-1.51427,-0.31846,1.71107,0.00425
-1.99134,1.42932,-1.31307,-1.51405,-0.31832,1.71203,0.00424
-1.99443,1.42837,-1.31343,-1.51382,-0.31818,1.71298,0.00424
-1.99753,1.42743,-1.31378,-1.51360,-0.31805,1.71392,0.00424
-2.00062,1.42650,-1.31413,-1.51338,-0.31791,1.71484,0.00423
-2.00371,1.42559,-1.31448,-1.51316,-0.31778,1.71575,0.00423
-2.00680,1.42470,-1.31482,-1.51295,-0.31765,1.71664,0.00423
-2.00989,1.42382,-1.31515,-1.51274,-0.31752,1.71752,0.00422
-2.01299,1.42295,-1.31548,-1.51253,-0.31740,1.71838,0.00422
-2.01608,1.42209,-1.31581,-1.51232,-0.31727,1.71924,0.00422
-2.01917,1.42125,-1.31613,-1.51212,-0.31715,1.72008,0.00421
-2.02226,1.42042,-1.31645,-1.51191,-0.31703,1.72090,0.00421
-2.02536,1.41961,-1.31676,-1.51171,-0.31692,1.72172,0.00421
-2.02845,1.41881,-1.31707,-1.51152,-0.31680,1.72252,0.00420
-2.03154,1.41802,-1.31738,-1.51132,-0.31669,1.72331,0.00420
-2.03463,1.41724,-1.31768,-1.51113,-0.31658,1.72409,0.00420
-2.03772,1.41647,-1.31797,-1.51094,-0.31647,1.72485,0.00420
-2.04082,1.41572,-1.31827,-1.51075,-0.31636,1.72561,0.00419
-2.04391,1.41498,-1.31856,-1.51056,-0.31625,1.72635,0.00419
-2.04700,1.41425,-1.31884,-1.51038,-0.31615,1.72708,0.00419
-2.05009,1.41353,-1.31912,-1.51019,-0.31605,1.72780,0.00419
-2.05318,1.41282,-1.31940,-1.51001,-0.31595,1.72851,0.00418
-2.05628,1.41212,-1.31967,-1.50984,-0.31585,1.72920,0.00418
-2.05937,1.41144,-1.31994,-1.50966,-0.31575,1.72989,0.00418
-2.06246,1.41076,-1.32020,-1.50949,-0.31566,1.73057,0.00418
-2.06555,1.41010,-1.32047,-1.50932,-0.31556,1.73123,0.00417
-2.06865,1.40944,-1.32072,-1.50915,-0.31547,1.73189,0.00417
-2.07174,1.40880,-1.32098,-1.50898,-0.31538,1.73254,0.00417
-2.07483,1.40816,-1.32123,-1.50881,-0.31529,1.73317,0.00417
-2.07792,1.40754,-1.32148,-1.50865,-0.31520,1.73380,0.00416
-2.08101,1.40693,-1.32172,-1.50849,-0.31512,1.73442,0.00416
-2.08411,1.40632,-1.32196,-1.50833,-0.31503,1.73502,0.00416
-2.08720,1.40573,-1.32220,-1.50817,-0.31495,1.73562,0.00416
-2.09029,1.40514,-1.32243,-1.50802,-0.31487,1.73621,0.00416
-2.09338,1.40456,-1.32266,-1.50786,-0.31479,1.73679,0.00415
-2.09647,1.40399,-1.32289,-1.50771,-0.31471,1.73736,0.00415
-2.09957,1.40376,-1.32298,-1.50765,-0.31468,1.73759,0.00415
-2.10266,1.40312,-1.32324,-1.50748,-0.31459,1.73824,0.00415
-2.10575,1.40249,-1.32349,-1.50731,-0.31450,1.73887,0.00415
-2.10884,1.40187,-1.32374,-1.50715,-0.31442,1.73949,0.00414
-2.11194,1.40126,-1.32398,-1.50698,-0.31433,1.74010,0.00414
-2.11503,1.40066,-1.32422,-1.50682,-0.31425,1.74070,0.00414
-2.11812,1.40007,-1.32446,-1.50666,-0.31417,1.74129,0.00414
-2.12121,1.39949,-1.32469,-1.50650,-0.31409,1.74188,0.00414
-2.12430,1.39892,-1.32492,-1.50634,-0.31401,1.74245,0.00413
-2.12740,1.39835,-1.32515,-1.50619,-0.31394,1.74302,0.00413
-2.13049,1.39826,-1.32519,-1.50616,-0.31392,1.74311,0.00413
-2.13358,1.39736,-1.32555,-1.50592,-0.31380,1.74401,0.00413
-2.13667,1.39647,-1.32591,-1.50568,-0.31368,1.74489,0.00413
-2.13976,1.39560,-1.32627,-1.50544,-0.31357,1.74576,0.00412
-2.14286,1.39474,-1.32661,-1.50520,-0.31345,1.74662,0.00412
-2.14595,1.39389,-1.32696,-1.50496,-0.31334,1.74746,0.00412
-2.14904,1.39306,-1.32730,-1.50473,-0.31322,1.74829,0.00411
-2.15213,1.39224,-1.32763,-1.50450,-0.31312,1.74911,0.00411
-2.15523,1.39143,-1.32796,-1.50428,-0.31301,1.74992,0.00411
-2.15832,1.39064,-1.32829,-1.50406,-0.31290,1.75071,0.00410
-2.16141,1.38985,-1.32861,-1.50383,-0.31280,1.75149,0.00410
-2.16450,1.38908,-1.32892,-1.50362,-0.31270,1.75226,0.00410
-2.16759,1.38833,-1.32924,-1.50340,-0.31260,1.75302,0.00410
-2.17069,1.38758,-1.32954,-1.50319,-0.31250,1.75376,0.00409
-2.17378,1.38685,-1.32985,-1.50298,-0.31240,1.75450,0.00409
-2.17687,1.38612,-1.33014,-1.50277,-0.31231,1.75522,0.00409
-2.17996,1.38541,-1.33044,-1.50257,-0.31221,1.75593,0.00409
-2.18306,1.38471,-1.33073,-1.50237,-0.31212,1.75663,0.00408
-2.18615,1.38402,-1.33102,-1.50217,-0.31203,1.75732,0.00408
-2.18924,1.38335,-1.33130,-1.50197,-0.31194,1.75800,0.00408
-2.19233,1.38268,-1.33158,-1.50178,-0.31185,1.75867,0.00408
-2.19542,1.38202,-1.33185,-1.50158,-0.31177,1.75932,0.00407
-2.19852,1.38138,-1.33212,-1.50139,-0.31168,1.75997,0.00407
-2.20161,1.38074,-1.33239,-1.50121,-0.31160,1.76061,0.00407
-2.20470,1.38011,-1.33265,-1.50102,-0.31152,1.76124,0.00407
-2.20779,1.37950,-1.33291,-1.50084,-0.31144,1.76186,0.00407
-2.21088,1.37889,-1.33316,-1.50066,-0.31136,1.76246,0.00406
-2.21398,1.37829,-1.33342,-1.50048,-0.31129,1.76306,0.00406
-2.21707,1.37770,-1.33366,-1.50031,-0.31121,1.76365,0.00406
-2.22016,1.37712,-1.33391,-1.50013,-0.31114,1.76423,0.00406
-2.22325,1.37656,-1.33415,-1.49996,-0.31106,1.76481,0.00405
-2.22635,1.37599,-1.33439,-1.49979,-0.31099,1.76537,0.00405
-2.22944,1.37566,-1.33453,-1.49969,-0.31095,1.76571,0.00405
-2.23253,1.37506,-1.33478,-1.49951,-0.31087,1.76631,0.00405
-2.23562,1.37447,-1.33503,-1.49934,-0.31080,1.76689,0.00405
-2.23871,1.37390,-1.33527,-1.49916,-0.31073,1.76747,0.00405
-2.24181,1.37333,-1.33552,-1.49899,-0.31065,1.76804,0.00404
-2.24490,1.37277,-1.33575,-1.49882,-0.31058,1.76861,0.00404
-2.24799,1.37243,-1.33590,-1.49872,-0.31054,1.76894,0.00404
-2.25108,1.37184,-1.33615,-1.49854,-0.31046,1.76954,0.00404
-2.25417,1.37125,-1.33640,-1.49836,-0.31039,1.77013,0.00404
-2.25727,1.37068,-1.33665,-1.49818,-0.31032,1.77070,0.00403
-2.26036,1.37011,-1.33689,-1.49801,-0.31025,1.77127,0.00403
-2.26345,1.36955,-1.33713,-1.49784,-0.31018,1.77183,0.00403
-2.26654,1.36924,-1.33726,-1.49774,-0.31014,1.77214,0.00403
-2.26964,1.36837,-1.33763,-1.49748,-0.31002,1.77301,0.00403
-2.27273,1.36752,-1.33800,-1.49722,-0.30991,1.77386,0.00402
-2.27582,1.36667,-1.33836,-1.49696,-0.30980,1.77470,0.00402
-2.27891,1.36584,-1.33872,-1.49671,-0.30970,1.77553,0.00402
-2.28200,1.36503,-1.33907,-1.49646,-0.30959,1.77634,0.00401
-2.28510,1.36422,-1.33941,-1.49621,-0.30949,1.77714,0.00401
-2.28819,1.36343,-1.33976,-1.49597,-0.30939,1.77793,0.00401
-2.29128,1.36265,-1.34009,-1.49573,-0.30929,1.77871,0.00401
-2.29437,1.36189,-1.34042,-1.49549,-0.30919,1.77947,0.00400
-2.29746,1.36113,-1.34075,-1.49526,-0.30910,1.78022,0.00400
-2.30056,1.36039,-1.34107,-1.49503,-0.30900,1.78096,0.00400
-2.30365,1.35966,-1.34139,-1.49480,-0.30891,1.78169,0.00399
-2.30674,1.35894,-1.34170,-1.49457,-0.30882,1.78241,0.00399
-2.30983,1.35824,-1.34201,-1.49435,-0.30873,1.78312,0.00399
-2.31293,1.35754,-1.34232,-1.49413,-0.30864,1.78381,0.00399
-2.31602,1.35686,-1.34262,-1.49391,-0.30856,1.78450,0.00399
-2.31911,1.35618,-1.34291,-1.49370,-0.30847,1.78517,0.00398
-2.32220,1.35552,-1.34320,-1.49349,-0.30839,1.78584,0.00398
-2.32529,1.35487,-1.34349,-1.49328,-0.30831,1.78649,0.00398
-2.32839,1.35422,-1.34377,-1.49307,-0.30823,1.78713,0.00398
-2.33148,1.35359,-1.34405,-1.49287,-0.30815,1.78776,0.00397
-2.33457,1.35297,-1.34433,-1.49267,-0.30807,1.78839,0.00397
-2.33766,1.35236,-1.34460,-1.49247,-0.30800,1.78900,0.00397
-2.34075,1.35175,-1.34486,-1.49228,-0.30793,1.78961,0.00397
-2.34385,1.35116,-1.34513,-1.49208,-0.30785,1.79020,0.00397
-2.34694,1.35058,-1.34539,-1.49189,-0.30778,1.79079,0.00396
-2.35003,1.35000,-1.34564,-1.49170,-0.30771,1.79136,0.00396
-2.35312,1.34944,-1.34589,-1.49152,-0.30764,1.79193,0.00396
-2.35622,1.34888,-1.34614,-1.49134,-0.30758,1.79249,0.00396
-2.35931,1.34833,-1.34638,-1.49116,-0.30751,1.79304,0.00396
-2.36240,1.34822,-1.34644,-1.49112,-0.30750,1.79315,0.00396
-2.36549,1.34760,-1.34671,-1.49091,-0.30742,1.79377,0.00395
-2.36858,1.34699,-1.34698,-1.49071,-0.30734,1.79438,0.00395
-2.37168,1.34639,-1.34725,-1.49052,-0.30727,1.79498,0.00395
-2.37477,1.34580,-1.34751,-1.49032,-0.30720,1.79557,0.00395
-2.37786,1.34522,-1.34777,-1.49013,-0.30713,1.79615,0.00394
-2.38095,1.34465,-1.34803,-1.48994,-0.30706,1.79672,0.00394
-2.38404,1.34409,-1.34828,-1.48976,-0.30699,1.79729,0.00394
-2.38714,1.34354,-1.34853,-1.48957,-0.30693,1.79784,0.00394
-2.39023,1.34297,-1.34879,-1.48938,-0.30686,1.79841,0.00394
-2.39332,1.34218,-1.34914,-1.48912,-0.30676,1.79920,0.00393
-2.39641,1.34140,-1.34949,-1.48887,-0.30666,1.79998,0.00393
-2.39951,1.34063,-1.34984,-1.48861,-0.30656,1.80074,0.00393
-2.40260,1.33988,-1.35018,-1.48837,-0.30647,1.80149,0.00393
-2.40569,1.33914,-1.35051,-1.48812,-0.30638,1.80223,0.00392
-2.40878,1.33841,-1.35084,-1.48788,-0.30629,1.80296,0.00392
-2.41187,1.33769,-1.35117,-1.48764,-0.30620,1.80368,0.00392
-2.41497,1.33698,-1.35149,-1.48740,-0.30611,1.80438,0.00392
-2.41806,1.33629,-1.35181,-1.48717,-0.30603,1.80508,0.00391
-2.42115,1.33560,-1.35212,-1.48694,-0.30594,1.80576,0.00391
-2.42424,1.33493,-1.35242,-1.48671,-0.30586,1.80643,0.00391
-2.42733,1.33427,-1.35273,-1.48648,-0.30578,1.80710,0.00391
-2.43043,1.33361,-1.35302,-1.48626,-0.30570,1.80775,0.00390
-2.43352,1.33297,-1.35332,-1.48604,-0.30562,1.80839,0.00390
-2.43661,1.33234,-1.35361,-1.48583,-0.30554,1.80902,0.00390
-2.43970,1.33172,-1.35389,-1.48562,-0.30547,1.80965,0.00390
-2.44280,1.33111,-1.35417,-1.48541,-0.30540,1.81026,0.00390
-2.44589,1.33051,-1.35445,-1.48520,-0.30532,1.81086,0.00389
-2.44898,1.32991,-1.35472,-1.48499,-0.30525,1.81145,0.00389
-2.45207,1.32933,-1.35499,-1.48479,-0.30518,1.81204,0.00389
-2.45516,1.32876,-1.35526,-1.48459,-0.30512,1.81261,0.00389
-2.45826,1.32819,-1.35552,-1.48440,-0.30505,1.81318,0.00389
-2.46135,1.32764,-1.35577,-1.48420,-0.30498,1.81374,0.00388
-2.46444,1.32709,-1.35603,-1.48401,-0.30492,1.81428,0.00388
-2.46753,1.32654,-1.35628,-1.48382,-0.30485,1.81483,0.00388
-2.47062,1.32590,-1.35658,-1.48360,-0.30478,1.81547,0.00388
-2.47372,1.32527,-1.35687,-1.48338,-0.30470,1.81610,0.00388
-2.47681,1.32465,-1.35716,-1.48316,-0.30463,1.81673,0.00387
-2.47990,1.32404,-1.35744,-1.48295,-0.30455,1.81734,0.00387
-2.48299,1.32344,-1.35772,-1.48274,-0.30448,1.81794,0.00387
-2.48609,1.32285,-1.35800,-1.48253,-0.30441,1.81853,0.00387
-2.48918,1.32227,-1.35827,-1.48233,-0.30434,1.81911,0.00387
-2.49227,1.32170,-1.35854,-1.48212,-0.30427,1.81968,0.00386
-2.49536,1.32113,-1.35880,-1.48192,-0.30421,1.82025,0.00386
-2.49845,1.32058,-1.35906,-1.48173,-0.30414,1.82080,0.00386
-2.50155,1.32004,-1.35931,-1.48153,-0.30408,1.82135,0.00386
-2.50464,1.31950,-1.35957,-1.48134,-0.30402,1.82189,0.00386
-2.50773,1.31943,-1.35960,-1.48132,-0.30401,1.82195,0.00386
-2.51082,1.31876,-1.35991,-1.48108,-0.30393,1.82262,0.00385
-2.51391,1.31810,-1.36022,-1.48085,-0.30385,1.82328,0.00385
-2.51701,1.31746,-1.36053,-1.48062,-0.30377,1.82393,0.00385
-2.52010,1.31682,-1.36083,-1.48040,-0.30369,1.82456,0.00385
-2.52319,1.31619,-1.36112,-1.48017,-0.30362,1.82519,0.00384
-2.52628,1.31558,-1.36141,-1.47995,-0.30354,1.82581,0.00384
-2.52938,1.31497,-1.36170,-1.47974,-0.30347,1.82641,0.00384
-2.53247,1.31437,-1.36198,-1.47952,-0.30340,1.82701,0.00384
-2.53556,1.31378,-1.36226,-1.47931,-0.30333,1.82760,0.00384
-2.53865,1.31321,-1.36254,-1.47910,-0.30326,1.82818,0.00383
-2.54174,1.31264,-1.36281,-1.47889,-0.30320,1.82875,0.00383
-2.54484,1.31208,-1.36307,-1.47869,-0.30313,1.82931,0.00383
-2.54793,1.31153,-1.36333,-1.47849,-0.30307,1.82986,0.00383
-2.55102,1.31098,-1.36359,-1.47829,-0.30300,1.83040,0.00383
-2.55411,1.31045,-1.36385,-1.47810,-0.30294,1.83094,0.00382
-2.55720,1.31034,-1.36390,-1.47805,-0.30293,1.83105,0.00382
-2.56030,1.30972,-1.36420,-1.47780,-0.30288,1.83167,0.00382
-2.56339,1.30911,-1.36450,-1.47755,-0.30284,1.83228,0.00382
-2.56648,1.30852,-1.36479,-1.47730,-0.30279,1.83288,0.00382
-2.56957,1.30793,-1.36508,-1.47705,-0.30274,1.83346,0.00382
-2.57267,1.30735,-1.36536,-1.47681,-0.30270,1.83404,0.00381
-2.57576,1.30678,-1.36564,-1.47657,-0.30266,1.83461,0.00381
-2.57885,1.30622,-1.36591,-1.47634,-0.30262,1.83517,0.00381
-2.58194,1.30567,-1.36618,-1.47611,-0.30257,1.83572,0.00381
-2.58503,1.30513,-1.36645,-1.47588,-0.30253,1.83627,0.00381
-2.58813,1.30460,-1.36671,-1.47565,-0.30249,1.83680,0.00380
-2.59122,1.30422,-1.36690,-1.47549,-0.30246,1.83718,0.00380
-2.59431,1.30361,-1.36720,-1.47524,-0.30241,1.83779,0.00380
-2.59740,1.30301,-1.36750,-1.47499,-0.30236,1.83839,0.00380
-2.60049,1.30241,-1.36779,-1.47475,-0.30231,1.83899,0.00380
-2.60359,1.30183,-1.36807,-1.47451,-0.30227,1.83957,0.00380
-2.60668,1.30126,-1.36836,-1.47427,-0.30222,1.84014,0.00379
-2.60977,1.30069,-1.36864,-1.47403,-0.30217,1.84071,0.00379
-2.61286,1.30014,-1.36891,-1.47380,-0.30213,1.84126,0.00379
-2.61596,1.29959,-1.36918,-1.47357,-0.30208,1.84181,0.00379
-2.61905,1.29905,-1.36945,-1.47335,-0.30204,1.84235,0.00379
-2.62214,1.29852,-1.36971,-1.47312,-0.30200,1.84288,0.00378
-2.62523,1.29826,-1.36984,-1.47302,-0.30197,1.84315,0.00378
-2.62832,1.29716,-1.37038,-1.47260,-0.30185,1.84423,0.00378
-2.63142,1.29609,-1.37091,-1.47219,-0.30173,1.84529,0.00378
-2.63451,1.29504,-1.37143,-1.47178,-0.30161,1.84634,0.00377
-2.63760,1.29400,-1.37194,-1.47138,-0.30150,1.84737,0.00377
-2.64069,1.29298,-1.37245,-1.47098,-0.30139,1.84839,0.00376
-2.64378,1.29197,-1.37294,-1.47059,-0.30128,1.84938,0.00376
-2.64688,1.29099,-1.37344,-1.47020,-0.30117,1.85036,0.00376
-2.64997,1.29001,-1.37392,-1.46982,-0.30106,1.85133,0.00375
-2.65306,1.28906,-1.37440,-1.46944,-0.30096,1.85228,0.00375
-2.65615,1.28812,-1.37487,-1.46907,-0.30086,1.85321,0.00375
-2.65925,1.28720,-1.37533,-1.46871,-0.30076,1.85413,0.00374
-2.66234,1.28629,-1.37578,-1.46834,-0.30066,1.85504,0.00374
-2.66543,1.28539,-1.37623,-1.46799,-0.30057,1.85593,0.00374
-2.66852,1.28451,-1.37668,-1.46763,-0.30048,1.85680,0.00373
-2.67161,1.28365,-1.37711,-1.46729,-0.30038,1.85767,0.00373
-2.67471,1.28280,-1.37754,-1.46694,-0.30029,1.85851,0.00373
-2.67780,1.28196,-1.37797,-1.46660,-0.30021,1.85935,0.00372
-2.68089,1.28114,-1.37838,-1.46627,-0.30012,1.86017,0.00372
-2.68398,1.28033,-1.37879,-1.46594,-0.30004,1.86098,0.00372
-2.68707,1.27953,-1.37920,-1.46561,-0.29996,1.86177,0.00372
-2.69017,1.27875,-1.37960,-1.46529,-0.29988,1.86255,0.00371
-2.69326,1.27797,-1.37999,-1.46498,-0.29980,1.86332,0.00371
-2.69635,1.27722,-1.38038,-1.46466,-0.29972,1.86408,0.00371
-2.69944,1.27647,-1.38076,-1.46436,-0.29964,1.86482,0.00371
-2.70254,1.27574,-1.38113,-1.46405,-0.29957,1.86556,0.00370
-2.70563,1.27501,-1.38150,-1.46375,-0.29950,1.86628,0.00370
-2.70872,1.27430,-1.38187,-1.46346,-0.29943,1.86699,0.00370
-2.71181,1.27361,-1.38222,-1.46316,-0.29936,1.86769,0.00370
-2.71490,1.27292,-1.38258,-1.46288,-0.29929,1.86837,0.00369
-2.71800,1.27224,-1.38293,-1.46259,-0.29922,1.86905,0.00369
-2.72109,1.27158,-1.38327,-1.46231,-0.29916,1.86972,0.00369
-2.72418,1.27092,-1.38361,-1.46203,-0.29909,1.87037,0.00369
-2.72727,1.27028,-1.38394,-1.46176,-0.29903,1.87101,0.00368
-2.73036,1.26965,-1.38426,-1.46149,-0.29897,1.87165,0.00368
-2.73346,1.26903,-1.38459,-1.46123,-0.29891,1.87227,0.00368
-2.73655,1.26841,-1.38490,-1.46097,-0.29885,1.87289,0.00368
-2.73964,1.26781,-1.38522,-1.46071,-0.29880,1.87349,0.00368
-2.74273,1.26722,-1.38553,-1.46045,-0.29874,1.87409,0.00367
-2.74583,1.26663,-1.38583,-1.46020,-0.29868,1.87467,0.00367
-2.74892,1.26606,-1.38613,-1.45996,-0.29863,1.87525,0.00367
-2.75201,1.26550,-1.38642,-1.45971,-0.29858,1.87581,0.00367
-2.75510,1.26494,-1.38671,-1.45947,-0.29853,1.87637,0.00367
-2.75819,1.26440,-1.38700,-1.45923,-0.29848,1.87692,0.00367
-2.76129,1.26386,-1.38728,-1.45900,-0.29843,1.87746,0.00366
-2.76438,1.26333,-1.38755,-1.45877,-0.29838,1.87799,0.00366
-2.76747,1.26281,-1.38783,-1.45854,-0.29833,1.87851,0.00366
-2.77056,1.26234,-1.38807,-1.45834,-0.29829,1.87898,0.00366
-2.77365,1.26174,-1.38838,-1.45808,-0.29823,1.87958,0.00366
-2.77675,1.26116,-1.38869,-1.45783,-0.29817,1.88017,0.00365
-2.77984,1.26058,-1.38899,-1.45758,-0.29812,1.88074,0.00365
-2.78293,1.26002,-1.38929,-1.45733,-0.29806,1.88131,0.00365
-2.78602,1.25946,-1.38958,-1.45709,-0.29801,1.88187,0.00365
-2.78912,1.25891,-1.38987,-1.45685,-0.29796,1.88242,0.00365
-2.79221,1.25837,-1.39016,-1.45661,-0.29791,1.88296,0.00365
-2.79530,1.25784,-1.39044,-1.45638,-0.29786,1.88349,0.00364
-2.79839,1.25732,-1.39071,-1.45615,-0.29781,1.88402,0.00364
-2.80148,1.25681,-1.39098,-1.45593,-0.29776,1.88453,0.00364
-2.80458,1.25656,-1.39112,-1.45581,-0.29774,1.88478,0.00364
-2.80767,1.25563,-1.39162,-1.45536,-0.29769,1.88571,0.00364
-2.81076,1.25471,-1.39212,-1.45491,-0.29763,1.88662,0.00363
-2.81385,1.25380,-1.39261,-1.45447,-0.29758,1.88752,0.00363
-2.81694,1.25292,-1.39309,-1.45404,-0.29753,1.88841,0.00363
-2.82004,1.25204,-1.39357,-1.45361,-0.29748,1.88928,0.00362
-2.82313,1.25118,-1.39404,-1.45318,-0.29743,1.89013,0.00362
-2.82622,1.25034,-1.39450,-1.45277,-0.29738,1.89098,0.00362
-2.82931,1.24950,-1.39496,-1.45235,-0.29733,1.89181,0.00361
-2.83241,1.24869,-1.39541,-1.45195,-0.29729,1.89262,0.00361
-2.83550,1.24788,-1.39585,-1.45155,-0.29724,1.89342,0.00361
-2.83859,1.24709,-1.39628,-1.45115,-0.29720,1.89421,0.00361
-2.84168,1.24631,-1.39671,-1.45076,-0.29716,1.89499,0.00360
-2.84477,1.24555,-1.39713,-1.45038,-0.29712,1.89575,0.00360
-2.84787,1.24479,-1.39755,-1.45000,-0.29708,1.89650,0.00360
-2.85096,1.24405,-1.39796,-1.44963,-0.29704,1.89724,0.00360
-2.85405,1.24333,-1.39836,-1.44926,-0.29700,1.89797,0.00359
-2.85714,1.24261,-1.39876,-1.44889,-0.29697,1.89869,0.00359
-2.86024,1.24191,-1.39915,-1.44854,-0.29693,1.89939,0.00359
-2.86333,1.24121,-1.39953,-1.44818,-0.29690,1.90008,0.00359
-2.86642,1.24053,-1.39991,-1.44783,-0.29686,1.90076,0.00358
-2.86951,1.23986,-1.40028,-1.44749,-0.29683,1.90144,0.00358
-2.87260,1.23920,-1.40065,-1.44715,-0.29680,1.90210,0.00358
-2.87570,1.23855,-1.40101,-1.44682,-0.29677,1.90274,0.00358
-2.87879,1.23792,-1.40137,-1.44649,-0.29674,1.90338,0.00358
-2.88188,1.23729,-1.40172,-1.44616,-0.29671,1.90401,0.00357
-2.88497,1.23667,-1.40207,-1.44584,-0.29668,1.90463,0.00357
-2.88806,1.23607,-1.40241,-1.44553,-0.29665,1.90524,0.00357
-2.89116,1.23547,-1.40274,-1.44522,-0.29662,1.90584,0.00357
-2.89425,1.23488,-1.40307,-1.44491,-0.29660,1.90642,0.00357
-2.89734,1.23431,-1.40340,-1.44461,-0.29657,1.90700,0.00356
-2.90043,1.23374,-1.40372,-1.44431,-0.29655,1.90757,0.00356
-2.90353,1.23318,-1.40403,-1.44402,-0.29652,1.90813,0.00356
-2.90662,1.23263,-1.40434,-1.44373,-0.29650,1.90869,0.00356
-2.90971,1.23209,-1.40465,-1.44344,-0.29648,1.90923,0.00356
-2.91280,1.23156,-1.40495,-1.44316,-0.29646,1.90976,0.00355
-2.91589,1.23103,-1.40525,-1.44288,-0.29644,1.91029,0.00355
-2.91899,1.23052,-1.40554,-1.44261,-0.29642,1.91081,0.00355
-2.92208,1.23001,-1.40582,-1.44234,-0.29640,1.91132,0.00355
-2.92517,1.22952,-1.40611,-1.44208,-0.29638,1.91182,0.00355
-2.92826,1.22936,-1.40620,-1.44199,-0.29637,1.91197,0.00355
-2.93135,1.22878,-1.40652,-1.44170,-0.29634,1.91255,0.00355
-2.93445,1.22822,-1.40684,-1.44140,-0.29631,1.91312,0.00354
-2.93754,1.22766,-1.40716,-1.44111,-0.29628,1.91368,0.00354
-2.94063,1.22711,-1.40747,-1.44083,-0.29625,1.91422,0.00354
-2.94372,1.22658,-1.40778,-1.44055,-0.29622,1.91476,0.00354
-2.94682,1.22605,-1.40808,-1.44027,-0.29620,1.91530,0.00354
-2.94991,1.22553,-1.40837,-1.44000,-0.29617,1.91582,0.00353
-2.95300,1.22501,-1.40867,-1.43973,-0.29614,1.91633,0.00353
-2.95609,1.22451,-1.40895,-1.43947,-0.29612,1.91684,0.00353
-2.95918,1.22401,-1.40924,-1.43920,-0.29610,1.91734,0.00353
-2.96228,1.22385,-1.40933,-1.43912,-0.29609,1.91750,0.00353
-2.96537,1.22320,-1.40970,-1.43880,-0.29604,1.91815,0.00353
-2.96846,1.22257,-1.41006,-1.43848,-0.29600,1.91878,0.00352
-2.97155,1.22195,-1.41041,-1.43816,-0.29595,1.91941,0.00352
-2.97464,1.22133,-1.41076,-1.43785,-0.29591,1.92002,0.00352
-2.97774,1.22073,-1.41111,-1.43755,-0.29587,1.92062,0.00352
-2.98083,1.22013,-1.41145,-1.43724,-0.29583,1.92122,0.00352
-2.98392,1.21955,-1.41178,-1.43695,-0.29579,1.92180,0.00351
-2.98701,1.21897,-1.41211,-1.43665,-0.29575,1.92238,0.00351
-2.99011,1.21841,-1.41244,-1.43636,-0.29572,1.92295,0.00351
-2.99320,1.21785,-1.41276,-1.43608,-0.29568,1.92350,0.00351
-2.99629,1.21731,-1.41307,-1.43580,-0.29565,1.92405,0.00351
-2.99938,1.21677,-1.41338,-1.43552,-0.29561,1.92459,0.00351
-3.00247,1.21624,-1.41368,-1.43525,-0.29558,1.92512,0.00350
-3.00557,1.21572,-1.41398,-1.43498,-0.29554,1.92564,0.00350
-3.00866,1.21521,-1.41428,-1.43471,-0.29551,1.92616,0.00350
-3.01175,1.21471,-1.41457,-1.43445,-0.29548,1.92666,0.00350
-3.01484,1.21421,-1.41486,-1.43419,-0.29545,1.92716,0.00350
-3.01793,1.21391,-1.41503,-1.43404,-0.29543,1.92746,0.00350
-3.02103,1.21337,-1.41534,-1.43376,-0.29540,1.92800,0.00349
-3.02412,1.21284,-1.41565,-1.43348,-0.29536,1.92853,0.00349
-3.02721,1.21232,-1.41595,-1.43322,-0.29533,1.92906,0.00349
-3.03030,1.21181,-1.41625,-1.43295,-0.29529,1.92957,0.00349
-3.03340,1.21130,-1.41654,-1.43269,-0.29526,1.93008,0.00349
-3.03649,1.21080,-1.41683,-1.43243,-0.29523,1.93058,0.00349
-3.03958,1.21030,-1.41712,-1.43217,-0.29519,1.93108,0.00348
-3.04267,1.20969,-1.41748,-1.43186,-0.29514,1.93169,0.00348
-3.04576,1.20909,-1.41782,-1.43156,-0.29510,1.93229,0.00348
-3.04886,1.20850,-1.41817,-1.43126,-0.29505,1.93288,0.00348
-3.05195,1.20792,-1.41851,-1.43097,-0.29501,1.93346,0.00348
-3.05504,1.20735,-1.41884,-1.43067,-0.29496,1.93403,0.00347
-3.05813,1.20679,-1.41916,-1.43039,-0.29492,1.93459,0.00347
-3.06122,1.20624,-1.41949,-1.43011,-0.29488,1.93515,0.00347
-3.06432,1.20569,-1.41980,-1.42983,-0.29484,1.93569,0.00347
-3.06741,1.20516,-1.42012,-1.42955,-0.29480,1.93622,0.00347
-3.07050,1.20463,-1.42042,-1.42928,-0.29476,1.93675,0.00346
-3.07359,1.20412,-1.42073,-1.42902,-0.29472,1.93727,0.00346
-3.07669,1.20361,-1.42102,-1.42875,-0.29468,1.93778,0.00346
-3.07978,1.20311,-1.42132,-1.42849,-0.29465,1.93828,0.00346
-3.08287,1.20262,-1.42161,-1.42824,-0.29461,1.93877,0.00346
-3.08596,1.20227,-1.42181,-1.42806,-0.29459,1.93912,0.00346
-3.08905,1.20171,-1.42214,-1.42777,-0.29454,1.93968,0.00345
-3.09215,1.20115,-1.42247,-1.42749,-0.29450,1.94024,0.00345
-3.09524,1.20061,-1.42279,-1.42721,-0.29446,1.94078,0.00345
-3.09833,1.20007,-1.42310,-1.42693,-0.29441,1.94132,0.00345
-3.10142,1.19955,-1.42342,-1.42666,-0.29437,1.94185,0.00345
-3.10451,1.19903,-1.42372,-1.42639,-0.29433,1.94237,0.00345
-3.10761,1.19852,-1.42402,-1.42613,-0.29429,1.94288,0.00344
-3.11070,1.19802,-1.42432,-1.42587,-0.29426,1.94338,0.00344
-3.11379,1.19752,-1.42461,-1.42561,-0.29422,1.94388,0.00344
-3.11688,1.19704,-1.42490,-1.42536,-0.29418,1.94436,0.00344
-3.11998,1.19693,-1.42496,-1.42530,-0.29417,1.94447,0.00344
-3.12307,1.19633,-1.42532,-1.42499,-0.29412,1.94507,0.00344
-3.12616,1.19573,-1.42567,-1.42469,-0.29407,1.94567,0.00343
-3.12925,1.19515,-1.42602,-1.42439,-0.29402,1.94625,0.00343
-3.13234,1.19458,-1.42636,-1.42410,-0.29397,1.94682,0.00343
-3.13544,1.19401,-1.42669,-1.42381,-0.29392,1.94739,0.00343
-3.13853,1.19346,-1.42702,-1.42352,-0.29388,1.94794,0.00343
-3.14162,1.19291,-1.42735,-1.42324,-0.29383,1.94849,0.00342
-3.14471,1.19237,-1.42767,-1.42296,-0.29379,1.94902,0.00342
-3.14780,1.19185,-1.42799,-1.42269,-0.29374,1.94955,0.00342
-3.15090,1.19133,-1.42830,-1.42242,-0.29370,1.95007,0.00342
-3.15399,1.19082,-1.42860,-1.42215,-0.29366,1.95058,0.00342
-3.15708,1.19032,-1.42890,-1.42189,-0.29362,1.95109,0.00342
-3.16017,1.18982,-1.42920,-1.42163,-0.29358,1.95158,0.00341
-3.16327,1.18934,-1.42949,-1.42138,-0.29354,1.95207,0.00341
-3.16636,1.18905,-1.42966,-1.42123,-0.29352,1.95236,0.00341
-3.16945,1.18853,-1.42997,-1.42096,-0.29348,1.95288,0.00341
-3.17254,1.18802,-1.43028,-1.42069,-0.29344,1.95338,0.00341
-3.17563,1.18753,-1.43058,-1.42043,-0.29340,1.95388,0.00341
-3.17873,1.18704,-1.43087,-1.42017,-0.29336,1.95437,0.00341
-3.18182,1.18655,-1.43116,-1.41992,-0.29332,1.95486,0.00340
-3.18491,1.18641,-1.43125,-1.41984,-0.29331,1.95501,0.00340
-3.18800,1.18588,-1.43157,-1.41957,-0.29326,1.95553,0.00340
-3.19109,1.18536,-1.43188,-1.41929,-0.29322,1.95605,0.00340
-3.19419,1.18485,-1.43219,-1.41903,-0.29318,1.95656,0.00340
-3.19728,1.18435,-1.43249,-1.41876,-0.29314,1.95707,0.00340
-3.20037,1.18385,-1.43279,-1.41850,-0.29310,1.95756,0.00339
-3.20346,1.18337,-1.43308,-1.41825,-0.29306,1.95805,0.00339
-3.20656,1.18288,-1.43338,-1.41799,-0.29302,1.95853,0.00339
-3.20965,1.18231,-1.43372,-1.41769,-0.29297,1.95910,0.00339
-3.21274,1.18176,-1.43406,-1.41740,-0.29292,1.95966,0.00339
-3.21583,1.18121,-1.43440,-1.41712,-0.29287,1.96021,0.00339
-3.21892,1.18067,-1.43472,-1.41683,-0.29282,1.96075,0.00338
-3.22202,1.18014,-1.43505,-1.41655,-0.29278,1.96128,0.00338
-3.22511,1.17962,-1.43536,-1.41628,-0.29273,1.96180,0.00338
-3.22820,1.17910,-1.43568,-1.41601,-0.29269,1.96231,0.00338
-3.23129,1.17860,-1.43599,-1.41574,-0.29265,1.96282,0.00338
-3.23438,1.17810,-1.43629,-1.41548,-0.29261,1.96332,0.00338
-3.23748,1.17761,-1.43659,-1.41522,-0.29257,1.96380,0.00337
-3.24057,1.17713,-1.43688,-1.41496,-0.29253,1.96429,0.00337
-3.24366,1.17684,-1.43706,-1.41481,-0.29250,1.96458,0.00337
-3.24675,1.17629,-1.43740,-1.41452,-0.29245,1.96513,0.00337
-3.24985,1.17575,-1.43773,-1.41423,-0.29241,1.96567,0.00337
-3.25294,1.17522,-1.43806,-1.41395,-0.29236,1.96620,0.00337
-3.25603,1.17469,-1.43838,-1.41367,-0.29231,1.96673,0.00336
-3.25912,1.17418,-1.43869,-1.41340,-0.29227,1.96724,0.00336
-3.26221,1.17367,-1.43901,-1.41313,-0.29223,1.96775,0.00336
-3.26531,1.17317,-1.43931,-1.41286,-0.29218,1.96825,0.00336
-3.26840,1.17268,-1.43961,-1.41260,-0.29214,1.96874,0.00336
-3.27149,1.17220,-1.43991,-1.41234,-0.29210,1.96922,0.00336
-3.27458,1.17173,-1.44020,-1.41208,-0.29206,1.96969,0.00335
-3.27767,1.17168,-1.44024,-1.41206,-0.29206,1.96975,0.00335
-3.28077,1.17117,-1.44055,-1.41178,-0.29202,1.97025,0.00335
-3.28386,1.17067,-1.44086,-1.41152,-0.29197,1.97075,0.00335
-3.28695,1.17018,-1.44116,-1.41125,-0.29193,1.97124,0.00335
-3.29004,1.16970,-1.44146,-1.41099,-0.29189,1.97172,0.00335
-3.29314,1.16923,-1.44175,-1.41074,-0.29185,1.97220,0.00335
-3.29623,1.16909,-1.44184,-1.41066,-0.29184,1.97234,0.00335
-3.29932,1.16861,-1.44214,-1.41040,-0.29180,1.97282,0.00334
-3.30241,1.16823,-1.44237,-1.41020,-0.29177,1.97320,0.00334
-3.30550,1.16776,-1.44267,-1.40994,-0.29173,1.97367,0.00334
-3.30860,1.16740,-1.44290,-1.40970,-0.29174,1.97403,0.00334
-3.31169,1.16717,-1.44312,-1.40909,-0.29211,1.97426,0.00334
-3.31478,1.16695,-1.44335,-1.40850,-0.29247,1.97450,0.00334
-3.31787,1.16673,-1.44357,-1.40791,-0.29283,1.97473,0.00334
-3.32096,1.16651,-1.44379,-1.40734,-0.29318,1.97495,0.00334
-3.32406,1.16649,-1.44381,-1.40727,-0.29322,1.97497,0.00334
-3.32715,1.16633,-1.44401,-1.40667,-0.29362,1.97514,0.00334
-3.33024,1.16618,-1.44420,-1.40608,-0.29402,1.97530,0.00334
-3.33333,1.16602,-1.44438,-1.40549,-0.29441,1.97547,0.00334
-3.33643,1.16595,-1.44447,-1.40520,-0.29461,1.97554,0.00334
-3.33952,1.16586,-1.44463,-1.40461,-0.29504,1.97564,0.00335
-3.34261,1.16576,-1.44479,-1.40403,-0.29546,1.97575,0.00335
-3.34570,1.16567,-1.44494,-1.40345,-0.29587,1.97585,0.00335
-3.34879,1.16569,-1.44495,-1.40338,-0.29594,1.97584,0.00335
-3.35189,1.16581,-1.44502,-1.40265,-0.29659,1.97573,0.00335
-3.35498,1.16593,-1.44509,-1.40193,-0.29724,1.97562,0.00335
-3.35807,1.16605,-1.44516,-1.40122,-0.29787,1.97551,0.00335
-3.36116,1.16617,-1.44522,-1.40052,-0.29849,1.97541,0.00335
-3.36425,1.16628,-1.44529,-1.39983,-0.29910,1.97531,0.00336
-3.36735,1.16640,-1.44536,-1.39915,-0.29970,1.97521,0.00336
-3.37044,1.16651,-1.44543,-1.39849,-0.30029,1.97511,0.00336
-3.37353,1.16662,-1.44550,-1.39783,-0.30088,1.97501,0.00336
-3.37662,1.16672,-1.44556,-1.39719,-0.30145,1.97492,0.00336
-3.37972,1.16683,-1.44563,-1.39655,-0.30201,1.97482,0.00336
-3.38281,1.16693,-1.44570,-1.39593,-0.30256,1.97473,0.00336
-3.38590,1.16703,-1.44577,-1.39531,-0.30310,1.97464,0.00337
-3.38899,1.16713,-1.44583,-1.39471,-0.30364,1.97456,0.00337
-3.39208,1.16723,-1.44590,-1.39411,-0.30416,1.97447,0.00337
-3.39518,1.16733,-1.44596,-1.39353,-0.30468,1.97438,0.00337
-3.39827,1.16742,-1.44603,-1.39295,-0.30518,1.97430,0.00337
-3.40136,1.16751,-1.44609,-1.39238,-0.30568,1.97422,0.00337
-3.40445,1.16760,-1.44616,-1.39182,-0.30617,1.97414,0.00337
-3.40754,1.16769,-1.44622,-1.39127,-0.30666,1.97406,0.00337
-3.41064,1.16778,-1.44629,-1.39073,-0.30713,1.97398,0.00337
-3.41373,1.16786,-1.44635,-1.39020,-0.30759,1.97391,0.00337
-3.41682,1.16795,-1.44641,-1.38968,-0.30805,1.97383,0.00337
-3.41991,1.16803,-1.44647,-1.38916,-0.30850,1.97376,0.00337
-3.42301,1.16811,-1.44652,-1.38875,-0.30887,1.97369,0.00337
-3.42610,1.16830,-1.44654,-1.38817,-0.30942,1.97351,0.00337
-3.42919,1.16849,-1.44655,-1.38761,-0.30997,1.97333,0.00337
-3.43228,1.16868,-1.44657,-1.38705,-0.31051,1.97315,0.00337
-3.43537,1.16886,-1.44659,-1.38650,-0.31103,1.97298,0.00337
-3.43847,1.16904,-1.44661,-1.38596,-0.31155,1.97281,0.00337
-3.44156,1.16922,-1.44662,-1.38543,-0.31206,1.97264,0.00338
-3.44465,1.16939,-1.44664,-1.38491,-0.31256,1.97248,0.00338
-3.44774,1.16957,-1.44666,-1.38439,-0.31306,1.97232,0.00338
-3.45083,1.16973,-1.44668,-1.38389,-0.31354,1.97216,0.00338
-3.45393,1.16990,-1.44670,-1.38339,-0.31402,1.97200,0.00338
-3.45702,1.17006,-1.44672,-1.38290,-0.31449,1.97185,0.00338
-3.46011,1.17022,-1.44674,-1.38241,-0.31495,1.97170,0.00338
-3.46320,1.17038,-1.44676,-1.38194,-0.31540,1.97155,0.00338
-3.46630,1.17053,-1.44678,-1.38147,-0.31584,1.97140,0.00338
-3.46939,1.17065,-1.44679,-1.38118,-0.31613,1.97129,0.00338
-3.47248,1.17104,-1.44670,-1.38062,-0.31677,1.97092,0.00338
-3.47557,1.17143,-1.44662,-1.38006,-0.31741,1.97054,0.00338
-3.47866,1.17181,-1.44655,-1.37951,-0.31803,1.97018,0.00338
-3.48176,1.17218,-1.44647,-1.37897,-0.31865,1.96982,0.00338
-3.48485,1.17255,-1.44640,-1.37844,-0.31925,1.96946,0.00338
-3.48794,1.17291,-1.44633,-1.37791,-0.31984,1.96912,0.00338
-3.49103,1.17326,-1.44626,-1.37740,-0.32042,1.96877,0.00338
-3.49412,1.17361,-1.44619,-1.37689,-0.32100,1.96844,0.00338
-3.49722,1.17395,-1.44613,-1.37639,-0.32156,1.96810,0.00338
-3.50031,1.17429,-1.44606,-1.37590,-0.32211,1.96778,0.00338
-3.50340,1.17462,-1.44600,-1.37541,-0.32266,1.96746,0.00339
-3.50649,1.17495,-1.44594,-1.37494,-0.32319,1.96714,0.00339
-3.50959,1.17527,-1.44588,-1.37447,-0.32372,1.96683,0.00339
-3.51268,1.17558,-1.44583,-1.37401,-0.32423,1.96652,0.00339
-3.51577,1.17589,-1.44577,-1.37355,-0.32474,1.96622,0.00339
-3.51886,1.17620,-1.44572,-1.37311,-0.32524,1.96593,0.00339
-3.52195,1.17650,-1.44567,-1.37267,-0.32573,1.96564,0.00339
-3.52505,1.17680,-1.44562,-1.37224,-0.32621,1.96535,0.00339
-3.52814,1.17709,-1.44557,-1.37181,-0.32669,1.96507,0.00339
-3.53123,1.17737,-1.44552,-1.37139,-0.32715,1.96479,0.00339
-3.53432,1.17765,-1.44548,-1.37098,-0.32761,1.96452,0.00339
-3.53741,1.17793,-1.44543,-1.37058,-0.32806,1.96425,0.00339
-3.54051,1.17820,-1.44539,-1.37018,-0.32850,1.96399,0.00338
-3.54360,1.17847,-1.44535,-1.36979,-0.32894,1.96373,0.00338
-3.54669,1.17873,-1.44531,-1.36940,-0.32936,1.96347,0.00338
-3.54978,1.17899,-1.44527,-1.36902,-0.32978,1.96322,0.00338
-3.55288,1.17915,-1.44524,-1.36879,-0.33005,1.96306,0.00338
-3.55597,1.17950,-1.44517,-1.36833,-0.33057,1.96272,0.00338
-3.55906,1.17985,-1.44510,-1.36788,-0.33109,1.96238,0.00338
-3.56215,1.18019,-1.44503,-1.36744,-0.33160,1.96205,0.00338
-3.56524,1.18053,-1.44496,-1.36701,-0.33209,1.96172,0.00338
-3.56834,1.18086,-1.44490,-1.36659,-0.33259,1.96140,0.00338
-3.57143,1.18118,-1.44484,-1.36617,-0.33307,1.96108,0.00338
-3.57452,1.18150,-1.44478,-1.36575,-0.33354,1.96077,0.00338
-3.57761,1.18181,-1.44472,-1.36535,-0.33401,1.96047,0.00338
-3.58071,1.18212,-1.44466,-1.36495,-0.33447,1.96017,0.00338
-3.58380,1.18243,-1.44460,-1.36456,-0.33492,1.95987,0.00338
-3.58689,1.18273,-1.44455,-1.36417,-0.33536,1.95958,0.00338
-3.58998,1.18302,-1.44449,-1.36379,-0.33579,1.95929,0.00338
-3.59307,1.18331,-1.44444,-1.36341,-0.33622,1.95901,0.00338
-3.59617,1.18359,-1.44439,-1.36305,-0.33664,1.95873,0.00338
-3.59926,1.18387,-1.44434,-1.36268,-0.33705,1.95846,0.00338
-3.60235,1.18407,-1.44431,-1.36243,-0.33734,1.95826,0.00338
-3.60544,1.18440,-1.44424,-1.36204,-0.33781,1.95794,0.00338
-3.60853,1.18472,-1.44417,-1.36165,-0.33826,1.95762,0.00338
-3.61163,1.18504,-1.44411,-1.36127,-0.33870,1.95731,0.00338
-3.61472,1.18536,-1.44405,-1.36090,-0.33914,1.95700,0.00338
-3.61781,1.18566,-1.44398,-1.36053,-0.33957,1.95670,0.00338
-3.62090,1.18597,-1.44393,-1.36017,-0.33999,1.95641,0.00338
-3.62400,1.18627,-1.44387,-1.35981,-0.34041,1.95611,0.00338
-3.62709,1.18656,-1.44381,-1.35946,-0.34082,1.95583,0.00338
-3.63018,1.18683,-1.44376,-1.35915,-0.34118,1.95557,0.00338
-3.63327,1.18717,-1.44368,-1.35879,-0.34162,1.95523,0.00338
-3.63636,1.18750,-1.44360,-1.35843,-0.34206,1.95490,0.00337
-3.63946,1.18784,-1.44353,-1.35808,-0.34248,1.95458,0.00337
-3.64255,1.18816,-1.44346,-1.35773,-0.34290,1.95426,0.00337
-3.64564,1.18848,-1.44339,-1.35739,-0.34332,1.95394,0.00337
-3.64873,1.18880,-1.44332,-1.35706,-0.34372,1.95363,0.00337
-3.65182,1.18911,-1.44325,-1.35673,-0.34412,1.95333,0.00337
-3.65492,1.18933,-1.44320,-1.35650,-0.34440,1.95311,0.00337
-3.65801,1.18973,-1.44310,-1.35612,-0.34488,1.95271,0.00337
-3.66110,1.19013,-1.44300,-1.35576,-0.34535,1.95233,0.00337
-3.66419,1.19052,-1.44290,-1.35540,-0.34581,1.95194,0.00337
-3.66729,1.19090,-1.44280,-1.35504,-0.34627,1.95157,0.00337
-3.67038,1.19128,-1.44271,-1.35469,-0.34671,1.95120,0.00337
-3.67347,1.19165,-1.44261,-1.35435,-0.34715,1.95083,0.00337
-3.67656,1.19202,-1.44252,-1.35401,-0.34758,1.95047,0.00337
-3.67965,1.19237,-1.44244,-1.35367,-0.34800,1.95012,0.00337
-3.68275,1.19273,-1.44235,-1.35334,-0.34842,1.94977,0.00337
-3.68584,1.19308,-1.44227,-1.35302,-0.34883,1.94943,0.00337
-3.68893,1.19342,-1.44218,-1.35270,-0.34923,1.94910,0.00337
-3.69202,1.19375,-1.44210,-1.35239,-0.34963,1.94876,0.00337
-3.69511,1.19408,-1.44202,-1.35208,-0.35001,1.94844,0.00337
-3.69821,1.19436,-1.44196,-1.35183,-0.35034,1.94817,0.00337
-3.70130,1.19480,-1.44185,-1.35140,-0.35087,1.94774,0.00337
-3.70439,1.19523,-1.44175,-1.35098,-0.35140,1.94731,0.00337
-3.70748,1.19565,-1.44165,-1.35056,-0.35191,1.94690,0.00337
-3.71058,1.19607,-1.44155,-1.35015,-0.35242,1.94648,0.00337
-3.71367,1.19649,-1.44146,-1.34975,-0.35292,1.94608,0.00337
-3.71676,1.19689,-1.44136,-1.34936,-0.35341,1.94568,0.00337
-3.71985,1.19729,-1.44127,-1.34897,-0.35389,1.94529,0.00337
-3.72294,1.19768,-1.44118,-1.34858,-0.35436,1.94490,0.00337
-3.72604,1.19807,-1.44110,-1.34821,-0.35483,1.94452,0.00337
-3.72913,1.19845,-1.44101,-1.34783,-0.35529,1.94415,0.00337
-3.73222,1.19882,-1.44093,-1.34747,-0.35574,1.94378,0.00337
-3.73531,1.19919,-1.44085,-1.34711,-0.35618,1.94342,0.00337
-3.73840,1.19955,-1.44077,-1.34676,-0.35661,1.94306,0.00337
-3.74150,1.19990,-1.44069,-1.34641,-0.35704,1.94271,0.00336
-3.74459,1.20025,-1.44061,-1.34607,-0.35746,1.94237,0.00336
-3.74768,1.20060,-1.44054,-1.34573,-0.35787,1.94203,0.00336
-3.75077,1.20093,-1.44047,-1.34540,-0.35828,1.94170,0.00336
-3.75387,1.20127,-1.44040,-1.34507,-0.35868,1.94137,0.00336
-3.75696,1.20159,-1.44033,-1.34475,-0.35907,1.94105,0.00336
-3.76005,1.20189,-1.44026,-1.34447,-0.35941,1.94076,0.00336
-3.76314,1.20254,-1.44009,-1.34391,-0.36015,1.94011,0.00336
-3.76623,1.20319,-1.43992,-1.34335,-0.36087,1.93948,0.00336
-3.76933,1.20383,-1.43976,-1.34280,-0.36158,1.93885,0.00336
-3.77242,1.20446,-1.43960,-1.34227,-0.36228,1.93823,0.00337
-3.77551,1.20507,-1.43944,-1.34174,-0.36297,1.93763,0.00337
-3.77860,1.20568,-1.43929,-1.34121,-0.36364,1.93703,0.00337
-3.78169,1.20628,-1.43914,-1.34070,-0.36431,1.93644,0.00337
-3.78479,1.20686,-1.43899,-1.34019,-0.36496,1.93587,0.00337
-3.78788,1.20744,-1.43885,-1.33970,-0.36560,1.93530,0.00337
-3.79097,1.20801,-1.43871,-1.33921,-0.36623,1.93474,0.00337
-3.79406,1.20857,-1.43857,-1.33873,-0.36685,1.93419,0.00337
-3.79716,1.20912,-1.43844,-1.33825,-0.36746,1.93364,0.00337
-3.80025,1.20967,-1.43831,-1.33778,-0.36805,1.93311,0.00337
-3.80334,1.21020,-1.43818,-1.33732,-0.36864,1.93258,0.00337
-3.80643,1.21072,-1.43806,-1.33687,-0.36922,1.93207,0.00337
-3.80952,1.21124,-1.43794,-1.33643,-0.36979,1.93156,0.00337
-3.81262,1.21175,-1.43782,-1.33599,-0.37035,1.93106,0.00337
-3.81571,1.21225,-1.43770,-1.33556,-0.37089,1.93056,0.00337
-3.81880,1.21274,-1.43759,-1.33513,-0.37143,1.93008,0.00337
-3.82189,1.21322,-1.43748,-1.33471,-0.37196,1.92960,0.00337
-3.82498,1.21370,-1.43737,-1.33430,-0.37248,1.92913,0.00337
-3.82808,1.21417,-1.43727,-1.33390,-0.37300,1.92867,0.00337
-3.83117,1.21463,-1.43716,-1.33350,-0.37350,1.92821,0.00337
-3.83426,1.21508,-1.43706,-1.33311,-0.37399,1.92776,0.00337
-3.83735,1.21553,-1.43696,-1.33272,-0.37448,1.92732,0.00337
-3.84045,1.21597,-1.43687,-1.33234,-0.37496,1.92689,0.00336
-3.84354,1.21640,-1.43677,-1.33197,-0.37543,1.92646,0.00336
-3.84663,1.21683,-1.43668,-1.33160,-0.37589,1.92604,0.00336
-3.84972,1.21724,-1.43659,-1.33124,-0.37634,1.92563,0.00336
-3.85281,1.21766,-1.43650,-1.33089,-0.37679,1.92522,0.00336
-3.85591,1.21806,-1.43642,-1.33054,-0.37723,1.92482,0.00336
-3.85900,1.21846,-1.43634,-1.33019,-0.37766,1.92442,0.00336
-3.86209,1.21885,-1.43625,-1.32985,-0.37808,1.92404,0.00336
-3.86518,1.21924,-1.43617,-1.32952,-0.37850,1.92365,0.00336
-3.86827,1.21962,-1.43610,-1.32919,-0.37891,1.92328,0.00336
-3.87137,1.21999,-1.43602,-1.32887,-0.37931,1.92291,0.00336
-3.87446,1.22036,-1.43594,-1.32855,-0.37971,1.92254,0.00336
-3.87755,1.22072,-1.43587,-1.32824,-0.38009,1.92219,0.00336
-3.88064,1.22107,-1.43580,-1.32793,-0.38048,1.92183,0.00336
-3.88374,1.22143,-1.43573,-1.32762,-0.38086,1.92148,0.00335
-3.88683,1.22185,-1.43563,-1.32729,-0.38129,1.92106,0.00335
-3.88992,1.22226,-1.43554,-1.32696,-0.38171,1.92066,0.00335
-3.89301,1.22266,-1.43545,-1.32664,-0.38213,1.92026,0.00335
-3.89610,1.22306,-1.43537,-1.32632,-0.38254,1.91986,0.00335
-3.89920,1.22346,-1.43528,-1.32600,-0.38294,1.91947,0.00335
-3.90229,1.22384,-1.43520,-1.32570,-0.38333,1.91909,0.00335
-3.90538,1.22422,-1.43512,-1.32539,-0.38372,1.91871,0.00335
-3.90847,1.22459,-1.43503,-1.32509,-0.38410,1.91834,0.00335
-3.91156,1.22496,-1.43496,-1.32480,-0.38448,1.91798,0.00335
-3.91466,1.22532,-1.43488,-1.32451,-0.38485,1.91762,0.00335
-3.91775,1.22537,-1.43487,-1.32447,-0.38490,1.91757,0.00335
-3.92084,1.22587,-1.43476,-1.32406,-0.38542,1.91708,0.00335
-3.92393,1.22635,-1.43466,-1.32365,-0.38594,1.91660,0.00335
-3.92703,1.22683,-1.43456,-1.32325,-0.38644,1.91613,0.00335
-3.93012,1.22730,-1.43446,-1.32285,-0.38694,1.91567,0.00335
-3.93321,1.22776,-1.43436,-1.32246,-0.38742,1.91521,0.00335
-3.93630,1.22821,-1.43427,-1.32208,-0.38790,1.91477,0.00335
-3.93939,1.22866,-1.43418,-1.32170,-0.38837,1.91432,0.00335
-3.94249,1.22910,-1.43409,-1.32133,-0.38884,1.91389,0.00334
-3.94558,1.22953,-1.43400,-1.32097,-0.38929,1.91346,0.00334
-3.94867,1.22995,-1.43391,-1.32061,-0.38974,1.91304,0.00334
-3.95176,1.23037,-1.43383,-1.32025,-0.39018,1.91262,0.00334
-3.95485,1.23078,-1.43375,-1.31991,-0.39061,1.91222,0.00334
-3.95795,1.23119,-1.43367,-1.31956,-0.39104,1.91182,0.00334
-3.96104,1.23159,-1.43359,-1.31923,-0.39145,1.91142,0.00334
-3.96413,1.23198,-1.43351,-1.31890,-0.39186,1.91103,0.00334
-3.96722,1.23237,-1.43344,-1.31857,-0.39227,1.91065,0.00334
-3.97032,1.23275,-1.43336,-1.31825,-0.39266,1.91027,0.00334
-3.97341,1.23312,-1.43329,-1.31793,-0.39305,1.90990,0.00334
-3.97650,1.23349,-1.43322,-1.31762,-0.39344,1.90954,0.00334
-3.97959,1.23385,-1.43315,-1.31732,-0.39381,1.90918,0.00334
-3.98268,1.23410,-1.43311,-1.31711,-0.39408,1.90893,0.00334
-3.98578,1.23448,-1.43303,-1.31679,-0.39447,1.90855,0.00334
-3.98887,1.23486,-1.43296,-1.31647,-0.39486,1.90817,0.00334
-3.99196,1.23523,-1.43289,-1.31616,-0.39524,1.90781,0.00333
-3.99505,1.23559,-1.43282,-1.31586,-0.39562,1.90745,0.00333
-3.99814,1.23588,-1.43277,-1.31561,-0.39592,1.90716,0.00333
-4.00124,1.23624,-1.43271,-1.31527,-0.39632,1.90681,0.00333
-4.00433,1.23658,-1.43266,-1.31493,-0.39672,1.90646,0.00333
-4.00742,1.23693,-1.43261,-1.31459,-0.39711,1.90612,0.00333
-4.01051,1.23724,-1.43256,-1.31429,-0.39746,1.90581,0.00333
-4.01361,1.23765,-1.43249,-1.31391,-0.39791,1.90541,0.00333
-4.01670,1.23805,-1.43242,-1.31354,-0.39836,1.90501,0.00333
-4.01979,1.23845,-1.43236,-1.31317,-0.39879,1.90461,0.00333
-4.02288,1.23884,-1.43229,-1.31280,-0.39922,1.90423,0.00333
-4.02597,1.23922,-1.43223,-1.31245,-0.39964,1.90385,0.00333
-4.02907,1.23960,-1.43217,-1.31210,-0.40006,1.90347,0.00333
-4.03216,1.23997,-1.43211,-1.31175,-0.40047,1.90310,0.00333
-4.03525,1.24034,-1.43205,-1.31141,-0.40087,1.90274,0.00333
-4.03834,1.24070,-1.43199,-1.31108,-0.40126,1.90239,0.00333
-4.04143,1.24105,-1.43193,-1.31075,-0.40165,1.90203,0.00332
-4.04453,1.24140,-1.43188,-1.31043,-0.40203,1.90169,0.00332
-4.04762,1.24147,-1.43187,-1.31036,-0.40211,1.90162,0.00332
-4.05071,1.24182,-1.43181,-1.31003,-0.40250,1.90126,0.00332
-4.05380,1.24218,-1.43176,-1.30971,-0.40288,1.90092,0.00332
-4.05690,1.24232,-1.43174,-1.30957,-0.40303,1.90078,0.00332
-4.05999,1.24268,-1.43169,-1.30920,-0.40346,1.90042,0.00332
-4.06308,1.24303,-1.43164,-1.30882,-0.40388,1.90007,0.00332
-4.06617,1.24338,-1.43160,-1.30846,-0.40429,1.89972,0.00332
-4.06926,1.24372,-1.43156,-1.30810,-0.40470,1.89938,0.00332
-4.07236,1.24406,-1.43152,-1.30774,-0.40509,1.89905,0.00332
-4.07545,1.24439,-1.43148,-1.30739,-0.40548,1.89872,0.00332
-4.07854,1.24446,-1.43147,-1.30731,-0.40557,1.89864,0.00332
-4.08163,1.24490,-1.43140,-1.30689,-0.40606,1.89822,0.00332
-4.08472,1.24532,-1.43134,-1.30648,-0.40654,1.89780,0.00332
-4.08782,1.24574,-1.43128,-1.30607,-0.40701,1.89738,0.00332
-4.09091,1.24615,-1.43122,-1.30567,-0.40748,1.89697,0.00332
-4.09400,1.24656,-1.43116,-1.30527,-0.40793,1.89657,0.00332
-4.09709,1.24696,-1.43110,-1.30489,-0.40838,1.89618,0.00332
-4.10019,1.24735,-1.43104,-1.30450,-0.40882,1.89579,0.00332
-4.10328,1.24774,-1.43099,-1.30413,-0.40925,1.89540,0.00331
-4.10637,1.24812,-1.43093,-1.30376,-0.40968,1.89503,0.00331
-4.10946,1.24849,-1.43088,-1.30339,-0.41010,1.89466,0.00331
-4.11255,1.24886,-1.43083,-1.30303,-0.41051,1.89429,0.00331
-4.11565,1.24922,-1.43078,-1.30268,-0.41091,1.89393,0.00331
-4.11874,1.24958,-1.43073,-1.30233,-0.41131,1.89358,0.00331
-4.12183,1.24993,-1.43069,-1.30199,-0.41170,1.89323,0.00331
-4.12492,1.25027,-1.43064,-1.30165,-0.41209,1.89289,0.00331
-4.12801,1.25035,-1.43063,-1.30158,-0.41217,1.89281,0.00331
-4.13111,1.25076,-1.43058,-1.30114,-0.41266,1.89240,0.00331
-4.13420,1.25117,-1.43053,-1.30071,-0.41314,1.89200,0.00331
-4.13729,1.25158,-1.43048,-1.30028,-0.41362,1.89160,0.00331
-4.14038,1.25197,-1.43044,-1.29987,-0.41408,1.89120,0.00331
-4.14348,1.25236,-1.43039,-1.29945,-0.41454,1.89082,0.00331
-4.14657,1.25275,-1.43035,-1.29905,-0.41499,1.89044,0.00331
-4.14966,1.25313,-1.43031,-1.29865,-0.41543,1.89006,0.00331
-4.15275,1.25350,-1.43027,-1.29826,-0.41587,1.88969,0.00331
-4.15584,1.25386,-1.43023,-1.29787,-0.41630,1.88933,0.00331
-4.15894,1.25422,-1.43019,-1.29749,-0.41672,1.88897,0.00330
-4.16203,1.25458,-1.43015,-1.29712,-0.41713,1.88862,0.00330
-4.16512,1.25493,-1.43011,-1.29675,-0.41754,1.88828,0.00330
-4.16821,1.25527,-1.43008,-1.29639,-0.41794,1.88794,0.00330
-4.17130,1.25561,-1.43004,-1.29604,-0.41833,1.88760,0.00330
-4.17440,1.25580,-1.43002,-1.29585,-0.41854,1.88741,0.00330
-4.17749,1.25634,-1.42993,-1.29536,-0.41912,1.88688,0.00330
-4.18058,1.25688,-1.42984,-1.29487,-0.41969,1.88635,0.00330
-4.18367,1.25741,-1.42976,-1.29440,-0.42025,1.88582,0.00330
-4.18677,1.25793,-1.42968,-1.29393,-0.42080,1.88531,0.00330
-4.18986,1.25844,-1.42960,-1.29347,-0.42134,1.88480,0.00330
-4.19295,1.25894,-1.42952,-1.29302,-0.42187,1.88431,0.00330
-4.19604,1.25944,-1.42945,-1.29257,-0.42240,1.88382,0.00330
-4.19913,1.25993,-1.42937,-1.29213,-0.42291,1.88333,0.00330
-4.20223,1.26041,-1.42930,-1.29170,-0.42342,1.88286,0.00330
-4.20532,1.26088,-1.42923,-1.29127,-0.42391,1.88239,0.00330
-4.20841,1.26134,-1.42916,-1.29085,-0.42440,1.88193,0.00330
-4.21150,1.26180,-1.42910,-1.29044,-0.42488,1.88148,0.00330
-4.21459,1.26225,-1.42903,-1.29004,-0.42535,1.88103,0.00330
-4.21769,1.26270,-1.42897,-1.28964,-0.42582,1.88059,0.00330
-4.22078,1.26313,-1.42891,-1.28925,-0.42627,1.88016,0.00330
-4.22387,1.26356,-1.42885,-1.28886,-0.42672,1.87974,0.00330
-4.22696,1.26398,-1.42879,-1.28848,-0.42716,1.87932,0.00330
-4.23006,1.26440,-1.42873,-1.28810,-0.42759,1.87891,0.00330
-4.23315,1.26481,-1.42868,-1.28774,-0.42802,1.87850,0.00330
-4.23624,1.26521,-1.42863,-1.28737,-0.42844,1.87810,0.00330
-4.23933,1.26560,-1.42857,-1.28702,-0.42885,1.87771,0.00329
-4.24242,1.26599,-1.42852,-1.28667,-0.42925,1.87733,0.00329
-4.24552,1.26638,-1.42847,-1.28632,-0.42965,1.87694,0.00329
-4.24861,1.26675,-1.42842,-1.28598,-0.43004,1.87657,0.00329
-4.25170,1.26712,-1.42838,-1.28565,-0.43043,1.87620,0.00329
-4.25479,1.26749,-1.42833,-1.28532,-0.43081,1.87584,0.00329
-4.25788,1.26767,-1.42831,-1.28515,-0.43100,1.87566,0.00329
-4.26098,1.26804,-1.42826,-1.28480,-0.43139,1.87529,0.00329
-4.26407,1.26841,-1.42822,-1.28446,-0.43178,1.87493,0.00329
-4.26716,1.26877,-1.42818,-1.28412,-0.43216,1.87457,0.00329
-4.27025,1.26903,-1.42815,-1.28387,-0.43244,1.87431,0.00329
-4.27335,1.26946,-1.42810,-1.28345,-0.43291,1.87389,0.00329
-4.27644,1.26988,-1.42806,-1.28303,-0.43338,1.87347,0.00329
-4.27953,1.27030,-1.42801,-1.28262,-0.43383,1.87305,0.00329
-4.28262,1.27071,-1.42797,-1.28222,-0.43428,1.87265,0.00329
-4.28571,1.27111,-1.42793,-1.28182,-0.43473,1.87225,0.00329
-4.28881,1.27151,-1.42788,-1.28143,-0.43516,1.87185,0.00329
-4.29190,1.27190,-1.42784,-1.28104,-0.43559,1.87147,0.00328
-4.29499,1.27228,-1.42781,-1.28066,-0.43601,1.87109,0.00328
-4.29808,1.27266,-1.42777,-1.28029,-0.43642,1.87071,0.00328
-4.30118,1.27303,-1.42773,-1.27992,-0.43683,1.87034,0.00328
-4.30427,1.27340,-1.42770,-1.27956,-0.43723,1.86998,0.00328
-4.30736,1.27376,-1.42766,-1.27921,-0.43762,1.86962,0.00328
-4.31045,1.27411,-1.42763,-1.27886,-0.43800,1.86927,0.00328
-4.31354,1.27429,-1.42761,-1.27868,-0.43820,1.86909,0.00328
-4.31664,1.27472,-1.42756,-1.27828,-0.43865,1.86867,0.00328
-4.31973,1.27514,-1.42751,-1.27788,-0.43910,1.86825,0.00328
-4.32282,1.27555,-1.42747,-1.27750,-0.43953,1.86784,0.00328
-4.32591,1.27595,-1.42742,-1.27711,-0.43996,1.86744,0.00328
-4.32900,1.27635,-1.42738,-1.27674,-0.44038,1.86705,0.00328
-4.33210,1.27674,-1.42734,-1.27637,-0.44080,1.86666,0.00328
-4.33519,1.27713,-1.42730,-1.27600,-0.44120,1.86628,0.00328
-4.33828,1.27751,-1.42726,-1.27565,-0.44160,1.86590,0.00328
-4.34137,1.27788,-1.42722,-1.27529,-0.44200,1.86553,0.00328
-4.34447,1.27825,-1.42718,-1.27495,-0.44238,1.86517,0.00327
-4.34756,1.27861,-1.42715,-1.27460,-0.44276,1.86481,0.00327
-4.35065,1.27872,-1.42714,-1.27450,-0.44288,1.86470,0.00327
-4.35374,1.27911,-1.42710,-1.27410,-0.44331,1.86431,0.00327
-4.35683,1.27949,-1.42707,-1.27372,-0.44373,1.86394,0.00327
-4.35993,1.27986,-1.42704,-1.27333,-0.44415,1.86356,0.00327
-4.36302,1.28023,-1.42701,-1.27296,-0.44455,1.86320,0.00327
-4.36611,1.28059,-1.42698,-1.27259,-0.44495,1.86284,0.00327
-4.36920,1.28095,-1.42696,-1.27223,-0.44535,1.86249,0.00327
-4.37229,1.28130,-1.42693,-1.27187,-0.44573,1.86214,0.00327
-4.37539,1.28142,-1.42692,-1.27175,-0.44586,1.86202,0.00327
-4.37848,1.28190,-1.42686,-1.27129,-0.44637,1.86154,0.00327
-4.38157,1.28238,-1.42681,-1.27084,-0.44688,1.86107,0.00327
-4.38466,1.28285,-1.42676,-1.27040,-0.44737,1.86060,0.00327
-4.38776,1.28332,-1.42671,-1.26996,-0.44786,1.86014,0.00327
-4.39085,1.28377,-1.42666,-1.26953,-0.44834,1.85969,0.00327
-4.39394,1.28422,-1.42662,-1.26911,-0.44881,1.85925,0.00327
-4.39703,1.28466,-1.42657,-1.26869,-0.44927,1.85881,0.00327
-4.40012,1.28510,-1.42653,-1.26828,-0.44973,1.85838,0.00327
-4.40322,1.28553,-1.42649,-1.26788,-0.45018,1.85795,0.00327
-4.40631,1.28595,-1.42645,-1.26748,-0.45062,1.85754,0.00326
-4.40940,1.28636,-1.42641,-1.26709,-0.45105,1.85713,0.00326
-4.41249,1.28677,-1.42637,-1.26671,-0.45148,1.85672,0.00326
-4.41558,1.28717,-1.42633,-1.26633,-0.45189,1.85632,0.00326
-4.41868,1.28756,-1.42629,-1.26595,-0.45231,1.85593,0.00326
-4.42177,1.28795,-1.42626,-1.26559,-0.45271,1.85555,0.00326
-4.42486,1.28833,-1.42622,-1.26523,-0.45311,1.85517,0.00326
-4.42795,1.28871,-1.42619,-1.26487,-0.45350,1.85479,0.00326
-4.43105,1.28908,-1.42616,-1.26452,-0.45388,1.85443,0.00326
-4.43414,1.28944,-1.42613,-1.26418,-0.45426,1.85407,0.00326
-4.43723,1.28948,-1.42612,-1.26414,-0.45430,1.85403,0.00326
-4.44032,1.28986,-1.42609,-1.26379,-0.45469,1.85366,0.00326
-4.44341,1.29022,-1.42606,-1.26345,-0.45507,1.85329,0.00326
-4.44651,1.29038,-1.42604,-1.26331,-0.45522,1.85314,0.00326
-4.44960,1.29082,-1.42599,-1.26293,-0.45565,1.85270,0.00326
-4.45269,1.29125,-1.42594,-1.26255,-0.45608,1.85228,0.00326
-4.45578,1.29167,-1.42590,-1.26218,-0.45650,1.85186,0.00326
-4.45887,1.29209,-1.42585,-1.26182,-0.45691,1.85144,0.00326
-4.46197,1.29250,-1.42581,-1.26146,-0.45731,1.85103,0.00326
-4.46506,1.29291,-1.42576,-1.26111,-0.45771,1.85063,0.00325
-4.46815,1.29331,-1.42572,-1.26077,-0.45810,1.85024,0.00325
-4.47124,1.29370,-1.42568,-1.26043,-0.45848,1.84985,0.00325
-4.47434,1.29408,-1.42564,-1.26009,-0.45886,1.84946,0.00325
-4.47743,1.29446,-1.42560,-1.25976,-0.45923,1.84909,0.00325
-4.48052,1.29458,-1.42559,-1.25966,-0.45935,1.84897,0.00325
-4.48361,1.29498,-1.42555,-1.25929,-0.45975,1.84857,0.00325
-4.48670,1.29538,-1.42551,-1.25894,-0.46015,1.84817,0.00325
-4.48980,1.29577,-1.42547,-1.25858,-0.46055,1.84779,0.00325
-4.49289,1.29616,-1.42544,-1.25823,-0.46093,1.84740,0.00325
-4.49598,1.29654,-1.42540,-1.25789,-0.46131,1.84703,0.00325
-4.49907,1.29691,-1.42537,-1.25755,-0.46168,1.84665,0.00325
-4.50216,1.29695,-1.42536,-1.25752,-0.46172,1.84662,0.00325
-4.50526,1.29733,-1.42532,-1.25720,-0.46209,1.84624,0.00325
-4.50835,1.29742,-1.42531,-1.25713,-0.46217,1.84615,0.00325
-4.51144,1.29787,-1.42526,-1.25674,-0.46261,1.84570,0.00325
-4.51453,1.29832,-1.42521,-1.25637,-0.46303,1.84526,0.00325
-4.51763,1.29876,-1.42516,-1.25600,-0.46346,1.84482,0.00325
-4.52072,1.29920,-1.42511,-1.25564,-0.46387,1.84439,0.00325
-4.52381,1.29962,-1.42506,-1.25528,-0.46428,1.84397,0.00325
-4.52690,1.30004,-1.42502,-1.25493,-0.46468,1.84355,0.00325
-4.52999,1.30046,-1.42497,-1.25458,-0.46507,1.84314,0.00325
-4.53309,1.30086,-1.42493,-1.25424,-0.46546,1.84274,0.00325
-4.53618,1.30126,-1.42489,-1.25390,-0.46584,1.84234,0.00324
-4.53927,1.30166,-1.42485,-1.25357,-0.46621,1.84195,0.00324
-4.54236,1.30205,-1.42481,-1.25325,-0.46658,1.84156,0.00324
-4.54545,1.30220,-1.42479,-1.25312,-0.46673,1.84141,0.00324
-4.54855,1.30260,-1.42475,-1.25279,-0.46710,1.84102,0.00324
-4.55164,1.30299,-1.42471,-1.25246,-0.46747,1.84063,0.00324
-4.55473,1.30318,-1.42469,-1.25230,-0.46765,1.84044,0.00324
-4.55782,1.30358,-1.42465,-1.25197,-0.46803,1.84004,0.00324
-4.56092,1.30397,-1.42461,-1.25165,-0.46839,1.83966,0.00324
-4.56401,1.30416,-1.42459,-1.25149,-0.46858,1.83946,0.00324
-4.56710,1.30456,-1.42454,-1.25116,-0.46895,1.83907,0.00324
-4.57019,1.30495,-1.42450,-1.25083,-0.46932,1.83868,0.00324
-4.57328,1.30510,-1.42449,-1.25070,-0.46946,1.83853,0.00324
-4.57638,1.30550,-1.42445,-1.25037,-0.46983,1.83813,0.00324
-4.57947,1.30589,-1.42441,-1.25005,-0.47020,1.83774,0.00324
-4.58256,1.30609,-1.42438,-1.24989,-0.47039,1.83754,0.00324
-4.58565,1.30656,-1.42433,-1.24952,-0.47081,1.83708,0.00324
-4.58874,1.30701,-1.42427,-1.24917,-0.47122,1.83663,0.00324
-4.59184,1.30746,-1.42422,-1.24882,-0.47163,1.83619,0.00324
-4.59493,1.30790,-1.42417,-1.24848,-0.47203,1.83575,0.00324
-4.59802,1.30834,-1.42411,-1.24814,-0.47242,1.83532,0.00324
-4.60111,1.30876,-1.42407,-1.24780,-0.47280,1.83490,0.00324
-4.60421,1.30918,-1.42402,-1.24747,-0.47318,1.83448,0.00324
-4.60730,1.30960,-1.42397,-1.24715,-0.47355,1.83407,0.00324
-4.61039,1.31001,-1.42392,-1.24683,-0.47392,1.83366,0.00324
-4.61348,1.31041,-1.42388,-1.24652,-0.47428,1.83327,0.00323
-4.61657,1.31057,-1.42386,-1.24639,-0.47443,1.83310,0.00323
-4.61967,1.31105,-1.42381,-1.24598,-0.47489,1.83263,0.00323
-4.62276,1.31151,-1.42377,-1.24558,-0.47533,1.83217,0.00323
-4.62585,1.31197,-1.42372,-1.24519,-0.47577,1.83171,0.00323
-4.62894,1.31243,-1.42368,-1.24481,-0.47620,1.83126,0.00323
-4.63203,1.31287,-1.42364,-1.24443,-0.47662,1.83082,0.00323
-4.63513,1.31331,-1.42360,-1.24405,-0.47704,1.83039,0.00323
-4.63822,1.31374,-1.42356,-1.24369,-0.47745,1.82996,0.00323
-4.64131,1.31416,-1.42352,-1.24332,-0.47785,1.82954,0.00323
-4.64440,1.31458,-1.42348,-1.24297,-0.47824,1.82913,0.00323
-4.64750,1.31499,-1.42345,-1.24262,-0.47863,1.82872,0.00323
-4.65059,1.31540,-1.42341,-1.24227,-0.47902,1.82832,0.00323
-4.65368,1.31579,-1.42338,-1.24193,-0.47939,1.82792,0.00323
-4.65677,1.31619,-1.42335,-1.24160,-0.47976,1.82753,0.00323
-4.65986,1.31644,-1.42333,-1.24137,-0.48000,1.82729,0.00323
-4.66296,1.31698,-1.42330,-1.24080,-0.48060,1.82674,0.00323
-4.66605,1.31752,-1.42328,-1.24023,-0.48120,1.82621,0.00323
-4.66914,1.31806,-1.42326,-1.23967,-0.48178,1.82568,0.00323
-4.67223,1.31858,-1.42324,-1.23911,-0.48235,1.82517,0.00323
-4.67532,1.31909,-1.42323,-1.23857,-0.48291,1.82466,0.00323
-4.67842,1.31960,-1.42321,-1.23804,-0.48346,1.82416,0.00323
-4.68151,1.32010,-1.42319,-1.23751,-0.48400,1.82366,0.00323
-4.68460,1.32059,-1.42318,-1.23699,-0.48454,1.82318,0.00323
-4.68769,1.32107,-1.42316,-1.23648,-0.48506,1.82270,0.00323
-4.69079,1.32155,-1.42315,-1.23598,-0.48558,1.82223,0.00323
-4.69388,1.32202,-1.42314,-1.23548,-0.48609,1.82176,0.00323
-4.69697,1.32248,-1.42313,-1.23500,-0.48659,1.82131,0.00323
-4.70006,1.32293,-1.42312,-1.23452,-0.48708,1.82086,0.00323
-4.70315,1.32338,-1.42311,-1.23404,-0.48756,1.82042,0.00322
-4.70625,1.32381,-1.42310,-1.23358,-0.48804,1.81998,0.00322
-4.70934,1.32425,-1.42309,-1.23312,-0.48850,1.81955,0.00322
-4.71243,1.32467,-1.42308,-1.23267,-0.48896,1.81913,0.00322
-4.71552,1.32509,-1.42308,-1.23223,-0.48941,1.81872,0.00322
-4.71861,1.32550,-1.42307,-1.23179,-0.48986,1.81831,0.00322
-4.72171,1.32591,-1.42306,-1.23136,-0.49029,1.81791,0.00322
-4.72480,1.32630,-1.42306,-1.23094,-0.49072,1.81751,0.00322
-4.72789,1.32670,-1.42305,-1.23052,-0.49115,1.81712,0.00322
-4.73098,1.32708,-1.42305,-1.23011,-0.49156,1.81674,0.00322
-4.73408,1.32746,-1.42305,-1.22971,-0.49197,1.81636,0.00322
-4.73717,1.32784,-1.42304,-1.22931,-0.49237,1.81599,0.00322
-4.74026,1.32820,-1.42304,-1.22892,-0.49277,1.81562,0.00322
-4.74335,1.32857,-1.42304,-1.22854,-0.49315,1.81526,0.00322
-4.74644,1.32877,-1.42304,-1.22832,-0.49338,1.81506,0.00322
-4.74954,1.32934,-1.42305,-1.22763,-0.49405,1.81450,0.00322
-4.75263,1.32990,-1.42306,-1.22695,-0.49472,1.81394,0.00322
-4.75572,1.33046,-1.42307,-1.22628,-0.49538,1.81339,0.00322
-4.75881,1.33100,-1.42309,-1.22562,-0.49602,1.81286,0.00321
-4.76190,1.33154,-1.42310,-1.22498,-0.49665,1.81232,0.00321
-4.76500,1.33207,-1.42311,-1.22434,-0.49728,1.81180,0.00321
-4.76809,1.33259,-1.42313,-1.22371,-0.49789,1.81129,0.00321
-4.77118,1.33310,-1.42314,-1.22309,-0.49849,1.81078,0.00321
-4.77427,1.33360,-1.42316,-1.22248,-0.49909,1.81028,0.00321
-4.77737,1.33410,-1.42318,-1.22189,-0.49967,1.80979,0.00321
-4.78046,1.33459,-1.42319,-1.22129,-0.50024,1.80931,0.00321
-4.78355,1.33507,-1.42321,-1.22071,-0.50081,1.80884,0.00321
-4.78664,1.33554,-1.42323,-1.22014,-0.50136,1.80837,0.00321
-4.78973,1.33600,-1.42325,-1.21958,-0.50191,1.80791,0.00321
-4.79283,1.33646,-1.42327,-1.21902,-0.50244,1.80745,0.00321
-4.79592,1.33691,-1.42329,-1.21848,-0.50297,1.80701,0.00321
-4.79901,1.33735,-1.42331,-1.21794,-0.50349,1.80657,0.00321
-4.80210,1.33779,-1.42333,-1.21741,-0.50400,1.80614,0.00321
-4.80519,1.33822,-1.42335,-1.21689,-0.50450,1.80571,0.00320
-4.80829,1.33864,-1.42337,-1.21638,-0.50500,1.80529,0.00320
-4.81138,1.33906,-1.42339,-1.21587,-0.50548,1.80488,0.00320
-4.81447,1.33946,-1.42341,-1.21537,-0.50596,1.80447,0.00320
-4.81756,1.33987,-1.42343,-1.21489,-0.50643,1.80407,0.00320
-4.82066,1.34026,-1.42345,-1.21440,-0.50689,1.80368,0.00320
-4.82375,1.34065,-1.42347,-1.21393,-0.50735,1.80329,0.00320
-4.82684,1.34104,-1.42350,-1.21346,-0.50780,1.80291,0.00320
-4.82993,1.34141,-1.42352,-1.21300,-0.50824,1.80254,0.00320
-4.83302,1.34179,-1.42354,-1.21255,-0.50867,1.80217,0.00320
-4.83612,1.34215,-1.42356,-1.21210,-0.50909,1.80181,0.00320
-4.83921,1.34251,-1.42359,-1.21166,-0.50951,1.80145,0.00319
-4.84230,1.34286,-1.42361,-1.21123,-0.50992,1.80110,0.00319
-4.84539,1.34321,-1.42363,-1.21081,-0.51033,1.80075,0.00319
-4.84848,1.34356,-1.42366,-1.21039,-0.51073,1.80041,0.00319
-4.85158,1.34366,-1.42367,-1.21025,-0.51085,1.80030,0.00319
-4.85467,1.34403,-1.42371,-1.20974,-0.51132,1.79993,0.00319
-4.85776,1.34440,-1.42375,-1.20924,-0.51179,1.79957,0.00319
-4.86085,1.34476,-1.42379,-1.20875,-0.51224,1.79921,0.00319
-4.86395,1.34511,-1.42382,-1.20826,-0.51269,1.79886,0.00319
-4.86704,1.34546,-1.42386,-1.20778,-0.51313,1.79852,0.00319
-4.87013,1.34580,-1.42390,-1.20731,-0.51357,1.79818,0.00319
-4.87322,1.34614,-1.42394,-1.20685,-0.51400,1.79784,0.00318
-4.87631,1.34647,-1.42398,-1.20639,-0.51442,1.79751,0.00318
-4.87941,1.34680,-1.42402,-1.20594,-0.51483,1.79719,0.00318
-4.88250,1.34712,-1.42406,-1.20550,-0.51524,1.79687,0.00318
-4.88559,1.34715,-1.42407,-1.20544,-0.51528,1.79683,0.00318
-4.88868,1.34748,-1.42412,-1.20494,-0.51573,1.79650,0.00318
-4.89177,1.34781,-1.42417,-1.20444,-0.51618,1.79617,0.00318
-4.89487,1.34814,-1.42422,-1.20396,-0.51662,1.79585,0.00318
-4.89796,1.34845,-1.42427,-1.20348,-0.51705,1.79554,0.00318
-4.90105,1.34877,-1.42432,-1.20300,-0.51748,1.79523,0.00318
-4.90414,1.34908,-1.42438,-1.20254,-0.51789,1.79492,0.00317
-4.90724,1.34932,-1.42442,-1.20216,-0.51823,1.79467,0.00317
-4.91033,1.34966,-1.42449,-1.20160,-0.51872,1.79434,0.00317
-4.91342,1.34999,-1.42455,-1.20106,-0.51920,1.79401,0.00317
-4.91651,1.35031,-1.42462,-1.20052,-0.51967,1.79369,0.00317
-4.91960,1.35063,-1.42468,-1.19999,-0.52013,1.79338,0.00317
-4.92270,1.35094,-1.42475,-1.19947,-0.52059,1.79306,0.00317
-4.92579,1.35125,-1.42482,-1.19896,-0.52104,1.79276,0.00317
-4.92888,1.35156,-1.42488,-1.19845,-0.52148,1.79245,0.00317
-4.93197,1.35185,-1.42494,-1.19796,-0.52191,1.79216,0.00316
-4.93506,1.35215,-1.42501,-1.19747,-0.52234,1.79187,0.00316
-4.93816,1.35244,-1.42507,-1.19699,-0.52276,1.79158,0.00316
-4.94125,1.35255,-1.42510,-1.19679,-0.52293,1.79146,0.00316
-4.94434,1.35285,-1.42516,-1.19631,-0.52336,1.79116,0.00316
-4.94743,1.35315,-1.42522,-1.19583,-0.52378,1.79087,0.00316
-4.95053,1.35327,-1.42524,-1.19563,-0.52395,1.79075,0.00316
-4.95362,1.35361,-1.42532,-1.19505,-0.52446,1.79041,0.00316
-4.95671,1.35395,-1.42539,-1.19448,-0.52496,1.79008,0.00316
-4.95980,1.35428,-1.42547,-1.19391,-0.52545,1.78975,0.00315
-4.96289,1.35460,-1.42554,-1.19336,-0.52593,1.78943,0.00315
-4.96599,1.35492,-1.42562,-1.19281,-0.52640,1.78911,0.00315
-4.96908,1.35523,-1.42569,-1.19227,-0.52687,1.78880,0.00315
-4.97217,1.35554,-1.42576,-1.19174,-0.52733,1.78850,0.00315
-4.97526,1.35585,-1.42583,-1.19122,-0.52778,1.78819,0.00315
-4.97835,1.35615,-1.42590,-1.19071,-0.52823,1.78790,0.00315
-4.98145,1.35644,-1.42598,-1.19020,-0.52866,1.78760,0.00315
-4.98454,1.35673,-1.42605,-1.18970,-0.52909,1.78732,0.00315
-4.98763,1.35702,-1.42611,-1.18921,-0.52952,1.78703,0.00314
-4.99072,1.35716,-1.42615,-1.18897,-0.52973,1.78689,0.00314
-4.99382,1.35745,-1.42622,-1.18845,-0.53017,1.78660,0.00314
-4.99691,1.35774,-1.42629,-1.18795,-0.53060,1.78631,0.00314
-5.00000,1.35803,-1.42637,-1.18745,-0.53103,1.78603,0.00314
+0.00000,1.35338,-1.35336,-1.52435,-0.26726,1.78827,0.00409
+0.00154,1.35257,-1.35382,-1.52351,-0.26763,1.78907,0.00409
+0.00308,1.35177,-1.35428,-1.52269,-0.26799,1.78986,0.00409
+0.00463,1.35099,-1.35473,-1.52188,-0.26835,1.79063,0.00409
+0.00617,1.35022,-1.35517,-1.52108,-0.26869,1.79140,0.00408
+0.00771,1.34945,-1.35561,-1.52029,-0.26904,1.79215,0.00408
+0.00925,1.34871,-1.35604,-1.51951,-0.26938,1.79289,0.00408
+0.01080,1.34797,-1.35647,-1.51875,-0.26971,1.79362,0.00407
+0.01234,1.34724,-1.35689,-1.51799,-0.27003,1.79433,0.00407
+0.01388,1.34653,-1.35730,-1.51725,-0.27035,1.79504,0.00407
+0.01542,1.34583,-1.35771,-1.51652,-0.27067,1.79573,0.00407
+0.01696,1.34514,-1.35811,-1.51580,-0.27098,1.79641,0.00406
+0.01851,1.34446,-1.35851,-1.51510,-0.27129,1.79709,0.00406
+0.02005,1.34379,-1.35890,-1.51440,-0.27159,1.79775,0.00406
+0.02159,1.34313,-1.35928,-1.51371,-0.27188,1.79840,0.00406
+0.02313,1.34248,-1.35966,-1.51304,-0.27217,1.79904,0.00405
+0.02468,1.34185,-1.36004,-1.51237,-0.27246,1.79968,0.00405
+0.02622,1.34122,-1.36040,-1.51172,-0.27274,1.80030,0.00405
+0.02776,1.34060,-1.36077,-1.51107,-0.27302,1.80091,0.00405
+0.02930,1.33999,-1.36113,-1.51044,-0.27329,1.80151,0.00404
+0.03085,1.33939,-1.36148,-1.50981,-0.27355,1.80211,0.00404
+0.03239,1.33881,-1.36183,-1.50920,-0.27382,1.80269,0.00404
+0.03393,1.33823,-1.36217,-1.50859,-0.27408,1.80327,0.00404
+0.03547,1.33766,-1.36251,-1.50799,-0.27433,1.80383,0.00403
+0.03701,1.33710,-1.36284,-1.50740,-0.27458,1.80439,0.00403
+0.03856,1.33654,-1.36317,-1.50683,-0.27483,1.80494,0.00403
+0.04010,1.33600,-1.36349,-1.50626,-0.27507,1.80548,0.00403
+0.04164,1.33546,-1.36381,-1.50570,-0.27531,1.80601,0.00402
+0.04318,1.33494,-1.36413,-1.50514,-0.27554,1.80654,0.00402
+0.04473,1.33442,-1.36444,-1.50460,-0.27577,1.80705,0.00402
+0.04627,1.33391,-1.36474,-1.50406,-0.27600,1.80756,0.00402
+0.04781,1.33341,-1.36504,-1.50354,-0.27622,1.80806,0.00401
+0.04935,1.33291,-1.36534,-1.50302,-0.27644,1.80855,0.00401
+0.05089,1.33243,-1.36563,-1.50251,-0.27666,1.80904,0.00401
+0.05244,1.33195,-1.36592,-1.50200,-0.27687,1.80951,0.00401
+0.05398,1.33148,-1.36621,-1.50151,-0.27708,1.80998,0.00401
+0.05552,1.33102,-1.36649,-1.50102,-0.27729,1.81044,0.00400
+0.05706,1.33056,-1.36676,-1.50054,-0.27749,1.81090,0.00400
+0.05861,1.33011,-1.36703,-1.50007,-0.27769,1.81135,0.00400
+0.06015,1.32967,-1.36730,-1.49960,-0.27788,1.81179,0.00400
+0.06169,1.32924,-1.36756,-1.49914,-0.27807,1.81222,0.00400
+0.06323,1.32881,-1.36782,-1.49869,-0.27826,1.81265,0.00399
+0.06477,1.32864,-1.36792,-1.49851,-0.27834,1.81282,0.00399
+0.06632,1.32784,-1.36841,-1.49763,-0.27872,1.81362,0.00399
+0.06786,1.32704,-1.36890,-1.49677,-0.27909,1.81440,0.00399
+0.06940,1.32626,-1.36937,-1.49592,-0.27946,1.81518,0.00398
+0.07094,1.32549,-1.36984,-1.49508,-0.27983,1.81594,0.00398
+0.07249,1.32474,-1.37031,-1.49426,-0.28018,1.81669,0.00398
+0.07403,1.32400,-1.37076,-1.49344,-0.28053,1.81743,0.00397
+0.07557,1.32326,-1.37121,-1.49264,-0.28088,1.81816,0.00397
+0.07711,1.32255,-1.37166,-1.49186,-0.28122,1.81888,0.00397
+0.07866,1.32184,-1.37209,-1.49108,-0.28155,1.81958,0.00397
+0.08020,1.32114,-1.37252,-1.49031,-0.28188,1.82028,0.00396
+0.08174,1.32045,-1.37295,-1.48956,-0.28220,1.82096,0.00396
+0.08328,1.31978,-1.37337,-1.48882,-0.28252,1.82163,0.00396
+0.08482,1.31912,-1.37378,-1.48809,-0.28284,1.82229,0.00395
+0.08637,1.31846,-1.37419,-1.48737,-0.28314,1.82294,0.00395
+0.08791,1.31782,-1.37459,-1.48666,-0.28345,1.82359,0.00395
+0.08945,1.31719,-1.37498,-1.48597,-0.28374,1.82422,0.00394
+0.09099,1.31657,-1.37537,-1.48528,-0.28404,1.82484,0.00394
+0.09254,1.31595,-1.37576,-1.48461,-0.28433,1.82545,0.00394
+0.09408,1.31535,-1.37613,-1.48394,-0.28461,1.82605,0.00394
+0.09562,1.31476,-1.37651,-1.48329,-0.28489,1.82664,0.00393
+0.09716,1.31417,-1.37687,-1.48264,-0.28516,1.82723,0.00393
+0.09870,1.31360,-1.37724,-1.48201,-0.28543,1.82780,0.00393
+0.10025,1.31303,-1.37759,-1.48138,-0.28570,1.82837,0.00393
+0.10179,1.31248,-1.37794,-1.48076,-0.28596,1.82892,0.00392
+0.10333,1.31193,-1.37829,-1.48016,-0.28622,1.82947,0.00392
+0.10487,1.31139,-1.37863,-1.47956,-0.28647,1.83001,0.00392
+0.10642,1.31086,-1.37897,-1.47897,-0.28672,1.83054,0.00392
+0.10796,1.31034,-1.37930,-1.47839,-0.28697,1.83106,0.00391
+0.10950,1.30983,-1.37962,-1.47782,-0.28721,1.83158,0.00391
+0.11104,1.30932,-1.37995,-1.47726,-0.28745,1.83208,0.00391
+0.11258,1.30883,-1.38026,-1.47671,-0.28768,1.83258,0.00391
+0.11413,1.30834,-1.38058,-1.47617,-0.28791,1.83307,0.00390
+0.11567,1.30786,-1.38088,-1.47563,-0.28814,1.83356,0.00390
+0.11721,1.30738,-1.38119,-1.47510,-0.28836,1.83403,0.00390
+0.11875,1.30692,-1.38149,-1.47458,-0.28858,1.83450,0.00390
+0.12030,1.30646,-1.38178,-1.47407,-0.28879,1.83496,0.00389
+0.12184,1.30601,-1.38207,-1.47357,-0.28900,1.83541,0.00389
+0.12338,1.30556,-1.38236,-1.47307,-0.28921,1.83586,0.00389
+0.12492,1.30512,-1.38264,-1.47258,-0.28942,1.83630,0.00389
+0.12647,1.30469,-1.38292,-1.47210,-0.28962,1.83673,0.00388
+0.12801,1.30427,-1.38319,-1.47163,-0.28982,1.83716,0.00388
+0.12955,1.30385,-1.38346,-1.47116,-0.29001,1.83758,0.00388
+0.13109,1.30362,-1.38361,-1.47089,-0.29013,1.83781,0.00388
+0.13263,1.30250,-1.38435,-1.46951,-0.29076,1.83893,0.00388
+0.13418,1.30140,-1.38507,-1.46816,-0.29138,1.84002,0.00387
+0.13572,1.30031,-1.38579,-1.46682,-0.29199,1.84110,0.00387
+0.13726,1.29925,-1.38649,-1.46551,-0.29259,1.84216,0.00386
+0.13880,1.29820,-1.38718,-1.46422,-0.29319,1.84320,0.00386
+0.14035,1.29717,-1.38787,-1.46294,-0.29377,1.84423,0.00385
+0.14189,1.29616,-1.38854,-1.46169,-0.29434,1.84524,0.00385
+0.14343,1.29516,-1.38921,-1.46045,-0.29490,1.84623,0.00385
+0.14497,1.29418,-1.38987,-1.45923,-0.29546,1.84721,0.00384
+0.14651,1.29321,-1.39051,-1.45803,-0.29600,1.84817,0.00384
+0.14806,1.29226,-1.39115,-1.45685,-0.29654,1.84912,0.00383
+0.14960,1.29133,-1.39178,-1.45569,-0.29706,1.85005,0.00383
+0.15114,1.29041,-1.39240,-1.45454,-0.29758,1.85097,0.00383
+0.15268,1.28951,-1.39301,-1.45341,-0.29810,1.85187,0.00382
+0.15423,1.28862,-1.39362,-1.45230,-0.29860,1.85276,0.00382
+0.15577,1.28774,-1.39421,-1.45120,-0.29909,1.85363,0.00381
+0.15731,1.28688,-1.39480,-1.45012,-0.29958,1.85449,0.00381
+0.15885,1.28604,-1.39538,-1.44906,-0.30006,1.85533,0.00381
+0.16039,1.28521,-1.39595,-1.44802,-0.30053,1.85617,0.00380
+0.16194,1.28439,-1.39651,-1.44698,-0.30100,1.85699,0.00380
+0.16348,1.28358,-1.39706,-1.44597,-0.30145,1.85779,0.00380
+0.16502,1.28279,-1.39761,-1.44497,-0.30190,1.85859,0.00379
+0.16656,1.28201,-1.39814,-1.44398,-0.30235,1.85937,0.00379
+0.16811,1.28124,-1.39867,-1.44301,-0.30278,1.86013,0.00378
+0.16965,1.28049,-1.39920,-1.44206,-0.30321,1.86089,0.00378
+0.17119,1.27975,-1.39971,-1.44112,-0.30363,1.86163,0.00378
+0.17273,1.27902,-1.40022,-1.44019,-0.30405,1.86237,0.00377
+0.17428,1.27830,-1.40072,-1.43928,-0.30446,1.86309,0.00377
+0.17582,1.27759,-1.40121,-1.43838,-0.30486,1.86380,0.00377
+0.17736,1.27690,-1.40170,-1.43750,-0.30525,1.86449,0.00376
+0.17890,1.27621,-1.40218,-1.43663,-0.30564,1.86518,0.00376
+0.18044,1.27554,-1.40265,-1.43577,-0.30603,1.86586,0.00376
+0.18199,1.27488,-1.40311,-1.43492,-0.30640,1.86652,0.00375
+0.18353,1.27423,-1.40357,-1.43409,-0.30678,1.86717,0.00375
+0.18507,1.27358,-1.40402,-1.43327,-0.30714,1.86782,0.00375
+0.18661,1.27295,-1.40447,-1.43246,-0.30750,1.86845,0.00374
+0.18816,1.27233,-1.40491,-1.43167,-0.30785,1.86908,0.00374
+0.18970,1.27172,-1.40534,-1.43088,-0.30820,1.86969,0.00374
+0.19124,1.27112,-1.40577,-1.43011,-0.30855,1.87029,0.00373
+0.19278,1.27053,-1.40619,-1.42935,-0.30888,1.87089,0.00373
+0.19432,1.26995,-1.40660,-1.42861,-0.30922,1.87147,0.00373
+0.19587,1.26938,-1.40701,-1.42787,-0.30954,1.87205,0.00372
+0.19741,1.26882,-1.40741,-1.42715,-0.30986,1.87262,0.00372
+0.19895,1.26826,-1.40781,-1.42643,-0.31018,1.87318,0.00372
+0.20049,1.26772,-1.40820,-1.42573,-0.31049,1.87372,0.00372
+0.20204,1.26718,-1.40858,-1.42504,-0.31080,1.87426,0.00371
+0.20358,1.26665,-1.40896,-1.42435,-0.31110,1.87480,0.00371
+0.20512,1.26614,-1.40933,-1.42368,-0.31140,1.87532,0.00371
+0.20666,1.26563,-1.40970,-1.42302,-0.31169,1.87584,0.00370
+0.20820,1.26512,-1.41006,-1.42237,-0.31198,1.87634,0.00370
+0.20975,1.26463,-1.41042,-1.42173,-0.31226,1.87684,0.00370
+0.21129,1.26414,-1.41077,-1.42110,-0.31254,1.87733,0.00370
+0.21283,1.26366,-1.41112,-1.42048,-0.31282,1.87782,0.00369
+0.21437,1.26319,-1.41146,-1.41987,-0.31309,1.87829,0.00369
+0.21592,1.26273,-1.41180,-1.41926,-0.31335,1.87876,0.00369
+0.21746,1.26227,-1.41213,-1.41867,-0.31361,1.87922,0.00368
+0.21900,1.26183,-1.41245,-1.41809,-0.31387,1.87967,0.00368
+0.22054,1.26138,-1.41278,-1.41751,-0.31412,1.88012,0.00368
+0.22209,1.26095,-1.41309,-1.41694,-0.31437,1.88056,0.00368
+0.22363,1.26052,-1.41340,-1.41639,-0.31462,1.88099,0.00367
+0.22517,1.26010,-1.41371,-1.41584,-0.31486,1.88142,0.00367
+0.22671,1.25969,-1.41402,-1.41530,-0.31510,1.88184,0.00367
+0.22825,1.25928,-1.41431,-1.41476,-0.31533,1.88225,0.00367
+0.22980,1.25888,-1.41461,-1.41424,-0.31556,1.88266,0.00366
+0.23134,1.25849,-1.41490,-1.41372,-0.31579,1.88306,0.00366
+0.23288,1.25810,-1.41518,-1.41321,-0.31601,1.88345,0.00366
+0.23442,1.25772,-1.41546,-1.41271,-0.31623,1.88384,0.00366
+0.23597,1.25757,-1.41557,-1.41251,-0.31632,1.88398,0.00365
+0.23751,1.25651,-1.41635,-1.41105,-0.31700,1.88504,0.00365
+0.23905,1.25547,-1.41711,-1.40960,-0.31768,1.88607,0.00365
+0.24059,1.25445,-1.41787,-1.40818,-0.31834,1.88709,0.00364
+0.24213,1.25344,-1.41861,-1.40677,-0.31899,1.88810,0.00364
+0.24368,1.25245,-1.41935,-1.40539,-0.31963,1.88909,0.00363
+0.24522,1.25148,-1.42007,-1.40403,-0.32026,1.89006,0.00363
+0.24676,1.25052,-1.42079,-1.40268,-0.32088,1.89102,0.00363
+0.24830,1.24958,-1.42149,-1.40136,-0.32149,1.89196,0.00362
+0.24985,1.24865,-1.42219,-1.40006,-0.32209,1.89288,0.00362
+0.25139,1.24774,-1.42287,-1.39878,-0.32269,1.89379,0.00361
+0.25293,1.24685,-1.42354,-1.39751,-0.32327,1.89469,0.00361
+0.25447,1.24597,-1.42421,-1.39627,-0.32384,1.89557,0.00361
+0.25601,1.24510,-1.42487,-1.39504,-0.32441,1.89644,0.00360
+0.25756,1.24425,-1.42551,-1.39383,-0.32497,1.89729,0.00360
+0.25910,1.24341,-1.42615,-1.39264,-0.32551,1.89813,0.00359
+0.26064,1.24258,-1.42678,-1.39147,-0.32605,1.89896,0.00359
+0.26218,1.24177,-1.42740,-1.39032,-0.32659,1.89977,0.00359
+0.26373,1.24097,-1.42801,-1.38918,-0.32711,1.90057,0.00358
+0.26527,1.24019,-1.42861,-1.38806,-0.32762,1.90136,0.00358
+0.26681,1.23942,-1.42920,-1.38695,-0.32813,1.90213,0.00357
+0.26835,1.23866,-1.42978,-1.38587,-0.32863,1.90289,0.00357
+0.26990,1.23791,-1.43036,-1.38480,-0.32912,1.90364,0.00357
+0.27144,1.23718,-1.43093,-1.38374,-0.32960,1.90438,0.00356
+0.27298,1.23646,-1.43149,-1.38270,-0.33008,1.90511,0.00356
+0.27452,1.23575,-1.43204,-1.38168,-0.33055,1.90582,0.00356
+0.27606,1.23505,-1.43258,-1.38067,-0.33101,1.90652,0.00355
+0.27761,1.23436,-1.43312,-1.37968,-0.33146,1.90721,0.00355
+0.27915,1.23368,-1.43365,-1.37870,-0.33191,1.90789,0.00354
+0.28069,1.23302,-1.43417,-1.37774,-0.33235,1.90856,0.00354
+0.28223,1.23236,-1.43468,-1.37679,-0.33279,1.90922,0.00354
+0.28378,1.23172,-1.43518,-1.37586,-0.33321,1.90987,0.00353
+0.28532,1.23109,-1.43568,-1.37494,-0.33363,1.91051,0.00353
+0.28686,1.23047,-1.43617,-1.37403,-0.33405,1.91113,0.00353
+0.28840,1.22985,-1.43666,-1.37314,-0.33445,1.91175,0.00352
+0.28994,1.22925,-1.43713,-1.37226,-0.33486,1.91236,0.00352
+0.29149,1.22866,-1.43760,-1.37139,-0.33525,1.91296,0.00352
+0.29303,1.22807,-1.43807,-1.37054,-0.33564,1.91354,0.00351
+0.29457,1.22750,-1.43852,-1.36970,-0.33602,1.91412,0.00351
+0.29611,1.22694,-1.43897,-1.36887,-0.33640,1.91469,0.00351
+0.29766,1.22638,-1.43941,-1.36806,-0.33677,1.91525,0.00350
+0.29920,1.22584,-1.43985,-1.36725,-0.33714,1.91580,0.00350
+0.30074,1.22530,-1.44028,-1.36646,-0.33750,1.91635,0.00350
+0.30228,1.22477,-1.44070,-1.36569,-0.33785,1.91688,0.00349
+0.30382,1.22425,-1.44112,-1.36492,-0.33820,1.91741,0.00349
+0.30537,1.22374,-1.44153,-1.36416,-0.33854,1.91792,0.00349
+0.30691,1.22324,-1.44194,-1.36342,-0.33888,1.91843,0.00348
+0.30845,1.22274,-1.44234,-1.36269,-0.33921,1.91893,0.00348
+0.30999,1.22225,-1.44273,-1.36197,-0.33954,1.91942,0.00348
+0.31154,1.22178,-1.44312,-1.36126,-0.33986,1.91991,0.00347
+0.31308,1.22130,-1.44350,-1.36056,-0.34018,1.92039,0.00347
+0.31462,1.22084,-1.44388,-1.35987,-0.34049,1.92086,0.00347
+0.31616,1.22038,-1.44425,-1.35919,-0.34080,1.92132,0.00346
+0.31771,1.21994,-1.44461,-1.35852,-0.34110,1.92177,0.00346
+0.31925,1.21949,-1.44497,-1.35786,-0.34140,1.92222,0.00346
+0.32079,1.21906,-1.44533,-1.35721,-0.34170,1.92266,0.00345
+0.32233,1.21863,-1.44568,-1.35658,-0.34199,1.92309,0.00345
+0.32387,1.21821,-1.44602,-1.35595,-0.34227,1.92352,0.00345
+0.32542,1.21780,-1.44636,-1.35533,-0.34255,1.92394,0.00345
+0.32696,1.21739,-1.44669,-1.35472,-0.34283,1.92435,0.00344
+0.32850,1.21699,-1.44702,-1.35412,-0.34310,1.92476,0.00344
+0.33004,1.21660,-1.44735,-1.35353,-0.34337,1.92516,0.00344
+0.33159,1.21621,-1.44767,-1.35294,-0.34363,1.92555,0.00343
+0.33313,1.21583,-1.44798,-1.35237,-0.34389,1.92594,0.00343
+0.33467,1.21545,-1.44829,-1.35181,-0.34415,1.92632,0.00343
+0.33621,1.21508,-1.44860,-1.35125,-0.34440,1.92670,0.00343
+0.33775,1.21472,-1.44890,-1.35070,-0.34464,1.92706,0.00342
+0.33930,1.21436,-1.44919,-1.35016,-0.34489,1.92743,0.00342
+0.34084,1.21400,-1.44949,-1.34961,-0.34514,1.92780,0.00342
+0.34238,1.21356,-1.44988,-1.34887,-0.34550,1.92825,0.00341
+0.34392,1.21312,-1.45025,-1.34814,-0.34585,1.92869,0.00341
+0.34547,1.21268,-1.45062,-1.34742,-0.34620,1.92913,0.00341
+0.34701,1.21226,-1.45099,-1.34671,-0.34654,1.92956,0.00341
+0.34855,1.21184,-1.45135,-1.34601,-0.34688,1.92998,0.00340
+0.35009,1.21143,-1.45170,-1.34532,-0.34721,1.93040,0.00340
+0.35163,1.21102,-1.45205,-1.34465,-0.34754,1.93081,0.00340
+0.35318,1.21062,-1.45240,-1.34398,-0.34786,1.93122,0.00340
+0.35472,1.21023,-1.45274,-1.34332,-0.34818,1.93161,0.00339
+0.35626,1.20985,-1.45307,-1.34268,-0.34849,1.93201,0.00339
+0.35780,1.20947,-1.45340,-1.34204,-0.34880,1.93239,0.00339
+0.35935,1.20909,-1.45373,-1.34141,-0.34910,1.93277,0.00338
+0.36089,1.20873,-1.45405,-1.34080,-0.34940,1.93314,0.00338
+0.36243,1.20836,-1.45436,-1.34019,-0.34969,1.93351,0.00338
+0.36397,1.20801,-1.45467,-1.33959,-0.34998,1.93387,0.00338
+0.36552,1.20766,-1.45498,-1.33900,-0.35026,1.93423,0.00337
+0.36706,1.20731,-1.45528,-1.33842,-0.35054,1.93458,0.00337
+0.36860,1.20697,-1.45558,-1.33785,-0.35082,1.93492,0.00337
+0.37014,1.20664,-1.45587,-1.33728,-0.35109,1.93526,0.00337
+0.37168,1.20631,-1.45616,-1.33673,-0.35135,1.93559,0.00336
+0.37323,1.20621,-1.45625,-1.33654,-0.35144,1.93570,0.00336
+0.37477,1.20578,-1.45663,-1.33578,-0.35183,1.93613,0.00336
+0.37631,1.20537,-1.45700,-1.33502,-0.35221,1.93655,0.00336
+0.37785,1.20496,-1.45737,-1.33428,-0.35258,1.93696,0.00336
+0.37940,1.20456,-1.45773,-1.33355,-0.35295,1.93737,0.00335
+0.38094,1.20416,-1.45809,-1.33284,-0.35331,1.93777,0.00335
+0.38248,1.20378,-1.45844,-1.33213,-0.35366,1.93816,0.00335
+0.38402,1.20339,-1.45879,-1.33143,-0.35401,1.93855,0.00334
+0.38556,1.20302,-1.45913,-1.33074,-0.35436,1.93893,0.00334
+0.38711,1.20265,-1.45947,-1.33007,-0.35469,1.93930,0.00334
+0.38865,1.20228,-1.45980,-1.32940,-0.35503,1.93967,0.00334
+0.39019,1.20193,-1.46012,-1.32875,-0.35536,1.94004,0.00333
+0.39173,1.20157,-1.46045,-1.32810,-0.35568,1.94039,0.00333
+0.39328,1.20123,-1.46076,-1.32746,-0.35600,1.94075,0.00333
+0.39482,1.20088,-1.46108,-1.32684,-0.35631,1.94109,0.00333
+0.39636,1.20055,-1.46138,-1.32622,-0.35662,1.94143,0.00332
+0.39790,1.20022,-1.46169,-1.32561,-0.35692,1.94177,0.00332
+0.39944,1.19989,-1.46199,-1.32502,-0.35722,1.94210,0.00332
+0.40099,1.19957,-1.46228,-1.32443,-0.35752,1.94242,0.00332
+0.40253,1.19926,-1.46257,-1.32385,-0.35781,1.94274,0.00331
+0.40407,1.19895,-1.46286,-1.32328,-0.35809,1.94306,0.00331
+0.40561,1.19882,-1.46298,-1.32304,-0.35821,1.94319,0.00331
+0.40716,1.19846,-1.46330,-1.32243,-0.35850,1.94356,0.00331
+0.40870,1.19810,-1.46362,-1.32183,-0.35878,1.94392,0.00331
+0.41024,1.19774,-1.46393,-1.32123,-0.35907,1.94428,0.00330
+0.41178,1.19740,-1.46424,-1.32065,-0.35934,1.94463,0.00330
+0.41333,1.19705,-1.46454,-1.32007,-0.35962,1.94498,0.00330
+0.41487,1.19672,-1.46484,-1.31950,-0.35989,1.94532,0.00330
+0.41641,1.19639,-1.46513,-1.31894,-0.36015,1.94565,0.00329
+0.41795,1.19619,-1.46531,-1.31861,-0.36031,1.94585,0.00329
+0.41949,1.19587,-1.46560,-1.31804,-0.36059,1.94618,0.00329
+0.42104,1.19555,-1.46589,-1.31748,-0.36086,1.94650,0.00329
+0.42258,1.19522,-1.46619,-1.31691,-0.36113,1.94684,0.00328
+0.42412,1.19489,-1.46648,-1.31636,-0.36139,1.94717,0.00328
+0.42566,1.19457,-1.46677,-1.31579,-0.36167,1.94749,0.00328
+0.42721,1.19429,-1.46703,-1.31528,-0.36192,1.94778,0.00328
+0.42875,1.19395,-1.46733,-1.31471,-0.36219,1.94812,0.00327
+0.43029,1.19363,-1.46762,-1.31415,-0.36245,1.94845,0.00327
+0.43183,1.19331,-1.46792,-1.31358,-0.36273,1.94877,0.00327
+0.43337,1.19299,-1.46821,-1.31302,-0.36300,1.94909,0.00327
+0.43492,1.19266,-1.46850,-1.31245,-0.36327,1.94943,0.00327
+0.43646,1.19233,-1.46880,-1.31190,-0.36353,1.94976,0.00326
+0.43800,1.19226,-1.46884,-1.31187,-0.36352,1.94984,0.00326
+0.43954,1.19185,-1.46900,-1.31211,-0.36313,1.95024,0.00326
+0.44109,1.19146,-1.46915,-1.31235,-0.36274,1.95063,0.00325
+0.44263,1.19107,-1.46930,-1.31259,-0.36237,1.95102,0.00325
+0.44417,1.19068,-1.46945,-1.31282,-0.36199,1.95141,0.00325
+0.44571,1.19030,-1.46959,-1.31305,-0.36163,1.95178,0.00324
+0.44725,1.18993,-1.46974,-1.31327,-0.36127,1.95215,0.00324
+0.44880,1.18957,-1.46988,-1.31349,-0.36092,1.95252,0.00324
+0.45034,1.18921,-1.47001,-1.31371,-0.36057,1.95287,0.00323
+0.45188,1.18886,-1.47015,-1.31392,-0.36023,1.95323,0.00323
+0.45342,1.18883,-1.47016,-1.31396,-0.36019,1.95326,0.00323
+0.45497,1.18852,-1.47023,-1.31436,-0.35972,1.95357,0.00323
+0.45651,1.18822,-1.47030,-1.31476,-0.35927,1.95387,0.00322
+0.45805,1.18792,-1.47037,-1.31514,-0.35882,1.95417,0.00322
+0.45959,1.18762,-1.47044,-1.31552,-0.35837,1.95446,0.00322
+0.46114,1.18734,-1.47051,-1.31590,-0.35794,1.95475,0.00321
+0.46268,1.18705,-1.47057,-1.31627,-0.35751,1.95503,0.00321
+0.46422,1.18677,-1.47064,-1.31663,-0.35710,1.95531,0.00321
+0.46576,1.18650,-1.47070,-1.31698,-0.35668,1.95558,0.00321
+0.46730,1.18623,-1.47076,-1.31733,-0.35628,1.95585,0.00320
+0.46885,1.18606,-1.47078,-1.31765,-0.35595,1.95603,0.00320
+0.47039,1.18590,-1.47063,-1.31874,-0.35502,1.95618,0.00320
+0.47193,1.18575,-1.47048,-1.31982,-0.35411,1.95633,0.00320
+0.47347,1.18559,-1.47033,-1.32087,-0.35322,1.95648,0.00319
+0.47502,1.18545,-1.47018,-1.32191,-0.35234,1.95663,0.00319
+0.47656,1.18530,-1.47003,-1.32293,-0.35148,1.95677,0.00319
+0.47810,1.18516,-1.46989,-1.32393,-0.35063,1.95692,0.00319
+0.47964,1.18502,-1.46975,-1.32492,-0.34980,1.95705,0.00318
+0.48118,1.18488,-1.46961,-1.32589,-0.34898,1.95719,0.00318
+0.48273,1.18475,-1.46947,-1.32685,-0.34817,1.95732,0.00318
+0.48427,1.18462,-1.46934,-1.32779,-0.34738,1.95745,0.00318
+0.48581,1.18449,-1.46920,-1.32871,-0.34660,1.95758,0.00318
+0.48735,1.18436,-1.46907,-1.32962,-0.34583,1.95771,0.00318
+0.48890,1.18424,-1.46894,-1.33051,-0.34507,1.95783,0.00317
+0.49044,1.18412,-1.46881,-1.33139,-0.34433,1.95795,0.00317
+0.49198,1.18400,-1.46869,-1.33225,-0.34360,1.95807,0.00317
+0.49352,1.18388,-1.46856,-1.33310,-0.34289,1.95818,0.00317
+0.49506,1.18377,-1.46844,-1.33394,-0.34218,1.95830,0.00317
+0.49661,1.18365,-1.46832,-1.33476,-0.34149,1.95841,0.00317
+0.49815,1.18354,-1.46820,-1.33556,-0.34081,1.95852,0.00317
+0.49969,1.18344,-1.46808,-1.33636,-0.34014,1.95863,0.00317
+0.50123,1.18333,-1.46796,-1.33714,-0.33948,1.95873,0.00317
+0.50278,1.18323,-1.46785,-1.33791,-0.33883,1.95883,0.00316
+0.50432,1.18312,-1.46773,-1.33866,-0.33820,1.95893,0.00316
+0.50586,1.18302,-1.46762,-1.33941,-0.33757,1.95903,0.00316
+0.50740,1.18293,-1.46751,-1.34014,-0.33695,1.95913,0.00316
+0.50895,1.18283,-1.46740,-1.34086,-0.33635,1.95923,0.00316
+0.51049,1.18274,-1.46730,-1.34157,-0.33575,1.95932,0.00316
+0.51203,1.18264,-1.46719,-1.34226,-0.33517,1.95941,0.00316
+0.51357,1.18255,-1.46708,-1.34295,-0.33459,1.95950,0.00316
+0.51511,1.18246,-1.46698,-1.34362,-0.33403,1.95959,0.00316
+0.51666,1.18238,-1.46688,-1.34428,-0.33347,1.95967,0.00316
+0.51820,1.18229,-1.46678,-1.34493,-0.33292,1.95976,0.00316
+0.51974,1.18221,-1.46668,-1.34557,-0.33239,1.95984,0.00316
+0.52128,1.18212,-1.46658,-1.34620,-0.33186,1.95992,0.00316
+0.52283,1.18204,-1.46648,-1.34682,-0.33134,1.96000,0.00316
+0.52437,1.18197,-1.46639,-1.34743,-0.33083,1.96008,0.00316
+0.52591,1.18189,-1.46629,-1.34803,-0.33032,1.96016,0.00316
+0.52745,1.18181,-1.46620,-1.34862,-0.32983,1.96023,0.00316
+0.52899,1.18174,-1.46611,-1.34920,-0.32934,1.96031,0.00316
+0.53054,1.18166,-1.46602,-1.34977,-0.32887,1.96038,0.00316
+0.53208,1.18159,-1.46593,-1.35033,-0.32840,1.96045,0.00316
+0.53362,1.18152,-1.46584,-1.35088,-0.32793,1.96052,0.00317
+0.53516,1.18145,-1.46575,-1.35142,-0.32748,1.96059,0.00317
+0.53671,1.18139,-1.46567,-1.35195,-0.32703,1.96065,0.00317
+0.53825,1.18138,-1.46565,-1.35202,-0.32698,1.96066,0.00317
+0.53979,1.18135,-1.46552,-1.35271,-0.32643,1.96069,0.00317
+0.54133,1.18133,-1.46538,-1.35339,-0.32589,1.96071,0.00317
+0.54287,1.18130,-1.46525,-1.35406,-0.32536,1.96074,0.00317
+0.54442,1.18127,-1.46512,-1.35472,-0.32483,1.96077,0.00317
+0.54596,1.18125,-1.46499,-1.35536,-0.32432,1.96079,0.00317
+0.54750,1.18122,-1.46486,-1.35600,-0.32381,1.96082,0.00317
+0.54904,1.18119,-1.46473,-1.35662,-0.32332,1.96084,0.00317
+0.55059,1.18117,-1.46461,-1.35723,-0.32283,1.96086,0.00317
+0.55213,1.18115,-1.46449,-1.35784,-0.32235,1.96089,0.00317
+0.55367,1.18112,-1.46437,-1.35843,-0.32188,1.96091,0.00317
+0.55521,1.18110,-1.46425,-1.35902,-0.32141,1.96093,0.00317
+0.55676,1.18108,-1.46413,-1.35959,-0.32095,1.96095,0.00318
+0.55830,1.18106,-1.46401,-1.36016,-0.32051,1.96097,0.00318
+0.55984,1.18104,-1.46391,-1.36067,-0.32010,1.96099,0.00318
+0.56138,1.18104,-1.46377,-1.36130,-0.31961,1.96099,0.00318
+0.56292,1.18104,-1.46363,-1.36192,-0.31913,1.96099,0.00318
+0.56447,1.18104,-1.46350,-1.36253,-0.31865,1.96099,0.00318
+0.56601,1.18104,-1.46337,-1.36313,-0.31819,1.96099,0.00318
+0.56755,1.18104,-1.46324,-1.36372,-0.31773,1.96099,0.00318
+0.56909,1.18104,-1.46311,-1.36430,-0.31728,1.96099,0.00318
+0.57064,1.18104,-1.46298,-1.36487,-0.31683,1.96099,0.00318
+0.57218,1.18105,-1.46289,-1.36526,-0.31654,1.96098,0.00319
+0.57372,1.18116,-1.46261,-1.36633,-0.31575,1.96086,0.00319
+0.57526,1.18127,-1.46233,-1.36739,-0.31498,1.96075,0.00319
+0.57680,1.18138,-1.46205,-1.36843,-0.31422,1.96064,0.00319
+0.57835,1.18148,-1.46178,-1.36945,-0.31347,1.96054,0.00319
+0.57989,1.18159,-1.46152,-1.37045,-0.31274,1.96043,0.00319
+0.58143,1.18169,-1.46126,-1.37144,-0.31201,1.96032,0.00319
+0.58297,1.18179,-1.46100,-1.37241,-0.31130,1.96022,0.00319
+0.58452,1.18189,-1.46075,-1.37337,-0.31060,1.96012,0.00319
+0.58606,1.18199,-1.46050,-1.37431,-0.30992,1.96002,0.00319
+0.58760,1.18209,-1.46025,-1.37524,-0.30924,1.95992,0.00320
+0.58914,1.18219,-1.46001,-1.37614,-0.30858,1.95982,0.00320
+0.59068,1.18229,-1.45977,-1.37704,-0.30792,1.95972,0.00320
+0.59223,1.18238,-1.45953,-1.37792,-0.30728,1.95962,0.00320
+0.59377,1.18248,-1.45930,-1.37878,-0.30665,1.95953,0.00320
+0.59531,1.18257,-1.45907,-1.37964,-0.30603,1.95943,0.00320
+0.59685,1.18266,-1.45885,-1.38047,-0.30542,1.95934,0.00320
+0.59840,1.18275,-1.45863,-1.38130,-0.30482,1.95925,0.00321
+0.59994,1.18284,-1.45841,-1.38211,-0.30423,1.95916,0.00321
+0.60148,1.18293,-1.45819,-1.38290,-0.30365,1.95907,0.00321
+0.60302,1.18301,-1.45798,-1.38369,-0.30308,1.95898,0.00321
+0.60457,1.18310,-1.45777,-1.38446,-0.30252,1.95889,0.00321
+0.60611,1.18318,-1.45757,-1.38522,-0.30196,1.95880,0.00321
+0.60765,1.18327,-1.45736,-1.38596,-0.30142,1.95872,0.00322
+0.60919,1.18335,-1.45717,-1.38670,-0.30089,1.95863,0.00322
+0.61073,1.18343,-1.45697,-1.38742,-0.30036,1.95855,0.00322
+0.61228,1.18351,-1.45677,-1.38813,-0.29985,1.95847,0.00322
+0.61382,1.18359,-1.45658,-1.38882,-0.29934,1.95839,0.00322
+0.61536,1.18367,-1.45640,-1.38951,-0.29884,1.95831,0.00323
+0.61690,1.18375,-1.45621,-1.39019,-0.29835,1.95823,0.00323
+0.61845,1.18382,-1.45603,-1.39085,-0.29787,1.95815,0.00323
+0.61999,1.18390,-1.45585,-1.39150,-0.29739,1.95807,0.00323
+0.62153,1.18397,-1.45567,-1.39215,-0.29693,1.95800,0.00323
+0.62307,1.18404,-1.45550,-1.39278,-0.29647,1.95792,0.00324
+0.62461,1.18412,-1.45533,-1.39340,-0.29602,1.95785,0.00324
+0.62616,1.18419,-1.45516,-1.39401,-0.29557,1.95777,0.00324
+0.62770,1.18426,-1.45499,-1.39461,-0.29514,1.95770,0.00324
+0.62924,1.18433,-1.45483,-1.39521,-0.29471,1.95763,0.00324
+0.63078,1.18439,-1.45468,-1.39574,-0.29432,1.95757,0.00324
+0.63233,1.18445,-1.45451,-1.39638,-0.29385,1.95750,0.00325
+0.63387,1.18452,-1.45434,-1.39702,-0.29338,1.95743,0.00325
+0.63541,1.18458,-1.45417,-1.39764,-0.29293,1.95736,0.00325
+0.63695,1.18465,-1.45401,-1.39825,-0.29248,1.95730,0.00325
+0.63849,1.18471,-1.45384,-1.39886,-0.29203,1.95723,0.00325
+0.64004,1.18477,-1.45368,-1.39945,-0.29160,1.95717,0.00326
+0.64158,1.18483,-1.45353,-1.40004,-0.29117,1.95711,0.00326
+0.64312,1.18486,-1.45344,-1.40036,-0.29093,1.95707,0.00326
+0.64466,1.18494,-1.45322,-1.40130,-0.29022,1.95700,0.00326
+0.64621,1.18501,-1.45299,-1.40221,-0.28953,1.95692,0.00326
+0.64775,1.18508,-1.45277,-1.40312,-0.28885,1.95685,0.00326
+0.64929,1.18514,-1.45256,-1.40401,-0.28818,1.95678,0.00326
+0.65083,1.18521,-1.45235,-1.40488,-0.28752,1.95671,0.00327
+0.65238,1.18528,-1.45214,-1.40574,-0.28687,1.95663,0.00327
+0.65392,1.18535,-1.45193,-1.40659,-0.28623,1.95656,0.00327
+0.65546,1.18541,-1.45173,-1.40742,-0.28561,1.95649,0.00327
+0.65700,1.18548,-1.45153,-1.40824,-0.28499,1.95643,0.00327
+0.65854,1.18554,-1.45133,-1.40904,-0.28438,1.95636,0.00327
+0.66009,1.18560,-1.45113,-1.40983,-0.28379,1.95629,0.00327
+0.66163,1.18567,-1.45094,-1.41061,-0.28320,1.95622,0.00328
+0.66317,1.18573,-1.45075,-1.41137,-0.28263,1.95616,0.00328
+0.66471,1.18579,-1.45057,-1.41213,-0.28206,1.95609,0.00328
+0.66626,1.18585,-1.45039,-1.41287,-0.28150,1.95603,0.00328
+0.66780,1.18591,-1.45021,-1.41359,-0.28096,1.95596,0.00328
+0.66934,1.18597,-1.45003,-1.41431,-0.28042,1.95590,0.00329
+0.67088,1.18603,-1.44985,-1.41501,-0.27989,1.95584,0.00329
+0.67242,1.18609,-1.44968,-1.41571,-0.27937,1.95578,0.00329
+0.67397,1.18614,-1.44951,-1.41639,-0.27886,1.95572,0.00329
+0.67551,1.18620,-1.44934,-1.41706,-0.27835,1.95566,0.00329
+0.67705,1.18625,-1.44918,-1.41771,-0.27786,1.95560,0.00329
+0.67859,1.18631,-1.44902,-1.41836,-0.27737,1.95554,0.00330
+0.68014,1.18636,-1.44886,-1.41900,-0.27690,1.95548,0.00330
+0.68168,1.18642,-1.44870,-1.41963,-0.27643,1.95543,0.00330
+0.68322,1.18647,-1.44854,-1.42024,-0.27596,1.95537,0.00330
+0.68476,1.18652,-1.44839,-1.42085,-0.27551,1.95531,0.00330
+0.68630,1.18658,-1.44824,-1.42144,-0.27506,1.95526,0.00331
+0.68785,1.18663,-1.44809,-1.42203,-0.27462,1.95520,0.00331
+0.68939,1.18668,-1.44794,-1.42261,-0.27419,1.95515,0.00331
+0.69093,1.18671,-1.44786,-1.42295,-0.27393,1.95512,0.00331
+0.69247,1.18678,-1.44770,-1.42355,-0.27350,1.95504,0.00331
+0.69402,1.18685,-1.44754,-1.42413,-0.27307,1.95497,0.00332
+0.69556,1.18692,-1.44739,-1.42471,-0.27264,1.95490,0.00332
+0.69710,1.18693,-1.44736,-1.42480,-0.27258,1.95489,0.00332
+0.69864,1.18705,-1.44713,-1.42567,-0.27194,1.95476,0.00332
+0.70019,1.18717,-1.44690,-1.42653,-0.27131,1.95464,0.00332
+0.70173,1.18729,-1.44667,-1.42738,-0.27069,1.95452,0.00332
+0.70327,1.18740,-1.44645,-1.42821,-0.27008,1.95440,0.00332
+0.70481,1.18752,-1.44623,-1.42903,-0.26949,1.95428,0.00333
+0.70635,1.18763,-1.44601,-1.42984,-0.26890,1.95416,0.00333
+0.70790,1.18774,-1.44580,-1.43063,-0.26832,1.95405,0.00333
+0.70944,1.18785,-1.44559,-1.43141,-0.26775,1.95393,0.00333
+0.71098,1.18796,-1.44538,-1.43217,-0.26720,1.95382,0.00333
+0.71252,1.18807,-1.44518,-1.43293,-0.26665,1.95371,0.00334
+0.71407,1.18818,-1.44497,-1.43367,-0.26611,1.95360,0.00334
+0.71561,1.18828,-1.44478,-1.43440,-0.26558,1.95349,0.00334
+0.71715,1.18838,-1.44458,-1.43511,-0.26505,1.95339,0.00334
+0.71869,1.18848,-1.44439,-1.43582,-0.26454,1.95328,0.00334
+0.72023,1.18858,-1.44420,-1.43651,-0.26404,1.95318,0.00335
+0.72178,1.18868,-1.44401,-1.43719,-0.26354,1.95308,0.00335
+0.72332,1.18878,-1.44383,-1.43786,-0.26305,1.95298,0.00335
+0.72486,1.18888,-1.44365,-1.43852,-0.26257,1.95288,0.00335
+0.72640,1.18897,-1.44347,-1.43917,-0.26210,1.95278,0.00335
+0.72795,1.18906,-1.44330,-1.43981,-0.26164,1.95268,0.00336
+0.72949,1.18916,-1.44312,-1.44043,-0.26118,1.95259,0.00336
+0.73103,1.18925,-1.44295,-1.44105,-0.26073,1.95249,0.00336
+0.73257,1.18934,-1.44279,-1.44166,-0.26029,1.95240,0.00336
+0.73411,1.18943,-1.44262,-1.44226,-0.25986,1.95231,0.00336
+0.73566,1.18951,-1.44246,-1.44284,-0.25943,1.95222,0.00337
+0.73720,1.18960,-1.44230,-1.44342,-0.25902,1.95213,0.00337
+0.73874,1.18963,-1.44224,-1.44365,-0.25885,1.95209,0.00337
+0.74028,1.18972,-1.44208,-1.44424,-0.25842,1.95201,0.00337
+0.74183,1.18980,-1.44192,-1.44481,-0.25800,1.95192,0.00337
+0.74337,1.18984,-1.44184,-1.44511,-0.25778,1.95188,0.00337
+0.74491,1.18994,-1.44166,-1.44575,-0.25732,1.95177,0.00338
+0.74645,1.19004,-1.44148,-1.44638,-0.25686,1.95167,0.00338
+0.74800,1.19014,-1.44131,-1.44700,-0.25641,1.95157,0.00338
+0.74954,1.19023,-1.44114,-1.44762,-0.25597,1.95147,0.00338
+0.75108,1.19033,-1.44098,-1.44822,-0.25553,1.95137,0.00338
+0.75262,1.19042,-1.44081,-1.44881,-0.25510,1.95128,0.00339
+0.75416,1.19051,-1.44065,-1.44939,-0.25468,1.95118,0.00339
+0.75571,1.19059,-1.44050,-1.44993,-0.25429,1.95110,0.00339
+0.75725,1.19068,-1.44031,-1.45075,-0.25367,1.95101,0.00339
+0.75879,1.19076,-1.44012,-1.45155,-0.25306,1.95092,0.00339
+0.76033,1.19084,-1.43993,-1.45234,-0.25246,1.95084,0.00339
+0.76188,1.19092,-1.43974,-1.45312,-0.25187,1.95075,0.00340
+0.76342,1.19100,-1.43956,-1.45388,-0.25129,1.95067,0.00340
+0.76496,1.19108,-1.43938,-1.45463,-0.25072,1.95059,0.00340
+0.76650,1.19115,-1.43920,-1.45537,-0.25016,1.95051,0.00340
+0.76804,1.19123,-1.43902,-1.45610,-0.24961,1.95043,0.00340
+0.76959,1.19130,-1.43885,-1.45682,-0.24907,1.95035,0.00340
+0.77113,1.19138,-1.43868,-1.45752,-0.24853,1.95027,0.00340
+0.77267,1.19145,-1.43851,-1.45821,-0.24801,1.95019,0.00341
+0.77421,1.19152,-1.43835,-1.45889,-0.24749,1.95012,0.00341
+0.77576,1.19159,-1.43818,-1.45956,-0.24699,1.95004,0.00341
+0.77730,1.19166,-1.43802,-1.46021,-0.24649,1.94997,0.00341
+0.77884,1.19173,-1.43786,-1.46086,-0.24600,1.94989,0.00341
+0.78038,1.19180,-1.43771,-1.46150,-0.24552,1.94982,0.00341
+0.78192,1.19187,-1.43756,-1.46212,-0.24505,1.94975,0.00342
+0.78347,1.19194,-1.43740,-1.46274,-0.24458,1.94968,0.00342
+0.78501,1.19200,-1.43726,-1.46334,-0.24413,1.94961,0.00342
+0.78655,1.19207,-1.43711,-1.46394,-0.24368,1.94954,0.00342
+0.78809,1.19213,-1.43697,-1.46452,-0.24324,1.94947,0.00342
+0.78964,1.19219,-1.43682,-1.46510,-0.24280,1.94940,0.00343
+0.79118,1.19226,-1.43668,-1.46566,-0.24238,1.94934,0.00343
+0.79272,1.19229,-1.43662,-1.46589,-0.24220,1.94931,0.00343
+0.79426,1.19239,-1.43645,-1.46653,-0.24173,1.94920,0.00343
+0.79581,1.19249,-1.43628,-1.46716,-0.24127,1.94910,0.00343
+0.79735,1.19258,-1.43612,-1.46778,-0.24082,1.94900,0.00343
+0.79889,1.19268,-1.43595,-1.46839,-0.24037,1.94890,0.00344
+0.80043,1.19278,-1.43579,-1.46899,-0.23993,1.94880,0.00344
+0.80197,1.19287,-1.43563,-1.46958,-0.23950,1.94870,0.00344
+0.80352,1.19296,-1.43547,-1.47016,-0.23908,1.94860,0.00344
+0.80506,1.19305,-1.43532,-1.47073,-0.23866,1.94851,0.00344
+0.80660,1.19309,-1.43526,-1.47096,-0.23849,1.94847,0.00344
+0.80814,1.19318,-1.43510,-1.47154,-0.23807,1.94838,0.00345
+0.80969,1.19327,-1.43495,-1.47211,-0.23765,1.94829,0.00345
+0.81123,1.19331,-1.43488,-1.47239,-0.23744,1.94824,0.00345
+0.81277,1.19340,-1.43472,-1.47297,-0.23701,1.94815,0.00345
+0.81431,1.19348,-1.43457,-1.47354,-0.23659,1.94806,0.00345
+0.81585,1.19348,-1.43453,-1.47380,-0.23638,1.94807,0.00345
+0.81740,1.19308,-1.43467,-1.47413,-0.23590,1.94845,0.00345
+0.81894,1.19270,-1.43481,-1.47445,-0.23544,1.94882,0.00345
+0.82048,1.19232,-1.43495,-1.47477,-0.23498,1.94919,0.00345
+0.82202,1.19194,-1.43508,-1.47508,-0.23454,1.94955,0.00345
+0.82357,1.19158,-1.43521,-1.47539,-0.23410,1.94991,0.00345
+0.82511,1.19122,-1.43534,-1.47569,-0.23366,1.95026,0.00345
+0.82665,1.19086,-1.43547,-1.47598,-0.23324,1.95060,0.00345
+0.82819,1.19051,-1.43560,-1.47627,-0.23282,1.95094,0.00345
+0.82973,1.19017,-1.43572,-1.47656,-0.23241,1.95128,0.00345
+0.83128,1.18983,-1.43584,-1.47684,-0.23201,1.95160,0.00345
+0.83282,1.18950,-1.43596,-1.47711,-0.23161,1.95192,0.00345
+0.83436,1.18918,-1.43608,-1.47738,-0.23122,1.95224,0.00345
+0.83590,1.18886,-1.43619,-1.47764,-0.23084,1.95255,0.00345
+0.83745,1.18879,-1.43622,-1.47769,-0.23076,1.95262,0.00345
+0.83899,1.18841,-1.43637,-1.47792,-0.23038,1.95299,0.00345
+0.84053,1.18805,-1.43652,-1.47815,-0.23000,1.95334,0.00345
+0.84207,1.18768,-1.43666,-1.47837,-0.22963,1.95370,0.00345
+0.84362,1.18733,-1.43681,-1.47858,-0.22927,1.95405,0.00345
+0.84516,1.18697,-1.43695,-1.47879,-0.22891,1.95439,0.00345
+0.84670,1.18656,-1.43713,-1.47897,-0.22856,1.95479,0.00345
+0.84824,1.18617,-1.43730,-1.47915,-0.22820,1.95518,0.00345
+0.84978,1.18577,-1.43747,-1.47932,-0.22786,1.95556,0.00345
+0.85133,1.18539,-1.43764,-1.47949,-0.22752,1.95594,0.00345
+0.85287,1.18501,-1.43780,-1.47966,-0.22719,1.95631,0.00345
+0.85441,1.18485,-1.43787,-1.47972,-0.22705,1.95646,0.00345
+0.85595,1.18442,-1.43807,-1.47985,-0.22672,1.95689,0.00345
+0.85750,1.18400,-1.43827,-1.47998,-0.22639,1.95730,0.00345
+0.85904,1.18358,-1.43846,-1.48010,-0.22607,1.95771,0.00345
+0.86058,1.18317,-1.43865,-1.48023,-0.22575,1.95811,0.00345
+0.86212,1.18277,-1.43883,-1.48035,-0.22544,1.95851,0.00345
+0.86366,1.18249,-1.43896,-1.48043,-0.22523,1.95878,0.00345
+0.86521,1.18205,-1.43917,-1.48053,-0.22492,1.95921,0.00345
+0.86675,1.18163,-1.43937,-1.48062,-0.22462,1.95963,0.00345
+0.86829,1.18121,-1.43957,-1.48071,-0.22433,1.96004,0.00345
+0.86983,1.18080,-1.43977,-1.48080,-0.22404,1.96044,0.00345
+0.87138,1.18072,-1.43981,-1.48082,-0.22398,1.96052,0.00345
+0.87292,1.18027,-1.44003,-1.48089,-0.22369,1.96096,0.00345
+0.87446,1.17984,-1.44024,-1.48095,-0.22340,1.96139,0.00345
+0.87600,1.17941,-1.44045,-1.48102,-0.22312,1.96181,0.00345
+0.87754,1.17899,-1.44066,-1.48108,-0.22285,1.96222,0.00345
+0.87909,1.17890,-1.44071,-1.48110,-0.22279,1.96231,0.00345
+0.88063,1.17840,-1.44095,-1.48116,-0.22247,1.96280,0.00345
+0.88217,1.17791,-1.44120,-1.48123,-0.22216,1.96328,0.00345
+0.88371,1.17743,-1.44144,-1.48129,-0.22185,1.96375,0.00345
+0.88526,1.17696,-1.44167,-1.48135,-0.22155,1.96421,0.00345
+0.88680,1.17650,-1.44191,-1.48141,-0.22126,1.96467,0.00345
+0.88834,1.17605,-1.44213,-1.48147,-0.22097,1.96511,0.00345
+0.88988,1.17560,-1.44236,-1.48153,-0.22068,1.96555,0.00345
+0.89143,1.17516,-1.44258,-1.48158,-0.22040,1.96599,0.00345
+0.89297,1.17473,-1.44280,-1.48164,-0.22013,1.96641,0.00345
+0.89451,1.17431,-1.44301,-1.48169,-0.21986,1.96683,0.00345
+0.89605,1.17407,-1.44313,-1.48170,-0.21972,1.96706,0.00345
+0.89759,1.17344,-1.44348,-1.48164,-0.21943,1.96769,0.00345
+0.89914,1.17281,-1.44382,-1.48158,-0.21914,1.96830,0.00345
+0.90068,1.17220,-1.44416,-1.48152,-0.21886,1.96891,0.00345
+0.90222,1.17159,-1.44449,-1.48146,-0.21859,1.96951,0.00344
+0.90376,1.17100,-1.44482,-1.48140,-0.21832,1.97009,0.00344
+0.90531,1.17041,-1.44514,-1.48134,-0.21805,1.97067,0.00344
+0.90685,1.16984,-1.44546,-1.48128,-0.21779,1.97124,0.00344
+0.90839,1.16927,-1.44577,-1.48122,-0.21753,1.97179,0.00344
+0.90993,1.16872,-1.44608,-1.48116,-0.21728,1.97234,0.00344
+0.91147,1.16817,-1.44638,-1.48110,-0.21704,1.97288,0.00344
+0.91302,1.16764,-1.44667,-1.48104,-0.21679,1.97341,0.00344
+0.91456,1.16711,-1.44697,-1.48099,-0.21656,1.97393,0.00344
+0.91610,1.16659,-1.44725,-1.48093,-0.21632,1.97444,0.00344
+0.91764,1.16608,-1.44754,-1.48087,-0.21610,1.97495,0.00344
+0.91919,1.16558,-1.44781,-1.48081,-0.21587,1.97544,0.00344
+0.92073,1.16509,-1.44809,-1.48076,-0.21565,1.97593,0.00344
+0.92227,1.16460,-1.44836,-1.48070,-0.21543,1.97641,0.00344
+0.92381,1.16413,-1.44862,-1.48064,-0.21522,1.97688,0.00343
+0.92535,1.16366,-1.44888,-1.48059,-0.21501,1.97734,0.00343
+0.92690,1.16320,-1.44914,-1.48053,-0.21481,1.97780,0.00343
+0.92844,1.16275,-1.44939,-1.48048,-0.21461,1.97825,0.00343
+0.92998,1.16237,-1.44960,-1.48042,-0.21445,1.97862,0.00343
+0.93152,1.16171,-1.44999,-1.48025,-0.21422,1.97927,0.00343
+0.93307,1.16107,-1.45037,-1.48009,-0.21401,1.97991,0.00343
+0.93461,1.16043,-1.45074,-1.47992,-0.21379,1.98054,0.00343
+0.93615,1.15980,-1.45111,-1.47976,-0.21358,1.98116,0.00343
+0.93769,1.15919,-1.45147,-1.47960,-0.21338,1.98177,0.00343
+0.93924,1.15858,-1.45183,-1.47944,-0.21317,1.98237,0.00343
+0.94078,1.15799,-1.45218,-1.47929,-0.21298,1.98296,0.00343
+0.94232,1.15741,-1.45253,-1.47913,-0.21278,1.98353,0.00342
+0.94386,1.15683,-1.45287,-1.47898,-0.21259,1.98410,0.00342
+0.94540,1.15627,-1.45320,-1.47883,-0.21240,1.98466,0.00342
+0.94695,1.15571,-1.45353,-1.47868,-0.21222,1.98521,0.00342
+0.94849,1.15517,-1.45385,-1.47853,-0.21204,1.98575,0.00342
+0.95003,1.15463,-1.45417,-1.47838,-0.21186,1.98628,0.00342
+0.95157,1.15411,-1.45448,-1.47824,-0.21169,1.98681,0.00342
+0.95312,1.15359,-1.45479,-1.47810,-0.21152,1.98732,0.00342
+0.95466,1.15308,-1.45509,-1.47796,-0.21136,1.98783,0.00342
+0.95620,1.15258,-1.45539,-1.47782,-0.21119,1.98832,0.00342
+0.95774,1.15209,-1.45569,-1.47768,-0.21103,1.98881,0.00342
+0.95928,1.15160,-1.45597,-1.47755,-0.21088,1.98929,0.00342
+0.96083,1.15113,-1.45626,-1.47741,-0.21072,1.98976,0.00342
+0.96237,1.15066,-1.45654,-1.47728,-0.21057,1.99023,0.00342
+0.96391,1.15020,-1.45681,-1.47715,-0.21042,1.99069,0.00341
+0.96545,1.14979,-1.45706,-1.47703,-0.21029,1.99110,0.00341
+0.96700,1.14929,-1.45736,-1.47687,-0.21014,1.99160,0.00341
+0.96854,1.14879,-1.45766,-1.47671,-0.20999,1.99209,0.00341
+0.97008,1.14830,-1.45796,-1.47656,-0.20985,1.99257,0.00341
+0.97162,1.14783,-1.45825,-1.47641,-0.20971,1.99305,0.00341
+0.97316,1.14736,-1.45854,-1.47626,-0.20957,1.99352,0.00341
+0.97471,1.14689,-1.45882,-1.47611,-0.20943,1.99398,0.00341
+0.97625,1.14644,-1.45910,-1.47596,-0.20930,1.99443,0.00341
+0.97779,1.14630,-1.45918,-1.47591,-0.20926,1.99457,0.00341
+0.97933,1.14579,-1.45949,-1.47574,-0.20912,1.99507,0.00341
+0.98088,1.14530,-1.45980,-1.47556,-0.20898,1.99557,0.00341
+0.98242,1.14481,-1.46010,-1.47539,-0.20885,1.99605,0.00341
+0.98396,1.14433,-1.46039,-1.47522,-0.20872,1.99653,0.00341
+0.98550,1.14386,-1.46068,-1.47505,-0.20860,1.99700,0.00341
+0.98705,1.14340,-1.46097,-1.47489,-0.20847,1.99746,0.00341
+0.98859,1.14294,-1.46125,-1.47473,-0.20835,1.99791,0.00341
+0.99013,1.14280,-1.46134,-1.47468,-0.20831,1.99805,0.00341
+0.99167,1.14230,-1.46165,-1.47448,-0.20819,1.99855,0.00340
+0.99321,1.14181,-1.46196,-1.47429,-0.20806,1.99904,0.00340
+0.99476,1.14132,-1.46227,-1.47411,-0.20794,1.99953,0.00340
+0.99630,1.14084,-1.46257,-1.47392,-0.20782,2.00000,0.00340
+0.99784,1.14037,-1.46286,-1.47374,-0.20770,2.00047,0.00340
+0.99938,1.13991,-1.46315,-1.47356,-0.20759,2.00093,0.00340
+1.00093,1.13945,-1.46344,-1.47338,-0.20748,2.00139,0.00340
+1.00247,1.13927,-1.46355,-1.47331,-0.20743,2.00157,0.00340
+1.00401,1.13881,-1.46384,-1.47313,-0.20732,2.00203,0.00340
+1.00555,1.13835,-1.46413,-1.47295,-0.20721,2.00248,0.00340
+1.00709,1.13807,-1.46431,-1.47283,-0.20714,2.00277,0.00340
+1.00864,1.13745,-1.46471,-1.47260,-0.20698,2.00338,0.00340
+1.01018,1.13684,-1.46509,-1.47238,-0.20681,2.00399,0.00340
+1.01172,1.13624,-1.46548,-1.47215,-0.20666,2.00458,0.00339
+1.01326,1.13565,-1.46585,-1.47193,-0.20650,2.00517,0.00339
+1.01481,1.13507,-1.46622,-1.47171,-0.20635,2.00574,0.00339
+1.01635,1.13450,-1.46658,-1.47150,-0.20620,2.00631,0.00339
+1.01789,1.13394,-1.46694,-1.47128,-0.20605,2.00687,0.00339
+1.01943,1.13340,-1.46729,-1.47107,-0.20590,2.00741,0.00339
+1.02097,1.13286,-1.46763,-1.47087,-0.20576,2.00795,0.00339
+1.02252,1.13232,-1.46797,-1.47066,-0.20562,2.00848,0.00339
+1.02406,1.13180,-1.46831,-1.47046,-0.20549,2.00900,0.00338
+1.02560,1.13129,-1.46864,-1.47026,-0.20536,2.00951,0.00338
+1.02714,1.13079,-1.46896,-1.47007,-0.20523,2.01001,0.00338
+1.02869,1.13029,-1.46928,-1.46987,-0.20510,2.01050,0.00338
+1.03023,1.12980,-1.46959,-1.46968,-0.20497,2.01099,0.00338
+1.03177,1.12933,-1.46990,-1.46949,-0.20485,2.01147,0.00338
+1.03331,1.12886,-1.47020,-1.46931,-0.20473,2.01193,0.00338
+1.03486,1.12839,-1.47050,-1.46913,-0.20461,2.01240,0.00338
+1.03640,1.12794,-1.47079,-1.46894,-0.20450,2.01285,0.00338
+1.03794,1.12749,-1.47108,-1.46877,-0.20438,2.01330,0.00338
+1.03948,1.12735,-1.47117,-1.46871,-0.20435,2.01343,0.00338
+1.04102,1.12686,-1.47149,-1.46850,-0.20423,2.01393,0.00338
+1.04257,1.12637,-1.47181,-1.46830,-0.20412,2.01441,0.00337
+1.04411,1.12589,-1.47212,-1.46809,-0.20401,2.01489,0.00337
+1.04565,1.12542,-1.47243,-1.46790,-0.20390,2.01536,0.00337
+1.04719,1.12496,-1.47273,-1.46770,-0.20379,2.01582,0.00337
+1.04874,1.12451,-1.47303,-1.46750,-0.20368,2.01627,0.00337
+1.05028,1.12406,-1.47332,-1.46731,-0.20358,2.01672,0.00337
+1.05182,1.12387,-1.47344,-1.46723,-0.20353,2.01691,0.00337
+1.05336,1.12332,-1.47380,-1.46700,-0.20340,2.01745,0.00337
+1.05490,1.12278,-1.47416,-1.46677,-0.20327,2.01799,0.00337
+1.05645,1.12225,-1.47451,-1.46655,-0.20314,2.01853,0.00337
+1.05799,1.12172,-1.47486,-1.46633,-0.20302,2.01905,0.00336
+1.05953,1.12121,-1.47520,-1.46611,-0.20289,2.01956,0.00336
+1.06107,1.12070,-1.47553,-1.46589,-0.20277,2.02006,0.00336
+1.06262,1.12021,-1.47586,-1.46568,-0.20265,2.02056,0.00336
+1.06416,1.11972,-1.47618,-1.46547,-0.20254,2.02105,0.00336
+1.06570,1.11924,-1.47650,-1.46526,-0.20242,2.02153,0.00336
+1.06724,1.11876,-1.47682,-1.46505,-0.20231,2.02200,0.00336
+1.06878,1.11830,-1.47712,-1.46485,-0.20220,2.02246,0.00336
+1.07033,1.11784,-1.47743,-1.46465,-0.20210,2.02292,0.00336
+1.07187,1.11740,-1.47772,-1.46446,-0.20199,2.02337,0.00336
+1.07341,1.11695,-1.47802,-1.46426,-0.20189,2.02381,0.00335
+1.07495,1.11690,-1.47805,-1.46424,-0.20188,2.02386,0.00335
+1.07650,1.11635,-1.47842,-1.46398,-0.20177,2.02441,0.00335
+1.07804,1.11581,-1.47879,-1.46373,-0.20165,2.02494,0.00335
+1.07958,1.11529,-1.47914,-1.46348,-0.20155,2.02547,0.00335
+1.08112,1.11477,-1.47949,-1.46323,-0.20144,2.02599,0.00335
+1.08267,1.11426,-1.47984,-1.46299,-0.20133,2.02649,0.00335
+1.08421,1.11375,-1.48018,-1.46275,-0.20123,2.02700,0.00335
+1.08575,1.11326,-1.48051,-1.46251,-0.20113,2.02749,0.00335
+1.08729,1.11278,-1.48084,-1.46228,-0.20104,2.02797,0.00334
+1.08883,1.11230,-1.48116,-1.46205,-0.20094,2.02845,0.00334
+1.09038,1.11183,-1.48148,-1.46182,-0.20085,2.02891,0.00334
+1.09192,1.11137,-1.48179,-1.46160,-0.20075,2.02937,0.00334
+1.09346,1.11092,-1.48210,-1.46138,-0.20066,2.02983,0.00334
+1.09500,1.11047,-1.48240,-1.46116,-0.20058,2.03027,0.00334
+1.09655,1.11003,-1.48270,-1.46095,-0.20049,2.03071,0.00334
+1.09809,1.10954,-1.48303,-1.46075,-0.20036,2.03120,0.00334
+1.09963,1.10907,-1.48335,-1.46055,-0.20023,2.03168,0.00334
+1.10117,1.10859,-1.48367,-1.46035,-0.20010,2.03215,0.00334
+1.10271,1.10813,-1.48398,-1.46016,-0.19998,2.03261,0.00333
+1.10426,1.10768,-1.48429,-1.45997,-0.19986,2.03306,0.00333
+1.10580,1.10723,-1.48459,-1.45978,-0.19975,2.03351,0.00333
+1.10734,1.10679,-1.48489,-1.45960,-0.19963,2.03395,0.00333
+1.10888,1.10643,-1.48514,-1.45944,-0.19954,2.03431,0.00333
+1.11043,1.10583,-1.48555,-1.45916,-0.19941,2.03491,0.00333
+1.11197,1.10525,-1.48595,-1.45888,-0.19928,2.03549,0.00333
+1.11351,1.10467,-1.48635,-1.45861,-0.19916,2.03606,0.00332
+1.11505,1.10411,-1.48674,-1.45834,-0.19904,2.03662,0.00332
+1.11659,1.10355,-1.48712,-1.45807,-0.19892,2.03718,0.00332
+1.11814,1.10300,-1.48750,-1.45781,-0.19880,2.03772,0.00332
+1.11968,1.10247,-1.48787,-1.45755,-0.19868,2.03826,0.00332
+1.12122,1.10194,-1.48824,-1.45729,-0.19857,2.03878,0.00332
+1.12276,1.10142,-1.48860,-1.45704,-0.19846,2.03930,0.00332
+1.12431,1.10091,-1.48895,-1.45679,-0.19836,2.03981,0.00331
+1.12585,1.10041,-1.48930,-1.45654,-0.19825,2.04031,0.00331
+1.12739,1.09992,-1.48964,-1.45630,-0.19815,2.04080,0.00331
+1.12893,1.09944,-1.48998,-1.45606,-0.19805,2.04128,0.00331
+1.13048,1.09896,-1.49031,-1.45583,-0.19795,2.04175,0.00331
+1.13202,1.09849,-1.49064,-1.45560,-0.19785,2.04222,0.00331
+1.13356,1.09804,-1.49096,-1.45537,-0.19776,2.04268,0.00331
+1.13510,1.09758,-1.49127,-1.45514,-0.19767,2.04313,0.00331
+1.13664,1.09714,-1.49158,-1.45492,-0.19758,2.04357,0.00331
+1.13819,1.09670,-1.49189,-1.45470,-0.19749,2.04401,0.00330
+1.13973,1.09636,-1.49213,-1.45453,-0.19742,2.04436,0.00330
+1.14127,1.09588,-1.49247,-1.45430,-0.19731,2.04484,0.00330
+1.14281,1.09541,-1.49279,-1.45408,-0.19720,2.04531,0.00330
+1.14436,1.09494,-1.49312,-1.45386,-0.19709,2.04577,0.00330
+1.14590,1.09449,-1.49344,-1.45364,-0.19699,2.04622,0.00330
+1.14744,1.09404,-1.49375,-1.45343,-0.19688,2.04667,0.00330
+1.14898,1.09360,-1.49406,-1.45322,-0.19679,2.04711,0.00330
+1.15052,1.09317,-1.49436,-1.45301,-0.19669,2.04754,0.00330
+1.15207,1.09290,-1.49455,-1.45288,-0.19662,2.04781,0.00330
+1.15361,1.09231,-1.49497,-1.45262,-0.19647,2.04840,0.00329
+1.15515,1.09173,-1.49537,-1.45236,-0.19632,2.04897,0.00329
+1.15669,1.09117,-1.49577,-1.45210,-0.19618,2.04954,0.00329
+1.15824,1.09061,-1.49616,-1.45185,-0.19604,2.05009,0.00329
+1.15978,1.09006,-1.49655,-1.45160,-0.19590,2.05064,0.00329
+1.16132,1.08952,-1.49693,-1.45136,-0.19576,2.05118,0.00328
+1.16286,1.08899,-1.49731,-1.45112,-0.19562,2.05170,0.00328
+1.16440,1.08847,-1.49767,-1.45088,-0.19549,2.05222,0.00328
+1.16595,1.08796,-1.49804,-1.45064,-0.19537,2.05273,0.00328
+1.16749,1.08746,-1.49839,-1.45041,-0.19524,2.05323,0.00328
+1.16903,1.08696,-1.49874,-1.45018,-0.19512,2.05373,0.00328
+1.17057,1.08648,-1.49909,-1.44995,-0.19500,2.05421,0.00328
+1.17212,1.08600,-1.49943,-1.44973,-0.19488,2.05469,0.00327
+1.17366,1.08553,-1.49976,-1.44951,-0.19476,2.05516,0.00327
+1.17520,1.08507,-1.50009,-1.44930,-0.19465,2.05562,0.00327
+1.17674,1.08462,-1.50041,-1.44908,-0.19454,2.05607,0.00327
+1.17829,1.08418,-1.50073,-1.44887,-0.19443,2.05651,0.00327
+1.17983,1.08374,-1.50104,-1.44866,-0.19432,2.05695,0.00327
+1.18137,1.08331,-1.50135,-1.44846,-0.19422,2.05738,0.00327
+1.18291,1.08289,-1.50165,-1.44826,-0.19412,2.05780,0.00327
+1.18445,1.08284,-1.50168,-1.44824,-0.19411,2.05785,0.00327
+1.18600,1.08241,-1.50199,-1.44803,-0.19401,2.05828,0.00327
+1.18754,1.08199,-1.50229,-1.44782,-0.19391,2.05870,0.00326
+1.18908,1.08177,-1.50245,-1.44771,-0.19386,2.05892,0.00326
+1.19062,1.08130,-1.50279,-1.44747,-0.19375,2.05939,0.00326
+1.19217,1.08084,-1.50312,-1.44724,-0.19365,2.05985,0.00326
+1.19371,1.08039,-1.50345,-1.44701,-0.19356,2.06030,0.00326
+1.19525,1.07994,-1.50377,-1.44678,-0.19346,2.06075,0.00326
+1.19679,1.07951,-1.50409,-1.44655,-0.19337,2.06118,0.00326
+1.19833,1.07908,-1.50440,-1.44633,-0.19328,2.06161,0.00326
+1.19988,1.07865,-1.50471,-1.44611,-0.19319,2.06204,0.00326
+1.20142,1.07851,-1.50481,-1.44604,-0.19315,2.06218,0.00326
+1.20296,1.07793,-1.50523,-1.44576,-0.19301,2.06275,0.00325
+1.20450,1.07736,-1.50564,-1.44549,-0.19287,2.06332,0.00325
+1.20605,1.07681,-1.50605,-1.44522,-0.19273,2.06388,0.00325
+1.20759,1.07626,-1.50645,-1.44495,-0.19260,2.06442,0.00325
+1.20913,1.07572,-1.50684,-1.44469,-0.19246,2.06496,0.00325
+1.21067,1.07519,-1.50723,-1.44443,-0.19234,2.06549,0.00325
+1.21221,1.07467,-1.50761,-1.44418,-0.19221,2.06601,0.00324
+1.21376,1.07416,-1.50798,-1.44392,-0.19208,2.06652,0.00324
+1.21530,1.07365,-1.50835,-1.44368,-0.19196,2.06702,0.00324
+1.21684,1.07316,-1.50871,-1.44343,-0.19185,2.06751,0.00324
+1.21838,1.07267,-1.50906,-1.44319,-0.19173,2.06800,0.00324
+1.21993,1.07220,-1.50941,-1.44295,-0.19162,2.06847,0.00324
+1.22147,1.07173,-1.50976,-1.44272,-0.19150,2.06894,0.00324
+1.22301,1.07127,-1.51010,-1.44249,-0.19140,2.06940,0.00323
+1.22455,1.07082,-1.51043,-1.44226,-0.19129,2.06985,0.00323
+1.22610,1.07037,-1.51076,-1.44203,-0.19118,2.07030,0.00323
+1.22764,1.06993,-1.51108,-1.44181,-0.19108,2.07074,0.00323
+1.22918,1.06950,-1.51140,-1.44159,-0.19098,2.07117,0.00323
+1.23072,1.06908,-1.51171,-1.44138,-0.19088,2.07159,0.00323
+1.23226,1.06865,-1.51202,-1.44116,-0.19078,2.07202,0.00323
+1.23381,1.06812,-1.51242,-1.44091,-0.19064,2.07255,0.00323
+1.23535,1.06759,-1.51280,-1.44066,-0.19050,2.07307,0.00322
+1.23689,1.06708,-1.51318,-1.44042,-0.19036,2.07359,0.00322
+1.23843,1.06657,-1.51356,-1.44018,-0.19022,2.07409,0.00322
+1.23998,1.06607,-1.51393,-1.43995,-0.19008,2.07459,0.00322
+1.24152,1.06558,-1.51429,-1.43971,-0.18995,2.07508,0.00322
+1.24306,1.06510,-1.51465,-1.43948,-0.18983,2.07556,0.00322
+1.24460,1.06463,-1.51500,-1.43926,-0.18970,2.07603,0.00322
+1.24614,1.06416,-1.51534,-1.43903,-0.18958,2.07650,0.00321
+1.24769,1.06371,-1.51568,-1.43881,-0.18946,2.07695,0.00321
+1.24923,1.06326,-1.51602,-1.43860,-0.18934,2.07740,0.00321
+1.25077,1.06282,-1.51634,-1.43838,-0.18922,2.07784,0.00321
+1.25231,1.06238,-1.51667,-1.43817,-0.18911,2.07828,0.00321
+1.25386,1.06196,-1.51698,-1.43796,-0.18900,2.07870,0.00321
+1.25540,1.06154,-1.51730,-1.43776,-0.18889,2.07912,0.00321
+1.25694,1.06113,-1.51760,-1.43756,-0.18878,2.07953,0.00321
+1.25848,1.06102,-1.51768,-1.43750,-0.18876,2.07964,0.00321
+1.26002,1.06037,-1.51817,-1.43718,-0.18859,2.08029,0.00320
+1.26157,1.05972,-1.51866,-1.43686,-0.18842,2.08093,0.00320
+1.26311,1.05909,-1.51913,-1.43654,-0.18826,2.08155,0.00320
+1.26465,1.05847,-1.51960,-1.43623,-0.18811,2.08217,0.00320
+1.26619,1.05787,-1.52006,-1.43592,-0.18795,2.08277,0.00319
+1.26774,1.05727,-1.52052,-1.43561,-0.18780,2.08337,0.00319
+1.26928,1.05668,-1.52096,-1.43531,-0.18766,2.08395,0.00319
+1.27082,1.05610,-1.52140,-1.43502,-0.18751,2.08453,0.00319
+1.27236,1.05554,-1.52183,-1.43473,-0.18737,2.08509,0.00319
+1.27390,1.05498,-1.52226,-1.43444,-0.18723,2.08565,0.00319
+1.27545,1.05443,-1.52267,-1.43415,-0.18710,2.08620,0.00318
+1.27699,1.05389,-1.52308,-1.43387,-0.18697,2.08673,0.00318
+1.27853,1.05336,-1.52349,-1.43360,-0.18684,2.08726,0.00318
+1.28007,1.05285,-1.52388,-1.43333,-0.18671,2.08778,0.00318
+1.28162,1.05234,-1.52427,-1.43306,-0.18659,2.08829,0.00318
+1.28316,1.05183,-1.52466,-1.43279,-0.18647,2.08879,0.00318
+1.28470,1.05134,-1.52503,-1.43253,-0.18635,2.08928,0.00317
+1.28624,1.05086,-1.52540,-1.43228,-0.18623,2.08976,0.00317
+1.28779,1.05038,-1.52577,-1.43202,-0.18612,2.09024,0.00317
+1.28933,1.04991,-1.52613,-1.43177,-0.18601,2.09070,0.00317
+1.29087,1.04946,-1.52648,-1.43153,-0.18590,2.09116,0.00317
+1.29241,1.04900,-1.52683,-1.43128,-0.18579,2.09161,0.00317
+1.29395,1.04856,-1.52717,-1.43104,-0.18569,2.09206,0.00317
+1.29550,1.04813,-1.52751,-1.43081,-0.18559,2.09249,0.00317
+1.29704,1.04770,-1.52783,-1.43058,-0.18549,2.09292,0.00317
+1.29858,1.04728,-1.52816,-1.43035,-0.18539,2.09334,0.00316
+1.30012,1.04686,-1.52848,-1.43012,-0.18530,2.09376,0.00316
+1.30167,1.04646,-1.52879,-1.42990,-0.18520,2.09416,0.00316
+1.30321,1.04629,-1.52892,-1.42981,-0.18517,2.09433,0.00316
+1.30475,1.04586,-1.52925,-1.42956,-0.18507,2.09476,0.00316
+1.30629,1.04544,-1.52958,-1.42932,-0.18498,2.09518,0.00316
+1.30783,1.04502,-1.52991,-1.42909,-0.18489,2.09560,0.00316
+1.30938,1.04461,-1.53023,-1.42885,-0.18480,2.09601,0.00316
+1.31092,1.04419,-1.53055,-1.42862,-0.18471,2.09643,0.00316
+1.31246,1.04360,-1.53101,-1.42832,-0.18455,2.09702,0.00316
+1.31400,1.04302,-1.53146,-1.42803,-0.18439,2.09759,0.00315
+1.31555,1.04246,-1.53190,-1.42773,-0.18424,2.09816,0.00315
+1.31709,1.04190,-1.53234,-1.42745,-0.18409,2.09872,0.00315
+1.31863,1.04135,-1.53277,-1.42717,-0.18394,2.09926,0.00315
+1.32017,1.04081,-1.53319,-1.42689,-0.18380,2.09980,0.00315
+1.32171,1.04028,-1.53360,-1.42661,-0.18366,2.10033,0.00314
+1.32326,1.03976,-1.53401,-1.42634,-0.18352,2.10084,0.00314
+1.32480,1.03925,-1.53441,-1.42608,-0.18339,2.10135,0.00314
+1.32634,1.03875,-1.53480,-1.42581,-0.18325,2.10185,0.00314
+1.32788,1.03826,-1.53519,-1.42555,-0.18312,2.10235,0.00314
+1.32943,1.03777,-1.53557,-1.42530,-0.18300,2.10283,0.00314
+1.33097,1.03730,-1.53594,-1.42504,-0.18287,2.10331,0.00314
+1.33251,1.03683,-1.53631,-1.42480,-0.18275,2.10377,0.00313
+1.33405,1.03637,-1.53667,-1.42455,-0.18264,2.10423,0.00313
+1.33560,1.03592,-1.53703,-1.42431,-0.18252,2.10468,0.00313
+1.33714,1.03548,-1.53738,-1.42407,-0.18241,2.10513,0.00313
+1.33868,1.03504,-1.53772,-1.42384,-0.18230,2.10556,0.00313
+1.34022,1.03461,-1.53806,-1.42360,-0.18219,2.10599,0.00313
+1.34176,1.03419,-1.53840,-1.42338,-0.18208,2.10641,0.00313
+1.34331,1.03378,-1.53872,-1.42315,-0.18198,2.10683,0.00313
+1.34485,1.03337,-1.53904,-1.42293,-0.18188,2.10723,0.00313
+1.34639,1.03297,-1.53936,-1.42271,-0.18178,2.10763,0.00312
+1.34793,1.03273,-1.53955,-1.42258,-0.18172,2.10787,0.00312
+1.34948,1.03233,-1.53987,-1.42235,-0.18162,2.10828,0.00312
+1.35102,1.03193,-1.54019,-1.42213,-0.18152,2.10868,0.00312
+1.35256,1.03172,-1.54035,-1.42201,-0.18147,2.10889,0.00312
+1.35410,1.03121,-1.54076,-1.42175,-0.18133,2.10939,0.00312
+1.35564,1.03071,-1.54116,-1.42149,-0.18119,2.10989,0.00312
+1.35719,1.03022,-1.54155,-1.42123,-0.18106,2.11038,0.00312
+1.35873,1.02974,-1.54193,-1.42098,-0.18092,2.11086,0.00312
+1.36027,1.02926,-1.54231,-1.42073,-0.18079,2.11134,0.00311
+1.36181,1.02880,-1.54269,-1.42048,-0.18066,2.11180,0.00311
+1.36336,1.02834,-1.54305,-1.42024,-0.18054,2.11226,0.00311
+1.36490,1.02789,-1.54341,-1.42000,-0.18042,2.11271,0.00311
+1.36644,1.02745,-1.54377,-1.41976,-0.18030,2.11315,0.00311
+1.36798,1.02702,-1.54411,-1.41953,-0.18018,2.11358,0.00311
+1.36952,1.02659,-1.54446,-1.41930,-0.18007,2.11401,0.00311
+1.37107,1.02617,-1.54479,-1.41908,-0.17995,2.11443,0.00311
+1.37261,1.02576,-1.54512,-1.41885,-0.17985,2.11484,0.00310
+1.37415,1.02535,-1.54545,-1.41863,-0.17974,2.11525,0.00310
+1.37569,1.02496,-1.54577,-1.41842,-0.17963,2.11564,0.00310
+1.37724,1.02457,-1.54608,-1.41820,-0.17953,2.11604,0.00310
+1.37878,1.02452,-1.54612,-1.41818,-0.17952,2.11608,0.00310
+1.38032,1.02407,-1.54649,-1.41791,-0.17941,2.11653,0.00310
+1.38186,1.02363,-1.54685,-1.41766,-0.17931,2.11697,0.00310
+1.38341,1.02319,-1.54720,-1.41740,-0.17921,2.11741,0.00310
+1.38495,1.02276,-1.54755,-1.41715,-0.17911,2.11784,0.00310
+1.38649,1.02234,-1.54789,-1.41690,-0.17901,2.11826,0.00310
+1.38803,1.02193,-1.54823,-1.41666,-0.17892,2.11867,0.00310
+1.38957,1.02152,-1.54856,-1.41642,-0.17883,2.11908,0.00309
+1.39112,1.02112,-1.54889,-1.41618,-0.17874,2.11948,0.00309
+1.39266,1.02073,-1.54921,-1.41595,-0.17865,2.11987,0.00309
+1.39420,1.02057,-1.54934,-1.41585,-0.17861,2.12003,0.00309
+1.39574,1.02012,-1.54970,-1.41562,-0.17848,2.12048,0.00309
+1.39729,1.01968,-1.55006,-1.41538,-0.17835,2.12092,0.00309
+1.39883,1.01924,-1.55042,-1.41515,-0.17822,2.12136,0.00309
+1.40037,1.01881,-1.55077,-1.41493,-0.17810,2.12178,0.00309
+1.40191,1.01839,-1.55111,-1.41470,-0.17798,2.12220,0.00309
+1.40345,1.01798,-1.55145,-1.41448,-0.17786,2.12262,0.00308
+1.40500,1.01758,-1.55178,-1.41426,-0.17775,2.12302,0.00308
+1.40654,1.01718,-1.55210,-1.41405,-0.17764,2.12342,0.00308
+1.40808,1.01679,-1.55242,-1.41384,-0.17753,2.12381,0.00308
+1.40962,1.01640,-1.55274,-1.41363,-0.17742,2.12420,0.00308
+1.41117,1.01601,-1.55306,-1.41341,-0.17731,2.12459,0.00308
+1.41271,1.01562,-1.55338,-1.41319,-0.17721,2.12498,0.00308
+1.41425,1.01546,-1.55351,-1.41311,-0.17717,2.12514,0.00308
+1.41579,1.01507,-1.55383,-1.41291,-0.17704,2.12553,0.00308
+1.41733,1.01468,-1.55415,-1.41271,-0.17692,2.12592,0.00308
+1.41888,1.01433,-1.55443,-1.41253,-0.17682,2.12627,0.00308
+1.42042,1.01390,-1.55478,-1.41232,-0.17668,2.12670,0.00307
+1.42196,1.01348,-1.55513,-1.41211,-0.17654,2.12712,0.00307
+1.42350,1.01307,-1.55546,-1.41190,-0.17641,2.12753,0.00307
+1.42505,1.01267,-1.55580,-1.41170,-0.17628,2.12793,0.00307
+1.42659,1.01227,-1.55612,-1.41150,-0.17615,2.12833,0.00307
+1.42813,1.01188,-1.55644,-1.41130,-0.17603,2.12872,0.00307
+1.42967,1.01150,-1.55676,-1.41110,-0.17591,2.12910,0.00307
+1.43122,1.01131,-1.55692,-1.41101,-0.17584,2.12929,0.00307
+1.43276,1.01108,-1.55710,-1.41091,-0.17576,2.12952,0.00307
+1.43430,1.01069,-1.55742,-1.41073,-0.17562,2.12991,0.00306
+1.43584,1.01031,-1.55773,-1.41055,-0.17549,2.13029,0.00306
+1.43738,1.01016,-1.55785,-1.41048,-0.17543,2.13044,0.00306
+1.43893,1.00998,-1.55799,-1.41046,-0.17531,2.13062,0.00306
+1.44047,1.01005,-1.55792,-1.41065,-0.17519,2.13056,0.00306
+1.44201,1.01066,-1.55728,-1.41206,-0.17444,2.12995,0.00306
+1.44355,1.01127,-1.55666,-1.41344,-0.17369,2.12936,0.00306
+1.44510,1.01186,-1.55604,-1.41480,-0.17296,2.12878,0.00306
+1.44664,1.01245,-1.55543,-1.41613,-0.17224,2.12820,0.00306
+1.44818,1.01302,-1.55483,-1.41745,-0.17153,2.12764,0.00306
+1.44972,1.01359,-1.55425,-1.41874,-0.17083,2.12708,0.00306
+1.45126,1.01415,-1.55367,-1.42001,-0.17015,2.12653,0.00306
+1.45281,1.01470,-1.55310,-1.42126,-0.16947,2.12599,0.00306
+1.45435,1.01524,-1.55254,-1.42249,-0.16881,2.12546,0.00306
+1.45589,1.01578,-1.55199,-1.42370,-0.16815,2.12494,0.00306
+1.45743,1.01630,-1.55145,-1.42489,-0.16751,2.12442,0.00306
+1.45898,1.01682,-1.55092,-1.42606,-0.16688,2.12391,0.00306
+1.46052,1.01733,-1.55039,-1.42721,-0.16626,2.12341,0.00306
+1.46206,1.01783,-1.54988,-1.42834,-0.16565,2.12292,0.00306
+1.46360,1.01832,-1.54937,-1.42945,-0.16505,2.12243,0.00306
+1.46514,1.01880,-1.54887,-1.43055,-0.16446,2.12195,0.00306
+1.46669,1.01928,-1.54838,-1.43162,-0.16388,2.12148,0.00306
+1.46823,1.01975,-1.54790,-1.43268,-0.16331,2.12102,0.00306
+1.46977,1.02021,-1.54743,-1.43372,-0.16275,2.12056,0.00306
+1.47131,1.02067,-1.54696,-1.43475,-0.16219,2.12011,0.00307
+1.47286,1.02112,-1.54650,-1.43575,-0.16165,2.11967,0.00307
+1.47440,1.02156,-1.54605,-1.43674,-0.16112,2.11924,0.00307
+1.47594,1.02199,-1.54560,-1.43772,-0.16059,2.11881,0.00307
+1.47748,1.02242,-1.54517,-1.43867,-0.16007,2.11838,0.00307
+1.47903,1.02284,-1.54474,-1.43962,-0.15956,2.11797,0.00307
+1.48057,1.02325,-1.54431,-1.44054,-0.15906,2.11756,0.00307
+1.48211,1.02366,-1.54390,-1.44145,-0.15857,2.11716,0.00307
+1.48365,1.02406,-1.54349,-1.44235,-0.15809,2.11676,0.00308
+1.48519,1.02446,-1.54308,-1.44323,-0.15761,2.11637,0.00308
+1.48674,1.02484,-1.54269,-1.44410,-0.15714,2.11598,0.00308
+1.48828,1.02523,-1.54230,-1.44495,-0.15668,2.11561,0.00308
+1.48982,1.02560,-1.54191,-1.44579,-0.15623,2.11523,0.00308
+1.49136,1.02597,-1.54154,-1.44662,-0.15579,2.11486,0.00308
+1.49291,1.02634,-1.54116,-1.44743,-0.15535,2.11450,0.00308
+1.49445,1.02669,-1.54080,-1.44823,-0.15492,2.11415,0.00309
+1.49599,1.02705,-1.54044,-1.44901,-0.15449,2.11380,0.00309
+1.49753,1.02739,-1.54008,-1.44978,-0.15408,2.11345,0.00309
+1.49907,1.02774,-1.53974,-1.45054,-0.15367,2.11311,0.00309
+1.50062,1.02807,-1.53939,-1.45129,-0.15326,2.11278,0.00309
+1.50216,1.02840,-1.53906,-1.45202,-0.15287,2.11245,0.00310
+1.50370,1.02873,-1.53872,-1.45275,-0.15248,2.11212,0.00310
+1.50524,1.02905,-1.53840,-1.45346,-0.15209,2.11181,0.00310
+1.50679,1.02936,-1.53808,-1.45416,-0.15172,2.11149,0.00310
+1.50833,1.02967,-1.53776,-1.45484,-0.15134,2.11118,0.00310
+1.50987,1.02998,-1.53745,-1.45552,-0.15098,2.11088,0.00310
+1.51141,1.03028,-1.53714,-1.45619,-0.15062,2.11058,0.00311
+1.51295,1.03058,-1.53684,-1.45684,-0.15027,2.11028,0.00311
+1.51450,1.03087,-1.53655,-1.45748,-0.14992,2.10999,0.00311
+1.51604,1.03115,-1.53625,-1.45812,-0.14958,2.10971,0.00311
+1.51758,1.03143,-1.53597,-1.45874,-0.14924,2.10942,0.00311
+1.51912,1.03171,-1.53569,-1.45935,-0.14891,2.10915,0.00312
+1.52067,1.03198,-1.53541,-1.45996,-0.14859,2.10887,0.00312
+1.52221,1.03225,-1.53513,-1.46055,-0.14827,2.10861,0.00312
+1.52375,1.03252,-1.53487,-1.46113,-0.14795,2.10834,0.00312
+1.52529,1.03278,-1.53460,-1.46170,-0.14764,2.10808,0.00312
+1.52684,1.03303,-1.53434,-1.46227,-0.14734,2.10783,0.00313
+1.52838,1.03318,-1.53420,-1.46258,-0.14718,2.10768,0.00313
+1.52992,1.03360,-1.53379,-1.46340,-0.14676,2.10727,0.00313
+1.53146,1.03401,-1.53339,-1.46422,-0.14635,2.10686,0.00313
+1.53300,1.03441,-1.53299,-1.46502,-0.14594,2.10645,0.00313
+1.53455,1.03481,-1.53260,-1.46581,-0.14554,2.10605,0.00313
+1.53609,1.03520,-1.53222,-1.46658,-0.14515,2.10566,0.00314
+1.53763,1.03559,-1.53184,-1.46735,-0.14476,2.10528,0.00314
+1.53917,1.03597,-1.53147,-1.46810,-0.14439,2.10490,0.00314
+1.54072,1.03634,-1.53111,-1.46883,-0.14401,2.10452,0.00314
+1.54226,1.03671,-1.53075,-1.46956,-0.14365,2.10416,0.00314
+1.54380,1.03707,-1.53040,-1.47027,-0.14329,2.10379,0.00315
+1.54534,1.03743,-1.53005,-1.47097,-0.14293,2.10344,0.00315
+1.54688,1.03778,-1.52971,-1.47166,-0.14258,2.10309,0.00315
+1.54843,1.03813,-1.52938,-1.47234,-0.14224,2.10274,0.00315
+1.54997,1.03847,-1.52905,-1.47301,-0.14190,2.10240,0.00316
+1.55151,1.03880,-1.52872,-1.47367,-0.14157,2.10207,0.00316
+1.55305,1.03913,-1.52840,-1.47431,-0.14124,2.10174,0.00316
+1.55460,1.03945,-1.52809,-1.47495,-0.14092,2.10141,0.00316
+1.55614,1.03977,-1.52778,-1.47557,-0.14061,2.10109,0.00316
+1.55768,1.04009,-1.52748,-1.47619,-0.14029,2.10078,0.00317
+1.55922,1.04039,-1.52718,-1.47679,-0.13999,2.10047,0.00317
+1.56076,1.04070,-1.52688,-1.47739,-0.13969,2.10017,0.00317
+1.56231,1.04100,-1.52659,-1.47797,-0.13939,2.09987,0.00317
+1.56385,1.04129,-1.52631,-1.47855,-0.13910,2.09957,0.00317
+1.56539,1.04158,-1.52603,-1.47911,-0.13882,2.09928,0.00318
+1.56693,1.04186,-1.52575,-1.47967,-0.13853,2.09899,0.00318
+1.56848,1.04214,-1.52548,-1.48022,-0.13826,2.09871,0.00318
+1.57002,1.04224,-1.52539,-1.48039,-0.13817,2.09862,0.00318
+1.57156,1.04260,-1.52505,-1.48103,-0.13787,2.09826,0.00318
+1.57310,1.04295,-1.52472,-1.48166,-0.13757,2.09791,0.00319
+1.57465,1.04330,-1.52439,-1.48229,-0.13728,2.09756,0.00319
+1.57619,1.04364,-1.52407,-1.48290,-0.13699,2.09721,0.00319
+1.57773,1.04398,-1.52375,-1.48350,-0.13671,2.09687,0.00319
+1.57927,1.04431,-1.52343,-1.48409,-0.13643,2.09654,0.00319
+1.58081,1.04464,-1.52313,-1.48467,-0.13616,2.09621,0.00320
+1.58236,1.04496,-1.52282,-1.48524,-0.13589,2.09589,0.00320
+1.58390,1.04528,-1.52253,-1.48580,-0.13563,2.09557,0.00320
+1.58544,1.04559,-1.52223,-1.48636,-0.13537,2.09526,0.00320
+1.58698,1.04590,-1.52194,-1.48690,-0.13511,2.09495,0.00321
+1.58853,1.04620,-1.52166,-1.48744,-0.13486,2.09465,0.00321
+1.59007,1.04641,-1.52147,-1.48780,-0.13469,2.09444,0.00321
+1.59161,1.04701,-1.52092,-1.48876,-0.13428,2.09384,0.00321
+1.59315,1.04761,-1.52038,-1.48970,-0.13388,2.09324,0.00321
+1.59469,1.04820,-1.51985,-1.49063,-0.13348,2.09266,0.00322
+1.59624,1.04877,-1.51934,-1.49154,-0.13309,2.09209,0.00322
+1.59778,1.04934,-1.51882,-1.49244,-0.13270,2.09152,0.00322
+1.59932,1.04990,-1.51832,-1.49332,-0.13232,2.09096,0.00322
+1.60086,1.05045,-1.51783,-1.49419,-0.13195,2.09041,0.00323
+1.60241,1.05099,-1.51734,-1.49504,-0.13158,2.08987,0.00323
+1.60395,1.05152,-1.51686,-1.49588,-0.13122,2.08934,0.00323
+1.60549,1.05205,-1.51640,-1.49671,-0.13087,2.08882,0.00323
+1.60703,1.05256,-1.51593,-1.49752,-0.13052,2.08830,0.00324
+1.60857,1.05307,-1.51548,-1.49832,-0.13018,2.08780,0.00324
+1.61012,1.05357,-1.51503,-1.49910,-0.12984,2.08730,0.00324
+1.61166,1.05406,-1.51459,-1.49987,-0.12951,2.08681,0.00324
+1.61320,1.05454,-1.51416,-1.50063,-0.12918,2.08632,0.00325
+1.61474,1.05502,-1.51373,-1.50138,-0.12886,2.08584,0.00325
+1.61629,1.05549,-1.51332,-1.50211,-0.12855,2.08538,0.00325
+1.61783,1.05595,-1.51290,-1.50284,-0.12824,2.08491,0.00325
+1.61937,1.05641,-1.51250,-1.50355,-0.12793,2.08446,0.00326
+1.62091,1.05685,-1.51210,-1.50425,-0.12763,2.08401,0.00326
+1.62246,1.05729,-1.51171,-1.50493,-0.12734,2.08357,0.00326
+1.62400,1.05773,-1.51133,-1.50561,-0.12705,2.08314,0.00326
+1.62554,1.05815,-1.51095,-1.50627,-0.12676,2.08271,0.00327
+1.62708,1.05857,-1.51057,-1.50693,-0.12648,2.08229,0.00327
+1.62862,1.05898,-1.51021,-1.50757,-0.12620,2.08188,0.00327
+1.63017,1.05939,-1.50985,-1.50820,-0.12593,2.08147,0.00327
+1.63171,1.05979,-1.50949,-1.50883,-0.12566,2.08107,0.00328
+1.63325,1.06018,-1.50914,-1.50944,-0.12540,2.08067,0.00328
+1.63479,1.06057,-1.50880,-1.51004,-0.12514,2.08028,0.00328
+1.63634,1.06095,-1.50846,-1.51063,-0.12488,2.07990,0.00328
+1.63788,1.06132,-1.50813,-1.51121,-0.12463,2.07952,0.00328
+1.63942,1.06169,-1.50781,-1.51179,-0.12439,2.07915,0.00329
+1.64096,1.06206,-1.50748,-1.51235,-0.12415,2.07879,0.00329
+1.64250,1.06241,-1.50717,-1.51290,-0.12391,2.07843,0.00329
+1.64405,1.06276,-1.50686,-1.51345,-0.12367,2.07808,0.00329
+1.64559,1.06311,-1.50655,-1.51399,-0.12344,2.07773,0.00330
+1.64713,1.06345,-1.50625,-1.51451,-0.12321,2.07738,0.00330
+1.64867,1.06378,-1.50596,-1.51503,-0.12299,2.07705,0.00330
+1.65022,1.06411,-1.50567,-1.51554,-0.12277,2.07672,0.00330
+1.65176,1.06432,-1.50548,-1.51587,-0.12263,2.07651,0.00330
+1.65330,1.06479,-1.50508,-1.51659,-0.12231,2.07604,0.00331
+1.65484,1.06524,-1.50468,-1.51730,-0.12200,2.07559,0.00331
+1.65638,1.06569,-1.50429,-1.51799,-0.12170,2.07514,0.00331
+1.65793,1.06613,-1.50391,-1.51868,-0.12139,2.07470,0.00331
+1.65947,1.06656,-1.50353,-1.51935,-0.12110,2.07426,0.00331
+1.66101,1.06699,-1.50316,-1.52002,-0.12081,2.07384,0.00332
+1.66255,1.06741,-1.50280,-1.52067,-0.12052,2.07341,0.00332
+1.66410,1.06782,-1.50244,-1.52131,-0.12024,2.07300,0.00332
+1.66564,1.06822,-1.50208,-1.52194,-0.11996,2.07259,0.00332
+1.66718,1.06862,-1.50174,-1.52256,-0.11969,2.07219,0.00332
+1.66872,1.06902,-1.50140,-1.52317,-0.11942,2.07180,0.00333
+1.67027,1.06940,-1.50106,-1.52377,-0.11916,2.07141,0.00333
+1.67181,1.06979,-1.50073,-1.52436,-0.11890,2.07102,0.00333
+1.67335,1.07016,-1.50040,-1.52495,-0.11864,2.07065,0.00333
+1.67489,1.07053,-1.50008,-1.52552,-0.11839,2.07027,0.00334
+1.67643,1.07089,-1.49977,-1.52608,-0.11814,2.06991,0.00334
+1.67798,1.07125,-1.49946,-1.52663,-0.11790,2.06955,0.00334
+1.67952,1.07160,-1.49916,-1.52717,-0.11766,2.06919,0.00334
+1.68106,1.07195,-1.49886,-1.52771,-0.11742,2.06885,0.00334
+1.68260,1.07229,-1.49856,-1.52823,-0.11719,2.06850,0.00335
+1.68415,1.07262,-1.49827,-1.52875,-0.11697,2.06817,0.00335
+1.68569,1.07295,-1.49799,-1.52926,-0.11674,2.06783,0.00335
+1.68723,1.07313,-1.49784,-1.52952,-0.11663,2.06766,0.00335
+1.68877,1.07358,-1.49746,-1.53015,-0.11639,2.06721,0.00335
+1.69031,1.07402,-1.49709,-1.53076,-0.11615,2.06677,0.00336
+1.69186,1.07445,-1.49672,-1.53136,-0.11591,2.06633,0.00336
+1.69340,1.07488,-1.49636,-1.53195,-0.11568,2.06590,0.00336
+1.69494,1.07530,-1.49601,-1.53254,-0.11545,2.06548,0.00336
+1.69648,1.07571,-1.49566,-1.53311,-0.11522,2.06507,0.00336
+1.69803,1.07612,-1.49532,-1.53367,-0.11500,2.06466,0.00337
+1.69957,1.07652,-1.49498,-1.53423,-0.11479,2.06426,0.00337
+1.70111,1.07691,-1.49465,-1.53477,-0.11457,2.06386,0.00337
+1.70265,1.07730,-1.49432,-1.53531,-0.11436,2.06347,0.00337
+1.70419,1.07768,-1.49400,-1.53584,-0.11415,2.06309,0.00338
+1.70574,1.07806,-1.49369,-1.53635,-0.11395,2.06271,0.00338
+1.70728,1.07843,-1.49338,-1.53687,-0.11375,2.06234,0.00338
+1.70882,1.07879,-1.49307,-1.53737,-0.11355,2.06197,0.00338
+1.71036,1.07915,-1.49277,-1.53786,-0.11336,2.06161,0.00338
+1.71191,1.07950,-1.49248,-1.53835,-0.11317,2.06126,0.00339
+1.71345,1.07972,-1.49229,-1.53865,-0.11305,2.06104,0.00339
+1.71499,1.08017,-1.49192,-1.53925,-0.11282,2.06059,0.00339
+1.71653,1.08061,-1.49155,-1.53985,-0.11259,2.06014,0.00339
+1.71808,1.08105,-1.49119,-1.54044,-0.11237,2.05970,0.00339
+1.71962,1.08148,-1.49083,-1.54102,-0.11214,2.05927,0.00340
+1.72116,1.08190,-1.49048,-1.54158,-0.11193,2.05885,0.00340
+1.72270,1.08232,-1.49014,-1.54214,-0.11171,2.05843,0.00340
+1.72424,1.08273,-1.48980,-1.54269,-0.11150,2.05802,0.00340
+1.72579,1.08313,-1.48947,-1.54323,-0.11130,2.05761,0.00340
+1.72733,1.08353,-1.48914,-1.54377,-0.11109,2.05721,0.00341
+1.72887,1.08392,-1.48882,-1.54429,-0.11089,2.05682,0.00341
+1.73041,1.08431,-1.48850,-1.54480,-0.11069,2.05643,0.00341
+1.73196,1.08469,-1.48819,-1.54531,-0.11050,2.05605,0.00341
+1.73350,1.08506,-1.48788,-1.54581,-0.11031,2.05568,0.00341
+1.73504,1.08542,-1.48758,-1.54630,-0.11012,2.05531,0.00342
+1.73658,1.08578,-1.48728,-1.54678,-0.10994,2.05495,0.00342
+1.73812,1.08612,-1.48701,-1.54722,-0.10977,2.05461,0.00342
+1.73967,1.08659,-1.48662,-1.54781,-0.10957,2.05414,0.00342
+1.74121,1.08706,-1.48624,-1.54839,-0.10937,2.05367,0.00343
+1.74275,1.08753,-1.48587,-1.54896,-0.10917,2.05320,0.00343
+1.74429,1.08798,-1.48550,-1.54952,-0.10898,2.05275,0.00343
+1.74584,1.08843,-1.48514,-1.55008,-0.10878,2.05230,0.00343
+1.74738,1.08887,-1.48479,-1.55062,-0.10860,2.05186,0.00343
+1.74892,1.08931,-1.48444,-1.55115,-0.10841,2.05142,0.00344
+1.75046,1.08973,-1.48409,-1.55168,-0.10823,2.05099,0.00344
+1.75200,1.09015,-1.48375,-1.55220,-0.10805,2.05057,0.00344
+1.75355,1.09057,-1.48342,-1.55271,-0.10788,2.05016,0.00344
+1.75509,1.09097,-1.48309,-1.55321,-0.10770,2.04975,0.00345
+1.75663,1.09137,-1.48277,-1.55370,-0.10753,2.04934,0.00345
+1.75817,1.09177,-1.48245,-1.55418,-0.10736,2.04895,0.00345
+1.75972,1.09216,-1.48214,-1.55466,-0.10720,2.04856,0.00345
+1.76126,1.09254,-1.48184,-1.55513,-0.10704,2.04818,0.00345
+1.76280,1.09291,-1.48154,-1.55559,-0.10688,2.04780,0.00346
+1.76434,1.09324,-1.48128,-1.55598,-0.10674,2.04747,0.00346
+1.76589,1.09386,-1.48079,-1.55672,-0.10650,2.04685,0.00346
+1.76743,1.09447,-1.48030,-1.55744,-0.10626,2.04624,0.00346
+1.76897,1.09507,-1.47983,-1.55816,-0.10603,2.04564,0.00346
+1.77051,1.09567,-1.47936,-1.55886,-0.10580,2.04505,0.00347
+1.77205,1.09625,-1.47890,-1.55954,-0.10557,2.04447,0.00347
+1.77360,1.09683,-1.47845,-1.56022,-0.10535,2.04389,0.00347
+1.77514,1.09739,-1.47800,-1.56089,-0.10513,2.04333,0.00347
+1.77668,1.09795,-1.47757,-1.56154,-0.10491,2.04277,0.00348
+1.77822,1.09850,-1.47714,-1.56219,-0.10470,2.04222,0.00348
+1.77977,1.09904,-1.47671,-1.56282,-0.10449,2.04168,0.00348
+1.78131,1.09957,-1.47630,-1.56344,-0.10428,2.04115,0.00348
+1.78285,1.10009,-1.47589,-1.56406,-0.10408,2.04063,0.00349
+1.78439,1.10061,-1.47549,-1.56466,-0.10388,2.04011,0.00349
+1.78593,1.10111,-1.47509,-1.56525,-0.10368,2.03961,0.00349
+1.78748,1.10161,-1.47470,-1.56583,-0.10349,2.03911,0.00349
+1.78902,1.10210,-1.47432,-1.56641,-0.10330,2.03861,0.00350
+1.79056,1.10258,-1.47394,-1.56697,-0.10311,2.03813,0.00350
+1.79210,1.10306,-1.47357,-1.56753,-0.10293,2.03765,0.00350
+1.79365,1.10353,-1.47321,-1.56807,-0.10275,2.03719,0.00350
+1.79519,1.10399,-1.47285,-1.56861,-0.10257,2.03672,0.00350
+1.79673,1.10444,-1.47250,-1.56913,-0.10240,2.03627,0.00351
+1.79827,1.10488,-1.47215,-1.56965,-0.10223,2.03582,0.00351
+1.79981,1.10532,-1.47181,-1.57016,-0.10206,2.03538,0.00351
+1.80136,1.10575,-1.47148,-1.57066,-0.10189,2.03495,0.00351
+1.80290,1.10618,-1.47115,-1.57116,-0.10173,2.03452,0.00351
+1.80444,1.10660,-1.47083,-1.57164,-0.10157,2.03410,0.00352
+1.80598,1.10701,-1.47051,-1.57212,-0.10141,2.03369,0.00352
+1.80753,1.10741,-1.47019,-1.57259,-0.10125,2.03328,0.00352
+1.80907,1.10781,-1.46989,-1.57305,-0.10110,2.03288,0.00352
+1.81061,1.10820,-1.46958,-1.57351,-0.10095,2.03249,0.00352
+1.81215,1.10859,-1.46928,-1.57395,-0.10080,2.03210,0.00353
+1.81370,1.10883,-1.46910,-1.57423,-0.10071,2.03185,0.00353
+1.81524,1.10934,-1.46871,-1.57479,-0.10054,2.03135,0.00353
+1.81678,1.10984,-1.46833,-1.57533,-0.10038,2.03085,0.00353
+1.81832,1.11033,-1.46795,-1.57587,-0.10022,2.03035,0.00353
+1.81986,1.11082,-1.46759,-1.57640,-0.10006,2.02987,0.00354
+1.82141,1.11129,-1.46722,-1.57692,-0.09990,2.02939,0.00354
+1.82295,1.11176,-1.46687,-1.57743,-0.09974,2.02892,0.00354
+1.82449,1.11222,-1.46652,-1.57794,-0.09959,2.02846,0.00354
+1.82603,1.11268,-1.46617,-1.57843,-0.09944,2.02800,0.00354
+1.82758,1.11312,-1.46583,-1.57892,-0.09929,2.02756,0.00355
+1.82912,1.11356,-1.46550,-1.57940,-0.09915,2.02711,0.00355
+1.83066,1.11400,-1.46517,-1.57987,-0.09901,2.02668,0.00355
+1.83220,1.11442,-1.46485,-1.58033,-0.09887,2.02625,0.00355
+1.83374,1.11484,-1.46453,-1.58079,-0.09873,2.02583,0.00355
+1.83529,1.11525,-1.46422,-1.58124,-0.09859,2.02542,0.00356
+1.83683,1.11566,-1.46391,-1.58168,-0.09846,2.02501,0.00356
+1.83837,1.11606,-1.46361,-1.58211,-0.09833,2.02461,0.00356
+1.83991,1.11647,-1.46330,-1.58256,-0.09819,2.02420,0.00356
+1.84146,1.11701,-1.46290,-1.58313,-0.09803,2.02366,0.00356
+1.84300,1.11754,-1.46250,-1.58369,-0.09786,2.02313,0.00357
+1.84454,1.11806,-1.46211,-1.58425,-0.09770,2.02261,0.00357
+1.84608,1.11857,-1.46173,-1.58479,-0.09754,2.02209,0.00357
+1.84762,1.11908,-1.46135,-1.58533,-0.09738,2.02159,0.00357
+1.84917,1.11957,-1.46098,-1.58585,-0.09723,2.02109,0.00358
+1.85071,1.12006,-1.46061,-1.58637,-0.09708,2.02060,0.00358
+1.85225,1.12054,-1.46025,-1.58688,-0.09693,2.02012,0.00358
+1.85379,1.12102,-1.45990,-1.58738,-0.09678,2.01964,0.00358
+1.85534,1.12148,-1.45955,-1.58787,-0.09664,2.01917,0.00358
+1.85688,1.12194,-1.45921,-1.58836,-0.09649,2.01871,0.00359
+1.85842,1.12240,-1.45888,-1.58883,-0.09635,2.01826,0.00359
+1.85996,1.12284,-1.45855,-1.58930,-0.09622,2.01781,0.00359
+1.86151,1.12328,-1.45822,-1.58976,-0.09608,2.01737,0.00359
+1.86305,1.12371,-1.45790,-1.59022,-0.09595,2.01694,0.00359
+1.86459,1.12413,-1.45759,-1.59066,-0.09582,2.01652,0.00360
+1.86613,1.12455,-1.45728,-1.59110,-0.09569,2.01610,0.00360
+1.86767,1.12496,-1.45697,-1.59153,-0.09556,2.01568,0.00360
+1.86922,1.12536,-1.45668,-1.59196,-0.09544,2.01528,0.00360
+1.87076,1.12565,-1.45647,-1.59225,-0.09535,2.01500,0.00360
+1.87230,1.12606,-1.45616,-1.59270,-0.09521,2.01458,0.00360
+1.87384,1.12646,-1.45586,-1.59314,-0.09507,2.01417,0.00361
+1.87539,1.12686,-1.45557,-1.59357,-0.09494,2.01377,0.00361
+1.87693,1.12706,-1.45542,-1.59378,-0.09487,2.01357,0.00361
+1.87847,1.12747,-1.45512,-1.59421,-0.09474,2.01316,0.00361
+1.88001,1.12787,-1.45482,-1.59463,-0.09462,2.01276,0.00361
+1.88155,1.12803,-1.45471,-1.59480,-0.09457,2.01260,0.00361
+1.88310,1.12845,-1.45440,-1.59523,-0.09445,2.01218,0.00361
+1.88464,1.12885,-1.45410,-1.59565,-0.09433,2.01177,0.00362
+1.88618,1.12905,-1.45396,-1.59585,-0.09427,2.01157,0.00362
+1.88772,1.12945,-1.45367,-1.59628,-0.09413,2.01117,0.00362
+1.88927,1.12949,-1.45364,-1.59633,-0.09412,2.01113,0.00362
+1.89081,1.12988,-1.45335,-1.59677,-0.09396,2.01074,0.00362
+1.89235,1.12991,-1.45333,-1.59682,-0.09393,2.01071,0.00362
+1.89389,1.13017,-1.45312,-1.59738,-0.09359,2.01045,0.00362
+1.89543,1.13042,-1.45292,-1.59792,-0.09325,2.01018,0.00362
+1.89698,1.13068,-1.45271,-1.59846,-0.09292,2.00992,0.00362
+1.89852,1.13081,-1.45260,-1.59879,-0.09270,2.00978,0.00362
+1.90006,1.13092,-1.45249,-1.59944,-0.09217,2.00967,0.00362
+1.90160,1.13103,-1.45239,-1.60008,-0.09164,2.00955,0.00362
+1.90315,1.13113,-1.45228,-1.60070,-0.09113,2.00944,0.00362
+1.90469,1.13123,-1.45217,-1.60132,-0.09062,2.00933,0.00362
+1.90623,1.13134,-1.45207,-1.60193,-0.09012,2.00922,0.00361
+1.90777,1.13144,-1.45197,-1.60253,-0.08963,2.00911,0.00361
+1.90932,1.13153,-1.45187,-1.60311,-0.08915,2.00900,0.00361
+1.91086,1.13163,-1.45177,-1.60369,-0.08868,2.00889,0.00361
+1.91240,1.13173,-1.45167,-1.60426,-0.08821,2.00879,0.00361
+1.91394,1.13182,-1.45157,-1.60481,-0.08776,2.00869,0.00361
+1.91548,1.13191,-1.45148,-1.60536,-0.08731,2.00859,0.00361
+1.91703,1.13200,-1.45139,-1.60590,-0.08686,2.00849,0.00361
+1.91857,1.13209,-1.45129,-1.60643,-0.08643,2.00839,0.00361
+1.92011,1.13218,-1.45120,-1.60695,-0.08600,2.00829,0.00361
+1.92165,1.13221,-1.45117,-1.60729,-0.08571,2.00826,0.00361
+1.92320,1.13201,-1.45125,-1.60807,-0.08484,2.00844,0.00360
+1.92474,1.13182,-1.45134,-1.60884,-0.08400,2.00862,0.00360
+1.92628,1.13163,-1.45142,-1.60960,-0.08317,2.00879,0.00360
+1.92782,1.13145,-1.45150,-1.61034,-0.08235,2.00896,0.00359
+1.92936,1.13127,-1.45158,-1.61108,-0.08155,2.00912,0.00359
+1.93091,1.13109,-1.45166,-1.61179,-0.08076,2.00929,0.00359
+1.93245,1.13092,-1.45174,-1.61250,-0.07998,2.00945,0.00358
+1.93399,1.13075,-1.45181,-1.61319,-0.07922,2.00960,0.00358
+1.93553,1.13058,-1.45189,-1.61387,-0.07847,2.00976,0.00358
+1.93708,1.13041,-1.45196,-1.61454,-0.07773,2.00991,0.00358
+1.93862,1.13025,-1.45203,-1.61520,-0.07701,2.01006,0.00357
+1.94016,1.13009,-1.45211,-1.61584,-0.07630,2.01021,0.00357
+1.94170,1.12994,-1.45218,-1.61648,-0.07560,2.01035,0.00357
+1.94324,1.12978,-1.45224,-1.61710,-0.07491,2.01049,0.00357
+1.94479,1.12963,-1.45231,-1.61771,-0.07424,2.01063,0.00356
+1.94633,1.12949,-1.45238,-1.61831,-0.07357,2.01077,0.00356
+1.94787,1.12934,-1.45244,-1.61890,-0.07292,2.01090,0.00356
+1.94941,1.12920,-1.45250,-1.61948,-0.07228,2.01103,0.00356
+1.95096,1.12906,-1.45257,-1.62005,-0.07165,2.01116,0.00356
+1.95250,1.12892,-1.45263,-1.62061,-0.07103,2.01129,0.00356
+1.95404,1.12879,-1.45269,-1.62116,-0.07043,2.01141,0.00355
+1.95558,1.12866,-1.45275,-1.62171,-0.06983,2.01153,0.00355
+1.95713,1.12853,-1.45280,-1.62224,-0.06924,2.01165,0.00355
+1.95867,1.12840,-1.45286,-1.62276,-0.06867,2.01177,0.00355
+1.96021,1.12827,-1.45292,-1.62327,-0.06810,2.01189,0.00355
+1.96175,1.12815,-1.45297,-1.62378,-0.06754,2.01200,0.00355
+1.96329,1.12803,-1.45302,-1.62427,-0.06700,2.01211,0.00355
+1.96484,1.12791,-1.45308,-1.62476,-0.06646,2.01222,0.00355
+1.96638,1.12779,-1.45313,-1.62524,-0.06593,2.01233,0.00355
+1.96792,1.12768,-1.45318,-1.62571,-0.06541,2.01243,0.00355
+1.96946,1.12757,-1.45323,-1.62617,-0.06490,2.01254,0.00355
+1.97101,1.12746,-1.45328,-1.62662,-0.06440,2.01264,0.00355
+1.97255,1.12735,-1.45332,-1.62707,-0.06391,2.01274,0.00355
+1.97409,1.12724,-1.45337,-1.62751,-0.06342,2.01284,0.00354
+1.97563,1.12714,-1.45341,-1.62794,-0.06295,2.01294,0.00354
+1.97717,1.12704,-1.45346,-1.62836,-0.06248,2.01303,0.00354
+1.97872,1.12693,-1.45350,-1.62878,-0.06202,2.01312,0.00354
+1.98026,1.12685,-1.45354,-1.62911,-0.06164,2.01320,0.00354
+1.98180,1.12671,-1.45361,-1.62962,-0.06108,2.01333,0.00354
+1.98334,1.12658,-1.45367,-1.63011,-0.06052,2.01346,0.00354
+1.98489,1.12644,-1.45374,-1.63059,-0.05997,2.01358,0.00354
+1.98643,1.12631,-1.45380,-1.63107,-0.05943,2.01371,0.00354
+1.98797,1.12618,-1.45387,-1.63154,-0.05890,2.01383,0.00354
+1.98951,1.12606,-1.45393,-1.63200,-0.05838,2.01395,0.00354
+1.99105,1.12593,-1.45399,-1.63245,-0.05787,2.01406,0.00354
+1.99260,1.12581,-1.45405,-1.63289,-0.05737,2.01418,0.00354
+1.99414,1.12569,-1.45411,-1.63333,-0.05687,2.01429,0.00354
+1.99568,1.12557,-1.45416,-1.63376,-0.05639,2.01440,0.00354
+1.99722,1.12546,-1.45422,-1.63418,-0.05591,2.01451,0.00354
+1.99877,1.12534,-1.45427,-1.63459,-0.05544,2.01462,0.00354
+2.00031,1.12523,-1.45433,-1.63500,-0.05498,2.01472,0.00354
+2.00185,1.12509,-1.45440,-1.63542,-0.05448,2.01485,0.00354
+2.00339,1.12469,-1.45465,-1.63607,-0.05359,2.01524,0.00353
+2.00494,1.12429,-1.45490,-1.63670,-0.05271,2.01563,0.00353
+2.00648,1.12390,-1.45515,-1.63733,-0.05185,2.01600,0.00353
+2.00802,1.12352,-1.45539,-1.63794,-0.05100,2.01637,0.00352
+2.00956,1.12314,-1.45562,-1.63854,-0.05017,2.01674,0.00352
+2.01110,1.12277,-1.45586,-1.63913,-0.04935,2.01710,0.00352
+2.01265,1.12240,-1.45609,-1.63971,-0.04854,2.01745,0.00351
+2.01419,1.12205,-1.45631,-1.64028,-0.04775,2.01779,0.00351
+2.01573,1.12169,-1.45653,-1.64084,-0.04698,2.01813,0.00351
+2.01727,1.12135,-1.45675,-1.64138,-0.04621,2.01846,0.00351
+2.01882,1.12101,-1.45697,-1.64192,-0.04546,2.01879,0.00350
+2.02036,1.12068,-1.45718,-1.64245,-0.04473,2.01911,0.00350
+2.02190,1.12035,-1.45738,-1.64297,-0.04400,2.01943,0.00350
+2.02344,1.12003,-1.45759,-1.64348,-0.04329,2.01974,0.00350
+2.02498,1.11971,-1.45779,-1.64398,-0.04259,2.02005,0.00350
+2.02653,1.11940,-1.45798,-1.64447,-0.04191,2.02035,0.00349
+2.02807,1.11910,-1.45818,-1.64495,-0.04123,2.02064,0.00349
+2.02961,1.11880,-1.45837,-1.64542,-0.04057,2.02093,0.00349
+2.03115,1.11850,-1.45856,-1.64589,-0.03992,2.02122,0.00349
+2.03270,1.11821,-1.45874,-1.64634,-0.03928,2.02150,0.00349
+2.03424,1.11793,-1.45892,-1.64679,-0.03865,2.02178,0.00349
+2.03578,1.11765,-1.45910,-1.64723,-0.03803,2.02205,0.00349
+2.03732,1.11737,-1.45927,-1.64766,-0.03743,2.02231,0.00348
+2.03886,1.11710,-1.45944,-1.64809,-0.03683,2.02257,0.00348
+2.04041,1.11684,-1.45961,-1.64850,-0.03624,2.02283,0.00348
+2.04195,1.11658,-1.45978,-1.64891,-0.03567,2.02308,0.00348
+2.04349,1.11632,-1.45994,-1.64931,-0.03510,2.02333,0.00348
+2.04503,1.11607,-1.46010,-1.64971,-0.03455,2.02358,0.00348
+2.04658,1.11583,-1.46026,-1.65010,-0.03400,2.02382,0.00348
+2.04812,1.11558,-1.46041,-1.65048,-0.03346,2.02405,0.00348
+2.04966,1.11534,-1.46057,-1.65085,-0.03294,2.02428,0.00348
+2.05120,1.11511,-1.46072,-1.65122,-0.03242,2.02451,0.00348
+2.05275,1.11488,-1.46086,-1.65158,-0.03191,2.02474,0.00348
+2.05429,1.11465,-1.46101,-1.65193,-0.03141,2.02496,0.00348
+2.05583,1.11443,-1.46115,-1.65228,-0.03092,2.02517,0.00348
+2.05737,1.11421,-1.46129,-1.65262,-0.03044,2.02538,0.00348
+2.05891,1.11400,-1.46143,-1.65295,-0.02996,2.02559,0.00348
+2.06046,1.11379,-1.46156,-1.65328,-0.02950,2.02580,0.00348
+2.06200,1.11358,-1.46169,-1.65361,-0.02904,2.02600,0.00348
+2.06354,1.11338,-1.46182,-1.65392,-0.02859,2.02620,0.00348
+2.06508,1.11318,-1.46195,-1.65424,-0.02815,2.02639,0.00348
+2.06663,1.11302,-1.46205,-1.65449,-0.02780,2.02655,0.00348
+2.06817,1.11280,-1.46219,-1.65484,-0.02731,2.02676,0.00348
+2.06971,1.11259,-1.46233,-1.65518,-0.02682,2.02696,0.00348
+2.07125,1.11239,-1.46246,-1.65552,-0.02635,2.02716,0.00348
+2.07279,1.11218,-1.46259,-1.65585,-0.02589,2.02736,0.00348
+2.07434,1.11198,-1.46272,-1.65617,-0.02543,2.02756,0.00348
+2.07588,1.11179,-1.46284,-1.65649,-0.02498,2.02775,0.00348
+2.07742,1.11160,-1.46297,-1.65681,-0.02454,2.02793,0.00348
+2.07896,1.11149,-1.46304,-1.65696,-0.02432,2.02804,0.00348
+2.08051,1.11101,-1.46338,-1.65757,-0.02338,2.02851,0.00347
+2.08205,1.11053,-1.46371,-1.65816,-0.02246,2.02897,0.00347
+2.08359,1.11007,-1.46404,-1.65875,-0.02155,2.02942,0.00347
+2.08513,1.10961,-1.46436,-1.65932,-0.02066,2.02986,0.00346
+2.08667,1.10916,-1.46467,-1.65988,-0.01979,2.03030,0.00346
+2.08822,1.10872,-1.46498,-1.66043,-0.01893,2.03073,0.00346
+2.08976,1.10829,-1.46529,-1.66097,-0.01809,2.03115,0.00345
+2.09130,1.10787,-1.46559,-1.66150,-0.01726,2.03157,0.00345
+2.09284,1.10745,-1.46589,-1.66202,-0.01644,2.03197,0.00345
+2.09439,1.10704,-1.46618,-1.66253,-0.01564,2.03237,0.00344
+2.09593,1.10663,-1.46646,-1.66304,-0.01486,2.03277,0.00344
+2.09747,1.10624,-1.46674,-1.66353,-0.01408,2.03315,0.00344
+2.09901,1.10585,-1.46702,-1.66401,-0.01333,2.03353,0.00344
+2.10056,1.10547,-1.46729,-1.66449,-0.01258,2.03391,0.00343
+2.10210,1.10509,-1.46756,-1.66495,-0.01185,2.03427,0.00343
+2.10364,1.10472,-1.46782,-1.66541,-0.01113,2.03463,0.00343
+2.10518,1.10436,-1.46808,-1.66586,-0.01042,2.03499,0.00343
+2.10672,1.10400,-1.46834,-1.66630,-0.00973,2.03534,0.00343
+2.10827,1.10365,-1.46859,-1.66673,-0.00905,2.03568,0.00342
+2.10981,1.10331,-1.46883,-1.66715,-0.00838,2.03601,0.00342
+2.11135,1.10297,-1.46907,-1.66757,-0.00772,2.03635,0.00342
+2.11289,1.10264,-1.46931,-1.66798,-0.00707,2.03667,0.00342
+2.11444,1.10231,-1.46955,-1.66838,-0.00644,2.03699,0.00342
+2.11598,1.10199,-1.46978,-1.66877,-0.00581,2.03730,0.00342
+2.11752,1.10167,-1.47000,-1.66916,-0.00520,2.03761,0.00342
+2.11906,1.10137,-1.47022,-1.66954,-0.00459,2.03792,0.00342
+2.12060,1.10106,-1.47044,-1.66991,-0.00400,2.03821,0.00342
+2.12215,1.10076,-1.47066,-1.67028,-0.00342,2.03851,0.00341
+2.12369,1.10047,-1.47087,-1.67063,-0.00285,2.03879,0.00341
+2.12523,1.10018,-1.47108,-1.67099,-0.00229,2.03908,0.00341
+2.12677,1.09990,-1.47128,-1.67133,-0.00174,2.03935,0.00341
+2.12832,1.09962,-1.47148,-1.67167,-0.00119,2.03963,0.00341
+2.12986,1.09934,-1.47168,-1.67200,-0.00066,2.03990,0.00341
+2.13140,1.09908,-1.47187,-1.67233,-0.00014,2.04016,0.00341
+2.13294,1.09881,-1.47206,-1.67265,0.00037,2.04042,0.00341
+2.13448,1.09855,-1.47225,-1.67297,0.00088,2.04067,0.00341
+2.13603,1.09830,-1.47243,-1.67328,0.00138,2.04093,0.00341
+2.13757,1.09805,-1.47261,-1.67358,0.00186,2.04117,0.00341
+2.13911,1.09780,-1.47279,-1.67388,0.00234,2.04141,0.00341
+2.14065,1.09756,-1.47296,-1.67417,0.00281,2.04165,0.00341
+2.14220,1.09732,-1.47313,-1.67446,0.00327,2.04189,0.00341
+2.14374,1.09709,-1.47330,-1.67474,0.00373,2.04212,0.00341
+2.14528,1.09686,-1.47347,-1.67502,0.00417,2.04234,0.00341
+2.14682,1.09663,-1.47363,-1.67529,0.00461,2.04256,0.00341
+2.14837,1.09641,-1.47379,-1.67556,0.00504,2.04278,0.00341
+2.14991,1.09630,-1.47387,-1.67570,0.00526,2.04289,0.00341
+2.15145,1.09606,-1.47404,-1.67600,0.00574,2.04312,0.00341
+2.15299,1.09583,-1.47421,-1.67630,0.00621,2.04335,0.00341
+2.15453,1.09560,-1.47438,-1.67660,0.00668,2.04358,0.00341
+2.15608,1.09538,-1.47454,-1.67689,0.00713,2.04380,0.00341
+2.15762,1.09516,-1.47470,-1.67717,0.00758,2.04401,0.00341
+2.15916,1.09494,-1.47486,-1.67745,0.00802,2.04422,0.00341
+2.16070,1.09473,-1.47502,-1.67773,0.00845,2.04443,0.00341
+2.16225,1.09465,-1.47508,-1.67783,0.00862,2.04452,0.00341
+2.16379,1.09423,-1.47540,-1.67831,0.00942,2.04492,0.00341
+2.16533,1.09382,-1.47572,-1.67879,0.01021,2.04533,0.00341
+2.16687,1.09341,-1.47603,-1.67925,0.01099,2.04572,0.00341
+2.16841,1.09301,-1.47634,-1.67971,0.01175,2.04611,0.00340
+2.16996,1.09262,-1.47664,-1.68016,0.01250,2.04649,0.00340
+2.17150,1.09224,-1.47694,-1.68059,0.01323,2.04687,0.00340
+2.17304,1.09186,-1.47723,-1.68103,0.01395,2.04723,0.00339
+2.17458,1.09150,-1.47752,-1.68145,0.01466,2.04760,0.00339
+2.17613,1.09113,-1.47780,-1.68186,0.01536,2.04795,0.00339
+2.17767,1.09077,-1.47808,-1.68227,0.01604,2.04830,0.00339
+2.17921,1.09042,-1.47835,-1.68267,0.01672,2.04865,0.00339
+2.18075,1.09008,-1.47862,-1.68306,0.01738,2.04898,0.00339
+2.18229,1.08974,-1.47888,-1.68345,0.01803,2.04931,0.00338
+2.18384,1.08941,-1.47914,-1.68383,0.01866,2.04964,0.00338
+2.18538,1.08908,-1.47939,-1.68420,0.01929,2.04996,0.00338
+2.18692,1.08876,-1.47965,-1.68456,0.01991,2.05028,0.00338
+2.18846,1.08844,-1.47989,-1.68492,0.02051,2.05059,0.00338
+2.19001,1.08813,-1.48013,-1.68527,0.02110,2.05089,0.00338
+2.19155,1.08783,-1.48037,-1.68561,0.02169,2.05119,0.00338
+2.19309,1.08753,-1.48061,-1.68595,0.02226,2.05148,0.00338
+2.19463,1.08724,-1.48084,-1.68628,0.02282,2.05177,0.00337
+2.19618,1.08695,-1.48106,-1.68661,0.02338,2.05206,0.00337
+2.19772,1.08666,-1.48128,-1.68693,0.02392,2.05234,0.00337
+2.19926,1.08639,-1.48150,-1.68724,0.02445,2.05261,0.00337
+2.20080,1.08611,-1.48172,-1.68755,0.02498,2.05288,0.00337
+2.20234,1.08584,-1.48193,-1.68785,0.02549,2.05314,0.00337
+2.20389,1.08558,-1.48214,-1.68815,0.02600,2.05340,0.00337
+2.20543,1.08532,-1.48234,-1.68844,0.02650,2.05366,0.00337
+2.20697,1.08506,-1.48254,-1.68873,0.02699,2.05391,0.00337
+2.20851,1.08481,-1.48274,-1.68901,0.02747,2.05416,0.00337
+2.21006,1.08456,-1.48293,-1.68928,0.02794,2.05440,0.00337
+2.21160,1.08432,-1.48312,-1.68955,0.02840,2.05464,0.00337
+2.21314,1.08408,-1.48331,-1.68982,0.02886,2.05488,0.00337
+2.21468,1.08385,-1.48349,-1.69008,0.02930,2.05511,0.00337
+2.21622,1.08362,-1.48367,-1.69033,0.02974,2.05533,0.00337
+2.21777,1.08339,-1.48385,-1.69058,0.03017,2.05556,0.00337
+2.21931,1.08316,-1.48403,-1.69084,0.03062,2.05579,0.00337
+2.22085,1.08283,-1.48430,-1.69118,0.03122,2.05611,0.00337
+2.22239,1.08250,-1.48456,-1.69151,0.03182,2.05643,0.00337
+2.22394,1.08218,-1.48482,-1.69184,0.03241,2.05674,0.00337
+2.22548,1.08187,-1.48508,-1.69216,0.03298,2.05705,0.00337
+2.22702,1.08156,-1.48533,-1.69247,0.03355,2.05736,0.00336
+2.22856,1.08126,-1.48557,-1.69278,0.03410,2.05766,0.00336
+2.23010,1.08096,-1.48581,-1.69309,0.03465,2.05795,0.00336
+2.23165,1.08067,-1.48605,-1.69338,0.03519,2.05824,0.00336
+2.23319,1.08038,-1.48628,-1.69368,0.03571,2.05852,0.00336
+2.23473,1.08010,-1.48651,-1.69396,0.03623,2.05880,0.00336
+2.23627,1.07982,-1.48674,-1.69424,0.03674,2.05907,0.00336
+2.23782,1.07954,-1.48696,-1.69452,0.03724,2.05934,0.00336
+2.23936,1.07928,-1.48718,-1.69479,0.03773,2.05960,0.00336
+2.24090,1.07901,-1.48739,-1.69505,0.03821,2.05986,0.00336
+2.24244,1.07875,-1.48760,-1.69532,0.03869,2.06012,0.00336
+2.24399,1.07850,-1.48781,-1.69557,0.03915,2.06037,0.00336
+2.24553,1.07825,-1.48801,-1.69582,0.03961,2.06062,0.00336
+2.24707,1.07800,-1.48821,-1.69607,0.04006,2.06086,0.00336
+2.24861,1.07776,-1.48841,-1.69631,0.04050,2.06110,0.00336
+2.25015,1.07752,-1.48860,-1.69655,0.04093,2.06133,0.00336
+2.25170,1.07729,-1.48879,-1.69678,0.04136,2.06156,0.00336
+2.25324,1.07706,-1.48898,-1.69702,0.04179,2.06179,0.00336
+2.25478,1.07679,-1.48921,-1.69735,0.04234,2.06205,0.00336
+2.25632,1.07653,-1.48942,-1.69768,0.04289,2.06230,0.00335
+2.25787,1.07628,-1.48964,-1.69800,0.04342,2.06256,0.00335
+2.25941,1.07603,-1.48985,-1.69831,0.04395,2.06280,0.00335
+2.26095,1.07578,-1.49006,-1.69862,0.04446,2.06304,0.00335
+2.26249,1.07554,-1.49026,-1.69892,0.04497,2.06328,0.00335
+2.26403,1.07530,-1.49046,-1.69922,0.04547,2.06351,0.00335
+2.26558,1.07507,-1.49066,-1.69951,0.04596,2.06374,0.00335
+2.26712,1.07484,-1.49085,-1.69980,0.04644,2.06397,0.00335
+2.26866,1.07462,-1.49104,-1.70008,0.04691,2.06419,0.00335
+2.27020,1.07439,-1.49123,-1.70035,0.04738,2.06441,0.00335
+2.27175,1.07418,-1.49141,-1.70062,0.04783,2.06462,0.00335
+2.27329,1.07396,-1.49159,-1.70089,0.04828,2.06484,0.00335
+2.27483,1.07375,-1.49177,-1.70115,0.04872,2.06504,0.00335
+2.27637,1.07355,-1.49194,-1.70140,0.04915,2.06525,0.00335
+2.27791,1.07345,-1.49203,-1.70152,0.04935,2.06534,0.00335
+2.27946,1.07308,-1.49235,-1.70192,0.05007,2.06570,0.00334
+2.28100,1.07272,-1.49266,-1.70231,0.05078,2.06606,0.00334
+2.28254,1.07236,-1.49297,-1.70269,0.05147,2.06641,0.00334
+2.28408,1.07201,-1.49328,-1.70307,0.05215,2.06675,0.00334
+2.28563,1.07167,-1.49358,-1.70344,0.05282,2.06709,0.00333
+2.28717,1.07133,-1.49387,-1.70380,0.05348,2.06742,0.00333
+2.28871,1.07100,-1.49416,-1.70416,0.05412,2.06775,0.00333
+2.29025,1.07067,-1.49445,-1.70451,0.05476,2.06807,0.00333
+2.29180,1.07035,-1.49473,-1.70485,0.05538,2.06838,0.00333
+2.29334,1.07004,-1.49501,-1.70519,0.05599,2.06869,0.00332
+2.29488,1.06973,-1.49528,-1.70552,0.05659,2.06899,0.00332
+2.29642,1.06942,-1.49554,-1.70584,0.05718,2.06929,0.00332
+2.29796,1.06912,-1.49581,-1.70616,0.05776,2.06958,0.00332
+2.29951,1.06883,-1.49606,-1.70647,0.05833,2.06987,0.00332
+2.30105,1.06854,-1.49632,-1.70678,0.05889,2.07016,0.00332
+2.30259,1.06826,-1.49656,-1.70708,0.05944,2.07043,0.00331
+2.30413,1.06798,-1.49681,-1.70737,0.05998,2.07071,0.00331
+2.30568,1.06771,-1.49705,-1.70766,0.06051,2.07098,0.00331
+2.30722,1.06744,-1.49728,-1.70794,0.06103,2.07124,0.00331
+2.30876,1.06717,-1.49752,-1.70822,0.06154,2.07150,0.00331
+2.31030,1.06692,-1.49774,-1.70850,0.06205,2.07176,0.00331
+2.31184,1.06666,-1.49797,-1.70876,0.06254,2.07201,0.00331
+2.31339,1.06641,-1.49819,-1.70903,0.06303,2.07225,0.00331
+2.31493,1.06616,-1.49841,-1.70929,0.06350,2.07250,0.00331
+2.31647,1.06592,-1.49862,-1.70954,0.06397,2.07273,0.00331
+2.31801,1.06569,-1.49883,-1.70979,0.06443,2.07297,0.00331
+2.31956,1.06545,-1.49903,-1.71003,0.06488,2.07320,0.00331
+2.32110,1.06522,-1.49923,-1.71027,0.06533,2.07342,0.00331
+2.32264,1.06500,-1.49943,-1.71051,0.06576,2.07365,0.00331
+2.32418,1.06478,-1.49963,-1.71074,0.06619,2.07386,0.00331
+2.32572,1.06458,-1.49980,-1.71095,0.06657,2.07406,0.00331
+2.32727,1.06435,-1.50001,-1.71117,0.06701,2.07429,0.00331
+2.32881,1.06412,-1.50021,-1.71140,0.06744,2.07451,0.00331
+2.33035,1.06389,-1.50040,-1.71162,0.06786,2.07473,0.00331
+2.33189,1.06382,-1.50047,-1.71170,0.06800,2.07480,0.00331
+2.33344,1.06357,-1.50070,-1.71201,0.06855,2.07506,0.00330
+2.33498,1.06331,-1.50094,-1.71233,0.06910,2.07531,0.00330
+2.33652,1.06306,-1.50116,-1.71263,0.06963,2.07555,0.00330
+2.33806,1.06282,-1.50139,-1.71294,0.07016,2.07579,0.00330
+2.33961,1.06258,-1.50161,-1.71323,0.07068,2.07603,0.00330
+2.34115,1.06234,-1.50182,-1.71352,0.07118,2.07626,0.00330
+2.34269,1.06211,-1.50204,-1.71381,0.07168,2.07648,0.00330
+2.34423,1.06189,-1.50224,-1.71409,0.07217,2.07671,0.00330
+2.34577,1.06166,-1.50245,-1.71436,0.07265,2.07693,0.00330
+2.34732,1.06144,-1.50265,-1.71463,0.07313,2.07714,0.00330
+2.34886,1.06123,-1.50285,-1.71490,0.07359,2.07736,0.00330
+2.35040,1.06101,-1.50304,-1.71515,0.07405,2.07757,0.00330
+2.35194,1.06081,-1.50324,-1.71541,0.07450,2.07777,0.00330
+2.35349,1.06060,-1.50342,-1.71566,0.07494,2.07797,0.00330
+2.35503,1.06040,-1.50361,-1.71591,0.07537,2.07817,0.00329
+2.35657,1.06034,-1.50366,-1.71598,0.07550,2.07823,0.00329
+2.35811,1.06013,-1.50386,-1.71621,0.07592,2.07844,0.00329
+2.35965,1.06008,-1.50390,-1.71626,0.07601,2.07849,0.00329
+2.36120,1.05987,-1.50410,-1.71653,0.07649,2.07869,0.00329
+2.36274,1.05966,-1.50429,-1.71680,0.07696,2.07890,0.00329
+2.36428,1.05946,-1.50448,-1.71707,0.07741,2.07910,0.00329
+2.36582,1.05926,-1.50467,-1.71733,0.07787,2.07929,0.00329
+2.36737,1.05906,-1.50485,-1.71759,0.07831,2.07949,0.00329
+2.36891,1.05887,-1.50503,-1.71784,0.07874,2.07968,0.00329
+2.37045,1.05881,-1.50509,-1.71792,0.07887,2.07973,0.00329
+2.37199,1.05862,-1.50526,-1.71819,0.07932,2.07992,0.00329
+2.37353,1.05844,-1.50544,-1.71845,0.07976,2.08010,0.00329
+2.37508,1.05840,-1.50547,-1.71850,0.07985,2.08014,0.00329
+2.37662,1.05822,-1.50565,-1.71877,0.08029,2.08032,0.00329
+2.37816,1.05804,-1.50582,-1.71904,0.08073,2.08050,0.00329
+2.37970,1.05805,-1.50582,-1.71912,0.08081,2.08049,0.00329
+2.38125,1.05819,-1.50571,-1.71938,0.08097,2.08035,0.00329
+2.38279,1.05878,-1.50524,-1.72001,0.08113,2.07977,0.00330
+2.38433,1.05936,-1.50477,-1.72063,0.08129,2.07920,0.00330
+2.38587,1.05994,-1.50432,-1.72123,0.08144,2.07864,0.00331
+2.38742,1.06050,-1.50387,-1.72183,0.08159,2.07809,0.00331
+2.38896,1.06105,-1.50343,-1.72241,0.08174,2.07755,0.00332
+2.39050,1.06160,-1.50299,-1.72299,0.08189,2.07701,0.00332
+2.39204,1.06213,-1.50257,-1.72355,0.08203,2.07648,0.00333
+2.39358,1.06266,-1.50215,-1.72411,0.08217,2.07597,0.00333
+2.39513,1.06318,-1.50173,-1.72465,0.08231,2.07546,0.00334
+2.39667,1.06369,-1.50133,-1.72519,0.08245,2.07495,0.00334
+2.39821,1.06419,-1.50093,-1.72572,0.08258,2.07446,0.00335
+2.39975,1.06469,-1.50054,-1.72624,0.08271,2.07397,0.00335
+2.40130,1.06518,-1.50015,-1.72675,0.08284,2.07349,0.00336
+2.40284,1.06566,-1.49977,-1.72725,0.08297,2.07302,0.00336
+2.40438,1.06613,-1.49940,-1.72774,0.08309,2.07256,0.00337
+2.40592,1.06659,-1.49904,-1.72823,0.08322,2.07210,0.00337
+2.40746,1.06705,-1.49868,-1.72870,0.08334,2.07165,0.00338
+2.40901,1.06750,-1.49832,-1.72917,0.08346,2.07121,0.00338
+2.41055,1.06794,-1.49797,-1.72963,0.08357,2.07077,0.00338
+2.41209,1.06837,-1.49763,-1.73009,0.08369,2.07034,0.00339
+2.41363,1.06880,-1.49729,-1.73053,0.08380,2.06992,0.00339
+2.41518,1.06922,-1.49696,-1.73097,0.08391,2.06951,0.00340
+2.41672,1.06964,-1.49664,-1.73140,0.08402,2.06910,0.00340
+2.41826,1.07005,-1.49632,-1.73182,0.08413,2.06869,0.00340
+2.41980,1.07045,-1.49601,-1.73224,0.08424,2.06830,0.00341
+2.42134,1.07084,-1.49570,-1.73265,0.08434,2.06791,0.00341
+2.42289,1.07123,-1.49539,-1.73305,0.08444,2.06752,0.00341
+2.42443,1.07136,-1.49529,-1.73318,0.08447,2.06740,0.00342
+2.42597,1.07187,-1.49489,-1.73362,0.08452,2.06690,0.00342
+2.42751,1.07237,-1.49449,-1.73406,0.08456,2.06640,0.00342
+2.42906,1.07286,-1.49411,-1.73449,0.08461,2.06592,0.00343
+2.43060,1.07334,-1.49372,-1.73492,0.08465,2.06544,0.00343
+2.43214,1.07382,-1.49335,-1.73533,0.08470,2.06497,0.00344
+2.43368,1.07428,-1.49298,-1.73574,0.08474,2.06451,0.00344
+2.43523,1.07475,-1.49262,-1.73614,0.08479,2.06405,0.00345
+2.43677,1.07520,-1.49226,-1.73654,0.08483,2.06360,0.00345
+2.43831,1.07565,-1.49191,-1.73693,0.08487,2.06316,0.00345
+2.43985,1.07608,-1.49157,-1.73731,0.08491,2.06273,0.00346
+2.44139,1.07652,-1.49123,-1.73769,0.08495,2.06230,0.00346
+2.44294,1.07694,-1.49090,-1.73806,0.08499,2.06188,0.00346
+2.44448,1.07736,-1.49057,-1.73842,0.08503,2.06147,0.00347
+2.44602,1.07777,-1.49025,-1.73878,0.08507,2.06106,0.00347
+2.44756,1.07818,-1.48992,-1.73913,0.08510,2.06065,0.00347
+2.44911,1.07867,-1.48954,-1.73951,0.08509,2.06016,0.00348
+2.45065,1.07916,-1.48916,-1.73987,0.08508,2.05968,0.00348
+2.45219,1.07963,-1.48878,-1.74023,0.08507,2.05922,0.00349
+2.45373,1.08010,-1.48841,-1.74058,0.08506,2.05875,0.00349
+2.45527,1.08056,-1.48805,-1.74093,0.08505,2.05830,0.00349
+2.45682,1.08101,-1.48770,-1.74127,0.08504,2.05785,0.00350
+2.45836,1.08146,-1.48735,-1.74161,0.08503,2.05741,0.00350
+2.45990,1.08189,-1.48701,-1.74194,0.08502,2.05697,0.00350
+2.46144,1.08232,-1.48667,-1.74226,0.08501,2.05655,0.00351
+2.46299,1.08275,-1.48634,-1.74258,0.08500,2.05613,0.00351
+2.46453,1.08316,-1.48601,-1.74290,0.08499,2.05571,0.00351
+2.46607,1.08337,-1.48585,-1.74303,0.08496,2.05551,0.00352
+2.46761,1.08421,-1.48518,-1.74342,0.08469,2.05469,0.00352
+2.46915,1.08503,-1.48452,-1.74380,0.08442,2.05388,0.00353
+2.47070,1.08583,-1.48387,-1.74418,0.08415,2.05308,0.00354
+2.47224,1.08663,-1.48324,-1.74455,0.08390,2.05230,0.00354
+2.47378,1.08741,-1.48262,-1.74491,0.08364,2.05153,0.00355
+2.47532,1.08818,-1.48200,-1.74527,0.08339,2.05077,0.00356
+2.47687,1.08894,-1.48140,-1.74562,0.08314,2.05002,0.00356
+2.47841,1.08968,-1.48081,-1.74597,0.08290,2.04928,0.00357
+2.47995,1.09042,-1.48023,-1.74631,0.08266,2.04856,0.00357
+2.48149,1.09114,-1.47966,-1.74664,0.08243,2.04784,0.00358
+2.48304,1.09185,-1.47910,-1.74697,0.08220,2.04714,0.00358
+2.48458,1.09255,-1.47854,-1.74729,0.08198,2.04645,0.00359
+2.48612,1.09324,-1.47800,-1.74761,0.08175,2.04576,0.00359
+2.48766,1.09392,-1.47747,-1.74792,0.08154,2.04509,0.00360
+2.48920,1.09459,-1.47695,-1.74822,0.08132,2.04443,0.00360
+2.49075,1.09524,-1.47643,-1.74853,0.08111,2.04378,0.00361
+2.49229,1.09589,-1.47593,-1.74882,0.08091,2.04314,0.00361
+2.49383,1.09653,-1.47543,-1.74911,0.08070,2.04251,0.00362
+2.49537,1.09715,-1.47494,-1.74940,0.08050,2.04189,0.00362
+2.49692,1.09777,-1.47447,-1.74968,0.08031,2.04128,0.00363
+2.49846,1.09837,-1.47399,-1.74995,0.08011,2.04068,0.00363
+2.50000,1.09897,-1.47353,-1.75022,0.07993,2.04009,0.00363
+2.50154,1.09956,-1.47308,-1.75049,0.07974,2.03951,0.00364
+2.50308,1.10014,-1.47263,-1.75075,0.07956,2.03893,0.00364
+2.50463,1.10070,-1.47219,-1.75101,0.07938,2.03837,0.00365
+2.50617,1.10126,-1.47176,-1.75126,0.07920,2.03781,0.00365
+2.50771,1.10181,-1.47134,-1.75151,0.07903,2.03726,0.00365
+2.50925,1.10236,-1.47092,-1.75176,0.07886,2.03673,0.00366
+2.51080,1.10289,-1.47051,-1.75200,0.07869,2.03620,0.00366
+2.51234,1.10341,-1.47011,-1.75224,0.07853,2.03567,0.00366
+2.51388,1.10393,-1.46971,-1.75247,0.07837,2.03516,0.00367
+2.51542,1.10444,-1.46933,-1.75270,0.07821,2.03466,0.00367
+2.51696,1.10494,-1.46894,-1.75292,0.07805,2.03416,0.00367
+2.51851,1.10543,-1.46857,-1.75315,0.07790,2.03367,0.00367
+2.52005,1.10591,-1.46820,-1.75336,0.07775,2.03319,0.00368
+2.52159,1.10639,-1.46784,-1.75358,0.07760,2.03271,0.00368
+2.52313,1.10686,-1.46748,-1.75379,0.07746,2.03224,0.00368
+2.52468,1.10732,-1.46713,-1.75399,0.07731,2.03178,0.00368
+2.52622,1.10777,-1.46679,-1.75420,0.07717,2.03133,0.00369
+2.52776,1.10822,-1.46645,-1.75440,0.07704,2.03089,0.00369
+2.52930,1.10866,-1.46612,-1.75460,0.07690,2.03045,0.00369
+2.53085,1.10909,-1.46579,-1.75479,0.07677,2.03002,0.00369
+2.53239,1.10940,-1.46556,-1.75493,0.07667,2.02971,0.00370
+2.53393,1.10996,-1.46513,-1.75514,0.07647,2.02916,0.00370
+2.53547,1.11050,-1.46472,-1.75536,0.07627,2.02861,0.00370
+2.53701,1.11104,-1.46431,-1.75556,0.07607,2.02808,0.00371
+2.53856,1.11157,-1.46392,-1.75577,0.07588,2.02756,0.00371
+2.54010,1.11209,-1.46352,-1.75597,0.07569,2.02704,0.00371
+2.54164,1.11260,-1.46314,-1.75617,0.07550,2.02653,0.00371
+2.54318,1.11310,-1.46276,-1.75637,0.07532,2.02603,0.00372
+2.54473,1.11360,-1.46239,-1.75656,0.07514,2.02554,0.00372
+2.54627,1.11408,-1.46202,-1.75675,0.07496,2.02505,0.00372
+2.54781,1.11456,-1.46166,-1.75693,0.07479,2.02457,0.00372
+2.54935,1.11504,-1.46131,-1.75712,0.07462,2.02410,0.00373
+2.55089,1.11550,-1.46096,-1.75730,0.07445,2.02364,0.00373
+2.55244,1.11596,-1.46062,-1.75747,0.07429,2.02319,0.00373
+2.55398,1.11641,-1.46028,-1.75765,0.07412,2.02274,0.00373
+2.55552,1.11685,-1.45995,-1.75782,0.07397,2.02230,0.00374
+2.55706,1.11728,-1.45963,-1.75799,0.07381,2.02186,0.00374
+2.55861,1.11775,-1.45928,-1.75816,0.07363,2.02140,0.00374
+2.56015,1.11856,-1.45867,-1.75837,0.07324,2.02060,0.00374
+2.56169,1.11935,-1.45807,-1.75858,0.07285,2.01981,0.00375
+2.56323,1.12013,-1.45748,-1.75878,0.07246,2.01904,0.00375
+2.56477,1.12090,-1.45690,-1.75899,0.07209,2.01828,0.00376
+2.56632,1.12166,-1.45633,-1.75918,0.07172,2.01753,0.00376
+2.56786,1.12240,-1.45577,-1.75938,0.07136,2.01679,0.00377
+2.56940,1.12314,-1.45522,-1.75957,0.07100,2.01606,0.00377
+2.57094,1.12386,-1.45468,-1.75976,0.07065,2.01535,0.00378
+2.57249,1.12457,-1.45415,-1.75994,0.07031,2.01464,0.00378
+2.57403,1.12527,-1.45363,-1.76012,0.06997,2.01395,0.00379
+2.57557,1.12596,-1.45312,-1.76030,0.06964,2.01327,0.00379
+2.57711,1.12664,-1.45262,-1.76048,0.06931,2.01260,0.00379
+2.57866,1.12730,-1.45212,-1.76065,0.06899,2.01193,0.00380
+2.58020,1.12796,-1.45164,-1.76082,0.06867,2.01128,0.00380
+2.58174,1.12861,-1.45116,-1.76098,0.06836,2.01064,0.00380
+2.58328,1.12924,-1.45069,-1.76115,0.06806,2.01001,0.00381
+2.58482,1.12987,-1.45023,-1.76131,0.06776,2.00939,0.00381
+2.58637,1.13048,-1.44978,-1.76147,0.06747,2.00878,0.00381
+2.58791,1.13109,-1.44934,-1.76162,0.06718,2.00817,0.00382
+2.58945,1.13169,-1.44890,-1.76178,0.06689,2.00758,0.00382
+2.59099,1.13227,-1.44847,-1.76193,0.06662,2.00700,0.00382
+2.59254,1.13285,-1.44805,-1.76207,0.06634,2.00642,0.00382
+2.59408,1.13342,-1.44764,-1.76222,0.06607,2.00586,0.00383
+2.59562,1.13398,-1.44723,-1.76236,0.06581,2.00530,0.00383
+2.59716,1.13453,-1.44683,-1.76250,0.06555,2.00475,0.00383
+2.59870,1.13507,-1.44644,-1.76264,0.06529,2.00421,0.00383
+2.60025,1.13560,-1.44605,-1.76278,0.06504,2.00368,0.00384
+2.60179,1.13613,-1.44568,-1.76291,0.06480,2.00316,0.00384
+2.60333,1.13665,-1.44530,-1.76304,0.06456,2.00264,0.00384
+2.60487,1.13715,-1.44494,-1.76317,0.06432,2.00214,0.00384
+2.60642,1.13765,-1.44458,-1.76330,0.06408,2.00164,0.00384
+2.60796,1.13815,-1.44422,-1.76342,0.06385,2.00115,0.00385
+2.60950,1.13863,-1.44388,-1.76354,0.06363,2.00066,0.00385
+2.61104,1.13911,-1.44354,-1.76367,0.06341,2.00019,0.00385
+2.61258,1.13958,-1.44320,-1.76378,0.06319,1.99972,0.00385
+2.61413,1.14004,-1.44287,-1.76390,0.06298,1.99926,0.00385
+2.61567,1.14049,-1.44255,-1.76402,0.06277,1.99881,0.00385
+2.61721,1.14094,-1.44223,-1.76413,0.06256,1.99836,0.00386
+2.61875,1.14138,-1.44192,-1.76424,0.06236,1.99792,0.00386
+2.62030,1.14181,-1.44161,-1.76435,0.06216,1.99749,0.00386
+2.62184,1.14191,-1.44154,-1.76437,0.06211,1.99739,0.00386
+2.62338,1.14243,-1.44117,-1.76450,0.06187,1.99687,0.00386
+2.62492,1.14294,-1.44080,-1.76463,0.06162,1.99636,0.00386
+2.62647,1.14345,-1.44044,-1.76475,0.06139,1.99585,0.00386
+2.62801,1.14395,-1.44009,-1.76487,0.06115,1.99536,0.00387
+2.62955,1.14444,-1.43974,-1.76499,0.06092,1.99487,0.00387
+2.63109,1.14492,-1.43940,-1.76510,0.06069,1.99438,0.00387
+2.63263,1.14540,-1.43907,-1.76522,0.06047,1.99391,0.00387
+2.63418,1.14586,-1.43874,-1.76533,0.06025,1.99344,0.00387
+2.63572,1.14632,-1.43841,-1.76544,0.06004,1.99298,0.00387
+2.63726,1.14678,-1.43809,-1.76555,0.05983,1.99253,0.00388
+2.63880,1.14722,-1.43778,-1.76566,0.05962,1.99209,0.00388
+2.64035,1.14766,-1.43747,-1.76577,0.05942,1.99165,0.00388
+2.64189,1.14801,-1.43723,-1.76584,0.05925,1.99130,0.00388
+2.64343,1.14887,-1.43661,-1.76597,0.05876,1.99045,0.00389
+2.64497,1.14972,-1.43600,-1.76609,0.05827,1.98961,0.00389
+2.64651,1.15056,-1.43541,-1.76621,0.05780,1.98878,0.00389
+2.64806,1.15139,-1.43482,-1.76632,0.05733,1.98796,0.00390
+2.64960,1.15220,-1.43424,-1.76644,0.05687,1.98716,0.00390
+2.65114,1.15300,-1.43368,-1.76655,0.05642,1.98636,0.00391
+2.65268,1.15379,-1.43312,-1.76666,0.05597,1.98559,0.00391
+2.65423,1.15456,-1.43258,-1.76677,0.05554,1.98482,0.00392
+2.65577,1.15533,-1.43204,-1.76688,0.05511,1.98406,0.00392
+2.65731,1.15608,-1.43152,-1.76699,0.05469,1.98332,0.00392
+2.65885,1.15682,-1.43100,-1.76709,0.05427,1.98258,0.00393
+2.66039,1.15754,-1.43049,-1.76719,0.05387,1.98186,0.00393
+2.66194,1.15826,-1.42999,-1.76729,0.05347,1.98115,0.00393
+2.66348,1.15896,-1.42950,-1.76739,0.05308,1.98045,0.00394
+2.66502,1.15966,-1.42902,-1.76748,0.05269,1.97976,0.00394
+2.66656,1.16034,-1.42855,-1.76758,0.05231,1.97909,0.00394
+2.66811,1.16101,-1.42808,-1.76767,0.05194,1.97842,0.00394
+2.66965,1.16168,-1.42763,-1.76776,0.05157,1.97776,0.00395
+2.67119,1.16233,-1.42718,-1.76785,0.05121,1.97711,0.00395
+2.67273,1.16297,-1.42674,-1.76794,0.05086,1.97648,0.00395
+2.67428,1.16360,-1.42631,-1.76803,0.05051,1.97585,0.00396
+2.67582,1.16422,-1.42588,-1.76811,0.05017,1.97523,0.00396
+2.67736,1.16483,-1.42546,-1.76820,0.04984,1.97462,0.00396
+2.67890,1.16543,-1.42505,-1.76828,0.04951,1.97403,0.00396
+2.68044,1.16602,-1.42465,-1.76836,0.04918,1.97344,0.00396
+2.68199,1.16661,-1.42425,-1.76844,0.04887,1.97286,0.00397
+2.68353,1.16718,-1.42386,-1.76852,0.04855,1.97228,0.00397
+2.68507,1.16774,-1.42348,-1.76860,0.04825,1.97172,0.00397
+2.68661,1.16830,-1.42311,-1.76867,0.04795,1.97117,0.00397
+2.68816,1.16885,-1.42274,-1.76875,0.04765,1.97062,0.00397
+2.68970,1.16938,-1.42237,-1.76882,0.04736,1.97009,0.00398
+2.69124,1.16991,-1.42202,-1.76890,0.04707,1.96956,0.00398
+2.69278,1.17043,-1.42167,-1.76897,0.04679,1.96904,0.00398
+2.69432,1.17095,-1.42132,-1.76904,0.04652,1.96853,0.00398
+2.69587,1.17145,-1.42099,-1.76911,0.04625,1.96802,0.00398
+2.69741,1.17195,-1.42065,-1.76918,0.04598,1.96753,0.00398
+2.69895,1.17244,-1.42033,-1.76924,0.04572,1.96704,0.00398
+2.70049,1.17292,-1.42001,-1.76931,0.04546,1.96656,0.00399
+2.70204,1.17339,-1.41969,-1.76937,0.04521,1.96609,0.00399
+2.70358,1.17386,-1.41938,-1.76944,0.04496,1.96562,0.00399
+2.70512,1.17432,-1.41908,-1.76950,0.04471,1.96516,0.00399
+2.70666,1.17477,-1.41878,-1.76956,0.04448,1.96471,0.00399
+2.70820,1.17521,-1.41848,-1.76962,0.04424,1.96427,0.00399
+2.70975,1.17565,-1.41819,-1.76968,0.04400,1.96383,0.00399
+2.71129,1.17615,-1.41786,-1.76972,0.04371,1.96333,0.00399
+2.71283,1.17663,-1.41754,-1.76975,0.04342,1.96285,0.00400
+2.71437,1.17711,-1.41722,-1.76978,0.04313,1.96238,0.00400
+2.71592,1.17758,-1.41691,-1.76982,0.04285,1.96191,0.00400
+2.71746,1.17804,-1.41661,-1.76985,0.04257,1.96145,0.00400
+2.71900,1.17849,-1.41631,-1.76988,0.04230,1.96099,0.00400
+2.72054,1.17894,-1.41601,-1.76991,0.04204,1.96055,0.00400
+2.72209,1.17938,-1.41572,-1.76994,0.04178,1.96011,0.00400
+2.72363,1.17981,-1.41544,-1.76997,0.04152,1.95968,0.00400
+2.72517,1.18008,-1.41526,-1.76999,0.04136,1.95940,0.00401
+2.72671,1.18065,-1.41488,-1.77000,0.04099,1.95884,0.00401
+2.72825,1.18120,-1.41451,-1.77001,0.04063,1.95829,0.00401
+2.72980,1.18175,-1.41415,-1.77002,0.04027,1.95774,0.00401
+2.73134,1.18229,-1.41379,-1.77003,0.03992,1.95720,0.00401
+2.73288,1.18282,-1.41344,-1.77004,0.03958,1.95668,0.00402
+2.73442,1.18335,-1.41309,-1.77005,0.03924,1.95616,0.00402
+2.73597,1.18386,-1.41275,-1.77005,0.03891,1.95564,0.00402
+2.73751,1.18437,-1.41242,-1.77006,0.03858,1.95514,0.00402
+2.73905,1.18487,-1.41209,-1.77007,0.03826,1.95464,0.00402
+2.74059,1.18536,-1.41177,-1.77008,0.03795,1.95415,0.00403
+2.74213,1.18584,-1.41146,-1.77009,0.03764,1.95367,0.00403
+2.74368,1.18632,-1.41115,-1.77010,0.03734,1.95320,0.00403
+2.74522,1.18678,-1.41084,-1.77011,0.03704,1.95273,0.00403
+2.74676,1.18724,-1.41054,-1.77011,0.03674,1.95227,0.00403
+2.74830,1.18770,-1.41025,-1.77012,0.03646,1.95182,0.00403
+2.74985,1.18814,-1.40996,-1.77013,0.03617,1.95138,0.00403
+2.75139,1.18858,-1.40967,-1.77014,0.03590,1.95094,0.00403
+2.75293,1.18901,-1.40939,-1.77015,0.03562,1.95051,0.00404
+2.75447,1.18940,-1.40915,-1.77015,0.03538,1.95012,0.00404
+2.75601,1.18984,-1.40886,-1.77013,0.03507,1.94968,0.00404
+2.75756,1.19027,-1.40858,-1.77011,0.03477,1.94925,0.00404
+2.75910,1.19070,-1.40830,-1.77010,0.03447,1.94883,0.00404
+2.76064,1.19112,-1.40803,-1.77008,0.03418,1.94841,0.00404
+2.76218,1.19137,-1.40787,-1.77007,0.03401,1.94816,0.00404
+2.76373,1.19182,-1.40758,-1.77005,0.03370,1.94771,0.00404
+2.76527,1.19226,-1.40729,-1.77004,0.03340,1.94727,0.00405
+2.76681,1.19270,-1.40701,-1.77002,0.03310,1.94683,0.00405
+2.76835,1.19313,-1.40674,-1.77001,0.03281,1.94640,0.00405
+2.76990,1.19355,-1.40647,-1.76999,0.03252,1.94598,0.00405
+2.77144,1.19380,-1.40630,-1.76998,0.03235,1.94573,0.00405
+2.77298,1.19423,-1.40603,-1.76996,0.03204,1.94530,0.00405
+2.77452,1.19466,-1.40575,-1.76994,0.03175,1.94487,0.00405
+2.77606,1.19508,-1.40548,-1.76992,0.03145,1.94446,0.00405
+2.77761,1.19529,-1.40535,-1.76991,0.03131,1.94425,0.00406
+2.77915,1.19572,-1.40507,-1.76988,0.03100,1.94382,0.00406
+2.78069,1.19614,-1.40480,-1.76985,0.03070,1.94340,0.00406
+2.78223,1.19656,-1.40454,-1.76982,0.03040,1.94298,0.00406
+2.78378,1.19676,-1.40441,-1.76980,0.03026,1.94278,0.00406
+2.78532,1.19717,-1.40415,-1.76976,0.02995,1.94237,0.00406
+2.78686,1.19734,-1.40404,-1.76973,0.02982,1.94220,0.00406
+2.78840,1.19780,-1.40374,-1.76964,0.02943,1.94174,0.00406
+2.78994,1.19825,-1.40345,-1.76955,0.02904,1.94129,0.00407
+2.79149,1.19870,-1.40316,-1.76946,0.02867,1.94085,0.00407
+2.79303,1.19914,-1.40288,-1.76938,0.02830,1.94041,0.00407
+2.79457,1.19957,-1.40260,-1.76929,0.02793,1.93998,0.00407
+2.79611,1.20000,-1.40233,-1.76921,0.02758,1.93956,0.00407
+2.79766,1.20042,-1.40206,-1.76913,0.02723,1.93914,0.00407
+2.79920,1.20083,-1.40180,-1.76905,0.02688,1.93873,0.00407
+2.80074,1.20124,-1.40154,-1.76897,0.02655,1.93832,0.00408
+2.80228,1.20163,-1.40129,-1.76889,0.02621,1.93792,0.00408
+2.80382,1.20203,-1.40104,-1.76881,0.02589,1.93753,0.00408
+2.80537,1.20211,-1.40099,-1.76880,0.02582,1.93745,0.00408
+2.80691,1.20251,-1.40073,-1.76871,0.02548,1.93705,0.00408
+2.80845,1.20291,-1.40048,-1.76863,0.02514,1.93665,0.00408
+2.80999,1.20331,-1.40023,-1.76855,0.02481,1.93626,0.00408
+2.81154,1.20350,-1.40011,-1.76851,0.02464,1.93606,0.00408
+2.81308,1.20389,-1.39986,-1.76839,0.02428,1.93568,0.00409
+2.81462,1.20427,-1.39962,-1.76828,0.02392,1.93530,0.00409
+2.81616,1.20464,-1.39939,-1.76816,0.02358,1.93493,0.00409
+2.81771,1.20472,-1.39934,-1.76814,0.02350,1.93485,0.00409
+2.81925,1.20510,-1.39909,-1.76802,0.02314,1.93447,0.00409
+2.82079,1.20548,-1.39885,-1.76790,0.02278,1.93409,0.00409
+2.82233,1.20586,-1.39862,-1.76779,0.02243,1.93372,0.00409
+2.82387,1.20605,-1.39850,-1.76773,0.02225,1.93353,0.00409
+2.82542,1.20643,-1.39826,-1.76761,0.02189,1.93314,0.00409
+2.82696,1.20681,-1.39802,-1.76749,0.02153,1.93276,0.00410
+2.82850,1.20719,-1.39778,-1.76737,0.02117,1.93239,0.00410
+2.83004,1.20742,-1.39764,-1.76730,0.02095,1.93216,0.00410
+2.83159,1.20789,-1.39733,-1.76708,0.02043,1.93169,0.00410
+2.83313,1.20836,-1.39704,-1.76686,0.01992,1.93123,0.00410
+2.83467,1.20882,-1.39675,-1.76665,0.01942,1.93078,0.00410
+2.83621,1.20927,-1.39646,-1.76645,0.01893,1.93033,0.00411
+2.83775,1.20971,-1.39618,-1.76624,0.01845,1.92989,0.00411
+2.83930,1.21015,-1.39591,-1.76604,0.01797,1.92946,0.00411
+2.84084,1.21058,-1.39564,-1.76585,0.01751,1.92903,0.00411
+2.84238,1.21100,-1.39537,-1.76566,0.01705,1.92861,0.00411
+2.84392,1.21142,-1.39512,-1.76547,0.01660,1.92820,0.00412
+2.84547,1.21183,-1.39486,-1.76528,0.01616,1.92779,0.00412
+2.84701,1.21223,-1.39461,-1.76510,0.01573,1.92739,0.00412
+2.84855,1.21262,-1.39436,-1.76492,0.01530,1.92700,0.00412
+2.85009,1.21301,-1.39412,-1.76474,0.01488,1.92661,0.00412
+2.85163,1.21340,-1.39389,-1.76457,0.01447,1.92623,0.00412
+2.85318,1.21378,-1.39365,-1.76440,0.01407,1.92585,0.00413
+2.85472,1.21415,-1.39342,-1.76423,0.01367,1.92548,0.00413
+2.85626,1.21451,-1.39320,-1.76407,0.01328,1.92512,0.00413
+2.85780,1.21487,-1.39298,-1.76390,0.01289,1.92476,0.00413
+2.85935,1.21523,-1.39276,-1.76375,0.01252,1.92441,0.00413
+2.86089,1.21547,-1.39261,-1.76363,0.01225,1.92417,0.00413
+2.86243,1.21584,-1.39239,-1.76343,0.01182,1.92380,0.00413
+2.86397,1.21620,-1.39217,-1.76323,0.01140,1.92344,0.00413
+2.86552,1.21655,-1.39195,-1.76303,0.01099,1.92309,0.00413
+2.86706,1.21690,-1.39173,-1.76284,0.01058,1.92274,0.00414
+2.86860,1.21725,-1.39153,-1.76265,0.01018,1.92240,0.00414
+2.87014,1.21759,-1.39132,-1.76247,0.00979,1.92206,0.00414
+2.87168,1.21790,-1.39113,-1.76230,0.00943,1.92176,0.00414
+2.87323,1.21833,-1.39087,-1.76207,0.00894,1.92132,0.00414
+2.87477,1.21876,-1.39060,-1.76185,0.00845,1.92090,0.00414
+2.87631,1.21918,-1.39035,-1.76163,0.00798,1.92048,0.00414
+2.87785,1.21960,-1.39009,-1.76141,0.00751,1.92007,0.00415
+2.87940,1.22000,-1.38985,-1.76120,0.00705,1.91967,0.00415
+2.88094,1.22041,-1.38960,-1.76099,0.00660,1.91927,0.00415
+2.88248,1.22080,-1.38937,-1.76079,0.00615,1.91887,0.00415
+2.88402,1.22119,-1.38913,-1.76059,0.00572,1.91849,0.00415
+2.88556,1.22157,-1.38890,-1.76039,0.00529,1.91811,0.00415
+2.88711,1.22195,-1.38868,-1.76020,0.00487,1.91773,0.00415
+2.88865,1.22232,-1.38845,-1.76000,0.00446,1.91737,0.00416
+2.89019,1.22269,-1.38824,-1.75982,0.00405,1.91700,0.00416
+2.89173,1.22305,-1.38802,-1.75963,0.00365,1.91665,0.00416
+2.89328,1.22340,-1.38781,-1.75945,0.00326,1.91630,0.00416
+2.89482,1.22375,-1.38761,-1.75927,0.00287,1.91595,0.00416
+2.89636,1.22402,-1.38745,-1.75913,0.00256,1.91568,0.00416
+2.89790,1.22436,-1.38724,-1.75890,0.00213,1.91534,0.00416
+2.89944,1.22469,-1.38705,-1.75867,0.00170,1.91501,0.00416
+2.90099,1.22502,-1.38685,-1.75845,0.00129,1.91469,0.00416
+2.90253,1.22534,-1.38666,-1.75823,0.00088,1.91436,0.00416
+2.90407,1.22566,-1.38648,-1.75801,0.00047,1.91405,0.00417
+2.90561,1.22585,-1.38636,-1.75788,0.00023,1.91386,0.00417
+2.90716,1.22618,-1.38617,-1.75764,-0.00021,1.91353,0.00417
+2.90870,1.22651,-1.38598,-1.75741,-0.00063,1.91321,0.00417
+2.91024,1.22683,-1.38579,-1.75718,-0.00105,1.91289,0.00417
+2.91178,1.22714,-1.38560,-1.75695,-0.00147,1.91257,0.00417
+2.91333,1.22745,-1.38542,-1.75673,-0.00187,1.91227,0.00417
+2.91487,1.22755,-1.38537,-1.75666,-0.00200,1.91217,0.00417
+2.91641,1.22787,-1.38518,-1.75641,-0.00244,1.91185,0.00417
+2.91795,1.22820,-1.38499,-1.75617,-0.00287,1.91153,0.00417
+2.91949,1.22851,-1.38481,-1.75593,-0.00329,1.91122,0.00417
+2.92104,1.22882,-1.38463,-1.75569,-0.00371,1.91091,0.00418
+2.92258,1.22913,-1.38445,-1.75546,-0.00412,1.91060,0.00418
+2.92412,1.22925,-1.38438,-1.75537,-0.00428,1.91048,0.00418
+2.92566,1.22955,-1.38421,-1.75513,-0.00470,1.91019,0.00418
+2.92721,1.22984,-1.38403,-1.75489,-0.00511,1.90989,0.00418
+2.92875,1.23016,-1.38385,-1.75466,-0.00552,1.90958,0.00418
+2.93029,1.23031,-1.38377,-1.75455,-0.00572,1.90943,0.00418
+2.93183,1.23061,-1.38359,-1.75431,-0.00614,1.90913,0.00418
+2.93337,1.23091,-1.38342,-1.75407,-0.00655,1.90883,0.00418
+2.93492,1.23123,-1.38324,-1.75385,-0.00695,1.90852,0.00418
+2.93646,1.23139,-1.38315,-1.75374,-0.00715,1.90836,0.00418
+2.93800,1.23172,-1.38296,-1.75353,-0.00755,1.90803,0.00418
+2.93954,1.23191,-1.38285,-1.75341,-0.00779,1.90784,0.00418
+2.94109,1.23223,-1.38266,-1.75319,-0.00819,1.90752,0.00418
+2.94263,1.23255,-1.38248,-1.75297,-0.00859,1.90720,0.00419
+2.94417,1.23288,-1.38229,-1.75277,-0.00899,1.90687,0.00419
+2.94571,1.23310,-1.38217,-1.75266,-0.00921,1.90666,0.00419
+2.94725,1.23357,-1.38190,-1.75263,-0.00952,1.90620,0.00419
+2.94880,1.23403,-1.38163,-1.75260,-0.00982,1.90573,0.00419
+2.95034,1.23449,-1.38137,-1.75257,-0.01012,1.90528,0.00419
+2.95188,1.23494,-1.38112,-1.75254,-0.01041,1.90483,0.00419
+2.95342,1.23539,-1.38086,-1.75251,-0.01069,1.90439,0.00419
+2.95497,1.23573,-1.38067,-1.75253,-0.01087,1.90405,0.00419
+2.95651,1.23657,-1.38019,-1.75296,-0.01092,1.90322,0.00419
+2.95805,1.23739,-1.37972,-1.75338,-0.01098,1.90241,0.00419
+2.95959,1.23820,-1.37926,-1.75380,-0.01103,1.90161,0.00420
+2.96114,1.23900,-1.37880,-1.75421,-0.01109,1.90082,0.00420
+2.96268,1.23979,-1.37836,-1.75461,-0.01114,1.90004,0.00420
+2.96422,1.24056,-1.37792,-1.75501,-0.01119,1.89927,0.00420
+2.96576,1.24132,-1.37748,-1.75539,-0.01124,1.89851,0.00420
+2.96730,1.24207,-1.37706,-1.75578,-0.01129,1.89777,0.00420
+2.96885,1.24281,-1.37664,-1.75615,-0.01134,1.89704,0.00420
+2.97039,1.24354,-1.37623,-1.75652,-0.01139,1.89632,0.00420
+2.97193,1.24425,-1.37583,-1.75688,-0.01144,1.89561,0.00420
+2.97347,1.24496,-1.37543,-1.75724,-0.01148,1.89491,0.00420
+2.97502,1.24565,-1.37504,-1.75759,-0.01153,1.89422,0.00421
+2.97656,1.24633,-1.37466,-1.75794,-0.01157,1.89354,0.00421
+2.97810,1.24701,-1.37428,-1.75828,-0.01162,1.89287,0.00421
+2.97964,1.24767,-1.37391,-1.75861,-0.01166,1.89221,0.00421
+2.98118,1.24832,-1.37354,-1.75894,-0.01170,1.89156,0.00421
+2.98273,1.24896,-1.37318,-1.75926,-0.01175,1.89092,0.00421
+2.98427,1.24960,-1.37283,-1.75958,-0.01179,1.89029,0.00421
+2.98581,1.25022,-1.37248,-1.75989,-0.01183,1.88967,0.00421
+2.98735,1.25083,-1.37214,-1.76020,-0.01187,1.88906,0.00421
+2.98890,1.25143,-1.37181,-1.76050,-0.01191,1.88846,0.00421
+2.99044,1.25203,-1.37148,-1.76080,-0.01194,1.88787,0.00421
+2.99198,1.25261,-1.37115,-1.76109,-0.01198,1.88729,0.00422
+2.99352,1.25319,-1.37083,-1.76138,-0.01202,1.88671,0.00422
+2.99506,1.25375,-1.37052,-1.76166,-0.01206,1.88615,0.00422
+2.99661,1.25431,-1.37021,-1.76194,-0.01209,1.88559,0.00422
+2.99815,1.25486,-1.36991,-1.76222,-0.01213,1.88504,0.00422
+2.99969,1.25540,-1.36961,-1.76249,-0.01216,1.88451,0.00422
+3.00123,1.25594,-1.36931,-1.76275,-0.01220,1.88397,0.00422
+3.00278,1.25646,-1.36902,-1.76301,-0.01223,1.88345,0.00422
+3.00432,1.25698,-1.36874,-1.76327,-0.01226,1.88293,0.00422
+3.00586,1.25748,-1.36846,-1.76352,-0.01230,1.88243,0.00422
+3.00740,1.25802,-1.36816,-1.76382,-0.01230,1.88189,0.00422
+3.00895,1.25890,-1.36768,-1.76459,-0.01203,1.88101,0.00423
+3.01049,1.25977,-1.36720,-1.76534,-0.01176,1.88015,0.00423
+3.01203,1.26063,-1.36673,-1.76608,-0.01150,1.87930,0.00423
+3.01357,1.26147,-1.36627,-1.76681,-0.01125,1.87846,0.00423
+3.01511,1.26230,-1.36581,-1.76753,-0.01099,1.87763,0.00423
+3.01666,1.26311,-1.36536,-1.76823,-0.01075,1.87682,0.00423
+3.01820,1.26392,-1.36493,-1.76892,-0.01050,1.87602,0.00423
+3.01974,1.26471,-1.36449,-1.76960,-0.01026,1.87523,0.00423
+3.02128,1.26549,-1.36407,-1.77027,-0.01003,1.87445,0.00423
+3.02283,1.26626,-1.36365,-1.77093,-0.00980,1.87369,0.00423
+3.02437,1.26701,-1.36324,-1.77158,-0.00957,1.87293,0.00424
+3.02591,1.26776,-1.36283,-1.77221,-0.00935,1.87219,0.00424
+3.02745,1.26849,-1.36243,-1.77284,-0.00913,1.87146,0.00424
+3.02899,1.26921,-1.36204,-1.77345,-0.00892,1.87074,0.00424
+3.03054,1.26992,-1.36166,-1.77405,-0.00871,1.87003,0.00424
+3.03208,1.27062,-1.36128,-1.77465,-0.00850,1.86933,0.00424
+3.03362,1.27131,-1.36090,-1.77523,-0.00830,1.86864,0.00424
+3.03516,1.27199,-1.36054,-1.77581,-0.00810,1.86796,0.00424
+3.03671,1.27266,-1.36018,-1.77637,-0.00790,1.86729,0.00425
+3.03825,1.27332,-1.35982,-1.77692,-0.00771,1.86663,0.00425
+3.03979,1.27397,-1.35947,-1.77747,-0.00752,1.86598,0.00425
+3.04133,1.27461,-1.35913,-1.77801,-0.00733,1.86534,0.00425
+3.04287,1.27523,-1.35879,-1.77853,-0.00715,1.86471,0.00425
+3.04442,1.27585,-1.35846,-1.77905,-0.00697,1.86409,0.00425
+3.04596,1.27646,-1.35813,-1.77956,-0.00679,1.86348,0.00425
+3.04750,1.27706,-1.35781,-1.78007,-0.00662,1.86288,0.00425
+3.04904,1.27766,-1.35749,-1.78056,-0.00645,1.86229,0.00425
+3.05059,1.27824,-1.35718,-1.78104,-0.00628,1.86170,0.00426
+3.05213,1.27881,-1.35687,-1.78152,-0.00611,1.86113,0.00426
+3.05367,1.27938,-1.35657,-1.78199,-0.00595,1.86056,0.00426
+3.05521,1.27993,-1.35627,-1.78245,-0.00579,1.86000,0.00426
+3.05676,1.28048,-1.35598,-1.78290,-0.00564,1.85945,0.00426
+3.05830,1.28102,-1.35569,-1.78335,-0.00548,1.85891,0.00426
+3.05984,1.28155,-1.35541,-1.78379,-0.00533,1.85838,0.00426
+3.06138,1.28207,-1.35513,-1.78422,-0.00518,1.85785,0.00426
+3.06292,1.28259,-1.35486,-1.78464,-0.00504,1.85734,0.00427
+3.06447,1.28309,-1.35459,-1.78506,-0.00490,1.85683,0.00427
+3.06601,1.28359,-1.35432,-1.78547,-0.00476,1.85633,0.00427
+3.06755,1.28408,-1.35406,-1.78587,-0.00462,1.85583,0.00427
+3.06909,1.28457,-1.35381,-1.78627,-0.00448,1.85535,0.00427
+3.07064,1.28504,-1.35355,-1.78666,-0.00435,1.85487,0.00427
+3.07218,1.28551,-1.35331,-1.78704,-0.00422,1.85439,0.00427
+3.07372,1.28598,-1.35306,-1.78742,-0.00409,1.85393,0.00427
+3.07526,1.28617,-1.35296,-1.78758,-0.00403,1.85373,0.00427
+3.07680,1.28676,-1.35265,-1.78808,-0.00385,1.85315,0.00428
+3.07835,1.28733,-1.35234,-1.78857,-0.00366,1.85257,0.00428
+3.07989,1.28790,-1.35204,-1.78906,-0.00348,1.85200,0.00428
+3.08143,1.28846,-1.35175,-1.78953,-0.00331,1.85144,0.00428
+3.08297,1.28901,-1.35146,-1.79000,-0.00313,1.85089,0.00428
+3.08452,1.28955,-1.35117,-1.79046,-0.00296,1.85034,0.00428
+3.08606,1.29008,-1.35089,-1.79091,-0.00280,1.84981,0.00428
+3.08760,1.29061,-1.35062,-1.79136,-0.00263,1.84928,0.00429
+3.08914,1.29113,-1.35035,-1.79180,-0.00247,1.84876,0.00429
+3.09068,1.29164,-1.35008,-1.79223,-0.00231,1.84825,0.00429
+3.09223,1.29214,-1.34981,-1.79265,-0.00216,1.84774,0.00429
+3.09377,1.29263,-1.34956,-1.79306,-0.00200,1.84725,0.00429
+3.09531,1.29312,-1.34930,-1.79347,-0.00185,1.84676,0.00429
+3.09685,1.29360,-1.34905,-1.79388,-0.00171,1.84628,0.00429
+3.09840,1.29407,-1.34880,-1.79427,-0.00156,1.84580,0.00430
+3.09994,1.29453,-1.34856,-1.79466,-0.00142,1.84533,0.00430
+3.10148,1.29499,-1.34832,-1.79504,-0.00128,1.84487,0.00430
+3.10302,1.29513,-1.34825,-1.79516,-0.00123,1.84473,0.00430
+3.10457,1.29565,-1.34798,-1.79562,-0.00105,1.84421,0.00430
+3.10611,1.29616,-1.34771,-1.79608,-0.00086,1.84370,0.00430
+3.10765,1.29666,-1.34745,-1.79652,-0.00068,1.84320,0.00430
+3.10919,1.29715,-1.34720,-1.79696,-0.00050,1.84271,0.00430
+3.11073,1.29763,-1.34695,-1.79739,-0.00033,1.84222,0.00431
+3.11228,1.29811,-1.34670,-1.79781,-0.00016,1.84174,0.00431
+3.11382,1.29858,-1.34646,-1.79822,0.00001,1.84127,0.00431
+3.11536,1.29904,-1.34622,-1.79863,0.00017,1.84080,0.00431
+3.11690,1.29950,-1.34598,-1.79903,0.00034,1.84035,0.00431
+3.11845,1.29994,-1.34575,-1.79943,0.00050,1.83989,0.00431
+3.11999,1.30017,-1.34563,-1.79964,0.00059,1.83967,0.00431
+3.12153,1.30110,-1.34515,-1.80059,0.00105,1.83874,0.00431
+3.12307,1.30202,-1.34468,-1.80152,0.00151,1.83782,0.00432
+3.12461,1.30292,-1.34422,-1.80244,0.00195,1.83692,0.00432
+3.12616,1.30381,-1.34377,-1.80334,0.00239,1.83603,0.00432
+3.12770,1.30469,-1.34332,-1.80423,0.00282,1.83516,0.00432
+3.12924,1.30555,-1.34288,-1.80510,0.00325,1.83430,0.00433
+3.13078,1.30640,-1.34245,-1.80596,0.00366,1.83345,0.00433
+3.13233,1.30724,-1.34202,-1.80680,0.00407,1.83261,0.00433
+3.13387,1.30807,-1.34160,-1.80763,0.00447,1.83179,0.00433
+3.13541,1.30888,-1.34119,-1.80844,0.00487,1.83097,0.00433
+3.13695,1.30968,-1.34079,-1.80924,0.00526,1.83017,0.00434
+3.13849,1.31047,-1.34039,-1.81003,0.00564,1.82938,0.00434
+3.14004,1.31125,-1.34000,-1.81080,0.00601,1.82861,0.00434
+3.14158,1.31201,-1.33961,-1.81156,0.00638,1.82784,0.00434
+3.14312,1.31277,-1.33923,-1.81231,0.00674,1.82709,0.00435
+3.14466,1.31351,-1.33886,-1.81304,0.00710,1.82634,0.00435
+3.14621,1.31424,-1.33849,-1.81376,0.00745,1.82561,0.00435
+3.14775,1.31496,-1.33813,-1.81447,0.00779,1.82489,0.00435
+3.14929,1.31567,-1.33777,-1.81517,0.00813,1.82418,0.00435
+3.15083,1.31637,-1.33742,-1.81586,0.00846,1.82348,0.00436
+3.15238,1.31706,-1.33708,-1.81653,0.00878,1.82279,0.00436
+3.15392,1.31774,-1.33674,-1.81719,0.00910,1.82211,0.00436
+3.15546,1.31840,-1.33641,-1.81785,0.00941,1.82144,0.00436
+3.15700,1.31906,-1.33608,-1.81849,0.00972,1.82078,0.00436
+3.15854,1.31971,-1.33576,-1.81912,0.01003,1.82013,0.00437
+3.16009,1.32035,-1.33544,-1.81974,0.01032,1.81949,0.00437
+3.16163,1.32098,-1.33513,-1.82034,0.01061,1.81886,0.00437
+3.16317,1.32159,-1.33482,-1.82094,0.01090,1.81823,0.00437
+3.16471,1.32220,-1.33452,-1.82153,0.01118,1.81762,0.00438
+3.16626,1.32280,-1.33422,-1.82211,0.01146,1.81702,0.00438
+3.16780,1.32340,-1.33393,-1.82268,0.01173,1.81642,0.00438
+3.16934,1.32398,-1.33364,-1.82324,0.01200,1.81584,0.00438
+3.17088,1.32455,-1.33335,-1.82379,0.01226,1.81526,0.00438
+3.17242,1.32512,-1.33307,-1.82433,0.01252,1.81469,0.00439
+3.17397,1.32567,-1.33280,-1.82486,0.01278,1.81413,0.00439
+3.17551,1.32622,-1.33253,-1.82538,0.01302,1.81358,0.00439
+3.17705,1.32676,-1.33226,-1.82590,0.01327,1.81304,0.00439
+3.17859,1.32729,-1.33200,-1.82640,0.01351,1.81250,0.00439
+3.18014,1.32782,-1.33174,-1.82690,0.01375,1.81198,0.00440
+3.18168,1.32833,-1.33149,-1.82739,0.01398,1.81146,0.00440
+3.18322,1.32884,-1.33124,-1.82787,0.01421,1.81095,0.00440
+3.18476,1.32934,-1.33099,-1.82834,0.01443,1.81044,0.00440
+3.18630,1.32983,-1.33075,-1.82881,0.01465,1.80994,0.00440
+3.18785,1.33032,-1.33051,-1.82926,0.01487,1.80946,0.00440
+3.18939,1.33079,-1.33028,-1.82971,0.01508,1.80897,0.00441
+3.19093,1.33126,-1.33005,-1.83015,0.01529,1.80850,0.00441
+3.19247,1.33173,-1.32982,-1.83059,0.01549,1.80803,0.00441
+3.19402,1.33218,-1.32960,-1.83101,0.01569,1.80757,0.00441
+3.19556,1.33263,-1.32938,-1.83143,0.01589,1.80712,0.00441
+3.19710,1.33308,-1.32916,-1.83185,0.01609,1.80667,0.00442
+3.19864,1.33351,-1.32895,-1.83225,0.01628,1.80623,0.00442
+3.20019,1.33363,-1.32889,-1.83237,0.01634,1.80611,0.00442
+3.20173,1.33438,-1.32853,-1.83316,0.01676,1.80536,0.00442
+3.20327,1.33512,-1.32818,-1.83393,0.01717,1.80462,0.00442
+3.20481,1.33584,-1.32783,-1.83469,0.01758,1.80390,0.00442
+3.20635,1.33656,-1.32749,-1.83544,0.01798,1.80318,0.00443
+3.20790,1.33726,-1.32715,-1.83617,0.01837,1.80247,0.00443
+3.20944,1.33796,-1.32682,-1.83689,0.01875,1.80178,0.00443
+3.21098,1.33864,-1.32650,-1.83760,0.01913,1.80109,0.00443
+3.21252,1.33932,-1.32617,-1.83830,0.01950,1.80042,0.00444
+3.21407,1.33998,-1.32586,-1.83898,0.01987,1.79975,0.00444
+3.21561,1.34063,-1.32555,-1.83966,0.02023,1.79909,0.00444
+3.21715,1.34128,-1.32524,-1.84032,0.02058,1.79845,0.00444
+3.21869,1.34191,-1.32494,-1.84097,0.02093,1.79781,0.00444
+3.22023,1.34253,-1.32465,-1.84161,0.02127,1.79718,0.00445
+3.22178,1.34315,-1.32436,-1.84224,0.02160,1.79657,0.00445
+3.22332,1.34376,-1.32407,-1.84286,0.02193,1.79596,0.00445
+3.22486,1.34435,-1.32379,-1.84347,0.02225,1.79536,0.00445
+3.22640,1.34494,-1.32351,-1.84407,0.02257,1.79477,0.00445
+3.22795,1.34552,-1.32324,-1.84465,0.02288,1.79418,0.00446
+3.22949,1.34609,-1.32297,-1.84523,0.02319,1.79361,0.00446
+3.23103,1.34665,-1.32270,-1.84580,0.02349,1.79304,0.00446
+3.23257,1.34720,-1.32244,-1.84636,0.02378,1.79249,0.00446
+3.23411,1.34775,-1.32219,-1.84691,0.02407,1.79194,0.00447
+3.23566,1.34829,-1.32193,-1.84745,0.02436,1.79140,0.00447
+3.23720,1.34882,-1.32168,-1.84798,0.02464,1.79087,0.00447
+3.23874,1.34934,-1.32144,-1.84850,0.02491,1.79034,0.00447
+3.24028,1.34985,-1.32120,-1.84902,0.02518,1.78982,0.00447
+3.24183,1.35035,-1.32096,-1.84952,0.02545,1.78932,0.00448
+3.24337,1.35085,-1.32073,-1.85002,0.02571,1.78881,0.00448
+3.24491,1.35134,-1.32050,-1.85051,0.02596,1.78832,0.00448
+3.24645,1.35182,-1.32027,-1.85099,0.02622,1.78783,0.00448
+3.24800,1.35230,-1.32005,-1.85146,0.02646,1.78735,0.00448
+3.24954,1.35277,-1.31983,-1.85192,0.02671,1.78688,0.00448
+3.25108,1.35323,-1.31962,-1.85238,0.02694,1.78641,0.00449
+3.25262,1.35368,-1.31940,-1.85283,0.02718,1.78596,0.00449
+3.25416,1.35413,-1.31920,-1.85327,0.02741,1.78550,0.00449
+3.25571,1.35457,-1.31899,-1.85370,0.02763,1.78506,0.00449
+3.25725,1.35501,-1.31879,-1.85413,0.02786,1.78462,0.00449
+3.25879,1.35543,-1.31859,-1.85455,0.02808,1.78419,0.00450
+3.26033,1.35579,-1.31842,-1.85490,0.02826,1.78382,0.00450
+3.26188,1.35644,-1.31812,-1.85550,0.02855,1.78317,0.00450
+3.26342,1.35708,-1.31782,-1.85609,0.02885,1.78253,0.00450
+3.26496,1.35771,-1.31753,-1.85667,0.02914,1.78190,0.00450
+3.26650,1.35833,-1.31725,-1.85724,0.02942,1.78128,0.00451
+3.26804,1.35895,-1.31696,-1.85781,0.02970,1.78066,0.00451
+3.26959,1.35955,-1.31669,-1.85836,0.02997,1.78006,0.00451
+3.27113,1.36014,-1.31641,-1.85890,0.03024,1.77946,0.00451
+3.27267,1.36073,-1.31615,-1.85944,0.03050,1.77888,0.00452
+3.27421,1.36130,-1.31588,-1.85996,0.03076,1.77830,0.00452
+3.27576,1.36187,-1.31562,-1.86048,0.03101,1.77773,0.00452
+3.27730,1.36243,-1.31536,-1.86099,0.03126,1.77717,0.00452
+3.27884,1.36298,-1.31511,-1.86149,0.03151,1.77662,0.00453
+3.28038,1.36352,-1.31486,-1.86198,0.03175,1.77607,0.00453
+3.28192,1.36405,-1.31462,-1.86246,0.03199,1.77553,0.00453
+3.28347,1.36458,-1.31438,-1.86294,0.03222,1.77501,0.00453
+3.28501,1.36510,-1.31414,-1.86341,0.03245,1.77449,0.00453
+3.28655,1.36561,-1.31391,-1.86387,0.03267,1.77397,0.00454
+3.28809,1.36611,-1.31368,-1.86432,0.03289,1.77347,0.00454
+3.28964,1.36661,-1.31345,-1.86476,0.03311,1.77297,0.00454
+3.29118,1.36709,-1.31323,-1.86520,0.03332,1.77248,0.00454
+3.29272,1.36757,-1.31301,-1.86563,0.03353,1.77199,0.00454
+3.29426,1.36805,-1.31280,-1.86605,0.03373,1.77152,0.00455
+3.29581,1.36851,-1.31258,-1.86647,0.03394,1.77105,0.00455
+3.29735,1.36897,-1.31237,-1.86687,0.03413,1.77059,0.00455
+3.29889,1.36942,-1.31217,-1.86728,0.03433,1.77013,0.00455
+3.30043,1.36988,-1.31196,-1.86768,0.03452,1.76967,0.00455
+3.30197,1.37041,-1.31172,-1.86816,0.03476,1.76914,0.00456
+3.30352,1.37093,-1.31149,-1.86863,0.03499,1.76861,0.00456
+3.30506,1.37145,-1.31125,-1.86909,0.03522,1.76809,0.00456
+3.30660,1.37196,-1.31102,-1.86954,0.03544,1.76758,0.00456
+3.30814,1.37246,-1.31080,-1.86999,0.03566,1.76708,0.00456
+3.30969,1.37295,-1.31057,-1.87043,0.03587,1.76658,0.00457
+3.31123,1.37344,-1.31036,-1.87086,0.03608,1.76609,0.00457
+3.31277,1.37392,-1.31014,-1.87128,0.03629,1.76561,0.00457
+3.31431,1.37439,-1.30993,-1.87170,0.03649,1.76513,0.00457
+3.31585,1.37486,-1.30972,-1.87211,0.03669,1.76466,0.00457
+3.31740,1.37531,-1.30951,-1.87251,0.03689,1.76420,0.00458
+3.31894,1.37576,-1.30931,-1.87291,0.03708,1.76375,0.00458
+3.32048,1.37602,-1.30920,-1.87313,0.03719,1.76349,0.00458
+3.32202,1.37677,-1.30887,-1.87381,0.03753,1.76275,0.00458
+3.32357,1.37750,-1.30854,-1.87448,0.03787,1.76201,0.00458
+3.32511,1.37823,-1.30822,-1.87514,0.03821,1.76128,0.00459
+3.32665,1.37894,-1.30791,-1.87578,0.03853,1.76057,0.00459
+3.32819,1.37965,-1.30760,-1.87642,0.03886,1.75986,0.00459
+3.32973,1.38034,-1.30730,-1.87704,0.03917,1.75917,0.00460
+3.33128,1.38103,-1.30700,-1.87766,0.03948,1.75849,0.00460
+3.33282,1.38170,-1.30670,-1.87826,0.03979,1.75781,0.00460
+3.33436,1.38236,-1.30641,-1.87885,0.04009,1.75715,0.00460
+3.33590,1.38302,-1.30613,-1.87943,0.04038,1.75649,0.00461
+3.33745,1.38366,-1.30585,-1.88001,0.04067,1.75585,0.00461
+3.33899,1.38429,-1.30557,-1.88057,0.04095,1.75521,0.00461
+3.34053,1.38492,-1.30530,-1.88113,0.04123,1.75459,0.00461
+3.34207,1.38554,-1.30503,-1.88167,0.04150,1.75397,0.00462
+3.34362,1.38614,-1.30477,-1.88221,0.04177,1.75336,0.00462
+3.34516,1.38674,-1.30451,-1.88273,0.04204,1.75276,0.00462
+3.34670,1.38733,-1.30425,-1.88325,0.04230,1.75217,0.00462
+3.34824,1.38791,-1.30400,-1.88376,0.04255,1.75159,0.00462
+3.34978,1.38848,-1.30375,-1.88426,0.04280,1.75102,0.00463
+3.35133,1.38904,-1.30351,-1.88475,0.04305,1.75045,0.00463
+3.35287,1.38959,-1.30327,-1.88524,0.04329,1.74990,0.00463
+3.35441,1.39014,-1.30303,-1.88571,0.04352,1.74935,0.00463
+3.35595,1.39068,-1.30280,-1.88618,0.04376,1.74881,0.00464
+3.35750,1.39121,-1.30257,-1.88664,0.04399,1.74827,0.00464
+3.35904,1.39173,-1.30234,-1.88709,0.04421,1.74775,0.00464
+3.36058,1.39224,-1.30212,-1.88754,0.04443,1.74723,0.00464
+3.36212,1.39275,-1.30190,-1.88797,0.04465,1.74672,0.00464
+3.36366,1.39325,-1.30169,-1.88840,0.04486,1.74622,0.00465
+3.36521,1.39374,-1.30147,-1.88883,0.04507,1.74573,0.00465
+3.36675,1.39422,-1.30127,-1.88924,0.04527,1.74524,0.00465
+3.36829,1.39470,-1.30106,-1.88965,0.04548,1.74476,0.00465
+3.36983,1.39517,-1.30086,-1.89005,0.04567,1.74429,0.00466
+3.37138,1.39563,-1.30066,-1.89045,0.04587,1.74382,0.00466
+3.37292,1.39608,-1.30046,-1.89084,0.04606,1.74336,0.00466
+3.37446,1.39624,-1.30039,-1.89097,0.04613,1.74321,0.00466
+3.37600,1.39690,-1.30012,-1.89158,0.04645,1.74254,0.00466
+3.37754,1.39755,-1.29984,-1.89217,0.04676,1.74189,0.00466
+3.37909,1.39820,-1.29957,-1.89275,0.04707,1.74125,0.00467
+3.38063,1.39883,-1.29930,-1.89332,0.04737,1.74061,0.00467
+3.38217,1.39945,-1.29904,-1.89388,0.04766,1.73999,0.00467
+3.38371,1.40006,-1.29878,-1.89443,0.04795,1.73937,0.00467
+3.38526,1.40067,-1.29853,-1.89497,0.04824,1.73877,0.00468
+3.38680,1.40127,-1.29828,-1.89551,0.04852,1.73817,0.00468
+3.38834,1.40185,-1.29803,-1.89603,0.04880,1.73758,0.00468
+3.38988,1.40243,-1.29779,-1.89655,0.04907,1.73700,0.00468
+3.39143,1.40300,-1.29755,-1.89706,0.04933,1.73643,0.00469
+3.39297,1.40356,-1.29732,-1.89755,0.04959,1.73587,0.00469
+3.39451,1.40411,-1.29709,-1.89804,0.04985,1.73531,0.00469
+3.39605,1.40466,-1.29686,-1.89853,0.05010,1.73476,0.00469
+3.39759,1.40519,-1.29664,-1.89900,0.05035,1.73422,0.00469
+3.39914,1.40572,-1.29642,-1.89947,0.05059,1.73369,0.00470
+3.40068,1.40624,-1.29620,-1.89992,0.05083,1.73317,0.00470
+3.40222,1.40676,-1.29598,-1.90037,0.05106,1.73265,0.00470
+3.40376,1.40726,-1.29577,-1.90082,0.05129,1.73215,0.00470
+3.40531,1.40776,-1.29557,-1.90125,0.05152,1.73164,0.00471
+3.40685,1.40825,-1.29536,-1.90168,0.05174,1.73115,0.00471
+3.40839,1.40873,-1.29516,-1.90210,0.05196,1.73067,0.00471
+3.40993,1.40921,-1.29496,-1.90252,0.05217,1.73019,0.00471
+3.41147,1.40967,-1.29477,-1.90292,0.05238,1.72971,0.00471
+3.41302,1.41014,-1.29457,-1.90333,0.05259,1.72925,0.00472
+3.41456,1.41059,-1.29438,-1.90372,0.05279,1.72879,0.00472
+3.41610,1.41091,-1.29425,-1.90400,0.05294,1.72847,0.00472
+3.41764,1.41145,-1.29403,-1.90445,0.05316,1.72792,0.00472
+3.41919,1.41199,-1.29381,-1.90489,0.05338,1.72739,0.00472
+3.42073,1.41251,-1.29359,-1.90532,0.05360,1.72686,0.00473
+3.42227,1.41303,-1.29337,-1.90575,0.05381,1.72634,0.00473
+3.42381,1.41353,-1.29316,-1.90617,0.05402,1.72583,0.00473
+3.42535,1.41404,-1.29296,-1.90659,0.05422,1.72533,0.00473
+3.42690,1.41453,-1.29275,-1.90699,0.05442,1.72483,0.00473
+3.42844,1.41501,-1.29255,-1.90739,0.05462,1.72434,0.00474
+3.42998,1.41549,-1.29235,-1.90779,0.05481,1.72386,0.00474
+3.43152,1.41596,-1.29216,-1.90817,0.05500,1.72339,0.00474
+3.43307,1.41643,-1.29197,-1.90855,0.05519,1.72292,0.00474
+3.43461,1.41659,-1.29190,-1.90868,0.05525,1.72276,0.00474
+3.43615,1.41724,-1.29164,-1.90919,0.05549,1.72211,0.00475
+3.43769,1.41788,-1.29137,-1.90968,0.05572,1.72147,0.00475
+3.43924,1.41851,-1.29112,-1.91017,0.05595,1.72084,0.00475
+3.44078,1.41913,-1.29086,-1.91065,0.05617,1.72022,0.00475
+3.44232,1.41974,-1.29061,-1.91113,0.05639,1.71961,0.00476
+3.44386,1.42035,-1.29036,-1.91159,0.05661,1.71900,0.00476
+3.44540,1.42094,-1.29012,-1.91205,0.05682,1.71841,0.00476
+3.44695,1.42152,-1.28988,-1.91250,0.05703,1.71782,0.00476
+3.44849,1.42210,-1.28965,-1.91294,0.05723,1.71724,0.00477
+3.45003,1.42267,-1.28942,-1.91338,0.05743,1.71667,0.00477
+3.45157,1.42323,-1.28919,-1.91380,0.05763,1.71611,0.00477
+3.45312,1.42378,-1.28896,-1.91422,0.05783,1.71556,0.00477
+3.45466,1.42432,-1.28874,-1.91464,0.05802,1.71501,0.00477
+3.45620,1.42486,-1.28852,-1.91504,0.05820,1.71448,0.00478
+3.45774,1.42539,-1.28831,-1.91544,0.05839,1.71395,0.00478
+3.45928,1.42590,-1.28810,-1.91584,0.05857,1.71342,0.00478
+3.46083,1.42642,-1.28789,-1.91622,0.05874,1.71291,0.00478
+3.46237,1.42692,-1.28769,-1.91660,0.05892,1.71240,0.00479
+3.46391,1.42742,-1.28748,-1.91698,0.05909,1.71191,0.00479
+3.46545,1.42790,-1.28729,-1.91735,0.05925,1.71141,0.00479
+3.46700,1.42839,-1.28709,-1.91771,0.05942,1.71093,0.00479
+3.46854,1.42843,-1.28707,-1.91774,0.05944,1.71088,0.00479
+3.47008,1.42891,-1.28688,-1.91812,0.05962,1.71041,0.00479
+3.47162,1.42911,-1.28679,-1.91821,0.05963,1.71020,0.00480
+3.47316,1.42924,-1.28669,-1.91770,0.05902,1.71007,0.00480
+3.47471,1.42936,-1.28659,-1.91719,0.05842,1.70994,0.00480
+3.47625,1.42949,-1.28649,-1.91669,0.05783,1.70982,0.00480
+3.47779,1.42961,-1.28639,-1.91620,0.05726,1.70969,0.00480
+3.47933,1.42973,-1.28630,-1.91572,0.05669,1.70957,0.00481
+3.48088,1.42985,-1.28621,-1.91525,0.05613,1.70945,0.00481
+3.48242,1.42997,-1.28612,-1.91478,0.05558,1.70933,0.00481
+3.48396,1.43008,-1.28603,-1.91432,0.05505,1.70921,0.00481
+3.48550,1.43019,-1.28594,-1.91387,0.05452,1.70910,0.00481
+3.48705,1.43031,-1.28585,-1.91343,0.05400,1.70898,0.00482
+3.48859,1.43042,-1.28577,-1.91300,0.05349,1.70887,0.00482
+3.49013,1.43052,-1.28569,-1.91257,0.05299,1.70876,0.00482
+3.49167,1.43063,-1.28561,-1.91215,0.05250,1.70865,0.00482
+3.49321,1.43073,-1.28553,-1.91174,0.05201,1.70855,0.00482
+3.49476,1.43084,-1.28545,-1.91133,0.05154,1.70844,0.00482
+3.49630,1.43094,-1.28538,-1.91093,0.05107,1.70834,0.00483
+3.49784,1.43094,-1.28537,-1.91082,0.05095,1.70833,0.00483
+3.49938,1.43087,-1.28535,-1.91012,0.05023,1.70840,0.00483
+3.50093,1.43080,-1.28533,-1.90942,0.04953,1.70847,0.00483
+3.50247,1.43074,-1.28531,-1.90874,0.04884,1.70853,0.00483
+3.50401,1.43067,-1.28530,-1.90806,0.04816,1.70859,0.00483
+3.50555,1.43060,-1.28528,-1.90740,0.04749,1.70866,0.00483
+3.50709,1.43054,-1.28527,-1.90675,0.04683,1.70872,0.00483
+3.50864,1.43048,-1.28525,-1.90611,0.04619,1.70878,0.00483
+3.51018,1.43041,-1.28524,-1.90549,0.04555,1.70884,0.00483
+3.51172,1.43035,-1.28523,-1.90487,0.04493,1.70890,0.00484
+3.51326,1.43029,-1.28522,-1.90426,0.04432,1.70896,0.00484
+3.51481,1.43023,-1.28521,-1.90366,0.04372,1.70902,0.00484
+3.51635,1.43017,-1.28520,-1.90308,0.04313,1.70908,0.00484
+3.51789,1.43011,-1.28519,-1.90250,0.04255,1.70913,0.00484
+3.51943,1.43005,-1.28518,-1.90193,0.04198,1.70919,0.00484
+3.52097,1.43000,-1.28517,-1.90138,0.04142,1.70924,0.00484
+3.52252,1.42994,-1.28517,-1.90083,0.04088,1.70930,0.00484
+3.52406,1.42988,-1.28516,-1.90029,0.04034,1.70935,0.00484
+3.52560,1.42983,-1.28515,-1.89976,0.03981,1.70940,0.00484
+3.52714,1.42978,-1.28515,-1.89924,0.03929,1.70946,0.00484
+3.52869,1.42972,-1.28514,-1.89873,0.03877,1.70951,0.00484
+3.53023,1.42967,-1.28514,-1.89822,0.03827,1.70956,0.00484
+3.53177,1.42962,-1.28514,-1.89773,0.03778,1.70961,0.00484
+3.53331,1.42957,-1.28513,-1.89724,0.03729,1.70966,0.00484
+3.53486,1.42952,-1.28513,-1.89677,0.03682,1.70971,0.00484
+3.53640,1.42947,-1.28513,-1.89630,0.03635,1.70976,0.00484
+3.53794,1.42942,-1.28513,-1.89583,0.03589,1.70980,0.00484
+3.53948,1.42937,-1.28513,-1.89538,0.03544,1.70985,0.00484
+3.54102,1.42933,-1.28514,-1.89519,0.03526,1.70989,0.00484
+3.54257,1.42899,-1.28523,-1.89420,0.03437,1.71023,0.00484
+3.54411,1.42866,-1.28533,-1.89322,0.03350,1.71056,0.00484
+3.54565,1.42834,-1.28543,-1.89226,0.03265,1.71088,0.00484
+3.54719,1.42801,-1.28553,-1.89132,0.03181,1.71120,0.00484
+3.54874,1.42770,-1.28562,-1.89039,0.03099,1.71151,0.00484
+3.55028,1.42739,-1.28572,-1.88948,0.03018,1.71182,0.00484
+3.55182,1.42708,-1.28581,-1.88858,0.02939,1.71213,0.00484
+3.55336,1.42678,-1.28591,-1.88770,0.02861,1.71243,0.00484
+3.55490,1.42648,-1.28600,-1.88683,0.02784,1.71273,0.00484
+3.55645,1.42619,-1.28610,-1.88597,0.02709,1.71302,0.00484
+3.55799,1.42590,-1.28619,-1.88513,0.02635,1.71330,0.00484
+3.55953,1.42561,-1.28629,-1.88431,0.02563,1.71359,0.00484
+3.56107,1.42533,-1.28638,-1.88350,0.02491,1.71387,0.00484
+3.56262,1.42506,-1.28647,-1.88270,0.02421,1.71414,0.00484
+3.56416,1.42478,-1.28656,-1.88191,0.02353,1.71441,0.00484
+3.56570,1.42452,-1.28665,-1.88114,0.02285,1.71468,0.00484
+3.56724,1.42425,-1.28674,-1.88038,0.02219,1.71494,0.00484
+3.56878,1.42399,-1.28683,-1.87963,0.02153,1.71520,0.00484
+3.57033,1.42374,-1.28692,-1.87890,0.02089,1.71546,0.00484
+3.57187,1.42349,-1.28701,-1.87818,0.02026,1.71571,0.00484
+3.57341,1.42324,-1.28710,-1.87747,0.01965,1.71596,0.00484
+3.57495,1.42299,-1.28719,-1.87677,0.01904,1.71620,0.00484
+3.57650,1.42275,-1.28727,-1.87608,0.01844,1.71644,0.00484
+3.57804,1.42252,-1.28736,-1.87541,0.01786,1.71668,0.00484
+3.57958,1.42228,-1.28744,-1.87475,0.01728,1.71691,0.00484
+3.58112,1.42205,-1.28753,-1.87409,0.01672,1.71714,0.00484
+3.58267,1.42183,-1.28761,-1.87345,0.01616,1.71737,0.00484
+3.58421,1.42160,-1.28769,-1.87282,0.01562,1.71760,0.00483
+3.58575,1.42138,-1.28778,-1.87220,0.01508,1.71782,0.00483
+3.58729,1.42117,-1.28786,-1.87159,0.01455,1.71803,0.00483
+3.58883,1.42095,-1.28794,-1.87099,0.01404,1.71825,0.00483
+3.59038,1.42074,-1.28802,-1.87040,0.01353,1.71846,0.00483
+3.59192,1.42053,-1.28810,-1.86982,0.01303,1.71867,0.00483
+3.59346,1.42033,-1.28818,-1.86925,0.01254,1.71887,0.00483
+3.59500,1.42013,-1.28826,-1.86869,0.01206,1.71907,0.00483
+3.59655,1.41993,-1.28833,-1.86814,0.01159,1.71927,0.00483
+3.59809,1.41974,-1.28841,-1.86759,0.01112,1.71947,0.00483
+3.59963,1.41955,-1.28849,-1.86706,0.01067,1.71966,0.00483
+3.60117,1.41936,-1.28856,-1.86654,0.01022,1.71985,0.00483
+3.60271,1.41917,-1.28864,-1.86602,0.00978,1.72004,0.00483
+3.60426,1.41899,-1.28871,-1.86551,0.00934,1.72022,0.00483
+3.60580,1.41881,-1.28878,-1.86502,0.00892,1.72040,0.00482
+3.60734,1.41863,-1.28885,-1.86453,0.00850,1.72058,0.00482
+3.60888,1.41845,-1.28893,-1.86404,0.00809,1.72076,0.00482
+3.61043,1.41836,-1.28896,-1.86378,0.00787,1.72086,0.00482
+3.61197,1.41809,-1.28907,-1.86305,0.00724,1.72112,0.00482
+3.61351,1.41783,-1.28917,-1.86232,0.00663,1.72139,0.00482
+3.61505,1.41757,-1.28928,-1.86161,0.00602,1.72165,0.00482
+3.61659,1.41732,-1.28938,-1.86092,0.00543,1.72190,0.00482
+3.61814,1.41707,-1.28948,-1.86023,0.00485,1.72215,0.00482
+3.61968,1.41682,-1.28958,-1.85955,0.00428,1.72240,0.00482
+3.62122,1.41658,-1.28968,-1.85889,0.00371,1.72265,0.00482
+3.62276,1.41634,-1.28978,-1.85824,0.00316,1.72289,0.00482
+3.62431,1.41610,-1.28988,-1.85760,0.00262,1.72312,0.00482
+3.62585,1.41587,-1.28997,-1.85696,0.00209,1.72336,0.00481
+3.62739,1.41564,-1.29007,-1.85634,0.00157,1.72359,0.00481
+3.62893,1.41542,-1.29016,-1.85573,0.00105,1.72381,0.00481
+3.63048,1.41520,-1.29026,-1.85513,0.00055,1.72404,0.00481
+3.63202,1.41498,-1.29035,-1.85454,0.00005,1.72426,0.00481
+3.63356,1.41476,-1.29044,-1.85396,-0.00044,1.72448,0.00481
+3.63510,1.41455,-1.29053,-1.85339,-0.00091,1.72469,0.00481
+3.63664,1.41434,-1.29062,-1.85283,-0.00139,1.72490,0.00481
+3.63819,1.41414,-1.29071,-1.85228,-0.00185,1.72511,0.00481
+3.63973,1.41393,-1.29080,-1.85174,-0.00230,1.72531,0.00481
+3.64127,1.41373,-1.29089,-1.85120,-0.00275,1.72551,0.00481
+3.64281,1.41354,-1.29097,-1.85068,-0.00318,1.72571,0.00480
+3.64436,1.41334,-1.29106,-1.85016,-0.00361,1.72591,0.00480
+3.64590,1.41315,-1.29114,-1.84966,-0.00404,1.72610,0.00480
+3.64744,1.41297,-1.29123,-1.84916,-0.00445,1.72629,0.00480
+3.64898,1.41278,-1.29131,-1.84867,-0.00486,1.72648,0.00480
+3.65052,1.41257,-1.29140,-1.84812,-0.00531,1.72669,0.00480
+3.65207,1.41213,-1.29159,-1.84706,-0.00618,1.72713,0.00480
+3.65361,1.41170,-1.29177,-1.84601,-0.00704,1.72757,0.00480
+3.65515,1.41127,-1.29196,-1.84497,-0.00788,1.72799,0.00480
+3.65669,1.41085,-1.29214,-1.84396,-0.00871,1.72842,0.00480
+3.65824,1.41044,-1.29232,-1.84296,-0.00952,1.72883,0.00479
+3.65978,1.41003,-1.29250,-1.84198,-0.01032,1.72924,0.00479
+3.66132,1.40963,-1.29268,-1.84101,-0.01110,1.72965,0.00479
+3.66286,1.40924,-1.29285,-1.84006,-0.01187,1.73004,0.00479
+3.66440,1.40885,-1.29302,-1.83912,-0.01263,1.73043,0.00479
+3.66595,1.40846,-1.29320,-1.83820,-0.01337,1.73082,0.00479
+3.66749,1.40809,-1.29337,-1.83730,-0.01410,1.73120,0.00479
+3.66903,1.40771,-1.29353,-1.83641,-0.01482,1.73157,0.00479
+3.67057,1.40735,-1.29370,-1.83554,-0.01552,1.73194,0.00479
+3.67212,1.40699,-1.29386,-1.83467,-0.01622,1.73231,0.00478
+3.67366,1.40663,-1.29403,-1.83383,-0.01690,1.73266,0.00478
+3.67520,1.40628,-1.29419,-1.83300,-0.01756,1.73302,0.00478
+3.67674,1.40594,-1.29435,-1.83218,-0.01822,1.73336,0.00478
+3.67829,1.40560,-1.29451,-1.83137,-0.01886,1.73371,0.00478
+3.67983,1.40527,-1.29466,-1.83058,-0.01950,1.73404,0.00478
+3.68137,1.40494,-1.29482,-1.82980,-0.02012,1.73437,0.00478
+3.68291,1.40461,-1.29497,-1.82904,-0.02073,1.73470,0.00478
+3.68445,1.40429,-1.29512,-1.82828,-0.02133,1.73502,0.00477
+3.68600,1.40398,-1.29527,-1.82754,-0.02192,1.73534,0.00477
+3.68754,1.40367,-1.29542,-1.82681,-0.02250,1.73565,0.00477
+3.68908,1.40337,-1.29557,-1.82610,-0.02307,1.73596,0.00477
+3.69062,1.40306,-1.29571,-1.82539,-0.02362,1.73627,0.00477
+3.69217,1.40277,-1.29585,-1.82470,-0.02417,1.73656,0.00477
+3.69371,1.40248,-1.29599,-1.82402,-0.02471,1.73686,0.00477
+3.69525,1.40219,-1.29613,-1.82335,-0.02524,1.73715,0.00476
+3.69679,1.40191,-1.29627,-1.82269,-0.02576,1.73743,0.00476
+3.69833,1.40163,-1.29641,-1.82204,-0.02627,1.73772,0.00476
+3.69988,1.40136,-1.29654,-1.82140,-0.02677,1.73799,0.00476
+3.70142,1.40109,-1.29668,-1.82078,-0.02727,1.73827,0.00476
+3.70296,1.40082,-1.29681,-1.82016,-0.02775,1.73854,0.00476
+3.70450,1.40056,-1.29694,-1.81955,-0.02823,1.73880,0.00476
+3.70605,1.40030,-1.29707,-1.81896,-0.02870,1.73906,0.00475
+3.70759,1.40005,-1.29719,-1.81837,-0.02915,1.73932,0.00475
+3.70913,1.39980,-1.29732,-1.81779,-0.02961,1.73957,0.00475
+3.71067,1.39955,-1.29744,-1.81723,-0.03005,1.73982,0.00475
+3.71221,1.39931,-1.29757,-1.81667,-0.03048,1.74007,0.00475
+3.71376,1.39907,-1.29769,-1.81612,-0.03091,1.74031,0.00475
+3.71530,1.39884,-1.29781,-1.81558,-0.03133,1.74055,0.00475
+3.71684,1.39860,-1.29793,-1.81505,-0.03175,1.74079,0.00475
+3.71838,1.39838,-1.29804,-1.81453,-0.03215,1.74102,0.00474
+3.71993,1.39815,-1.29816,-1.81402,-0.03255,1.74125,0.00474
+3.72147,1.39793,-1.29827,-1.81351,-0.03294,1.74147,0.00474
+3.72301,1.39771,-1.29838,-1.81302,-0.03333,1.74169,0.00474
+3.72455,1.39755,-1.29847,-1.81265,-0.03361,1.74186,0.00474
+3.72610,1.39719,-1.29864,-1.81192,-0.03416,1.74222,0.00474
+3.72764,1.39684,-1.29882,-1.81121,-0.03470,1.74257,0.00474
+3.72918,1.39650,-1.29899,-1.81050,-0.03523,1.74291,0.00473
+3.73072,1.39616,-1.29915,-1.80981,-0.03575,1.74326,0.00473
+3.73226,1.39583,-1.29932,-1.80913,-0.03626,1.74359,0.00473
+3.73381,1.39550,-1.29949,-1.80846,-0.03677,1.74392,0.00473
+3.73535,1.39518,-1.29965,-1.80781,-0.03726,1.74425,0.00473
+3.73689,1.39486,-1.29981,-1.80716,-0.03775,1.74457,0.00473
+3.73843,1.39455,-1.29997,-1.80652,-0.03823,1.74489,0.00472
+3.73998,1.39424,-1.30012,-1.80590,-0.03869,1.74520,0.00472
+3.74152,1.39393,-1.30028,-1.80528,-0.03915,1.74550,0.00472
+3.74306,1.39363,-1.30043,-1.80468,-0.03961,1.74581,0.00472
+3.74460,1.39334,-1.30058,-1.80408,-0.04005,1.74610,0.00472
+3.74614,1.39305,-1.30073,-1.80350,-0.04049,1.74640,0.00472
+3.74769,1.39276,-1.30088,-1.80292,-0.04092,1.74669,0.00472
+3.74923,1.39248,-1.30102,-1.80235,-0.04134,1.74697,0.00471
+3.75077,1.39220,-1.30117,-1.80180,-0.04175,1.74725,0.00471
+3.75231,1.39193,-1.30131,-1.80125,-0.04216,1.74753,0.00471
+3.75386,1.39166,-1.30145,-1.80071,-0.04256,1.74780,0.00471
+3.75540,1.39140,-1.30158,-1.80018,-0.04295,1.74807,0.00471
+3.75694,1.39114,-1.30172,-1.79966,-0.04334,1.74833,0.00471
+3.75848,1.39088,-1.30185,-1.79915,-0.04372,1.74859,0.00471
+3.76002,1.39063,-1.30199,-1.79864,-0.04409,1.74885,0.00470
+3.76157,1.39038,-1.30212,-1.79815,-0.04445,1.74910,0.00470
+3.76311,1.39020,-1.30221,-1.79779,-0.04472,1.74928,0.00470
+3.76465,1.38991,-1.30236,-1.79715,-0.04520,1.74957,0.00470
+3.76619,1.38963,-1.30251,-1.79652,-0.04568,1.74986,0.00470
+3.76774,1.38935,-1.30266,-1.79590,-0.04615,1.75014,0.00470
+3.76928,1.38907,-1.30281,-1.79530,-0.04661,1.75042,0.00470
+3.77082,1.38880,-1.30295,-1.79470,-0.04706,1.75070,0.00469
+3.77236,1.38853,-1.30309,-1.79411,-0.04751,1.75097,0.00469
+3.77390,1.38827,-1.30323,-1.79353,-0.04794,1.75124,0.00469
+3.77545,1.38801,-1.30337,-1.79297,-0.04837,1.75150,0.00469
+3.77699,1.38776,-1.30351,-1.79241,-0.04879,1.75176,0.00469
+3.77853,1.38751,-1.30364,-1.79186,-0.04921,1.75201,0.00469
+3.78007,1.38726,-1.30378,-1.79132,-0.04962,1.75226,0.00469
+3.78162,1.38701,-1.30391,-1.79079,-0.05002,1.75251,0.00468
+3.78316,1.38677,-1.30404,-1.79026,-0.05041,1.75276,0.00468
+3.78470,1.38654,-1.30417,-1.78975,-0.05079,1.75300,0.00468
+3.78624,1.38631,-1.30429,-1.78924,-0.05117,1.75323,0.00468
+3.78779,1.38608,-1.30442,-1.78875,-0.05155,1.75347,0.00468
+3.78933,1.38595,-1.30448,-1.78850,-0.05173,1.75359,0.00468
+3.79087,1.38542,-1.30475,-1.78751,-0.05244,1.75412,0.00468
+3.79241,1.38490,-1.30502,-1.78654,-0.05314,1.75464,0.00467
+3.79395,1.38439,-1.30529,-1.78558,-0.05383,1.75516,0.00467
+3.79550,1.38388,-1.30555,-1.78464,-0.05450,1.75566,0.00467
+3.79704,1.38338,-1.30580,-1.78372,-0.05516,1.75616,0.00467
+3.79858,1.38289,-1.30606,-1.78281,-0.05582,1.75666,0.00467
+3.80012,1.38241,-1.30631,-1.78191,-0.05646,1.75714,0.00467
+3.80167,1.38194,-1.30656,-1.78103,-0.05708,1.75762,0.00466
+3.80321,1.38147,-1.30680,-1.78016,-0.05770,1.75809,0.00466
+3.80475,1.38101,-1.30705,-1.77931,-0.05831,1.75855,0.00466
+3.80629,1.38055,-1.30728,-1.77847,-0.05890,1.75901,0.00466
+3.80783,1.38011,-1.30752,-1.77765,-0.05949,1.75946,0.00466
+3.80938,1.37967,-1.30775,-1.77684,-0.06007,1.75990,0.00465
+3.81092,1.37923,-1.30798,-1.77604,-0.06063,1.76034,0.00465
+3.81246,1.37881,-1.30821,-1.77525,-0.06119,1.76076,0.00465
+3.81400,1.37839,-1.30844,-1.77448,-0.06173,1.76119,0.00465
+3.81555,1.37798,-1.30866,-1.77372,-0.06227,1.76160,0.00465
+3.81709,1.37757,-1.30888,-1.77298,-0.06279,1.76201,0.00464
+3.81863,1.37717,-1.30909,-1.77224,-0.06331,1.76242,0.00464
+3.82017,1.37677,-1.30930,-1.77152,-0.06382,1.76281,0.00464
+3.82171,1.37638,-1.30952,-1.77081,-0.06432,1.76321,0.00464
+3.82326,1.37600,-1.30972,-1.77011,-0.06481,1.76359,0.00464
+3.82480,1.37563,-1.30993,-1.76942,-0.06529,1.76397,0.00464
+3.82634,1.37525,-1.31013,-1.76874,-0.06576,1.76435,0.00463
+3.82788,1.37489,-1.31033,-1.76808,-0.06623,1.76471,0.00463
+3.82943,1.37453,-1.31053,-1.76742,-0.06669,1.76508,0.00463
+3.83097,1.37418,-1.31072,-1.76678,-0.06714,1.76543,0.00463
+3.83251,1.37383,-1.31091,-1.76614,-0.06758,1.76579,0.00463
+3.83405,1.37348,-1.31110,-1.76552,-0.06801,1.76613,0.00462
+3.83560,1.37315,-1.31129,-1.76491,-0.06844,1.76648,0.00462
+3.83714,1.37281,-1.31147,-1.76430,-0.06885,1.76681,0.00462
+3.83868,1.37249,-1.31166,-1.76371,-0.06926,1.76714,0.00462
+3.84022,1.37216,-1.31184,-1.76313,-0.06967,1.76747,0.00462
+3.84176,1.37185,-1.31201,-1.76255,-0.07007,1.76779,0.00462
+3.84331,1.37153,-1.31219,-1.76199,-0.07046,1.76811,0.00461
+3.84485,1.37123,-1.31236,-1.76143,-0.07084,1.76842,0.00461
+3.84639,1.37092,-1.31253,-1.76089,-0.07121,1.76873,0.00461
+3.84793,1.37062,-1.31270,-1.76035,-0.07158,1.76903,0.00461
+3.84948,1.37033,-1.31286,-1.75982,-0.07195,1.76933,0.00461
+3.85102,1.37004,-1.31303,-1.75930,-0.07230,1.76962,0.00461
+3.85256,1.36975,-1.31319,-1.75879,-0.07265,1.76991,0.00460
+3.85410,1.36947,-1.31335,-1.75829,-0.07300,1.77019,0.00460
+3.85564,1.36920,-1.31350,-1.75780,-0.07334,1.77047,0.00460
+3.85719,1.36915,-1.31353,-1.75769,-0.07342,1.77052,0.00460
+3.85873,1.36867,-1.31380,-1.75664,-0.07419,1.77100,0.00460
+3.86027,1.36820,-1.31407,-1.75561,-0.07494,1.77148,0.00460
+3.86181,1.36774,-1.31433,-1.75460,-0.07569,1.77194,0.00459
+3.86336,1.36729,-1.31459,-1.75360,-0.07642,1.77240,0.00459
+3.86490,1.36684,-1.31485,-1.75262,-0.07714,1.77285,0.00459
+3.86644,1.36640,-1.31511,-1.75165,-0.07784,1.77330,0.00459
+3.86798,1.36596,-1.31536,-1.75070,-0.07853,1.77374,0.00459
+3.86952,1.36553,-1.31561,-1.74977,-0.07922,1.77417,0.00459
+3.87107,1.36511,-1.31585,-1.74885,-0.07988,1.77460,0.00458
+3.87261,1.36470,-1.31610,-1.74795,-0.08054,1.77501,0.00458
+3.87415,1.36429,-1.31634,-1.74706,-0.08119,1.77543,0.00458
+3.87569,1.36389,-1.31657,-1.74618,-0.08182,1.77583,0.00458
+3.87724,1.36349,-1.31681,-1.74532,-0.08244,1.77623,0.00458
+3.87878,1.36310,-1.31704,-1.74448,-0.08306,1.77663,0.00458
+3.88032,1.36272,-1.31727,-1.74364,-0.08366,1.77702,0.00457
+3.88186,1.36234,-1.31749,-1.74283,-0.08425,1.77740,0.00457
+3.88341,1.36197,-1.31771,-1.74202,-0.08483,1.77778,0.00457
+3.88495,1.36160,-1.31793,-1.74123,-0.08540,1.77815,0.00457
+3.88649,1.36124,-1.31815,-1.74045,-0.08596,1.77851,0.00457
+3.88803,1.36088,-1.31836,-1.73968,-0.08651,1.77887,0.00457
+3.88957,1.36053,-1.31857,-1.73893,-0.08705,1.77923,0.00456
+3.89112,1.36019,-1.31878,-1.73819,-0.08759,1.77958,0.00456
+3.89266,1.35985,-1.31899,-1.73746,-0.08811,1.77992,0.00456
+3.89420,1.35952,-1.31919,-1.73674,-0.08862,1.78026,0.00456
+3.89574,1.35919,-1.31939,-1.73603,-0.08913,1.78059,0.00456
+3.89729,1.35886,-1.31959,-1.73534,-0.08962,1.78092,0.00455
+3.89883,1.35855,-1.31979,-1.73466,-0.09011,1.78125,0.00455
+3.90037,1.35823,-1.31998,-1.73398,-0.09059,1.78156,0.00455
+3.90191,1.35792,-1.32017,-1.73332,-0.09106,1.78188,0.00455
+3.90345,1.35762,-1.32036,-1.73267,-0.09152,1.78219,0.00455
+3.90500,1.35732,-1.32054,-1.73203,-0.09197,1.78249,0.00455
+3.90654,1.35702,-1.32072,-1.73140,-0.09242,1.78279,0.00454
+3.90808,1.35673,-1.32090,-1.73079,-0.09286,1.78309,0.00454
+3.90962,1.35645,-1.32108,-1.73018,-0.09329,1.78338,0.00454
+3.91117,1.35616,-1.32126,-1.72958,-0.09371,1.78367,0.00454
+3.91271,1.35589,-1.32143,-1.72899,-0.09413,1.78395,0.00454
+3.91425,1.35561,-1.32160,-1.72841,-0.09454,1.78423,0.00454
+3.91579,1.35534,-1.32177,-1.72784,-0.09494,1.78450,0.00453
+3.91733,1.35508,-1.32194,-1.72728,-0.09533,1.78477,0.00453
+3.91888,1.35482,-1.32210,-1.72673,-0.09572,1.78504,0.00453
+3.92042,1.35456,-1.32226,-1.72619,-0.09610,1.78530,0.00453
+3.92196,1.35431,-1.32242,-1.72566,-0.09647,1.78556,0.00453
+3.92350,1.35406,-1.32258,-1.72513,-0.09684,1.78581,0.00452
+3.92505,1.35381,-1.32274,-1.72462,-0.09720,1.78606,0.00452
+3.92659,1.35357,-1.32289,-1.72411,-0.09756,1.78631,0.00452
+3.92813,1.35331,-1.32305,-1.72358,-0.09792,1.78658,0.00452
+3.92967,1.35305,-1.32321,-1.72306,-0.09828,1.78684,0.00452
+3.93122,1.35280,-1.32337,-1.72255,-0.09863,1.78710,0.00452
+3.93276,1.35267,-1.32345,-1.72229,-0.09881,1.78722,0.00452
+3.93430,1.35242,-1.32361,-1.72173,-0.09922,1.78747,0.00451
+3.93584,1.35218,-1.32377,-1.72118,-0.09961,1.78772,0.00451
+3.93738,1.35194,-1.32392,-1.72064,-0.10000,1.78796,0.00451
+3.93893,1.35171,-1.32408,-1.72010,-0.10038,1.78820,0.00451
+3.94047,1.35148,-1.32423,-1.71958,-0.10075,1.78844,0.00451
+3.94201,1.35125,-1.32438,-1.71906,-0.10112,1.78867,0.00451
+3.94355,1.35109,-1.32448,-1.71870,-0.10138,1.78884,0.00450
+3.94510,1.35085,-1.32464,-1.71808,-0.10183,1.78909,0.00450
+3.94664,1.35061,-1.32480,-1.71748,-0.10228,1.78933,0.00450
+3.94818,1.35037,-1.32496,-1.71688,-0.10271,1.78957,0.00450
+3.94972,1.35014,-1.32512,-1.71630,-0.10314,1.78981,0.00450
+3.95126,1.34991,-1.32527,-1.71573,-0.10356,1.79004,0.00450
+3.95281,1.34968,-1.32542,-1.71516,-0.10397,1.79028,0.00450
+3.95435,1.34946,-1.32557,-1.71460,-0.10438,1.79050,0.00449
+3.95589,1.34924,-1.32572,-1.71406,-0.10478,1.79073,0.00449
+3.95743,1.34902,-1.32587,-1.71352,-0.10517,1.79095,0.00449
+3.95898,1.34881,-1.32601,-1.71299,-0.10555,1.79117,0.00449
+3.96052,1.34860,-1.32615,-1.71247,-0.10593,1.79138,0.00449
+3.96206,1.34844,-1.32627,-1.71206,-0.10623,1.79155,0.00449
+3.96360,1.34821,-1.32642,-1.71155,-0.10659,1.79178,0.00449
+3.96514,1.34819,-1.32643,-1.71149,-0.10663,1.79180,0.00449
+3.96669,1.34796,-1.32658,-1.71097,-0.10701,1.79203,0.00448
+3.96823,1.34774,-1.32673,-1.71045,-0.10738,1.79226,0.00448
+3.96977,1.34770,-1.32677,-1.71026,-0.10753,1.79231,0.00448
+3.97131,1.34773,-1.32676,-1.71023,-0.10758,1.79227,0.00448
+3.97286,1.34808,-1.32664,-1.70989,-0.10803,1.79194,0.00448
+3.97440,1.34842,-1.32652,-1.70955,-0.10849,1.79161,0.00448
+3.97594,1.34876,-1.32641,-1.70923,-0.10893,1.79128,0.00448
+3.97748,1.34910,-1.32630,-1.70890,-0.10936,1.79097,0.00448
+3.97903,1.34942,-1.32619,-1.70859,-0.10979,1.79065,0.00448
+3.98057,1.34975,-1.32608,-1.70828,-0.11021,1.79034,0.00449
+3.98211,1.35006,-1.32598,-1.70797,-0.11062,1.79004,0.00449
+3.98365,1.35026,-1.32591,-1.70779,-0.11087,1.78985,0.00449
+3.98519,1.35069,-1.32575,-1.70754,-0.11129,1.78943,0.00449
+3.98674,1.35111,-1.32560,-1.70728,-0.11170,1.78903,0.00449
+3.98828,1.35152,-1.32545,-1.70703,-0.11210,1.78863,0.00449
+3.98982,1.35193,-1.32530,-1.70679,-0.11250,1.78824,0.00449
+3.99136,1.35233,-1.32515,-1.70654,-0.11289,1.78785,0.00449
+3.99291,1.35273,-1.32501,-1.70631,-0.11327,1.78747,0.00449
+3.99445,1.35311,-1.32487,-1.70607,-0.11365,1.78709,0.00449
+3.99599,1.35339,-1.32477,-1.70592,-0.11391,1.78682,0.00449
+3.99753,1.35386,-1.32459,-1.70572,-0.11429,1.78636,0.00449
+3.99907,1.35433,-1.32441,-1.70553,-0.11466,1.78591,0.00449
+4.00062,1.35479,-1.32424,-1.70534,-0.11502,1.78547,0.00449
+4.00216,1.35524,-1.32406,-1.70515,-0.11538,1.78503,0.00450
+4.00370,1.35568,-1.32390,-1.70497,-0.11574,1.78460,0.00450
+4.00524,1.35612,-1.32373,-1.70479,-0.11608,1.78417,0.00450
+4.00679,1.35655,-1.32357,-1.70462,-0.11642,1.78375,0.00450
+4.00833,1.35669,-1.32352,-1.70456,-0.11653,1.78362,0.00450
+4.00987,1.35720,-1.32332,-1.70438,-0.11691,1.78312,0.00450
+4.01141,1.35771,-1.32312,-1.70420,-0.11729,1.78262,0.00450
+4.01295,1.35821,-1.32293,-1.70402,-0.11767,1.78213,0.00450
+4.01450,1.35870,-1.32274,-1.70385,-0.11803,1.78165,0.00450
+4.01604,1.35919,-1.32256,-1.70368,-0.11839,1.78118,0.00450
+4.01758,1.35967,-1.32238,-1.70351,-0.11874,1.78071,0.00450
+4.01912,1.36014,-1.32220,-1.70334,-0.11909,1.78025,0.00451
+4.02067,1.36060,-1.32202,-1.70318,-0.11943,1.77980,0.00451
+4.02221,1.36106,-1.32185,-1.70302,-0.11977,1.77935,0.00451
+4.02375,1.36151,-1.32168,-1.70287,-0.12009,1.77891,0.00451
+4.02529,1.36182,-1.32156,-1.70276,-0.12032,1.77861,0.00451
+4.02684,1.36231,-1.32138,-1.70262,-0.12065,1.77813,0.00451
+4.02838,1.36278,-1.32119,-1.70249,-0.12097,1.77766,0.00451
+4.02992,1.36325,-1.32101,-1.70236,-0.12128,1.77720,0.00451
+4.03146,1.36371,-1.32084,-1.70223,-0.12159,1.77675,0.00451
+4.03300,1.36386,-1.32078,-1.70219,-0.12169,1.77661,0.00451
+4.03455,1.36441,-1.32056,-1.70210,-0.12200,1.77607,0.00451
+4.03609,1.36495,-1.32035,-1.70200,-0.12231,1.77554,0.00452
+4.03763,1.36548,-1.32014,-1.70191,-0.12262,1.77502,0.00452
+4.03917,1.36600,-1.31994,-1.70182,-0.12292,1.77451,0.00452
+4.04072,1.36652,-1.31974,-1.70173,-0.12321,1.77400,0.00452
+4.04226,1.36703,-1.31954,-1.70164,-0.12350,1.77350,0.00452
+4.04380,1.36752,-1.31934,-1.70156,-0.12378,1.77301,0.00452
+4.04534,1.36802,-1.31915,-1.70147,-0.12406,1.77253,0.00452
+4.04688,1.36836,-1.31902,-1.70142,-0.12426,1.77219,0.00452
+4.04843,1.36891,-1.31880,-1.70133,-0.12456,1.77165,0.00452
+4.04997,1.36946,-1.31859,-1.70126,-0.12486,1.77111,0.00452
+4.05151,1.36999,-1.31838,-1.70118,-0.12515,1.77059,0.00453
+4.05305,1.37052,-1.31817,-1.70110,-0.12543,1.77007,0.00453
+4.05460,1.37103,-1.31797,-1.70103,-0.12571,1.76956,0.00453
+4.05614,1.37154,-1.31777,-1.70096,-0.12599,1.76906,0.00453
+4.05768,1.37204,-1.31757,-1.70088,-0.12626,1.76857,0.00453
+4.05922,1.37249,-1.31740,-1.70082,-0.12650,1.76813,0.00453
+4.06076,1.37300,-1.31720,-1.70076,-0.12676,1.76762,0.00453
+4.06231,1.37351,-1.31700,-1.70070,-0.12702,1.76713,0.00453
+4.06385,1.37378,-1.31689,-1.70068,-0.12716,1.76685,0.00453
+4.06539,1.37456,-1.31658,-1.70071,-0.12745,1.76609,0.00454
+4.06693,1.37533,-1.31626,-1.70074,-0.12774,1.76533,0.00454
+4.06848,1.37608,-1.31595,-1.70077,-0.12802,1.76459,0.00454
+4.07002,1.37683,-1.31565,-1.70079,-0.12830,1.76386,0.00454
+4.07156,1.37756,-1.31535,-1.70082,-0.12858,1.76314,0.00454
+4.07310,1.37828,-1.31506,-1.70085,-0.12885,1.76242,0.00455
+4.07465,1.37899,-1.31477,-1.70088,-0.12911,1.76172,0.00455
+4.07619,1.37969,-1.31449,-1.70090,-0.12937,1.76103,0.00455
+4.07773,1.38038,-1.31421,-1.70093,-0.12963,1.76035,0.00455
+4.07927,1.38106,-1.31394,-1.70096,-0.12988,1.75968,0.00455
+4.08081,1.38173,-1.31367,-1.70099,-0.13013,1.75902,0.00456
+4.08236,1.38238,-1.31340,-1.70101,-0.13037,1.75838,0.00456
+4.08390,1.38303,-1.31314,-1.70104,-0.13061,1.75773,0.00456
+4.08544,1.38367,-1.31289,-1.70106,-0.13084,1.75710,0.00456
+4.08698,1.38430,-1.31263,-1.70109,-0.13107,1.75648,0.00456
+4.08853,1.38492,-1.31239,-1.70112,-0.13130,1.75587,0.00456
+4.09007,1.38553,-1.31214,-1.70114,-0.13152,1.75527,0.00457
+4.09161,1.38613,-1.31190,-1.70117,-0.13174,1.75467,0.00457
+4.09315,1.38672,-1.31167,-1.70119,-0.13195,1.75409,0.00457
+4.09469,1.38730,-1.31144,-1.70122,-0.13217,1.75351,0.00457
+4.09624,1.38787,-1.31121,-1.70124,-0.13237,1.75295,0.00457
+4.09778,1.38844,-1.31098,-1.70126,-0.13258,1.75239,0.00457
+4.09932,1.38899,-1.31076,-1.70129,-0.13278,1.75184,0.00457
+4.10086,1.38954,-1.31055,-1.70131,-0.13298,1.75129,0.00458
+4.10241,1.39008,-1.31033,-1.70134,-0.13317,1.75076,0.00458
+4.10395,1.39035,-1.31023,-1.70135,-0.13326,1.75049,0.00458
+4.10549,1.39090,-1.31001,-1.70138,-0.13346,1.74995,0.00458
+4.10703,1.39144,-1.30979,-1.70141,-0.13365,1.74941,0.00458
+4.10857,1.39177,-1.30966,-1.70143,-0.13376,1.74908,0.00458
+4.11012,1.39240,-1.30942,-1.70144,-0.13400,1.74846,0.00458
+4.11166,1.39302,-1.30917,-1.70146,-0.13423,1.74785,0.00459
+4.11320,1.39362,-1.30893,-1.70147,-0.13446,1.74724,0.00459
+4.11474,1.39422,-1.30870,-1.70149,-0.13468,1.74665,0.00459
+4.11629,1.39481,-1.30847,-1.70150,-0.13490,1.74607,0.00459
+4.11783,1.39539,-1.30824,-1.70152,-0.13512,1.74549,0.00459
+4.11937,1.39596,-1.30802,-1.70154,-0.13533,1.74492,0.00459
+4.12091,1.39653,-1.30780,-1.70155,-0.13554,1.74437,0.00460
+4.12246,1.39708,-1.30758,-1.70157,-0.13574,1.74381,0.00460
+4.12400,1.39763,-1.30737,-1.70158,-0.13594,1.74327,0.00460
+4.12554,1.39816,-1.30716,-1.70160,-0.13614,1.74274,0.00460
+4.12708,1.39833,-1.30709,-1.70160,-0.13620,1.74258,0.00460
+4.12862,1.39888,-1.30688,-1.70162,-0.13640,1.74203,0.00460
+4.13017,1.39942,-1.30667,-1.70165,-0.13659,1.74149,0.00460
+4.13171,1.39977,-1.30653,-1.70167,-0.13671,1.74115,0.00460
+4.13325,1.40054,-1.30622,-1.70176,-0.13693,1.74038,0.00461
+4.13479,1.40130,-1.30592,-1.70185,-0.13715,1.73963,0.00461
+4.13634,1.40205,-1.30562,-1.70194,-0.13736,1.73889,0.00461
+4.13788,1.40279,-1.30533,-1.70202,-0.13757,1.73815,0.00461
+4.13942,1.40352,-1.30504,-1.70211,-0.13778,1.73743,0.00462
+4.14096,1.40423,-1.30476,-1.70219,-0.13798,1.73672,0.00462
+4.14250,1.40494,-1.30448,-1.70228,-0.13818,1.73602,0.00462
+4.14405,1.40563,-1.30420,-1.70236,-0.13838,1.73534,0.00462
+4.14559,1.40632,-1.30393,-1.70244,-0.13857,1.73466,0.00462
+4.14713,1.40699,-1.30367,-1.70252,-0.13876,1.73399,0.00463
+4.14867,1.40765,-1.30340,-1.70260,-0.13895,1.73333,0.00463
+4.15022,1.40831,-1.30315,-1.70268,-0.13913,1.73268,0.00463
+4.15176,1.40895,-1.30289,-1.70276,-0.13931,1.73204,0.00463
+4.15330,1.40958,-1.30265,-1.70283,-0.13949,1.73141,0.00463
+4.15484,1.41021,-1.30240,-1.70291,-0.13966,1.73079,0.00464
+4.15638,1.41082,-1.30216,-1.70298,-0.13984,1.73018,0.00464
+4.15793,1.41143,-1.30192,-1.70305,-0.14000,1.72958,0.00464
+4.15947,1.41203,-1.30169,-1.70312,-0.14017,1.72898,0.00464
+4.16101,1.41261,-1.30146,-1.70320,-0.14033,1.72840,0.00464
+4.16255,1.41319,-1.30123,-1.70327,-0.14049,1.72782,0.00464
+4.16410,1.41376,-1.30101,-1.70333,-0.14065,1.72725,0.00465
+4.16564,1.41432,-1.30079,-1.70340,-0.14080,1.72669,0.00465
+4.16718,1.41489,-1.30057,-1.70347,-0.14096,1.72613,0.00465
+4.16872,1.41558,-1.30030,-1.70358,-0.14113,1.72544,0.00465
+4.17027,1.41626,-1.30003,-1.70369,-0.14129,1.72477,0.00465
+4.17181,1.41694,-1.29977,-1.70379,-0.14146,1.72410,0.00466
+4.17335,1.41760,-1.29951,-1.70389,-0.14162,1.72344,0.00466
+4.17489,1.41825,-1.29926,-1.70399,-0.14177,1.72279,0.00466
+4.17643,1.41889,-1.29901,-1.70409,-0.14193,1.72216,0.00466
+4.17798,1.41952,-1.29876,-1.70419,-0.14208,1.72153,0.00466
+4.17952,1.42014,-1.29852,-1.70429,-0.14223,1.72091,0.00467
+4.18106,1.42075,-1.29828,-1.70438,-0.14238,1.72030,0.00467
+4.18260,1.42136,-1.29805,-1.70447,-0.14252,1.71970,0.00467
+4.18415,1.42195,-1.29782,-1.70457,-0.14267,1.71911,0.00467
+4.18569,1.42254,-1.29759,-1.70466,-0.14281,1.71852,0.00467
+4.18723,1.42311,-1.29737,-1.70475,-0.14294,1.71795,0.00468
+4.18877,1.42368,-1.29715,-1.70484,-0.14308,1.71738,0.00468
+4.19031,1.42424,-1.29693,-1.70492,-0.14321,1.71683,0.00468
+4.19186,1.42432,-1.29690,-1.70494,-0.14323,1.71675,0.00468
+4.19340,1.42509,-1.29660,-1.70508,-0.14339,1.71598,0.00468
+4.19494,1.42585,-1.29630,-1.70523,-0.14355,1.71523,0.00468
+4.19648,1.42660,-1.29601,-1.70537,-0.14370,1.71449,0.00469
+4.19803,1.42733,-1.29572,-1.70551,-0.14385,1.71375,0.00469
+4.19957,1.42806,-1.29544,-1.70564,-0.14400,1.71303,0.00469
+4.20111,1.42877,-1.29516,-1.70578,-0.14415,1.71232,0.00469
+4.20265,1.42948,-1.29489,-1.70591,-0.14430,1.71162,0.00470
+4.20419,1.43017,-1.29462,-1.70604,-0.14444,1.71093,0.00470
+4.20574,1.43086,-1.29436,-1.70617,-0.14458,1.71025,0.00470
+4.20728,1.43153,-1.29410,-1.70630,-0.14472,1.70958,0.00470
+4.20882,1.43219,-1.29384,-1.70642,-0.14485,1.70892,0.00471
+4.21036,1.43285,-1.29359,-1.70655,-0.14498,1.70827,0.00471
+4.21191,1.43349,-1.29334,-1.70667,-0.14512,1.70763,0.00471
+4.21345,1.43412,-1.29310,-1.70679,-0.14524,1.70699,0.00471
+4.21499,1.43475,-1.29286,-1.70690,-0.14537,1.70637,0.00471
+4.21653,1.43536,-1.29262,-1.70702,-0.14549,1.70576,0.00472
+4.21808,1.43597,-1.29239,-1.70713,-0.14562,1.70515,0.00472
+4.21962,1.43656,-1.29216,-1.70725,-0.14574,1.70456,0.00472
+4.22116,1.43715,-1.29193,-1.70736,-0.14586,1.70397,0.00472
+4.22270,1.43773,-1.29171,-1.70747,-0.14597,1.70340,0.00472
+4.22424,1.43830,-1.29149,-1.70758,-0.14609,1.70283,0.00473
+4.22579,1.43871,-1.29134,-1.70765,-0.14617,1.70242,0.00473
+4.22733,1.43941,-1.29107,-1.70780,-0.14630,1.70172,0.00473
+4.22887,1.44011,-1.29080,-1.70794,-0.14643,1.70103,0.00473
+4.23041,1.44079,-1.29054,-1.70808,-0.14655,1.70035,0.00474
+4.23196,1.44146,-1.29028,-1.70822,-0.14668,1.69967,0.00474
+4.23350,1.44213,-1.29003,-1.70835,-0.14680,1.69901,0.00474
+4.23504,1.44278,-1.28978,-1.70848,-0.14692,1.69836,0.00474
+4.23658,1.44342,-1.28953,-1.70862,-0.14704,1.69772,0.00474
+4.23812,1.44406,-1.28929,-1.70874,-0.14715,1.69709,0.00475
+4.23967,1.44468,-1.28905,-1.70887,-0.14727,1.69647,0.00475
+4.24121,1.44530,-1.28882,-1.70900,-0.14738,1.69585,0.00475
+4.24275,1.44590,-1.28859,-1.70912,-0.14749,1.69525,0.00475
+4.24429,1.44650,-1.28836,-1.70924,-0.14760,1.69465,0.00475
+4.24584,1.44709,-1.28814,-1.70936,-0.14771,1.69407,0.00476
+4.24738,1.44767,-1.28792,-1.70948,-0.14781,1.69349,0.00476
+4.24892,1.44824,-1.28770,-1.70960,-0.14791,1.69292,0.00476
+4.25046,1.44842,-1.28763,-1.70963,-0.14795,1.69273,0.00476
+4.25200,1.44916,-1.28736,-1.70975,-0.14811,1.69200,0.00476
+4.25355,1.44988,-1.28709,-1.70986,-0.14827,1.69128,0.00477
+4.25509,1.45059,-1.28683,-1.70997,-0.14843,1.69057,0.00477
+4.25663,1.45130,-1.28656,-1.71008,-0.14858,1.68987,0.00477
+4.25817,1.45199,-1.28631,-1.71019,-0.14874,1.68918,0.00477
+4.25972,1.45267,-1.28605,-1.71030,-0.14889,1.68850,0.00478
+4.26126,1.45334,-1.28581,-1.71040,-0.14903,1.68784,0.00478
+4.26280,1.45400,-1.28556,-1.71051,-0.14918,1.68718,0.00478
+4.26434,1.45465,-1.28532,-1.71061,-0.14932,1.68653,0.00478
+4.26589,1.45529,-1.28508,-1.71071,-0.14946,1.68589,0.00479
+4.26743,1.45593,-1.28485,-1.71081,-0.14959,1.68526,0.00479
+4.26897,1.45655,-1.28462,-1.71091,-0.14973,1.68464,0.00479
+4.27051,1.45716,-1.28439,-1.71101,-0.14986,1.68402,0.00479
+4.27205,1.45777,-1.28417,-1.71110,-0.14999,1.68342,0.00480
+4.27360,1.45836,-1.28395,-1.71120,-0.15012,1.68283,0.00480
+4.27514,1.45895,-1.28374,-1.71129,-0.15025,1.68224,0.00480
+4.27668,1.45952,-1.28353,-1.71138,-0.15037,1.68166,0.00480
+4.27822,1.46010,-1.28331,-1.71147,-0.15049,1.68109,0.00480
+4.27977,1.46074,-1.28308,-1.71158,-0.15062,1.68046,0.00481
+4.28131,1.46136,-1.28285,-1.71169,-0.15075,1.67983,0.00481
+4.28285,1.46198,-1.28262,-1.71179,-0.15088,1.67922,0.00481
+4.28439,1.46259,-1.28240,-1.71189,-0.15100,1.67861,0.00481
+4.28593,1.46318,-1.28218,-1.71200,-0.15112,1.67801,0.00481
+4.28748,1.46377,-1.28197,-1.71210,-0.15124,1.67742,0.00482
+4.28902,1.46435,-1.28175,-1.71219,-0.15136,1.67684,0.00482
+4.29056,1.46493,-1.28155,-1.71229,-0.15147,1.67627,0.00482
+4.29210,1.46499,-1.28152,-1.71230,-0.15148,1.67621,0.00482
+4.29365,1.46563,-1.28129,-1.71242,-0.15161,1.67557,0.00482
+4.29519,1.46626,-1.28106,-1.71253,-0.15173,1.67494,0.00483
+4.29673,1.46687,-1.28083,-1.71264,-0.15185,1.67433,0.00483
+4.29827,1.46748,-1.28061,-1.71275,-0.15196,1.67372,0.00483
+4.29981,1.46808,-1.28039,-1.71286,-0.15208,1.67312,0.00483
+4.30136,1.46868,-1.28018,-1.71296,-0.15219,1.67253,0.00483
+4.30290,1.46926,-1.27997,-1.71307,-0.15230,1.67195,0.00484
+4.30444,1.46983,-1.27976,-1.71317,-0.15241,1.67137,0.00484
+4.30598,1.46997,-1.27971,-1.71319,-0.15244,1.67123,0.00484
+4.30753,1.47082,-1.27941,-1.71329,-0.15264,1.67039,0.00484
+4.30907,1.47165,-1.27911,-1.71339,-0.15284,1.66957,0.00485
+4.31061,1.47246,-1.27882,-1.71349,-0.15303,1.66876,0.00485
+4.31215,1.47327,-1.27854,-1.71359,-0.15322,1.66796,0.00485
+4.31370,1.47406,-1.27826,-1.71368,-0.15341,1.66717,0.00485
+4.31524,1.47484,-1.27798,-1.71378,-0.15360,1.66639,0.00486
+4.31678,1.47561,-1.27771,-1.71387,-0.15378,1.66563,0.00486
+4.31832,1.47637,-1.27744,-1.71397,-0.15395,1.66487,0.00486
+4.31986,1.47712,-1.27718,-1.71406,-0.15413,1.66413,0.00487
+4.32141,1.47785,-1.27692,-1.71415,-0.15430,1.66340,0.00487
+4.32295,1.47858,-1.27667,-1.71424,-0.15447,1.66267,0.00487
+4.32449,1.47929,-1.27642,-1.71432,-0.15464,1.66196,0.00487
+4.32603,1.48000,-1.27617,-1.71441,-0.15480,1.66126,0.00488
+4.32758,1.48069,-1.27593,-1.71449,-0.15496,1.66057,0.00488
+4.32912,1.48137,-1.27569,-1.71458,-0.15512,1.65989,0.00488
+4.33066,1.48205,-1.27546,-1.71466,-0.15527,1.65922,0.00488
+4.33220,1.48271,-1.27522,-1.71474,-0.15543,1.65856,0.00489
+4.33374,1.48336,-1.27500,-1.71482,-0.15558,1.65791,0.00489
+4.33529,1.48400,-1.27477,-1.71490,-0.15572,1.65726,0.00489
+4.33683,1.48464,-1.27455,-1.71498,-0.15587,1.65663,0.00489
+4.33837,1.48526,-1.27434,-1.71506,-0.15601,1.65601,0.00490
+4.33991,1.48588,-1.27412,-1.71514,-0.15615,1.65539,0.00490
+4.34146,1.48648,-1.27391,-1.71521,-0.15629,1.65479,0.00490
+4.34300,1.48708,-1.27370,-1.71529,-0.15643,1.65419,0.00490
+4.34454,1.48767,-1.27350,-1.71536,-0.15656,1.65360,0.00491
+4.34608,1.48825,-1.27330,-1.71543,-0.15669,1.65302,0.00491
+4.34762,1.48854,-1.27320,-1.71547,-0.15676,1.65273,0.00491
+4.34917,1.48918,-1.27297,-1.71556,-0.15690,1.65209,0.00491
+4.35071,1.48982,-1.27276,-1.71564,-0.15703,1.65146,0.00491
+4.35225,1.49044,-1.27254,-1.71573,-0.15717,1.65084,0.00492
+4.35379,1.49105,-1.27233,-1.71582,-0.15730,1.65022,0.00492
+4.35534,1.49166,-1.27212,-1.71590,-0.15742,1.64962,0.00492
+4.35688,1.49225,-1.27191,-1.71598,-0.15755,1.64902,0.00492
+4.35842,1.49284,-1.27171,-1.71606,-0.15768,1.64843,0.00493
+4.35996,1.49342,-1.27151,-1.71614,-0.15780,1.64786,0.00493
+4.36151,1.49356,-1.27146,-1.71617,-0.15783,1.64771,0.00493
+4.36305,1.49441,-1.27117,-1.71631,-0.15798,1.64687,0.00493
+4.36459,1.49525,-1.27088,-1.71645,-0.15813,1.64604,0.00493
+4.36613,1.49607,-1.27060,-1.71658,-0.15828,1.64522,0.00494
+4.36767,1.49688,-1.27032,-1.71672,-0.15843,1.64441,0.00494
+4.36922,1.49768,-1.27004,-1.71685,-0.15858,1.64362,0.00494
+4.37076,1.49847,-1.26977,-1.71698,-0.15872,1.64284,0.00495
+4.37230,1.49924,-1.26951,-1.71711,-0.15886,1.64206,0.00495
+4.37384,1.50001,-1.26925,-1.71724,-0.15900,1.64130,0.00495
+4.37539,1.50076,-1.26899,-1.71737,-0.15914,1.64055,0.00496
+4.37693,1.50150,-1.26873,-1.71749,-0.15927,1.63981,0.00496
+4.37847,1.50223,-1.26849,-1.71761,-0.15940,1.63908,0.00496
+4.38001,1.50295,-1.26824,-1.71773,-0.15953,1.63837,0.00496
+4.38155,1.50366,-1.26800,-1.71785,-0.15966,1.63766,0.00497
+4.38310,1.50436,-1.26776,-1.71797,-0.15978,1.63696,0.00497
+4.38464,1.50505,-1.26753,-1.71808,-0.15991,1.63628,0.00497
+4.38618,1.50573,-1.26729,-1.71820,-0.16003,1.63560,0.00497
+4.38772,1.50640,-1.26707,-1.71831,-0.16015,1.63493,0.00498
+4.38927,1.50705,-1.26684,-1.71842,-0.16026,1.63427,0.00498
+4.39081,1.50770,-1.26662,-1.71853,-0.16038,1.63363,0.00498
+4.39235,1.50834,-1.26641,-1.71863,-0.16049,1.63299,0.00499
+4.39389,1.50897,-1.26619,-1.71874,-0.16060,1.63236,0.00499
+4.39543,1.50959,-1.26598,-1.71884,-0.16071,1.63174,0.00499
+4.39698,1.51020,-1.26578,-1.71895,-0.16082,1.63113,0.00499
+4.39852,1.51080,-1.26557,-1.71905,-0.16093,1.63052,0.00499
+4.40006,1.51140,-1.26537,-1.71915,-0.16103,1.62993,0.00500
+4.40160,1.51198,-1.26517,-1.71925,-0.16113,1.62934,0.00500
+4.40315,1.51210,-1.26513,-1.71926,-0.16116,1.62922,0.00500
+4.40469,1.51273,-1.26492,-1.71935,-0.16128,1.62860,0.00500
+4.40623,1.51335,-1.26472,-1.71944,-0.16141,1.62798,0.00500
+4.40777,1.51395,-1.26452,-1.71952,-0.16153,1.62738,0.00501
+4.40932,1.51455,-1.26432,-1.71960,-0.16165,1.62678,0.00501
+4.41086,1.51514,-1.26412,-1.71968,-0.16177,1.62619,0.00501
+4.41240,1.51562,-1.26396,-1.71975,-0.16186,1.62571,0.00501
+4.41394,1.51629,-1.26374,-1.71985,-0.16199,1.62504,0.00502
+4.41548,1.51696,-1.26352,-1.71995,-0.16211,1.62437,0.00502
+4.41703,1.51762,-1.26330,-1.72005,-0.16224,1.62371,0.00502
+4.41857,1.51826,-1.26308,-1.72015,-0.16236,1.62307,0.00502
+4.42011,1.51890,-1.26287,-1.72024,-0.16248,1.62243,0.00503
+4.42165,1.51953,-1.26267,-1.72034,-0.16259,1.62180,0.00503
+4.42320,1.52015,-1.26246,-1.72043,-0.16271,1.62119,0.00503
+4.42474,1.52076,-1.26226,-1.72052,-0.16282,1.62058,0.00503
+4.42628,1.52136,-1.26206,-1.72061,-0.16293,1.61998,0.00504
+4.42782,1.52195,-1.26186,-1.72070,-0.16304,1.61938,0.00504
+4.42936,1.52242,-1.26171,-1.72077,-0.16313,1.61891,0.00504
+4.43091,1.52302,-1.26151,-1.72086,-0.16324,1.61831,0.00504
+4.43245,1.52362,-1.26132,-1.72095,-0.16335,1.61772,0.00505
+4.43399,1.52414,-1.26114,-1.72104,-0.16344,1.61719,0.00505
+4.43553,1.52475,-1.26094,-1.72113,-0.16355,1.61659,0.00505
+4.43708,1.52534,-1.26075,-1.72122,-0.16366,1.61599,0.00505
+4.43862,1.52587,-1.26057,-1.72131,-0.16375,1.61547,0.00505
+4.44016,1.52647,-1.26038,-1.72140,-0.16385,1.61486,0.00506
+4.44170,1.52706,-1.26018,-1.72150,-0.16396,1.61427,0.00506
+4.44324,1.52753,-1.26003,-1.72157,-0.16404,1.61380,0.00506
+4.44479,1.52763,-1.26000,-1.72152,-0.16411,1.61370,0.00506
+4.44633,1.52744,-1.26012,-1.72094,-0.16458,1.61388,0.00506
+4.44787,1.52726,-1.26024,-1.72036,-0.16503,1.61405,0.00506
+4.44941,1.52708,-1.26035,-1.71979,-0.16548,1.61422,0.00506
+4.45096,1.52690,-1.26046,-1.71923,-0.16592,1.61439,0.00506
+4.45250,1.52672,-1.26057,-1.71868,-0.16636,1.61456,0.00505
+4.45404,1.52655,-1.26068,-1.71814,-0.16678,1.61472,0.00505
+4.45558,1.52637,-1.26079,-1.71761,-0.16720,1.61489,0.00505
+4.45713,1.52621,-1.26090,-1.71709,-0.16761,1.61505,0.00505
+4.45867,1.52604,-1.26101,-1.71658,-0.16801,1.61520,0.00505
+4.46021,1.52587,-1.26111,-1.71607,-0.16841,1.61536,0.00505
+4.46175,1.52582,-1.26115,-1.71591,-0.16853,1.61541,0.00505
+4.46329,1.52558,-1.26129,-1.71529,-0.16901,1.61564,0.00505
+4.46484,1.52535,-1.26143,-1.71468,-0.16947,1.61586,0.00504
+4.46638,1.52512,-1.26157,-1.71408,-0.16993,1.61609,0.00504
+4.46792,1.52489,-1.26170,-1.71349,-0.17038,1.61630,0.00504
+4.46946,1.52467,-1.26184,-1.71292,-0.17082,1.61652,0.00504
+4.47101,1.52445,-1.26197,-1.71235,-0.17125,1.61673,0.00504
+4.47255,1.52423,-1.26210,-1.71179,-0.17168,1.61694,0.00504
+4.47409,1.52402,-1.26223,-1.71123,-0.17209,1.61714,0.00503
+4.47563,1.52381,-1.26236,-1.71069,-0.17250,1.61735,0.00503
+4.47717,1.52360,-1.26248,-1.71016,-0.17291,1.61755,0.00503
+4.47872,1.52340,-1.26261,-1.70963,-0.17330,1.61774,0.00503
+4.48026,1.52320,-1.26273,-1.70912,-0.17369,1.61794,0.00503
+4.48180,1.52300,-1.26285,-1.70861,-0.17408,1.61813,0.00503
+4.48334,1.52294,-1.26289,-1.70846,-0.17419,1.61819,0.00503
+4.48489,1.52275,-1.26301,-1.70794,-0.17458,1.61838,0.00503
+4.48643,1.52256,-1.26313,-1.70743,-0.17497,1.61856,0.00502
+4.48797,1.52248,-1.26318,-1.70723,-0.17512,1.61864,0.00502
+4.48951,1.52226,-1.26331,-1.70670,-0.17552,1.61884,0.00502
+4.49105,1.52205,-1.26344,-1.70618,-0.17590,1.61905,0.00502
+4.49260,1.52185,-1.26357,-1.70568,-0.17628,1.61925,0.00502
+4.49414,1.52178,-1.26361,-1.70552,-0.17640,1.61931,0.00502
+4.49568,1.52156,-1.26374,-1.70500,-0.17678,1.61953,0.00502
+4.49722,1.52133,-1.26387,-1.70448,-0.17716,1.61975,0.00502
+4.49877,1.52111,-1.26401,-1.70398,-0.17753,1.61997,0.00501
+4.50031,1.52102,-1.26406,-1.70377,-0.17768,1.62006,0.00501
+4.50185,1.52075,-1.26421,-1.70322,-0.17808,1.62032,0.00501
+4.50339,1.52049,-1.26436,-1.70268,-0.17847,1.62058,0.00501
+4.50494,1.52023,-1.26451,-1.70215,-0.17885,1.62083,0.00501
+4.50648,1.51997,-1.26466,-1.70162,-0.17923,1.62108,0.00501
+4.50802,1.51972,-1.26480,-1.70111,-0.17959,1.62133,0.00500
+4.50956,1.51947,-1.26494,-1.70060,-0.17996,1.62157,0.00500
+4.51110,1.51932,-1.26503,-1.70030,-0.18017,1.62172,0.00500
+4.51265,1.51908,-1.26517,-1.69978,-0.18054,1.62196,0.00500
+4.51419,1.51884,-1.26531,-1.69928,-0.18091,1.62219,0.00500
+4.51573,1.51874,-1.26537,-1.69907,-0.18106,1.62229,0.00500
+4.51727,1.51846,-1.26553,-1.69852,-0.18144,1.62257,0.00500
+4.51882,1.51818,-1.26568,-1.69798,-0.18182,1.62284,0.00499
+4.52036,1.51790,-1.26584,-1.69745,-0.18220,1.62311,0.00499
+4.52190,1.51763,-1.26599,-1.69692,-0.18256,1.62338,0.00499
+4.52344,1.51736,-1.26614,-1.69641,-0.18293,1.62365,0.00499
+4.52498,1.51710,-1.26629,-1.69590,-0.18328,1.62391,0.00499
+4.52653,1.51688,-1.26642,-1.69549,-0.18357,1.62412,0.00499
+4.52807,1.51650,-1.26663,-1.69481,-0.18403,1.62450,0.00498
+4.52961,1.51612,-1.26683,-1.69415,-0.18449,1.62487,0.00498
+4.53115,1.51575,-1.26703,-1.69350,-0.18493,1.62524,0.00498
+4.53270,1.51538,-1.26723,-1.69286,-0.18537,1.62560,0.00498
+4.53424,1.51502,-1.26743,-1.69223,-0.18580,1.62596,0.00497
+4.53578,1.51467,-1.26762,-1.69161,-0.18622,1.62631,0.00497
+4.53732,1.51432,-1.26781,-1.69100,-0.18663,1.62665,0.00497
+4.53886,1.51397,-1.26800,-1.69040,-0.18704,1.62699,0.00497
+4.54041,1.51364,-1.26819,-1.68981,-0.18744,1.62733,0.00496
+4.54195,1.51330,-1.26838,-1.68923,-0.18783,1.62766,0.00496
+4.54349,1.51297,-1.26856,-1.68866,-0.18822,1.62799,0.00496
+4.54503,1.51265,-1.26874,-1.68810,-0.18860,1.62831,0.00496
+4.54658,1.51233,-1.26892,-1.68755,-0.18897,1.62863,0.00496
+4.54812,1.51201,-1.26909,-1.68700,-0.18934,1.62894,0.00495
+4.54966,1.51170,-1.26926,-1.68647,-0.18970,1.62925,0.00495
+4.55120,1.51140,-1.26943,-1.68594,-0.19005,1.62955,0.00495
+4.55275,1.51110,-1.26960,-1.68543,-0.19040,1.62985,0.00495
+4.55429,1.51080,-1.26977,-1.68492,-0.19074,1.63014,0.00495
+4.55583,1.51051,-1.26993,-1.68442,-0.19107,1.63043,0.00494
+4.55737,1.51035,-1.27002,-1.68415,-0.19125,1.63059,0.00494
+4.55891,1.50994,-1.27024,-1.68348,-0.19170,1.63100,0.00494
+4.56046,1.50953,-1.27046,-1.68282,-0.19213,1.63140,0.00494
+4.56200,1.50913,-1.27068,-1.68217,-0.19256,1.63180,0.00494
+4.56354,1.50874,-1.27089,-1.68153,-0.19298,1.63219,0.00493
+4.56508,1.50835,-1.27111,-1.68091,-0.19339,1.63257,0.00493
+4.56663,1.50797,-1.27132,-1.68029,-0.19380,1.63295,0.00493
+4.56817,1.50760,-1.27152,-1.67968,-0.19420,1.63332,0.00493
+4.56971,1.50723,-1.27173,-1.67908,-0.19459,1.63369,0.00492
+4.57125,1.50686,-1.27193,-1.67849,-0.19498,1.63406,0.00492
+4.57279,1.50650,-1.27212,-1.67791,-0.19535,1.63441,0.00492
+4.57434,1.50615,-1.27232,-1.67734,-0.19573,1.63477,0.00492
+4.57588,1.50580,-1.27251,-1.67678,-0.19609,1.63511,0.00492
+4.57742,1.50546,-1.27270,-1.67623,-0.19645,1.63546,0.00491
+4.57896,1.50512,-1.27289,-1.67569,-0.19680,1.63579,0.00491
+4.58051,1.50479,-1.27308,-1.67516,-0.19715,1.63613,0.00491
+4.58205,1.50446,-1.27326,-1.67463,-0.19749,1.63645,0.00491
+4.58359,1.50413,-1.27344,-1.67412,-0.19782,1.63678,0.00491
+4.58513,1.50381,-1.27362,-1.67361,-0.19815,1.63709,0.00490
+4.58667,1.50350,-1.27379,-1.67311,-0.19848,1.63741,0.00490
+4.58822,1.50328,-1.27392,-1.67275,-0.19871,1.63763,0.00490
+4.58976,1.50290,-1.27413,-1.67216,-0.19909,1.63801,0.00490
+4.59130,1.50252,-1.27434,-1.67158,-0.19946,1.63839,0.00489
+4.59284,1.50215,-1.27454,-1.67101,-0.19983,1.63876,0.00489
+4.59439,1.50179,-1.27474,-1.67044,-0.20019,1.63912,0.00489
+4.59593,1.50143,-1.27494,-1.66989,-0.20054,1.63948,0.00489
+4.59747,1.50107,-1.27514,-1.66934,-0.20089,1.63983,0.00489
+4.59901,1.50072,-1.27533,-1.66881,-0.20123,1.64018,0.00488
+4.60056,1.50038,-1.27552,-1.66828,-0.20156,1.64052,0.00488
+4.60210,1.50004,-1.27571,-1.66776,-0.20189,1.64086,0.00488
+4.60364,1.49971,-1.27589,-1.66725,-0.20222,1.64119,0.00488
+4.60518,1.49938,-1.27608,-1.66675,-0.20254,1.64152,0.00488
+4.60672,1.49906,-1.27626,-1.66625,-0.20285,1.64184,0.00487
+4.60827,1.49893,-1.27633,-1.66606,-0.20296,1.64197,0.00487
+4.60981,1.49826,-1.27667,-1.66519,-0.20349,1.64264,0.00487
+4.61135,1.49760,-1.27700,-1.66433,-0.20401,1.64329,0.00487
+4.61289,1.49696,-1.27734,-1.66349,-0.20452,1.64393,0.00486
+4.61444,1.49632,-1.27766,-1.66265,-0.20502,1.64457,0.00486
+4.61598,1.49569,-1.27799,-1.66184,-0.20551,1.64519,0.00485
+4.61752,1.49507,-1.27830,-1.66103,-0.20599,1.64581,0.00485
+4.61906,1.49446,-1.27862,-1.66024,-0.20647,1.64642,0.00485
+4.62060,1.49386,-1.27893,-1.65946,-0.20693,1.64701,0.00484
+4.62215,1.49327,-1.27924,-1.65869,-0.20739,1.64760,0.00484
+4.62369,1.49269,-1.27954,-1.65793,-0.20784,1.64818,0.00484
+4.62523,1.49211,-1.27984,-1.65719,-0.20828,1.64875,0.00483
+4.62677,1.49155,-1.28013,-1.65645,-0.20871,1.64932,0.00483
+4.62832,1.49099,-1.28042,-1.65573,-0.20914,1.64987,0.00483
+4.62986,1.49045,-1.28071,-1.65502,-0.20956,1.65042,0.00483
+4.63140,1.48991,-1.28100,-1.65433,-0.20997,1.65096,0.00482
+4.63294,1.48937,-1.28127,-1.65364,-0.21037,1.65149,0.00482
+4.63448,1.48885,-1.28155,-1.65296,-0.21077,1.65201,0.00482
+4.63603,1.48833,-1.28182,-1.65230,-0.21116,1.65253,0.00481
+4.63757,1.48783,-1.28209,-1.65164,-0.21155,1.65304,0.00481
+4.63911,1.48733,-1.28236,-1.65100,-0.21192,1.65354,0.00481
+4.64065,1.48683,-1.28262,-1.65036,-0.21229,1.65403,0.00480
+4.64220,1.48635,-1.28288,-1.64974,-0.21266,1.65451,0.00480
+4.64374,1.48587,-1.28313,-1.64913,-0.21301,1.65499,0.00480
+4.64528,1.48540,-1.28338,-1.64852,-0.21337,1.65546,0.00480
+4.64682,1.48493,-1.28363,-1.64793,-0.21371,1.65593,0.00479
+4.64837,1.48448,-1.28388,-1.64734,-0.21405,1.65639,0.00479
+4.64991,1.48403,-1.28412,-1.64677,-0.21438,1.65684,0.00479
+4.65145,1.48358,-1.28435,-1.64620,-0.21471,1.65728,0.00479
+4.65299,1.48315,-1.28459,-1.64564,-0.21503,1.65772,0.00478
+4.65453,1.48272,-1.28482,-1.64509,-0.21535,1.65815,0.00478
+4.65608,1.48229,-1.28505,-1.64455,-0.21566,1.65857,0.00478
+4.65762,1.48188,-1.28527,-1.64402,-0.21596,1.65899,0.00478
+4.65916,1.48147,-1.28550,-1.64350,-0.21626,1.65941,0.00477
+4.66070,1.48106,-1.28572,-1.64298,-0.21656,1.65981,0.00477
+4.66225,1.48066,-1.28593,-1.64248,-0.21685,1.66021,0.00477
+4.66379,1.48027,-1.28615,-1.64198,-0.21713,1.66061,0.00477
+4.66533,1.47988,-1.28636,-1.64149,-0.21741,1.66100,0.00476
+4.66687,1.47950,-1.28656,-1.64101,-0.21769,1.66138,0.00476
+4.66841,1.47913,-1.28677,-1.64053,-0.21796,1.66176,0.00476
+4.66996,1.47907,-1.28680,-1.64046,-0.21799,1.66181,0.00476
+4.67150,1.47856,-1.28707,-1.63981,-0.21837,1.66233,0.00476
+4.67304,1.47805,-1.28735,-1.63916,-0.21874,1.66284,0.00475
+4.67458,1.47754,-1.28762,-1.63852,-0.21911,1.66334,0.00475
+4.67613,1.47705,-1.28788,-1.63789,-0.21947,1.66383,0.00475
+4.67767,1.47656,-1.28815,-1.63728,-0.21982,1.66432,0.00474
+4.67921,1.47608,-1.28841,-1.63667,-0.22017,1.66480,0.00474
+4.68075,1.47561,-1.28866,-1.63607,-0.22051,1.66527,0.00474
+4.68229,1.47515,-1.28891,-1.63548,-0.22084,1.66574,0.00474
+4.68384,1.47469,-1.28916,-1.63490,-0.22117,1.66620,0.00473
+4.68538,1.47424,-1.28941,-1.63433,-0.22149,1.66665,0.00473
+4.68692,1.47379,-1.28965,-1.63377,-0.22181,1.66710,0.00473
+4.68846,1.47335,-1.28989,-1.63322,-0.22212,1.66754,0.00473
+4.69001,1.47292,-1.29012,-1.63268,-0.22243,1.66797,0.00472
+4.69155,1.47250,-1.29036,-1.63214,-0.22273,1.66840,0.00472
+4.69309,1.47208,-1.29059,-1.63162,-0.22303,1.66882,0.00472
+4.69463,1.47167,-1.29081,-1.63110,-0.22332,1.66923,0.00472
+4.69618,1.47126,-1.29103,-1.63059,-0.22360,1.66964,0.00471
+4.69772,1.47086,-1.29125,-1.63009,-0.22388,1.67004,0.00471
+4.69926,1.47047,-1.29147,-1.62959,-0.22416,1.67044,0.00471
+4.70080,1.47008,-1.29168,-1.62911,-0.22443,1.67083,0.00471
+4.70234,1.46970,-1.29190,-1.62863,-0.22470,1.67121,0.00470
+4.70389,1.46947,-1.29202,-1.62836,-0.22484,1.67144,0.00470
+4.70543,1.46870,-1.29240,-1.62760,-0.22522,1.67221,0.00470
+4.70697,1.46794,-1.29277,-1.62685,-0.22559,1.67297,0.00470
+4.70851,1.46719,-1.29314,-1.62611,-0.22596,1.67371,0.00469
+4.71006,1.46645,-1.29351,-1.62538,-0.22632,1.67445,0.00469
+4.71160,1.46572,-1.29387,-1.62466,-0.22667,1.67517,0.00468
+4.71314,1.46501,-1.29422,-1.62396,-0.22702,1.67588,0.00468
+4.71468,1.46431,-1.29457,-1.62326,-0.22736,1.67658,0.00468
+4.71622,1.46361,-1.29492,-1.62258,-0.22769,1.67728,0.00467
+4.71777,1.46293,-1.29526,-1.62191,-0.22802,1.67796,0.00467
+4.71931,1.46226,-1.29560,-1.62124,-0.22835,1.67863,0.00467
+4.72085,1.46160,-1.29593,-1.62059,-0.22867,1.67929,0.00466
+4.72239,1.46095,-1.29626,-1.61995,-0.22898,1.67994,0.00466
+4.72394,1.46031,-1.29658,-1.61931,-0.22928,1.68058,0.00466
+4.72548,1.45967,-1.29690,-1.61869,-0.22959,1.68121,0.00465
+4.72702,1.45905,-1.29721,-1.61808,-0.22988,1.68183,0.00465
+4.72856,1.45844,-1.29753,-1.61747,-0.23017,1.68244,0.00465
+4.73010,1.45784,-1.29783,-1.61688,-0.23046,1.68305,0.00464
+4.73165,1.45724,-1.29813,-1.61629,-0.23074,1.68364,0.00464
+4.73319,1.45666,-1.29843,-1.61572,-0.23102,1.68423,0.00464
+4.73473,1.45608,-1.29872,-1.61515,-0.23129,1.68480,0.00463
+4.73627,1.45552,-1.29901,-1.61459,-0.23156,1.68537,0.00463
+4.73782,1.45496,-1.29930,-1.61404,-0.23182,1.68593,0.00463
+4.73936,1.45441,-1.29958,-1.61350,-0.23208,1.68648,0.00462
+4.74090,1.45387,-1.29986,-1.61297,-0.23233,1.68702,0.00462
+4.74244,1.45333,-1.30013,-1.61245,-0.23258,1.68756,0.00462
+4.74399,1.45281,-1.30040,-1.61193,-0.23282,1.68808,0.00462
+4.74553,1.45229,-1.30067,-1.61142,-0.23306,1.68860,0.00461
+4.74707,1.45178,-1.30093,-1.61092,-0.23330,1.68911,0.00461
+4.74861,1.45128,-1.30119,-1.61043,-0.23353,1.68962,0.00461
+4.75015,1.45079,-1.30145,-1.60995,-0.23376,1.69011,0.00461
+4.75170,1.45030,-1.30170,-1.60947,-0.23399,1.69060,0.00460
+4.75324,1.44982,-1.30195,-1.60900,-0.23421,1.69108,0.00460
+4.75478,1.44935,-1.30219,-1.60854,-0.23442,1.69155,0.00460
+4.75632,1.44889,-1.30243,-1.60808,-0.23464,1.69202,0.00460
+4.75787,1.44843,-1.30267,-1.60764,-0.23484,1.69248,0.00459
+4.75941,1.44798,-1.30291,-1.60719,-0.23505,1.69293,0.00459
+4.76095,1.44754,-1.30314,-1.60676,-0.23525,1.69338,0.00459
+4.76249,1.44738,-1.30322,-1.60661,-0.23532,1.69353,0.00459
+4.76403,1.44673,-1.30355,-1.60600,-0.23560,1.69419,0.00458
+4.76558,1.44608,-1.30388,-1.60539,-0.23588,1.69483,0.00458
+4.76712,1.44544,-1.30420,-1.60479,-0.23615,1.69547,0.00458
+4.76866,1.44482,-1.30452,-1.60420,-0.23642,1.69609,0.00457
+4.77020,1.44420,-1.30483,-1.60362,-0.23668,1.69671,0.00457
+4.77175,1.44360,-1.30514,-1.60305,-0.23694,1.69732,0.00457
+4.77329,1.44300,-1.30544,-1.60249,-0.23720,1.69792,0.00456
+4.77483,1.44241,-1.30574,-1.60194,-0.23745,1.69850,0.00456
+4.77637,1.44183,-1.30604,-1.60140,-0.23769,1.69908,0.00456
+4.77791,1.44126,-1.30633,-1.60086,-0.23793,1.69966,0.00456
+4.77946,1.44070,-1.30662,-1.60033,-0.23817,1.70022,0.00455
+4.78100,1.44015,-1.30691,-1.59981,-0.23841,1.70077,0.00455
+4.78254,1.43960,-1.30719,-1.59930,-0.23863,1.70132,0.00455
+4.78408,1.43907,-1.30746,-1.59880,-0.23886,1.70186,0.00454
+4.78563,1.43854,-1.30774,-1.59830,-0.23908,1.70239,0.00454
+4.78717,1.43802,-1.30801,-1.59782,-0.23930,1.70291,0.00454
+4.78871,1.43751,-1.30827,-1.59734,-0.23951,1.70342,0.00454
+4.79025,1.43700,-1.30853,-1.59686,-0.23972,1.70393,0.00453
+4.79180,1.43651,-1.30879,-1.59640,-0.23993,1.70443,0.00453
+4.79334,1.43602,-1.30904,-1.59594,-0.24013,1.70492,0.00453
+4.79488,1.43554,-1.30929,-1.59549,-0.24033,1.70540,0.00453
+4.79642,1.43506,-1.30954,-1.59504,-0.24053,1.70588,0.00452
+4.79796,1.43460,-1.30978,-1.59461,-0.24072,1.70634,0.00452
+4.79951,1.43414,-1.31002,-1.59418,-0.24091,1.70681,0.00452
+4.80105,1.43368,-1.31026,-1.59375,-0.24110,1.70726,0.00452
+4.80259,1.43361,-1.31030,-1.59369,-0.24112,1.70734,0.00452
+4.80413,1.43287,-1.31067,-1.59306,-0.24138,1.70807,0.00451
+4.80568,1.43214,-1.31103,-1.59244,-0.24163,1.70880,0.00451
+4.80722,1.43143,-1.31139,-1.59183,-0.24188,1.70951,0.00450
+4.80876,1.43072,-1.31174,-1.59123,-0.24213,1.71022,0.00450
+4.81030,1.43003,-1.31209,-1.59064,-0.24237,1.71091,0.00450
+4.81184,1.42935,-1.31243,-1.59006,-0.24261,1.71159,0.00449
+4.81339,1.42868,-1.31277,-1.58949,-0.24284,1.71226,0.00449
+4.81493,1.42801,-1.31310,-1.58892,-0.24307,1.71292,0.00449
+4.81647,1.42736,-1.31343,-1.58837,-0.24329,1.71358,0.00448
+4.81801,1.42672,-1.31376,-1.58782,-0.24351,1.71422,0.00448
+4.81956,1.42609,-1.31407,-1.58728,-0.24373,1.71485,0.00448
+4.82110,1.42547,-1.31439,-1.58675,-0.24394,1.71547,0.00448
+4.82264,1.42486,-1.31470,-1.58623,-0.24415,1.71608,0.00447
+4.82418,1.42425,-1.31501,-1.58571,-0.24436,1.71669,0.00447
+4.82572,1.42366,-1.31531,-1.58520,-0.24456,1.71728,0.00447
+4.82727,1.42308,-1.31561,-1.58471,-0.24476,1.71787,0.00446
+4.82881,1.42250,-1.31590,-1.58421,-0.24496,1.71844,0.00446
+4.83035,1.42193,-1.31619,-1.58373,-0.24515,1.71901,0.00446
+4.83189,1.42138,-1.31648,-1.58326,-0.24534,1.71957,0.00445
+4.83344,1.42083,-1.31676,-1.58279,-0.24552,1.72012,0.00445
+4.83498,1.42029,-1.31704,-1.58232,-0.24571,1.72066,0.00445
+4.83652,1.41976,-1.31731,-1.58187,-0.24589,1.72120,0.00445
+4.83806,1.41923,-1.31758,-1.58142,-0.24606,1.72172,0.00444
+4.83961,1.41872,-1.31785,-1.58098,-0.24624,1.72224,0.00444
+4.84115,1.41821,-1.31811,-1.58055,-0.24641,1.72275,0.00444
+4.84269,1.41771,-1.31837,-1.58012,-0.24657,1.72325,0.00444
+4.84423,1.41722,-1.31862,-1.57970,-0.24674,1.72375,0.00443
+4.84577,1.41673,-1.31887,-1.57929,-0.24690,1.72423,0.00443
+4.84732,1.41626,-1.31912,-1.57888,-0.24706,1.72471,0.00443
+4.84886,1.41582,-1.31935,-1.57851,-0.24721,1.72515,0.00443
+4.85040,1.41524,-1.31965,-1.57801,-0.24740,1.72574,0.00442
+4.85194,1.41466,-1.31994,-1.57752,-0.24759,1.72631,0.00442
+4.85349,1.41410,-1.32023,-1.57704,-0.24778,1.72688,0.00442
+4.85503,1.41354,-1.32052,-1.57656,-0.24797,1.72744,0.00441
+4.85657,1.41299,-1.32080,-1.57610,-0.24815,1.72799,0.00441
+4.85811,1.41245,-1.32108,-1.57564,-0.24833,1.72853,0.00441
+4.85965,1.41192,-1.32136,-1.57518,-0.24850,1.72906,0.00441
+4.86120,1.41139,-1.32163,-1.57474,-0.24868,1.72959,0.00440
+4.86274,1.41088,-1.32190,-1.57430,-0.24885,1.73011,0.00440
+4.86428,1.41037,-1.32216,-1.57387,-0.24901,1.73062,0.00440
+4.86582,1.40987,-1.32242,-1.57344,-0.24918,1.73112,0.00440
+4.86737,1.40938,-1.32268,-1.57302,-0.24934,1.73161,0.00439
+4.86891,1.40890,-1.32293,-1.57261,-0.24950,1.73210,0.00439
+4.87045,1.40842,-1.32318,-1.57220,-0.24966,1.73258,0.00439
+4.87199,1.40799,-1.32341,-1.57183,-0.24980,1.73301,0.00439
+4.87353,1.40746,-1.32369,-1.57135,-0.25000,1.73355,0.00438
+4.87508,1.40693,-1.32397,-1.57087,-0.25019,1.73407,0.00438
+4.87662,1.40641,-1.32424,-1.57040,-0.25039,1.73459,0.00438
+4.87816,1.40590,-1.32451,-1.56994,-0.25057,1.73511,0.00438
+4.87970,1.40540,-1.32478,-1.56949,-0.25076,1.73561,0.00437
+4.88125,1.40491,-1.32504,-1.56904,-0.25094,1.73611,0.00437
+4.88279,1.40442,-1.32530,-1.56860,-0.25112,1.73659,0.00437
+4.88433,1.40394,-1.32556,-1.56817,-0.25130,1.73708,0.00437
+4.88587,1.40347,-1.32581,-1.56774,-0.25147,1.73755,0.00436
+4.88742,1.40300,-1.32606,-1.56732,-0.25164,1.73802,0.00436
+4.88896,1.40264,-1.32626,-1.56699,-0.25177,1.73839,0.00436
+4.89050,1.40216,-1.32651,-1.56657,-0.25194,1.73887,0.00436
+4.89204,1.40169,-1.32676,-1.56617,-0.25210,1.73934,0.00436
+4.89358,1.40149,-1.32686,-1.56599,-0.25216,1.73954,0.00435
+4.89513,1.40089,-1.32718,-1.56548,-0.25236,1.74014,0.00435
+4.89667,1.40030,-1.32749,-1.56498,-0.25255,1.74073,0.00435
+4.89821,1.39971,-1.32779,-1.56449,-0.25273,1.74132,0.00435
+4.89975,1.39914,-1.32809,-1.56400,-0.25292,1.74189,0.00434
+4.90130,1.39857,-1.32839,-1.56352,-0.25310,1.74246,0.00434
+4.90284,1.39802,-1.32868,-1.56305,-0.25327,1.74302,0.00434
+4.90438,1.39747,-1.32897,-1.56259,-0.25345,1.74357,0.00433
+4.90592,1.39693,-1.32925,-1.56213,-0.25362,1.74411,0.00433
+4.90746,1.39640,-1.32953,-1.56168,-0.25379,1.74464,0.00433
+4.90901,1.39587,-1.32981,-1.56124,-0.25396,1.74517,0.00433
+4.91055,1.39536,-1.33008,-1.56080,-0.25412,1.74568,0.00432
+4.91209,1.39485,-1.33034,-1.56037,-0.25428,1.74619,0.00432
+4.91363,1.39435,-1.33061,-1.55995,-0.25444,1.74669,0.00432
+4.91518,1.39386,-1.33087,-1.55953,-0.25459,1.74719,0.00432
+4.91672,1.39338,-1.33113,-1.55912,-0.25475,1.74767,0.00431
+4.91826,1.39290,-1.33138,-1.55872,-0.25489,1.74815,0.00431
+4.91980,1.39257,-1.33155,-1.55844,-0.25500,1.74848,0.00431
+4.92134,1.39208,-1.33181,-1.55801,-0.25516,1.74897,0.00431
+4.92289,1.39160,-1.33207,-1.55760,-0.25532,1.74945,0.00431
+4.92443,1.39113,-1.33232,-1.55719,-0.25548,1.74993,0.00430
+4.92597,1.39074,-1.33253,-1.55685,-0.25560,1.75032,0.00430
+4.92751,1.39012,-1.33286,-1.55631,-0.25581,1.75095,0.00430
+4.92906,1.38950,-1.33319,-1.55578,-0.25601,1.75156,0.00430
+4.93060,1.38890,-1.33351,-1.55525,-0.25621,1.75217,0.00429
+4.93214,1.38830,-1.33383,-1.55474,-0.25641,1.75277,0.00429
+4.93368,1.38771,-1.33414,-1.55423,-0.25660,1.75335,0.00429
+4.93523,1.38713,-1.33445,-1.55373,-0.25679,1.75393,0.00428
+4.93677,1.38656,-1.33475,-1.55324,-0.25697,1.75450,0.00428
+4.93831,1.38600,-1.33505,-1.55276,-0.25715,1.75507,0.00428
+4.93985,1.38545,-1.33535,-1.55228,-0.25733,1.75562,0.00428
+4.94139,1.38491,-1.33564,-1.55181,-0.25751,1.75616,0.00427
+4.94294,1.38437,-1.33593,-1.55135,-0.25768,1.75670,0.00427
+4.94448,1.38385,-1.33621,-1.55090,-0.25785,1.75723,0.00427
+4.94602,1.38333,-1.33649,-1.55045,-0.25802,1.75775,0.00427
+4.94756,1.38282,-1.33676,-1.55001,-0.25819,1.75826,0.00426
+4.94911,1.38232,-1.33703,-1.54957,-0.25835,1.75876,0.00426
+4.95065,1.38182,-1.33730,-1.54914,-0.25851,1.75926,0.00426
+4.95219,1.38134,-1.33756,-1.54872,-0.25866,1.75975,0.00426
+4.95373,1.38086,-1.33782,-1.54831,-0.25882,1.76023,0.00425
+4.95527,1.38039,-1.33808,-1.54790,-0.25897,1.76070,0.00425
+4.95682,1.38006,-1.33825,-1.54762,-0.25908,1.76103,0.00425
+4.95836,1.37958,-1.33852,-1.54719,-0.25924,1.76152,0.00425
+4.95990,1.37910,-1.33878,-1.54677,-0.25940,1.76199,0.00425
+4.96144,1.37864,-1.33903,-1.54635,-0.25956,1.76246,0.00424
+4.96299,1.37826,-1.33924,-1.54602,-0.25968,1.76284,0.00424
+4.96453,1.37776,-1.33951,-1.54558,-0.25985,1.76334,0.00424
+4.96607,1.37727,-1.33978,-1.54515,-0.26001,1.76384,0.00424
+4.96761,1.37678,-1.34004,-1.54472,-0.26017,1.76432,0.00423
+4.96915,1.37630,-1.34030,-1.54430,-0.26033,1.76481,0.00423
+4.97070,1.37583,-1.34056,-1.54389,-0.26048,1.76528,0.00423
+4.97224,1.37537,-1.34082,-1.54348,-0.26064,1.76575,0.00423
+4.97378,1.37489,-1.34108,-1.54307,-0.26078,1.76623,0.00422
+4.97532,1.37441,-1.34133,-1.54267,-0.26093,1.76670,0.00422
+4.97687,1.37418,-1.34146,-1.54247,-0.26100,1.76694,0.00422
+4.97841,1.37369,-1.34172,-1.54207,-0.26114,1.76743,0.00422
+4.97995,1.37321,-1.34198,-1.54167,-0.26127,1.76791,0.00422
+4.98149,1.37302,-1.34208,-1.54152,-0.26133,1.76810,0.00422
+4.98304,1.37256,-1.34234,-1.54111,-0.26148,1.76857,0.00421
+4.98458,1.37237,-1.34244,-1.54094,-0.26154,1.76876,0.00421
+4.98612,1.37189,-1.34270,-1.54054,-0.26168,1.76924,0.00421
+4.98766,1.37142,-1.34296,-1.54014,-0.26182,1.76971,0.00421
+4.98920,1.37123,-1.34306,-1.53998,-0.26188,1.76990,0.00421
+4.99075,1.37074,-1.34332,-1.53958,-0.26202,1.77039,0.00420
+4.99229,1.37026,-1.34358,-1.53919,-0.26215,1.77087,0.00420
+4.99383,1.37002,-1.34371,-1.53899,-0.26222,1.77111,0.00420
+4.99537,1.36956,-1.34397,-1.53858,-0.26237,1.77158,0.00420
+4.99692,1.36937,-1.34407,-1.53842,-0.26242,1.77177,0.00420
+4.99846,1.36889,-1.34433,-1.53801,-0.26257,1.77225,0.00420
+5.00000,1.36842,-1.34459,-1.53761,-0.26271,1.77273,0.00419
diff --git a/python/examples/path_in_pixels.csv b/python/examples/path_in_pixels.csv
index 301dc237d911c21cbc575b2d857dfad141f317e7..27f2904f3fe3d6f4c69b91b42d2496af29f3bfba 100644
--- a/python/examples/path_in_pixels.csv
+++ b/python/examples/path_in_pixels.csv
@@ -1,119 +1,262 @@
-0.46591,0.81870
-0.46441,0.81567
-0.46142,0.80962
-0.44944,0.79753
-0.42250,0.76578
-0.38657,0.72194
-0.38059,0.71589
-0.37011,0.69926
-0.34316,0.67204
-0.33867,0.66751
-0.32520,0.64937
-0.29826,0.61913
-0.29227,0.61006
-0.26982,0.58133
-0.26383,0.57226
-0.23988,0.54202
-0.23090,0.52690
-0.21593,0.51330
-0.21293,0.50271
-0.20545,0.49667
-0.19198,0.48004
-0.19198,0.47550
-0.18449,0.46341
-0.18449,0.46189
-0.17551,0.44980
-0.17401,0.44829
-0.16354,0.42863
-0.16204,0.42712
-0.16054,0.42561
-0.15605,0.41805
-0.15605,0.41654
-0.15755,0.41654
-0.16354,0.41654
-0.17252,0.41654
-0.22341,0.41654
-0.26682,0.41654
-0.28029,0.41654
-0.33867,0.41654
-0.35364,0.41654
-0.36711,0.41654
-0.42849,0.41654
-0.43597,0.41654
-0.46741,0.41654
-0.47190,0.41654
-0.47639,0.41654
-0.50632,0.41654
-0.51381,0.41654
-0.53776,0.41654
-0.54824,0.41654
-0.56171,0.41654
-0.57069,0.41956
-0.57967,0.41956
-0.63506,0.41956
-0.64404,0.41956
-0.68745,0.42561
-0.69643,0.42561
-0.71290,0.42561
-0.71888,0.42561
-0.73236,0.42561
-0.74134,0.42561
-0.75481,0.42561
-0.75930,0.42561
-0.76529,0.42561
-0.77577,0.42561
-0.78475,0.42561
-0.78924,0.42561
-0.79073,0.42561
-0.79223,0.42561
-0.79073,0.42561
-0.78924,0.42863
-0.78774,0.43619
-0.76828,0.46945
-0.76229,0.47550
-0.75631,0.48004
-0.73385,0.50574
-0.72188,0.51783
-0.69643,0.53900
-0.68595,0.55109
-0.67996,0.55714
-0.67398,0.56168
-0.66350,0.57075
-0.65152,0.58738
-0.61709,0.62366
-0.60961,0.62971
-0.59614,0.64634
-0.59314,0.64937
-0.59314,0.65390
-0.58566,0.66146
-0.58416,0.66297
-0.58267,0.66902
-0.57219,0.67960
-0.56470,0.69170
-0.54375,0.71135
-0.54225,0.71438
-0.53477,0.72496
-0.52728,0.73252
-0.52429,0.73857
-0.51082,0.75217
-0.50932,0.75369
-0.50183,0.75973
-0.49884,0.76427
-0.49734,0.76427
-0.48986,0.77183
-0.48836,0.77334
-0.48686,0.77485
-0.48537,0.77636
-0.48387,0.77788
-0.47639,0.78392
-0.46890,0.79451
-0.45393,0.82021
-0.43447,0.85196
-0.43148,0.86103
-0.42998,0.86708
-0.42699,0.87615
-0.42549,0.87766
-0.42100,0.88824
-0.41950,0.89127
-0.42100,0.88975
-0.42100,0.88975
+0.30495,0.56198
+0.30643,0.56348
+0.31683,0.57098
+0.35692,0.59947
+0.38216,0.61897
+0.42967,0.66096
+0.47719,0.70445
+0.48461,0.71495
+0.49204,0.72544
+0.49649,0.72694
+0.49649,0.72844
+0.49798,0.72844
+0.49798,0.72994
+0.49946,0.72994
+0.49946,0.73144
+0.50095,0.73144
+0.50243,0.72994
+0.50392,0.72694
+0.50540,0.71944
+0.50540,0.70295
+0.50540,0.69845
+0.50540,0.68195
+0.50243,0.67146
+0.49352,0.62947
+0.49055,0.62047
+0.48907,0.61597
+0.48016,0.58747
+0.48016,0.58298
+0.47867,0.56048
+0.47719,0.55898
+0.47273,0.54099
+0.47273,0.53949
+0.47125,0.53499
+0.47125,0.51849
+0.46828,0.51399
+0.46828,0.51249
+0.46828,0.51099
+0.46977,0.51099
+0.47125,0.51099
+0.47273,0.51099
+0.48164,0.51099
+0.50243,0.51099
+0.50689,0.51099
+0.51134,0.51099
+0.51579,0.51099
+0.51876,0.51099
+0.52173,0.51099
+0.52767,0.50799
+0.54401,0.50799
+0.56034,0.50799
+0.56479,0.50799
+0.56925,0.50799
+0.57370,0.50799
+0.57519,0.50799
+0.58855,0.50499
+0.59301,0.50499
+0.60192,0.50349
+0.61082,0.50349
+0.61528,0.50049
+0.62864,0.50049
+0.63310,0.49900
+0.64646,0.49600
+0.64795,0.49600
+0.65240,0.49600
+0.66576,0.49300
+0.67616,0.49000
+0.69694,0.48700
+0.69991,0.48700
+0.71625,0.48250
+0.71773,0.48250
+0.72813,0.47950
+0.73407,0.47950
+0.74001,0.47650
+0.74149,0.47650
+0.74297,0.47500
+0.74743,0.47350
+0.74743,0.47200
+0.74891,0.47200
+0.74891,0.47050
+0.74594,0.46900
+0.74297,0.46450
+0.74149,0.46450
+0.72219,0.45401
+0.71179,0.44651
+0.65982,0.41801
+0.64498,0.40752
+0.63755,0.40452
+0.61082,0.38952
+0.59895,0.38052
+0.58855,0.37752
+0.57964,0.37302
+0.56925,0.37002
+0.54846,0.36103
+0.53807,0.35803
+0.52619,0.35353
+0.52470,0.35203
+0.52322,0.35203
+0.52173,0.35203
+0.52173,0.35053
+0.52173,0.34903
+0.53064,0.33553
+0.54104,0.32054
+0.56182,0.28904
+0.56479,0.28005
+0.58707,0.24855
+0.58855,0.24405
+0.61082,0.20806
+0.61231,0.20356
+0.62864,0.17657
+0.63755,0.16307
+0.64052,0.15257
+0.65388,0.13158
+0.65537,0.13008
+0.65834,0.11958
+0.65982,0.11958
+0.65982,0.11508
+0.65982,0.11358
+0.65982,0.11208
+0.65834,0.11208
+0.65685,0.11208
+0.65537,0.11208
+0.65092,0.11208
+0.63607,0.11508
+0.62716,0.11508
+0.59598,0.12708
+0.58558,0.13008
+0.57816,0.13308
+0.54401,0.14958
+0.53361,0.15407
+0.50392,0.16907
+0.49649,0.17207
+0.46383,0.19007
+0.45937,0.19457
+0.44898,0.20206
+0.44749,0.20506
+0.44452,0.20656
+0.44304,0.20806
+0.44155,0.20956
+0.44155,0.21106
+0.43710,0.21706
+0.43561,0.21856
+0.43561,0.22156
+0.43413,0.22306
+0.43264,0.22456
+0.42522,0.23656
+0.42374,0.24105
+0.41631,0.24855
+0.41631,0.25305
+0.41483,0.25605
+0.41334,0.25905
+0.41334,0.26055
+0.41186,0.26055
+0.41186,0.26205
+0.41037,0.26205
+0.40889,0.26205
+0.40889,0.26355
+0.40740,0.26355
+0.40592,0.26205
+0.39701,0.25605
+0.36880,0.23506
+0.34207,0.20806
+0.33316,0.20206
+0.32871,0.19756
+0.29604,0.16907
+0.27525,0.14808
+0.26040,0.13908
+0.25446,0.13458
+0.23516,0.11958
+0.22180,0.10759
+0.21586,0.10459
+0.20398,0.09859
+0.20398,0.09709
+0.20546,0.10009
+0.20546,0.10159
+0.20843,0.11208
+0.21437,0.13008
+0.22477,0.15857
+0.23516,0.17957
+0.25298,0.21556
+0.25892,0.23356
+0.27525,0.27255
+0.28416,0.28754
+0.28713,0.29804
+0.30643,0.32803
+0.31980,0.36403
+0.32128,0.36553
+0.32128,0.37002
+0.32277,0.37752
+0.32425,0.37752
+0.32425,0.37902
+0.32277,0.37902
+0.32128,0.37902
+0.31831,0.37902
+0.30792,0.37902
+0.29901,0.38052
+0.28862,0.38052
+0.28119,0.38052
+0.27525,0.38052
+0.26931,0.38352
+0.26634,0.38352
+0.26040,0.38352
+0.25595,0.38502
+0.25446,0.38502
+0.23665,0.38502
+0.23516,0.38502
+0.22922,0.38802
+0.22774,0.38802
+0.21289,0.38802
+0.20398,0.38802
+0.19062,0.38802
+0.18171,0.38802
+0.17131,0.39102
+0.16686,0.39102
+0.16240,0.39102
+0.14607,0.39552
+0.14162,0.39552
+0.12528,0.39552
+0.12231,0.39702
+0.11637,0.39702
+0.11489,0.39702
+0.11340,0.39702
+0.11192,0.39702
+0.11192,0.39852
+0.11340,0.40002
+0.11489,0.40152
+0.13122,0.41052
+0.13716,0.41651
+0.14310,0.41951
+0.14607,0.42401
+0.15053,0.42701
+0.15646,0.43301
+0.16092,0.44051
+0.16092,0.44201
+0.16240,0.44351
+0.16389,0.44501
+0.16686,0.44801
+0.16686,0.44951
+0.16983,0.45251
+0.17725,0.46300
+0.18468,0.47350
+0.18913,0.47950
+0.20992,0.50049
+0.21883,0.51099
+0.24259,0.52449
+0.25595,0.53349
+0.27377,0.54249
+0.28119,0.54698
+0.28565,0.55148
+0.28713,0.55148
+0.29604,0.55598
+0.29752,0.55748
+0.30792,0.56348
+0.30940,0.56498
+0.31237,0.56648
+0.31386,0.56648
+0.31534,0.56648
+0.31534,0.56798
+0.31683,0.56798
+0.31831,0.56798
+0.31831,0.56948
+0.31980,0.56948
+0.31980,0.56948
diff --git a/python/ur_simple_control/.managers.py.swp b/python/ur_simple_control/.managers.py.swp
new file mode 100644
index 0000000000000000000000000000000000000000..20dee56a41eee396aafa8eb4b0238c05bb6fdacc
Binary files /dev/null and b/python/ur_simple_control/.managers.py.swp differ
diff --git a/python/ur_simple_control/__pycache__/managers.cpython-310.pyc b/python/ur_simple_control/__pycache__/managers.cpython-310.pyc
index 01f4c4bc5f276f45e8456c8e7a1d6e28ddc3e288..2182fde78b9b7bca755bba50306471909c76bb98 100644
Binary files a/python/ur_simple_control/__pycache__/managers.cpython-310.pyc and b/python/ur_simple_control/__pycache__/managers.cpython-310.pyc differ
diff --git a/python/ur_simple_control/basics/.basics.py.swp b/python/ur_simple_control/basics/.basics.py.swp
new file mode 100644
index 0000000000000000000000000000000000000000..91f857fb659921e79ffd64b34cee3258dc346c43
Binary files /dev/null and b/python/ur_simple_control/basics/.basics.py.swp differ
diff --git a/python/ur_simple_control/basics/__pycache__/basics.cpython-310.pyc b/python/ur_simple_control/basics/__pycache__/basics.cpython-310.pyc
index 7c03ddac280ffd092c700a1891c722a7385cd043..bf08e547774804db451086aa3542eb488668758a 100644
Binary files a/python/ur_simple_control/basics/__pycache__/basics.cpython-310.pyc and b/python/ur_simple_control/basics/__pycache__/basics.cpython-310.pyc differ
diff --git a/python/ur_simple_control/basics/basics.py b/python/ur_simple_control/basics/basics.py
index 748cd9eb7beba6994d26dffec9d0b856eab6ae96..7d999ad8057d0d469193fda6411d1d7bebe45b68 100644
--- a/python/ur_simple_control/basics/basics.py
+++ b/python/ur_simple_control/basics/basics.py
@@ -33,7 +33,11 @@ def moveJControlLoop(q_desired, robot, i, past_data):
     # stupid hack, for the love of god remove this
     # but it should be small enough lel
     # there. fixed. tko radi taj i grijesi, al jebemu zivot sta je to bilo
-    qd = q_error * robot.dt
+    K = 120
+    #print(q_error)
+    # TODO: you should clip this
+    qd = K * q_error * robot.dt
+    #qd = np.clip(qd, robot.acceleration, robot.acceleration)
     robot.sendQd(qd)
     return breakFlag, {}, {}
 
diff --git a/python/ur_simple_control/managers.py b/python/ur_simple_control/managers.py
index 1f5c5ac96d76904e3b5ff8dd1766972a6270b388..9bde3a23dab35e4a96255b8ea586fa4eefe54a9c 100644
--- a/python/ur_simple_control/managers.py
+++ b/python/ur_simple_control/managers.py
@@ -340,25 +340,37 @@ class RobotManager:
     also, the gripper is controlled separately so we'd need to do this somehow anyway 
     NOTE: this gripper_past_pos thing is not working atm, but i'll keep it here as a TODO
     """
-    def getMtool(self):
-        if not self.pinocchio_only:
-            q = self.rtde_receive.getActualQ()
-            if self.args.gripper:
-                # TODO: make it work or remove it
-                #self.gripper_past_pos = self.gripper_pos
-                # this is pointless by itself
-                self.gripper_pos = self.gripper.get_current_position()
-                # the /255 is to get it dimensionless.
-                # the gap is 5cm,
-                # thus half the gap is 0.025m (and we only do si units here).
-                q.append((self.gripper_pos / 255) * 0.025)
-                q.append((self.gripper_pos / 255) * 0.025)
+    # TODO remove evil hack
+    def getMtool(self, q_given=None):
+        test = True
+        try:
+            test = q_given.all() == None
+            print(test)
+            print(q_given)
+        except AttributeError:
+            test = True
+
+        if test:
+            if not self.pinocchio_only:
+                q = self.rtde_receive.getActualQ()
+                if self.args.gripper:
+                    # TODO: make it work or remove it
+                    #self.gripper_past_pos = self.gripper_pos
+                    # this is pointless by itself
+                    self.gripper_pos = self.gripper.get_current_position()
+                    # the /255 is to get it dimensionless.
+                    # the gap is 5cm,
+                    # thus half the gap is 0.025m (and we only do si units here).
+                    q.append((self.gripper_pos / 255) * 0.025)
+                    q.append((self.gripper_pos / 255) * 0.025)
+                else:
+                    # just fill it with zeros otherwise
+                    q.append(0.0)
+                    q.append(0.0)
             else:
-                # just fill it with zeros otherwise
-                q.append(0.0)
-                q.append(0.0)
+                q = self.q
         else:
-            q = self.q
+            q = copy.deepcopy(q_given)
         q = np.array(q)
         self.q = q
         pin.forwardKinematics(self.model, self.data, q)