From 573ffed3e67c2cbc07205a984e5fb28de177e96d Mon Sep 17 00:00:00 2001 From: m-guberina <gubi.guberina@gmail.com> Date: Tue, 26 Mar 2024 14:28:43 +0100 Subject: [PATCH] best so far --- .../open_close_gripper.py | 2 +- python/examples/clik.py | 39 +- python/examples/drawing_from_input_drawing.py | 56 +- python/examples/joint_trajectory.csv | 11889 ++++++---------- python/examples/path_in_pixels.csv | 553 +- .../planar_dragging_via_top_contact_force.py | 2 +- python/examples/point_impedance_control.py | 2 +- python/examples/test_gripper.py | 2 +- python/joint_trajectory.csv | 2516 +++- python/path_in_pixels.csv | 128 +- .../__pycache__/managers.cpython-311.pyc | Bin 21405 -> 21451 bytes .../clik_point_to_point.cpython-311.pyc | Bin 9428 -> 13659 bytes .../clik/clik_point_to_point.py | 110 +- python/ur_simple_control/managers.py | 3 +- .../__pycache__/visualize.cpython-311.pyc | Bin 8189 -> 8219 bytes .../visualize/vedo_manipulator.py | 2 +- .../ur_simple_control/visualize/visualize.py | 2 +- 17 files changed, 7219 insertions(+), 8087 deletions(-) diff --git a/python/convenience_tool_box/open_close_gripper.py b/python/convenience_tool_box/open_close_gripper.py index 168175e..ad6df1a 100644 --- a/python/convenience_tool_box/open_close_gripper.py +++ b/python/convenience_tool_box/open_close_gripper.py @@ -19,7 +19,7 @@ signal.signal(signal.SIGINT, handler) gripper = RobotiqGripper() gripper.connect("192.168.1.102", 63352) -time.sleep(8) +time.sleep(6) gripper.activate() #time.sleep(3) gripper.move(0,100,100) diff --git a/python/examples/clik.py b/python/examples/clik.py index cf298c2..a8850fe 100644 --- a/python/examples/clik.py +++ b/python/examples/clik.py @@ -1,9 +1,10 @@ import numpy as np +import time import argparse from functools import partial from ur_simple_control.managers import ControlLoopManager, RobotManager # TODO merge the 2 clik files -from ur_simple_control.clik.clik_point_to_point import getClikController, controlLoopClik, moveL +from ur_simple_control.clik.clik_point_to_point import getClikController, controlLoopClik, moveL, compliantMoveL # TODO write this in managers and automate name generation from ur_simple_control.util.logging_utils import saveLog @@ -50,7 +51,7 @@ def get_args(): to something between 0 and 1, 0.5 by default \ BE CAREFUL WITH THIS.", default=0.5) parser.add_argument('--tikhonov-damp', type=float, \ - help="damping scalar in tiknohov regularization", default=1e-3) + help="damping scalar in tikhonov regularization", default=1e-3) # TODO add the rest parser.add_argument('--clik-controller', type=str, \ help="select which click algorithm you want", \ @@ -62,6 +63,14 @@ def get_args(): help="print some debug info", default=False) parser.add_argument('--save-log', action=argparse.BooleanOptionalAction, \ help="save log data folder in whatever directory you called this in. if it doesn't exists there, it's saved to /tmp/data", default=False) + parser.add_argument('--alpha', type=float, \ + help="force feedback proportional coefficient", \ + default=0.01) + parser.add_argument('--beta', type=float, \ + help="low-pass filter beta parameter", \ + default=0.01) + parser.add_argument('--past-window-size', type=int, \ + help="how many timesteps of past data you want to save", default=5) args = parser.parse_args() if args.gripper and args.simulation: @@ -73,20 +82,28 @@ if __name__ == "__main__": args = get_args() robot = RobotManager(args) Mgoal = robot.defineGoalPointCLI() - clik_controller = getClikController(args) - controlLoop = partial(controlLoopClik, robot, clik_controller) - log_item = { - 'qs' : np.zeros(robot.model.nq), - 'dqs' : np.zeros(robot.model.nq), - } + compliantMoveL(args, robot, Mgoal) + print("stopping via freedrive lel") + robot.rtde_control.freedriveMode() + time.sleep(0.5) + robot.rtde_control.endFreedriveMode() + #ControlLoopManager.stopHandler(None, None, None) + #clik_controller = getClikController(args) + #controlLoop = partial(controlLoopClik, robot, clik_controller) + #log_item = { + # 'qs' : np.zeros(robot.model.nq), + # 'dqs' : np.zeros(robot.model.nq), + # } # we're not using any past data or logging, hence the empty arguments - loop_manager = ControlLoopManager(robot, controlLoop, args, {}, log_item) + #loop_manager = ControlLoopManager(robot, controlLoop, args, {}, log_item) + #loop_manager.stopHandler(None, None) + # TODO create a logging function in util. # something that generates a file name from something in args. # also save args there - log_dict, final_iteration = loop_manager.run() + #log_dict, final_iteration = loop_manager.run() if args.save_log: saveLog(log_dict, final_iteration, args) - loop_manager.stopHandler(None, None) + #loop_manager.stopHandler(None, None) diff --git a/python/examples/drawing_from_input_drawing.py b/python/examples/drawing_from_input_drawing.py index 850fd25..bd87a68 100644 --- a/python/examples/drawing_from_input_drawing.py +++ b/python/examples/drawing_from_input_drawing.py @@ -21,7 +21,7 @@ from ur_simple_control.util.draw_path import drawPath from ur_simple_control.dmp.dmp import DMP, NoTC,TCVelAccConstrained # TODO merge these clik files as well, they don't deserve to be separate # TODO but first you need to clean up clik.py as specified there -from ur_simple_control.clik.clik_point_to_point import getClikController, moveL, moveUntilContact, controlLoopClik +from ur_simple_control.clik.clik_point_to_point import getClikController, moveL, moveUntilContact, controlLoopClik, compliantMoveL from ur_simple_control.clik.clik_trajectory_following import map2DPathTo3DPlane, clikCartesianPathIntoJointPath from ur_simple_control.managers import ControlLoopManager, RobotManager from ur_simple_control.util.calib_board_hacks import calibratePlane, getSpeedInDirectionOfN @@ -78,7 +78,7 @@ def getArgs(): default=1e-3) # TODO: test the interaction of this and the overall demo parser.add_argument('--tikhonov-damp', type=float, \ - help="damping scalar in tiknohov regularization.\ + help="damping scalar in tikhonov regularization.\ This is used when generating the joint trajectory from the drawing.", \ default=1e-2) # TODO add the rest @@ -113,7 +113,7 @@ def getArgs(): default=0.001) parser.add_argument('--alpha', type=float, \ help="force feedback proportional coefficient", \ - default=0.01) + default=0.007) #default=0.05) parser.add_argument('--beta', type=float, \ help="low-pass filter beta parameter", \ @@ -193,32 +193,41 @@ def getMarker(args, robot): # slighly up from goal to not hit marker weirdly TgoalUP = Tgoal.copy() - TgoalUP.translation += np.array([0,0,0.2]) + #TgoalUP.translation += np.array([0,0,0.2]) + TgoalUP.translation += np.array([0,0,0.3]) # instantiate controller - clik_controller = getClikController(args) - controlLoop = partial(controlLoopClik, robot, clik_controller) - log_item = { - 'qs' : np.zeros(robot.model.nq), - 'dqs' : np.zeros(robot.model.nq), - } - loop_manager = ControlLoopManager(robot, controlLoop, args, {}, log_item) + #clik_controller = getClikController(args) + #controlLoop = partial(controlLoopClik, robot, clik_controller) + #log_item = { + # 'qs' : np.zeros(robot.model.nq), + # 'dqs' : np.zeros(robot.model.nq), + # } + #loop_manager = ControlLoopManager(robot, controlLoop, args, {}, log_item) print("going to above marker") robot.Mgoal = TgoalUP.copy() - log_dict, final_iteration = loop_manager.run() + #compliantMoveL(args, robot, TgoalUP.copy()) + moveL(args, robot, TgoalUP.copy()) + #log_dict, final_iteration = loop_manager.run() print("going down to marker") robot.Mgoal = Tgoal.copy() - log_dict, final_iteration = loop_manager.run() + #compliantMoveL(args, robot, Tgoal.copy()) + moveL(args, robot, Tgoal.copy()) + #log_dict, final_iteration = loop_manager.run() print("picking up marker") robot.gripper.move(255,255,255) time.sleep(2) print("going up") robot.Mgoal = TgoalUP.copy() - log_dict, final_iteration = loop_manager.run() + #compliantMoveL(args, robot, TgoalUP.copy()) + moveL(args, robot, TgoalUP.copy()) + #log_dict, final_iteration = loop_manager.run() print("going back") robot.Mgoal = Tinit.copy() - log_dict, final_iteration = loop_manager.run() + #compliantMoveL(args, robot, Tinit.copy()) + moveL(args, robot, Tinit.copy()) + #log_dict, final_iteration = loop_manager.run() print("got back") # robot.stopHandler(None, None) # robot.stopHandler(None, None) @@ -362,7 +371,7 @@ def controlLoopWriting(dmp, tc, controller, robot, i, past_data): robot.sendQd(vel_cmd) # TODO find a better criterion for stopping - if (np.linalg.norm(dmp.vel) < 0.0001) and (i > 5000): + if (np.linalg.norm(dmp.vel) < 0.001) and (i > 3000): breakFlag = True # immediatelly stop if something weird happened (some non-convergence) if np.isnan(vel_cmd[0]): @@ -476,9 +485,10 @@ if __name__ == "__main__": # but this is very close #path = path + np.array([0.0, 0.0, -0.0785]) #path = path + np.array([0.0, 0.0, -0.1043]) - #path = path + np.array([0.0, 0.0, -0.1000]) - path = path + np.array([0.0, 0.0, -0.0903]) - #path = path + np.array([0.0, 0.2938, 0.0]) + path = path + np.array([0.0, 0.0, -0.0920]) + #path = path + np.array([0.0, 0.0, -0.0903]) + #path = path + np.array([0.0, 0.0, -0.0790]) + #path = path + np.array([0.0, 0.0, -0.1003]) # and if you don't want to draw new nor calibrate, but you want the same path # with a different clik, i'm sorry, i can't put that if here. @@ -552,14 +562,16 @@ if __name__ == "__main__": #pin.forwardKinematics(robot.model, robot.data, first_q) mtool = robot.getMtool(q_given=first_q) #mtool.translation[1] = mtool.translation[1] - 0.0035 - mtool.translation[1] = mtool.translation[1] - 0.012 + #mtool.translation[1] = mtool.translation[1] - 0.012 + mtool.translation[1] = mtool.translation[1] - 0.0045 if args.debug_prints: print("im at:", robot.getMtool()) print("going to:", mtool) print('going to starting write position') # TODO: write a compliantMoveL - be careful that everything is in the body frame # since your jacobian is the body jacobian!!! - moveL(args, robot, mtool) + #moveL(args, robot, mtool) + compliantMoveL(args, robot, mtool) #moveJ(args, robot, dmp.pos.reshape((6,))) controlLoop = partial(controlLoopWriting, dmp, tc, controller, robot) @@ -573,7 +585,7 @@ if __name__ == "__main__": mtool.translation[1] = mtool.translation[1] - 0.1 # if args.board_axis == 'z': # mtool.translation[2] = mtool.translation[2] - 0.1 - moveL(args, robot, mtool) + compliantMoveL(args, robot, mtool) #plotFromDict(log_dict, args) diff --git a/python/examples/joint_trajectory.csv b/python/examples/joint_trajectory.csv index 27c72f4..29cc024 100644 --- a/python/examples/joint_trajectory.csv +++ b/python/examples/joint_trajectory.csv @@ -1,7199 +1,4690 @@ -0.00000,1.02646,-1.24985,-1.60929,-0.98646,1.99986,-0.33993 -0.00069,1.02646,-1.25025,-1.60866,-0.98669,1.99986,-0.33993 -0.00139,1.02646,-1.25064,-1.60804,-0.98692,1.99986,-0.33993 -0.00208,1.02645,-1.25103,-1.60742,-0.98714,1.99987,-0.33993 -0.00278,1.02645,-1.25141,-1.60682,-0.98736,1.99987,-0.33994 -0.00347,1.02645,-1.25178,-1.60623,-0.98757,1.99987,-0.33994 -0.00417,1.02644,-1.25215,-1.60565,-0.98779,1.99988,-0.33994 -0.00486,1.02644,-1.25251,-1.60507,-0.98799,1.99988,-0.33994 -0.00556,1.02643,-1.25286,-1.60451,-0.98820,1.99988,-0.33995 -0.00625,1.02641,-1.25297,-1.60436,-0.98825,1.99990,-0.33996 -0.00695,1.02622,-1.25367,-1.60338,-0.98858,2.00004,-0.34010 -0.00764,1.02603,-1.25435,-1.60242,-0.98891,2.00019,-0.34023 -0.00834,1.02584,-1.25502,-1.60147,-0.98923,2.00033,-0.34036 -0.00903,1.02565,-1.25568,-1.60054,-0.98954,2.00047,-0.34050 -0.00972,1.02546,-1.25633,-1.59962,-0.98986,2.00061,-0.34063 -0.01042,1.02528,-1.25697,-1.59872,-0.99016,2.00075,-0.34075 -0.01111,1.02510,-1.25760,-1.59784,-0.99047,2.00088,-0.34088 -0.01181,1.02493,-1.25822,-1.59696,-0.99077,2.00102,-0.34100 -0.01250,1.02475,-1.25883,-1.59611,-0.99106,2.00115,-0.34113 -0.01320,1.02458,-1.25942,-1.59526,-0.99136,2.00128,-0.34125 -0.01389,1.02441,-1.26001,-1.59443,-0.99164,2.00140,-0.34137 -0.01459,1.02424,-1.26058,-1.59362,-0.99193,2.00153,-0.34148 -0.01528,1.02408,-1.26115,-1.59281,-0.99221,2.00165,-0.34160 -0.01598,1.02392,-1.26171,-1.59202,-0.99248,2.00178,-0.34172 -0.01667,1.02376,-1.26225,-1.59124,-0.99276,2.00190,-0.34183 -0.01737,1.02360,-1.26279,-1.59048,-0.99303,2.00202,-0.34194 -0.01806,1.02344,-1.26332,-1.58973,-0.99329,2.00213,-0.34205 -0.01876,1.02329,-1.26384,-1.58899,-0.99355,2.00225,-0.34216 -0.01945,1.02314,-1.26435,-1.58826,-0.99381,2.00237,-0.34227 -0.02014,1.02299,-1.26485,-1.58754,-0.99407,2.00248,-0.34237 -0.02084,1.02284,-1.26534,-1.58684,-0.99432,2.00259,-0.34248 -0.02153,1.02270,-1.26583,-1.58614,-0.99457,2.00270,-0.34258 -0.02223,1.02255,-1.26630,-1.58546,-0.99481,2.00281,-0.34268 -0.02292,1.02241,-1.26677,-1.58479,-0.99505,2.00292,-0.34278 -0.02362,1.02227,-1.26723,-1.58413,-0.99529,2.00302,-0.34288 -0.02431,1.02214,-1.26768,-1.58348,-0.99553,2.00313,-0.34298 -0.02501,1.02200,-1.26813,-1.58284,-0.99576,2.00323,-0.34308 -0.02570,1.02187,-1.26857,-1.58221,-0.99599,2.00333,-0.34317 -0.02640,1.02174,-1.26900,-1.58159,-0.99621,2.00343,-0.34327 -0.02709,1.02161,-1.26942,-1.58098,-0.99644,2.00353,-0.34336 -0.02779,1.02148,-1.26983,-1.58039,-0.99665,2.00362,-0.34345 -0.02848,1.02135,-1.27024,-1.57980,-0.99687,2.00372,-0.34354 -0.02917,1.02123,-1.27064,-1.57922,-0.99708,2.00382,-0.34363 -0.02987,1.02111,-1.27104,-1.57865,-0.99729,2.00391,-0.34372 -0.03056,1.02099,-1.27142,-1.57809,-0.99750,2.00400,-0.34381 -0.03126,1.02091,-1.27163,-1.57779,-0.99761,2.00406,-0.34386 -0.03195,1.02067,-1.27218,-1.57706,-0.99786,2.00424,-0.34403 -0.03265,1.02043,-1.27271,-1.57635,-0.99811,2.00442,-0.34420 -0.03334,1.02020,-1.27324,-1.57565,-0.99835,2.00460,-0.34437 -0.03404,1.01997,-1.27375,-1.57495,-0.99860,2.00477,-0.34453 -0.03473,1.01974,-1.27426,-1.57427,-0.99883,2.00494,-0.34469 -0.03543,1.01952,-1.27476,-1.57360,-0.99907,2.00511,-0.34485 -0.03612,1.01929,-1.27525,-1.57294,-0.99930,2.00528,-0.34501 -0.03682,1.01908,-1.27573,-1.57229,-0.99953,2.00544,-0.34517 -0.03751,1.01886,-1.27620,-1.57165,-0.99976,2.00560,-0.34532 -0.03821,1.01865,-1.27667,-1.57102,-0.99998,2.00576,-0.34547 -0.03890,1.01845,-1.27713,-1.57041,-1.00020,2.00592,-0.34562 -0.03959,1.01824,-1.27758,-1.56980,-1.00042,2.00608,-0.34577 -0.04029,1.01804,-1.27802,-1.56920,-1.00064,2.00623,-0.34591 -0.04098,1.01784,-1.27845,-1.56861,-1.00085,2.00638,-0.34605 -0.04168,1.01765,-1.27888,-1.56803,-1.00106,2.00653,-0.34619 -0.04237,1.01745,-1.27930,-1.56746,-1.00126,2.00667,-0.34633 -0.04307,1.01726,-1.27972,-1.56690,-1.00147,2.00682,-0.34647 -0.04376,1.01708,-1.28012,-1.56635,-1.00167,2.00696,-0.34660 -0.04446,1.01689,-1.28052,-1.56580,-1.00187,2.00710,-0.34673 -0.04515,1.01674,-1.28085,-1.56536,-1.00203,2.00722,-0.34685 -0.04585,1.01642,-1.28142,-1.56464,-1.00227,2.00746,-0.34707 -0.04654,1.01611,-1.28197,-1.56393,-1.00251,2.00769,-0.34730 -0.04724,1.01580,-1.28252,-1.56324,-1.00275,2.00792,-0.34751 -0.04793,1.01550,-1.28305,-1.56256,-1.00299,2.00815,-0.34773 -0.04862,1.01520,-1.28358,-1.56189,-1.00322,2.00838,-0.34794 -0.04932,1.01491,-1.28410,-1.56122,-1.00345,2.00860,-0.34815 -0.05001,1.01462,-1.28461,-1.56057,-1.00367,2.00881,-0.34836 -0.05071,1.01434,-1.28511,-1.55993,-1.00390,2.00903,-0.34856 -0.05140,1.01406,-1.28560,-1.55930,-1.00412,2.00924,-0.34876 -0.05210,1.01379,-1.28608,-1.55868,-1.00433,2.00945,-0.34896 -0.05279,1.01352,-1.28656,-1.55807,-1.00455,2.00965,-0.34915 -0.05349,1.01325,-1.28703,-1.55747,-1.00476,2.00985,-0.34934 -0.05418,1.01299,-1.28749,-1.55688,-1.00497,2.01005,-0.34953 -0.05488,1.01273,-1.28794,-1.55630,-1.00518,2.01024,-0.34972 -0.05557,1.01248,-1.28838,-1.55572,-1.00538,2.01044,-0.34990 -0.05627,1.01223,-1.28882,-1.55516,-1.00558,2.01063,-0.35008 -0.05696,1.01199,-1.28925,-1.55461,-1.00578,2.01081,-0.35025 -0.05765,1.01174,-1.28967,-1.55406,-1.00598,2.01099,-0.35043 -0.05835,1.01151,-1.29009,-1.55352,-1.00617,2.01117,-0.35060 -0.05904,1.01127,-1.29049,-1.55299,-1.00637,2.01135,-0.35077 -0.05974,1.01104,-1.29089,-1.55247,-1.00655,2.01153,-0.35093 -0.06043,1.01082,-1.29125,-1.55202,-1.00671,2.01169,-0.35109 -0.06113,1.01023,-1.29206,-1.55111,-1.00700,2.01214,-0.35152 -0.06182,1.00964,-1.29285,-1.55020,-1.00728,2.01258,-0.35193 -0.06252,1.00907,-1.29363,-1.54931,-1.00756,2.01301,-0.35235 -0.06321,1.00850,-1.29440,-1.54844,-1.00784,2.01344,-0.35275 -0.06391,1.00795,-1.29515,-1.54758,-1.00811,2.01385,-0.35315 -0.06460,1.00740,-1.29589,-1.54673,-1.00839,2.01426,-0.35354 -0.06530,1.00686,-1.29662,-1.54589,-1.00865,2.01467,-0.35392 -0.06599,1.00634,-1.29733,-1.54507,-1.00892,2.01507,-0.35430 -0.06669,1.00582,-1.29803,-1.54426,-1.00918,2.01546,-0.35468 -0.06738,1.00531,-1.29873,-1.54346,-1.00944,2.01584,-0.35504 -0.06807,1.00480,-1.29940,-1.54268,-1.00970,2.01622,-0.35540 -0.06877,1.00431,-1.30007,-1.54190,-1.00995,2.01659,-0.35576 -0.06946,1.00383,-1.30073,-1.54114,-1.01020,2.01696,-0.35611 -0.07016,1.00335,-1.30137,-1.54039,-1.01045,2.01732,-0.35645 -0.07085,1.00288,-1.30201,-1.53965,-1.01070,2.01767,-0.35679 -0.07155,1.00242,-1.30263,-1.53893,-1.01094,2.01802,-0.35712 -0.07224,1.00196,-1.30325,-1.53821,-1.01118,2.01836,-0.35745 -0.07294,1.00152,-1.30385,-1.53751,-1.01142,2.01870,-0.35777 -0.07363,1.00108,-1.30444,-1.53682,-1.01165,2.01903,-0.35809 -0.07433,1.00065,-1.30502,-1.53613,-1.01188,2.01935,-0.35840 -0.07502,1.00022,-1.30560,-1.53546,-1.01211,2.01967,-0.35871 -0.07572,0.99980,-1.30616,-1.53480,-1.01234,2.01999,-0.35901 -0.07641,0.99939,-1.30671,-1.53415,-1.01256,2.02030,-0.35931 -0.07710,0.99899,-1.30726,-1.53351,-1.01278,2.02061,-0.35961 -0.07780,0.99859,-1.30779,-1.53288,-1.01300,2.02091,-0.35989 -0.07849,0.99820,-1.30832,-1.53226,-1.01322,2.02120,-0.36018 -0.07919,0.99782,-1.30884,-1.53165,-1.01343,2.02149,-0.36046 -0.07988,0.99744,-1.30934,-1.53105,-1.01364,2.02178,-0.36073 -0.08058,0.99707,-1.30984,-1.53045,-1.01385,2.02206,-0.36100 -0.08127,0.99670,-1.31033,-1.52987,-1.01406,2.02234,-0.36127 -0.08197,0.99634,-1.31082,-1.52930,-1.01426,2.02261,-0.36153 -0.08266,0.99599,-1.31129,-1.52873,-1.01446,2.02288,-0.36179 -0.08336,0.99564,-1.31176,-1.52818,-1.01466,2.02314,-0.36204 -0.08405,0.99530,-1.31222,-1.52763,-1.01486,2.02340,-0.36229 -0.08475,0.99496,-1.31267,-1.52709,-1.01505,2.02365,-0.36254 -0.08544,0.99463,-1.31311,-1.52656,-1.01525,2.02390,-0.36278 -0.08614,0.99430,-1.31355,-1.52604,-1.01543,2.02415,-0.36302 -0.08683,0.99398,-1.31398,-1.52552,-1.01562,2.02439,-0.36325 -0.08752,0.99367,-1.31440,-1.52502,-1.01581,2.02463,-0.36348 -0.08822,0.99336,-1.31481,-1.52452,-1.01599,2.02487,-0.36371 -0.08891,0.99305,-1.31522,-1.52403,-1.01617,2.02510,-0.36394 -0.08961,0.99275,-1.31562,-1.52355,-1.01635,2.02533,-0.36416 -0.09030,0.99246,-1.31601,-1.52307,-1.01652,2.02555,-0.36437 -0.09100,0.99215,-1.31642,-1.52259,-1.01670,2.02579,-0.36460 -0.09169,0.99167,-1.31699,-1.52196,-1.01691,2.02615,-0.36495 -0.09239,0.99120,-1.31755,-1.52134,-1.01712,2.02650,-0.36529 -0.09308,0.99074,-1.31810,-1.52073,-1.01732,2.02685,-0.36563 -0.09378,0.99028,-1.31864,-1.52013,-1.01752,2.02719,-0.36596 -0.09447,0.98983,-1.31917,-1.51954,-1.01772,2.02753,-0.36629 -0.09517,0.98939,-1.31970,-1.51896,-1.01792,2.02786,-0.36661 -0.09586,0.98896,-1.32021,-1.51839,-1.01811,2.02819,-0.36692 -0.09655,0.98854,-1.32072,-1.51782,-1.01831,2.02851,-0.36723 -0.09725,0.98812,-1.32122,-1.51727,-1.01850,2.02882,-0.36754 -0.09794,0.98771,-1.32170,-1.51672,-1.01869,2.02913,-0.36784 -0.09864,0.98730,-1.32218,-1.51618,-1.01887,2.02944,-0.36814 -0.09933,0.98691,-1.32266,-1.51566,-1.01906,2.02974,-0.36843 -0.10003,0.98651,-1.32312,-1.51513,-1.01924,2.03003,-0.36872 -0.10072,0.98613,-1.32358,-1.51462,-1.01942,2.03032,-0.36900 -0.10142,0.98575,-1.32403,-1.51411,-1.01960,2.03061,-0.36928 -0.10211,0.98538,-1.32447,-1.51362,-1.01978,2.03089,-0.36955 -0.10281,0.98501,-1.32490,-1.51313,-1.01995,2.03117,-0.36982 -0.10350,0.98465,-1.32533,-1.51264,-1.02012,2.03144,-0.37008 -0.10420,0.98430,-1.32575,-1.51217,-1.02029,2.03170,-0.37034 -0.10489,0.98395,-1.32616,-1.51170,-1.02046,2.03197,-0.37060 -0.10558,0.98361,-1.32657,-1.51124,-1.02063,2.03223,-0.37085 -0.10628,0.98327,-1.32697,-1.51079,-1.02079,2.03248,-0.37110 -0.10697,0.98294,-1.32736,-1.51034,-1.02095,2.03273,-0.37135 -0.10767,0.98262,-1.32774,-1.50990,-1.02111,2.03298,-0.37159 -0.10836,0.98228,-1.32814,-1.50945,-1.02128,2.03323,-0.37184 -0.10906,0.98178,-1.32871,-1.50884,-1.02148,2.03361,-0.37220 -0.10975,0.98129,-1.32927,-1.50823,-1.02168,2.03397,-0.37256 -0.11045,0.98081,-1.32982,-1.50764,-1.02188,2.03434,-0.37291 -0.11114,0.98034,-1.33036,-1.50705,-1.02208,2.03469,-0.37326 -0.11184,0.97987,-1.33090,-1.50648,-1.02227,2.03504,-0.37360 -0.11253,0.97942,-1.33142,-1.50591,-1.02247,2.03538,-0.37394 -0.11323,0.97897,-1.33194,-1.50535,-1.02266,2.03572,-0.37427 -0.11392,0.97852,-1.33244,-1.50480,-1.02284,2.03606,-0.37460 -0.11462,0.97809,-1.33294,-1.50425,-1.02303,2.03638,-0.37492 -0.11531,0.97766,-1.33343,-1.50372,-1.02322,2.03670,-0.37523 -0.11600,0.97724,-1.33391,-1.50319,-1.02340,2.03702,-0.37554 -0.11670,0.97683,-1.33438,-1.50268,-1.02358,2.03733,-0.37585 -0.11739,0.97642,-1.33485,-1.50217,-1.02376,2.03764,-0.37615 -0.11809,0.97602,-1.33530,-1.50166,-1.02393,2.03794,-0.37644 -0.11878,0.97563,-1.33575,-1.50117,-1.02411,2.03823,-0.37673 -0.11948,0.97524,-1.33619,-1.50068,-1.02428,2.03852,-0.37702 -0.12017,0.97486,-1.33663,-1.50020,-1.02445,2.03881,-0.37730 -0.12087,0.97449,-1.33706,-1.49973,-1.02462,2.03909,-0.37758 -0.12156,0.97412,-1.33748,-1.49927,-1.02479,2.03937,-0.37785 -0.12226,0.97376,-1.33789,-1.49881,-1.02495,2.03964,-0.37812 -0.12295,0.97341,-1.33829,-1.49836,-1.02512,2.03991,-0.37838 -0.12365,0.97306,-1.33869,-1.49791,-1.02528,2.04017,-0.37864 -0.12434,0.97272,-1.33909,-1.49748,-1.02544,2.04043,-0.37889 -0.12503,0.97238,-1.33947,-1.49705,-1.02559,2.04069,-0.37915 -0.12573,0.97205,-1.33985,-1.49662,-1.02575,2.04094,-0.37939 -0.12642,0.97179,-1.34014,-1.49631,-1.02586,2.04113,-0.37958 -0.12712,0.97120,-1.34075,-1.49570,-1.02605,2.04157,-0.38002 -0.12781,0.97063,-1.34135,-1.49510,-1.02625,2.04200,-0.38044 -0.12851,0.97006,-1.34194,-1.49450,-1.02643,2.04242,-0.38086 -0.12920,0.96950,-1.34252,-1.49392,-1.02662,2.04284,-0.38127 -0.12990,0.96896,-1.34309,-1.49334,-1.02681,2.04325,-0.38168 -0.13059,0.96842,-1.34365,-1.49278,-1.02699,2.04365,-0.38208 -0.13129,0.96789,-1.34420,-1.49222,-1.02718,2.04405,-0.38247 -0.13198,0.96737,-1.34474,-1.49167,-1.02736,2.04444,-0.38285 -0.13268,0.96686,-1.34527,-1.49113,-1.02754,2.04482,-0.38323 -0.13337,0.96636,-1.34580,-1.49060,-1.02771,2.04520,-0.38360 -0.13407,0.96586,-1.34631,-1.49007,-1.02789,2.04557,-0.38397 -0.13476,0.96538,-1.34682,-1.48955,-1.02806,2.04593,-0.38433 -0.13545,0.96490,-1.34732,-1.48904,-1.02823,2.04629,-0.38469 -0.13615,0.96443,-1.34781,-1.48854,-1.02840,2.04664,-0.38504 -0.13684,0.96397,-1.34829,-1.48805,-1.02857,2.04698,-0.38538 -0.13754,0.96352,-1.34876,-1.48756,-1.02874,2.04732,-0.38572 -0.13823,0.96307,-1.34922,-1.48708,-1.02891,2.04766,-0.38605 -0.13893,0.96263,-1.34968,-1.48661,-1.02907,2.04799,-0.38638 -0.13962,0.96220,-1.35013,-1.48614,-1.02923,2.04831,-0.38670 -0.14032,0.96178,-1.35057,-1.48568,-1.02939,2.04863,-0.38701 -0.14101,0.96136,-1.35101,-1.48523,-1.02955,2.04894,-0.38733 -0.14171,0.96096,-1.35144,-1.48479,-1.02971,2.04925,-0.38763 -0.14240,0.96055,-1.35186,-1.48435,-1.02986,2.04955,-0.38793 -0.14310,0.96016,-1.35227,-1.48392,-1.03001,2.04984,-0.38823 -0.14379,0.95977,-1.35267,-1.48349,-1.03017,2.05014,-0.38852 -0.14448,0.95939,-1.35307,-1.48307,-1.03032,2.05042,-0.38881 -0.14518,0.95901,-1.35347,-1.48266,-1.03046,2.05071,-0.38909 -0.14587,0.95864,-1.35385,-1.48226,-1.03061,2.05098,-0.38937 -0.14657,0.95828,-1.35423,-1.48186,-1.03076,2.05126,-0.38964 -0.14726,0.95792,-1.35460,-1.48146,-1.03090,2.05152,-0.38991 -0.14796,0.95757,-1.35497,-1.48108,-1.03104,2.05179,-0.39017 -0.14865,0.95735,-1.35520,-1.48084,-1.03113,2.05196,-0.39034 -0.14935,0.95683,-1.35570,-1.48035,-1.03129,2.05234,-0.39072 -0.15004,0.95633,-1.35620,-1.47987,-1.03144,2.05272,-0.39110 -0.15074,0.95584,-1.35668,-1.47940,-1.03160,2.05308,-0.39147 -0.15143,0.95535,-1.35716,-1.47894,-1.03175,2.05345,-0.39183 -0.15213,0.95487,-1.35762,-1.47849,-1.03190,2.05380,-0.39219 -0.15282,0.95440,-1.35808,-1.47804,-1.03206,2.05416,-0.39254 -0.15351,0.95394,-1.35854,-1.47759,-1.03220,2.05450,-0.39289 -0.15421,0.95349,-1.35898,-1.47716,-1.03235,2.05484,-0.39323 -0.15490,0.95304,-1.35942,-1.47673,-1.03250,2.05517,-0.39357 -0.15560,0.95260,-1.35985,-1.47631,-1.03264,2.05550,-0.39390 -0.15629,0.95217,-1.36027,-1.47589,-1.03279,2.05582,-0.39422 -0.15699,0.95175,-1.36069,-1.47548,-1.03293,2.05614,-0.39454 -0.15768,0.95133,-1.36109,-1.47507,-1.03307,2.05645,-0.39485 -0.15838,0.95093,-1.36150,-1.47468,-1.03321,2.05676,-0.39516 -0.15907,0.95052,-1.36189,-1.47428,-1.03335,2.05706,-0.39547 -0.15977,0.95013,-1.36228,-1.47390,-1.03348,2.05735,-0.39576 -0.16046,0.94974,-1.36266,-1.47352,-1.03362,2.05765,-0.39606 -0.16116,0.94936,-1.36304,-1.47314,-1.03375,2.05793,-0.39635 -0.16185,0.94898,-1.36341,-1.47277,-1.03389,2.05821,-0.39663 -0.16255,0.94861,-1.36377,-1.47241,-1.03402,2.05849,-0.39691 -0.16324,0.94825,-1.36412,-1.47205,-1.03415,2.05876,-0.39719 -0.16393,0.94802,-1.36435,-1.47183,-1.03423,2.05893,-0.39736 -0.16463,0.94756,-1.36479,-1.47141,-1.03437,2.05928,-0.39771 -0.16532,0.94710,-1.36522,-1.47099,-1.03451,2.05962,-0.39805 -0.16602,0.94665,-1.36565,-1.47058,-1.03464,2.05995,-0.39839 -0.16671,0.94621,-1.36607,-1.47018,-1.03478,2.06028,-0.39873 -0.16741,0.94578,-1.36649,-1.46978,-1.03492,2.06061,-0.39905 -0.16810,0.94535,-1.36690,-1.46939,-1.03505,2.06093,-0.39938 -0.16880,0.94493,-1.36730,-1.46901,-1.03518,2.06124,-0.39969 -0.16949,0.94452,-1.36769,-1.46863,-1.03531,2.06155,-0.40001 -0.17019,0.94411,-1.36808,-1.46825,-1.03544,2.06185,-0.40031 -0.17088,0.94371,-1.36846,-1.46788,-1.03557,2.06215,-0.40062 -0.17158,0.94332,-1.36883,-1.46752,-1.03570,2.06244,-0.40091 -0.17227,0.94294,-1.36920,-1.46716,-1.03583,2.06273,-0.40120 -0.17296,0.94256,-1.36956,-1.46681,-1.03595,2.06301,-0.40149 -0.17366,0.94219,-1.36992,-1.46646,-1.03608,2.06329,-0.40177 -0.17435,0.94182,-1.37027,-1.46612,-1.03620,2.06356,-0.40205 -0.17505,0.94173,-1.37035,-1.46604,-1.03623,2.06363,-0.40212 -0.17574,0.94116,-1.37087,-1.46559,-1.03637,2.06406,-0.40256 -0.17644,0.94060,-1.37138,-1.46514,-1.03650,2.06447,-0.40298 -0.17713,0.94004,-1.37188,-1.46470,-1.03664,2.06488,-0.40340 -0.17783,0.93950,-1.37237,-1.46426,-1.03678,2.06528,-0.40381 -0.17852,0.93897,-1.37285,-1.46384,-1.03691,2.06568,-0.40421 -0.17922,0.93845,-1.37332,-1.46341,-1.03705,2.06607,-0.40461 -0.17991,0.93793,-1.37379,-1.46300,-1.03718,2.06645,-0.40500 -0.18061,0.93742,-1.37425,-1.46259,-1.03731,2.06683,-0.40538 -0.18130,0.93693,-1.37470,-1.46218,-1.03745,2.06720,-0.40576 -0.18199,0.93644,-1.37514,-1.46179,-1.03758,2.06756,-0.40613 -0.18269,0.93596,-1.37558,-1.46139,-1.03770,2.06792,-0.40650 -0.18338,0.93549,-1.37600,-1.46101,-1.03783,2.06827,-0.40686 -0.18408,0.93502,-1.37642,-1.46062,-1.03796,2.06861,-0.40721 -0.18477,0.93457,-1.37684,-1.46025,-1.03809,2.06895,-0.40756 -0.18547,0.93412,-1.37725,-1.45988,-1.03821,2.06928,-0.40790 -0.18616,0.93368,-1.37765,-1.45951,-1.03833,2.06961,-0.40823 -0.18686,0.93325,-1.37804,-1.45915,-1.03846,2.06993,-0.40856 -0.18755,0.93282,-1.37843,-1.45880,-1.03858,2.07025,-0.40889 -0.18825,0.93241,-1.37881,-1.45845,-1.03870,2.07056,-0.40921 -0.18894,0.93200,-1.37918,-1.45811,-1.03882,2.07086,-0.40952 -0.18964,0.93159,-1.37955,-1.45777,-1.03893,2.07117,-0.40983 -0.19033,0.93120,-1.37991,-1.45744,-1.03905,2.07146,-0.41014 -0.19103,0.93081,-1.38026,-1.45711,-1.03917,2.07175,-0.41044 -0.19172,0.93042,-1.38061,-1.45678,-1.03928,2.07204,-0.41073 -0.19241,0.93005,-1.38096,-1.45646,-1.03940,2.07232,-0.41102 -0.19311,0.92968,-1.38129,-1.45617,-1.03950,2.07259,-0.41130 -0.19380,0.92898,-1.38187,-1.45571,-1.03962,2.07311,-0.41183 -0.19450,0.92829,-1.38244,-1.45527,-1.03975,2.07361,-0.41236 -0.19519,0.92761,-1.38300,-1.45483,-1.03987,2.07411,-0.41287 -0.19589,0.92695,-1.38355,-1.45439,-1.03999,2.07460,-0.41338 -0.19658,0.92630,-1.38410,-1.45396,-1.04012,2.07508,-0.41388 -0.19728,0.92565,-1.38463,-1.45354,-1.04024,2.07556,-0.41437 -0.19797,0.92502,-1.38516,-1.45312,-1.04036,2.07602,-0.41485 -0.19867,0.92441,-1.38567,-1.45271,-1.04048,2.07648,-0.41532 -0.19936,0.92380,-1.38618,-1.45231,-1.04060,2.07693,-0.41579 -0.20006,0.92320,-1.38668,-1.45191,-1.04072,2.07737,-0.41625 -0.20075,0.92261,-1.38717,-1.45151,-1.04084,2.07780,-0.41670 -0.20144,0.92204,-1.38765,-1.45113,-1.04095,2.07823,-0.41714 -0.20214,0.92147,-1.38813,-1.45074,-1.04107,2.07865,-0.41757 -0.20283,0.92091,-1.38859,-1.45037,-1.04119,2.07906,-0.41800 -0.20353,0.92037,-1.38905,-1.44999,-1.04130,2.07946,-0.41842 -0.20422,0.91983,-1.38950,-1.44963,-1.04142,2.07986,-0.41883 -0.20492,0.91930,-1.38995,-1.44927,-1.04153,2.08025,-0.41924 -0.20561,0.91878,-1.39038,-1.44891,-1.04165,2.08063,-0.41964 -0.20631,0.91827,-1.39081,-1.44856,-1.04176,2.08101,-0.42003 -0.20700,0.91777,-1.39123,-1.44821,-1.04187,2.08138,-0.42042 -0.20770,0.91728,-1.39165,-1.44787,-1.04198,2.08174,-0.42080 -0.20839,0.91680,-1.39206,-1.44753,-1.04209,2.08210,-0.42118 -0.20909,0.91632,-1.39246,-1.44720,-1.04220,2.08245,-0.42154 -0.20978,0.91586,-1.39285,-1.44687,-1.04231,2.08280,-0.42190 -0.21048,0.91540,-1.39324,-1.44655,-1.04242,2.08314,-0.42226 -0.21117,0.91495,-1.39362,-1.44623,-1.04252,2.08347,-0.42261 -0.21186,0.91450,-1.39399,-1.44592,-1.04263,2.08380,-0.42295 -0.21256,0.91407,-1.39436,-1.44561,-1.04274,2.08412,-0.42329 -0.21325,0.91364,-1.39472,-1.44530,-1.04284,2.08444,-0.42362 -0.21395,0.91322,-1.39508,-1.44500,-1.04294,2.08475,-0.42395 -0.21464,0.91281,-1.39543,-1.44471,-1.04305,2.08505,-0.42427 -0.21534,0.91240,-1.39577,-1.44441,-1.04315,2.08536,-0.42459 -0.21603,0.91200,-1.39611,-1.44413,-1.04325,2.08565,-0.42490 -0.21673,0.91161,-1.39645,-1.44384,-1.04335,2.08594,-0.42520 -0.21742,0.91122,-1.39677,-1.44356,-1.04345,2.08623,-0.42551 -0.21812,0.91084,-1.39710,-1.44329,-1.04355,2.08652,-0.42581 -0.21881,0.91037,-1.39747,-1.44301,-1.04363,2.08686,-0.42617 -0.21951,0.90990,-1.39783,-1.44274,-1.04372,2.08720,-0.42653 -0.22020,0.90945,-1.39818,-1.44247,-1.04381,2.08754,-0.42689 -0.22089,0.90901,-1.39853,-1.44221,-1.04389,2.08787,-0.42723 -0.22159,0.90857,-1.39887,-1.44195,-1.04398,2.08819,-0.42757 -0.22228,0.90814,-1.39921,-1.44169,-1.04406,2.08851,-0.42791 -0.22298,0.90771,-1.39954,-1.44143,-1.04415,2.08882,-0.42824 -0.22367,0.90730,-1.39987,-1.44118,-1.04423,2.08913,-0.42856 -0.22437,0.90689,-1.40019,-1.44094,-1.04431,2.08943,-0.42888 -0.22506,0.90649,-1.40050,-1.44069,-1.04440,2.08972,-0.42920 -0.22576,0.90610,-1.40081,-1.44045,-1.04448,2.09002,-0.42951 -0.22645,0.90573,-1.40110,-1.44024,-1.04455,2.09028,-0.42979 -0.22715,0.90522,-1.40146,-1.44002,-1.04461,2.09066,-0.43019 -0.22784,0.90471,-1.40181,-1.43980,-1.04467,2.09104,-0.43059 -0.22854,0.90421,-1.40216,-1.43958,-1.04473,2.09140,-0.43098 -0.22923,0.90372,-1.40250,-1.43937,-1.04479,2.09176,-0.43136 -0.22992,0.90324,-1.40284,-1.43916,-1.04485,2.09212,-0.43174 -0.23062,0.90276,-1.40317,-1.43895,-1.04491,2.09247,-0.43211 -0.23131,0.90230,-1.40350,-1.43874,-1.04497,2.09281,-0.43247 -0.23201,0.90184,-1.40382,-1.43854,-1.04503,2.09314,-0.43283 -0.23270,0.90139,-1.40414,-1.43834,-1.04509,2.09347,-0.43318 -0.23340,0.90095,-1.40445,-1.43814,-1.04515,2.09380,-0.43352 -0.23409,0.90052,-1.40475,-1.43795,-1.04521,2.09412,-0.43386 -0.23479,0.90009,-1.40505,-1.43775,-1.04527,2.09443,-0.43420 -0.23548,0.89968,-1.40535,-1.43756,-1.04533,2.09474,-0.43453 -0.23618,0.89926,-1.40564,-1.43737,-1.04538,2.09504,-0.43485 -0.23687,0.89886,-1.40592,-1.43719,-1.04544,2.09534,-0.43517 -0.23757,0.89852,-1.40615,-1.43705,-1.04548,2.09559,-0.43543 -0.23826,0.89795,-1.40645,-1.43698,-1.04548,2.09601,-0.43588 -0.23896,0.89738,-1.40675,-1.43690,-1.04547,2.09642,-0.43633 -0.23965,0.89683,-1.40705,-1.43683,-1.04547,2.09683,-0.43676 -0.24034,0.89628,-1.40734,-1.43675,-1.04547,2.09723,-0.43719 -0.24104,0.89574,-1.40763,-1.43668,-1.04547,2.09762,-0.43761 -0.24173,0.89522,-1.40791,-1.43661,-1.04547,2.09801,-0.43803 -0.24243,0.89470,-1.40819,-1.43653,-1.04547,2.09839,-0.43843 -0.24312,0.89419,-1.40846,-1.43646,-1.04547,2.09876,-0.43883 -0.24382,0.89369,-1.40873,-1.43639,-1.04547,2.09912,-0.43923 -0.24451,0.89320,-1.40899,-1.43632,-1.04547,2.09948,-0.43961 -0.24521,0.89272,-1.40925,-1.43624,-1.04548,2.09984,-0.43999 -0.24590,0.89224,-1.40950,-1.43617,-1.04548,2.10018,-0.44037 -0.24660,0.89178,-1.40975,-1.43610,-1.04548,2.10053,-0.44073 -0.24729,0.89132,-1.41000,-1.43603,-1.04549,2.10086,-0.44109 -0.24799,0.89087,-1.41024,-1.43596,-1.04550,2.10119,-0.44145 -0.24868,0.89043,-1.41048,-1.43589,-1.04550,2.10151,-0.44180 -0.24937,0.89000,-1.41071,-1.43583,-1.04551,2.10183,-0.44214 -0.25007,0.88957,-1.41094,-1.43576,-1.04552,2.10214,-0.44248 -0.25076,0.88915,-1.41117,-1.43569,-1.04553,2.10245,-0.44281 -0.25146,0.88871,-1.41139,-1.43565,-1.04552,2.10277,-0.44316 -0.25215,0.88804,-1.41156,-1.43589,-1.04538,2.10326,-0.44369 -0.25285,0.88737,-1.41174,-1.43612,-1.04524,2.10375,-0.44421 -0.25354,0.88672,-1.41190,-1.43635,-1.04511,2.10422,-0.44473 -0.25424,0.88608,-1.41207,-1.43657,-1.04498,2.10468,-0.44523 -0.25493,0.88545,-1.41224,-1.43679,-1.04485,2.10514,-0.44573 -0.25563,0.88484,-1.41240,-1.43700,-1.04472,2.10559,-0.44622 -0.25632,0.88423,-1.41256,-1.43721,-1.04460,2.10603,-0.44670 -0.25702,0.88364,-1.41271,-1.43742,-1.04448,2.10647,-0.44717 -0.25771,0.88305,-1.41287,-1.43762,-1.04436,2.10689,-0.44763 -0.25841,0.88248,-1.41302,-1.43781,-1.04425,2.10731,-0.44809 -0.25910,0.88191,-1.41317,-1.43800,-1.04414,2.10772,-0.44854 -0.25979,0.88136,-1.41332,-1.43819,-1.04403,2.10812,-0.44898 -0.26049,0.88081,-1.41346,-1.43838,-1.04392,2.10852,-0.44941 -0.26118,0.88028,-1.41360,-1.43856,-1.04382,2.10891,-0.44984 -0.26188,0.87975,-1.41374,-1.43873,-1.04372,2.10929,-0.45026 -0.26257,0.87923,-1.41388,-1.43891,-1.04362,2.10967,-0.45067 -0.26327,0.87873,-1.41401,-1.43908,-1.04352,2.11004,-0.45107 -0.26396,0.87823,-1.41415,-1.43924,-1.04343,2.11040,-0.45147 -0.26466,0.87774,-1.41428,-1.43940,-1.04333,2.11076,-0.45186 -0.26535,0.87726,-1.41441,-1.43956,-1.04324,2.11111,-0.45224 -0.26605,0.87679,-1.41453,-1.43972,-1.04315,2.11145,-0.45262 -0.26674,0.87632,-1.41466,-1.43987,-1.04307,2.11179,-0.45299 -0.26744,0.87587,-1.41478,-1.44002,-1.04298,2.11212,-0.45336 -0.26813,0.87542,-1.41490,-1.44017,-1.04290,2.11245,-0.45371 -0.26882,0.87498,-1.41502,-1.44031,-1.04282,2.11277,-0.45407 -0.26952,0.87455,-1.41514,-1.44045,-1.04274,2.11308,-0.45441 -0.27021,0.87412,-1.41525,-1.44059,-1.04266,2.11339,-0.45475 -0.27091,0.87370,-1.41537,-1.44072,-1.04259,2.11370,-0.45509 -0.27160,0.87329,-1.41548,-1.44085,-1.04251,2.11400,-0.45541 -0.27230,0.87289,-1.41559,-1.44098,-1.04244,2.11429,-0.45574 -0.27299,0.87272,-1.41562,-1.44105,-1.04241,2.11441,-0.45587 -0.27369,0.87224,-1.41568,-1.44133,-1.04227,2.11476,-0.45626 -0.27438,0.87177,-1.41574,-1.44160,-1.04213,2.11510,-0.45664 -0.27508,0.87131,-1.41580,-1.44187,-1.04200,2.11544,-0.45701 -0.27577,0.87085,-1.41586,-1.44213,-1.04187,2.11577,-0.45737 -0.27647,0.87040,-1.41592,-1.44239,-1.04174,2.11610,-0.45773 -0.27716,0.86996,-1.41597,-1.44264,-1.04161,2.11642,-0.45809 -0.27785,0.86953,-1.41603,-1.44289,-1.04149,2.11673,-0.45843 -0.27855,0.86911,-1.41608,-1.44314,-1.04137,2.11704,-0.45878 -0.27924,0.86869,-1.41614,-1.44338,-1.04125,2.11734,-0.45911 -0.27994,0.86828,-1.41619,-1.44361,-1.04113,2.11764,-0.45944 -0.28063,0.86788,-1.41624,-1.44384,-1.04102,2.11793,-0.45976 -0.28133,0.86748,-1.41629,-1.44407,-1.04091,2.11822,-0.46008 -0.28202,0.86710,-1.41634,-1.44429,-1.04080,2.11850,-0.46040 -0.28272,0.86672,-1.41639,-1.44451,-1.04069,2.11878,-0.46070 -0.28341,0.86662,-1.41638,-1.44460,-1.04065,2.11885,-0.46078 -0.28411,0.86604,-1.41622,-1.44534,-1.04032,2.11927,-0.46125 -0.28480,0.86546,-1.41607,-1.44607,-1.03999,2.11968,-0.46171 -0.28550,0.86490,-1.41592,-1.44678,-1.03967,2.12009,-0.46216 -0.28619,0.86435,-1.41577,-1.44748,-1.03935,2.12049,-0.46261 -0.28689,0.86381,-1.41562,-1.44816,-1.03904,2.12088,-0.46305 -0.28758,0.86327,-1.41548,-1.44884,-1.03874,2.12126,-0.46347 -0.28827,0.86275,-1.41534,-1.44950,-1.03844,2.12164,-0.46390 -0.28897,0.86224,-1.41520,-1.45015,-1.03815,2.12201,-0.46431 -0.28966,0.86173,-1.41506,-1.45079,-1.03786,2.12237,-0.46472 -0.29036,0.86124,-1.41493,-1.45142,-1.03758,2.12273,-0.46512 -0.29105,0.86075,-1.41480,-1.45204,-1.03730,2.12308,-0.46551 -0.29175,0.86027,-1.41467,-1.45264,-1.03702,2.12343,-0.46590 -0.29244,0.85980,-1.41455,-1.45324,-1.03676,2.12377,-0.46628 -0.29314,0.85934,-1.41442,-1.45382,-1.03649,2.12410,-0.46665 -0.29383,0.85889,-1.41430,-1.45440,-1.03623,2.12443,-0.46702 -0.29453,0.85844,-1.41418,-1.45496,-1.03598,2.12475,-0.46738 -0.29522,0.85801,-1.41406,-1.45552,-1.03573,2.12507,-0.46774 -0.29592,0.85758,-1.41395,-1.45606,-1.03548,2.12538,-0.46808 -0.29661,0.85715,-1.41384,-1.45660,-1.03524,2.12568,-0.46843 -0.29730,0.85674,-1.41373,-1.45712,-1.03500,2.12598,-0.46876 -0.29800,0.85633,-1.41362,-1.45764,-1.03477,2.12627,-0.46909 -0.29869,0.85593,-1.41351,-1.45815,-1.03454,2.12656,-0.46942 -0.29939,0.85554,-1.41341,-1.45865,-1.03432,2.12685,-0.46974 -0.30008,0.85516,-1.41330,-1.45913,-1.03410,2.12712,-0.47005 -0.30078,0.85478,-1.41320,-1.45962,-1.03388,2.12740,-0.47036 -0.30147,0.85441,-1.41310,-1.46009,-1.03367,2.12767,-0.47066 -0.30217,0.85404,-1.41300,-1.46055,-1.03346,2.12793,-0.47096 -0.30286,0.85368,-1.41291,-1.46101,-1.03325,2.12819,-0.47125 -0.30356,0.85333,-1.41281,-1.46146,-1.03305,2.12845,-0.47153 -0.30425,0.85298,-1.41272,-1.46190,-1.03285,2.12870,-0.47182 -0.30495,0.85264,-1.41263,-1.46233,-1.03265,2.12894,-0.47209 -0.30564,0.85231,-1.41254,-1.46275,-1.03246,2.12918,-0.47236 -0.30634,0.85198,-1.41245,-1.46317,-1.03227,2.12942,-0.47263 -0.30703,0.85166,-1.41237,-1.46358,-1.03209,2.12965,-0.47289 -0.30772,0.85135,-1.41228,-1.46398,-1.03191,2.12988,-0.47315 -0.30842,0.85103,-1.41220,-1.46438,-1.03173,2.13011,-0.47341 -0.30911,0.85084,-1.41212,-1.46467,-1.03160,2.13025,-0.47357 -0.30981,0.85039,-1.41179,-1.46561,-1.03120,2.13057,-0.47393 -0.31050,0.84995,-1.41146,-1.46653,-1.03080,2.13089,-0.47429 -0.31120,0.84952,-1.41113,-1.46743,-1.03041,2.13119,-0.47464 -0.31189,0.84910,-1.41081,-1.46832,-1.03003,2.13150,-0.47499 -0.31259,0.84868,-1.41050,-1.46919,-1.02965,2.13180,-0.47533 -0.31328,0.84827,-1.41019,-1.47005,-1.02928,2.13209,-0.47566 -0.31398,0.84787,-1.40989,-1.47090,-1.02892,2.13238,-0.47599 -0.31467,0.84748,-1.40959,-1.47172,-1.02856,2.13266,-0.47631 -0.31537,0.84709,-1.40930,-1.47254,-1.02821,2.13294,-0.47662 -0.31606,0.84671,-1.40901,-1.47334,-1.02786,2.13321,-0.47694 -0.31675,0.84634,-1.40873,-1.47413,-1.02752,2.13348,-0.47724 -0.31745,0.84598,-1.40845,-1.47490,-1.02719,2.13374,-0.47754 -0.31814,0.84562,-1.40818,-1.47566,-1.02686,2.13400,-0.47783 -0.31884,0.84526,-1.40792,-1.47640,-1.02653,2.13425,-0.47812 -0.31953,0.84492,-1.40765,-1.47714,-1.02621,2.13450,-0.47841 -0.32023,0.84458,-1.40739,-1.47786,-1.02590,2.13475,-0.47868 -0.32092,0.84424,-1.40714,-1.47857,-1.02559,2.13499,-0.47896 -0.32162,0.84392,-1.40689,-1.47926,-1.02529,2.13522,-0.47923 -0.32231,0.84359,-1.40665,-1.47995,-1.02499,2.13545,-0.47949 -0.32301,0.84328,-1.40641,-1.48062,-1.02470,2.13568,-0.47975 -0.32370,0.84297,-1.40617,-1.48128,-1.02441,2.13590,-0.48000 -0.32440,0.84266,-1.40594,-1.48193,-1.02413,2.13612,-0.48025 -0.32509,0.84236,-1.40571,-1.48257,-1.02385,2.13634,-0.48050 -0.32578,0.84207,-1.40549,-1.48319,-1.02358,2.13655,-0.48074 -0.32648,0.84178,-1.40527,-1.48381,-1.02331,2.13676,-0.48098 -0.32717,0.84150,-1.40505,-1.48441,-1.02304,2.13696,-0.48121 -0.32787,0.84122,-1.40484,-1.48501,-1.02278,2.13716,-0.48144 -0.32856,0.84095,-1.40463,-1.48559,-1.02253,2.13736,-0.48166 -0.32926,0.84068,-1.40442,-1.48617,-1.02228,2.13755,-0.48188 -0.32995,0.84041,-1.40422,-1.48673,-1.02203,2.13774,-0.48210 -0.33065,0.84016,-1.40402,-1.48729,-1.02179,2.13793,-0.48231 -0.33134,0.83990,-1.40383,-1.48784,-1.02155,2.13811,-0.48252 -0.33204,0.83965,-1.40363,-1.48837,-1.02131,2.13829,-0.48272 -0.33273,0.83941,-1.40345,-1.48890,-1.02108,2.13847,-0.48292 -0.33343,0.83917,-1.40326,-1.48942,-1.02085,2.13864,-0.48312 -0.33412,0.83893,-1.40308,-1.48993,-1.02063,2.13881,-0.48332 -0.33482,0.83870,-1.40290,-1.49043,-1.02041,2.13898,-0.48351 -0.33551,0.83847,-1.40270,-1.49095,-1.02018,2.13914,-0.48369 -0.33620,0.83805,-1.40212,-1.49229,-1.01961,2.13944,-0.48404 -0.33690,0.83763,-1.40155,-1.49361,-1.01906,2.13974,-0.48439 -0.33759,0.83721,-1.40099,-1.49490,-1.01852,2.14004,-0.48473 -0.33829,0.83681,-1.40044,-1.49617,-1.01798,2.14033,-0.48506 -0.33898,0.83641,-1.39990,-1.49742,-1.01746,2.14061,-0.48539 -0.33968,0.83602,-1.39937,-1.49864,-1.01694,2.14089,-0.48571 -0.34037,0.83563,-1.39885,-1.49985,-1.01643,2.14116,-0.48603 -0.34107,0.83526,-1.39833,-1.50103,-1.01593,2.14143,-0.48634 -0.34176,0.83489,-1.39783,-1.50220,-1.01544,2.14169,-0.48665 -0.34246,0.83452,-1.39734,-1.50334,-1.01495,2.14195,-0.48695 -0.34315,0.83417,-1.39685,-1.50446,-1.01448,2.14220,-0.48724 -0.34385,0.83382,-1.39637,-1.50557,-1.01401,2.14245,-0.48753 -0.34454,0.83347,-1.39591,-1.50665,-1.01355,2.14270,-0.48781 -0.34523,0.83314,-1.39545,-1.50772,-1.01309,2.14294,-0.48809 -0.34593,0.83280,-1.39499,-1.50877,-1.01265,2.14317,-0.48836 -0.34662,0.83248,-1.39455,-1.50980,-1.01221,2.14341,-0.48863 -0.34732,0.83216,-1.39411,-1.51081,-1.01178,2.14363,-0.48889 -0.34801,0.83185,-1.39368,-1.51180,-1.01135,2.14386,-0.48915 -0.34871,0.83154,-1.39326,-1.51278,-1.01094,2.14407,-0.48940 -0.34940,0.83124,-1.39285,-1.51374,-1.01053,2.14429,-0.48965 -0.35010,0.83094,-1.39244,-1.51468,-1.01012,2.14450,-0.48990 -0.35079,0.83065,-1.39204,-1.51561,-1.00973,2.14471,-0.49014 -0.35149,0.83037,-1.39165,-1.51652,-1.00933,2.14491,-0.49037 -0.35218,0.83009,-1.39126,-1.51742,-1.00895,2.14511,-0.49060 -0.35288,0.82981,-1.39088,-1.51830,-1.00857,2.14531,-0.49083 -0.35357,0.82954,-1.39051,-1.51917,-1.00820,2.14550,-0.49105 -0.35427,0.82928,-1.39014,-1.52002,-1.00784,2.14569,-0.49127 -0.35496,0.82902,-1.38978,-1.52085,-1.00748,2.14587,-0.49148 -0.35565,0.82876,-1.38943,-1.52167,-1.00712,2.14605,-0.49169 -0.35635,0.82851,-1.38908,-1.52248,-1.00677,2.14623,-0.49190 -0.35704,0.82827,-1.38874,-1.52327,-1.00643,2.14641,-0.49210 -0.35774,0.82802,-1.38840,-1.52405,-1.00609,2.14658,-0.49230 -0.35843,0.82779,-1.38807,-1.52482,-1.00576,2.14675,-0.49250 -0.35913,0.82756,-1.38775,-1.52557,-1.00544,2.14692,-0.49269 -0.35982,0.82733,-1.38743,-1.52631,-1.00512,2.14708,-0.49288 -0.36052,0.82710,-1.38712,-1.52704,-1.00480,2.14724,-0.49306 -0.36121,0.82688,-1.38681,-1.52776,-1.00449,2.14739,-0.49324 -0.36191,0.82667,-1.38651,-1.52846,-1.00419,2.14755,-0.49342 -0.36260,0.82646,-1.38621,-1.52915,-1.00388,2.14770,-0.49359 -0.36330,0.82625,-1.38592,-1.52983,-1.00359,2.14785,-0.49376 -0.36399,0.82605,-1.38563,-1.53050,-1.00330,2.14799,-0.49393 -0.36468,0.82585,-1.38535,-1.53115,-1.00301,2.14814,-0.49410 -0.36538,0.82565,-1.38507,-1.53180,-1.00273,2.14828,-0.49426 -0.36607,0.82546,-1.38480,-1.53243,-1.00245,2.14841,-0.49442 -0.36677,0.82527,-1.38453,-1.53305,-1.00218,2.14855,-0.49457 -0.36746,0.82508,-1.38427,-1.53366,-1.00191,2.14868,-0.49472 -0.36816,0.82490,-1.38401,-1.53427,-1.00165,2.14881,-0.49487 -0.36885,0.82472,-1.38376,-1.53486,-1.00139,2.14894,-0.49502 -0.36955,0.82455,-1.38351,-1.53544,-1.00114,2.14906,-0.49517 -0.37024,0.82438,-1.38326,-1.53601,-1.00089,2.14919,-0.49531 -0.37094,0.82421,-1.38302,-1.53657,-1.00064,2.14931,-0.49545 -0.37163,0.82404,-1.38278,-1.53712,-1.00040,2.14942,-0.49558 -0.37233,0.82388,-1.38255,-1.53767,-1.00016,2.14954,-0.49571 -0.37302,0.82380,-1.38242,-1.53795,-1.00003,2.14960,-0.49578 -0.37371,0.82364,-1.38207,-1.53868,-0.99972,2.14971,-0.49591 -0.37441,0.82349,-1.38173,-1.53940,-0.99942,2.14982,-0.49604 -0.37510,0.82334,-1.38139,-1.54010,-0.99912,2.14993,-0.49616 -0.37580,0.82319,-1.38106,-1.54079,-0.99883,2.15004,-0.49629 -0.37649,0.82304,-1.38074,-1.54147,-0.99854,2.15014,-0.49641 -0.37719,0.82290,-1.38042,-1.54214,-0.99826,2.15024,-0.49653 -0.37788,0.82276,-1.38010,-1.54279,-0.99798,2.15035,-0.49664 -0.37858,0.82262,-1.37979,-1.54344,-0.99771,2.15044,-0.49676 -0.37927,0.82248,-1.37949,-1.54407,-0.99744,2.15054,-0.49687 -0.37997,0.82235,-1.37919,-1.54469,-0.99717,2.15064,-0.49698 -0.38066,0.82222,-1.37890,-1.54531,-0.99691,2.15073,-0.49708 -0.38136,0.82209,-1.37861,-1.54591,-0.99665,2.15082,-0.49719 -0.38205,0.82197,-1.37832,-1.54650,-0.99640,2.15091,-0.49729 -0.38275,0.82185,-1.37805,-1.54708,-0.99615,2.15100,-0.49739 -0.38344,0.82173,-1.37777,-1.54765,-0.99590,2.15108,-0.49749 -0.38413,0.82161,-1.37750,-1.54821,-0.99566,2.15117,-0.49759 -0.38483,0.82154,-1.37735,-1.54853,-0.99553,2.15122,-0.49764 -0.38552,0.82122,-1.37665,-1.54998,-0.99493,2.15144,-0.49791 -0.38622,0.82090,-1.37596,-1.55140,-0.99434,2.15167,-0.49818 -0.38691,0.82058,-1.37529,-1.55280,-0.99377,2.15189,-0.49844 -0.38761,0.82028,-1.37462,-1.55418,-0.99320,2.15210,-0.49869 -0.38830,0.81998,-1.37397,-1.55553,-0.99264,2.15231,-0.49894 -0.38900,0.81968,-1.37333,-1.55686,-0.99209,2.15252,-0.49919 -0.38969,0.81939,-1.37270,-1.55817,-0.99155,2.15273,-0.49943 -0.39039,0.81911,-1.37208,-1.55945,-0.99102,2.15293,-0.49967 -0.39108,0.81883,-1.37147,-1.56071,-0.99050,2.15312,-0.49990 -0.39178,0.81855,-1.37088,-1.56195,-0.98998,2.15331,-0.50012 -0.39247,0.81829,-1.37029,-1.56317,-0.98948,2.15350,-0.50035 -0.39316,0.81802,-1.36971,-1.56436,-0.98898,2.15369,-0.50057 -0.39386,0.81776,-1.36915,-1.56554,-0.98849,2.15387,-0.50078 -0.39455,0.81751,-1.36859,-1.56670,-0.98801,2.15405,-0.50099 -0.39525,0.81726,-1.36804,-1.56783,-0.98753,2.15422,-0.50120 -0.39594,0.81702,-1.36751,-1.56895,-0.98707,2.15439,-0.50140 -0.39664,0.81678,-1.36698,-1.57004,-0.98661,2.15456,-0.50160 -0.39733,0.81655,-1.36646,-1.57112,-0.98616,2.15473,-0.50179 -0.39803,0.81631,-1.36595,-1.57218,-0.98571,2.15489,-0.50198 -0.39872,0.81609,-1.36545,-1.57322,-0.98528,2.15505,-0.50217 -0.39942,0.81587,-1.36496,-1.57424,-0.98485,2.15520,-0.50235 -0.40011,0.81565,-1.36448,-1.57525,-0.98442,2.15536,-0.50253 -0.40081,0.81544,-1.36400,-1.57623,-0.98401,2.15551,-0.50271 -0.40150,0.81523,-1.36354,-1.57720,-0.98360,2.15565,-0.50288 -0.40220,0.81502,-1.36308,-1.57816,-0.98320,2.15580,-0.50305 -0.40289,0.81482,-1.36263,-1.57909,-0.98280,2.15594,-0.50322 -0.40358,0.81463,-1.36219,-1.58002,-0.98241,2.15608,-0.50338 -0.40428,0.81443,-1.36175,-1.58092,-0.98203,2.15622,-0.50354 -0.40497,0.81424,-1.36132,-1.58181,-0.98165,2.15635,-0.50370 -0.40567,0.81406,-1.36090,-1.58268,-0.98128,2.15648,-0.50385 -0.40636,0.81387,-1.36049,-1.58354,-0.98092,2.15661,-0.50400 -0.40706,0.81370,-1.36009,-1.58439,-0.98056,2.15674,-0.50415 -0.40775,0.81352,-1.35969,-1.58522,-0.98021,2.15686,-0.50429 -0.40845,0.81335,-1.35930,-1.58603,-0.97986,2.15698,-0.50444 -0.40914,0.81318,-1.35891,-1.58683,-0.97952,2.15710,-0.50458 -0.40984,0.81301,-1.35853,-1.58762,-0.97918,2.15722,-0.50471 -0.41053,0.81285,-1.35816,-1.58840,-0.97885,2.15733,-0.50485 -0.41123,0.81269,-1.35780,-1.58916,-0.97852,2.15744,-0.50498 -0.41192,0.81254,-1.35744,-1.58991,-0.97820,2.15755,-0.50511 -0.41261,0.81238,-1.35709,-1.59064,-0.97789,2.15766,-0.50523 -0.41331,0.81223,-1.35674,-1.59136,-0.97758,2.15777,-0.50535 -0.41400,0.81209,-1.35640,-1.59207,-0.97727,2.15787,-0.50548 -0.41470,0.81194,-1.35607,-1.59277,-0.97697,2.15797,-0.50559 -0.41539,0.81180,-1.35574,-1.59346,-0.97668,2.15807,-0.50571 -0.41609,0.81166,-1.35542,-1.59413,-0.97639,2.15817,-0.50582 -0.41678,0.81153,-1.35510,-1.59479,-0.97610,2.15826,-0.50594 -0.41748,0.81139,-1.35479,-1.59544,-0.97582,2.15836,-0.50604 -0.41817,0.81126,-1.35448,-1.59608,-0.97554,2.15845,-0.50615 -0.41887,0.81114,-1.35418,-1.59671,-0.97527,2.15854,-0.50626 -0.41956,0.81101,-1.35388,-1.59733,-0.97500,2.15863,-0.50636 -0.42026,0.81089,-1.35359,-1.59794,-0.97474,2.15872,-0.50646 -0.42095,0.81077,-1.35331,-1.59854,-0.97448,2.15880,-0.50656 -0.42164,0.81065,-1.35303,-1.59912,-0.97422,2.15889,-0.50666 -0.42234,0.81053,-1.35275,-1.59970,-0.97397,2.15897,-0.50675 -0.42303,0.81042,-1.35248,-1.60027,-0.97373,2.15905,-0.50684 -0.42373,0.81031,-1.35221,-1.60082,-0.97348,2.15913,-0.50693 -0.42442,0.81025,-1.35207,-1.60112,-0.97335,2.15917,-0.50698 -0.42512,0.81010,-1.35168,-1.60191,-0.97302,2.15927,-0.50711 -0.42581,0.80995,-1.35130,-1.60269,-0.97269,2.15938,-0.50723 -0.42651,0.80981,-1.35092,-1.60345,-0.97237,2.15948,-0.50735 -0.42720,0.80967,-1.35055,-1.60421,-0.97205,2.15958,-0.50746 -0.42790,0.80953,-1.35018,-1.60494,-0.97174,2.15967,-0.50758 -0.42859,0.80939,-1.34983,-1.60567,-0.97144,2.15977,-0.50769 -0.42929,0.80926,-1.34947,-1.60638,-0.97113,2.15986,-0.50780 -0.42998,0.80913,-1.34913,-1.60708,-0.97084,2.15995,-0.50791 -0.43068,0.80900,-1.34879,-1.60777,-0.97055,2.16004,-0.50801 -0.43137,0.80888,-1.34845,-1.60845,-0.97026,2.16013,-0.50811 -0.43206,0.80876,-1.34813,-1.60911,-0.96997,2.16022,-0.50821 -0.43276,0.80864,-1.34780,-1.60977,-0.96970,2.16030,-0.50831 -0.43345,0.80852,-1.34749,-1.61041,-0.96942,2.16038,-0.50841 -0.43415,0.80840,-1.34718,-1.61104,-0.96915,2.16047,-0.50850 -0.43484,0.80829,-1.34687,-1.61166,-0.96889,2.16055,-0.50860 -0.43554,0.80818,-1.34657,-1.61227,-0.96863,2.16062,-0.50869 -0.43623,0.80807,-1.34628,-1.61287,-0.96837,2.16070,-0.50878 -0.43693,0.80797,-1.34599,-1.61346,-0.96812,2.16077,-0.50886 -0.43762,0.80786,-1.34570,-1.61404,-0.96787,2.16085,-0.50895 -0.43832,0.80776,-1.34542,-1.61461,-0.96762,2.16092,-0.50903 -0.43901,0.80766,-1.34514,-1.61516,-0.96738,2.16099,-0.50911 -0.43971,0.80759,-1.34496,-1.61553,-0.96723,2.16104,-0.50917 -0.44040,0.80743,-1.34452,-1.61641,-0.96686,2.16115,-0.50930 -0.44109,0.80727,-1.34409,-1.61727,-0.96651,2.16126,-0.50943 -0.44179,0.80712,-1.34366,-1.61812,-0.96615,2.16137,-0.50956 -0.44248,0.80697,-1.34325,-1.61896,-0.96581,2.16147,-0.50969 -0.44318,0.80682,-1.34283,-1.61978,-0.96547,2.16158,-0.50981 -0.44387,0.80667,-1.34243,-1.62059,-0.96513,2.16168,-0.50993 -0.44457,0.80653,-1.34203,-1.62138,-0.96480,2.16178,-0.51005 -0.44526,0.80639,-1.34164,-1.62216,-0.96448,2.16188,-0.51017 -0.44596,0.80625,-1.34126,-1.62292,-0.96416,2.16198,-0.51028 -0.44665,0.80611,-1.34088,-1.62368,-0.96384,2.16207,-0.51040 -0.44735,0.80598,-1.34051,-1.62441,-0.96353,2.16216,-0.51050 -0.44804,0.80585,-1.34015,-1.62514,-0.96323,2.16225,-0.51061 -0.44874,0.80572,-1.33979,-1.62586,-0.96293,2.16234,-0.51072 -0.44943,0.80560,-1.33944,-1.62656,-0.96263,2.16243,-0.51082 -0.45013,0.80548,-1.33910,-1.62725,-0.96234,2.16252,-0.51092 -0.45082,0.80536,-1.33876,-1.62792,-0.96206,2.16260,-0.51102 -0.45151,0.80524,-1.33843,-1.62859,-0.96178,2.16268,-0.51112 -0.45221,0.80513,-1.33810,-1.62925,-0.96150,2.16276,-0.51121 -0.45290,0.80501,-1.33778,-1.62989,-0.96123,2.16284,-0.51130 -0.45360,0.80490,-1.33746,-1.63052,-0.96096,2.16292,-0.51139 -0.45429,0.80480,-1.33715,-1.63114,-0.96070,2.16299,-0.51148 -0.45499,0.80469,-1.33684,-1.63175,-0.96044,2.16307,-0.51157 -0.45568,0.80459,-1.33655,-1.63235,-0.96018,2.16314,-0.51165 -0.45638,0.80448,-1.33625,-1.63294,-0.95993,2.16321,-0.51174 -0.45707,0.80439,-1.33596,-1.63352,-0.95969,2.16328,-0.51182 -0.45777,0.80429,-1.33568,-1.63409,-0.95944,2.16335,-0.51190 -0.45846,0.80419,-1.33540,-1.63465,-0.95920,2.16342,-0.51198 -0.45916,0.80410,-1.33513,-1.63519,-0.95898,2.16348,-0.51205 -0.45985,0.80395,-1.33462,-1.63616,-0.95859,2.16358,-0.51218 -0.46054,0.80381,-1.33412,-1.63711,-0.95820,2.16369,-0.51230 -0.46124,0.80366,-1.33363,-1.63805,-0.95782,2.16379,-0.51242 -0.46193,0.80352,-1.33315,-1.63897,-0.95745,2.16388,-0.51254 -0.46263,0.80338,-1.33268,-1.63987,-0.95708,2.16398,-0.51265 -0.46332,0.80325,-1.33222,-1.64076,-0.95672,2.16407,-0.51276 -0.46402,0.80312,-1.33176,-1.64163,-0.95637,2.16417,-0.51287 -0.46471,0.80299,-1.33132,-1.64249,-0.95602,2.16426,-0.51298 -0.46541,0.80286,-1.33088,-1.64333,-0.95567,2.16434,-0.51308 -0.46610,0.80274,-1.33044,-1.64416,-0.95534,2.16443,-0.51319 -0.46680,0.80262,-1.33002,-1.64497,-0.95500,2.16451,-0.51329 -0.46749,0.80250,-1.32960,-1.64577,-0.95468,2.16460,-0.51339 -0.46819,0.80238,-1.32919,-1.64655,-0.95435,2.16468,-0.51348 -0.46888,0.80227,-1.32879,-1.64733,-0.95404,2.16476,-0.51358 -0.46957,0.80215,-1.32839,-1.64808,-0.95372,2.16484,-0.51367 -0.47027,0.80204,-1.32801,-1.64883,-0.95342,2.16491,-0.51376 -0.47096,0.80194,-1.32762,-1.64956,-0.95311,2.16499,-0.51385 -0.47166,0.80183,-1.32725,-1.65028,-0.95282,2.16506,-0.51394 -0.47235,0.80173,-1.32688,-1.65099,-0.95253,2.16513,-0.51402 -0.47305,0.80163,-1.32652,-1.65169,-0.95224,2.16520,-0.51410 -0.47374,0.80153,-1.32616,-1.65237,-0.95195,2.16527,-0.51418 -0.47444,0.80143,-1.32581,-1.65304,-0.95168,2.16534,-0.51426 -0.47513,0.80134,-1.32547,-1.65370,-0.95140,2.16540,-0.51434 -0.47583,0.80125,-1.32513,-1.65435,-0.95113,2.16547,-0.51442 -0.47652,0.80116,-1.32480,-1.65499,-0.95087,2.16553,-0.51449 -0.47722,0.80107,-1.32447,-1.65561,-0.95060,2.16559,-0.51457 -0.47791,0.80098,-1.32415,-1.65623,-0.95035,2.16566,-0.51464 -0.47861,0.80090,-1.32384,-1.65683,-0.95009,2.16571,-0.51471 -0.47930,0.80081,-1.32353,-1.65743,-0.94985,2.16577,-0.51477 -0.47999,0.80073,-1.32322,-1.65801,-0.94960,2.16583,-0.51484 -0.48069,0.80065,-1.32292,-1.65859,-0.94936,2.16589,-0.51491 -0.48138,0.80057,-1.32263,-1.65915,-0.94912,2.16594,-0.51497 -0.48208,0.80050,-1.32234,-1.65971,-0.94889,2.16599,-0.51503 -0.48277,0.80048,-1.32222,-1.65992,-0.94880,2.16600,-0.51504 -0.48347,0.80048,-1.32157,-1.66097,-0.94840,2.16601,-0.51505 -0.48416,0.80047,-1.32094,-1.66200,-0.94801,2.16601,-0.51505 -0.48486,0.80047,-1.32031,-1.66302,-0.94763,2.16601,-0.51505 -0.48555,0.80047,-1.31970,-1.66401,-0.94725,2.16601,-0.51505 -0.48625,0.80047,-1.31909,-1.66499,-0.94687,2.16602,-0.51505 -0.48694,0.80046,-1.31850,-1.66595,-0.94650,2.16602,-0.51505 -0.48764,0.80046,-1.31792,-1.66690,-0.94614,2.16602,-0.51505 -0.48833,0.80046,-1.31735,-1.66783,-0.94579,2.16602,-0.51505 -0.48902,0.80047,-1.31679,-1.66874,-0.94544,2.16602,-0.51505 -0.48972,0.80047,-1.31623,-1.66964,-0.94509,2.16601,-0.51504 -0.49041,0.80047,-1.31569,-1.67052,-0.94475,2.16601,-0.51504 -0.49111,0.80047,-1.31516,-1.67139,-0.94442,2.16601,-0.51504 -0.49180,0.80048,-1.31463,-1.67224,-0.94409,2.16601,-0.51503 -0.49250,0.80048,-1.31412,-1.67308,-0.94376,2.16601,-0.51503 -0.49319,0.80048,-1.31361,-1.67390,-0.94344,2.16600,-0.51502 -0.49389,0.80049,-1.31311,-1.67471,-0.94313,2.16600,-0.51501 -0.49458,0.80049,-1.31262,-1.67550,-0.94282,2.16600,-0.51501 -0.49528,0.80050,-1.31214,-1.67628,-0.94251,2.16599,-0.51500 -0.49597,0.80051,-1.31167,-1.67705,-0.94221,2.16599,-0.51499 -0.49667,0.80051,-1.31121,-1.67781,-0.94192,2.16598,-0.51499 -0.49736,0.80052,-1.31075,-1.67855,-0.94163,2.16598,-0.51498 -0.49806,0.80053,-1.31030,-1.67928,-0.94134,2.16597,-0.51497 -0.49875,0.80054,-1.30986,-1.67999,-0.94106,2.16597,-0.51496 -0.49944,0.80054,-1.30943,-1.68070,-0.94078,2.16596,-0.51495 -0.50014,0.80055,-1.30900,-1.68139,-0.94051,2.16595,-0.51494 -0.50083,0.80056,-1.30859,-1.68207,-0.94024,2.16595,-0.51493 -0.50153,0.80057,-1.30818,-1.68274,-0.93997,2.16594,-0.51492 -0.50222,0.80058,-1.30777,-1.68340,-0.93971,2.16594,-0.51491 -0.50292,0.80059,-1.30738,-1.68404,-0.93946,2.16593,-0.51490 -0.50361,0.80060,-1.30699,-1.68468,-0.93920,2.16592,-0.51489 -0.50431,0.80061,-1.30660,-1.68530,-0.93895,2.16591,-0.51488 -0.50500,0.80062,-1.30623,-1.68592,-0.93871,2.16591,-0.51486 -0.50570,0.80063,-1.30586,-1.68652,-0.93847,2.16590,-0.51485 -0.50639,0.80064,-1.30549,-1.68711,-0.93823,2.16589,-0.51484 -0.50709,0.80065,-1.30514,-1.68769,-0.93800,2.16588,-0.51483 -0.50778,0.80067,-1.30479,-1.68827,-0.93777,2.16587,-0.51482 -0.50847,0.80068,-1.30444,-1.68883,-0.93754,2.16586,-0.51480 -0.50917,0.80070,-1.30411,-1.68936,-0.93733,2.16585,-0.51479 -0.50986,0.80078,-1.30353,-1.69022,-0.93701,2.16579,-0.51471 -0.51056,0.80087,-1.30296,-1.69106,-0.93670,2.16573,-0.51464 -0.51125,0.80095,-1.30240,-1.69189,-0.93639,2.16567,-0.51456 -0.51195,0.80104,-1.30185,-1.69270,-0.93608,2.16561,-0.51449 -0.51264,0.80112,-1.30131,-1.69350,-0.93578,2.16556,-0.51442 -0.51334,0.80120,-1.30078,-1.69429,-0.93549,2.16550,-0.51435 -0.51403,0.80128,-1.30026,-1.69506,-0.93520,2.16544,-0.51428 -0.51473,0.80136,-1.29975,-1.69582,-0.93491,2.16539,-0.51420 -0.51542,0.80144,-1.29924,-1.69657,-0.93463,2.16533,-0.51413 -0.51612,0.80152,-1.29875,-1.69730,-0.93435,2.16527,-0.51407 -0.51681,0.80160,-1.29826,-1.69803,-0.93408,2.16522,-0.51400 -0.51750,0.80168,-1.29778,-1.69874,-0.93381,2.16516,-0.51393 -0.51820,0.80176,-1.29731,-1.69943,-0.93354,2.16511,-0.51386 -0.51889,0.80183,-1.29685,-1.70012,-0.93328,2.16506,-0.51379 -0.51959,0.80191,-1.29640,-1.70079,-0.93302,2.16500,-0.51373 -0.52028,0.80198,-1.29595,-1.70145,-0.93277,2.16495,-0.51366 -0.52098,0.80206,-1.29551,-1.70211,-0.93252,2.16490,-0.51360 -0.52167,0.80213,-1.29508,-1.70275,-0.93227,2.16485,-0.51353 -0.52237,0.80220,-1.29466,-1.70337,-0.93203,2.16479,-0.51347 -0.52306,0.80228,-1.29424,-1.70399,-0.93179,2.16474,-0.51340 -0.52376,0.80235,-1.29383,-1.70460,-0.93156,2.16469,-0.51334 -0.52445,0.80242,-1.29343,-1.70520,-0.93133,2.16464,-0.51328 -0.52515,0.80249,-1.29304,-1.70579,-0.93110,2.16459,-0.51322 -0.52584,0.80256,-1.29265,-1.70636,-0.93087,2.16455,-0.51315 -0.52654,0.80263,-1.29227,-1.70693,-0.93065,2.16450,-0.51309 -0.52723,0.80269,-1.29189,-1.70749,-0.93044,2.16445,-0.51303 -0.52792,0.80276,-1.29152,-1.70804,-0.93022,2.16440,-0.51297 -0.52862,0.80283,-1.29123,-1.70845,-0.93007,2.16435,-0.51291 -0.52931,0.80323,-1.29012,-1.70983,-0.92962,2.16407,-0.51257 -0.53001,0.80363,-1.28903,-1.71118,-0.92917,2.16380,-0.51224 -0.53070,0.80402,-1.28796,-1.71252,-0.92873,2.16353,-0.51191 -0.53140,0.80440,-1.28691,-1.71383,-0.92829,2.16326,-0.51159 -0.53209,0.80479,-1.28588,-1.71512,-0.92786,2.16299,-0.51126 -0.53279,0.80516,-1.28486,-1.71638,-0.92744,2.16273,-0.51095 -0.53348,0.80553,-1.28386,-1.71763,-0.92703,2.16247,-0.51063 -0.53418,0.80590,-1.28288,-1.71885,-0.92662,2.16221,-0.51032 -0.53487,0.80626,-1.28192,-1.72005,-0.92622,2.16196,-0.51002 -0.53557,0.80662,-1.28097,-1.72123,-0.92582,2.16171,-0.50972 -0.53626,0.80697,-1.28003,-1.72239,-0.92543,2.16147,-0.50942 -0.53695,0.80732,-1.27912,-1.72353,-0.92505,2.16122,-0.50912 -0.53765,0.80766,-1.27822,-1.72465,-0.92467,2.16098,-0.50883 -0.53834,0.80800,-1.27733,-1.72576,-0.92429,2.16074,-0.50854 -0.53904,0.80834,-1.27646,-1.72684,-0.92393,2.16051,-0.50826 -0.53973,0.80867,-1.27561,-1.72790,-0.92356,2.16027,-0.50798 -0.54043,0.80900,-1.27477,-1.72895,-0.92321,2.16005,-0.50770 -0.54112,0.80932,-1.27395,-1.72998,-0.92286,2.15982,-0.50743 -0.54182,0.80964,-1.27313,-1.73099,-0.92251,2.15959,-0.50716 -0.54251,0.80995,-1.27234,-1.73198,-0.92217,2.15937,-0.50689 -0.54321,0.81027,-1.27155,-1.73296,-0.92183,2.15915,-0.50663 -0.54390,0.81057,-1.27078,-1.73391,-0.92150,2.15894,-0.50637 -0.54460,0.81087,-1.27003,-1.73486,-0.92117,2.15873,-0.50611 -0.54529,0.81117,-1.26928,-1.73578,-0.92085,2.15852,-0.50586 -0.54598,0.81147,-1.26855,-1.73670,-0.92053,2.15831,-0.50561 -0.54668,0.81176,-1.26783,-1.73759,-0.92022,2.15810,-0.50536 -0.54737,0.81205,-1.26713,-1.73847,-0.91991,2.15790,-0.50511 -0.54807,0.81233,-1.26643,-1.73934,-0.91961,2.15770,-0.50487 -0.54876,0.81261,-1.26575,-1.74019,-0.91931,2.15750,-0.50464 -0.54946,0.81289,-1.26508,-1.74102,-0.91902,2.15731,-0.50440 -0.55015,0.81316,-1.26442,-1.74184,-0.91873,2.15711,-0.50417 -0.55085,0.81343,-1.26378,-1.74265,-0.91844,2.15692,-0.50394 -0.55154,0.81369,-1.26314,-1.74344,-0.91816,2.15674,-0.50371 -0.55224,0.81396,-1.26251,-1.74422,-0.91788,2.15655,-0.50349 -0.55293,0.81421,-1.26190,-1.74499,-0.91761,2.15637,-0.50327 -0.55363,0.81447,-1.26130,-1.74574,-0.91734,2.15619,-0.50305 -0.55432,0.81472,-1.26070,-1.74649,-0.91707,2.15601,-0.50284 -0.55502,0.81497,-1.26012,-1.74721,-0.91681,2.15583,-0.50263 -0.55571,0.81522,-1.25955,-1.74793,-0.91655,2.15566,-0.50242 -0.55640,0.81546,-1.25898,-1.74863,-0.91630,2.15548,-0.50221 -0.55710,0.81570,-1.25843,-1.74933,-0.91605,2.15532,-0.50201 -0.55779,0.81593,-1.25788,-1.75001,-0.91580,2.15515,-0.50181 -0.55849,0.81616,-1.25735,-1.75067,-0.91556,2.15498,-0.50161 -0.55918,0.81639,-1.25682,-1.75133,-0.91532,2.15482,-0.50141 -0.55988,0.81662,-1.25631,-1.75198,-0.91508,2.15466,-0.50122 -0.56057,0.81684,-1.25580,-1.75261,-0.91485,2.15450,-0.50103 -0.56127,0.81706,-1.25530,-1.75324,-0.91462,2.15434,-0.50084 -0.56196,0.81728,-1.25481,-1.75385,-0.91439,2.15419,-0.50065 -0.56266,0.81750,-1.25433,-1.75445,-0.91417,2.15403,-0.50047 -0.56335,0.81771,-1.25386,-1.75505,-0.91395,2.15388,-0.50029 -0.56405,0.81792,-1.25339,-1.75563,-0.91373,2.15373,-0.50011 -0.56474,0.81812,-1.25293,-1.75620,-0.91352,2.15359,-0.49993 -0.56543,0.81833,-1.25248,-1.75677,-0.91331,2.15344,-0.49976 -0.56613,0.81853,-1.25204,-1.75732,-0.91310,2.15330,-0.49959 -0.56682,0.81872,-1.25161,-1.75787,-0.91290,2.15316,-0.49942 -0.56752,0.81892,-1.25118,-1.75840,-0.91270,2.15302,-0.49925 -0.56821,0.81911,-1.25076,-1.75893,-0.91250,2.15288,-0.49909 -0.56891,0.81930,-1.25035,-1.75945,-0.91230,2.15274,-0.49892 -0.56960,0.81949,-1.24994,-1.75995,-0.91211,2.15261,-0.49876 -0.57030,0.81967,-1.24955,-1.76045,-0.91192,2.15248,-0.49860 -0.57099,0.81980,-1.24929,-1.76077,-0.91180,2.15239,-0.49850 -0.57169,0.82013,-1.24868,-1.76145,-0.91157,2.15215,-0.49821 -0.57238,0.82046,-1.24809,-1.76211,-0.91135,2.15192,-0.49794 -0.57308,0.82079,-1.24751,-1.76277,-0.91113,2.15169,-0.49766 -0.57377,0.82111,-1.24693,-1.76341,-0.91091,2.15146,-0.49739 -0.57447,0.82143,-1.24637,-1.76405,-0.91070,2.15123,-0.49712 -0.57516,0.82174,-1.24581,-1.76467,-0.91049,2.15101,-0.49686 -0.57585,0.82205,-1.24527,-1.76528,-0.91028,2.15079,-0.49660 -0.57655,0.82236,-1.24473,-1.76588,-0.91007,2.15058,-0.49634 -0.57724,0.82266,-1.24421,-1.76647,-0.90987,2.15036,-0.49609 -0.57794,0.82295,-1.24369,-1.76705,-0.90967,2.15015,-0.49584 -0.57863,0.82324,-1.24318,-1.76763,-0.90947,2.14995,-0.49559 -0.57933,0.82353,-1.24268,-1.76819,-0.90927,2.14974,-0.49535 -0.58002,0.82381,-1.24219,-1.76874,-0.90908,2.14954,-0.49511 -0.58072,0.82409,-1.24171,-1.76928,-0.90889,2.14934,-0.49488 -0.58141,0.82437,-1.24123,-1.76982,-0.90871,2.14914,-0.49464 -0.58211,0.82464,-1.24077,-1.77034,-0.90852,2.14895,-0.49441 -0.58280,0.82491,-1.24031,-1.77086,-0.90834,2.14876,-0.49419 -0.58350,0.82517,-1.23986,-1.77137,-0.90816,2.14857,-0.49396 -0.58419,0.82543,-1.23941,-1.77187,-0.90798,2.14838,-0.49374 -0.58488,0.82569,-1.23898,-1.77236,-0.90781,2.14820,-0.49353 -0.58558,0.82595,-1.23855,-1.77284,-0.90764,2.14802,-0.49331 -0.58627,0.82620,-1.23813,-1.77331,-0.90747,2.14784,-0.49310 -0.58697,0.82644,-1.23772,-1.77378,-0.90730,2.14766,-0.49289 -0.58766,0.82668,-1.23731,-1.77424,-0.90713,2.14749,-0.49269 -0.58836,0.82682,-1.23711,-1.77445,-0.90707,2.14740,-0.49258 -0.58905,0.82743,-1.23633,-1.77515,-0.90687,2.14696,-0.49207 -0.58975,0.82804,-1.23555,-1.77584,-0.90669,2.14654,-0.49157 -0.59044,0.82863,-1.23479,-1.77652,-0.90650,2.14612,-0.49107 -0.59114,0.82922,-1.23404,-1.77719,-0.90631,2.14570,-0.49059 -0.59183,0.82980,-1.23331,-1.77785,-0.90613,2.14529,-0.49010 -0.59253,0.83037,-1.23259,-1.77850,-0.90595,2.14489,-0.48963 -0.59322,0.83093,-1.23188,-1.77914,-0.90577,2.14449,-0.48916 -0.59391,0.83149,-1.23118,-1.77976,-0.90560,2.14409,-0.48870 -0.59461,0.83204,-1.23050,-1.78038,-0.90542,2.14371,-0.48825 -0.59530,0.83258,-1.22982,-1.78098,-0.90525,2.14332,-0.48780 -0.59600,0.83311,-1.22916,-1.78158,-0.90508,2.14295,-0.48736 -0.59669,0.83363,-1.22851,-1.78216,-0.90491,2.14257,-0.48693 -0.59739,0.83415,-1.22787,-1.78273,-0.90475,2.14221,-0.48650 -0.59808,0.83466,-1.22725,-1.78330,-0.90459,2.14184,-0.48608 -0.59878,0.83516,-1.22663,-1.78386,-0.90442,2.14149,-0.48566 -0.59947,0.83566,-1.22602,-1.78440,-0.90426,2.14113,-0.48525 -0.60017,0.83615,-1.22543,-1.78494,-0.90411,2.14079,-0.48485 -0.60086,0.83663,-1.22484,-1.78547,-0.90395,2.14044,-0.48445 -0.60156,0.83710,-1.22426,-1.78599,-0.90380,2.14010,-0.48406 -0.60225,0.83757,-1.22370,-1.78650,-0.90364,2.13977,-0.48367 -0.60295,0.83803,-1.22314,-1.78700,-0.90349,2.13944,-0.48329 -0.60364,0.83848,-1.22260,-1.78749,-0.90335,2.13912,-0.48291 -0.60433,0.83893,-1.22206,-1.78798,-0.90320,2.13880,-0.48254 -0.60503,0.83937,-1.22153,-1.78846,-0.90305,2.13848,-0.48218 -0.60572,0.83981,-1.22101,-1.78892,-0.90291,2.13817,-0.48182 -0.60642,0.84024,-1.22050,-1.78939,-0.90277,2.13786,-0.48146 -0.60711,0.84066,-1.22000,-1.78984,-0.90263,2.13756,-0.48111 -0.60781,0.84108,-1.21951,-1.79029,-0.90249,2.13726,-0.48077 -0.60850,0.84149,-1.21903,-1.79073,-0.90236,2.13697,-0.48043 -0.60920,0.84189,-1.21855,-1.79116,-0.90222,2.13668,-0.48009 -0.60989,0.84229,-1.21808,-1.79158,-0.90209,2.13639,-0.47976 -0.61059,0.84269,-1.21762,-1.79200,-0.90196,2.13611,-0.47944 -0.61128,0.84307,-1.21717,-1.79241,-0.90183,2.13583,-0.47912 -0.61198,0.84345,-1.21673,-1.79281,-0.90170,2.13555,-0.47880 -0.61267,0.84383,-1.21629,-1.79321,-0.90157,2.13528,-0.47849 -0.61336,0.84420,-1.21586,-1.79360,-0.90145,2.13502,-0.47819 -0.61406,0.84457,-1.21544,-1.79399,-0.90132,2.13475,-0.47788 -0.61475,0.84493,-1.21503,-1.79436,-0.90120,2.13450,-0.47759 -0.61545,0.84528,-1.21462,-1.79473,-0.90108,2.13424,-0.47729 -0.61614,0.84563,-1.21422,-1.79510,-0.90096,2.13399,-0.47700 -0.61684,0.84599,-1.21383,-1.79544,-0.90085,2.13373,-0.47671 -0.61753,0.84675,-1.21310,-1.79594,-0.90075,2.13319,-0.47609 -0.61823,0.84750,-1.21239,-1.79644,-0.90065,2.13266,-0.47548 -0.61892,0.84824,-1.21168,-1.79692,-0.90055,2.13213,-0.47488 -0.61962,0.84897,-1.21099,-1.79740,-0.90045,2.13161,-0.47428 -0.62031,0.84968,-1.21031,-1.79787,-0.90035,2.13110,-0.47370 -0.62101,0.85039,-1.20964,-1.79833,-0.90026,2.13059,-0.47312 -0.62170,0.85109,-1.20899,-1.79879,-0.90016,2.13009,-0.47256 -0.62240,0.85178,-1.20834,-1.79923,-0.90006,2.12960,-0.47200 -0.62309,0.85246,-1.20771,-1.79967,-0.89997,2.12912,-0.47144 -0.62378,0.85312,-1.20709,-1.80010,-0.89987,2.12864,-0.47090 -0.62448,0.85378,-1.20647,-1.80053,-0.89978,2.12816,-0.47037 -0.62517,0.85443,-1.20587,-1.80095,-0.89969,2.12770,-0.46984 -0.62587,0.85507,-1.20528,-1.80136,-0.89959,2.12724,-0.46932 -0.62656,0.85570,-1.20470,-1.80176,-0.89950,2.12679,-0.46881 -0.62726,0.85632,-1.20413,-1.80216,-0.89941,2.12634,-0.46830 -0.62795,0.85694,-1.20357,-1.80255,-0.89932,2.12590,-0.46780 -0.62865,0.85754,-1.20302,-1.80294,-0.89923,2.12547,-0.46731 -0.62934,0.85814,-1.20248,-1.80332,-0.89914,2.12504,-0.46683 -0.63004,0.85872,-1.20194,-1.80369,-0.89905,2.12462,-0.46636 -0.63073,0.85930,-1.20142,-1.80405,-0.89897,2.12420,-0.46589 -0.63143,0.85987,-1.20091,-1.80441,-0.89888,2.12379,-0.46543 -0.63212,0.86043,-1.20040,-1.80477,-0.89879,2.12339,-0.46497 -0.63281,0.86098,-1.19990,-1.80512,-0.89871,2.12299,-0.46452 -0.63351,0.86153,-1.19942,-1.80546,-0.89862,2.12259,-0.46408 -0.63420,0.86207,-1.19894,-1.80580,-0.89854,2.12220,-0.46365 -0.63490,0.86260,-1.19847,-1.80613,-0.89846,2.12182,-0.46322 -0.63559,0.86312,-1.19800,-1.80646,-0.89837,2.12145,-0.46280 -0.63629,0.86363,-1.19755,-1.80678,-0.89829,2.12107,-0.46238 -0.63698,0.86414,-1.19710,-1.80709,-0.89821,2.12071,-0.46197 -0.63768,0.86464,-1.19666,-1.80740,-0.89813,2.12035,-0.46157 -0.63837,0.86513,-1.19623,-1.80771,-0.89805,2.11999,-0.46117 -0.63907,0.86561,-1.19580,-1.80801,-0.89797,2.11964,-0.46078 -0.63976,0.86609,-1.19539,-1.80831,-0.89789,2.11929,-0.46039 -0.64046,0.86656,-1.19498,-1.80860,-0.89782,2.11895,-0.46001 -0.64115,0.86702,-1.19457,-1.80888,-0.89774,2.11861,-0.45964 -0.64184,0.86748,-1.19418,-1.80916,-0.89766,2.11828,-0.45927 -0.64254,0.86793,-1.19379,-1.80944,-0.89759,2.11796,-0.45891 -0.64323,0.86837,-1.19340,-1.80971,-0.89751,2.11763,-0.45855 -0.64393,0.86881,-1.19303,-1.80998,-0.89744,2.11732,-0.45820 -0.64462,0.86924,-1.19266,-1.81025,-0.89736,2.11700,-0.45785 -0.64532,0.86966,-1.19229,-1.81051,-0.89729,2.11669,-0.45751 -0.64601,0.86981,-1.19217,-1.81058,-0.89727,2.11659,-0.45739 -0.64671,0.87046,-1.19169,-1.81083,-0.89724,2.11612,-0.45687 -0.64740,0.87109,-1.19122,-1.81108,-0.89720,2.11566,-0.45636 -0.64810,0.87171,-1.19076,-1.81132,-0.89716,2.11521,-0.45586 -0.64879,0.87233,-1.19030,-1.81156,-0.89713,2.11477,-0.45537 -0.64949,0.87293,-1.18986,-1.81180,-0.89709,2.11433,-0.45489 -0.65018,0.87353,-1.18942,-1.81203,-0.89705,2.11390,-0.45441 -0.65088,0.87412,-1.18899,-1.81226,-0.89702,2.11347,-0.45394 -0.65157,0.87469,-1.18856,-1.81248,-0.89698,2.11305,-0.45348 -0.65226,0.87526,-1.18814,-1.81270,-0.89694,2.11264,-0.45302 -0.65296,0.87583,-1.18773,-1.81292,-0.89691,2.11223,-0.45257 -0.65365,0.87638,-1.18733,-1.81313,-0.89687,2.11183,-0.45213 -0.65435,0.87692,-1.18693,-1.81334,-0.89683,2.11143,-0.45170 -0.65504,0.87746,-1.18655,-1.81355,-0.89679,2.11104,-0.45127 -0.65574,0.87799,-1.18616,-1.81375,-0.89676,2.11066,-0.45084 -0.65643,0.87851,-1.18579,-1.81396,-0.89672,2.11028,-0.45043 -0.65713,0.87903,-1.18542,-1.81415,-0.89668,2.10990,-0.45002 -0.65782,0.87953,-1.18505,-1.81435,-0.89665,2.10954,-0.44961 -0.65852,0.88003,-1.18470,-1.81454,-0.89661,2.10917,-0.44922 -0.65921,0.88052,-1.18435,-1.81473,-0.89657,2.10881,-0.44882 -0.65991,0.88101,-1.18400,-1.81491,-0.89653,2.10846,-0.44844 -0.66060,0.88148,-1.18366,-1.81510,-0.89650,2.10811,-0.44806 -0.66129,0.88195,-1.18333,-1.81528,-0.89646,2.10777,-0.44768 -0.66199,0.88241,-1.18300,-1.81545,-0.89642,2.10743,-0.44731 -0.66268,0.88256,-1.18291,-1.81549,-0.89642,2.10733,-0.44720 -0.66338,0.88357,-1.18229,-1.81565,-0.89648,2.10660,-0.44640 -0.66407,0.88457,-1.18169,-1.81580,-0.89653,2.10588,-0.44562 -0.66477,0.88555,-1.18109,-1.81596,-0.89658,2.10517,-0.44484 -0.66546,0.88651,-1.18051,-1.81611,-0.89663,2.10447,-0.44408 -0.66616,0.88747,-1.17993,-1.81626,-0.89668,2.10378,-0.44333 -0.66685,0.88840,-1.17937,-1.81640,-0.89672,2.10310,-0.44260 -0.66755,0.88933,-1.17882,-1.81655,-0.89677,2.10243,-0.44187 -0.66824,0.89024,-1.17827,-1.81669,-0.89681,2.10177,-0.44115 -0.66894,0.89114,-1.17774,-1.81683,-0.89685,2.10112,-0.44045 -0.66963,0.89202,-1.17721,-1.81697,-0.89689,2.10047,-0.43975 -0.67033,0.89289,-1.17670,-1.81710,-0.89693,2.09984,-0.43907 -0.67102,0.89375,-1.17619,-1.81724,-0.89696,2.09922,-0.43840 -0.67171,0.89460,-1.17569,-1.81737,-0.89700,2.09860,-0.43773 -0.67241,0.89543,-1.17520,-1.81750,-0.89703,2.09799,-0.43708 -0.67310,0.89625,-1.17472,-1.81763,-0.89707,2.09739,-0.43644 -0.67380,0.89706,-1.17425,-1.81775,-0.89710,2.09680,-0.43581 -0.67449,0.89786,-1.17379,-1.81788,-0.89713,2.09622,-0.43518 -0.67519,0.89865,-1.17333,-1.81800,-0.89715,2.09565,-0.43457 -0.67588,0.89942,-1.17288,-1.81812,-0.89718,2.09508,-0.43396 -0.67658,0.90018,-1.17244,-1.81824,-0.89721,2.09452,-0.43337 -0.67727,0.90093,-1.17201,-1.81836,-0.89723,2.09397,-0.43278 -0.67797,0.90167,-1.17159,-1.81847,-0.89725,2.09343,-0.43220 -0.67866,0.90240,-1.17117,-1.81859,-0.89728,2.09290,-0.43163 -0.67936,0.90312,-1.17076,-1.81870,-0.89730,2.09237,-0.43107 -0.68005,0.90383,-1.17035,-1.81881,-0.89732,2.09185,-0.43052 -0.68074,0.90453,-1.16996,-1.81892,-0.89734,2.09134,-0.42998 -0.68144,0.90521,-1.16957,-1.81903,-0.89736,2.09084,-0.42944 -0.68213,0.90589,-1.16919,-1.81914,-0.89737,2.09034,-0.42892 -0.68283,0.90656,-1.16881,-1.81924,-0.89739,2.08985,-0.42840 -0.68352,0.90721,-1.16844,-1.81934,-0.89740,2.08937,-0.42789 -0.68422,0.90786,-1.16808,-1.81945,-0.89742,2.08889,-0.42738 -0.68491,0.90850,-1.16772,-1.81955,-0.89743,2.08842,-0.42689 -0.68561,0.90913,-1.16737,-1.81965,-0.89744,2.08796,-0.42640 -0.68630,0.90975,-1.16703,-1.81974,-0.89745,2.08750,-0.42592 -0.68700,0.91035,-1.16669,-1.81984,-0.89747,2.08706,-0.42545 -0.68769,0.91096,-1.16635,-1.81994,-0.89748,2.08661,-0.42498 -0.68839,0.91155,-1.16603,-1.82003,-0.89748,2.08618,-0.42452 -0.68908,0.91213,-1.16571,-1.82012,-0.89749,2.08575,-0.42407 -0.68977,0.91270,-1.16539,-1.82022,-0.89750,2.08532,-0.42363 -0.69047,0.91327,-1.16508,-1.82031,-0.89751,2.08490,-0.42319 -0.69116,0.91382,-1.16477,-1.82040,-0.89751,2.08449,-0.42276 -0.69186,0.91437,-1.16447,-1.82048,-0.89752,2.08409,-0.42233 -0.69255,0.91491,-1.16418,-1.82057,-0.89752,2.08369,-0.42191 -0.69325,0.91545,-1.16389,-1.82066,-0.89753,2.08329,-0.42150 -0.69394,0.91597,-1.16360,-1.82074,-0.89753,2.08290,-0.42109 -0.69464,0.91649,-1.16332,-1.82082,-0.89753,2.08252,-0.42069 -0.69533,0.91700,-1.16305,-1.82091,-0.89754,2.08215,-0.42030 -0.69603,0.91747,-1.16280,-1.82097,-0.89754,2.08180,-0.41993 -0.69672,0.91817,-1.16247,-1.82099,-0.89760,2.08128,-0.41940 -0.69742,0.91886,-1.16214,-1.82100,-0.89765,2.08077,-0.41887 -0.69811,0.91954,-1.16183,-1.82102,-0.89770,2.08027,-0.41834 -0.69881,0.92020,-1.16151,-1.82103,-0.89775,2.07978,-0.41783 -0.69950,0.92086,-1.16120,-1.82105,-0.89780,2.07929,-0.41732 -0.70019,0.92151,-1.16090,-1.82106,-0.89785,2.07881,-0.41682 -0.70089,0.92215,-1.16060,-1.82107,-0.89790,2.07834,-0.41633 -0.70158,0.92278,-1.16031,-1.82109,-0.89794,2.07787,-0.41585 -0.70228,0.92340,-1.16002,-1.82111,-0.89799,2.07742,-0.41537 -0.70297,0.92401,-1.15974,-1.82112,-0.89803,2.07696,-0.41490 -0.70367,0.92461,-1.15947,-1.82114,-0.89807,2.07652,-0.41444 -0.70436,0.92521,-1.15919,-1.82115,-0.89811,2.07608,-0.41399 -0.70506,0.92579,-1.15892,-1.82117,-0.89815,2.07565,-0.41354 -0.70575,0.92636,-1.15866,-1.82118,-0.89818,2.07522,-0.41310 -0.70645,0.92693,-1.15840,-1.82120,-0.89822,2.07480,-0.41267 -0.70714,0.92749,-1.15815,-1.82121,-0.89825,2.07439,-0.41224 -0.70784,0.92804,-1.15790,-1.82123,-0.89829,2.07398,-0.41182 -0.70853,0.92858,-1.15765,-1.82125,-0.89832,2.07358,-0.41140 -0.70922,0.92911,-1.15741,-1.82126,-0.89835,2.07318,-0.41100 -0.70992,0.92964,-1.15717,-1.82128,-0.89838,2.07279,-0.41059 -0.71061,0.93015,-1.15694,-1.82129,-0.89841,2.07241,-0.41020 -0.71131,0.93052,-1.15679,-1.82127,-0.89845,2.07213,-0.40992 -0.71200,0.93164,-1.15646,-1.82097,-0.89868,2.07131,-0.40907 -0.71270,0.93275,-1.15613,-1.82067,-0.89890,2.07050,-0.40823 -0.71339,0.93384,-1.15582,-1.82038,-0.89912,2.06970,-0.40741 -0.71409,0.93491,-1.15550,-1.82009,-0.89933,2.06891,-0.40660 -0.71478,0.93596,-1.15520,-1.81981,-0.89955,2.06813,-0.40580 -0.71548,0.93700,-1.15489,-1.81953,-0.89975,2.06736,-0.40501 -0.71617,0.93803,-1.15460,-1.81926,-0.89995,2.06661,-0.40424 -0.71687,0.93904,-1.15431,-1.81899,-0.90015,2.06586,-0.40348 -0.71756,0.94003,-1.15402,-1.81873,-0.90035,2.06513,-0.40273 -0.71826,0.94101,-1.15374,-1.81847,-0.90054,2.06441,-0.40199 -0.71895,0.94197,-1.15347,-1.81822,-0.90072,2.06370,-0.40127 -0.71964,0.94292,-1.15320,-1.81797,-0.90090,2.06299,-0.40055 -0.72034,0.94385,-1.15294,-1.81773,-0.90108,2.06230,-0.39985 -0.72103,0.94477,-1.15268,-1.81749,-0.90126,2.06162,-0.39916 -0.72173,0.94568,-1.15242,-1.81726,-0.90143,2.06095,-0.39848 -0.72242,0.94657,-1.15217,-1.81703,-0.90160,2.06029,-0.39781 -0.72312,0.94745,-1.15192,-1.81680,-0.90176,2.05964,-0.39715 -0.72381,0.94831,-1.15168,-1.81658,-0.90192,2.05899,-0.39650 -0.72451,0.94916,-1.15145,-1.81636,-0.90208,2.05836,-0.39586 -0.72520,0.95000,-1.15121,-1.81615,-0.90223,2.05774,-0.39523 -0.72590,0.95083,-1.15098,-1.81594,-0.90239,2.05712,-0.39461 -0.72659,0.95164,-1.15076,-1.81574,-0.90253,2.05652,-0.39401 -0.72729,0.95244,-1.15054,-1.81553,-0.90268,2.05592,-0.39341 -0.72798,0.95323,-1.15032,-1.81534,-0.90282,2.05533,-0.39282 -0.72867,0.95401,-1.15011,-1.81514,-0.90296,2.05475,-0.39224 -0.72937,0.95477,-1.14990,-1.81495,-0.90310,2.05418,-0.39166 -0.73006,0.95552,-1.14970,-1.81477,-0.90323,2.05362,-0.39110 -0.73076,0.95627,-1.14949,-1.81459,-0.90336,2.05307,-0.39055 -0.73145,0.95700,-1.14930,-1.81441,-0.90349,2.05252,-0.39000 -0.73215,0.95771,-1.14910,-1.81423,-0.90361,2.05198,-0.38947 -0.73284,0.95842,-1.14891,-1.81406,-0.90373,2.05146,-0.38894 -0.73354,0.95912,-1.14872,-1.81389,-0.90385,2.05093,-0.38842 -0.73423,0.95981,-1.14854,-1.81372,-0.90397,2.05042,-0.38791 -0.73493,0.96048,-1.14835,-1.81356,-0.90409,2.04991,-0.38740 -0.73562,0.96115,-1.14818,-1.81340,-0.90420,2.04941,-0.38691 -0.73632,0.96180,-1.14800,-1.81325,-0.90431,2.04892,-0.38642 -0.73701,0.96245,-1.14783,-1.81309,-0.90442,2.04844,-0.38594 -0.73770,0.96308,-1.14766,-1.81294,-0.90452,2.04796,-0.38547 -0.73840,0.96371,-1.14749,-1.81280,-0.90462,2.04749,-0.38500 -0.73909,0.96433,-1.14733,-1.81265,-0.90473,2.04703,-0.38454 -0.73979,0.96493,-1.14717,-1.81251,-0.90482,2.04657,-0.38409 -0.74048,0.96553,-1.14701,-1.81237,-0.90492,2.04612,-0.38365 -0.74118,0.96612,-1.14685,-1.81224,-0.90502,2.04568,-0.38321 -0.74187,0.96670,-1.14670,-1.81210,-0.90511,2.04525,-0.38278 -0.74257,0.96727,-1.14655,-1.81197,-0.90520,2.04482,-0.38236 -0.74326,0.96783,-1.14640,-1.81185,-0.90529,2.04439,-0.38194 -0.74396,0.96838,-1.14626,-1.81172,-0.90537,2.04398,-0.38153 -0.74465,0.96893,-1.14611,-1.81160,-0.90546,2.04357,-0.38113 -0.74535,0.96946,-1.14597,-1.81148,-0.90554,2.04316,-0.38073 -0.74604,0.96999,-1.14584,-1.81136,-0.90562,2.04276,-0.38034 -0.74674,0.97051,-1.14570,-1.81124,-0.90570,2.04237,-0.37996 -0.74743,0.97100,-1.14558,-1.81112,-0.90578,2.04200,-0.37960 -0.74812,0.97175,-1.14547,-1.81080,-0.90596,2.04144,-0.37904 -0.74882,0.97250,-1.14535,-1.81049,-0.90614,2.04088,-0.37849 -0.74951,0.97323,-1.14524,-1.81019,-0.90632,2.04033,-0.37795 -0.75021,0.97395,-1.14513,-1.80989,-0.90649,2.03979,-0.37742 -0.75090,0.97466,-1.14502,-1.80959,-0.90666,2.03926,-0.37690 -0.75160,0.97536,-1.14492,-1.80931,-0.90682,2.03873,-0.37638 -0.75229,0.97604,-1.14481,-1.80902,-0.90699,2.03822,-0.37588 -0.75299,0.97672,-1.14471,-1.80874,-0.90714,2.03771,-0.37538 -0.75368,0.97739,-1.14461,-1.80847,-0.90730,2.03721,-0.37489 -0.75438,0.97804,-1.14451,-1.80820,-0.90745,2.03671,-0.37441 -0.75507,0.97869,-1.14441,-1.80794,-0.90760,2.03623,-0.37393 -0.75577,0.97933,-1.14432,-1.80768,-0.90775,2.03575,-0.37347 -0.75646,0.97995,-1.14423,-1.80743,-0.90789,2.03528,-0.37301 -0.75715,0.98057,-1.14413,-1.80718,-0.90804,2.03481,-0.37256 -0.75785,0.98118,-1.14404,-1.80693,-0.90817,2.03435,-0.37211 -0.75854,0.98177,-1.14395,-1.80669,-0.90831,2.03390,-0.37167 -0.75924,0.98236,-1.14387,-1.80646,-0.90844,2.03346,-0.37124 -0.75993,0.98294,-1.14378,-1.80623,-0.90857,2.03302,-0.37082 -0.76063,0.98351,-1.14370,-1.80600,-0.90870,2.03259,-0.37040 -0.76132,0.98407,-1.14361,-1.80578,-0.90883,2.03217,-0.36999 -0.76202,0.98462,-1.14353,-1.80556,-0.90895,2.03175,-0.36959 -0.76271,0.98517,-1.14345,-1.80535,-0.90907,2.03134,-0.36919 -0.76341,0.98570,-1.14337,-1.80514,-0.90919,2.03093,-0.36880 -0.76410,0.98623,-1.14329,-1.80493,-0.90930,2.03053,-0.36841 -0.76480,0.98675,-1.14322,-1.80473,-0.90942,2.03014,-0.36803 -0.76549,0.98726,-1.14314,-1.80453,-0.90953,2.02975,-0.36766 -0.76619,0.98776,-1.14307,-1.80434,-0.90964,2.02937,-0.36729 -0.76688,0.98826,-1.14299,-1.80415,-0.90974,2.02900,-0.36693 -0.76757,0.98844,-1.14299,-1.80404,-0.90980,2.02886,-0.36679 -0.76827,0.98932,-1.14306,-1.80335,-0.91012,2.02820,-0.36615 -0.76896,0.99019,-1.14314,-1.80268,-0.91045,2.02754,-0.36552 -0.76966,0.99105,-1.14321,-1.80202,-0.91076,2.02690,-0.36490 -0.77035,0.99189,-1.14328,-1.80137,-0.91108,2.02627,-0.36430 -0.77105,0.99271,-1.14335,-1.80073,-0.91138,2.02565,-0.36370 -0.77174,0.99353,-1.14342,-1.80010,-0.91168,2.02504,-0.36311 -0.77244,0.99433,-1.14349,-1.79948,-0.91198,2.02444,-0.36253 -0.77313,0.99511,-1.14356,-1.79888,-0.91227,2.02385,-0.36196 -0.77383,0.99589,-1.14362,-1.79828,-0.91255,2.02326,-0.36140 -0.77452,0.99665,-1.14369,-1.79770,-0.91283,2.02269,-0.36085 -0.77522,0.99740,-1.14376,-1.79712,-0.91311,2.02212,-0.36031 -0.77591,0.99814,-1.14382,-1.79656,-0.91338,2.02157,-0.35977 -0.77660,0.99886,-1.14388,-1.79600,-0.91364,2.02102,-0.35925 -0.77730,0.99958,-1.14394,-1.79546,-0.91390,2.02048,-0.35873 -0.77799,1.00028,-1.14401,-1.79492,-0.91416,2.01995,-0.35823 -0.77869,1.00097,-1.14407,-1.79440,-0.91441,2.01943,-0.35773 -0.77938,1.00165,-1.14412,-1.79388,-0.91465,2.01891,-0.35724 -0.78008,1.00232,-1.14418,-1.79337,-0.91489,2.01840,-0.35676 -0.78077,1.00298,-1.14424,-1.79288,-0.91513,2.01791,-0.35628 -0.78147,1.00363,-1.14430,-1.79239,-0.91537,2.01742,-0.35582 -0.78216,1.00426,-1.14435,-1.79191,-0.91560,2.01693,-0.35536 -0.78286,1.00489,-1.14441,-1.79143,-0.91582,2.01646,-0.35491 -0.78355,1.00551,-1.14446,-1.79097,-0.91604,2.01599,-0.35446 -0.78425,1.00611,-1.14451,-1.79052,-0.91626,2.01553,-0.35402 -0.78494,1.00671,-1.14456,-1.79007,-0.91647,2.01507,-0.35360 -0.78563,1.00730,-1.14461,-1.78963,-0.91668,2.01463,-0.35317 -0.78633,1.00788,-1.14466,-1.78920,-0.91689,2.01419,-0.35276 -0.78702,1.00845,-1.14471,-1.78877,-0.91709,2.01376,-0.35235 -0.78772,1.00901,-1.14476,-1.78836,-0.91729,2.01333,-0.35195 -0.78841,1.00956,-1.14481,-1.78795,-0.91748,2.01291,-0.35155 -0.78911,1.01010,-1.14486,-1.78755,-0.91767,2.01250,-0.35116 -0.78980,1.01064,-1.14490,-1.78715,-0.91786,2.01209,-0.35078 -0.79050,1.01116,-1.14495,-1.78677,-0.91805,2.01169,-0.35040 -0.79119,1.01168,-1.14499,-1.78639,-0.91823,2.01130,-0.35003 -0.79189,1.01219,-1.14503,-1.78601,-0.91840,2.01091,-0.34967 -0.79258,1.01269,-1.14508,-1.78565,-0.91858,2.01053,-0.34931 -0.79328,1.01318,-1.14512,-1.78529,-0.91875,2.01015,-0.34896 -0.79397,1.01366,-1.14516,-1.78493,-0.91892,2.00978,-0.34861 -0.79467,1.01414,-1.14520,-1.78458,-0.91908,2.00942,-0.34827 -0.79536,1.01461,-1.14524,-1.78424,-0.91925,2.00906,-0.34793 -0.79605,1.01507,-1.14528,-1.78391,-0.91941,2.00871,-0.34760 -0.79675,1.01552,-1.14531,-1.78358,-0.91956,2.00836,-0.34728 -0.79744,1.01597,-1.14535,-1.78326,-0.91972,2.00802,-0.34696 -0.79814,1.01641,-1.14539,-1.78294,-0.91987,2.00768,-0.34664 -0.79883,1.01684,-1.14542,-1.78263,-0.92002,2.00735,-0.34633 -0.79953,1.01702,-1.14545,-1.78248,-0.92008,2.00721,-0.34621 -0.80022,1.01755,-1.14561,-1.78192,-0.92033,2.00681,-0.34583 -0.80092,1.01807,-1.14576,-1.78137,-0.92057,2.00642,-0.34546 -0.80161,1.01858,-1.14591,-1.78083,-0.92080,2.00603,-0.34509 -0.80231,1.01908,-1.14606,-1.78030,-0.92104,2.00564,-0.34474 -0.80300,1.01958,-1.14621,-1.77978,-0.92126,2.00527,-0.34439 -0.80370,1.02006,-1.14635,-1.77927,-0.92149,2.00490,-0.34404 -0.80439,1.02054,-1.14649,-1.77877,-0.92171,2.00453,-0.34370 -0.80508,1.02101,-1.14663,-1.77827,-0.92192,2.00417,-0.34336 -0.80578,1.02147,-1.14676,-1.77779,-0.92213,2.00382,-0.34304 -0.80647,1.02193,-1.14690,-1.77731,-0.92234,2.00347,-0.34271 -0.80717,1.02237,-1.14703,-1.77685,-0.92255,2.00313,-0.34239 -0.80786,1.02281,-1.14716,-1.77639,-0.92275,2.00279,-0.34208 -0.80856,1.02325,-1.14728,-1.77594,-0.92295,2.00246,-0.34177 -0.80925,1.02367,-1.14741,-1.77549,-0.92314,2.00214,-0.34147 -0.80995,1.02409,-1.14753,-1.77506,-0.92333,2.00182,-0.34117 -0.81064,1.02450,-1.14765,-1.77463,-0.92352,2.00150,-0.34088 -0.81134,1.02491,-1.14777,-1.77421,-0.92371,2.00119,-0.34059 -0.81203,1.02531,-1.14789,-1.77379,-0.92389,2.00089,-0.34031 -0.81273,1.02570,-1.14800,-1.77339,-0.92407,2.00058,-0.34003 -0.81342,1.02608,-1.14811,-1.77299,-0.92424,2.00029,-0.33976 -0.81412,1.02646,-1.14822,-1.77260,-0.92441,2.00000,-0.33949 -0.81481,1.02683,-1.14833,-1.77221,-0.92458,1.99971,-0.33923 -0.81550,1.02710,-1.14843,-1.77190,-0.92472,1.99951,-0.33904 -0.81620,1.02756,-1.14878,-1.77109,-0.92504,1.99916,-0.33871 -0.81689,1.02801,-1.14913,-1.77028,-0.92536,1.99881,-0.33839 -0.81759,1.02846,-1.14948,-1.76949,-0.92568,1.99847,-0.33808 -0.81828,1.02890,-1.14981,-1.76872,-0.92598,1.99814,-0.33777 -0.81898,1.02932,-1.15015,-1.76796,-0.92629,1.99781,-0.33746 -0.81967,1.02975,-1.15047,-1.76721,-0.92659,1.99749,-0.33716 -0.82037,1.03016,-1.15079,-1.76647,-0.92688,1.99717,-0.33687 -0.82106,1.03057,-1.15111,-1.76575,-0.92717,1.99686,-0.33658 -0.82176,1.03097,-1.15142,-1.76503,-0.92746,1.99655,-0.33630 -0.82245,1.03136,-1.15172,-1.76434,-0.92774,1.99625,-0.33602 -0.82315,1.03175,-1.15202,-1.76365,-0.92802,1.99595,-0.33575 -0.82384,1.03213,-1.15231,-1.76297,-0.92829,1.99566,-0.33548 -0.82453,1.03250,-1.15260,-1.76231,-0.92855,1.99538,-0.33522 -0.82523,1.03287,-1.15289,-1.76166,-0.92882,1.99509,-0.33496 -0.82592,1.03323,-1.15316,-1.76102,-0.92907,1.99482,-0.33471 -0.82662,1.03358,-1.15344,-1.76039,-0.92933,1.99455,-0.33446 -0.82731,1.03393,-1.15371,-1.75977,-0.92958,1.99428,-0.33421 -0.82801,1.03427,-1.15397,-1.75916,-0.92982,1.99402,-0.33397 -0.82870,1.03461,-1.15423,-1.75856,-0.93007,1.99376,-0.33373 -0.82940,1.03494,-1.15449,-1.75798,-0.93030,1.99350,-0.33350 -0.83009,1.03526,-1.15474,-1.75740,-0.93054,1.99325,-0.33327 -0.83079,1.03558,-1.15498,-1.75683,-0.93077,1.99301,-0.33305 -0.83148,1.03590,-1.15522,-1.75627,-0.93099,1.99277,-0.33283 -0.83218,1.03620,-1.15546,-1.75573,-0.93122,1.99253,-0.33261 -0.83287,1.03651,-1.15570,-1.75519,-0.93144,1.99230,-0.33240 -0.83356,1.03680,-1.15592,-1.75466,-0.93165,1.99207,-0.33219 -0.83426,1.03710,-1.15615,-1.75414,-0.93186,1.99184,-0.33198 -0.83495,1.03738,-1.15637,-1.75363,-0.93207,1.99162,-0.33178 -0.83565,1.03767,-1.15659,-1.75313,-0.93228,1.99140,-0.33158 -0.83634,1.03794,-1.15680,-1.75263,-0.93248,1.99119,-0.33138 -0.83704,1.03822,-1.15701,-1.75215,-0.93268,1.99098,-0.33119 -0.83773,1.03849,-1.15722,-1.75167,-0.93287,1.99077,-0.33100 -0.83843,1.03875,-1.15742,-1.75121,-0.93306,1.99057,-0.33082 -0.83912,1.03891,-1.15756,-1.75090,-0.93319,1.99044,-0.33071 -0.83982,1.03918,-1.15794,-1.75015,-0.93347,1.99024,-0.33052 -0.84051,1.03944,-1.15832,-1.74942,-0.93375,1.99003,-0.33033 -0.84121,1.03970,-1.15869,-1.74869,-0.93403,1.98983,-0.33015 -0.84190,1.03996,-1.15906,-1.74798,-0.93430,1.98963,-0.32997 -0.84260,1.04021,-1.15942,-1.74728,-0.93457,1.98944,-0.32979 -0.84329,1.04045,-1.15977,-1.74660,-0.93484,1.98925,-0.32962 -0.84398,1.04070,-1.16012,-1.74592,-0.93510,1.98906,-0.32945 -0.84468,1.04093,-1.16046,-1.74526,-0.93535,1.98888,-0.32929 -0.84537,1.04117,-1.16079,-1.74461,-0.93560,1.98870,-0.32912 -0.84607,1.04139,-1.16112,-1.74397,-0.93585,1.98852,-0.32896 -0.84676,1.04162,-1.16144,-1.74334,-0.93610,1.98835,-0.32880 -0.84746,1.04184,-1.16176,-1.74272,-0.93634,1.98818,-0.32865 -0.84815,1.04206,-1.16207,-1.74211,-0.93657,1.98801,-0.32850 -0.84885,1.04227,-1.16238,-1.74151,-0.93681,1.98785,-0.32835 -0.84954,1.04248,-1.16268,-1.74092,-0.93703,1.98769,-0.32820 -0.85024,1.04268,-1.16297,-1.74034,-0.93726,1.98753,-0.32806 -0.85093,1.04288,-1.16326,-1.73978,-0.93748,1.98737,-0.32792 -0.85163,1.04308,-1.16355,-1.73922,-0.93770,1.98722,-0.32778 -0.85232,1.04328,-1.16383,-1.73867,-0.93791,1.98707,-0.32765 -0.85301,1.04347,-1.16410,-1.73813,-0.93813,1.98692,-0.32751 -0.85371,1.04365,-1.16437,-1.73760,-0.93833,1.98677,-0.32738 -0.85440,1.04384,-1.16464,-1.73708,-0.93854,1.98663,-0.32725 -0.85510,1.04402,-1.16490,-1.73657,-0.93874,1.98649,-0.32713 -0.85579,1.04417,-1.16515,-1.73609,-0.93893,1.98637,-0.32702 -0.85649,1.04431,-1.16560,-1.73531,-0.93921,1.98626,-0.32692 -0.85718,1.04445,-1.16604,-1.73455,-0.93949,1.98616,-0.32682 -0.85788,1.04458,-1.16648,-1.73381,-0.93976,1.98605,-0.32673 -0.85857,1.04471,-1.16690,-1.73308,-0.94003,1.98595,-0.32664 -0.85927,1.04484,-1.16732,-1.73235,-0.94029,1.98585,-0.32655 -0.85996,1.04496,-1.16774,-1.73165,-0.94056,1.98575,-0.32646 -0.86066,1.04509,-1.16814,-1.73095,-0.94081,1.98565,-0.32638 -0.86135,1.04521,-1.16854,-1.73026,-0.94107,1.98556,-0.32629 -0.86205,1.04533,-1.16893,-1.72959,-0.94132,1.98547,-0.32621 -0.86274,1.04544,-1.16931,-1.72893,-0.94156,1.98538,-0.32613 -0.86343,1.04555,-1.16969,-1.72828,-0.94180,1.98529,-0.32605 -0.86413,1.04566,-1.17006,-1.72764,-0.94204,1.98520,-0.32597 -0.86482,1.04577,-1.17042,-1.72701,-0.94228,1.98512,-0.32590 -0.86552,1.04588,-1.17078,-1.72639,-0.94251,1.98503,-0.32582 -0.86621,1.04598,-1.17113,-1.72578,-0.94274,1.98495,-0.32575 -0.86691,1.04608,-1.17148,-1.72519,-0.94296,1.98487,-0.32568 -0.86760,1.04618,-1.17182,-1.72460,-0.94318,1.98479,-0.32561 -0.86830,1.04628,-1.17215,-1.72402,-0.94340,1.98472,-0.32554 -0.86899,1.04638,-1.17248,-1.72345,-0.94361,1.98464,-0.32548 -0.86969,1.04647,-1.17280,-1.72290,-0.94382,1.98457,-0.32541 -0.87038,1.04656,-1.17312,-1.72235,-0.94403,1.98450,-0.32535 -0.87108,1.04665,-1.17343,-1.72181,-0.94423,1.98442,-0.32529 -0.87177,1.04671,-1.17371,-1.72133,-0.94441,1.98438,-0.32525 -0.87246,1.04663,-1.17443,-1.72029,-0.94476,1.98444,-0.32530 -0.87316,1.04655,-1.17513,-1.71927,-0.94510,1.98449,-0.32536 -0.87385,1.04647,-1.17581,-1.71826,-0.94544,1.98455,-0.32541 -0.87455,1.04639,-1.17649,-1.71727,-0.94577,1.98460,-0.32546 -0.87524,1.04632,-1.17715,-1.71629,-0.94610,1.98466,-0.32552 -0.87594,1.04624,-1.17780,-1.71534,-0.94642,1.98471,-0.32557 -0.87663,1.04617,-1.17844,-1.71439,-0.94674,1.98477,-0.32562 -0.87733,1.04609,-1.17907,-1.71347,-0.94706,1.98482,-0.32567 -0.87802,1.04602,-1.17969,-1.71256,-0.94737,1.98488,-0.32573 -0.87872,1.04594,-1.18030,-1.71166,-0.94768,1.98493,-0.32578 -0.87941,1.04587,-1.18090,-1.71078,-0.94798,1.98498,-0.32583 -0.88011,1.04580,-1.18148,-1.70991,-0.94828,1.98504,-0.32588 -0.88080,1.04572,-1.18206,-1.70906,-0.94857,1.98509,-0.32593 -0.88149,1.04565,-1.18263,-1.70822,-0.94886,1.98514,-0.32598 -0.88219,1.04558,-1.18318,-1.70740,-0.94914,1.98519,-0.32603 -0.88288,1.04551,-1.18373,-1.70659,-0.94943,1.98524,-0.32608 -0.88358,1.04544,-1.18427,-1.70579,-0.94970,1.98529,-0.32613 -0.88427,1.04537,-1.18480,-1.70501,-0.94998,1.98534,-0.32618 -0.88497,1.04530,-1.18532,-1.70424,-0.95025,1.98539,-0.32622 -0.88566,1.04524,-1.18583,-1.70348,-0.95051,1.98544,-0.32627 -0.88636,1.04517,-1.18633,-1.70273,-0.95078,1.98549,-0.32632 -0.88705,1.04510,-1.18682,-1.70200,-0.95103,1.98554,-0.32637 -0.88775,1.04503,-1.18731,-1.70128,-0.95129,1.98559,-0.32641 -0.88844,1.04497,-1.18778,-1.70057,-0.95154,1.98564,-0.32646 -0.88914,1.04490,-1.18825,-1.69988,-0.95179,1.98569,-0.32651 -0.88983,1.04484,-1.18871,-1.69919,-0.95203,1.98574,-0.32655 -0.89053,1.04477,-1.18916,-1.69852,-0.95227,1.98578,-0.32660 -0.89122,1.04471,-1.18961,-1.69785,-0.95251,1.98583,-0.32664 -0.89191,1.04465,-1.19004,-1.69720,-0.95274,1.98588,-0.32669 -0.89261,1.04459,-1.19047,-1.69656,-0.95297,1.98592,-0.32673 -0.89330,1.04452,-1.19089,-1.69593,-0.95320,1.98597,-0.32678 -0.89400,1.04446,-1.19131,-1.69531,-0.95342,1.98601,-0.32682 -0.89469,1.04440,-1.19171,-1.69470,-0.95364,1.98606,-0.32687 -0.89539,1.04434,-1.19211,-1.69410,-0.95386,1.98610,-0.32691 -0.89608,1.04428,-1.19251,-1.69351,-0.95407,1.98615,-0.32695 -0.89678,1.04422,-1.19289,-1.69293,-0.95428,1.98619,-0.32699 -0.89747,1.04416,-1.19327,-1.69236,-0.95449,1.98623,-0.32704 -0.89817,1.04411,-1.19364,-1.69180,-0.95470,1.98628,-0.32708 -0.89886,1.04405,-1.19401,-1.69125,-0.95490,1.98632,-0.32712 -0.89956,1.04396,-1.19429,-1.69087,-0.95503,1.98639,-0.32718 -0.90025,1.04329,-1.19560,-1.68926,-0.95550,1.98689,-0.32765 -0.90094,1.04263,-1.19690,-1.68767,-0.95597,1.98738,-0.32810 -0.90164,1.04199,-1.19816,-1.68611,-0.95643,1.98787,-0.32855 -0.90233,1.04135,-1.19941,-1.68458,-0.95689,1.98835,-0.32900 -0.90303,1.04073,-1.20064,-1.68306,-0.95734,1.98882,-0.32943 -0.90372,1.04011,-1.20184,-1.68158,-0.95779,1.98928,-0.32986 -0.90442,1.03950,-1.20303,-1.68011,-0.95824,1.98974,-0.33028 -0.90511,1.03891,-1.20419,-1.67867,-0.95868,1.99018,-0.33070 -0.90581,1.03832,-1.20533,-1.67725,-0.95911,1.99063,-0.33111 -0.90650,1.03775,-1.20646,-1.67586,-0.95954,1.99106,-0.33151 -0.90720,1.03718,-1.20756,-1.67448,-0.95996,1.99149,-0.33191 -0.90789,1.03662,-1.20865,-1.67313,-0.96038,1.99191,-0.33230 -0.90859,1.03607,-1.20971,-1.67180,-0.96080,1.99232,-0.33269 -0.90928,1.03553,-1.21076,-1.67049,-0.96121,1.99273,-0.33306 -0.90997,1.03500,-1.21179,-1.66920,-0.96161,1.99313,-0.33344 -0.91067,1.03447,-1.21280,-1.66793,-0.96201,1.99353,-0.33381 -0.91136,1.03396,-1.21380,-1.66669,-0.96241,1.99391,-0.33417 -0.91206,1.03345,-1.21477,-1.66546,-0.96280,1.99430,-0.33453 -0.91275,1.03295,-1.21574,-1.66425,-0.96319,1.99467,-0.33488 -0.91345,1.03246,-1.21668,-1.66306,-0.96357,1.99504,-0.33522 -0.91414,1.03198,-1.21761,-1.66189,-0.96395,1.99541,-0.33556 -0.91484,1.03151,-1.21852,-1.66074,-0.96432,1.99577,-0.33590 -0.91553,1.03104,-1.21942,-1.65960,-0.96469,1.99612,-0.33623 -0.91623,1.03058,-1.22030,-1.65849,-0.96506,1.99647,-0.33656 -0.91692,1.03012,-1.22116,-1.65739,-0.96542,1.99681,-0.33688 -0.91762,1.02968,-1.22201,-1.65631,-0.96577,1.99715,-0.33719 -0.91831,1.02924,-1.22285,-1.65525,-0.96612,1.99748,-0.33750 -0.91901,1.02881,-1.22367,-1.65420,-0.96647,1.99781,-0.33781 -0.91970,1.02838,-1.22448,-1.65318,-0.96681,1.99813,-0.33811 -0.92039,1.02796,-1.22527,-1.65216,-0.96715,1.99845,-0.33841 -0.92109,1.02755,-1.22605,-1.65117,-0.96749,1.99876,-0.33870 -0.92178,1.02715,-1.22682,-1.65019,-0.96782,1.99907,-0.33899 -0.92248,1.02675,-1.22757,-1.64922,-0.96814,1.99937,-0.33927 -0.92317,1.02636,-1.22831,-1.64827,-0.96847,1.99967,-0.33955 -0.92387,1.02597,-1.22904,-1.64734,-0.96879,1.99996,-0.33983 -0.92456,1.02559,-1.22976,-1.64642,-0.96910,2.00025,-0.34010 -0.92526,1.02521,-1.23046,-1.64552,-0.96941,2.00054,-0.34037 -0.92595,1.02484,-1.23115,-1.64463,-0.96972,2.00082,-0.34063 -0.92665,1.02448,-1.23183,-1.64375,-0.97002,2.00109,-0.34089 -0.92734,1.02412,-1.23250,-1.64289,-0.97032,2.00137,-0.34115 -0.92804,1.02377,-1.23315,-1.64204,-0.97061,2.00163,-0.34140 -0.92873,1.02343,-1.23380,-1.64121,-0.97090,2.00190,-0.34165 -0.92942,1.02308,-1.23443,-1.64039,-0.97119,2.00216,-0.34189 -0.93012,1.02275,-1.23506,-1.63958,-0.97147,2.00241,-0.34213 -0.93081,1.02242,-1.23567,-1.63879,-0.97175,2.00266,-0.34237 -0.93151,1.02209,-1.23627,-1.63801,-0.97203,2.00291,-0.34260 -0.93220,1.02177,-1.23686,-1.63724,-0.97230,2.00316,-0.34284 -0.93290,1.02146,-1.23744,-1.63648,-0.97257,2.00340,-0.34306 -0.93359,1.02115,-1.23801,-1.63574,-0.97284,2.00363,-0.34329 -0.93429,1.02084,-1.23858,-1.63500,-0.97310,2.00387,-0.34351 -0.93498,1.02054,-1.23913,-1.63428,-0.97336,2.00410,-0.34372 -0.93568,1.02024,-1.23967,-1.63357,-0.97362,2.00432,-0.34394 -0.93637,1.01995,-1.24021,-1.63288,-0.97387,2.00454,-0.34415 -0.93707,1.01966,-1.24073,-1.63219,-0.97412,2.00476,-0.34435 -0.93776,1.01938,-1.24125,-1.63152,-0.97436,2.00498,-0.34456 -0.93846,1.01910,-1.24175,-1.63085,-0.97460,2.00519,-0.34476 -0.93915,1.01883,-1.24225,-1.63020,-0.97484,2.00540,-0.34496 -0.93984,1.01856,-1.24274,-1.62955,-0.97508,2.00561,-0.34515 -0.94054,1.01829,-1.24322,-1.62892,-0.97531,2.00581,-0.34535 -0.94123,1.01803,-1.24370,-1.62830,-0.97554,2.00601,-0.34554 -0.94193,1.01777,-1.24416,-1.62769,-0.97577,2.00621,-0.34572 -0.94262,1.01752,-1.24462,-1.62708,-0.97599,2.00640,-0.34591 -0.94332,1.01727,-1.24507,-1.62649,-0.97621,2.00660,-0.34609 -0.94401,1.01702,-1.24551,-1.62591,-0.97643,2.00678,-0.34627 -0.94471,1.01678,-1.24594,-1.62533,-0.97665,2.00697,-0.34644 -0.94540,1.01654,-1.24637,-1.62477,-0.97686,2.00715,-0.34662 -0.94610,1.01631,-1.24679,-1.62421,-0.97707,2.00733,-0.34679 -0.94679,1.01608,-1.24720,-1.62367,-0.97727,2.00751,-0.34696 -0.94749,1.01585,-1.24761,-1.62313,-0.97748,2.00768,-0.34712 -0.94818,1.01562,-1.24801,-1.62260,-0.97768,2.00786,-0.34729 -0.94887,1.01540,-1.24840,-1.62208,-0.97788,2.00803,-0.34745 -0.94957,1.01529,-1.24858,-1.62184,-0.97796,2.00811,-0.34753 -0.95026,1.01487,-1.24929,-1.62097,-0.97826,2.00843,-0.34783 -0.95096,1.01445,-1.24997,-1.62012,-0.97854,2.00875,-0.34813 -0.95165,1.01403,-1.25065,-1.61928,-0.97883,2.00906,-0.34843 -0.95235,1.01363,-1.25132,-1.61846,-0.97911,2.00937,-0.34872 -0.95304,1.01323,-1.25197,-1.61764,-0.97939,2.00968,-0.34901 -0.95374,1.01283,-1.25261,-1.61684,-0.97966,2.00997,-0.34930 -0.95443,1.01244,-1.25324,-1.61606,-0.97994,2.01027,-0.34957 -0.95513,1.01206,-1.25387,-1.61528,-0.98020,2.01056,-0.34985 -0.95582,1.01169,-1.25448,-1.61452,-0.98047,2.01084,-0.35012 -0.95652,1.01132,-1.25508,-1.61377,-0.98073,2.01112,-0.35039 -0.95721,1.01095,-1.25567,-1.61304,-0.98099,2.01140,-0.35065 -0.95790,1.01060,-1.25625,-1.61231,-0.98124,2.01167,-0.35091 -0.95860,1.01024,-1.25682,-1.61160,-0.98149,2.01194,-0.35116 -0.95929,1.00990,-1.25738,-1.61089,-0.98174,2.01220,-0.35141 -0.95999,1.00956,-1.25793,-1.61020,-0.98199,2.01246,-0.35166 -0.96068,1.00922,-1.25847,-1.60952,-0.98223,2.01272,-0.35190 -0.96138,1.00889,-1.25900,-1.60885,-0.98247,2.01297,-0.35214 -0.96207,1.00857,-1.25952,-1.60819,-0.98270,2.01322,-0.35238 -0.96277,1.00825,-1.26004,-1.60754,-0.98294,2.01346,-0.35261 -0.96346,1.00793,-1.26054,-1.60691,-0.98317,2.01370,-0.35284 -0.96416,1.00762,-1.26104,-1.60628,-0.98339,2.01393,-0.35307 -0.96485,1.00732,-1.26153,-1.60566,-0.98362,2.01417,-0.35329 -0.96555,1.00702,-1.26201,-1.60505,-0.98384,2.01440,-0.35351 -0.96624,1.00672,-1.26248,-1.60445,-0.98406,2.01462,-0.35372 -0.96694,1.00643,-1.26294,-1.60386,-0.98427,2.01484,-0.35393 -0.96763,1.00614,-1.26340,-1.60329,-0.98449,2.01506,-0.35414 -0.96832,1.00586,-1.26385,-1.60272,-0.98470,2.01528,-0.35435 -0.96902,1.00558,-1.26429,-1.60215,-0.98491,2.01549,-0.35455 -0.96971,1.00531,-1.26472,-1.60160,-0.98511,2.01570,-0.35475 -0.97041,1.00504,-1.26515,-1.60106,-0.98531,2.01590,-0.35495 -0.97110,1.00478,-1.26557,-1.60052,-0.98551,2.01610,-0.35514 -0.97180,1.00452,-1.26598,-1.60000,-0.98571,2.01630,-0.35533 -0.97249,1.00426,-1.26638,-1.59948,-0.98590,2.01650,-0.35552 -0.97319,1.00401,-1.26678,-1.59897,-0.98609,2.01669,-0.35570 -0.97388,1.00368,-1.26726,-1.59838,-0.98630,2.01694,-0.35594 -0.97458,1.00265,-1.26853,-1.59704,-0.98669,2.01771,-0.35668 -0.97527,1.00163,-1.26978,-1.59571,-0.98707,2.01847,-0.35741 -0.97597,1.00064,-1.27101,-1.59440,-0.98745,2.01922,-0.35812 -0.97666,0.99966,-1.27222,-1.59311,-0.98783,2.01995,-0.35883 -0.97735,0.99870,-1.27340,-1.59185,-0.98820,2.02067,-0.35952 -0.97805,0.99775,-1.27457,-1.59060,-0.98857,2.02138,-0.36020 -0.97874,0.99682,-1.27572,-1.58937,-0.98894,2.02208,-0.36087 -0.97944,0.99591,-1.27684,-1.58815,-0.98930,2.02276,-0.36152 -0.98013,0.99502,-1.27795,-1.58696,-0.98966,2.02343,-0.36217 -0.98083,0.99414,-1.27904,-1.58579,-0.99002,2.02409,-0.36281 -0.98152,0.99327,-1.28011,-1.58463,-0.99037,2.02474,-0.36343 -0.98222,0.99242,-1.28117,-1.58349,-0.99072,2.02538,-0.36405 -0.98291,0.99159,-1.28220,-1.58236,-0.99107,2.02600,-0.36465 -0.98361,0.99077,-1.28322,-1.58126,-0.99141,2.02662,-0.36525 -0.98430,0.98996,-1.28422,-1.58017,-0.99175,2.02722,-0.36583 -0.98500,0.98917,-1.28520,-1.57910,-0.99209,2.02782,-0.36641 -0.98569,0.98839,-1.28617,-1.57804,-0.99243,2.02840,-0.36698 -0.98639,0.98763,-1.28712,-1.57700,-0.99276,2.02898,-0.36753 -0.98708,0.98687,-1.28805,-1.57597,-0.99308,2.02954,-0.36808 -0.98777,0.98614,-1.28897,-1.57496,-0.99341,2.03010,-0.36862 -0.98847,0.98541,-1.28987,-1.57397,-0.99373,2.03064,-0.36915 -0.98916,0.98470,-1.29076,-1.57299,-0.99405,2.03118,-0.36967 -0.98986,0.98399,-1.29163,-1.57203,-0.99436,2.03171,-0.37019 -0.99055,0.98331,-1.29249,-1.57108,-0.99468,2.03223,-0.37069 -0.99125,0.98263,-1.29333,-1.57015,-0.99498,2.03274,-0.37119 -0.99194,0.98196,-1.29416,-1.56923,-0.99529,2.03324,-0.37168 -0.99264,0.98131,-1.29497,-1.56832,-0.99559,2.03373,-0.37216 -0.99333,0.98066,-1.29577,-1.56743,-0.99589,2.03421,-0.37263 -0.99403,0.98003,-1.29656,-1.56655,-0.99619,2.03469,-0.37310 -0.99472,0.97941,-1.29733,-1.56569,-0.99648,2.03516,-0.37355 -0.99542,0.97880,-1.29809,-1.56483,-0.99677,2.03562,-0.37400 -0.99611,0.97820,-1.29884,-1.56399,-0.99705,2.03607,-0.37445 -0.99680,0.97761,-1.29958,-1.56317,-0.99734,2.03652,-0.37488 -0.99750,0.97703,-1.30030,-1.56236,-0.99762,2.03695,-0.37531 -0.99819,0.97645,-1.30101,-1.56156,-0.99790,2.03738,-0.37573 -0.99889,0.97589,-1.30171,-1.56077,-0.99817,2.03781,-0.37615 -0.99958,0.97534,-1.30239,-1.55999,-0.99844,2.03822,-0.37656 -1.00028,0.97480,-1.30307,-1.55923,-0.99871,2.03863,-0.37696 -1.00097,0.97427,-1.30373,-1.55848,-0.99897,2.03903,-0.37735 -1.00167,0.97374,-1.30438,-1.55773,-0.99924,2.03943,-0.37774 -1.00236,0.97323,-1.30503,-1.55701,-0.99949,2.03982,-0.37813 -1.00306,0.97272,-1.30566,-1.55629,-0.99975,2.04020,-0.37850 -1.00375,0.97222,-1.30628,-1.55558,-1.00000,2.04058,-0.37887 -1.00445,0.97173,-1.30688,-1.55488,-1.00025,2.04095,-0.37924 -1.00514,0.97125,-1.30748,-1.55420,-1.00050,2.04131,-0.37960 -1.00583,0.97078,-1.30807,-1.55352,-1.00075,2.04167,-0.37995 -1.00653,0.97031,-1.30865,-1.55286,-1.00099,2.04202,-0.38030 -1.00722,0.96985,-1.30922,-1.55221,-1.00123,2.04237,-0.38064 -1.00792,0.96940,-1.30978,-1.55156,-1.00146,2.04271,-0.38098 -1.00861,0.96896,-1.31033,-1.55093,-1.00170,2.04304,-0.38131 -1.00931,0.96852,-1.31087,-1.55031,-1.00193,2.04337,-0.38163 -1.01000,0.96809,-1.31140,-1.54969,-1.00216,2.04369,-0.38195 -1.01070,0.96767,-1.31192,-1.54909,-1.00238,2.04401,-0.38227 -1.01139,0.96726,-1.31244,-1.54849,-1.00260,2.04433,-0.38258 -1.01209,0.96685,-1.31294,-1.54790,-1.00282,2.04463,-0.38288 -1.01278,0.96645,-1.31344,-1.54733,-1.00304,2.04494,-0.38318 -1.01348,0.96606,-1.31393,-1.54676,-1.00326,2.04524,-0.38348 -1.01417,0.96567,-1.31441,-1.54620,-1.00347,2.04553,-0.38377 -1.01487,0.96529,-1.31488,-1.54565,-1.00368,2.04582,-0.38406 -1.01556,0.96491,-1.31534,-1.54511,-1.00388,2.04610,-0.38434 -1.01625,0.96454,-1.31580,-1.54457,-1.00409,2.04638,-0.38462 -1.01695,0.96418,-1.31625,-1.54405,-1.00429,2.04666,-0.38489 -1.01764,0.96382,-1.31669,-1.54353,-1.00449,2.04693,-0.38516 -1.01834,0.96347,-1.31712,-1.54302,-1.00469,2.04719,-0.38542 -1.01903,0.96313,-1.31755,-1.54252,-1.00488,2.04745,-0.38568 -1.01973,0.96279,-1.31796,-1.54203,-1.00507,2.04771,-0.38594 -1.02042,0.96246,-1.31838,-1.54154,-1.00526,2.04796,-0.38619 -1.02112,0.96213,-1.31878,-1.54107,-1.00545,2.04821,-0.38644 -1.02181,0.96180,-1.31918,-1.54059,-1.00564,2.04846,-0.38668 -1.02251,0.96149,-1.31957,-1.54013,-1.00582,2.04870,-0.38693 -1.02320,0.96118,-1.31995,-1.53968,-1.00600,2.04893,-0.38716 -1.02390,0.96084,-1.32036,-1.53921,-1.00618,2.04919,-0.38741 -1.02459,0.95999,-1.32138,-1.53813,-1.00652,2.04982,-0.38804 -1.02528,0.95916,-1.32238,-1.53707,-1.00686,2.05044,-0.38866 -1.02598,0.95834,-1.32337,-1.53603,-1.00719,2.05105,-0.38927 -1.02667,0.95753,-1.32434,-1.53500,-1.00752,2.05165,-0.38988 -1.02737,0.95674,-1.32529,-1.53398,-1.00785,2.05224,-0.39047 -1.02806,0.95596,-1.32622,-1.53298,-1.00818,2.05282,-0.39105 -1.02876,0.95519,-1.32714,-1.53200,-1.00850,2.05339,-0.39162 -1.02945,0.95444,-1.32805,-1.53103,-1.00882,2.05395,-0.39218 -1.03015,0.95370,-1.32894,-1.53008,-1.00913,2.05450,-0.39273 -1.03084,0.95298,-1.32981,-1.52914,-1.00944,2.05504,-0.39327 -1.03154,0.95227,-1.33067,-1.52821,-1.00975,2.05557,-0.39381 -1.03223,0.95156,-1.33152,-1.52730,-1.01006,2.05610,-0.39433 -1.03293,0.95088,-1.33235,-1.52640,-1.01037,2.05661,-0.39485 -1.03362,0.95020,-1.33316,-1.52552,-1.01067,2.05711,-0.39536 -1.03432,0.94954,-1.33397,-1.52464,-1.01096,2.05761,-0.39586 -1.03501,0.94888,-1.33476,-1.52379,-1.01126,2.05809,-0.39635 -1.03570,0.94824,-1.33553,-1.52294,-1.01155,2.05857,-0.39683 -1.03640,0.94761,-1.33630,-1.52211,-1.01184,2.05904,-0.39731 -1.03709,0.94699,-1.33705,-1.52129,-1.01212,2.05951,-0.39777 -1.03779,0.94638,-1.33778,-1.52048,-1.01241,2.05996,-0.39823 -1.03848,0.94579,-1.33851,-1.51969,-1.01269,2.06041,-0.39868 -1.03918,0.94520,-1.33922,-1.51890,-1.01296,2.06085,-0.39913 -1.03987,0.94462,-1.33992,-1.51813,-1.01324,2.06128,-0.39957 -1.04057,0.94405,-1.34061,-1.51737,-1.01351,2.06170,-0.40000 -1.04126,0.94349,-1.34129,-1.51662,-1.01377,2.06212,-0.40042 -1.04196,0.94294,-1.34195,-1.51589,-1.01404,2.06253,-0.40084 -1.04265,0.94240,-1.34261,-1.51516,-1.01430,2.06293,-0.40125 -1.04335,0.94187,-1.34325,-1.51445,-1.01456,2.06333,-0.40165 -1.04404,0.94135,-1.34388,-1.51374,-1.01482,2.06372,-0.40205 -1.04473,0.94084,-1.34450,-1.51305,-1.01507,2.06410,-0.40244 -1.04543,0.94034,-1.34511,-1.51237,-1.01532,2.06448,-0.40282 -1.04612,0.93984,-1.34571,-1.51170,-1.01557,2.06485,-0.40320 -1.04682,0.93936,-1.34630,-1.51104,-1.01581,2.06521,-0.40357 -1.04751,0.93888,-1.34689,-1.51038,-1.01606,2.06557,-0.40393 -1.04821,0.93841,-1.34746,-1.50974,-1.01630,2.06592,-0.40429 -1.04890,0.93795,-1.34802,-1.50911,-1.01653,2.06627,-0.40465 -1.04960,0.93749,-1.34857,-1.50849,-1.01677,2.06661,-0.40499 -1.05029,0.93705,-1.34911,-1.50788,-1.01700,2.06694,-0.40534 -1.05099,0.93661,-1.34964,-1.50727,-1.01723,2.06727,-0.40567 -1.05168,0.93618,-1.35017,-1.50668,-1.01745,2.06759,-0.40600 -1.05238,0.93575,-1.35068,-1.50609,-1.01768,2.06791,-0.40633 -1.05307,0.93533,-1.35119,-1.50552,-1.01790,2.06822,-0.40665 -1.05376,0.93492,-1.35169,-1.50495,-1.01812,2.06853,-0.40696 -1.05446,0.93452,-1.35218,-1.50439,-1.01833,2.06883,-0.40727 -1.05515,0.93413,-1.35266,-1.50384,-1.01855,2.06913,-0.40758 -1.05585,0.93374,-1.35313,-1.50330,-1.01876,2.06942,-0.40788 -1.05654,0.93335,-1.35360,-1.50277,-1.01897,2.06971,-0.40817 -1.05724,0.93298,-1.35406,-1.50224,-1.01917,2.06999,-0.40846 -1.05793,0.93261,-1.35451,-1.50173,-1.01937,2.07027,-0.40875 -1.05863,0.93224,-1.35495,-1.50122,-1.01958,2.07054,-0.40903 -1.05932,0.93188,-1.35538,-1.50072,-1.01977,2.07081,-0.40931 -1.06002,0.93153,-1.35581,-1.50022,-1.01997,2.07108,-0.40958 -1.06071,0.93118,-1.35623,-1.49974,-1.02016,2.07134,-0.40985 -1.06141,0.93084,-1.35664,-1.49926,-1.02036,2.07159,-0.41011 -1.06210,0.93051,-1.35705,-1.49879,-1.02054,2.07184,-0.41037 -1.06280,0.93018,-1.35745,-1.49833,-1.02073,2.07209,-0.41063 -1.06349,0.92986,-1.35784,-1.49787,-1.02092,2.07233,-0.41088 -1.06418,0.92954,-1.35823,-1.49742,-1.02110,2.07257,-0.41112 -1.06488,0.92923,-1.35861,-1.49698,-1.02128,2.07281,-0.41137 -1.06557,0.92895,-1.35894,-1.49660,-1.02143,2.07301,-0.41158 -1.06627,0.92838,-1.35962,-1.49586,-1.02169,2.07343,-0.41201 -1.06696,0.92783,-1.36029,-1.49514,-1.02194,2.07385,-0.41244 -1.06766,0.92728,-1.36095,-1.49443,-1.02220,2.07425,-0.41286 -1.06835,0.92674,-1.36160,-1.49373,-1.02245,2.07465,-0.41328 -1.06905,0.92621,-1.36223,-1.49304,-1.02269,2.07505,-0.41368 -1.06974,0.92569,-1.36286,-1.49236,-1.02294,2.07543,-0.41408 -1.07044,0.92517,-1.36348,-1.49169,-1.02318,2.07581,-0.41448 -1.07113,0.92467,-1.36408,-1.49103,-1.02342,2.07619,-0.41486 -1.07183,0.92418,-1.36468,-1.49038,-1.02366,2.07656,-0.41525 -1.07252,0.92369,-1.36526,-1.48974,-1.02389,2.07692,-0.41562 -1.07321,0.92321,-1.36584,-1.48911,-1.02412,2.07727,-0.41599 -1.07391,0.92274,-1.36640,-1.48849,-1.02435,2.07762,-0.41635 -1.07460,0.92228,-1.36696,-1.48787,-1.02458,2.07796,-0.41671 -1.07530,0.92183,-1.36750,-1.48727,-1.02480,2.07830,-0.41706 -1.07599,0.92138,-1.36804,-1.48668,-1.02502,2.07863,-0.41740 -1.07669,0.92094,-1.36857,-1.48609,-1.02524,2.07896,-0.41774 -1.07738,0.92051,-1.36909,-1.48552,-1.02546,2.07928,-0.41808 -1.07808,0.92009,-1.36960,-1.48495,-1.02567,2.07959,-0.41841 -1.07877,0.91967,-1.37010,-1.48440,-1.02589,2.07990,-0.41873 -1.07947,0.91926,-1.37059,-1.48385,-1.02609,2.08021,-0.41905 -1.08016,0.91886,-1.37108,-1.48331,-1.02630,2.08050,-0.41936 -1.08086,0.91847,-1.37156,-1.48277,-1.02651,2.08080,-0.41967 -1.08155,0.91808,-1.37202,-1.48225,-1.02671,2.08109,-0.41997 -1.08225,0.91769,-1.37248,-1.48173,-1.02691,2.08137,-0.42027 -1.08294,0.91732,-1.37294,-1.48122,-1.02711,2.08165,-0.42056 -1.08363,0.91695,-1.37338,-1.48072,-1.02730,2.08193,-0.42085 -1.08433,0.91659,-1.37382,-1.48023,-1.02749,2.08220,-0.42113 -1.08502,0.91623,-1.37425,-1.47974,-1.02769,2.08246,-0.42141 -1.08572,0.91588,-1.37467,-1.47927,-1.02787,2.08273,-0.42168 -1.08641,0.91553,-1.37509,-1.47879,-1.02806,2.08298,-0.42195 -1.08711,0.91519,-1.37550,-1.47833,-1.02825,2.08324,-0.42222 -1.08780,0.91486,-1.37590,-1.47787,-1.02843,2.08348,-0.42248 -1.08850,0.91453,-1.37630,-1.47742,-1.02861,2.08373,-0.42274 -1.08919,0.91421,-1.37669,-1.47698,-1.02878,2.08397,-0.42299 -1.08989,0.91389,-1.37707,-1.47655,-1.02896,2.08421,-0.42324 -1.09058,0.91358,-1.37744,-1.47612,-1.02913,2.08444,-0.42348 -1.09128,0.91341,-1.37764,-1.47590,-1.02921,2.08456,-0.42361 -1.09197,0.91264,-1.37852,-1.47502,-1.02950,2.08513,-0.42421 -1.09266,0.91188,-1.37939,-1.47415,-1.02979,2.08569,-0.42480 -1.09336,0.91113,-1.38024,-1.47330,-1.03007,2.08624,-0.42537 -1.09405,0.91040,-1.38107,-1.47246,-1.03035,2.08677,-0.42594 -1.09475,0.90968,-1.38189,-1.47163,-1.03063,2.08730,-0.42650 -1.09544,0.90897,-1.38270,-1.47081,-1.03091,2.08782,-0.42704 -1.09614,0.90828,-1.38349,-1.47000,-1.03118,2.08833,-0.42758 -1.09683,0.90760,-1.38427,-1.46921,-1.03145,2.08883,-0.42811 -1.09753,0.90693,-1.38504,-1.46843,-1.03172,2.08932,-0.42863 -1.09822,0.90627,-1.38579,-1.46766,-1.03198,2.08981,-0.42914 -1.09892,0.90562,-1.38653,-1.46690,-1.03225,2.09028,-0.42965 -1.09961,0.90499,-1.38726,-1.46615,-1.03251,2.09075,-0.43014 -1.10031,0.90436,-1.38798,-1.46541,-1.03277,2.09121,-0.43063 -1.10100,0.90375,-1.38868,-1.46469,-1.03302,2.09166,-0.43110 -1.10169,0.90315,-1.38938,-1.46397,-1.03327,2.09210,-0.43157 -1.10239,0.90255,-1.39006,-1.46327,-1.03353,2.09253,-0.43204 -1.10308,0.90197,-1.39072,-1.46257,-1.03377,2.09296,-0.43249 -1.10378,0.90140,-1.39138,-1.46189,-1.03402,2.09338,-0.43294 -1.10447,0.90084,-1.39203,-1.46122,-1.03426,2.09379,-0.43338 -1.10517,0.90029,-1.39267,-1.46055,-1.03450,2.09420,-0.43381 -1.10586,0.89975,-1.39329,-1.45990,-1.03474,2.09460,-0.43424 -1.10656,0.89922,-1.39390,-1.45925,-1.03498,2.09499,-0.43465 -1.10725,0.89869,-1.39451,-1.45862,-1.03521,2.09537,-0.43506 -1.10795,0.89818,-1.39510,-1.45799,-1.03544,2.09575,-0.43547 -1.10864,0.89767,-1.39569,-1.45738,-1.03567,2.09612,-0.43587 -1.10934,0.89718,-1.39626,-1.45677,-1.03590,2.09649,-0.43626 -1.11003,0.89669,-1.39683,-1.45617,-1.03612,2.09685,-0.43664 -1.11073,0.89621,-1.39738,-1.45558,-1.03634,2.09720,-0.43702 -1.11142,0.89574,-1.39793,-1.45500,-1.03656,2.09755,-0.43739 -1.11211,0.89528,-1.39846,-1.45443,-1.03678,2.09789,-0.43776 -1.11281,0.89482,-1.39899,-1.45387,-1.03699,2.09822,-0.43812 -1.11350,0.89438,-1.39951,-1.45332,-1.03721,2.09855,-0.43847 -1.11420,0.89394,-1.40002,-1.45277,-1.03742,2.09887,-0.43882 -1.11489,0.89351,-1.40052,-1.45223,-1.03762,2.09919,-0.43916 -1.11559,0.89308,-1.40101,-1.45170,-1.03783,2.09950,-0.43950 -1.11628,0.89266,-1.40149,-1.45118,-1.03803,2.09981,-0.43983 -1.11698,0.89226,-1.40197,-1.45067,-1.03823,2.10011,-0.44015 -1.11767,0.89185,-1.40244,-1.45016,-1.03843,2.10041,-0.44047 -1.11837,0.89146,-1.40290,-1.44966,-1.03863,2.10070,-0.44079 -1.11906,0.89107,-1.40335,-1.44917,-1.03882,2.10099,-0.44110 -1.11976,0.89069,-1.40380,-1.44869,-1.03901,2.10127,-0.44140 -1.12045,0.89031,-1.40423,-1.44821,-1.03920,2.10155,-0.44170 -1.12114,0.88994,-1.40466,-1.44774,-1.03939,2.10182,-0.44200 -1.12184,0.88958,-1.40509,-1.44728,-1.03958,2.10209,-0.44228 -1.12253,0.88922,-1.40550,-1.44683,-1.03976,2.10235,-0.44257 -1.12323,0.88887,-1.40591,-1.44638,-1.03994,2.10261,-0.44285 -1.12392,0.88853,-1.40631,-1.44594,-1.04012,2.10287,-0.44313 -1.12462,0.88819,-1.40671,-1.44550,-1.04030,2.10312,-0.44340 -1.12531,0.88785,-1.40709,-1.44507,-1.04047,2.10336,-0.44366 -1.12601,0.88753,-1.40748,-1.44465,-1.04064,2.10360,-0.44393 -1.12670,0.88721,-1.40785,-1.44424,-1.04082,2.10384,-0.44418 -1.12740,0.88689,-1.40822,-1.44383,-1.04098,2.10408,-0.44444 -1.12809,0.88672,-1.40842,-1.44361,-1.04107,2.10420,-0.44458 -1.12879,0.88625,-1.40895,-1.44306,-1.04128,2.10454,-0.44495 -1.12948,0.88579,-1.40947,-1.44253,-1.04148,2.10488,-0.44531 -1.13018,0.88534,-1.40998,-1.44200,-1.04168,2.10521,-0.44567 -1.13087,0.88490,-1.41048,-1.44148,-1.04187,2.10553,-0.44602 -1.13156,0.88446,-1.41097,-1.44096,-1.04207,2.10585,-0.44637 -1.13226,0.88404,-1.41146,-1.44046,-1.04226,2.10617,-0.44671 -1.13295,0.88362,-1.41194,-1.43996,-1.04245,2.10647,-0.44705 -1.13365,0.88320,-1.41241,-1.43947,-1.04264,2.10678,-0.44738 -1.13434,0.88280,-1.41287,-1.43899,-1.04283,2.10708,-0.44770 -1.13504,0.88240,-1.41332,-1.43851,-1.04301,2.10737,-0.44802 -1.13573,0.88201,-1.41377,-1.43804,-1.04319,2.10766,-0.44833 -1.13643,0.88162,-1.41420,-1.43758,-1.04337,2.10794,-0.44864 -1.13712,0.88124,-1.41463,-1.43712,-1.04355,2.10822,-0.44895 -1.13782,0.88087,-1.41506,-1.43667,-1.04373,2.10849,-0.44924 -1.13851,0.88050,-1.41547,-1.43623,-1.04390,2.10876,-0.44954 -1.13921,0.88014,-1.41588,-1.43580,-1.04408,2.10902,-0.44983 -1.13990,0.87979,-1.41629,-1.43537,-1.04425,2.10928,-0.45011 -1.14059,0.87944,-1.41668,-1.43495,-1.04442,2.10954,-0.45039 -1.14129,0.87910,-1.41707,-1.43453,-1.04458,2.10979,-0.45066 -1.14198,0.87877,-1.41745,-1.43412,-1.04475,2.11003,-0.45093 -1.14268,0.87844,-1.41783,-1.43372,-1.04491,2.11028,-0.45120 -1.14337,0.87811,-1.41820,-1.43332,-1.04507,2.11051,-0.45146 -1.14407,0.87780,-1.41856,-1.43293,-1.04523,2.11075,-0.45172 -1.14476,0.87775,-1.41862,-1.43288,-1.04525,2.11078,-0.45176 -1.14546,0.87726,-1.41915,-1.43235,-1.04544,2.11114,-0.45215 -1.14615,0.87678,-1.41967,-1.43184,-1.04563,2.11149,-0.45253 -1.14685,0.87631,-1.42018,-1.43133,-1.04582,2.11183,-0.45291 -1.14754,0.87585,-1.42069,-1.43082,-1.04600,2.11217,-0.45328 -1.14824,0.87539,-1.42118,-1.43033,-1.04619,2.11250,-0.45364 -1.14893,0.87495,-1.42167,-1.42984,-1.04637,2.11282,-0.45400 -1.14962,0.87451,-1.42215,-1.42936,-1.04655,2.11314,-0.45435 -1.15032,0.87408,-1.42262,-1.42889,-1.04673,2.11345,-0.45470 -1.15101,0.87366,-1.42309,-1.42842,-1.04690,2.11376,-0.45504 -1.15171,0.87324,-1.42354,-1.42796,-1.04708,2.11407,-0.45537 -1.15240,0.87283,-1.42399,-1.42751,-1.04725,2.11436,-0.45570 -1.15310,0.87243,-1.42443,-1.42707,-1.04742,2.11466,-0.45602 -1.15379,0.87204,-1.42486,-1.42663,-1.04759,2.11495,-0.45634 -1.15449,0.87165,-1.42529,-1.42620,-1.04776,2.11523,-0.45665 -1.15518,0.87127,-1.42571,-1.42577,-1.04792,2.11551,-0.45696 -1.15588,0.87089,-1.42612,-1.42535,-1.04809,2.11578,-0.45726 -1.15657,0.87053,-1.42652,-1.42494,-1.04825,2.11605,-0.45756 -1.15727,0.87017,-1.42692,-1.42453,-1.04841,2.11631,-0.45785 -1.15796,0.86981,-1.42731,-1.42413,-1.04857,2.11657,-0.45814 -1.15866,0.86946,-1.42770,-1.42373,-1.04873,2.11683,-0.45842 -1.15935,0.86912,-1.42808,-1.42334,-1.04888,2.11708,-0.45870 -1.16004,0.86878,-1.42845,-1.42296,-1.04903,2.11732,-0.45898 -1.16074,0.86845,-1.42881,-1.42258,-1.04919,2.11757,-0.45924 -1.16143,0.86812,-1.42917,-1.42221,-1.04934,2.11780,-0.45951 -1.16213,0.86797,-1.42933,-1.42205,-1.04940,2.11791,-0.45963 -1.16282,0.86745,-1.42985,-1.42159,-1.04956,2.11829,-0.46005 -1.16352,0.86694,-1.43036,-1.42113,-1.04972,2.11866,-0.46046 -1.16421,0.86644,-1.43086,-1.42068,-1.04988,2.11902,-0.46086 -1.16491,0.86595,-1.43135,-1.42023,-1.05004,2.11938,-0.46126 -1.16560,0.86546,-1.43183,-1.41979,-1.05020,2.11973,-0.46165 -1.16630,0.86499,-1.43231,-1.41936,-1.05035,2.12008,-0.46204 -1.16699,0.86452,-1.43277,-1.41894,-1.05051,2.12042,-0.46242 -1.16769,0.86406,-1.43323,-1.41852,-1.05066,2.12075,-0.46279 -1.16838,0.86361,-1.43368,-1.41810,-1.05081,2.12108,-0.46315 -1.16907,0.86317,-1.43413,-1.41769,-1.05096,2.12140,-0.46351 -1.16977,0.86273,-1.43456,-1.41729,-1.05111,2.12171,-0.46387 -1.17046,0.86230,-1.43499,-1.41690,-1.05126,2.12202,-0.46421 -1.17116,0.86188,-1.43541,-1.41651,-1.05141,2.12233,-0.46455 -1.17185,0.86147,-1.43583,-1.41612,-1.05155,2.12263,-0.46489 -1.17255,0.86106,-1.43624,-1.41574,-1.05169,2.12292,-0.46522 -1.17324,0.86066,-1.43664,-1.41537,-1.05184,2.12321,-0.46554 -1.17394,0.86027,-1.43703,-1.41500,-1.05198,2.12350,-0.46586 -1.17463,0.85989,-1.43742,-1.41464,-1.05212,2.12378,-0.46618 -1.17533,0.85951,-1.43780,-1.41428,-1.05225,2.12405,-0.46649 -1.17602,0.85914,-1.43817,-1.41393,-1.05239,2.12432,-0.46679 -1.17672,0.85877,-1.43854,-1.41358,-1.05253,2.12459,-0.46709 -1.17741,0.85841,-1.43890,-1.41324,-1.05266,2.12485,-0.46738 -1.17811,0.85806,-1.43926,-1.41290,-1.05279,2.12511,-0.46767 -1.17880,0.85771,-1.43961,-1.41257,-1.05292,2.12536,-0.46795 -1.17949,0.85737,-1.43995,-1.41224,-1.05305,2.12561,-0.46823 -1.18019,0.85723,-1.44009,-1.41211,-1.05311,2.12571,-0.46835 -1.18088,0.85680,-1.44050,-1.41175,-1.05324,2.12602,-0.46870 -1.18158,0.85638,-1.44091,-1.41140,-1.05337,2.12633,-0.46904 -1.18227,0.85596,-1.44130,-1.41105,-1.05350,2.12663,-0.46938 -1.18297,0.85555,-1.44169,-1.41071,-1.05363,2.12692,-0.46971 -1.18366,0.85515,-1.44207,-1.41037,-1.05375,2.12721,-0.47004 -1.18436,0.85476,-1.44245,-1.41003,-1.05388,2.12749,-0.47036 -1.18505,0.85438,-1.44282,-1.40971,-1.05400,2.12777,-0.47068 -1.18575,0.85400,-1.44318,-1.40938,-1.05413,2.12805,-0.47099 -1.18644,0.85362,-1.44354,-1.40906,-1.05425,2.12832,-0.47129 -1.18714,0.85326,-1.44389,-1.40875,-1.05437,2.12858,-0.47159 -1.18783,0.85290,-1.44424,-1.40844,-1.05449,2.12884,-0.47189 -1.18852,0.85254,-1.44458,-1.40813,-1.05461,2.12910,-0.47218 -1.18922,0.85220,-1.44491,-1.40783,-1.05473,2.12935,-0.47246 -1.18991,0.85205,-1.44505,-1.40771,-1.05477,2.12946,-0.47259 -1.19061,0.85160,-1.44543,-1.40743,-1.05487,2.12979,-0.47296 -1.19130,0.85115,-1.44580,-1.40716,-1.05496,2.13011,-0.47332 -1.19200,0.85071,-1.44616,-1.40688,-1.05506,2.13042,-0.47368 -1.19269,0.85028,-1.44652,-1.40661,-1.05516,2.13073,-0.47403 -1.19339,0.84986,-1.44688,-1.40635,-1.05525,2.13104,-0.47438 -1.19408,0.84944,-1.44723,-1.40609,-1.05534,2.13134,-0.47472 -1.19478,0.84904,-1.44757,-1.40583,-1.05544,2.13163,-0.47505 -1.19547,0.84864,-1.44791,-1.40557,-1.05553,2.13192,-0.47538 -1.19617,0.84824,-1.44824,-1.40532,-1.05562,2.13220,-0.47571 -1.19686,0.84786,-1.44856,-1.40507,-1.05571,2.13248,-0.47602 -1.19755,0.84748,-1.44888,-1.40483,-1.05580,2.13276,-0.47634 -1.19825,0.84710,-1.44920,-1.40459,-1.05589,2.13303,-0.47664 -1.19894,0.84674,-1.44950,-1.40435,-1.05598,2.13329,-0.47695 -1.19964,0.84647,-1.44972,-1.40419,-1.05604,2.13348,-0.47716 -1.20033,0.84602,-1.45006,-1.40398,-1.05611,2.13381,-0.47754 -1.20103,0.84557,-1.45040,-1.40378,-1.05618,2.13413,-0.47791 -1.20172,0.84512,-1.45073,-1.40357,-1.05624,2.13445,-0.47827 -1.20242,0.84469,-1.45105,-1.40337,-1.05631,2.13476,-0.47863 -1.20311,0.84426,-1.45137,-1.40318,-1.05638,2.13507,-0.47898 -1.20381,0.84384,-1.45168,-1.40298,-1.05644,2.13537,-0.47933 -1.20450,0.84343,-1.45199,-1.40279,-1.05651,2.13567,-0.47967 -1.20520,0.84303,-1.45229,-1.40260,-1.05657,2.13596,-0.48000 -1.20589,0.84263,-1.45259,-1.40241,-1.05664,2.13624,-0.48033 -1.20659,0.84224,-1.45288,-1.40222,-1.05670,2.13652,-0.48065 -1.20728,0.84186,-1.45317,-1.40204,-1.05677,2.13680,-0.48097 -1.20797,0.84148,-1.45345,-1.40186,-1.05683,2.13707,-0.48128 -1.20867,0.84124,-1.45362,-1.40177,-1.05686,2.13724,-0.48148 -1.20936,0.84071,-1.45392,-1.40170,-1.05687,2.13762,-0.48191 -1.21006,0.84019,-1.45422,-1.40163,-1.05687,2.13799,-0.48234 -1.21075,0.83968,-1.45451,-1.40156,-1.05688,2.13836,-0.48276 -1.21145,0.83918,-1.45480,-1.40149,-1.05688,2.13872,-0.48317 -1.21214,0.83869,-1.45508,-1.40142,-1.05689,2.13907,-0.48358 -1.21284,0.83821,-1.45535,-1.40135,-1.05690,2.13942,-0.48398 -1.21353,0.83773,-1.45562,-1.40128,-1.05690,2.13976,-0.48437 -1.21423,0.83727,-1.45589,-1.40122,-1.05691,2.14009,-0.48476 -1.21492,0.83681,-1.45615,-1.40115,-1.05692,2.14042,-0.48514 -1.21562,0.83636,-1.45641,-1.40108,-1.05693,2.14074,-0.48551 -1.21631,0.83592,-1.45666,-1.40102,-1.05694,2.14106,-0.48588 -1.21700,0.83548,-1.45691,-1.40095,-1.05695,2.14137,-0.48624 -1.21770,0.83505,-1.45716,-1.40088,-1.05696,2.14167,-0.48659 -1.21839,0.83464,-1.45740,-1.40082,-1.05698,2.14197,-0.48694 -1.21909,0.83422,-1.45763,-1.40075,-1.05699,2.14227,-0.48728 -1.21978,0.83382,-1.45787,-1.40069,-1.05700,2.14256,-0.48762 -1.22048,0.83342,-1.45810,-1.40063,-1.05702,2.14284,-0.48795 -1.22117,0.83303,-1.45832,-1.40056,-1.05703,2.14312,-0.48827 -1.22187,0.83269,-1.45850,-1.40054,-1.05703,2.14337,-0.48856 -1.22256,0.83194,-1.45874,-1.40079,-1.05688,2.14390,-0.48918 -1.22326,0.83120,-1.45898,-1.40102,-1.05674,2.14442,-0.48979 -1.22395,0.83048,-1.45922,-1.40125,-1.05660,2.14494,-0.49039 -1.22465,0.82977,-1.45945,-1.40148,-1.05646,2.14544,-0.49098 -1.22534,0.82907,-1.45967,-1.40170,-1.05633,2.14594,-0.49156 -1.22604,0.82838,-1.45990,-1.40192,-1.05620,2.14642,-0.49213 -1.22673,0.82771,-1.46012,-1.40213,-1.05607,2.14690,-0.49269 -1.22742,0.82705,-1.46034,-1.40233,-1.05595,2.14737,-0.49324 -1.22812,0.82640,-1.46055,-1.40254,-1.05583,2.14783,-0.49378 -1.22881,0.82576,-1.46076,-1.40274,-1.05571,2.14828,-0.49431 -1.22951,0.82514,-1.46096,-1.40293,-1.05559,2.14872,-0.49483 -1.23020,0.82452,-1.46117,-1.40312,-1.05548,2.14916,-0.49534 -1.23090,0.82392,-1.46137,-1.40330,-1.05537,2.14959,-0.49584 -1.23159,0.82333,-1.46156,-1.40349,-1.05526,2.15001,-0.49634 -1.23229,0.82274,-1.46176,-1.40366,-1.05516,2.15042,-0.49683 -1.23298,0.82217,-1.46195,-1.40384,-1.05506,2.15083,-0.49730 -1.23368,0.82161,-1.46213,-1.40401,-1.05496,2.15122,-0.49777 -1.23437,0.82106,-1.46232,-1.40417,-1.05486,2.15162,-0.49824 -1.23507,0.82052,-1.46250,-1.40433,-1.05477,2.15200,-0.49869 -1.23576,0.81999,-1.46267,-1.40449,-1.05468,2.15238,-0.49913 -1.23645,0.81947,-1.46285,-1.40465,-1.05459,2.15275,-0.49957 -1.23715,0.81895,-1.46302,-1.40480,-1.05450,2.15311,-0.50000 -1.23784,0.81845,-1.46319,-1.40495,-1.05442,2.15347,-0.50043 -1.23854,0.81796,-1.46335,-1.40510,-1.05433,2.15382,-0.50084 -1.23923,0.81747,-1.46352,-1.40524,-1.05425,2.15416,-0.50125 -1.23993,0.81699,-1.46368,-1.40538,-1.05417,2.15450,-0.50165 -1.24062,0.81653,-1.46384,-1.40551,-1.05410,2.15483,-0.50205 -1.24132,0.81607,-1.46399,-1.40565,-1.05402,2.15516,-0.50243 -1.24201,0.81561,-1.46414,-1.40578,-1.05395,2.15548,-0.50282 -1.24271,0.81517,-1.46429,-1.40591,-1.05388,2.15580,-0.50319 -1.24340,0.81474,-1.46444,-1.40603,-1.05381,2.15611,-0.50356 -1.24410,0.81431,-1.46458,-1.40615,-1.05374,2.15641,-0.50392 -1.24479,0.81389,-1.46473,-1.40627,-1.05367,2.15671,-0.50427 -1.24548,0.81348,-1.46487,-1.40639,-1.05361,2.15700,-0.50462 -1.24618,0.81307,-1.46500,-1.40651,-1.05354,2.15729,-0.50497 -1.24687,0.81267,-1.46514,-1.40662,-1.05348,2.15757,-0.50530 -1.24757,0.81228,-1.46527,-1.40673,-1.05342,2.15785,-0.50564 -1.24826,0.81190,-1.46540,-1.40683,-1.05336,2.15812,-0.50596 -1.24896,0.81152,-1.46553,-1.40694,-1.05331,2.15839,-0.50628 -1.24965,0.81136,-1.46558,-1.40700,-1.05328,2.15851,-0.50642 -1.25035,0.81085,-1.46565,-1.40732,-1.05312,2.15887,-0.50685 -1.25104,0.81035,-1.46573,-1.40763,-1.05297,2.15922,-0.50727 -1.25174,0.80986,-1.46581,-1.40793,-1.05282,2.15957,-0.50769 -1.25243,0.80938,-1.46588,-1.40823,-1.05268,2.15991,-0.50810 -1.25313,0.80890,-1.46595,-1.40852,-1.05253,2.16024,-0.50850 -1.25382,0.80844,-1.46602,-1.40881,-1.05240,2.16057,-0.50889 -1.25452,0.80798,-1.46609,-1.40909,-1.05226,2.16089,-0.50928 -1.25521,0.80754,-1.46616,-1.40937,-1.05213,2.16121,-0.50966 -1.25590,0.80710,-1.46623,-1.40964,-1.05199,2.16152,-0.51003 -1.25660,0.80666,-1.46630,-1.40991,-1.05187,2.16182,-0.51040 -1.25729,0.80624,-1.46636,-1.41017,-1.05174,2.16212,-0.51076 -1.25799,0.80582,-1.46643,-1.41042,-1.05162,2.16242,-0.51112 -1.25868,0.80542,-1.46649,-1.41067,-1.05150,2.16271,-0.51146 -1.25938,0.80501,-1.46655,-1.41092,-1.05138,2.16299,-0.51181 -1.26007,0.80462,-1.46662,-1.41116,-1.05126,2.16327,-0.51214 -1.26077,0.80423,-1.46668,-1.41140,-1.05115,2.16355,-0.51247 -1.26146,0.80385,-1.46674,-1.41163,-1.05104,2.16381,-0.51280 -1.26216,0.80348,-1.46679,-1.41186,-1.05093,2.16408,-0.51312 -1.26285,0.80311,-1.46685,-1.41209,-1.05082,2.16434,-0.51343 -1.26355,0.80275,-1.46691,-1.41231,-1.05072,2.16459,-0.51374 -1.26424,0.80238,-1.46695,-1.41255,-1.05060,2.16486,-0.51406 -1.26493,0.80187,-1.46692,-1.41307,-1.05036,2.16521,-0.51449 -1.26563,0.80137,-1.46688,-1.41359,-1.05013,2.16557,-0.51492 -1.26632,0.80088,-1.46685,-1.41409,-1.04990,2.16591,-0.51534 -1.26702,0.80040,-1.46681,-1.41458,-1.04967,2.16625,-0.51575 -1.26771,0.79992,-1.46678,-1.41507,-1.04945,2.16658,-0.51615 -1.26841,0.79946,-1.46674,-1.41554,-1.04923,2.16691,-0.51655 -1.26910,0.79900,-1.46671,-1.41601,-1.04902,2.16723,-0.51694 -1.26980,0.79855,-1.46668,-1.41647,-1.04881,2.16755,-0.51733 -1.27049,0.79811,-1.46665,-1.41692,-1.04860,2.16786,-0.51770 -1.27119,0.79768,-1.46662,-1.41736,-1.04840,2.16816,-0.51807 -1.27188,0.79725,-1.46659,-1.41779,-1.04820,2.16846,-0.51844 -1.27258,0.79684,-1.46656,-1.41822,-1.04800,2.16875,-0.51880 -1.27327,0.79643,-1.46653,-1.41864,-1.04781,2.16904,-0.51915 -1.27396,0.79603,-1.46650,-1.41905,-1.04762,2.16932,-0.51949 -1.27466,0.79563,-1.46647,-1.41945,-1.04744,2.16960,-0.51983 -1.27535,0.79524,-1.46644,-1.41985,-1.04726,2.16987,-0.52016 -1.27605,0.79486,-1.46641,-1.42024,-1.04708,2.17014,-0.52049 -1.27674,0.79449,-1.46639,-1.42062,-1.04691,2.17040,-0.52081 -1.27744,0.79412,-1.46636,-1.42100,-1.04673,2.17066,-0.52113 -1.27813,0.79376,-1.46633,-1.42137,-1.04657,2.17092,-0.52144 -1.27883,0.79341,-1.46631,-1.42173,-1.04640,2.17117,-0.52174 -1.27952,0.79306,-1.46628,-1.42209,-1.04624,2.17141,-0.52204 -1.28022,0.79272,-1.46626,-1.42244,-1.04608,2.17165,-0.52234 -1.28091,0.79238,-1.46623,-1.42278,-1.04592,2.17189,-0.52263 -1.28161,0.79205,-1.46621,-1.42312,-1.04577,2.17212,-0.52291 -1.28230,0.79173,-1.46619,-1.42345,-1.04562,2.17235,-0.52319 -1.28300,0.79144,-1.46613,-1.42380,-1.04546,2.17255,-0.52343 -1.28369,0.79082,-1.46579,-1.42496,-1.04496,2.17298,-0.52397 -1.28438,0.79021,-1.46545,-1.42610,-1.04446,2.17340,-0.52449 -1.28508,0.78962,-1.46511,-1.42722,-1.04397,2.17382,-0.52501 -1.28577,0.78903,-1.46478,-1.42832,-1.04349,2.17423,-0.52551 -1.28647,0.78845,-1.46446,-1.42941,-1.04301,2.17463,-0.52601 -1.28716,0.78789,-1.46415,-1.43047,-1.04255,2.17502,-0.52650 -1.28786,0.78733,-1.46383,-1.43151,-1.04209,2.17541,-0.52698 -1.28855,0.78678,-1.46353,-1.43254,-1.04164,2.17579,-0.52745 -1.28925,0.78625,-1.46323,-1.43355,-1.04120,2.17616,-0.52792 -1.28994,0.78572,-1.46293,-1.43454,-1.04077,2.17653,-0.52837 -1.29064,0.78521,-1.46265,-1.43551,-1.04034,2.17689,-0.52882 -1.29133,0.78470,-1.46236,-1.43647,-1.03992,2.17724,-0.52926 -1.29203,0.78420,-1.46208,-1.43741,-1.03951,2.17759,-0.52969 -1.29272,0.78371,-1.46181,-1.43833,-1.03910,2.17793,-0.53011 -1.29341,0.78323,-1.46154,-1.43924,-1.03871,2.17826,-0.53053 -1.29411,0.78276,-1.46127,-1.44013,-1.03832,2.17859,-0.53093 -1.29480,0.78230,-1.46101,-1.44100,-1.03793,2.17891,-0.53134 -1.29550,0.78184,-1.46076,-1.44186,-1.03755,2.17923,-0.53173 -1.29619,0.78140,-1.46051,-1.44271,-1.03718,2.17954,-0.53212 -1.29689,0.78096,-1.46026,-1.44354,-1.03681,2.17984,-0.53250 -1.29758,0.78053,-1.46002,-1.44436,-1.03646,2.18014,-0.53287 -1.29828,0.78011,-1.45978,-1.44516,-1.03610,2.18043,-0.53324 -1.29897,0.77969,-1.45955,-1.44595,-1.03575,2.18072,-0.53360 -1.29967,0.77929,-1.45932,-1.44672,-1.03541,2.18100,-0.53395 -1.30036,0.77889,-1.45909,-1.44748,-1.03508,2.18128,-0.53430 -1.30106,0.77849,-1.45887,-1.44823,-1.03475,2.18156,-0.53464 -1.30175,0.77811,-1.45865,-1.44896,-1.03442,2.18182,-0.53497 -1.30245,0.77773,-1.45844,-1.44969,-1.03410,2.18209,-0.53530 -1.30314,0.77736,-1.45823,-1.45039,-1.03379,2.18235,-0.53563 -1.30383,0.77699,-1.45802,-1.45109,-1.03348,2.18260,-0.53594 -1.30453,0.77664,-1.45782,-1.45178,-1.03318,2.18285,-0.53626 -1.30522,0.77629,-1.45762,-1.45245,-1.03288,2.18309,-0.53656 -1.30592,0.77594,-1.45742,-1.45311,-1.03259,2.18333,-0.53686 -1.30661,0.77560,-1.45723,-1.45376,-1.03230,2.18357,-0.53716 -1.30731,0.77527,-1.45704,-1.45440,-1.03202,2.18380,-0.53745 -1.30800,0.77494,-1.45685,-1.45503,-1.03174,2.18403,-0.53773 -1.30870,0.77462,-1.45667,-1.45564,-1.03146,2.18425,-0.53801 -1.30939,0.77431,-1.45649,-1.45625,-1.03119,2.18447,-0.53828 -1.31009,0.77400,-1.45631,-1.45685,-1.03093,2.18468,-0.53855 -1.31078,0.77370,-1.45614,-1.45743,-1.03067,2.18490,-0.53882 -1.31148,0.77340,-1.45597,-1.45801,-1.03041,2.18510,-0.53908 -1.31217,0.77311,-1.45580,-1.45857,-1.03016,2.18531,-0.53933 -1.31286,0.77282,-1.45564,-1.45913,-1.02991,2.18551,-0.53958 -1.31356,0.77254,-1.45547,-1.45967,-1.02967,2.18570,-0.53983 -1.31425,0.77226,-1.45531,-1.46021,-1.02943,2.18589,-0.54007 -1.31495,0.77199,-1.45516,-1.46074,-1.02920,2.18608,-0.54031 -1.31564,0.77173,-1.45500,-1.46126,-1.02897,2.18627,-0.54054 -1.31634,0.77147,-1.45485,-1.46177,-1.02874,2.18645,-0.54077 -1.31703,0.77121,-1.45470,-1.46227,-1.02851,2.18663,-0.54099 -1.31773,0.77096,-1.45455,-1.46276,-1.02829,2.18681,-0.54121 -1.31842,0.77071,-1.45441,-1.46324,-1.02808,2.18698,-0.54143 -1.31912,0.77047,-1.45427,-1.46372,-1.02787,2.18715,-0.54164 -1.31981,0.77023,-1.45413,-1.46418,-1.02766,2.18731,-0.54185 -1.32051,0.77020,-1.45410,-1.46425,-1.02763,2.18733,-0.54187 -1.32120,0.76995,-1.45385,-1.46492,-1.02734,2.18751,-0.54210 -1.32189,0.76969,-1.45361,-1.46558,-1.02706,2.18769,-0.54232 -1.32259,0.76944,-1.45337,-1.46622,-1.02678,2.18786,-0.54254 -1.32328,0.76920,-1.45313,-1.46686,-1.02650,2.18803,-0.54275 -1.32398,0.76896,-1.45290,-1.46748,-1.02623,2.18820,-0.54296 -1.32467,0.76873,-1.45267,-1.46809,-1.02597,2.18836,-0.54317 -1.32537,0.76850,-1.45244,-1.46870,-1.02570,2.18852,-0.54337 -1.32606,0.76827,-1.45222,-1.46929,-1.02545,2.18868,-0.54357 -1.32676,0.76805,-1.45200,-1.46987,-1.02520,2.18883,-0.54376 -1.32745,0.76783,-1.45179,-1.47044,-1.02495,2.18898,-0.54395 -1.32815,0.76762,-1.45158,-1.47100,-1.02470,2.18913,-0.54414 -1.32884,0.76741,-1.45137,-1.47156,-1.02446,2.18928,-0.54432 -1.32954,0.76721,-1.45117,-1.47210,-1.02422,2.18942,-0.54450 -1.33023,0.76700,-1.45097,-1.47264,-1.02399,2.18956,-0.54468 -1.33093,0.76681,-1.45077,-1.47316,-1.02376,2.18970,-0.54485 -1.33162,0.76661,-1.45058,-1.47368,-1.02354,2.18983,-0.54502 -1.33231,0.76657,-1.45050,-1.47385,-1.02347,2.18986,-0.54506 -1.33301,0.76612,-1.44975,-1.47554,-1.02276,2.19017,-0.54546 -1.33370,0.76569,-1.44901,-1.47720,-1.02207,2.19047,-0.54584 -1.33440,0.76526,-1.44828,-1.47884,-1.02139,2.19076,-0.54622 -1.33509,0.76484,-1.44756,-1.48044,-1.02072,2.19105,-0.54659 -1.33579,0.76443,-1.44686,-1.48202,-1.02007,2.19133,-0.54695 -1.33648,0.76402,-1.44617,-1.48357,-1.01942,2.19161,-0.54731 -1.33718,0.76363,-1.44549,-1.48510,-1.01879,2.19188,-0.54766 -1.33787,0.76324,-1.44482,-1.48659,-1.01816,2.19215,-0.54800 -1.33857,0.76286,-1.44417,-1.48806,-1.01755,2.19241,-0.54834 -1.33926,0.76248,-1.44353,-1.48951,-1.01694,2.19267,-0.54867 -1.33996,0.76211,-1.44289,-1.49093,-1.01635,2.19292,-0.54899 -1.34065,0.76175,-1.44227,-1.49233,-1.01576,2.19316,-0.54931 -1.34134,0.76140,-1.44166,-1.49370,-1.01518,2.19341,-0.54963 -1.34204,0.76105,-1.44106,-1.49505,-1.01462,2.19365,-0.54993 -1.34273,0.76071,-1.44047,-1.49637,-1.01406,2.19388,-0.55023 -1.34343,0.76037,-1.43989,-1.49767,-1.01351,2.19411,-0.55053 -1.34412,0.76005,-1.43933,-1.49895,-1.01297,2.19433,-0.55082 -1.34482,0.75972,-1.43877,-1.50021,-1.01244,2.19456,-0.55110 -1.34551,0.75941,-1.43822,-1.50145,-1.01192,2.19477,-0.55138 -1.34621,0.75910,-1.43768,-1.50266,-1.01141,2.19499,-0.55166 -1.34690,0.75879,-1.43715,-1.50385,-1.01090,2.19519,-0.55192 -1.34760,0.75849,-1.43663,-1.50503,-1.01041,2.19540,-0.55219 -1.34829,0.75820,-1.43612,-1.50618,-1.00992,2.19560,-0.55245 -1.34899,0.75791,-1.43561,-1.50731,-1.00944,2.19580,-0.55270 -1.34968,0.75763,-1.43512,-1.50842,-1.00896,2.19599,-0.55295 -1.35038,0.75735,-1.43464,-1.50952,-1.00850,2.19618,-0.55319 -1.35107,0.75708,-1.43416,-1.51059,-1.00804,2.19637,-0.55343 -1.35176,0.75682,-1.43369,-1.51165,-1.00759,2.19655,-0.55367 -1.35246,0.75656,-1.43323,-1.51269,-1.00715,2.19673,-0.55390 -1.35315,0.75630,-1.43278,-1.51371,-1.00671,2.19690,-0.55412 -1.35385,0.75605,-1.43233,-1.51471,-1.00628,2.19708,-0.55434 -1.35454,0.75580,-1.43189,-1.51570,-1.00586,2.19725,-0.55456 -1.35524,0.75556,-1.43147,-1.51667,-1.00545,2.19741,-0.55477 -1.35593,0.75532,-1.43104,-1.51762,-1.00504,2.19757,-0.55498 -1.35663,0.75509,-1.43063,-1.51855,-1.00463,2.19773,-0.55519 -1.35732,0.75486,-1.43022,-1.51947,-1.00424,2.19789,-0.55539 -1.35802,0.75464,-1.42982,-1.52038,-1.00385,2.19805,-0.55559 -1.35871,0.75442,-1.42943,-1.52127,-1.00347,2.19820,-0.55578 -1.35941,0.75420,-1.42904,-1.52214,-1.00309,2.19834,-0.55597 -1.36010,0.75399,-1.42866,-1.52300,-1.00272,2.19849,-0.55615 -1.36079,0.75378,-1.42829,-1.52384,-1.00236,2.19863,-0.55634 -1.36149,0.75358,-1.42792,-1.52467,-1.00200,2.19877,-0.55652 -1.36218,0.75338,-1.42756,-1.52549,-1.00164,2.19891,-0.55669 -1.36288,0.75318,-1.42720,-1.52629,-1.00130,2.19904,-0.55686 -1.36357,0.75299,-1.42686,-1.52707,-1.00096,2.19917,-0.55703 -1.36427,0.75280,-1.42651,-1.52785,-1.00062,2.19930,-0.55720 -1.36496,0.75262,-1.42618,-1.52861,-1.00029,2.19943,-0.55736 -1.36566,0.75244,-1.42585,-1.52936,-0.99996,2.19955,-0.55752 -1.36635,0.75226,-1.42552,-1.53009,-0.99964,2.19968,-0.55767 -1.36705,0.75209,-1.42520,-1.53081,-0.99933,2.19980,-0.55783 -1.36774,0.75192,-1.42489,-1.53152,-0.99902,2.19991,-0.55798 -1.36844,0.75175,-1.42458,-1.53222,-0.99871,2.20003,-0.55812 -1.36913,0.75159,-1.42428,-1.53291,-0.99841,2.20014,-0.55827 -1.36982,0.75142,-1.42398,-1.53358,-0.99812,2.20025,-0.55841 -1.37052,0.75127,-1.42368,-1.53424,-0.99782,2.20036,-0.55855 -1.37121,0.75111,-1.42340,-1.53490,-0.99754,2.20047,-0.55868 -1.37191,0.75096,-1.42311,-1.53554,-0.99726,2.20057,-0.55881 -1.37260,0.75081,-1.42283,-1.53616,-0.99698,2.20067,-0.55895 -1.37330,0.75067,-1.42256,-1.53678,-0.99671,2.20077,-0.55907 -1.37399,0.75052,-1.42229,-1.53739,-0.99644,2.20087,-0.55920 -1.37469,0.75038,-1.42203,-1.53799,-0.99617,2.20097,-0.55932 -1.37538,0.75024,-1.42177,-1.53858,-0.99591,2.20106,-0.55944 -1.37608,0.75011,-1.42151,-1.53915,-0.99566,2.20116,-0.55956 -1.37677,0.74998,-1.42126,-1.53972,-0.99541,2.20125,-0.55967 -1.37747,0.74985,-1.42101,-1.54028,-0.99516,2.20134,-0.55979 -1.37816,0.74977,-1.42085,-1.54065,-0.99500,2.20139,-0.55986 -1.37886,0.74959,-1.42042,-1.54155,-0.99462,2.20151,-0.56001 -1.37955,0.74942,-1.41999,-1.54245,-0.99424,2.20163,-0.56017 -1.38024,0.74925,-1.41957,-1.54332,-0.99387,2.20175,-0.56031 -1.38094,0.74909,-1.41916,-1.54418,-0.99351,2.20186,-0.56046 -1.38163,0.74893,-1.41875,-1.54503,-0.99315,2.20197,-0.56060 -1.38233,0.74877,-1.41836,-1.54586,-0.99279,2.20208,-0.56074 -1.38302,0.74861,-1.41797,-1.54668,-0.99245,2.20218,-0.56088 -1.38372,0.74846,-1.41758,-1.54748,-0.99211,2.20229,-0.56101 -1.38441,0.74831,-1.41720,-1.54827,-0.99177,2.20239,-0.56114 -1.38511,0.74816,-1.41683,-1.54905,-0.99144,2.20249,-0.56127 -1.38580,0.74802,-1.41647,-1.54981,-0.99111,2.20259,-0.56140 -1.38650,0.74788,-1.41611,-1.55056,-0.99079,2.20268,-0.56152 -1.38719,0.74774,-1.41576,-1.55130,-0.99048,2.20278,-0.56164 -1.38789,0.74761,-1.41541,-1.55202,-0.99017,2.20287,-0.56176 -1.38858,0.74748,-1.41507,-1.55274,-0.98986,2.20296,-0.56188 -1.38927,0.74735,-1.41474,-1.55344,-0.98956,2.20305,-0.56199 -1.38997,0.74722,-1.41441,-1.55413,-0.98926,2.20313,-0.56210 -1.39066,0.74710,-1.41409,-1.55480,-0.98897,2.20322,-0.56221 -1.39136,0.74697,-1.41377,-1.55547,-0.98869,2.20330,-0.56232 -1.39205,0.74685,-1.41346,-1.55612,-0.98840,2.20338,-0.56242 -1.39275,0.74674,-1.41315,-1.55676,-0.98813,2.20346,-0.56252 -1.39344,0.74662,-1.41285,-1.55740,-0.98785,2.20354,-0.56262 -1.39414,0.74651,-1.41255,-1.55802,-0.98759,2.20362,-0.56272 -1.39483,0.74640,-1.41226,-1.55863,-0.98732,2.20370,-0.56282 -1.39553,0.74629,-1.41198,-1.55923,-0.98706,2.20377,-0.56291 -1.39622,0.74619,-1.41169,-1.55982,-0.98680,2.20384,-0.56300 -1.39692,0.74608,-1.41142,-1.56040,-0.98655,2.20391,-0.56309 -1.39761,0.74598,-1.41115,-1.56097,-0.98630,2.20398,-0.56318 -1.39831,0.74590,-1.41089,-1.56149,-0.98608,2.20404,-0.56326 -1.39900,0.74574,-1.41021,-1.56278,-0.98556,2.20415,-0.56340 -1.39969,0.74558,-1.40953,-1.56405,-0.98505,2.20425,-0.56354 -1.40039,0.74543,-1.40887,-1.56530,-0.98454,2.20436,-0.56368 -1.40108,0.74528,-1.40823,-1.56653,-0.98404,2.20446,-0.56381 -1.40178,0.74513,-1.40759,-1.56773,-0.98356,2.20456,-0.56394 -1.40247,0.74499,-1.40696,-1.56892,-0.98308,2.20466,-0.56407 -1.40317,0.74485,-1.40635,-1.57008,-0.98260,2.20475,-0.56419 -1.40386,0.74471,-1.40574,-1.57123,-0.98214,2.20484,-0.56431 -1.40456,0.74458,-1.40515,-1.57235,-0.98168,2.20494,-0.56443 -1.40525,0.74445,-1.40457,-1.57345,-0.98123,2.20502,-0.56455 -1.40595,0.74432,-1.40399,-1.57454,-0.98078,2.20511,-0.56466 -1.40664,0.74419,-1.40343,-1.57561,-0.98035,2.20520,-0.56477 -1.40734,0.74407,-1.40287,-1.57666,-0.97992,2.20528,-0.56488 -1.40803,0.74395,-1.40233,-1.57769,-0.97949,2.20536,-0.56499 -1.40872,0.74383,-1.40179,-1.57870,-0.97908,2.20544,-0.56509 -1.40942,0.74371,-1.40127,-1.57970,-0.97867,2.20552,-0.56519 -1.41011,0.74360,-1.40075,-1.58068,-0.97826,2.20560,-0.56529 -1.41081,0.74349,-1.40024,-1.58164,-0.97787,2.20567,-0.56539 -1.41150,0.74338,-1.39975,-1.58259,-0.97748,2.20574,-0.56549 -1.41220,0.74328,-1.39926,-1.58352,-0.97709,2.20582,-0.56558 -1.41289,0.74317,-1.39877,-1.58443,-0.97671,2.20589,-0.56567 -1.41359,0.74307,-1.39830,-1.58533,-0.97634,2.20595,-0.56576 -1.41428,0.74297,-1.39783,-1.58621,-0.97597,2.20602,-0.56584 -1.41498,0.74288,-1.39738,-1.58708,-0.97561,2.20609,-0.56593 -1.41567,0.74278,-1.39693,-1.58793,-0.97526,2.20615,-0.56601 -1.41637,0.74269,-1.39649,-1.58877,-0.97491,2.20621,-0.56609 -1.41706,0.74260,-1.39605,-1.58959,-0.97456,2.20627,-0.56617 -1.41775,0.74251,-1.39563,-1.59040,-0.97422,2.20633,-0.56625 -1.41845,0.74242,-1.39521,-1.59120,-0.97389,2.20639,-0.56632 -1.41914,0.74234,-1.39479,-1.59198,-0.97356,2.20645,-0.56639 -1.41984,0.74226,-1.39439,-1.59275,-0.97324,2.20651,-0.56647 -1.42053,0.74218,-1.39399,-1.59351,-0.97292,2.20656,-0.56654 -1.42123,0.74210,-1.39360,-1.59425,-0.97261,2.20661,-0.56660 -1.42192,0.74202,-1.39322,-1.59498,-0.97230,2.20667,-0.56667 -1.42262,0.74194,-1.39284,-1.59570,-0.97200,2.20672,-0.56673 -1.42331,0.74187,-1.39247,-1.59640,-0.97170,2.20677,-0.56680 -1.42401,0.74180,-1.39210,-1.59710,-0.97140,2.20682,-0.56686 -1.42470,0.74173,-1.39175,-1.59778,-0.97111,2.20686,-0.56692 -1.42540,0.74166,-1.39139,-1.59845,-0.97083,2.20691,-0.56698 -1.42609,0.74159,-1.39105,-1.59911,-0.97055,2.20696,-0.56704 -1.42679,0.74153,-1.39071,-1.59975,-0.97027,2.20700,-0.56709 -1.42748,0.74146,-1.39037,-1.60039,-0.97000,2.20705,-0.56715 -1.42817,0.74140,-1.39004,-1.60102,-0.96973,2.20709,-0.56720 -1.42887,0.74134,-1.38972,-1.60163,-0.96947,2.20713,-0.56725 -1.42956,0.74128,-1.38940,-1.60224,-0.96921,2.20717,-0.56730 -1.43026,0.74122,-1.38909,-1.60283,-0.96896,2.20721,-0.56735 -1.43095,0.74116,-1.38879,-1.60341,-0.96870,2.20725,-0.56740 -1.43165,0.74111,-1.38848,-1.60399,-0.96846,2.20729,-0.56745 -1.43234,0.74108,-1.38821,-1.60447,-0.96826,2.20730,-0.56747 -1.43304,0.74117,-1.38731,-1.60585,-0.96774,2.20724,-0.56739 -1.43373,0.74126,-1.38642,-1.60721,-0.96722,2.20719,-0.56731 -1.43443,0.74134,-1.38555,-1.60855,-0.96672,2.20713,-0.56723 -1.43512,0.74143,-1.38469,-1.60986,-0.96622,2.20707,-0.56716 -1.43582,0.74152,-1.38385,-1.61115,-0.96573,2.20701,-0.56708 -1.43651,0.74160,-1.38302,-1.61242,-0.96525,2.20695,-0.56700 -1.43720,0.74169,-1.38221,-1.61367,-0.96477,2.20690,-0.56693 -1.43790,0.74177,-1.38141,-1.61489,-0.96430,2.20684,-0.56685 -1.43859,0.74186,-1.38062,-1.61610,-0.96384,2.20678,-0.56677 -1.43929,0.74194,-1.37985,-1.61728,-0.96339,2.20673,-0.56670 -1.43998,0.74202,-1.37909,-1.61844,-0.96294,2.20667,-0.56662 -1.44068,0.74210,-1.37835,-1.61959,-0.96250,2.20661,-0.56655 -1.44137,0.74219,-1.37761,-1.62071,-0.96207,2.20656,-0.56647 -1.44207,0.74227,-1.37689,-1.62182,-0.96164,2.20650,-0.56640 -1.44276,0.74235,-1.37619,-1.62290,-0.96122,2.20645,-0.56633 -1.44346,0.74243,-1.37549,-1.62397,-0.96080,2.20640,-0.56625 -1.44415,0.74251,-1.37481,-1.62502,-0.96040,2.20634,-0.56618 -1.44485,0.74258,-1.37414,-1.62605,-0.96000,2.20629,-0.56611 -1.44554,0.74266,-1.37347,-1.62707,-0.95960,2.20624,-0.56603 -1.44624,0.74274,-1.37283,-1.62806,-0.95921,2.20618,-0.56596 -1.44693,0.74282,-1.37219,-1.62904,-0.95883,2.20613,-0.56589 -1.44762,0.74289,-1.37156,-1.63001,-0.95845,2.20608,-0.56582 -1.44832,0.74297,-1.37095,-1.63095,-0.95808,2.20603,-0.56575 -1.44901,0.74304,-1.37034,-1.63188,-0.95771,2.20598,-0.56568 -1.44971,0.74312,-1.36975,-1.63280,-0.95735,2.20593,-0.56561 -1.45040,0.74319,-1.36916,-1.63370,-0.95699,2.20587,-0.56554 -1.45110,0.74326,-1.36859,-1.63458,-0.95664,2.20582,-0.56547 -1.45179,0.74334,-1.36802,-1.63545,-0.95630,2.20577,-0.56540 -1.45249,0.74341,-1.36747,-1.63630,-0.95596,2.20573,-0.56534 -1.45318,0.74348,-1.36692,-1.63714,-0.95563,2.20568,-0.56527 -1.45388,0.74355,-1.36639,-1.63797,-0.95530,2.20563,-0.56520 -1.45457,0.74362,-1.36586,-1.63878,-0.95497,2.20558,-0.56514 -1.45527,0.74369,-1.36534,-1.63957,-0.95465,2.20553,-0.56507 -1.45596,0.74376,-1.36483,-1.64036,-0.95434,2.20548,-0.56501 -1.45665,0.74383,-1.36433,-1.64113,-0.95403,2.20544,-0.56494 -1.45735,0.74390,-1.36384,-1.64189,-0.95372,2.20539,-0.56488 -1.45804,0.74396,-1.36336,-1.64263,-0.95342,2.20535,-0.56481 -1.45874,0.74403,-1.36289,-1.64336,-0.95313,2.20530,-0.56475 -1.45943,0.74410,-1.36242,-1.64408,-0.95283,2.20525,-0.56469 -1.46013,0.74416,-1.36196,-1.64479,-0.95255,2.20521,-0.56462 -1.46082,0.74423,-1.36151,-1.64548,-0.95226,2.20516,-0.56456 -1.46152,0.74429,-1.36107,-1.64617,-0.95198,2.20512,-0.56450 -1.46221,0.74435,-1.36064,-1.64684,-0.95171,2.20508,-0.56444 -1.46291,0.74442,-1.36021,-1.64750,-0.95144,2.20503,-0.56438 -1.46360,0.74448,-1.35979,-1.64815,-0.95117,2.20499,-0.56432 -1.46430,0.74454,-1.35938,-1.64879,-0.95091,2.20495,-0.56426 -1.46499,0.74460,-1.35897,-1.64942,-0.95065,2.20490,-0.56420 -1.46568,0.74466,-1.35857,-1.65003,-0.95040,2.20486,-0.56414 -1.46638,0.74472,-1.35818,-1.65064,-0.95015,2.20482,-0.56409 -1.46707,0.74478,-1.35779,-1.65123,-0.94990,2.20478,-0.56403 -1.46777,0.74484,-1.35742,-1.65182,-0.94966,2.20474,-0.56397 -1.46846,0.74490,-1.35704,-1.65240,-0.94942,2.20470,-0.56392 -1.46916,0.74496,-1.35668,-1.65296,-0.94918,2.20466,-0.56386 -1.46985,0.74502,-1.35632,-1.65352,-0.94895,2.20462,-0.56380 -1.47055,0.74505,-1.35622,-1.65366,-0.94890,2.20460,-0.56378 -1.47124,0.74535,-1.35519,-1.65500,-0.94842,2.20439,-0.56350 -1.47194,0.74566,-1.35419,-1.65632,-0.94795,2.20418,-0.56323 -1.47263,0.74596,-1.35320,-1.65762,-0.94749,2.20398,-0.56296 -1.47333,0.74625,-1.35223,-1.65890,-0.94703,2.20378,-0.56270 -1.47402,0.74654,-1.35128,-1.66015,-0.94658,2.20358,-0.56244 -1.47472,0.74683,-1.35034,-1.66138,-0.94613,2.20339,-0.56218 -1.47541,0.74711,-1.34942,-1.66259,-0.94570,2.20320,-0.56192 -1.47610,0.74740,-1.34851,-1.66379,-0.94527,2.20300,-0.56167 -1.47680,0.74767,-1.34762,-1.66496,-0.94484,2.20282,-0.56142 -1.47749,0.74795,-1.34675,-1.66611,-0.94442,2.20263,-0.56118 -1.47819,0.74822,-1.34589,-1.66724,-0.94401,2.20245,-0.56093 -1.47888,0.74848,-1.34504,-1.66835,-0.94361,2.20226,-0.56069 -1.47958,0.74875,-1.34421,-1.66944,-0.94321,2.20208,-0.56046 -1.48027,0.74901,-1.34340,-1.67052,-0.94281,2.20191,-0.56022 -1.48097,0.74927,-1.34260,-1.67157,-0.94242,2.20173,-0.55999 -1.48166,0.74952,-1.34181,-1.67261,-0.94204,2.20156,-0.55976 -1.48236,0.74977,-1.34104,-1.67363,-0.94167,2.20139,-0.55954 -1.48305,0.75002,-1.34027,-1.67463,-0.94129,2.20122,-0.55931 -1.48375,0.75026,-1.33953,-1.67562,-0.94093,2.20105,-0.55909 -1.48444,0.75050,-1.33879,-1.67658,-0.94057,2.20089,-0.55888 -1.48513,0.75074,-1.33807,-1.67754,-0.94021,2.20072,-0.55866 -1.48583,0.75097,-1.33736,-1.67847,-0.93986,2.20056,-0.55845 -1.48652,0.75121,-1.33666,-1.67939,-0.93952,2.20040,-0.55824 -1.48722,0.75143,-1.33598,-1.68030,-0.93918,2.20025,-0.55803 -1.48791,0.75166,-1.33530,-1.68118,-0.93884,2.20009,-0.55783 -1.48861,0.75188,-1.33464,-1.68206,-0.93851,2.19994,-0.55763 -1.48930,0.75210,-1.33399,-1.68292,-0.93819,2.19979,-0.55743 -1.49000,0.75232,-1.33335,-1.68376,-0.93787,2.19964,-0.55723 -1.49069,0.75253,-1.33272,-1.68459,-0.93755,2.19949,-0.55704 -1.49139,0.75274,-1.33211,-1.68541,-0.93724,2.19935,-0.55685 -1.49208,0.75295,-1.33150,-1.68621,-0.93694,2.19920,-0.55666 -1.49278,0.75316,-1.33090,-1.68700,-0.93663,2.19906,-0.55647 -1.49347,0.75336,-1.33032,-1.68777,-0.93634,2.19892,-0.55628 -1.49417,0.75356,-1.32974,-1.68853,-0.93604,2.19878,-0.55610 -1.49486,0.75376,-1.32918,-1.68928,-0.93575,2.19865,-0.55592 -1.49555,0.75395,-1.32862,-1.69002,-0.93547,2.19851,-0.55575 -1.49625,0.75415,-1.32807,-1.69074,-0.93519,2.19838,-0.55557 -1.49694,0.75434,-1.32754,-1.69146,-0.93491,2.19825,-0.55540 -1.49764,0.75452,-1.32701,-1.69216,-0.93464,2.19812,-0.55523 -1.49833,0.75471,-1.32649,-1.69284,-0.93437,2.19799,-0.55506 -1.49903,0.75489,-1.32598,-1.69352,-0.93411,2.19786,-0.55489 -1.49972,0.75507,-1.32548,-1.69418,-0.93384,2.19774,-0.55473 -1.50042,0.75525,-1.32499,-1.69484,-0.93359,2.19762,-0.55456 -1.50111,0.75543,-1.32450,-1.69548,-0.93333,2.19750,-0.55440 -1.50181,0.75560,-1.32403,-1.69611,-0.93308,2.19738,-0.55425 -1.50250,0.75577,-1.32356,-1.69673,-0.93284,2.19726,-0.55409 -1.50320,0.75594,-1.32310,-1.69734,-0.93259,2.19714,-0.55394 -1.50389,0.75610,-1.32265,-1.69794,-0.93236,2.19703,-0.55378 -1.50458,0.75627,-1.32221,-1.69853,-0.93212,2.19691,-0.55363 -1.50528,0.75643,-1.32177,-1.69911,-0.93189,2.19680,-0.55349 -1.50597,0.75659,-1.32134,-1.69968,-0.93166,2.19669,-0.55334 -1.50667,0.75675,-1.32092,-1.70024,-0.93143,2.19658,-0.55320 -1.50736,0.75690,-1.32051,-1.70080,-0.93121,2.19647,-0.55305 -1.50806,0.75705,-1.32010,-1.70134,-0.93099,2.19637,-0.55291 -1.50875,0.75720,-1.31970,-1.70187,-0.93078,2.19626,-0.55278 -1.50945,0.75735,-1.31931,-1.70239,-0.93056,2.19616,-0.55264 -1.51014,0.75750,-1.31892,-1.70290,-0.93036,2.19605,-0.55250 -1.51084,0.75784,-1.31812,-1.70386,-0.93002,2.19582,-0.55220 -1.51153,0.75818,-1.31734,-1.70481,-0.92969,2.19559,-0.55190 -1.51223,0.75851,-1.31657,-1.70574,-0.92936,2.19537,-0.55161 -1.51292,0.75883,-1.31582,-1.70665,-0.92904,2.19514,-0.55132 -1.51361,0.75915,-1.31507,-1.70755,-0.92872,2.19492,-0.55104 -1.51431,0.75947,-1.31434,-1.70843,-0.92841,2.19471,-0.55075 -1.51500,0.75978,-1.31362,-1.70930,-0.92810,2.19449,-0.55048 -1.51570,0.76008,-1.31292,-1.71015,-0.92779,2.19428,-0.55020 -1.51639,0.76039,-1.31222,-1.71099,-0.92749,2.19407,-0.54993 -1.51709,0.76069,-1.31154,-1.71181,-0.92720,2.19387,-0.54966 -1.51778,0.76098,-1.31087,-1.71262,-0.92690,2.19366,-0.54940 -1.51848,0.76127,-1.31022,-1.71341,-0.92662,2.19346,-0.54914 -1.51917,0.76156,-1.30957,-1.71420,-0.92633,2.19326,-0.54888 -1.51987,0.76184,-1.30893,-1.71497,-0.92605,2.19307,-0.54863 -1.52056,0.76212,-1.30831,-1.71572,-0.92578,2.19288,-0.54838 -1.52126,0.76240,-1.30770,-1.71647,-0.92550,2.19269,-0.54814 -1.52195,0.76267,-1.30709,-1.71720,-0.92524,2.19250,-0.54789 -1.52265,0.76294,-1.30650,-1.71791,-0.92497,2.19231,-0.54765 -1.52334,0.76320,-1.30592,-1.71862,-0.92471,2.19213,-0.54742 -1.52403,0.76346,-1.30535,-1.71931,-0.92445,2.19195,-0.54718 -1.52473,0.76372,-1.30478,-1.72000,-0.92420,2.19177,-0.54695 -1.52542,0.76397,-1.30423,-1.72067,-0.92395,2.19160,-0.54673 -1.52612,0.76422,-1.30369,-1.72133,-0.92370,2.19142,-0.54650 -1.52681,0.76447,-1.30315,-1.72198,-0.92346,2.19125,-0.54628 -1.52751,0.76471,-1.30263,-1.72261,-0.92322,2.19108,-0.54606 -1.52820,0.76495,-1.30211,-1.72324,-0.92299,2.19092,-0.54585 -1.52890,0.76519,-1.30161,-1.72386,-0.92275,2.19075,-0.54564 -1.52959,0.76542,-1.30111,-1.72446,-0.92252,2.19059,-0.54543 -1.53029,0.76565,-1.30062,-1.72506,-0.92230,2.19043,-0.54522 -1.53098,0.76588,-1.30014,-1.72564,-0.92207,2.19027,-0.54502 -1.53168,0.76610,-1.29967,-1.72622,-0.92185,2.19012,-0.54482 -1.53237,0.76632,-1.29920,-1.72678,-0.92164,2.18997,-0.54462 -1.53306,0.76654,-1.29875,-1.72734,-0.92142,2.18981,-0.54443 -1.53376,0.76675,-1.29830,-1.72789,-0.92121,2.18967,-0.54423 -1.53445,0.76696,-1.29786,-1.72842,-0.92100,2.18952,-0.54404 -1.53515,0.76717,-1.29742,-1.72895,-0.92080,2.18937,-0.54386 -1.53584,0.76737,-1.29700,-1.72947,-0.92060,2.18923,-0.54367 -1.53654,0.76758,-1.29658,-1.72998,-0.92040,2.18909,-0.54349 -1.53723,0.76778,-1.29617,-1.73049,-0.92020,2.18895,-0.54331 -1.53793,0.76797,-1.29577,-1.73098,-0.92001,2.18881,-0.54313 -1.53862,0.76817,-1.29537,-1.73147,-0.91982,2.18868,-0.54296 -1.53932,0.76820,-1.29531,-1.73154,-0.91979,2.18865,-0.54293 -1.54001,0.76852,-1.29469,-1.73223,-0.91955,2.18843,-0.54265 -1.54071,0.76884,-1.29409,-1.73291,-0.91931,2.18821,-0.54237 -1.54140,0.76915,-1.29350,-1.73358,-0.91907,2.18800,-0.54209 -1.54210,0.76946,-1.29292,-1.73424,-0.91884,2.18779,-0.54182 -1.54279,0.76976,-1.29235,-1.73489,-0.91861,2.18758,-0.54155 -1.54348,0.77006,-1.29179,-1.73552,-0.91838,2.18737,-0.54129 -1.54418,0.77035,-1.29124,-1.73615,-0.91816,2.18716,-0.54103 -1.54487,0.77064,-1.29069,-1.73676,-0.91794,2.18696,-0.54077 -1.54557,0.77093,-1.29016,-1.73737,-0.91772,2.18676,-0.54051 -1.54626,0.77121,-1.28964,-1.73796,-0.91751,2.18657,-0.54026 -1.54696,0.77149,-1.28912,-1.73854,-0.91729,2.18637,-0.54002 -1.54765,0.77176,-1.28862,-1.73912,-0.91708,2.18618,-0.53977 -1.54835,0.77203,-1.28812,-1.73968,-0.91688,2.18600,-0.53953 -1.54904,0.77230,-1.28763,-1.74024,-0.91668,2.18581,-0.53930 -1.54974,0.77256,-1.28715,-1.74079,-0.91648,2.18563,-0.53907 -1.55043,0.77282,-1.28668,-1.74132,-0.91628,2.18545,-0.53884 -1.55113,0.77308,-1.28622,-1.74185,-0.91608,2.18527,-0.53861 -1.55182,0.77333,-1.28576,-1.74237,-0.91589,2.18509,-0.53839 -1.55251,0.77358,-1.28531,-1.74288,-0.91570,2.18492,-0.53816 -1.55321,0.77382,-1.28487,-1.74338,-0.91551,2.18475,-0.53795 -1.55390,0.77406,-1.28444,-1.74387,-0.91533,2.18458,-0.53773 -1.55460,0.77430,-1.28402,-1.74436,-0.91515,2.18442,-0.53752 -1.55529,0.77453,-1.28360,-1.74484,-0.91497,2.18425,-0.53731 -1.55599,0.77476,-1.28319,-1.74531,-0.91479,2.18409,-0.53711 -1.55668,0.77499,-1.28279,-1.74577,-0.91461,2.18393,-0.53691 -1.55738,0.77511,-1.28260,-1.74595,-0.91455,2.18385,-0.53680 -1.55807,0.77585,-1.28158,-1.74687,-0.91430,2.18334,-0.53616 -1.55877,0.77658,-1.28057,-1.74777,-0.91404,2.18284,-0.53552 -1.55946,0.77731,-1.27958,-1.74865,-0.91380,2.18234,-0.53490 -1.56016,0.77802,-1.27860,-1.74953,-0.91355,2.18185,-0.53428 -1.56085,0.77872,-1.27765,-1.75038,-0.91331,2.18136,-0.53367 -1.56154,0.77941,-1.27671,-1.75122,-0.91306,2.18089,-0.53307 -1.56224,0.78009,-1.27578,-1.75205,-0.91283,2.18042,-0.53248 -1.56293,0.78076,-1.27488,-1.75286,-0.91259,2.17995,-0.53190 -1.56363,0.78143,-1.27398,-1.75366,-0.91236,2.17949,-0.53132 -1.56432,0.78208,-1.27311,-1.75445,-0.91213,2.17904,-0.53076 -1.56502,0.78273,-1.27225,-1.75522,-0.91191,2.17859,-0.53020 -1.56571,0.78336,-1.27140,-1.75598,-0.91168,2.17815,-0.52965 -1.56641,0.78399,-1.27057,-1.75672,-0.91146,2.17772,-0.52911 -1.56710,0.78461,-1.26975,-1.75746,-0.91125,2.17729,-0.52857 -1.56780,0.78522,-1.26895,-1.75818,-0.91103,2.17687,-0.52804 -1.56849,0.78582,-1.26816,-1.75889,-0.91082,2.17645,-0.52752 -1.56919,0.78641,-1.26738,-1.75958,-0.91061,2.17604,-0.52701 -1.56988,0.78699,-1.26662,-1.76027,-0.91040,2.17563,-0.52651 -1.57058,0.78757,-1.26587,-1.76094,-0.91020,2.17523,-0.52601 -1.57127,0.78813,-1.26514,-1.76161,-0.91000,2.17484,-0.52552 -1.57196,0.78869,-1.26441,-1.76226,-0.90980,2.17445,-0.52504 -1.57266,0.78924,-1.26370,-1.76290,-0.90960,2.17406,-0.52456 -1.57335,0.78979,-1.26300,-1.76353,-0.90941,2.17369,-0.52409 -1.57405,0.79032,-1.26232,-1.76414,-0.90921,2.17331,-0.52363 -1.57474,0.79085,-1.26164,-1.76475,-0.90902,2.17294,-0.52317 -1.57544,0.79137,-1.26098,-1.76535,-0.90884,2.17258,-0.52273 -1.57613,0.79188,-1.26033,-1.76594,-0.90865,2.17222,-0.52228 -1.57683,0.79239,-1.25969,-1.76652,-0.90847,2.17187,-0.52185 -1.57752,0.79289,-1.25906,-1.76709,-0.90829,2.17152,-0.52142 -1.57822,0.79338,-1.25844,-1.76764,-0.90811,2.17117,-0.52099 -1.57891,0.79386,-1.25784,-1.76819,-0.90793,2.17083,-0.52058 -1.57961,0.79434,-1.25724,-1.76873,-0.90776,2.17050,-0.52016 -1.58030,0.79481,-1.25665,-1.76927,-0.90758,2.17017,-0.51976 -1.58099,0.79527,-1.25608,-1.76979,-0.90741,2.16985,-0.51936 -1.58169,0.79573,-1.25551,-1.77030,-0.90725,2.16952,-0.51897 -1.58238,0.79617,-1.25495,-1.77081,-0.90708,2.16921,-0.51858 -1.58308,0.79662,-1.25441,-1.77130,-0.90692,2.16890,-0.51820 -1.58377,0.79705,-1.25387,-1.77179,-0.90675,2.16859,-0.51782 -1.58447,0.79749,-1.25334,-1.77227,-0.90659,2.16829,-0.51745 -1.58516,0.79791,-1.25282,-1.77275,-0.90644,2.16799,-0.51708 -1.58586,0.79833,-1.25231,-1.77321,-0.90628,2.16769,-0.51672 -1.58655,0.79874,-1.25181,-1.77367,-0.90613,2.16740,-0.51637 -1.58725,0.79914,-1.25132,-1.77412,-0.90597,2.16712,-0.51602 -1.58794,0.79954,-1.25084,-1.77456,-0.90582,2.16683,-0.51567 -1.58864,0.79994,-1.25036,-1.77499,-0.90567,2.16656,-0.51533 -1.58933,0.80033,-1.24989,-1.77542,-0.90553,2.16628,-0.51500 -1.59003,0.80071,-1.24943,-1.77584,-0.90538,2.16601,-0.51467 -1.59072,0.80109,-1.24898,-1.77625,-0.90524,2.16574,-0.51434 -1.59141,0.80146,-1.24854,-1.77666,-0.90510,2.16548,-0.51402 -1.59211,0.80182,-1.24810,-1.77706,-0.90496,2.16522,-0.51371 -1.59280,0.80218,-1.24767,-1.77745,-0.90482,2.16497,-0.51340 -1.59350,0.80254,-1.24725,-1.77784,-0.90468,2.16471,-0.51309 -1.59419,0.80289,-1.24684,-1.77822,-0.90455,2.16447,-0.51279 -1.59489,0.80323,-1.24643,-1.77859,-0.90441,2.16422,-0.51249 -1.59558,0.80357,-1.24603,-1.77896,-0.90428,2.16398,-0.51220 -1.59628,0.80391,-1.24564,-1.77932,-0.90415,2.16374,-0.51191 -1.59697,0.80406,-1.24547,-1.77947,-0.90410,2.16363,-0.51178 -1.59767,0.80458,-1.24492,-1.77990,-0.90397,2.16327,-0.51134 -1.59836,0.80509,-1.24438,-1.78033,-0.90385,2.16291,-0.51090 -1.59906,0.80559,-1.24385,-1.78074,-0.90373,2.16256,-0.51047 -1.59975,0.80609,-1.24332,-1.78115,-0.90360,2.16221,-0.51005 -1.60044,0.80658,-1.24281,-1.78156,-0.90348,2.16186,-0.50964 -1.60114,0.80706,-1.24231,-1.78195,-0.90336,2.16152,-0.50922 -1.60183,0.80753,-1.24181,-1.78234,-0.90325,2.16119,-0.50882 -1.60253,0.80800,-1.24132,-1.78273,-0.90313,2.16086,-0.50842 -1.60322,0.80846,-1.24084,-1.78311,-0.90301,2.16053,-0.50803 -1.60392,0.80892,-1.24037,-1.78348,-0.90290,2.16021,-0.50764 -1.60461,0.80936,-1.23991,-1.78384,-0.90279,2.15989,-0.50726 -1.60531,0.80980,-1.23946,-1.78420,-0.90267,2.15958,-0.50689 -1.60600,0.81024,-1.23901,-1.78455,-0.90256,2.15928,-0.50652 -1.60670,0.81066,-1.23857,-1.78490,-0.90245,2.15897,-0.50616 -1.60739,0.81109,-1.23814,-1.78524,-0.90234,2.15867,-0.50580 -1.60809,0.81150,-1.23772,-1.78558,-0.90224,2.15838,-0.50544 -1.60878,0.81191,-1.23730,-1.78591,-0.90213,2.15809,-0.50510 -1.60947,0.81231,-1.23689,-1.78624,-0.90203,2.15780,-0.50475 -1.61017,0.81271,-1.23649,-1.78656,-0.90192,2.15752,-0.50442 -1.61086,0.81310,-1.23610,-1.78687,-0.90182,2.15724,-0.50408 -1.61156,0.81348,-1.23571,-1.78718,-0.90172,2.15697,-0.50376 -1.61225,0.81386,-1.23533,-1.78748,-0.90162,2.15670,-0.50343 -1.61295,0.81427,-1.23495,-1.78776,-0.90153,2.15642,-0.50309 -1.61364,0.81529,-1.23415,-1.78811,-0.90151,2.15570,-0.50224 -1.61434,0.81629,-1.23337,-1.78845,-0.90149,2.15500,-0.50140 -1.61503,0.81728,-1.23260,-1.78878,-0.90147,2.15430,-0.50057 -1.61573,0.81826,-1.23185,-1.78912,-0.90145,2.15361,-0.49975 -1.61642,0.81922,-1.23111,-1.78944,-0.90142,2.15294,-0.49895 -1.61712,0.82017,-1.23038,-1.78976,-0.90140,2.15227,-0.49816 -1.61781,0.82110,-1.22967,-1.79007,-0.90137,2.15161,-0.49738 -1.61851,0.82202,-1.22897,-1.79038,-0.90135,2.15096,-0.49661 -1.61920,0.82293,-1.22828,-1.79069,-0.90132,2.15032,-0.49585 -1.61989,0.82382,-1.22760,-1.79099,-0.90130,2.14969,-0.49511 -1.62059,0.82470,-1.22694,-1.79128,-0.90127,2.14907,-0.49438 -1.62128,0.82557,-1.22629,-1.79157,-0.90124,2.14846,-0.49366 -1.62198,0.82642,-1.22564,-1.79185,-0.90121,2.14785,-0.49294 -1.62267,0.82727,-1.22501,-1.79213,-0.90118,2.14726,-0.49224 -1.62337,0.82810,-1.22440,-1.79241,-0.90115,2.14667,-0.49155 -1.62406,0.82891,-1.22379,-1.79268,-0.90112,2.14609,-0.49088 -1.62476,0.82972,-1.22319,-1.79295,-0.90109,2.14552,-0.49021 -1.62545,0.83051,-1.22260,-1.79321,-0.90106,2.14495,-0.48955 -1.62615,0.83129,-1.22203,-1.79347,-0.90103,2.14440,-0.48890 -1.62684,0.83206,-1.22146,-1.79372,-0.90100,2.14385,-0.48826 -1.62754,0.83282,-1.22091,-1.79397,-0.90097,2.14331,-0.48763 -1.62823,0.83357,-1.22036,-1.79422,-0.90094,2.14278,-0.48701 -1.62892,0.83431,-1.21982,-1.79446,-0.90090,2.14226,-0.48641 -1.62962,0.83503,-1.21930,-1.79470,-0.90087,2.14174,-0.48580 -1.63031,0.83575,-1.21878,-1.79493,-0.90084,2.14123,-0.48521 -1.63101,0.83645,-1.21827,-1.79516,-0.90080,2.14073,-0.48463 -1.63170,0.83715,-1.21777,-1.79539,-0.90077,2.14023,-0.48406 -1.63240,0.83783,-1.21728,-1.79561,-0.90074,2.13974,-0.48349 -1.63309,0.83850,-1.21680,-1.79583,-0.90070,2.13926,-0.48294 -1.63379,0.83916,-1.21632,-1.79605,-0.90067,2.13879,-0.48239 -1.63448,0.83982,-1.21586,-1.79626,-0.90063,2.13832,-0.48185 -1.63518,0.84046,-1.21540,-1.79647,-0.90060,2.13786,-0.48132 -1.63587,0.84109,-1.21495,-1.79668,-0.90056,2.13741,-0.48080 -1.63657,0.84172,-1.21451,-1.79688,-0.90053,2.13696,-0.48029 -1.63726,0.84233,-1.21408,-1.79708,-0.90049,2.13652,-0.47978 -1.63795,0.84294,-1.21365,-1.79728,-0.90046,2.13608,-0.47928 -1.63865,0.84353,-1.21323,-1.79747,-0.90042,2.13565,-0.47879 -1.63934,0.84412,-1.21282,-1.79766,-0.90038,2.13523,-0.47831 -1.64004,0.84470,-1.21241,-1.79785,-0.90035,2.13481,-0.47783 -1.64073,0.84527,-1.21202,-1.79804,-0.90031,2.13440,-0.47736 -1.64143,0.84583,-1.21163,-1.79822,-0.90027,2.13400,-0.47690 -1.64212,0.84638,-1.21124,-1.79840,-0.90024,2.13360,-0.47644 -1.64282,0.84693,-1.21087,-1.79857,-0.90020,2.13321,-0.47600 -1.64351,0.84747,-1.21050,-1.79875,-0.90016,2.13282,-0.47556 -1.64421,0.84799,-1.21013,-1.79892,-0.90013,2.13244,-0.47512 -1.64490,0.84851,-1.20977,-1.79909,-0.90009,2.13207,-0.47469 -1.64560,0.84903,-1.20942,-1.79925,-0.90005,2.13170,-0.47427 -1.64629,0.84953,-1.20908,-1.79942,-0.90002,2.13133,-0.47386 -1.64699,0.85003,-1.20874,-1.79958,-0.89998,2.13097,-0.47345 -1.64768,0.85052,-1.20840,-1.79974,-0.89994,2.13062,-0.47305 -1.64837,0.85100,-1.20808,-1.79990,-0.89991,2.13027,-0.47265 -1.64907,0.85147,-1.20775,-1.80005,-0.89987,2.12993,-0.47226 -1.64976,0.85194,-1.20744,-1.80020,-0.89983,2.12959,-0.47188 -1.65046,0.85240,-1.20713,-1.80035,-0.89979,2.12925,-0.47150 -1.65115,0.85269,-1.20694,-1.80044,-0.89978,2.12904,-0.47127 -1.65185,0.85331,-1.20656,-1.80055,-0.89978,2.12860,-0.47077 -1.65254,0.85391,-1.20620,-1.80065,-0.89977,2.12817,-0.47027 -1.65324,0.85451,-1.20584,-1.80076,-0.89977,2.12774,-0.46979 -1.65393,0.85509,-1.20548,-1.80087,-0.89977,2.12731,-0.46931 -1.65463,0.85567,-1.20514,-1.80097,-0.89977,2.12690,-0.46884 -1.65532,0.85624,-1.20480,-1.80107,-0.89976,2.12649,-0.46838 -1.65602,0.85680,-1.20446,-1.80117,-0.89976,2.12608,-0.46792 -1.65671,0.85735,-1.20413,-1.80127,-0.89975,2.12568,-0.46747 -1.65740,0.85789,-1.20381,-1.80137,-0.89975,2.12529,-0.46703 -1.65810,0.85843,-1.20349,-1.80147,-0.89974,2.12490,-0.46660 -1.65879,0.85896,-1.20318,-1.80157,-0.89973,2.12452,-0.46617 -1.65949,0.85947,-1.20287,-1.80166,-0.89973,2.12415,-0.46575 -1.66018,0.85999,-1.20257,-1.80175,-0.89972,2.12378,-0.46533 -1.66088,0.86049,-1.20227,-1.80185,-0.89971,2.12341,-0.46492 -1.66157,0.86098,-1.20198,-1.80194,-0.89970,2.12305,-0.46452 -1.66227,0.86147,-1.20169,-1.80203,-0.89969,2.12270,-0.46412 -1.66296,0.86195,-1.20141,-1.80211,-0.89968,2.12235,-0.46373 -1.66366,0.86243,-1.20114,-1.80220,-0.89967,2.12200,-0.46335 -1.66435,0.86253,-1.20109,-1.80219,-0.89969,2.12193,-0.46327 -1.66505,0.86357,-1.20062,-1.80209,-0.89982,2.12119,-0.46243 -1.66574,0.86459,-1.20016,-1.80200,-0.89996,2.12045,-0.46161 -1.66644,0.86559,-1.19970,-1.80190,-0.90009,2.11973,-0.46081 -1.66713,0.86658,-1.19926,-1.80181,-0.90021,2.11902,-0.46001 -1.66782,0.86756,-1.19882,-1.80172,-0.90034,2.11832,-0.45923 -1.66852,0.86852,-1.19839,-1.80163,-0.90046,2.11763,-0.45846 -1.66921,0.86947,-1.19797,-1.80154,-0.90057,2.11694,-0.45771 -1.66991,0.87040,-1.19756,-1.80145,-0.90069,2.11627,-0.45696 -1.67060,0.87132,-1.19716,-1.80137,-0.90080,2.11561,-0.45623 -1.67130,0.87222,-1.19676,-1.80129,-0.90091,2.11496,-0.45551 -1.67199,0.87311,-1.19637,-1.80120,-0.90102,2.11432,-0.45480 -1.67269,0.87398,-1.19598,-1.80113,-0.90112,2.11368,-0.45410 -1.67338,0.87485,-1.19561,-1.80105,-0.90122,2.11306,-0.45341 -1.67408,0.87570,-1.19524,-1.80097,-0.90132,2.11245,-0.45274 -1.67477,0.87653,-1.19487,-1.80090,-0.90142,2.11184,-0.45207 -1.67547,0.87736,-1.19452,-1.80083,-0.90151,2.11124,-0.45141 -1.67616,0.87817,-1.19417,-1.80076,-0.90160,2.11066,-0.45077 -1.67685,0.87897,-1.19382,-1.80069,-0.90169,2.11008,-0.45013 -1.67755,0.87975,-1.19349,-1.80062,-0.90178,2.10950,-0.44951 -1.67824,0.88053,-1.19315,-1.80055,-0.90187,2.10894,-0.44889 -1.67894,0.88129,-1.19283,-1.80049,-0.90195,2.10839,-0.44829 -1.67963,0.88204,-1.19251,-1.80043,-0.90203,2.10784,-0.44769 -1.68033,0.88278,-1.19219,-1.80036,-0.90211,2.10730,-0.44711 -1.68102,0.88351,-1.19189,-1.80030,-0.90219,2.10677,-0.44653 -1.68172,0.88422,-1.19158,-1.80024,-0.90226,2.10625,-0.44596 -1.68241,0.88493,-1.19129,-1.80019,-0.90233,2.10574,-0.44540 -1.68311,0.88563,-1.19099,-1.80013,-0.90240,2.10523,-0.44485 -1.68380,0.88631,-1.19071,-1.80008,-0.90247,2.10473,-0.44431 -1.68450,0.88698,-1.19042,-1.80002,-0.90254,2.10424,-0.44378 -1.68519,0.88765,-1.19015,-1.79997,-0.90261,2.10375,-0.44325 -1.68588,0.88830,-1.18987,-1.79992,-0.90267,2.10328,-0.44274 -1.68658,0.88894,-1.18961,-1.79987,-0.90273,2.10281,-0.44223 -1.68727,0.88958,-1.18934,-1.79982,-0.90279,2.10234,-0.44173 -1.68797,0.89020,-1.18909,-1.79977,-0.90285,2.10189,-0.44124 -1.68866,0.89081,-1.18883,-1.79973,-0.90291,2.10144,-0.44075 -1.68936,0.89142,-1.18858,-1.79968,-0.90296,2.10099,-0.44028 -1.69005,0.89201,-1.18834,-1.79964,-0.90302,2.10056,-0.43981 -1.69075,0.89260,-1.18810,-1.79960,-0.90307,2.10013,-0.43935 -1.69144,0.89318,-1.18786,-1.79955,-0.90312,2.09970,-0.43889 -1.69214,0.89374,-1.18763,-1.79951,-0.90317,2.09929,-0.43844 -1.69283,0.89430,-1.18740,-1.79947,-0.90322,2.09888,-0.43800 -1.69353,0.89485,-1.18718,-1.79944,-0.90326,2.09847,-0.43757 -1.69422,0.89539,-1.18696,-1.79940,-0.90331,2.09807,-0.43714 -1.69492,0.89593,-1.18674,-1.79936,-0.90335,2.09768,-0.43672 -1.69561,0.89645,-1.18653,-1.79933,-0.90340,2.09729,-0.43631 -1.69630,0.89697,-1.18632,-1.79929,-0.90344,2.09691,-0.43590 -1.69700,0.89748,-1.18612,-1.79926,-0.90348,2.09654,-0.43550 -1.69769,0.89798,-1.18591,-1.79922,-0.90352,2.09617,-0.43511 -1.69839,0.89847,-1.18572,-1.79919,-0.90356,2.09580,-0.43472 -1.69908,0.89861,-1.18570,-1.79912,-0.90360,2.09571,-0.43462 -1.69978,0.89993,-1.18551,-1.79841,-0.90398,2.09475,-0.43359 -1.70047,0.90122,-1.18533,-1.79770,-0.90436,2.09381,-0.43258 -1.70117,0.90250,-1.18516,-1.79701,-0.90473,2.09288,-0.43159 -1.70186,0.90376,-1.18499,-1.79633,-0.90510,2.09197,-0.43062 -1.70256,0.90499,-1.18482,-1.79567,-0.90546,2.09107,-0.42966 -1.70325,0.90621,-1.18465,-1.79501,-0.90581,2.09018,-0.42872 -1.70395,0.90741,-1.18450,-1.79437,-0.90615,2.08931,-0.42779 -1.70464,0.90859,-1.18434,-1.79374,-0.90649,2.08845,-0.42688 -1.70533,0.90975,-1.18419,-1.79311,-0.90682,2.08760,-0.42598 -1.70603,0.91089,-1.18404,-1.79250,-0.90715,2.08676,-0.42510 -1.70672,0.91201,-1.18389,-1.79190,-0.90747,2.08594,-0.42424 -1.70742,0.91312,-1.18375,-1.79131,-0.90778,2.08513,-0.42338 -1.70811,0.91421,-1.18361,-1.79073,-0.90809,2.08434,-0.42255 -1.70881,0.91528,-1.18348,-1.79016,-0.90839,2.08355,-0.42172 -1.70950,0.91633,-1.18335,-1.78960,-0.90869,2.08278,-0.42091 -1.71020,0.91737,-1.18322,-1.78905,-0.90898,2.08202,-0.42012 -1.71089,0.91839,-1.18309,-1.78851,-0.90927,2.08127,-0.41933 -1.71159,0.91939,-1.18297,-1.78798,-0.90955,2.08053,-0.41856 -1.71228,0.92038,-1.18285,-1.78746,-0.90982,2.07980,-0.41781 -1.71298,0.92135,-1.18273,-1.78695,-0.91009,2.07909,-0.41706 -1.71367,0.92231,-1.18261,-1.78645,-0.91036,2.07838,-0.41633 -1.71437,0.92325,-1.18250,-1.78595,-0.91062,2.07769,-0.41561 -1.71506,0.92418,-1.18239,-1.78547,-0.91087,2.07701,-0.41490 -1.71575,0.92509,-1.18228,-1.78499,-0.91112,2.07633,-0.41420 -1.71645,0.92599,-1.18218,-1.78452,-0.91137,2.07567,-0.41352 -1.71714,0.92687,-1.18207,-1.78406,-0.91161,2.07502,-0.41284 -1.71784,0.92774,-1.18197,-1.78361,-0.91184,2.07438,-0.41218 -1.71853,0.92859,-1.18187,-1.78317,-0.91207,2.07374,-0.41153 -1.71923,0.92944,-1.18178,-1.78273,-0.91230,2.07312,-0.41089 -1.71992,0.93026,-1.18168,-1.78230,-0.91253,2.07251,-0.41026 -1.72062,0.93108,-1.18159,-1.78188,-0.91274,2.07190,-0.40964 -1.72131,0.93188,-1.18150,-1.78147,-0.91296,2.07131,-0.40903 -1.72201,0.93267,-1.18141,-1.78106,-0.91317,2.07073,-0.40843 -1.72270,0.93345,-1.18132,-1.78067,-0.91337,2.07015,-0.40784 -1.72340,0.93421,-1.18123,-1.78027,-0.91358,2.06958,-0.40726 -1.72409,0.93496,-1.18115,-1.77989,-0.91378,2.06902,-0.40669 -1.72478,0.93570,-1.18107,-1.77951,-0.91397,2.06847,-0.40612 -1.72548,0.93643,-1.18099,-1.77914,-0.91416,2.06793,-0.40557 -1.72617,0.93715,-1.18091,-1.77878,-0.91435,2.06740,-0.40503 -1.72687,0.93785,-1.18083,-1.77842,-0.91453,2.06687,-0.40449 -1.72756,0.93854,-1.18075,-1.77807,-0.91471,2.06636,-0.40397 -1.72826,0.93923,-1.18068,-1.77773,-0.91489,2.06585,-0.40345 -1.72895,0.93990,-1.18061,-1.77739,-0.91506,2.06535,-0.40294 -1.72965,0.94056,-1.18054,-1.77706,-0.91523,2.06486,-0.40244 -1.73034,0.94121,-1.18046,-1.77673,-0.91540,2.06437,-0.40195 -1.73104,0.94185,-1.18040,-1.77641,-0.91556,2.06389,-0.40147 -1.73173,0.94248,-1.18033,-1.77610,-0.91572,2.06342,-0.40099 -1.73243,0.94310,-1.18026,-1.77579,-0.91588,2.06296,-0.40052 -1.73312,0.94371,-1.18020,-1.77548,-0.91603,2.06250,-0.40006 -1.73381,0.94431,-1.18013,-1.77519,-0.91619,2.06205,-0.39961 -1.73451,0.94490,-1.18007,-1.77489,-0.91633,2.06161,-0.39916 -1.73520,0.94548,-1.18001,-1.77461,-0.91648,2.06118,-0.39873 -1.73590,0.94605,-1.17995,-1.77433,-0.91662,2.06075,-0.39830 -1.73659,0.94662,-1.17989,-1.77405,-0.91676,2.06033,-0.39787 -1.73729,0.94717,-1.17983,-1.77378,-0.91690,2.05991,-0.39745 -1.73798,0.94771,-1.17977,-1.77351,-0.91703,2.05950,-0.39704 -1.73868,0.94825,-1.17972,-1.77325,-0.91717,2.05910,-0.39664 -1.73937,0.94878,-1.17966,-1.77299,-0.91729,2.05870,-0.39624 -1.74007,0.94930,-1.17961,-1.77274,-0.91742,2.05831,-0.39585 -1.74076,0.94981,-1.17955,-1.77249,-0.91755,2.05793,-0.39547 -1.74146,0.95031,-1.17950,-1.77225,-0.91767,2.05755,-0.39509 -1.74215,0.95081,-1.17945,-1.77201,-0.91779,2.05718,-0.39472 -1.74285,0.95129,-1.17940,-1.77178,-0.91790,2.05681,-0.39435 -1.74354,0.95177,-1.17935,-1.77155,-0.91802,2.05645,-0.39399 -1.74423,0.95224,-1.17930,-1.77132,-0.91813,2.05610,-0.39364 -1.74493,0.95271,-1.17925,-1.77110,-0.91824,2.05575,-0.39329 -1.74562,0.95284,-1.17925,-1.77101,-0.91828,2.05565,-0.39319 -1.74632,0.95368,-1.17931,-1.77036,-0.91860,2.05502,-0.39256 -1.74701,0.95451,-1.17936,-1.76971,-0.91890,2.05441,-0.39194 -1.74771,0.95532,-1.17941,-1.76907,-0.91921,2.05380,-0.39134 -1.74840,0.95612,-1.17946,-1.76845,-0.91950,2.05321,-0.39074 -1.74910,0.95691,-1.17952,-1.76784,-0.91979,2.05262,-0.39015 -1.74979,0.95769,-1.17957,-1.76723,-0.92008,2.05204,-0.38958 -1.75049,0.95845,-1.17962,-1.76664,-0.92036,2.05147,-0.38901 -1.75118,0.95920,-1.17967,-1.76606,-0.92064,2.05091,-0.38845 -1.75188,0.95994,-1.17972,-1.76549,-0.92091,2.05036,-0.38790 -1.75257,0.96066,-1.17976,-1.76493,-0.92118,2.04982,-0.38736 -1.75326,0.96138,-1.17981,-1.76438,-0.92144,2.04928,-0.38683 -1.75396,0.96208,-1.17986,-1.76383,-0.92169,2.04876,-0.38631 -1.75465,0.96277,-1.17991,-1.76330,-0.92195,2.04824,-0.38580 -1.75535,0.96345,-1.17995,-1.76278,-0.92219,2.04773,-0.38530 -1.75604,0.96412,-1.18000,-1.76227,-0.92244,2.04723,-0.38480 -1.75674,0.96477,-1.18004,-1.76176,-0.92268,2.04674,-0.38431 -1.75743,0.96542,-1.18009,-1.76127,-0.92291,2.04625,-0.38383 -1.75813,0.96606,-1.18013,-1.76078,-0.92314,2.04578,-0.38336 -1.75882,0.96668,-1.18017,-1.76030,-0.92337,2.04531,-0.38290 -1.75952,0.96730,-1.18022,-1.75983,-0.92359,2.04485,-0.38244 -1.76021,0.96790,-1.18026,-1.75937,-0.92381,2.04439,-0.38200 -1.76091,0.96850,-1.18030,-1.75892,-0.92402,2.04394,-0.38156 -1.76160,0.96908,-1.18034,-1.75847,-0.92423,2.04350,-0.38112 -1.76230,0.96966,-1.18038,-1.75803,-0.92444,2.04307,-0.38070 -1.76299,0.97023,-1.18042,-1.75760,-0.92464,2.04264,-0.38028 -1.76368,0.97079,-1.18046,-1.75718,-0.92484,2.04222,-0.37987 -1.76438,0.97133,-1.18050,-1.75677,-0.92504,2.04181,-0.37946 -1.76507,0.97187,-1.18054,-1.75636,-0.92523,2.04140,-0.37906 -1.76577,0.97240,-1.18057,-1.75596,-0.92542,2.04100,-0.37867 -1.76646,0.97293,-1.18061,-1.75557,-0.92560,2.04061,-0.37829 -1.76716,0.97344,-1.18065,-1.75518,-0.92578,2.04022,-0.37791 -1.76785,0.97394,-1.18068,-1.75480,-0.92596,2.03984,-0.37754 -1.76855,0.97444,-1.18072,-1.75443,-0.92614,2.03947,-0.37717 -1.76924,0.97493,-1.18075,-1.75406,-0.92631,2.03910,-0.37681 -1.76994,0.97541,-1.18078,-1.75370,-0.92648,2.03873,-0.37646 -1.77063,0.97588,-1.18082,-1.75335,-0.92664,2.03837,-0.37611 -1.77133,0.97635,-1.18085,-1.75300,-0.92681,2.03802,-0.37577 -1.77202,0.97681,-1.18088,-1.75266,-0.92697,2.03768,-0.37543 -1.77271,0.97726,-1.18091,-1.75233,-0.92712,2.03734,-0.37510 -1.77341,0.97770,-1.18094,-1.75200,-0.92728,2.03700,-0.37477 -1.77410,0.97813,-1.18097,-1.75168,-0.92743,2.03667,-0.37445 -1.77480,0.97856,-1.18100,-1.75136,-0.92758,2.03635,-0.37414 -1.77549,0.97898,-1.18103,-1.75105,-0.92772,2.03603,-0.37383 -1.77619,0.97926,-1.18107,-1.75081,-0.92783,2.03582,-0.37362 -1.77688,0.97994,-1.18133,-1.74997,-0.92820,2.03531,-0.37313 -1.77758,0.98060,-1.18159,-1.74914,-0.92855,2.03481,-0.37264 -1.77827,0.98126,-1.18184,-1.74832,-0.92891,2.03432,-0.37216 -1.77897,0.98190,-1.18209,-1.74752,-0.92925,2.03383,-0.37169 -1.77966,0.98253,-1.18233,-1.74673,-0.92959,2.03336,-0.37123 -1.78036,0.98315,-1.18257,-1.74595,-0.92993,2.03289,-0.37078 -1.78105,0.98376,-1.18280,-1.74519,-0.93026,2.03243,-0.37033 -1.78174,0.98437,-1.18303,-1.74444,-0.93058,2.03198,-0.36990 -1.78244,0.98496,-1.18326,-1.74371,-0.93090,2.03154,-0.36947 -1.78313,0.98553,-1.18348,-1.74298,-0.93121,2.03110,-0.36904 -1.78383,0.98611,-1.18370,-1.74227,-0.93152,2.03067,-0.36863 -1.78452,0.98667,-1.18392,-1.74158,-0.93182,2.03025,-0.36822 -1.78522,0.98722,-1.18413,-1.74089,-0.93211,2.02983,-0.36782 -1.78591,0.98776,-1.18434,-1.74022,-0.93241,2.02942,-0.36742 -1.78661,0.98829,-1.18455,-1.73955,-0.93269,2.02902,-0.36704 -1.78730,0.98881,-1.18475,-1.73890,-0.93298,2.02862,-0.36666 -1.78800,0.98933,-1.18495,-1.73826,-0.93325,2.02824,-0.36628 -1.78869,0.98983,-1.18514,-1.73763,-0.93353,2.02785,-0.36592 -1.78939,0.99033,-1.18534,-1.73702,-0.93379,2.02748,-0.36555 -1.79008,0.99082,-1.18552,-1.73641,-0.93406,2.02711,-0.36520 -1.79078,0.99130,-1.18571,-1.73581,-0.93432,2.02674,-0.36485 -1.79147,0.99177,-1.18589,-1.73523,-0.93457,2.02639,-0.36451 -1.79216,0.99224,-1.18607,-1.73465,-0.93482,2.02603,-0.36417 -1.79286,0.99269,-1.18625,-1.73408,-0.93507,2.02569,-0.36384 -1.79355,0.99314,-1.18642,-1.73353,-0.93531,2.02535,-0.36351 -1.79425,0.99358,-1.18659,-1.73298,-0.93555,2.02501,-0.36319 -1.79494,0.99401,-1.18676,-1.73244,-0.93578,2.02468,-0.36288 -1.79564,0.99444,-1.18693,-1.73192,-0.93601,2.02436,-0.36257 -1.79633,0.99486,-1.18709,-1.73140,-0.93624,2.02404,-0.36227 -1.79703,0.99527,-1.18725,-1.73089,-0.93646,2.02373,-0.36197 -1.79772,0.99568,-1.18740,-1.73039,-0.93668,2.02342,-0.36168 -1.79842,0.99607,-1.18756,-1.72990,-0.93689,2.02312,-0.36139 -1.79911,0.99647,-1.18771,-1.72941,-0.93710,2.02282,-0.36110 -1.79981,0.99685,-1.18786,-1.72894,-0.93731,2.02253,-0.36083 -1.80050,0.99723,-1.18800,-1.72847,-0.93751,2.02224,-0.36055 -1.80119,0.99760,-1.18815,-1.72801,-0.93771,2.02196,-0.36028 -1.80189,0.99797,-1.18829,-1.72756,-0.93791,2.02168,-0.36002 -1.80258,0.99833,-1.18843,-1.72712,-0.93810,2.02141,-0.35976 -1.80328,0.99868,-1.18856,-1.72669,-0.93829,2.02114,-0.35950 -1.80397,0.99903,-1.18870,-1.72626,-0.93848,2.02087,-0.35925 -1.80467,0.99937,-1.18883,-1.72584,-0.93866,2.02061,-0.35901 -1.80536,0.99970,-1.18896,-1.72543,-0.93884,2.02035,-0.35876 -1.80606,0.99991,-1.18906,-1.72513,-0.93897,2.02020,-0.35861 -1.80675,1.00031,-1.18946,-1.72427,-0.93931,2.01990,-0.35833 -1.80745,1.00069,-1.18985,-1.72342,-0.93965,2.01960,-0.35805 -1.80814,1.00108,-1.19023,-1.72258,-0.93998,2.01931,-0.35777 -1.80884,1.00145,-1.19061,-1.72176,-0.94031,2.01903,-0.35750 -1.80953,1.00182,-1.19098,-1.72095,-0.94063,2.01875,-0.35724 -1.81023,1.00218,-1.19135,-1.72015,-0.94095,2.01847,-0.35698 -1.81092,1.00253,-1.19171,-1.71937,-0.94126,2.01820,-0.35672 -1.81161,1.00288,-1.19206,-1.71860,-0.94157,2.01794,-0.35647 -1.81231,1.00323,-1.19240,-1.71785,-0.94187,2.01767,-0.35622 -1.81300,1.00356,-1.19274,-1.71711,-0.94217,2.01742,-0.35598 -1.81370,1.00389,-1.19308,-1.71638,-0.94246,2.01717,-0.35574 -1.81439,1.00422,-1.19341,-1.71566,-0.94275,2.01692,-0.35551 -1.81509,1.00453,-1.19373,-1.71496,-0.94303,2.01668,-0.35528 -1.81578,1.00485,-1.19405,-1.71426,-0.94331,2.01644,-0.35506 -1.81648,1.00515,-1.19436,-1.71358,-0.94359,2.01620,-0.35484 -1.81717,1.00546,-1.19467,-1.71291,-0.94386,2.01597,-0.35462 -1.81787,1.00575,-1.19497,-1.71226,-0.94412,2.01575,-0.35441 -1.81856,1.00604,-1.19527,-1.71161,-0.94438,2.01553,-0.35420 -1.81926,1.00633,-1.19556,-1.71097,-0.94464,2.01531,-0.35399 -1.81995,1.00661,-1.19584,-1.71035,-0.94490,2.01509,-0.35379 -1.82064,1.00688,-1.19612,-1.70973,-0.94514,2.01488,-0.35359 -1.82134,1.00715,-1.19640,-1.70913,-0.94539,2.01468,-0.35340 -1.82203,1.00742,-1.19667,-1.70854,-0.94563,2.01447,-0.35321 -1.82273,1.00768,-1.19694,-1.70795,-0.94587,2.01427,-0.35302 -1.82342,1.00794,-1.19720,-1.70738,-0.94610,2.01408,-0.35284 -1.82412,1.00819,-1.19746,-1.70682,-0.94633,2.01388,-0.35266 -1.82481,1.00844,-1.19771,-1.70627,-0.94656,2.01369,-0.35248 -1.82551,1.00868,-1.19796,-1.70572,-0.94678,2.01351,-0.35231 -1.82620,1.00892,-1.19821,-1.70519,-0.94700,2.01332,-0.35214 -1.82690,1.00915,-1.19845,-1.70466,-0.94721,2.01314,-0.35197 -1.82759,1.00938,-1.19868,-1.70414,-0.94742,2.01297,-0.35180 -1.82829,1.00961,-1.19892,-1.70364,-0.94763,2.01279,-0.35164 -1.82898,1.00983,-1.19914,-1.70314,-0.94784,2.01262,-0.35148 -1.82967,1.01005,-1.19939,-1.70261,-0.94805,2.01246,-0.35133 -1.83037,1.01027,-1.19985,-1.70177,-0.94837,2.01229,-0.35117 -1.83106,1.01048,-1.20029,-1.70094,-0.94869,2.01212,-0.35102 -1.83176,1.01069,-1.20073,-1.70012,-0.94901,2.01196,-0.35087 -1.83245,1.01090,-1.20116,-1.69932,-0.94931,2.01181,-0.35072 -1.83315,1.01110,-1.20158,-1.69853,-0.94962,2.01165,-0.35058 -1.83384,1.01130,-1.20200,-1.69775,-0.94992,2.01150,-0.35043 -1.83454,1.01149,-1.20241,-1.69699,-0.95021,2.01135,-0.35029 -1.83523,1.01168,-1.20281,-1.69624,-0.95050,2.01120,-0.35016 -1.83593,1.01187,-1.20320,-1.69550,-0.95079,2.01106,-0.35002 -1.83662,1.01205,-1.20359,-1.69478,-0.95107,2.01092,-0.34989 -1.83732,1.01223,-1.20397,-1.69407,-0.95135,2.01078,-0.34977 -1.83801,1.01241,-1.20434,-1.69337,-0.95162,2.01064,-0.34964 -1.83871,1.01258,-1.20471,-1.69268,-0.95189,2.01051,-0.34952 -1.83940,1.01275,-1.20507,-1.69200,-0.95215,2.01038,-0.34940 -1.84009,1.01292,-1.20543,-1.69134,-0.95241,2.01025,-0.34928 -1.84079,1.01308,-1.20578,-1.69068,-0.95267,2.01013,-0.34916 -1.84148,1.01324,-1.20612,-1.69004,-0.95292,2.01000,-0.34905 -1.84218,1.01340,-1.20646,-1.68941,-0.95317,2.00988,-0.34893 -1.84287,1.01355,-1.20679,-1.68879,-0.95341,2.00976,-0.34883 -1.84357,1.01370,-1.20712,-1.68817,-0.95365,2.00965,-0.34872 -1.84426,1.01385,-1.20744,-1.68757,-0.95389,2.00953,-0.34861 -1.84496,1.01399,-1.20775,-1.68698,-0.95412,2.00942,-0.34851 -1.84565,1.01414,-1.20806,-1.68640,-0.95435,2.00931,-0.34841 -1.84635,1.01428,-1.20836,-1.68583,-0.95458,2.00920,-0.34831 -1.84704,1.01441,-1.20866,-1.68527,-0.95480,2.00910,-0.34821 -1.84774,1.01455,-1.20895,-1.68472,-0.95502,2.00899,-0.34812 -1.84843,1.01468,-1.20924,-1.68418,-0.95524,2.00889,-0.34802 -1.84912,1.01481,-1.20953,-1.68365,-0.95545,2.00879,-0.34793 -1.84982,1.01484,-1.20964,-1.68344,-0.95553,2.00877,-0.34791 -1.85051,1.01487,-1.21023,-1.68250,-0.95587,2.00874,-0.34789 -1.85121,1.01491,-1.21082,-1.68157,-0.95620,2.00871,-0.34786 -1.85190,1.01494,-1.21139,-1.68065,-0.95654,2.00868,-0.34784 -1.85260,1.01497,-1.21195,-1.67975,-0.95687,2.00865,-0.34781 -1.85329,1.01501,-1.21250,-1.67886,-0.95719,2.00863,-0.34779 -1.85399,1.01504,-1.21304,-1.67799,-0.95751,2.00860,-0.34777 -1.85468,1.01506,-1.21357,-1.67713,-0.95782,2.00858,-0.34775 -1.85538,1.01509,-1.21410,-1.67629,-0.95813,2.00855,-0.34773 -1.85607,1.01512,-1.21461,-1.67546,-0.95843,2.00853,-0.34771 -1.85677,1.01514,-1.21512,-1.67465,-0.95873,2.00851,-0.34769 -1.85746,1.01517,-1.21562,-1.67385,-0.95903,2.00849,-0.34767 -1.85816,1.01519,-1.21610,-1.67306,-0.95932,2.00847,-0.34766 -1.85885,1.01522,-1.21658,-1.67229,-0.95961,2.00845,-0.34764 -1.85954,1.01524,-1.21706,-1.67152,-0.95989,2.00843,-0.34763 -1.86024,1.01526,-1.21752,-1.67077,-0.96017,2.00841,-0.34761 -1.86093,1.01528,-1.21797,-1.67004,-0.96045,2.00840,-0.34760 -1.86163,1.01530,-1.21842,-1.66931,-0.96072,2.00838,-0.34758 -1.86232,1.01532,-1.21886,-1.66860,-0.96098,2.00836,-0.34757 -1.86302,1.01533,-1.21929,-1.66790,-0.96125,2.00835,-0.34756 -1.86371,1.01535,-1.21972,-1.66721,-0.96150,2.00833,-0.34755 -1.86441,1.01537,-1.22014,-1.66653,-0.96176,2.00832,-0.34754 -1.86510,1.01538,-1.22055,-1.66587,-0.96201,2.00831,-0.34753 -1.86580,1.01540,-1.22095,-1.66521,-0.96226,2.00829,-0.34752 -1.86649,1.01541,-1.22135,-1.66457,-0.96250,2.00828,-0.34751 -1.86719,1.01542,-1.22174,-1.66394,-0.96274,2.00827,-0.34750 -1.86788,1.01544,-1.22212,-1.66331,-0.96298,2.00826,-0.34749 -1.86857,1.01545,-1.22250,-1.66270,-0.96321,2.00825,-0.34748 -1.86927,1.01546,-1.22287,-1.66210,-0.96344,2.00824,-0.34748 -1.86996,1.01547,-1.22323,-1.66151,-0.96367,2.00823,-0.34747 -1.87066,1.01548,-1.22359,-1.66093,-0.96389,2.00822,-0.34746 -1.87135,1.01549,-1.22394,-1.66035,-0.96411,2.00821,-0.34746 -1.87205,1.01550,-1.22428,-1.65979,-0.96433,2.00820,-0.34745 -1.87274,1.01550,-1.22459,-1.65930,-0.96452,2.00820,-0.34746 -1.87344,1.01539,-1.22528,-1.65827,-0.96488,2.00828,-0.34753 -1.87413,1.01529,-1.22596,-1.65727,-0.96524,2.00835,-0.34760 -1.87483,1.01519,-1.22662,-1.65628,-0.96559,2.00842,-0.34767 -1.87552,1.01510,-1.22727,-1.65530,-0.96594,2.00850,-0.34774 -1.87622,1.01500,-1.22792,-1.65434,-0.96628,2.00857,-0.34781 -1.87691,1.01490,-1.22855,-1.65340,-0.96662,2.00864,-0.34788 -1.87760,1.01481,-1.22917,-1.65247,-0.96695,2.00871,-0.34795 -1.87830,1.01471,-1.22978,-1.65156,-0.96728,2.00878,-0.34802 -1.87899,1.01462,-1.23038,-1.65066,-0.96761,2.00885,-0.34808 -1.87969,1.01453,-1.23097,-1.64978,-0.96793,2.00892,-0.34815 -1.88038,1.01444,-1.23154,-1.64891,-0.96824,2.00898,-0.34822 -1.88108,1.01435,-1.23211,-1.64806,-0.96856,2.00905,-0.34828 -1.88177,1.01426,-1.23267,-1.64722,-0.96886,2.00912,-0.34835 -1.88247,1.01417,-1.23322,-1.64639,-0.96916,2.00918,-0.34841 -1.88316,1.01408,-1.23376,-1.64558,-0.96946,2.00925,-0.34847 -1.88386,1.01399,-1.23429,-1.64478,-0.96976,2.00931,-0.34854 -1.88455,1.01391,-1.23481,-1.64399,-0.97005,2.00938,-0.34860 -1.88525,1.01382,-1.23533,-1.64322,-0.97033,2.00944,-0.34866 -1.88594,1.01374,-1.23583,-1.64246,-0.97062,2.00950,-0.34872 -1.88664,1.01366,-1.23632,-1.64171,-0.97089,2.00956,-0.34878 -1.88733,1.01357,-1.23681,-1.64098,-0.97117,2.00962,-0.34884 -1.88802,1.01349,-1.23729,-1.64025,-0.97144,2.00968,-0.34890 -1.88872,1.01341,-1.23776,-1.63954,-0.97170,2.00974,-0.34896 -1.88941,1.01333,-1.23822,-1.63884,-0.97197,2.00980,-0.34902 -1.89011,1.01326,-1.23867,-1.63815,-0.97222,2.00986,-0.34908 -1.89080,1.01318,-1.23912,-1.63748,-0.97248,2.00992,-0.34913 -1.89150,1.01310,-1.23956,-1.63681,-0.97273,2.00998,-0.34919 -1.89219,1.01303,-1.23999,-1.63615,-0.97298,2.01003,-0.34924 -1.89289,1.01295,-1.24041,-1.63551,-0.97322,2.01009,-0.34930 -1.89358,1.01288,-1.24083,-1.63488,-0.97346,2.01015,-0.34935 -1.89428,1.01280,-1.24124,-1.63425,-0.97370,2.01020,-0.34941 -1.89497,1.01273,-1.24164,-1.63364,-0.97393,2.01026,-0.34946 -1.89567,1.01266,-1.24204,-1.63304,-0.97417,2.01031,-0.34952 -1.89636,1.01259,-1.24243,-1.63245,-0.97439,2.01036,-0.34957 -1.89705,1.01252,-1.24281,-1.63186,-0.97462,2.01042,-0.34962 -1.89775,1.01245,-1.24318,-1.63129,-0.97484,2.01047,-0.34967 -1.89844,1.01238,-1.24355,-1.63073,-0.97505,2.01052,-0.34972 -1.89914,1.01232,-1.24378,-1.63040,-0.97518,2.01056,-0.34976 -1.89983,1.01205,-1.24455,-1.62933,-0.97554,2.01077,-0.34996 -1.90053,1.01177,-1.24532,-1.62829,-0.97590,2.01097,-0.35016 -1.90122,1.01150,-1.24607,-1.62726,-0.97626,2.01118,-0.35035 -1.90192,1.01124,-1.24681,-1.62624,-0.97661,2.01137,-0.35054 -1.90261,1.01098,-1.24753,-1.62525,-0.97696,2.01157,-0.35073 -1.90331,1.01072,-1.24824,-1.62427,-0.97730,2.01176,-0.35091 -1.90400,1.01047,-1.24894,-1.62330,-0.97764,2.01195,-0.35109 -1.90470,1.01022,-1.24963,-1.62236,-0.97798,2.01214,-0.35127 -1.90539,1.00997,-1.25031,-1.62142,-0.97830,2.01232,-0.35145 -1.90609,1.00973,-1.25097,-1.62050,-0.97863,2.01251,-0.35162 -1.90678,1.00949,-1.25163,-1.61960,-0.97895,2.01268,-0.35179 -1.90747,1.00926,-1.25227,-1.61871,-0.97927,2.01286,-0.35196 -1.90817,1.00902,-1.25290,-1.61784,-0.97958,2.01304,-0.35213 -1.90886,1.00880,-1.25352,-1.61698,-0.97989,2.01321,-0.35230 -1.90956,1.00857,-1.25413,-1.61613,-0.98019,2.01338,-0.35246 -1.91025,1.00835,-1.25473,-1.61530,-0.98049,2.01354,-0.35262 -1.91095,1.00813,-1.25532,-1.61448,-0.98079,2.01371,-0.35278 -1.91164,1.00792,-1.25590,-1.61367,-0.98108,2.01387,-0.35293 -1.91234,1.00770,-1.25647,-1.61288,-0.98137,2.01403,-0.35309 -1.91303,1.00750,-1.25703,-1.61210,-0.98165,2.01419,-0.35324 -1.91373,1.00729,-1.25758,-1.61133,-0.98193,2.01434,-0.35339 -1.91442,1.00709,-1.25812,-1.61058,-0.98221,2.01449,-0.35353 -1.91512,1.00689,-1.25865,-1.60983,-0.98248,2.01465,-0.35368 -1.91581,1.00669,-1.25917,-1.60910,-0.98275,2.01479,-0.35382 -1.91650,1.00650,-1.25968,-1.60838,-0.98302,2.01494,-0.35396 -1.91720,1.00631,-1.26019,-1.60768,-0.98328,2.01508,-0.35410 -1.91789,1.00612,-1.26068,-1.60698,-0.98354,2.01523,-0.35424 -1.91859,1.00593,-1.26117,-1.60630,-0.98379,2.01537,-0.35437 -1.91928,1.00575,-1.26165,-1.60562,-0.98405,2.01551,-0.35451 -1.91998,1.00557,-1.26212,-1.60496,-0.98429,2.01564,-0.35464 -1.92067,1.00539,-1.26258,-1.60431,-0.98454,2.01578,-0.35477 -1.92137,1.00522,-1.26304,-1.60367,-0.98478,2.01591,-0.35490 -1.92206,1.00504,-1.26349,-1.60304,-0.98502,2.01604,-0.35502 -1.92276,1.00487,-1.26392,-1.60242,-0.98525,2.01617,-0.35515 -1.92345,1.00471,-1.26436,-1.60181,-0.98548,2.01629,-0.35527 -1.92415,1.00454,-1.26478,-1.60120,-0.98571,2.01642,-0.35539 -1.92484,1.00438,-1.26520,-1.60061,-0.98594,2.01654,-0.35551 -1.92553,1.00422,-1.26561,-1.60003,-0.98616,2.01666,-0.35563 -1.92623,1.00406,-1.26601,-1.59946,-0.98638,2.01678,-0.35574 -1.92692,1.00391,-1.26641,-1.59890,-0.98660,2.01690,-0.35586 -1.92762,1.00375,-1.26680,-1.59834,-0.98681,2.01702,-0.35597 -1.92831,1.00357,-1.26719,-1.59782,-0.98700,2.01716,-0.35610 -1.92901,1.00280,-1.26838,-1.59643,-0.98743,2.01773,-0.35666 -1.92970,1.00204,-1.26954,-1.59507,-0.98785,2.01830,-0.35720 -1.93040,1.00130,-1.27069,-1.59372,-0.98827,2.01886,-0.35773 -1.93109,1.00056,-1.27182,-1.59240,-0.98869,2.01940,-0.35826 -1.93179,0.99984,-1.27293,-1.59109,-0.98910,2.01994,-0.35877 -1.93248,0.99914,-1.27402,-1.58981,-0.98951,2.02047,-0.35928 -1.93318,0.99844,-1.27509,-1.58854,-0.98991,2.02099,-0.35978 -1.93387,0.99776,-1.27614,-1.58730,-0.99031,2.02150,-0.36028 -1.93457,0.99709,-1.27718,-1.58607,-0.99071,2.02201,-0.36076 -1.93526,0.99643,-1.27820,-1.58486,-0.99110,2.02250,-0.36124 -1.93595,0.99578,-1.27920,-1.58368,-0.99148,2.02299,-0.36170 -1.93665,0.99514,-1.28018,-1.58251,-0.99187,2.02347,-0.36217 -1.93734,0.99451,-1.28115,-1.58135,-0.99224,2.02394,-0.36262 -1.93804,0.99390,-1.28210,-1.58022,-0.99262,2.02440,-0.36307 -1.93873,0.99329,-1.28303,-1.57910,-0.99299,2.02485,-0.36351 -1.93943,0.99269,-1.28395,-1.57800,-0.99335,2.02530,-0.36394 -1.94012,0.99211,-1.28485,-1.57692,-0.99371,2.02574,-0.36436 -1.94082,0.99153,-1.28574,-1.57586,-0.99407,2.02617,-0.36478 -1.94151,0.99097,-1.28661,-1.57481,-0.99443,2.02660,-0.36519 -1.94221,0.99041,-1.28746,-1.57378,-0.99478,2.02701,-0.36560 -1.94290,0.98986,-1.28831,-1.57276,-0.99512,2.02743,-0.36600 -1.94360,0.98932,-1.28913,-1.57176,-0.99546,2.02783,-0.36639 -1.94429,0.98879,-1.28995,-1.57078,-0.99580,2.02823,-0.36678 -1.94498,0.98827,-1.29075,-1.56981,-0.99614,2.02862,-0.36716 -1.94568,0.98776,-1.29153,-1.56885,-0.99647,2.02900,-0.36753 -1.94637,0.98726,-1.29230,-1.56791,-0.99679,2.02938,-0.36790 -1.94707,0.98676,-1.29306,-1.56699,-0.99711,2.02976,-0.36826 -1.94776,0.98628,-1.29381,-1.56608,-0.99743,2.03012,-0.36862 -1.94846,0.98580,-1.29454,-1.56518,-0.99775,2.03048,-0.36897 -1.94915,0.98533,-1.29527,-1.56430,-0.99806,2.03084,-0.36931 -1.94985,0.98486,-1.29597,-1.56343,-0.99837,2.03118,-0.36965 -1.95054,0.98441,-1.29667,-1.56258,-0.99867,2.03153,-0.36999 -1.95124,0.98396,-1.29736,-1.56174,-0.99897,2.03187,-0.37032 -1.95193,0.98352,-1.29803,-1.56091,-0.99927,2.03220,-0.37064 -1.95263,0.98309,-1.29869,-1.56009,-0.99956,2.03252,-0.37096 -1.95332,0.98266,-1.29934,-1.55929,-0.99985,2.03284,-0.37127 -1.95402,0.98224,-1.29998,-1.55850,-1.00014,2.03316,-0.37158 -1.95471,0.98183,-1.30061,-1.55773,-1.00042,2.03347,-0.37189 -1.95540,0.98142,-1.30123,-1.55696,-1.00070,2.03378,-0.37219 -1.95610,0.98103,-1.30184,-1.55621,-1.00097,2.03408,-0.37248 -1.95679,0.98063,-1.30244,-1.55547,-1.00124,2.03437,-0.37277 -1.95749,0.98025,-1.30302,-1.55474,-1.00151,2.03467,-0.37306 -1.95818,0.97987,-1.30360,-1.55402,-1.00178,2.03495,-0.37334 -1.95888,0.97949,-1.30417,-1.55331,-1.00204,2.03523,-0.37362 -1.95957,0.97913,-1.30473,-1.55262,-1.00230,2.03551,-0.37389 -1.96027,0.97877,-1.30527,-1.55193,-1.00256,2.03578,-0.37416 -1.96096,0.97841,-1.30581,-1.55126,-1.00281,2.03605,-0.37442 -1.96166,0.97806,-1.30634,-1.55059,-1.00306,2.03632,-0.37468 -1.96235,0.97772,-1.30686,-1.54994,-1.00330,2.03658,-0.37494 -1.96305,0.97738,-1.30738,-1.54930,-1.00355,2.03683,-0.37519 -1.96374,0.97705,-1.30788,-1.54867,-1.00379,2.03709,-0.37543 -1.96443,0.97672,-1.30837,-1.54804,-1.00402,2.03733,-0.37568 -1.96513,0.97640,-1.30886,-1.54743,-1.00426,2.03758,-0.37592 -1.96582,0.97608,-1.30934,-1.54683,-1.00449,2.03782,-0.37616 -1.96652,0.97577,-1.30981,-1.54623,-1.00472,2.03805,-0.37639 -1.96721,0.97546,-1.31027,-1.54565,-1.00494,2.03829,-0.37662 -1.96791,0.97516,-1.31073,-1.54508,-1.00517,2.03851,-0.37684 -1.96860,0.97486,-1.31117,-1.54451,-1.00538,2.03874,-0.37706 -1.96930,0.97457,-1.31161,-1.54395,-1.00560,2.03896,-0.37728 -1.96999,0.97428,-1.31204,-1.54340,-1.00582,2.03918,-0.37750 -1.97069,0.97400,-1.31247,-1.54286,-1.00603,2.03939,-0.37771 -1.97138,0.97372,-1.31289,-1.54233,-1.00624,2.03960,-0.37792 -1.97208,0.97345,-1.31330,-1.54181,-1.00644,2.03981,-0.37812 -1.97277,0.97318,-1.31370,-1.54130,-1.00664,2.04002,-0.37833 -1.97346,0.97291,-1.31410,-1.54079,-1.00684,2.04022,-0.37852 -1.97416,0.97265,-1.31449,-1.54029,-1.00704,2.04042,-0.37872 -1.97485,0.97251,-1.31469,-1.54005,-1.00713,2.04052,-0.37883 -1.97555,0.97188,-1.31554,-1.53907,-1.00746,2.04100,-0.37929 -1.97624,0.97126,-1.31638,-1.53812,-1.00778,2.04146,-0.37975 -1.97694,0.97064,-1.31721,-1.53717,-1.00810,2.04192,-0.38020 -1.97763,0.97004,-1.31802,-1.53625,-1.00841,2.04237,-0.38065 -1.97833,0.96945,-1.31881,-1.53533,-1.00872,2.04281,-0.38109 -1.97902,0.96887,-1.31960,-1.53443,-1.00903,2.04324,-0.38152 -1.97972,0.96830,-1.32037,-1.53355,-1.00933,2.04367,-0.38194 -1.98041,0.96774,-1.32113,-1.53268,-1.00963,2.04409,-0.38236 -1.98111,0.96718,-1.32187,-1.53182,-1.00993,2.04451,-0.38277 -1.98180,0.96664,-1.32260,-1.53097,-1.01022,2.04491,-0.38317 -1.98250,0.96611,-1.32332,-1.53014,-1.01052,2.04531,-0.38357 -1.98319,0.96558,-1.32403,-1.52932,-1.01080,2.04570,-0.38396 -1.98388,0.96507,-1.32473,-1.52851,-1.01109,2.04609,-0.38434 -1.98458,0.96456,-1.32541,-1.52772,-1.01137,2.04647,-0.38472 -1.98527,0.96406,-1.32608,-1.52693,-1.01165,2.04684,-0.38509 -1.98597,0.96357,-1.32674,-1.52616,-1.01192,2.04721,-0.38545 -1.98666,0.96309,-1.32739,-1.52540,-1.01219,2.04757,-0.38581 -1.98736,0.96262,-1.32803,-1.52466,-1.01246,2.04793,-0.38617 -1.98805,0.96215,-1.32866,-1.52392,-1.01273,2.04828,-0.38651 -1.98875,0.96169,-1.32927,-1.52320,-1.01299,2.04862,-0.38686 -1.98944,0.96124,-1.32988,-1.52249,-1.01325,2.04896,-0.38719 -1.99014,0.96080,-1.33048,-1.52178,-1.01351,2.04929,-0.38753 -1.99083,0.96037,-1.33106,-1.52109,-1.01376,2.04961,-0.38785 -1.99153,0.95994,-1.33164,-1.52041,-1.01401,2.04994,-0.38817 -1.99222,0.95952,-1.33221,-1.51974,-1.01426,2.05025,-0.38849 -1.99291,0.95910,-1.33276,-1.51908,-1.01450,2.05056,-0.38880 -1.99361,0.95870,-1.33331,-1.51843,-1.01474,2.05087,-0.38911 -1.99430,0.95830,-1.33385,-1.51779,-1.01498,2.05117,-0.38941 -1.99500,0.95790,-1.33438,-1.51717,-1.01522,2.05146,-0.38970 -1.99569,0.95752,-1.33490,-1.51655,-1.01545,2.05176,-0.38999 -1.99639,0.95714,-1.33541,-1.51594,-1.01568,2.05204,-0.39028 -1.99708,0.95676,-1.33591,-1.51534,-1.01591,2.05232,-0.39056 -1.99778,0.95639,-1.33641,-1.51474,-1.01613,2.05260,-0.39084 -1.99847,0.95603,-1.33689,-1.51416,-1.01635,2.05287,-0.39111 -1.99917,0.95568,-1.33737,-1.51359,-1.01657,2.05314,-0.39138 -1.99986,0.95533,-1.33784,-1.51303,-1.01679,2.05340,-0.39165 -2.00056,0.95498,-1.33830,-1.51247,-1.01700,2.05366,-0.39191 -2.00125,0.95464,-1.33876,-1.51192,-1.01722,2.05392,-0.39216 -2.00194,0.95431,-1.33920,-1.51139,-1.01742,2.05417,-0.39242 -2.00264,0.95398,-1.33964,-1.51086,-1.01763,2.05441,-0.39267 -2.00333,0.95366,-1.34007,-1.51033,-1.01783,2.05466,-0.39291 -2.00403,0.95335,-1.34050,-1.50982,-1.01804,2.05489,-0.39315 -2.00472,0.95303,-1.34091,-1.50932,-1.01823,2.05513,-0.39339 -2.00542,0.95273,-1.34132,-1.50882,-1.01843,2.05536,-0.39362 -2.00611,0.95243,-1.34173,-1.50833,-1.01862,2.05559,-0.39385 -2.00681,0.95213,-1.34212,-1.50785,-1.01882,2.05581,-0.39407 -2.00750,0.95184,-1.34251,-1.50737,-1.01900,2.05603,-0.39430 -2.00820,0.95152,-1.34294,-1.50686,-1.01920,2.05627,-0.39454 -2.00889,0.95092,-1.34372,-1.50597,-1.01951,2.05671,-0.39499 -2.00959,0.95034,-1.34450,-1.50510,-1.01981,2.05715,-0.39543 -2.01028,0.94976,-1.34526,-1.50424,-1.02011,2.05758,-0.39586 -2.01098,0.94919,-1.34600,-1.50339,-1.02040,2.05800,-0.39629 -2.01167,0.94863,-1.34674,-1.50256,-1.02070,2.05842,-0.39671 -2.01236,0.94809,-1.34746,-1.50173,-1.02098,2.05883,-0.39712 -2.01306,0.94755,-1.34817,-1.50092,-1.02127,2.05923,-0.39752 -2.01375,0.94702,-1.34887,-1.50013,-1.02155,2.05962,-0.39792 -2.01445,0.94650,-1.34956,-1.49934,-1.02183,2.06001,-0.39832 -2.01514,0.94599,-1.35023,-1.49857,-1.02211,2.06039,-0.39870 -2.01584,0.94548,-1.35090,-1.49781,-1.02238,2.06077,-0.39908 -2.01653,0.94499,-1.35155,-1.49706,-1.02265,2.06113,-0.39946 -2.01723,0.94450,-1.35219,-1.49632,-1.02292,2.06150,-0.39982 -2.01792,0.94402,-1.35282,-1.49559,-1.02318,2.06185,-0.40019 -2.01862,0.94356,-1.35344,-1.49488,-1.02345,2.06220,-0.40054 -2.01931,0.94309,-1.35405,-1.49417,-1.02370,2.06255,-0.40089 -2.02001,0.94264,-1.35465,-1.49348,-1.02396,2.06289,-0.40124 -2.02070,0.94219,-1.35524,-1.49280,-1.02421,2.06322,-0.40158 -2.02139,0.94176,-1.35581,-1.49212,-1.02446,2.06355,-0.40191 -2.02209,0.94133,-1.35638,-1.49146,-1.02471,2.06387,-0.40224 -2.02278,0.94090,-1.35694,-1.49081,-1.02495,2.06418,-0.40256 -2.02348,0.94049,-1.35749,-1.49016,-1.02519,2.06450,-0.40288 -2.02417,0.94008,-1.35803,-1.48953,-1.02543,2.06480,-0.40319 -2.02487,0.93967,-1.35857,-1.48891,-1.02567,2.06510,-0.40350 -2.02556,0.93928,-1.35909,-1.48830,-1.02590,2.06540,-0.40380 -2.02626,0.93889,-1.35960,-1.48769,-1.02613,2.06569,-0.40410 -2.02695,0.93851,-1.36011,-1.48710,-1.02636,2.06597,-0.40439 -2.02765,0.93813,-1.36060,-1.48651,-1.02658,2.06626,-0.40468 -2.02834,0.93776,-1.36109,-1.48594,-1.02680,2.06653,-0.40496 -2.02904,0.93740,-1.36157,-1.48537,-1.02702,2.06680,-0.40524 -2.02973,0.93704,-1.36204,-1.48481,-1.02724,2.06707,-0.40551 -2.03043,0.93669,-1.36251,-1.48426,-1.02745,2.06734,-0.40578 -2.03112,0.93634,-1.36296,-1.48372,-1.02766,2.06759,-0.40605 -2.03181,0.93600,-1.36341,-1.48318,-1.02787,2.06785,-0.40631 -2.03251,0.93567,-1.36385,-1.48266,-1.02808,2.06810,-0.40657 -2.03320,0.93534,-1.36429,-1.48214,-1.02828,2.06835,-0.40682 -2.03390,0.93502,-1.36471,-1.48163,-1.02848,2.06859,-0.40707 -2.03459,0.93470,-1.36513,-1.48113,-1.02868,2.06883,-0.40731 -2.03529,0.93439,-1.36554,-1.48064,-1.02888,2.06906,-0.40755 -2.03598,0.93408,-1.36595,-1.48015,-1.02907,2.06929,-0.40779 -2.03668,0.93378,-1.36635,-1.47967,-1.02927,2.06952,-0.40802 -2.03737,0.93348,-1.36674,-1.47920,-1.02945,2.06974,-0.40825 -2.03807,0.93319,-1.36712,-1.47874,-1.02964,2.06996,-0.40848 -2.03876,0.93296,-1.36741,-1.47841,-1.02977,2.07013,-0.40865 -2.03946,0.93219,-1.36837,-1.47737,-1.03011,2.07070,-0.40923 -2.04015,0.93143,-1.36932,-1.47635,-1.03045,2.07125,-0.40981 -2.04084,0.93069,-1.37025,-1.47535,-1.03079,2.07180,-0.41038 -2.04154,0.92996,-1.37117,-1.47436,-1.03113,2.07234,-0.41093 -2.04223,0.92924,-1.37207,-1.47338,-1.03146,2.07288,-0.41148 -2.04293,0.92853,-1.37295,-1.47242,-1.03179,2.07340,-0.41202 -2.04362,0.92784,-1.37382,-1.47148,-1.03211,2.07391,-0.41255 -2.04432,0.92715,-1.37468,-1.47054,-1.03243,2.07441,-0.41307 -2.04501,0.92649,-1.37552,-1.46963,-1.03275,2.07491,-0.41358 -2.04571,0.92583,-1.37635,-1.46872,-1.03307,2.07539,-0.41408 -2.04640,0.92518,-1.37716,-1.46783,-1.03338,2.07587,-0.41458 -2.04710,0.92455,-1.37796,-1.46695,-1.03369,2.07634,-0.41506 -2.04779,0.92392,-1.37874,-1.46609,-1.03400,2.07680,-0.41554 -2.04849,0.92331,-1.37952,-1.46524,-1.03430,2.07725,-0.41601 -2.04918,0.92271,-1.38028,-1.46440,-1.03460,2.07770,-0.41647 -2.04987,0.92212,-1.38102,-1.46357,-1.03489,2.07813,-0.41693 -2.05057,0.92154,-1.38176,-1.46276,-1.03519,2.07856,-0.41737 -2.05126,0.92096,-1.38248,-1.46195,-1.03548,2.07899,-0.41781 -2.05196,0.92040,-1.38319,-1.46116,-1.03577,2.07940,-0.41825 -2.05265,0.91985,-1.38388,-1.46039,-1.03605,2.07981,-0.41867 -2.05335,0.91931,-1.38457,-1.45962,-1.03633,2.08021,-0.41909 -2.05404,0.91878,-1.38524,-1.45887,-1.03661,2.08060,-0.41950 -2.05474,0.91825,-1.38591,-1.45812,-1.03688,2.08099,-0.41991 -2.05543,0.91774,-1.38656,-1.45739,-1.03716,2.08137,-0.42030 -2.05613,0.91724,-1.38720,-1.45667,-1.03743,2.08174,-0.42069 -2.05682,0.91674,-1.38783,-1.45596,-1.03769,2.08211,-0.42108 -2.05752,0.91625,-1.38845,-1.45526,-1.03796,2.08247,-0.42146 -2.05821,0.91577,-1.38906,-1.45457,-1.03822,2.08283,-0.42183 -2.05891,0.91530,-1.38965,-1.45389,-1.03847,2.08318,-0.42220 -2.05960,0.91484,-1.39024,-1.45322,-1.03873,2.08352,-0.42256 -2.06029,0.91438,-1.39082,-1.45256,-1.03898,2.08386,-0.42291 -2.06099,0.91394,-1.39139,-1.45192,-1.03923,2.08419,-0.42326 -2.06168,0.91350,-1.39195,-1.45128,-1.03947,2.08451,-0.42360 -2.06238,0.91306,-1.39250,-1.45065,-1.03972,2.08484,-0.42394 -2.06307,0.91264,-1.39304,-1.45003,-1.03996,2.08515,-0.42427 -2.06377,0.91222,-1.39357,-1.44942,-1.04020,2.08546,-0.42460 -2.06446,0.91181,-1.39409,-1.44882,-1.04043,2.08576,-0.42492 -2.06516,0.91141,-1.39461,-1.44823,-1.04066,2.08606,-0.42523 -2.06585,0.91101,-1.39511,-1.44764,-1.04089,2.08636,-0.42554 -2.06655,0.91062,-1.39561,-1.44707,-1.04112,2.08665,-0.42585 -2.06724,0.91024,-1.39609,-1.44651,-1.04134,2.08693,-0.42615 -2.06794,0.90986,-1.39657,-1.44595,-1.04156,2.08721,-0.42644 -2.06863,0.90949,-1.39705,-1.44540,-1.04178,2.08749,-0.42673 -2.06932,0.90913,-1.39751,-1.44486,-1.04200,2.08776,-0.42702 -2.07002,0.90877,-1.39797,-1.44433,-1.04221,2.08802,-0.42730 -2.07071,0.90842,-1.39841,-1.44381,-1.04242,2.08828,-0.42758 -2.07141,0.90808,-1.39885,-1.44329,-1.04263,2.08854,-0.42785 -2.07210,0.90774,-1.39929,-1.44278,-1.04284,2.08879,-0.42812 -2.07280,0.90740,-1.39971,-1.44228,-1.04304,2.08904,-0.42838 -2.07349,0.90707,-1.40013,-1.44179,-1.04325,2.08928,-0.42864 -2.07419,0.90675,-1.40055,-1.44131,-1.04344,2.08952,-0.42889 -2.07488,0.90643,-1.40095,-1.44083,-1.04364,2.08976,-0.42914 -2.07558,0.90612,-1.40135,-1.44036,-1.04383,2.08999,-0.42939 -2.07627,0.90582,-1.40174,-1.43990,-1.04403,2.09022,-0.42963 -2.07697,0.90551,-1.40212,-1.43944,-1.04422,2.09045,-0.42987 -2.07766,0.90522,-1.40250,-1.43899,-1.04440,2.09067,-0.43011 -2.07836,0.90505,-1.40272,-1.43874,-1.04450,2.09079,-0.43024 -2.07905,0.90453,-1.40334,-1.43807,-1.04475,2.09117,-0.43064 -2.07974,0.90402,-1.40395,-1.43741,-1.04499,2.09155,-0.43104 -2.08044,0.90352,-1.40456,-1.43675,-1.04524,2.09191,-0.43143 -2.08113,0.90303,-1.40515,-1.43611,-1.04548,2.09227,-0.43182 -2.08183,0.90255,-1.40573,-1.43547,-1.04571,2.09263,-0.43219 -2.08252,0.90208,-1.40631,-1.43485,-1.04595,2.09298,-0.43256 -2.08322,0.90161,-1.40687,-1.43423,-1.04618,2.09332,-0.43293 -2.08391,0.90115,-1.40743,-1.43363,-1.04641,2.09366,-0.43329 -2.08461,0.90070,-1.40797,-1.43303,-1.04663,2.09399,-0.43364 -2.08530,0.90026,-1.40851,-1.43244,-1.04686,2.09431,-0.43399 -2.08600,0.89983,-1.40903,-1.43186,-1.04708,2.09463,-0.43433 -2.08669,0.89940,-1.40955,-1.43129,-1.04730,2.09495,-0.43467 -2.08739,0.89898,-1.41006,-1.43073,-1.04752,2.09526,-0.43500 -2.08808,0.89857,-1.41056,-1.43017,-1.04773,2.09556,-0.43532 -2.08877,0.89816,-1.41106,-1.42963,-1.04794,2.09586,-0.43564 -2.08947,0.89777,-1.41154,-1.42909,-1.04815,2.09615,-0.43596 -2.09016,0.89738,-1.41202,-1.42856,-1.04836,2.09644,-0.43627 -2.09086,0.89699,-1.41248,-1.42804,-1.04857,2.09672,-0.43657 -2.09155,0.89661,-1.41294,-1.42753,-1.04877,2.09700,-0.43687 -2.09225,0.89624,-1.41340,-1.42702,-1.04897,2.09728,-0.43716 -2.09294,0.89588,-1.41384,-1.42652,-1.04917,2.09755,-0.43745 -2.09364,0.89552,-1.41428,-1.42603,-1.04936,2.09781,-0.43774 -2.09433,0.89517,-1.41471,-1.42555,-1.04956,2.09807,-0.43802 -2.09503,0.89482,-1.41513,-1.42507,-1.04975,2.09833,-0.43829 -2.09572,0.89448,-1.41555,-1.42460,-1.04994,2.09858,-0.43856 -2.09642,0.89414,-1.41595,-1.42414,-1.05012,2.09883,-0.43883 -2.09711,0.89381,-1.41636,-1.42368,-1.05031,2.09907,-0.43909 -2.09780,0.89349,-1.41675,-1.42324,-1.05049,2.09931,-0.43935 -2.09850,0.89317,-1.41714,-1.42280,-1.05067,2.09954,-0.43960 -2.09919,0.89286,-1.41752,-1.42236,-1.05085,2.09978,-0.43985 -2.09989,0.89255,-1.41790,-1.42193,-1.05103,2.10000,-0.44010 -2.10058,0.89228,-1.41823,-1.42156,-1.05117,2.10021,-0.44032 -2.10128,0.89163,-1.41895,-1.42084,-1.05143,2.10067,-0.44082 -2.10197,0.89101,-1.41966,-1.42012,-1.05168,2.10113,-0.44132 -2.10267,0.89039,-1.42036,-1.41941,-1.05193,2.10158,-0.44180 -2.10336,0.88978,-1.42105,-1.41872,-1.05217,2.10203,-0.44228 -2.10406,0.88918,-1.42173,-1.41803,-1.05241,2.10246,-0.44275 -2.10475,0.88860,-1.42240,-1.41736,-1.05266,2.10289,-0.44321 -2.10545,0.88802,-1.42305,-1.41669,-1.05289,2.10331,-0.44367 -2.10614,0.88746,-1.42369,-1.41603,-1.05313,2.10372,-0.44412 -2.10684,0.88690,-1.42432,-1.41539,-1.05337,2.10413,-0.44455 -2.10753,0.88636,-1.42495,-1.41475,-1.05360,2.10452,-0.44499 -2.10822,0.88582,-1.42556,-1.41412,-1.05383,2.10491,-0.44541 -2.10892,0.88530,-1.42616,-1.41350,-1.05405,2.10530,-0.44583 -2.10961,0.88478,-1.42675,-1.41289,-1.05428,2.10568,-0.44624 -2.11031,0.88427,-1.42733,-1.41229,-1.05450,2.10605,-0.44664 -2.11100,0.88377,-1.42790,-1.41170,-1.05472,2.10641,-0.44704 -2.11170,0.88328,-1.42846,-1.41112,-1.05494,2.10677,-0.44743 -2.11239,0.88280,-1.42902,-1.41054,-1.05516,2.10712,-0.44781 -2.11309,0.88233,-1.42956,-1.40998,-1.05537,2.10747,-0.44819 -2.11378,0.88186,-1.43009,-1.40942,-1.05558,2.10781,-0.44856 -2.11448,0.88140,-1.43062,-1.40887,-1.05579,2.10814,-0.44893 -2.11517,0.88096,-1.43113,-1.40833,-1.05600,2.10847,-0.44929 -2.11587,0.88051,-1.43164,-1.40779,-1.05621,2.10879,-0.44964 -2.11656,0.88008,-1.43214,-1.40727,-1.05641,2.10911,-0.44998 -2.11725,0.87966,-1.43263,-1.40675,-1.05661,2.10942,-0.45033 -2.11795,0.87924,-1.43311,-1.40624,-1.05681,2.10973,-0.45066 -2.11864,0.87883,-1.43358,-1.40574,-1.05700,2.11003,-0.45099 -2.11934,0.87842,-1.43405,-1.40524,-1.05720,2.11032,-0.45132 -2.12003,0.87802,-1.43451,-1.40476,-1.05739,2.11062,-0.45163 -2.12073,0.87763,-1.43496,-1.40427,-1.05758,2.11090,-0.45195 -2.12142,0.87725,-1.43540,-1.40380,-1.05777,2.11118,-0.45226 -2.12212,0.87687,-1.43584,-1.40334,-1.05796,2.11146,-0.45256 -2.12281,0.87650,-1.43626,-1.40288,-1.05814,2.11173,-0.45286 -2.12351,0.87614,-1.43669,-1.40242,-1.05832,2.11200,-0.45315 -2.12420,0.87578,-1.43710,-1.40198,-1.05850,2.11226,-0.45344 -2.12490,0.87543,-1.43751,-1.40154,-1.05868,2.11252,-0.45372 -2.12559,0.87509,-1.43791,-1.40111,-1.05886,2.11277,-0.45400 -2.12629,0.87475,-1.43830,-1.40068,-1.05903,2.11302,-0.45428 -2.12698,0.87441,-1.43869,-1.40026,-1.05920,2.11326,-0.45455 -2.12767,0.87409,-1.43907,-1.39985,-1.05937,2.11350,-0.45481 -2.12837,0.87376,-1.43944,-1.39944,-1.05954,2.11374,-0.45507 -2.12906,0.87345,-1.43981,-1.39904,-1.05971,2.11397,-0.45533 -2.12976,0.87313,-1.44016,-1.39866,-1.05986,2.11420,-0.45558 -2.13045,0.87248,-1.44083,-1.39805,-1.06007,2.11468,-0.45611 -2.13115,0.87183,-1.44149,-1.39744,-1.06027,2.11514,-0.45662 -2.13184,0.87120,-1.44214,-1.39685,-1.06048,2.11560,-0.45713 -2.13254,0.87058,-1.44278,-1.39626,-1.06068,2.11605,-0.45762 -2.13323,0.86997,-1.44340,-1.39568,-1.06089,2.11649,-0.45811 -2.13393,0.86937,-1.44402,-1.39511,-1.06109,2.11692,-0.45859 -2.13462,0.86878,-1.44462,-1.39455,-1.06129,2.11735,-0.45906 -2.13532,0.86821,-1.44522,-1.39400,-1.06148,2.11777,-0.45953 -2.13601,0.86764,-1.44581,-1.39345,-1.06168,2.11818,-0.45998 -2.13670,0.86708,-1.44638,-1.39291,-1.06187,2.11858,-0.46043 -2.13740,0.86654,-1.44695,-1.39238,-1.06206,2.11898,-0.46087 -2.13809,0.86600,-1.44750,-1.39186,-1.06225,2.11937,-0.46131 -2.13879,0.86547,-1.44805,-1.39134,-1.06244,2.11975,-0.46173 -2.13948,0.86495,-1.44859,-1.39083,-1.06263,2.12013,-0.46215 -2.14018,0.86444,-1.44911,-1.39033,-1.06282,2.12049,-0.46256 -2.14087,0.86394,-1.44963,-1.38984,-1.06300,2.12086,-0.46297 -2.14157,0.86345,-1.45015,-1.38935,-1.06318,2.12121,-0.46337 -2.14226,0.86297,-1.45065,-1.38887,-1.06336,2.12156,-0.46376 -2.14296,0.86249,-1.45114,-1.38840,-1.06354,2.12191,-0.46414 -2.14365,0.86203,-1.45163,-1.38793,-1.06372,2.12225,-0.46452 -2.14435,0.86157,-1.45210,-1.38747,-1.06389,2.12258,-0.46489 -2.14504,0.86112,-1.45257,-1.38702,-1.06406,2.12290,-0.46526 -2.14573,0.86068,-1.45303,-1.38657,-1.06424,2.12322,-0.46562 -2.14643,0.86025,-1.45349,-1.38613,-1.06441,2.12354,-0.46597 -2.14712,0.85982,-1.45393,-1.38570,-1.06457,2.12385,-0.46632 -2.14782,0.85940,-1.45437,-1.38527,-1.06474,2.12415,-0.46666 -2.14851,0.85899,-1.45480,-1.38485,-1.06491,2.12445,-0.46699 -2.14921,0.85859,-1.45523,-1.38444,-1.06507,2.12475,-0.46732 -2.14990,0.85819,-1.45564,-1.38403,-1.06523,2.12503,-0.46765 -2.15060,0.85780,-1.45605,-1.38363,-1.06539,2.12532,-0.46797 -2.15129,0.85741,-1.45646,-1.38323,-1.06555,2.12560,-0.46828 -2.15199,0.85704,-1.45685,-1.38284,-1.06571,2.12587,-0.46859 -2.15268,0.85667,-1.45724,-1.38245,-1.06586,2.12614,-0.46889 -2.15338,0.85630,-1.45763,-1.38207,-1.06602,2.12640,-0.46919 -2.15407,0.85595,-1.45800,-1.38170,-1.06617,2.12666,-0.46949 -2.15477,0.85559,-1.45837,-1.38133,-1.06632,2.12692,-0.46977 -2.15546,0.85525,-1.45874,-1.38097,-1.06647,2.12717,-0.47006 -2.15615,0.85491,-1.45909,-1.38061,-1.06661,2.12742,-0.47034 -2.15685,0.85458,-1.45945,-1.38026,-1.06676,2.12766,-0.47061 -2.15754,0.85423,-1.45980,-1.37991,-1.06690,2.12791,-0.47090 -2.15824,0.85371,-1.46026,-1.37955,-1.06703,2.12829,-0.47132 -2.15893,0.85320,-1.46070,-1.37920,-1.06715,2.12865,-0.47173 -2.15963,0.85270,-1.46114,-1.37885,-1.06727,2.12901,-0.47214 -2.16032,0.85221,-1.46157,-1.37851,-1.06740,2.12937,-0.47255 -2.16102,0.85173,-1.46199,-1.37817,-1.06752,2.12972,-0.47294 -2.16171,0.85125,-1.46241,-1.37784,-1.06764,2.13006,-0.47333 -2.16241,0.85079,-1.46282,-1.37751,-1.06776,2.13040,-0.47371 -2.16310,0.85033,-1.46322,-1.37719,-1.06788,2.13073,-0.47409 -2.16380,0.84988,-1.46362,-1.37687,-1.06800,2.13105,-0.47445 -2.16449,0.84944,-1.46401,-1.37656,-1.06811,2.13137,-0.47482 -2.16518,0.84900,-1.46439,-1.37625,-1.06823,2.13168,-0.47517 -2.16588,0.84858,-1.46476,-1.37594,-1.06834,2.13199,-0.47552 -2.16657,0.84816,-1.46513,-1.37564,-1.06846,2.13229,-0.47587 -2.16727,0.84775,-1.46550,-1.37534,-1.06857,2.13259,-0.47621 -2.16796,0.84734,-1.46585,-1.37505,-1.06868,2.13288,-0.47654 -2.16866,0.84695,-1.46621,-1.37476,-1.06880,2.13317,-0.47687 -2.16935,0.84656,-1.46655,-1.37448,-1.06891,2.13345,-0.47719 -2.17005,0.84617,-1.46689,-1.37420,-1.06902,2.13373,-0.47751 -2.17074,0.84580,-1.46722,-1.37392,-1.06913,2.13400,-0.47782 -2.17144,0.84543,-1.46755,-1.37365,-1.06923,2.13426,-0.47812 -2.17213,0.84506,-1.46788,-1.37338,-1.06934,2.13453,-0.47842 -2.17283,0.84471,-1.46819,-1.37311,-1.06945,2.13479,-0.47872 -2.17352,0.84441,-1.46845,-1.37290,-1.06953,2.13500,-0.47896 -2.17422,0.84396,-1.46881,-1.37266,-1.06961,2.13533,-0.47934 -2.17491,0.84351,-1.46916,-1.37241,-1.06970,2.13565,-0.47971 -2.17560,0.84306,-1.46951,-1.37218,-1.06979,2.13597,-0.48007 -2.17630,0.84263,-1.46985,-1.37194,-1.06987,2.13628,-0.48043 -2.17699,0.84220,-1.47019,-1.37171,-1.06995,2.13659,-0.48078 -2.17769,0.84178,-1.47052,-1.37148,-1.07004,2.13689,-0.48113 -2.17838,0.84137,-1.47085,-1.37125,-1.07012,2.13718,-0.48147 -2.17908,0.84097,-1.47117,-1.37103,-1.07020,2.13747,-0.48181 -2.17977,0.84057,-1.47148,-1.37081,-1.07029,2.13776,-0.48213 -2.18047,0.84018,-1.47179,-1.37059,-1.07037,2.13804,-0.48246 -2.18116,0.83980,-1.47210,-1.37037,-1.07045,2.13832,-0.48278 -2.18186,0.83942,-1.47239,-1.37016,-1.07053,2.13859,-0.48309 -2.18255,0.83905,-1.47269,-1.36995,-1.07061,2.13885,-0.48340 -2.18325,0.83867,-1.47298,-1.36975,-1.07069,2.13913,-0.48371 -2.18394,0.83819,-1.47330,-1.36961,-1.07072,2.13947,-0.48411 -2.18463,0.83771,-1.47361,-1.36948,-1.07076,2.13982,-0.48451 -2.18533,0.83724,-1.47391,-1.36934,-1.07080,2.14015,-0.48490 -2.18602,0.83678,-1.47422,-1.36921,-1.07084,2.14048,-0.48528 -2.18672,0.83632,-1.47451,-1.36908,-1.07088,2.14081,-0.48566 -2.18741,0.83588,-1.47480,-1.36894,-1.07092,2.14113,-0.48603 -2.18811,0.83544,-1.47509,-1.36881,-1.07096,2.14144,-0.48639 -2.18880,0.83501,-1.47537,-1.36869,-1.07100,2.14175,-0.48675 -2.18950,0.83459,-1.47564,-1.36856,-1.07104,2.14205,-0.48710 -2.19019,0.83417,-1.47592,-1.36843,-1.07108,2.14235,-0.48744 -2.19089,0.83377,-1.47618,-1.36831,-1.07112,2.14264,-0.48778 -2.19158,0.83337,-1.47645,-1.36819,-1.07116,2.14293,-0.48812 -2.19228,0.83297,-1.47670,-1.36807,-1.07120,2.14321,-0.48844 -2.19297,0.83259,-1.47696,-1.36795,-1.07124,2.14349,-0.48877 -2.19366,0.83221,-1.47721,-1.36783,-1.07128,2.14376,-0.48908 -2.19436,0.83197,-1.47736,-1.36776,-1.07130,2.14393,-0.48928 -2.19505,0.83146,-1.47765,-1.36770,-1.07131,2.14429,-0.48970 -2.19575,0.83096,-1.47793,-1.36764,-1.07131,2.14465,-0.49012 -2.19644,0.83047,-1.47821,-1.36758,-1.07132,2.14500,-0.49053 -2.19714,0.82999,-1.47848,-1.36751,-1.07132,2.14535,-0.49093 -2.19783,0.82951,-1.47875,-1.36745,-1.07133,2.14568,-0.49133 -2.19853,0.82905,-1.47902,-1.36739,-1.07134,2.14602,-0.49171 -2.19922,0.82859,-1.47928,-1.36733,-1.07135,2.14634,-0.49210 -2.19992,0.82814,-1.47953,-1.36727,-1.07135,2.14666,-0.49247 -2.20061,0.82770,-1.47979,-1.36721,-1.07136,2.14698,-0.49284 -2.20131,0.82727,-1.48003,-1.36715,-1.07137,2.14729,-0.49320 -2.20200,0.82684,-1.48028,-1.36709,-1.07139,2.14759,-0.49356 -2.20270,0.82642,-1.48052,-1.36703,-1.07140,2.14789,-0.49391 -2.20339,0.82601,-1.48075,-1.36697,-1.07141,2.14818,-0.49425 -2.20408,0.82561,-1.48098,-1.36691,-1.07142,2.14847,-0.49459 -2.20478,0.82521,-1.48121,-1.36685,-1.07143,2.14875,-0.49492 -2.20547,0.82482,-1.48143,-1.36679,-1.07145,2.14903,-0.49525 -2.20617,0.82444,-1.48165,-1.36673,-1.07146,2.14930,-0.49557 -2.20686,0.82411,-1.48182,-1.36673,-1.07145,2.14954,-0.49585 -2.20756,0.82343,-1.48194,-1.36711,-1.07126,2.15002,-0.49641 -2.20825,0.82277,-1.48207,-1.36748,-1.07107,2.15049,-0.49697 -2.20895,0.82212,-1.48219,-1.36784,-1.07089,2.15095,-0.49751 -2.20964,0.82147,-1.48231,-1.36819,-1.07071,2.15140,-0.49805 -2.21034,0.82084,-1.48243,-1.36854,-1.07053,2.15185,-0.49858 -2.21103,0.82023,-1.48255,-1.36888,-1.07036,2.15229,-0.49910 -2.21173,0.81962,-1.48266,-1.36922,-1.07019,2.15272,-0.49960 -2.21242,0.81902,-1.48278,-1.36955,-1.07003,2.15314,-0.50010 -2.21311,0.81844,-1.48289,-1.36987,-1.06986,2.15355,-0.50060 -2.21381,0.81786,-1.48300,-1.37018,-1.06971,2.15396,-0.50108 -2.21450,0.81730,-1.48311,-1.37049,-1.06955,2.15436,-0.50155 -2.21520,0.81675,-1.48321,-1.37080,-1.06940,2.15475,-0.50202 -2.21589,0.81620,-1.48332,-1.37109,-1.06925,2.15514,-0.50248 -2.21659,0.81567,-1.48342,-1.37139,-1.06911,2.15551,-0.50293 -2.21728,0.81514,-1.48352,-1.37167,-1.06896,2.15588,-0.50337 -2.21798,0.81463,-1.48362,-1.37195,-1.06882,2.15625,-0.50380 -2.21867,0.81412,-1.48372,-1.37223,-1.06869,2.15661,-0.50423 -2.21937,0.81363,-1.48381,-1.37250,-1.06855,2.15696,-0.50465 -2.22006,0.81314,-1.48391,-1.37277,-1.06842,2.15730,-0.50506 -2.22076,0.81266,-1.48400,-1.37303,-1.06829,2.15764,-0.50547 -2.22145,0.81219,-1.48409,-1.37328,-1.06817,2.15798,-0.50587 -2.22215,0.81173,-1.48418,-1.37353,-1.06804,2.15830,-0.50626 -2.22284,0.81127,-1.48427,-1.37378,-1.06792,2.15862,-0.50664 -2.22353,0.81083,-1.48436,-1.37402,-1.06781,2.15894,-0.50702 -2.22423,0.81039,-1.48444,-1.37426,-1.06769,2.15925,-0.50739 -2.22492,0.80996,-1.48453,-1.37449,-1.06758,2.15955,-0.50775 -2.22562,0.80954,-1.48461,-1.37471,-1.06747,2.15985,-0.50811 -2.22631,0.80913,-1.48469,-1.37494,-1.06736,2.16015,-0.50846 -2.22701,0.80872,-1.48477,-1.37516,-1.06725,2.16043,-0.50881 -2.22770,0.80832,-1.48485,-1.37537,-1.06715,2.16072,-0.50915 -2.22840,0.80793,-1.48492,-1.37558,-1.06705,2.16099,-0.50948 -2.22909,0.80754,-1.48500,-1.37579,-1.06695,2.16127,-0.50981 -2.22979,0.80716,-1.48507,-1.37599,-1.06685,2.16154,-0.51013 -2.23048,0.80679,-1.48515,-1.37619,-1.06675,2.16180,-0.51045 -2.23118,0.80643,-1.48522,-1.37639,-1.06666,2.16206,-0.51076 -2.23187,0.80607,-1.48529,-1.37658,-1.06657,2.16231,-0.51107 -2.23256,0.80599,-1.48529,-1.37664,-1.06654,2.16237,-0.51114 -2.23326,0.80553,-1.48528,-1.37708,-1.06634,2.16269,-0.51153 -2.23395,0.80508,-1.48526,-1.37750,-1.06614,2.16301,-0.51191 -2.23465,0.80464,-1.48524,-1.37793,-1.06595,2.16332,-0.51228 -2.23534,0.80421,-1.48522,-1.37834,-1.06576,2.16362,-0.51265 -2.23604,0.80378,-1.48521,-1.37874,-1.06558,2.16392,-0.51301 -2.23673,0.80337,-1.48519,-1.37914,-1.06540,2.16422,-0.51337 -2.23743,0.80296,-1.48517,-1.37953,-1.06522,2.16451,-0.51372 -2.23812,0.80256,-1.48516,-1.37992,-1.06504,2.16479,-0.51406 -2.23882,0.80216,-1.48514,-1.38030,-1.06487,2.16507,-0.51440 -2.23951,0.80177,-1.48512,-1.38067,-1.06470,2.16534,-0.51473 -2.24021,0.80139,-1.48511,-1.38103,-1.06454,2.16561,-0.51506 -2.24090,0.80102,-1.48509,-1.38139,-1.06437,2.16588,-0.51538 -2.24159,0.80065,-1.48508,-1.38174,-1.06421,2.16614,-0.51569 -2.24229,0.80029,-1.48506,-1.38209,-1.06406,2.16639,-0.51600 -2.24298,0.79994,-1.48505,-1.38243,-1.06390,2.16664,-0.51631 -2.24368,0.79959,-1.48504,-1.38276,-1.06375,2.16689,-0.51660 -2.24437,0.79925,-1.48502,-1.38309,-1.06360,2.16713,-0.51690 -2.24507,0.79891,-1.48501,-1.38341,-1.06346,2.16736,-0.51718 -2.24576,0.79858,-1.48499,-1.38372,-1.06331,2.16760,-0.51747 -2.24646,0.79831,-1.48496,-1.38402,-1.06318,2.16779,-0.51770 -2.24715,0.79786,-1.48474,-1.38481,-1.06284,2.16811,-0.51809 -2.24785,0.79741,-1.48452,-1.38558,-1.06250,2.16842,-0.51847 -2.24854,0.79698,-1.48430,-1.38634,-1.06217,2.16872,-0.51885 -2.24924,0.79655,-1.48409,-1.38709,-1.06184,2.16902,-0.51921 -2.24993,0.79613,-1.48388,-1.38782,-1.06152,2.16932,-0.51957 -2.25063,0.79572,-1.48368,-1.38855,-1.06121,2.16961,-0.51993 -2.25132,0.79531,-1.48348,-1.38926,-1.06090,2.16989,-0.52028 -2.25201,0.79491,-1.48328,-1.38995,-1.06060,2.17017,-0.52062 -2.25271,0.79452,-1.48309,-1.39064,-1.06030,2.17045,-0.52096 -2.25340,0.79414,-1.48290,-1.39131,-1.06000,2.17071,-0.52129 -2.25410,0.79376,-1.48271,-1.39197,-1.05971,2.17098,-0.52161 -2.25479,0.79339,-1.48252,-1.39262,-1.05943,2.17124,-0.52193 -2.25549,0.79303,-1.48234,-1.39326,-1.05915,2.17149,-0.52224 -2.25618,0.79267,-1.48216,-1.39389,-1.05887,2.17174,-0.52255 -2.25688,0.79232,-1.48199,-1.39451,-1.05860,2.17199,-0.52285 -2.25757,0.79198,-1.48182,-1.39512,-1.05834,2.17223,-0.52315 -2.25827,0.79164,-1.48165,-1.39571,-1.05808,2.17247,-0.52344 -2.25896,0.79131,-1.48148,-1.39630,-1.05782,2.17270,-0.52372 -2.25966,0.79099,-1.48132,-1.39687,-1.05757,2.17293,-0.52400 -2.26035,0.79067,-1.48116,-1.39744,-1.05732,2.17315,-0.52428 -2.26104,0.79036,-1.48100,-1.39800,-1.05707,2.17337,-0.52455 -2.26174,0.79005,-1.48084,-1.39854,-1.05683,2.17359,-0.52481 -2.26243,0.78975,-1.48069,-1.39908,-1.05660,2.17380,-0.52507 -2.26313,0.78945,-1.48054,-1.39961,-1.05637,2.17401,-0.52533 -2.26382,0.78916,-1.48039,-1.40013,-1.05614,2.17421,-0.52558 -2.26452,0.78888,-1.48025,-1.40064,-1.05591,2.17441,-0.52583 -2.26521,0.78859,-1.48010,-1.40114,-1.05569,2.17461,-0.52607 -2.26591,0.78832,-1.47996,-1.40163,-1.05547,2.17480,-0.52631 -2.26660,0.78805,-1.47982,-1.40212,-1.05526,2.17499,-0.52654 -2.26730,0.78778,-1.47969,-1.40259,-1.05505,2.17518,-0.52677 -2.26799,0.78752,-1.47955,-1.40306,-1.05484,2.17536,-0.52700 -2.26869,0.78727,-1.47942,-1.40352,-1.05464,2.17554,-0.52722 -2.26938,0.78710,-1.47930,-1.40389,-1.05448,2.17566,-0.52736 -2.27008,0.78667,-1.47874,-1.40524,-1.05391,2.17596,-0.52774 -2.27077,0.78625,-1.47818,-1.40657,-1.05335,2.17625,-0.52810 -2.27146,0.78584,-1.47763,-1.40788,-1.05280,2.17654,-0.52846 -2.27216,0.78543,-1.47710,-1.40917,-1.05225,2.17682,-0.52881 -2.27285,0.78504,-1.47657,-1.41043,-1.05172,2.17709,-0.52915 -2.27355,0.78465,-1.47605,-1.41168,-1.05119,2.17737,-0.52949 -2.27424,0.78426,-1.47554,-1.41290,-1.05067,2.17763,-0.52982 -2.27494,0.78389,-1.47504,-1.41410,-1.05016,2.17789,-0.53015 -2.27563,0.78352,-1.47455,-1.41528,-1.04966,2.17815,-0.53047 -2.27633,0.78316,-1.47407,-1.41644,-1.04917,2.17840,-0.53078 -2.27702,0.78280,-1.47360,-1.41758,-1.04868,2.17865,-0.53109 -2.27772,0.78246,-1.47313,-1.41870,-1.04820,2.17889,-0.53139 -2.27841,0.78211,-1.47267,-1.41980,-1.04773,2.17913,-0.53169 -2.27911,0.78178,-1.47222,-1.42088,-1.04727,2.17936,-0.53198 -2.27980,0.78145,-1.47178,-1.42195,-1.04682,2.17959,-0.53227 -2.28049,0.78113,-1.47134,-1.42299,-1.04637,2.17981,-0.53255 -2.28119,0.78081,-1.47092,-1.42402,-1.04593,2.18004,-0.53282 -2.28188,0.78050,-1.47049,-1.42503,-1.04549,2.18025,-0.53309 -2.28258,0.78019,-1.47008,-1.42602,-1.04507,2.18046,-0.53336 -2.28327,0.77989,-1.46968,-1.42700,-1.04465,2.18067,-0.53362 -2.28397,0.77960,-1.46928,-1.42796,-1.04424,2.18088,-0.53388 -2.28466,0.77931,-1.46888,-1.42890,-1.04383,2.18108,-0.53413 -2.28536,0.77903,-1.46850,-1.42983,-1.04343,2.18127,-0.53437 -2.28605,0.77875,-1.46812,-1.43074,-1.04304,2.18147,-0.53461 -2.28675,0.77848,-1.46775,-1.43164,-1.04265,2.18166,-0.53485 -2.28744,0.77821,-1.46738,-1.43252,-1.04227,2.18184,-0.53508 -2.28814,0.77795,-1.46702,-1.43339,-1.04189,2.18203,-0.53531 -2.28883,0.77769,-1.46667,-1.43424,-1.04153,2.18221,-0.53553 -2.28952,0.77744,-1.46632,-1.43507,-1.04116,2.18238,-0.53575 -2.29022,0.77719,-1.46598,-1.43590,-1.04081,2.18255,-0.53597 -2.29091,0.77695,-1.46564,-1.43671,-1.04046,2.18272,-0.53618 -2.29161,0.77671,-1.46531,-1.43750,-1.04011,2.18289,-0.53639 -2.29230,0.77648,-1.46499,-1.43828,-1.03977,2.18305,-0.53659 -2.29300,0.77625,-1.46467,-1.43905,-1.03943,2.18321,-0.53679 -2.29369,0.77602,-1.46435,-1.43981,-1.03911,2.18337,-0.53698 -2.29439,0.77580,-1.46404,-1.44055,-1.03878,2.18352,-0.53718 -2.29508,0.77558,-1.46374,-1.44128,-1.03846,2.18367,-0.53736 -2.29578,0.77537,-1.46344,-1.44199,-1.03815,2.18382,-0.53755 -2.29647,0.77516,-1.46315,-1.44270,-1.03784,2.18397,-0.53773 -2.29717,0.77496,-1.46286,-1.44339,-1.03754,2.18411,-0.53791 -2.29786,0.77476,-1.46258,-1.44408,-1.03724,2.18425,-0.53808 -2.29856,0.77456,-1.46230,-1.44475,-1.03694,2.18439,-0.53825 -2.29925,0.77437,-1.46203,-1.44540,-1.03665,2.18452,-0.53842 -2.29994,0.77418,-1.46176,-1.44605,-1.03637,2.18466,-0.53858 -2.30064,0.77399,-1.46149,-1.44669,-1.03609,2.18479,-0.53875 -2.30133,0.77381,-1.46123,-1.44731,-1.03581,2.18491,-0.53890 -2.30203,0.77363,-1.46098,-1.44793,-1.03554,2.18504,-0.53906 -2.30272,0.77345,-1.46072,-1.44853,-1.03527,2.18516,-0.53921 -2.30342,0.77328,-1.46048,-1.44913,-1.03501,2.18528,-0.53936 -2.30411,0.77311,-1.46023,-1.44971,-1.03475,2.18540,-0.53951 -2.30481,0.77295,-1.45999,-1.45029,-1.03449,2.18551,-0.53965 -2.30550,0.77278,-1.45976,-1.45085,-1.03424,2.18563,-0.53979 -2.30620,0.77262,-1.45953,-1.45141,-1.03400,2.18574,-0.53993 -2.30689,0.77253,-1.45937,-1.45178,-1.03384,2.18581,-0.54001 -2.30759,0.77235,-1.45894,-1.45269,-1.03345,2.18593,-0.54017 -2.30828,0.77217,-1.45851,-1.45359,-1.03307,2.18606,-0.54033 -2.30897,0.77199,-1.45809,-1.45447,-1.03270,2.18618,-0.54048 -2.30967,0.77182,-1.45768,-1.45534,-1.03233,2.18630,-0.54063 -2.31036,0.77165,-1.45727,-1.45619,-1.03196,2.18641,-0.54078 -2.31106,0.77149,-1.45688,-1.45703,-1.03161,2.18653,-0.54092 -2.31175,0.77133,-1.45648,-1.45785,-1.03125,2.18664,-0.54106 -2.31245,0.77117,-1.45610,-1.45866,-1.03091,2.18675,-0.54120 -2.31314,0.77101,-1.45572,-1.45946,-1.03057,2.18686,-0.54133 -2.31384,0.77086,-1.45535,-1.46024,-1.03023,2.18696,-0.54146 -2.31453,0.77071,-1.45498,-1.46101,-1.02990,2.18707,-0.54159 -2.31523,0.77057,-1.45463,-1.46177,-1.02958,2.18717,-0.54172 -2.31592,0.77042,-1.45427,-1.46252,-1.02926,2.18727,-0.54184 -2.31662,0.77028,-1.45393,-1.46325,-1.02894,2.18737,-0.54197 -2.31731,0.77014,-1.45358,-1.46397,-1.02863,2.18746,-0.54209 -2.31801,0.77001,-1.45325,-1.46467,-1.02833,2.18756,-0.54220 -2.31870,0.76988,-1.45292,-1.46537,-1.02803,2.18765,-0.54232 -2.31939,0.76975,-1.45259,-1.46605,-1.02773,2.18774,-0.54243 -2.32009,0.76962,-1.45228,-1.46673,-1.02744,2.18783,-0.54254 -2.32078,0.76950,-1.45196,-1.46739,-1.02715,2.18791,-0.54265 -2.32148,0.76938,-1.45165,-1.46804,-1.02687,2.18800,-0.54275 -2.32217,0.76926,-1.45135,-1.46868,-1.02659,2.18808,-0.54285 -2.32287,0.76914,-1.45105,-1.46930,-1.02632,2.18816,-0.54296 -2.32356,0.76902,-1.45076,-1.46992,-1.02605,2.18824,-0.54306 -2.32426,0.76891,-1.45047,-1.47053,-1.02579,2.18832,-0.54315 -2.32495,0.76880,-1.45019,-1.47113,-1.02553,2.18840,-0.54325 -2.32565,0.76869,-1.44991,-1.47171,-1.02527,2.18847,-0.54334 -2.32634,0.76858,-1.44958,-1.47240,-1.02497,2.18855,-0.54344 -2.32704,0.76837,-1.44869,-1.47408,-1.02429,2.18869,-0.54362 -2.32773,0.76817,-1.44783,-1.47574,-1.02362,2.18883,-0.54380 -2.32842,0.76798,-1.44697,-1.47736,-1.02295,2.18897,-0.54397 -2.32912,0.76778,-1.44613,-1.47895,-1.02230,2.18910,-0.54414 -2.32981,0.76759,-1.44531,-1.48052,-1.02166,2.18923,-0.54431 -2.33051,0.76741,-1.44450,-1.48206,-1.02103,2.18935,-0.54447 -2.33120,0.76723,-1.44370,-1.48358,-1.02041,2.18948,-0.54463 -2.33190,0.76705,-1.44292,-1.48507,-1.01980,2.18960,-0.54478 -2.33259,0.76688,-1.44215,-1.48653,-1.01919,2.18972,-0.54494 -2.33329,0.76671,-1.44140,-1.48797,-1.01860,2.18983,-0.54508 -2.33398,0.76654,-1.44066,-1.48938,-1.01802,2.18995,-0.54523 -2.33468,0.76638,-1.43993,-1.49077,-1.01744,2.19006,-0.54537 -2.33537,0.76622,-1.43921,-1.49214,-1.01688,2.19017,-0.54551 -2.33607,0.76607,-1.43851,-1.49348,-1.01632,2.19028,-0.54564 -2.33676,0.76591,-1.43781,-1.49480,-1.01578,2.19038,-0.54578 -2.33745,0.76577,-1.43713,-1.49610,-1.01524,2.19048,-0.54591 -2.33815,0.76562,-1.43646,-1.49737,-1.01471,2.19058,-0.54603 -2.33884,0.76548,-1.43581,-1.49862,-1.01419,2.19068,-0.54616 -2.33954,0.76534,-1.43516,-1.49986,-1.01367,2.19077,-0.54628 -2.34023,0.76520,-1.43453,-1.50107,-1.01317,2.19087,-0.54640 -2.34093,0.76507,-1.43390,-1.50226,-1.01267,2.19096,-0.54651 -2.34162,0.76494,-1.43329,-1.50343,-1.01218,2.19105,-0.54663 -2.34232,0.76481,-1.43269,-1.50458,-1.01170,2.19114,-0.54674 -2.34301,0.76468,-1.43209,-1.50571,-1.01122,2.19122,-0.54684 -2.34371,0.76456,-1.43151,-1.50682,-1.01076,2.19131,-0.54695 -2.34440,0.76444,-1.43094,-1.50791,-1.01030,2.19139,-0.54705 -2.34510,0.76433,-1.43038,-1.50898,-1.00984,2.19147,-0.54715 -2.34579,0.76421,-1.42982,-1.51004,-1.00940,2.19155,-0.54725 -2.34649,0.76410,-1.42928,-1.51108,-1.00896,2.19162,-0.54735 -2.34718,0.76399,-1.42875,-1.51210,-1.00853,2.19170,-0.54744 -2.34787,0.76388,-1.42822,-1.51310,-1.00810,2.19177,-0.54753 -2.34857,0.76378,-1.42771,-1.51409,-1.00768,2.19184,-0.54762 -2.34926,0.76368,-1.42720,-1.51506,-1.00727,2.19191,-0.54771 -2.34996,0.76358,-1.42670,-1.51601,-1.00687,2.19198,-0.54779 -2.35065,0.76348,-1.42621,-1.51694,-1.00647,2.19205,-0.54788 -2.35135,0.76338,-1.42573,-1.51786,-1.00608,2.19212,-0.54796 -2.35204,0.76329,-1.42526,-1.51877,-1.00569,2.19218,-0.54804 -2.35274,0.76320,-1.42479,-1.51966,-1.00531,2.19224,-0.54812 -2.35343,0.76311,-1.42434,-1.52053,-1.00493,2.19230,-0.54819 -2.35413,0.76302,-1.42389,-1.52139,-1.00456,2.19236,-0.54827 -2.35482,0.76293,-1.42345,-1.52224,-1.00420,2.19242,-0.54834 -2.35552,0.76285,-1.42301,-1.52307,-1.00384,2.19248,-0.54841 -2.35621,0.76277,-1.42259,-1.52389,-1.00349,2.19253,-0.54848 -2.35690,0.76269,-1.42217,-1.52469,-1.00314,2.19259,-0.54854 -2.35760,0.76261,-1.42175,-1.52548,-1.00280,2.19264,-0.54861 -2.35829,0.76254,-1.42135,-1.52625,-1.00247,2.19269,-0.54867 -2.35899,0.76246,-1.42095,-1.52702,-1.00214,2.19275,-0.54873 -2.35968,0.76239,-1.42056,-1.52777,-1.00181,2.19280,-0.54880 -2.36038,0.76232,-1.42018,-1.52850,-1.00149,2.19284,-0.54885 -2.36107,0.76225,-1.41980,-1.52923,-1.00118,2.19289,-0.54891 -2.36177,0.76218,-1.41943,-1.52994,-1.00086,2.19294,-0.54897 -2.36246,0.76211,-1.41906,-1.53064,-1.00056,2.19298,-0.54902 -2.36316,0.76205,-1.41870,-1.53133,-1.00026,2.19303,-0.54908 -2.36385,0.76199,-1.41835,-1.53201,-0.99996,2.19307,-0.54913 -2.36455,0.76192,-1.41800,-1.53267,-0.99967,2.19311,-0.54918 -2.36524,0.76186,-1.41766,-1.53333,-0.99938,2.19316,-0.54923 -2.36593,0.76181,-1.41733,-1.53397,-0.99910,2.19320,-0.54928 -2.36663,0.76175,-1.41700,-1.53461,-0.99882,2.19323,-0.54933 -2.36732,0.76169,-1.41667,-1.53523,-0.99855,2.19327,-0.54937 -2.36802,0.76164,-1.41635,-1.53584,-0.99828,2.19331,-0.54942 -2.36871,0.76158,-1.41604,-1.53644,-0.99801,2.19335,-0.54946 -2.36941,0.76153,-1.41573,-1.53703,-0.99775,2.19338,-0.54950 -2.37010,0.76149,-1.41548,-1.53752,-0.99753,2.19341,-0.54954 -2.37080,0.76143,-1.41504,-1.53834,-0.99719,2.19345,-0.54959 -2.37149,0.76137,-1.41460,-1.53914,-0.99685,2.19349,-0.54964 -2.37219,0.76131,-1.41418,-1.53993,-0.99651,2.19353,-0.54968 -2.37288,0.76126,-1.41376,-1.54070,-0.99618,2.19357,-0.54973 -2.37358,0.76120,-1.41335,-1.54146,-0.99586,2.19361,-0.54977 -2.37427,0.76115,-1.41294,-1.54221,-0.99554,2.19364,-0.54982 -2.37497,0.76110,-1.41254,-1.54295,-0.99522,2.19368,-0.54986 -2.37566,0.76105,-1.41215,-1.54367,-0.99491,2.19371,-0.54990 -2.37635,0.76100,-1.41177,-1.54438,-0.99461,2.19375,-0.54994 -2.37705,0.76095,-1.41139,-1.54508,-0.99431,2.19378,-0.54998 -2.37774,0.76090,-1.41102,-1.54577,-0.99401,2.19381,-0.55002 -2.37844,0.76086,-1.41065,-1.54645,-0.99372,2.19384,-0.55006 -2.37913,0.76081,-1.41030,-1.54711,-0.99343,2.19387,-0.55009 -2.37983,0.76077,-1.40994,-1.54776,-0.99315,2.19390,-0.55013 -2.38052,0.76073,-1.40960,-1.54841,-0.99287,2.19393,-0.55016 -2.38122,0.76069,-1.40926,-1.54904,-0.99260,2.19396,-0.55020 -2.38191,0.76065,-1.40892,-1.54966,-0.99233,2.19399,-0.55023 -2.38261,0.76061,-1.40859,-1.55027,-0.99207,2.19401,-0.55026 -2.38330,0.76057,-1.40827,-1.55087,-0.99180,2.19404,-0.55029 -2.38400,0.76053,-1.40795,-1.55146,-0.99155,2.19406,-0.55032 -2.38469,0.76050,-1.40765,-1.55202,-0.99131,2.19409,-0.55034 -2.38538,0.76042,-1.40679,-1.55352,-0.99071,2.19414,-0.55042 -2.38608,0.76034,-1.40594,-1.55501,-0.99012,2.19419,-0.55048 -2.38677,0.76026,-1.40511,-1.55646,-0.98953,2.19425,-0.55055 -2.38747,0.76019,-1.40430,-1.55789,-0.98896,2.19430,-0.55062 -2.38816,0.76011,-1.40349,-1.55930,-0.98840,2.19434,-0.55068 -2.38886,0.76004,-1.40271,-1.56068,-0.98784,2.19439,-0.55074 -2.38955,0.75997,-1.40193,-1.56204,-0.98729,2.19444,-0.55080 -2.39025,0.75991,-1.40117,-1.56338,-0.98676,2.19448,-0.55086 -2.39094,0.75984,-1.40042,-1.56469,-0.98623,2.19453,-0.55091 -2.39164,0.75978,-1.39969,-1.56598,-0.98571,2.19457,-0.55097 -2.39233,0.75972,-1.39897,-1.56725,-0.98519,2.19461,-0.55102 -2.39303,0.75966,-1.39826,-1.56849,-0.98469,2.19465,-0.55107 -2.39372,0.75960,-1.39756,-1.56972,-0.98419,2.19469,-0.55112 -2.39442,0.75955,-1.39688,-1.57092,-0.98370,2.19472,-0.55116 -2.39511,0.75949,-1.39620,-1.57211,-0.98322,2.19476,-0.55121 -2.39580,0.75944,-1.39554,-1.57327,-0.98274,2.19480,-0.55125 -2.39650,0.75939,-1.39489,-1.57441,-0.98228,2.19483,-0.55130 -2.39719,0.75934,-1.39425,-1.57554,-0.98182,2.19486,-0.55134 -2.39789,0.75929,-1.39363,-1.57664,-0.98137,2.19490,-0.55138 -2.39858,0.75924,-1.39301,-1.57772,-0.98092,2.19493,-0.55141 -2.39928,0.75920,-1.39240,-1.57879,-0.98048,2.19496,-0.55145 -2.39997,0.75915,-1.39181,-1.57984,-0.98005,2.19499,-0.55149 -2.40067,0.75911,-1.39122,-1.58087,-0.97963,2.19501,-0.55152 -2.40136,0.75907,-1.39064,-1.58188,-0.97921,2.19504,-0.55155 -2.40206,0.75903,-1.39008,-1.58288,-0.97880,2.19507,-0.55159 -2.40275,0.75899,-1.38952,-1.58386,-0.97839,2.19509,-0.55162 -2.40345,0.75895,-1.38898,-1.58482,-0.97799,2.19512,-0.55165 -2.40414,0.75892,-1.38844,-1.58577,-0.97760,2.19514,-0.55168 -2.40483,0.75888,-1.38791,-1.58670,-0.97721,2.19516,-0.55170 -2.40553,0.75885,-1.38739,-1.58761,-0.97683,2.19519,-0.55173 -2.40622,0.75882,-1.38688,-1.58851,-0.97646,2.19521,-0.55175 -2.40692,0.75878,-1.38638,-1.58939,-0.97609,2.19523,-0.55178 -2.40761,0.75875,-1.38589,-1.59026,-0.97573,2.19525,-0.55180 -2.40831,0.75872,-1.38541,-1.59111,-0.97537,2.19527,-0.55182 -2.40900,0.75870,-1.38493,-1.59195,-0.97502,2.19529,-0.55184 -2.40970,0.75867,-1.38446,-1.59278,-0.97467,2.19530,-0.55186 -2.41039,0.75864,-1.38400,-1.59359,-0.97433,2.19532,-0.55188 -2.41109,0.75862,-1.38355,-1.59438,-0.97399,2.19534,-0.55190 -2.41178,0.75859,-1.38311,-1.59517,-0.97366,2.19535,-0.55192 -2.41248,0.75857,-1.38267,-1.59594,-0.97334,2.19537,-0.55194 -2.41317,0.75855,-1.38225,-1.59669,-0.97302,2.19538,-0.55195 -2.41386,0.75852,-1.38182,-1.59744,-0.97270,2.19540,-0.55197 -2.41456,0.75850,-1.38141,-1.59817,-0.97239,2.19541,-0.55198 -2.41525,0.75848,-1.38100,-1.59889,-0.97208,2.19543,-0.55200 -2.41595,0.75846,-1.38060,-1.59959,-0.97178,2.19544,-0.55201 -2.41664,0.75844,-1.38021,-1.60029,-0.97148,2.19545,-0.55202 -2.41734,0.75843,-1.37983,-1.60097,-0.97119,2.19546,-0.55203 -2.41803,0.75841,-1.37945,-1.60164,-0.97091,2.19547,-0.55204 -2.41873,0.75839,-1.37907,-1.60230,-0.97062,2.19548,-0.55206 -2.41942,0.75838,-1.37871,-1.60295,-0.97034,2.19549,-0.55207 -2.42012,0.75836,-1.37835,-1.60359,-0.97007,2.19550,-0.55207 -2.42081,0.75835,-1.37799,-1.60421,-0.96980,2.19551,-0.55208 -2.42151,0.75833,-1.37764,-1.60483,-0.96953,2.19552,-0.55209 -2.42220,0.75832,-1.37730,-1.60544,-0.96927,2.19553,-0.55210 -2.42290,0.75831,-1.37697,-1.60603,-0.96901,2.19554,-0.55211 -2.42359,0.75830,-1.37664,-1.60662,-0.96876,2.19554,-0.55211 -2.42428,0.75829,-1.37631,-1.60719,-0.96851,2.19555,-0.55212 -2.42498,0.75829,-1.37624,-1.60732,-0.96845,2.19555,-0.55212 -2.42567,0.75830,-1.37580,-1.60804,-0.96815,2.19554,-0.55210 -2.42637,0.75831,-1.37538,-1.60875,-0.96786,2.19553,-0.55209 -2.42706,0.75833,-1.37496,-1.60945,-0.96757,2.19552,-0.55207 -2.42776,0.75834,-1.37455,-1.61014,-0.96728,2.19551,-0.55205 -2.42845,0.75836,-1.37415,-1.61081,-0.96700,2.19550,-0.55204 -2.42915,0.75837,-1.37375,-1.61147,-0.96672,2.19549,-0.55202 -2.42984,0.75838,-1.37336,-1.61212,-0.96645,2.19548,-0.55200 -2.43054,0.75840,-1.37298,-1.61276,-0.96618,2.19547,-0.55199 -2.43123,0.75841,-1.37260,-1.61339,-0.96592,2.19546,-0.55197 -2.43193,0.75843,-1.37223,-1.61401,-0.96566,2.19545,-0.55195 -2.43262,0.75845,-1.37187,-1.61462,-0.96540,2.19544,-0.55194 -2.43331,0.75846,-1.37151,-1.61522,-0.96515,2.19542,-0.55192 -2.43401,0.75848,-1.37116,-1.61581,-0.96490,2.19541,-0.55190 -2.43470,0.75849,-1.37081,-1.61639,-0.96465,2.19540,-0.55188 -2.43540,0.75851,-1.37051,-1.61689,-0.96444,2.19539,-0.55186 -2.43609,0.75862,-1.36984,-1.61789,-0.96406,2.19532,-0.55177 -2.43679,0.75872,-1.36919,-1.61887,-0.96368,2.19525,-0.55168 -2.43748,0.75882,-1.36854,-1.61984,-0.96330,2.19518,-0.55158 -2.43818,0.75892,-1.36791,-1.62079,-0.96293,2.19511,-0.55149 -2.43887,0.75902,-1.36729,-1.62172,-0.96257,2.19504,-0.55140 -2.43957,0.75912,-1.36667,-1.62264,-0.96221,2.19497,-0.55132 -2.44026,0.75921,-1.36607,-1.62355,-0.96186,2.19490,-0.55123 -2.44096,0.75931,-1.36548,-1.62443,-0.96151,2.19484,-0.55114 -2.44165,0.75941,-1.36490,-1.62531,-0.96117,2.19477,-0.55105 -2.44235,0.75950,-1.36433,-1.62617,-0.96083,2.19471,-0.55097 -2.44304,0.75959,-1.36377,-1.62701,-0.96050,2.19464,-0.55088 -2.44373,0.75969,-1.36322,-1.62784,-0.96017,2.19458,-0.55080 -2.44443,0.75978,-1.36268,-1.62865,-0.95985,2.19452,-0.55072 -2.44512,0.75987,-1.36214,-1.62945,-0.95953,2.19445,-0.55063 -2.44582,0.75996,-1.36162,-1.63024,-0.95922,2.19439,-0.55055 -2.44651,0.76005,-1.36111,-1.63102,-0.95891,2.19433,-0.55047 -2.44721,0.76013,-1.36060,-1.63178,-0.95861,2.19427,-0.55039 -2.44790,0.76022,-1.36011,-1.63253,-0.95831,2.19421,-0.55031 -2.44860,0.76031,-1.35962,-1.63326,-0.95802,2.19415,-0.55023 -2.44929,0.76039,-1.35914,-1.63399,-0.95773,2.19409,-0.55015 -2.44999,0.76047,-1.35867,-1.63470,-0.95744,2.19403,-0.55007 -2.45068,0.76056,-1.35820,-1.63540,-0.95716,2.19398,-0.55000 -2.45138,0.76064,-1.35775,-1.63608,-0.95688,2.19392,-0.54992 -2.45207,0.76072,-1.35730,-1.63676,-0.95661,2.19386,-0.54985 -2.45276,0.76080,-1.35686,-1.63742,-0.95634,2.19381,-0.54977 -2.45346,0.76088,-1.35643,-1.63808,-0.95608,2.19375,-0.54970 -2.45415,0.76096,-1.35600,-1.63872,-0.95582,2.19370,-0.54963 -2.45485,0.76104,-1.35559,-1.63935,-0.95556,2.19364,-0.54955 -2.45554,0.76111,-1.35518,-1.63997,-0.95531,2.19359,-0.54948 -2.45624,0.76119,-1.35477,-1.64058,-0.95506,2.19354,-0.54941 -2.45693,0.76127,-1.35438,-1.64118,-0.95481,2.19348,-0.54934 -2.45763,0.76134,-1.35399,-1.64177,-0.95457,2.19343,-0.54927 -2.45832,0.76141,-1.35361,-1.64235,-0.95433,2.19338,-0.54920 -2.45902,0.76149,-1.35323,-1.64292,-0.95410,2.19333,-0.54913 -2.45971,0.76156,-1.35286,-1.64348,-0.95386,2.19328,-0.54907 -2.46041,0.76162,-1.35259,-1.64388,-0.95371,2.19324,-0.54901 -2.46110,0.76188,-1.35168,-1.64510,-0.95326,2.19306,-0.54878 -2.46179,0.76213,-1.35078,-1.64631,-0.95282,2.19289,-0.54856 -2.46249,0.76238,-1.34990,-1.64749,-0.95239,2.19271,-0.54834 -2.46318,0.76263,-1.34904,-1.64866,-0.95197,2.19254,-0.54812 -2.46388,0.76288,-1.34819,-1.64980,-0.95155,2.19238,-0.54790 -2.46457,0.76312,-1.34736,-1.65092,-0.95114,2.19221,-0.54769 -2.46527,0.76336,-1.34654,-1.65203,-0.95074,2.19205,-0.54748 -2.46596,0.76359,-1.34574,-1.65311,-0.95034,2.19188,-0.54727 -2.46666,0.76382,-1.34494,-1.65418,-0.94994,2.19172,-0.54706 -2.46735,0.76405,-1.34417,-1.65523,-0.94956,2.19157,-0.54686 -2.46805,0.76428,-1.34340,-1.65626,-0.94917,2.19141,-0.54666 -2.46874,0.76450,-1.34265,-1.65728,-0.94880,2.19126,-0.54646 -2.46944,0.76473,-1.34191,-1.65827,-0.94843,2.19110,-0.54626 -2.47013,0.76494,-1.34119,-1.65925,-0.94806,2.19095,-0.54607 -2.47083,0.76516,-1.34047,-1.66022,-0.94770,2.19080,-0.54588 -2.47152,0.76537,-1.33977,-1.66116,-0.94735,2.19066,-0.54569 -2.47221,0.76558,-1.33909,-1.66209,-0.94700,2.19051,-0.54550 -2.47291,0.76579,-1.33841,-1.66301,-0.94665,2.19037,-0.54531 -2.47360,0.76600,-1.33774,-1.66391,-0.94632,2.19023,-0.54513 -2.47430,0.76620,-1.33709,-1.66479,-0.94598,2.19009,-0.54495 -2.47499,0.76640,-1.33645,-1.66566,-0.94565,2.18995,-0.54477 -2.47569,0.76659,-1.33582,-1.66651,-0.94533,2.18981,-0.54460 -2.47638,0.76679,-1.33520,-1.66735,-0.94501,2.18968,-0.54442 -2.47708,0.76698,-1.33459,-1.66818,-0.94469,2.18954,-0.54425 -2.47777,0.76717,-1.33399,-1.66899,-0.94438,2.18941,-0.54408 -2.47847,0.76736,-1.33340,-1.66979,-0.94408,2.18928,-0.54391 -2.47916,0.76754,-1.33282,-1.67057,-0.94378,2.18915,-0.54375 -2.47986,0.76773,-1.33225,-1.67134,-0.94348,2.18903,-0.54358 -2.48055,0.76791,-1.33169,-1.67210,-0.94319,2.18890,-0.54342 -2.48124,0.76808,-1.33114,-1.67285,-0.94290,2.18878,-0.54326 -2.48194,0.76826,-1.33060,-1.67358,-0.94262,2.18866,-0.54311 -2.48263,0.76843,-1.33007,-1.67430,-0.94234,2.18854,-0.54295 -2.48333,0.76860,-1.32955,-1.67501,-0.94206,2.18842,-0.54280 -2.48402,0.76877,-1.32904,-1.67570,-0.94179,2.18830,-0.54265 -2.48472,0.76894,-1.32854,-1.67639,-0.94152,2.18818,-0.54250 -2.48541,0.76910,-1.32804,-1.67706,-0.94126,2.18807,-0.54235 -2.48611,0.76926,-1.32756,-1.67772,-0.94100,2.18796,-0.54220 -2.48680,0.76942,-1.32708,-1.67837,-0.94074,2.18784,-0.54206 -2.48750,0.76958,-1.32661,-1.67901,-0.94049,2.18773,-0.54192 -2.48819,0.76974,-1.32615,-1.67964,-0.94024,2.18763,-0.54178 -2.48889,0.76989,-1.32569,-1.68025,-0.93999,2.18752,-0.54164 -2.48958,0.77004,-1.32525,-1.68086,-0.93975,2.18741,-0.54150 -2.49028,0.77019,-1.32481,-1.68146,-0.93951,2.18731,-0.54137 -2.49097,0.77034,-1.32438,-1.68205,-0.93928,2.18720,-0.54123 -2.49166,0.77048,-1.32396,-1.68262,-0.93905,2.18710,-0.54110 -2.49236,0.77063,-1.32354,-1.68319,-0.93882,2.18700,-0.54097 -2.49305,0.77077,-1.32313,-1.68375,-0.93860,2.18690,-0.54084 -2.49375,0.77091,-1.32273,-1.68430,-0.93838,2.18680,-0.54072 -2.49444,0.77105,-1.32234,-1.68484,-0.93816,2.18671,-0.54059 -2.49514,0.77118,-1.32195,-1.68537,-0.93794,2.18661,-0.54047 -2.49583,0.77131,-1.32165,-1.68575,-0.93780,2.18653,-0.54036 -2.49653,0.77188,-1.32053,-1.68699,-0.93739,2.18614,-0.53986 -2.49722,0.77244,-1.31943,-1.68821,-0.93699,2.18575,-0.53937 -2.49792,0.77299,-1.31836,-1.68941,-0.93660,2.18537,-0.53889 -2.49861,0.77354,-1.31730,-1.69059,-0.93621,2.18500,-0.53842 -2.49931,0.77407,-1.31626,-1.69174,-0.93583,2.18463,-0.53795 -2.50000,0.77460,-1.31524,-1.69288,-0.93546,2.18426,-0.53748 -2.50069,0.77513,-1.31423,-1.69400,-0.93509,2.18390,-0.53703 -2.50139,0.77564,-1.31324,-1.69510,-0.93472,2.18354,-0.53658 -2.50208,0.77615,-1.31227,-1.69618,-0.93436,2.18319,-0.53613 -2.50278,0.77666,-1.31132,-1.69724,-0.93401,2.18284,-0.53570 -2.50347,0.77715,-1.31038,-1.69828,-0.93366,2.18250,-0.53526 -2.50417,0.77764,-1.30946,-1.69930,-0.93331,2.18216,-0.53484 -2.50486,0.77812,-1.30856,-1.70031,-0.93297,2.18183,-0.53442 -2.50556,0.77860,-1.30767,-1.70130,-0.93263,2.18150,-0.53400 -2.50625,0.77907,-1.30679,-1.70228,-0.93230,2.18118,-0.53359 -2.50695,0.77953,-1.30593,-1.70323,-0.93198,2.18086,-0.53319 -2.50764,0.77999,-1.30509,-1.70418,-0.93166,2.18054,-0.53279 -2.50834,0.78044,-1.30426,-1.70510,-0.93134,2.18023,-0.53240 -2.50903,0.78088,-1.30344,-1.70601,-0.93103,2.17992,-0.53201 -2.50972,0.78132,-1.30264,-1.70690,-0.93072,2.17961,-0.53163 -2.51042,0.78175,-1.30185,-1.70778,-0.93041,2.17931,-0.53125 -2.51111,0.78218,-1.30108,-1.70864,-0.93011,2.17902,-0.53088 -2.51181,0.78260,-1.30032,-1.70949,-0.92982,2.17873,-0.53052 -2.51250,0.78301,-1.29957,-1.71033,-0.92953,2.17844,-0.53016 -2.51320,0.78342,-1.29884,-1.71115,-0.92924,2.17815,-0.52980 -2.51389,0.78383,-1.29812,-1.71196,-0.92896,2.17787,-0.52945 -2.51459,0.78422,-1.29741,-1.71275,-0.92868,2.17759,-0.52910 -2.51528,0.78461,-1.29671,-1.71353,-0.92840,2.17732,-0.52876 -2.51598,0.78500,-1.29602,-1.71429,-0.92813,2.17705,-0.52842 -2.51667,0.78538,-1.29535,-1.71505,-0.92786,2.17679,-0.52809 -2.51737,0.78576,-1.29469,-1.71579,-0.92760,2.17652,-0.52776 -2.51806,0.78613,-1.29404,-1.71652,-0.92734,2.17626,-0.52744 -2.51876,0.78649,-1.29340,-1.71723,-0.92708,2.17601,-0.52712 -2.51945,0.78685,-1.29277,-1.71794,-0.92683,2.17576,-0.52681 -2.52014,0.78721,-1.29216,-1.71863,-0.92658,2.17551,-0.52650 -2.52084,0.78756,-1.29155,-1.71931,-0.92633,2.17526,-0.52619 -2.52153,0.78790,-1.29095,-1.71998,-0.92609,2.17502,-0.52589 -2.52223,0.78824,-1.29037,-1.72063,-0.92585,2.17478,-0.52560 -2.52292,0.78858,-1.28979,-1.72128,-0.92561,2.17455,-0.52530 -2.52362,0.78891,-1.28923,-1.72192,-0.92538,2.17432,-0.52502 -2.52431,0.78923,-1.28867,-1.72254,-0.92515,2.17409,-0.52473 -2.52501,0.78955,-1.28812,-1.72316,-0.92492,2.17386,-0.52445 -2.52570,0.78987,-1.28759,-1.72376,-0.92470,2.17364,-0.52417 -2.52640,0.79018,-1.28706,-1.72435,-0.92448,2.17342,-0.52390 -2.52709,0.79049,-1.28654,-1.72494,-0.92426,2.17320,-0.52363 -2.52779,0.79079,-1.28603,-1.72551,-0.92404,2.17299,-0.52337 -2.52848,0.79109,-1.28553,-1.72608,-0.92383,2.17278,-0.52311 -2.52917,0.79138,-1.28504,-1.72663,-0.92362,2.17257,-0.52285 -2.52987,0.79167,-1.28455,-1.72718,-0.92342,2.17237,-0.52260 -2.53056,0.79196,-1.28408,-1.72771,-0.92321,2.17217,-0.52235 -2.53126,0.79224,-1.28361,-1.72824,-0.92301,2.17197,-0.52210 -2.53195,0.79252,-1.28315,-1.72876,-0.92282,2.17177,-0.52186 -2.53265,0.79279,-1.28270,-1.72927,-0.92262,2.17158,-0.52162 -2.53334,0.79306,-1.28226,-1.72977,-0.92243,2.17139,-0.52138 -2.53404,0.79333,-1.28182,-1.73027,-0.92224,2.17120,-0.52115 -2.53473,0.79359,-1.28139,-1.73075,-0.92205,2.17101,-0.52092 -2.53543,0.79385,-1.28097,-1.73123,-0.92187,2.17083,-0.52069 -2.53612,0.79411,-1.28056,-1.73170,-0.92168,2.17065,-0.52047 -2.53682,0.79436,-1.28015,-1.73216,-0.92151,2.17047,-0.52025 -2.53751,0.79460,-1.27975,-1.73261,-0.92133,2.17030,-0.52003 -2.53821,0.79469,-1.27962,-1.73276,-0.92127,2.17023,-0.51996 -2.53890,0.79509,-1.27906,-1.73332,-0.92108,2.16996,-0.51962 -2.53959,0.79547,-1.27851,-1.73387,-0.92089,2.16969,-0.51928 -2.54029,0.79585,-1.27797,-1.73441,-0.92070,2.16942,-0.51895 -2.54098,0.79623,-1.27744,-1.73494,-0.92052,2.16916,-0.51863 -2.54168,0.79660,-1.27692,-1.73547,-0.92033,2.16890,-0.51831 -2.54237,0.79696,-1.27641,-1.73598,-0.92015,2.16864,-0.51800 -2.54307,0.79732,-1.27591,-1.73649,-0.91998,2.16839,-0.51768 -2.54376,0.79768,-1.27541,-1.73699,-0.91980,2.16814,-0.51738 -2.54446,0.79803,-1.27493,-1.73748,-0.91963,2.16789,-0.51708 -2.54515,0.79837,-1.27445,-1.73796,-0.91945,2.16765,-0.51678 -2.54585,0.79871,-1.27398,-1.73843,-0.91929,2.16741,-0.51649 -2.54654,0.79904,-1.27352,-1.73890,-0.91912,2.16718,-0.51620 -2.54724,0.79937,-1.27307,-1.73936,-0.91895,2.16694,-0.51592 -2.54793,0.79970,-1.27263,-1.73981,-0.91879,2.16672,-0.51564 -2.54862,0.80002,-1.27219,-1.74025,-0.91863,2.16649,-0.51536 -2.54932,0.80033,-1.27176,-1.74069,-0.91847,2.16627,-0.51509 -2.55001,0.80064,-1.27134,-1.74111,-0.91831,2.16605,-0.51482 -2.55071,0.80095,-1.27092,-1.74154,-0.91816,2.16583,-0.51456 -2.55140,0.80125,-1.27051,-1.74195,-0.91801,2.16562,-0.51430 -2.55210,0.80154,-1.27011,-1.74236,-0.91786,2.16541,-0.51404 -2.55279,0.80181,-1.26978,-1.74267,-0.91775,2.16522,-0.51381 -2.55349,0.80266,-1.26888,-1.74332,-0.91760,2.16463,-0.51309 -2.55418,0.80350,-1.26799,-1.74397,-0.91744,2.16404,-0.51238 -2.55488,0.80433,-1.26712,-1.74461,-0.91729,2.16346,-0.51167 -2.55557,0.80515,-1.26626,-1.74523,-0.91713,2.16289,-0.51098 -2.55627,0.80596,-1.26542,-1.74585,-0.91698,2.16232,-0.51030 -2.55696,0.80676,-1.26459,-1.74646,-0.91684,2.16177,-0.50962 -2.55765,0.80754,-1.26378,-1.74705,-0.91669,2.16122,-0.50896 -2.55835,0.80831,-1.26298,-1.74763,-0.91654,2.16068,-0.50831 -2.55904,0.80907,-1.26220,-1.74821,-0.91640,2.16014,-0.50766 -2.55974,0.80982,-1.26143,-1.74877,-0.91625,2.15962,-0.50703 -2.56043,0.81056,-1.26067,-1.74933,-0.91611,2.15910,-0.50641 -2.56113,0.81129,-1.25992,-1.74988,-0.91597,2.15859,-0.50579 -2.56182,0.81201,-1.25919,-1.75041,-0.91583,2.15808,-0.50518 -2.56252,0.81272,-1.25847,-1.75094,-0.91570,2.15758,-0.50459 -2.56321,0.81342,-1.25777,-1.75146,-0.91556,2.15709,-0.50400 -2.56391,0.81410,-1.25707,-1.75197,-0.91542,2.15661,-0.50342 -2.56460,0.81478,-1.25639,-1.75247,-0.91529,2.15613,-0.50285 -2.56530,0.81545,-1.25572,-1.75297,-0.91516,2.15566,-0.50229 -2.56599,0.81611,-1.25507,-1.75345,-0.91503,2.15520,-0.50173 -2.56669,0.81676,-1.25442,-1.75393,-0.91490,2.15474,-0.50119 -2.56738,0.81739,-1.25378,-1.75440,-0.91477,2.15429,-0.50065 -2.56807,0.81802,-1.25316,-1.75486,-0.91464,2.15384,-0.50012 -2.56877,0.81864,-1.25255,-1.75532,-0.91452,2.15340,-0.49960 -2.56946,0.81926,-1.25194,-1.75576,-0.91439,2.15297,-0.49909 -2.57016,0.81986,-1.25135,-1.75620,-0.91427,2.15254,-0.49858 -2.57085,0.82045,-1.25077,-1.75664,-0.91415,2.15212,-0.49808 -2.57155,0.82104,-1.25020,-1.75706,-0.91403,2.15171,-0.49759 -2.57224,0.82161,-1.24964,-1.75748,-0.91391,2.15130,-0.49711 -2.57294,0.82218,-1.24908,-1.75789,-0.91379,2.15090,-0.49663 -2.57363,0.82274,-1.24854,-1.75830,-0.91367,2.15050,-0.49616 -2.57433,0.82329,-1.24801,-1.75869,-0.91355,2.15011,-0.49570 -2.57502,0.82383,-1.24749,-1.75908,-0.91344,2.14972,-0.49524 -2.57572,0.82437,-1.24697,-1.75947,-0.91332,2.14934,-0.49480 -2.57641,0.82489,-1.24646,-1.75985,-0.91321,2.14897,-0.49435 -2.57710,0.82541,-1.24597,-1.76022,-0.91310,2.14860,-0.49392 -2.57780,0.82592,-1.24548,-1.76059,-0.91299,2.14823,-0.49349 -2.57849,0.82643,-1.24500,-1.76095,-0.91288,2.14787,-0.49307 -2.57919,0.82692,-1.24453,-1.76130,-0.91277,2.14752,-0.49265 -2.57988,0.82741,-1.24407,-1.76165,-0.91266,2.14717,-0.49224 -2.58058,0.82789,-1.24361,-1.76199,-0.91256,2.14683,-0.49184 -2.58127,0.82837,-1.24316,-1.76233,-0.91245,2.14649,-0.49144 -2.58197,0.82883,-1.24272,-1.76266,-0.91235,2.14615,-0.49105 -2.58266,0.82929,-1.24229,-1.76299,-0.91225,2.14582,-0.49067 -2.58336,0.82975,-1.24187,-1.76331,-0.91214,2.14550,-0.49029 -2.58405,0.83019,-1.24145,-1.76363,-0.91204,2.14518,-0.48991 -2.58475,0.83063,-1.24104,-1.76394,-0.91194,2.14486,-0.48955 -2.58544,0.83107,-1.24064,-1.76424,-0.91184,2.14455,-0.48918 -2.58614,0.83149,-1.24024,-1.76454,-0.91175,2.14425,-0.48883 -2.58683,0.83191,-1.23985,-1.76484,-0.91165,2.14395,-0.48847 -2.58752,0.83233,-1.23947,-1.76513,-0.91155,2.14365,-0.48813 -2.58822,0.83274,-1.23909,-1.76542,-0.91146,2.14336,-0.48779 -2.58891,0.83314,-1.23873,-1.76570,-0.91136,2.14307,-0.48745 -2.58961,0.83353,-1.23836,-1.76598,-0.91127,2.14278,-0.48712 -2.59030,0.83367,-1.23825,-1.76606,-0.91125,2.14269,-0.48701 -2.59100,0.83421,-1.23782,-1.76631,-0.91118,2.14230,-0.48656 -2.59169,0.83474,-1.23739,-1.76656,-0.91112,2.14192,-0.48612 -2.59239,0.83526,-1.23698,-1.76680,-0.91106,2.14155,-0.48568 -2.59308,0.83578,-1.23657,-1.76705,-0.91099,2.14118,-0.48526 -2.59378,0.83628,-1.23617,-1.76728,-0.91093,2.14081,-0.48483 -2.59447,0.83679,-1.23577,-1.76752,-0.91087,2.14046,-0.48442 -2.59517,0.83728,-1.23538,-1.76775,-0.91081,2.14010,-0.48401 -2.59586,0.83776,-1.23500,-1.76797,-0.91075,2.13975,-0.48361 -2.59655,0.83824,-1.23463,-1.76820,-0.91069,2.13941,-0.48321 -2.59725,0.83871,-1.23426,-1.76842,-0.91062,2.13907,-0.48282 -2.59794,0.83918,-1.23390,-1.76863,-0.91056,2.13874,-0.48244 -2.59864,0.83963,-1.23354,-1.76885,-0.91050,2.13841,-0.48206 -2.59933,0.84008,-1.23319,-1.76905,-0.91045,2.13809,-0.48169 -2.60003,0.84052,-1.23285,-1.76926,-0.91039,2.13777,-0.48132 -2.60072,0.84096,-1.23251,-1.76946,-0.91033,2.13746,-0.48096 -2.60142,0.84139,-1.23218,-1.76966,-0.91027,2.13715,-0.48060 -2.60211,0.84149,-1.23212,-1.76967,-0.91028,2.13708,-0.48052 -2.60281,0.84247,-1.23155,-1.76976,-0.91034,2.13638,-0.47972 -2.60350,0.84344,-1.23099,-1.76984,-0.91040,2.13569,-0.47893 -2.60420,0.84439,-1.23044,-1.76992,-0.91045,2.13502,-0.47815 -2.60489,0.84533,-1.22989,-1.77000,-0.91051,2.13435,-0.47738 -2.60558,0.84625,-1.22936,-1.77008,-0.91056,2.13369,-0.47663 -2.60628,0.84716,-1.22884,-1.77015,-0.91061,2.13304,-0.47589 -2.60697,0.84805,-1.22833,-1.77023,-0.91066,2.13240,-0.47516 -2.60767,0.84894,-1.22782,-1.77031,-0.91071,2.13177,-0.47444 -2.60836,0.84980,-1.22733,-1.77038,-0.91076,2.13115,-0.47373 -2.60906,0.85066,-1.22684,-1.77045,-0.91080,2.13054,-0.47304 -2.60975,0.85150,-1.22637,-1.77053,-0.91084,2.12994,-0.47235 -2.61045,0.85233,-1.22590,-1.77060,-0.91088,2.12935,-0.47168 -2.61114,0.85315,-1.22544,-1.77067,-0.91092,2.12876,-0.47101 -2.61184,0.85395,-1.22498,-1.77074,-0.91096,2.12818,-0.47036 -2.61253,0.85475,-1.22454,-1.77081,-0.91100,2.12761,-0.46971 -2.61323,0.85553,-1.22411,-1.77087,-0.91104,2.12705,-0.46908 -2.61392,0.85630,-1.22368,-1.77094,-0.91107,2.12650,-0.46846 -2.61462,0.85705,-1.22326,-1.77101,-0.91110,2.12596,-0.46784 -2.61531,0.85780,-1.22284,-1.77107,-0.91113,2.12542,-0.46724 -2.61600,0.85853,-1.22244,-1.77114,-0.91116,2.12489,-0.46665 -2.61670,0.85925,-1.22204,-1.77120,-0.91119,2.12437,-0.46606 -2.61739,0.85996,-1.22165,-1.77127,-0.91122,2.12386,-0.46549 -2.61809,0.86067,-1.22127,-1.77133,-0.91125,2.12336,-0.46492 -2.61878,0.86136,-1.22089,-1.77139,-0.91127,2.12286,-0.46436 -2.61948,0.86203,-1.22052,-1.77145,-0.91129,2.12237,-0.46381 -2.62017,0.86270,-1.22015,-1.77151,-0.91132,2.12188,-0.46327 -2.62087,0.86336,-1.21980,-1.77157,-0.91134,2.12141,-0.46274 -2.62156,0.86401,-1.21944,-1.77163,-0.91136,2.12094,-0.46222 -2.62226,0.86465,-1.21910,-1.77169,-0.91138,2.12048,-0.46170 -2.62295,0.86528,-1.21876,-1.77175,-0.91140,2.12002,-0.46119 -2.62365,0.86590,-1.21843,-1.77180,-0.91141,2.11957,-0.46069 -2.62434,0.86651,-1.21810,-1.77186,-0.91143,2.11913,-0.46020 -2.62503,0.86711,-1.21778,-1.77191,-0.91145,2.11870,-0.45972 -2.62573,0.86770,-1.21746,-1.77197,-0.91146,2.11827,-0.45924 -2.62642,0.86828,-1.21715,-1.77202,-0.91147,2.11785,-0.45877 -2.62712,0.86885,-1.21685,-1.77208,-0.91149,2.11743,-0.45831 -2.62781,0.86942,-1.21655,-1.77213,-0.91150,2.11702,-0.45786 -2.62851,0.86997,-1.21626,-1.77218,-0.91151,2.11662,-0.45741 -2.62920,0.87052,-1.21597,-1.77224,-0.91152,2.11622,-0.45697 -2.62990,0.87106,-1.21568,-1.77229,-0.91153,2.11583,-0.45654 -2.63059,0.87159,-1.21540,-1.77234,-0.91154,2.11544,-0.45611 -2.63129,0.87211,-1.21513,-1.77239,-0.91155,2.11506,-0.45569 -2.63198,0.87262,-1.21486,-1.77244,-0.91156,2.11469,-0.45528 -2.63268,0.87313,-1.21460,-1.77249,-0.91156,2.11432,-0.45488 -2.63337,0.87363,-1.21434,-1.77254,-0.91157,2.11395,-0.45448 -2.63407,0.87412,-1.21408,-1.77259,-0.91157,2.11360,-0.45408 -2.63476,0.87460,-1.21383,-1.77264,-0.91158,2.11324,-0.45369 -2.63545,0.87510,-1.21359,-1.77264,-0.91161,2.11288,-0.45329 -2.63615,0.87628,-1.21324,-1.77226,-0.91185,2.11203,-0.45235 -2.63684,0.87745,-1.21289,-1.77190,-0.91210,2.11119,-0.45143 -2.63754,0.87859,-1.21254,-1.77154,-0.91234,2.11036,-0.45052 -2.63823,0.87972,-1.21221,-1.77118,-0.91257,2.10955,-0.44963 -2.63893,0.88083,-1.21188,-1.77083,-0.91280,2.10875,-0.44875 -2.63962,0.88192,-1.21155,-1.77049,-0.91302,2.10796,-0.44789 -2.64032,0.88300,-1.21123,-1.77016,-0.91324,2.10718,-0.44703 -2.64101,0.88406,-1.21092,-1.76983,-0.91346,2.10641,-0.44620 -2.64171,0.88510,-1.21062,-1.76950,-0.91367,2.10566,-0.44538 -2.64240,0.88613,-1.21032,-1.76918,-0.91388,2.10491,-0.44457 -2.64310,0.88714,-1.21003,-1.76887,-0.91408,2.10418,-0.44377 -2.64379,0.88813,-1.20974,-1.76857,-0.91428,2.10346,-0.44299 -2.64448,0.88911,-1.20946,-1.76826,-0.91447,2.10275,-0.44222 -2.64518,0.89008,-1.20918,-1.76797,-0.91466,2.10204,-0.44146 -2.64587,0.89103,-1.20891,-1.76768,-0.91485,2.10135,-0.44071 -2.64657,0.89196,-1.20864,-1.76739,-0.91503,2.10068,-0.43998 -2.64726,0.89288,-1.20838,-1.76711,-0.91521,2.10001,-0.43926 -2.64796,0.89378,-1.20813,-1.76684,-0.91538,2.09935,-0.43855 -2.64865,0.89467,-1.20788,-1.76657,-0.91556,2.09870,-0.43785 -2.64935,0.89555,-1.20763,-1.76630,-0.91572,2.09806,-0.43716 -2.65004,0.89641,-1.20739,-1.76604,-0.91589,2.09743,-0.43649 -2.65074,0.89726,-1.20715,-1.76579,-0.91605,2.09681,-0.43583 -2.65143,0.89810,-1.20692,-1.76554,-0.91621,2.09620,-0.43517 -2.65213,0.89892,-1.20669,-1.76529,-0.91636,2.09559,-0.43453 -2.65282,0.89973,-1.20647,-1.76505,-0.91651,2.09500,-0.43390 -2.65351,0.90053,-1.20625,-1.76481,-0.91666,2.09442,-0.43327 -2.65421,0.90131,-1.20603,-1.76458,-0.91681,2.09384,-0.43266 -2.65490,0.90208,-1.20582,-1.76435,-0.91695,2.09328,-0.43206 -2.65560,0.90284,-1.20562,-1.76412,-0.91709,2.09272,-0.43147 -2.65629,0.90359,-1.20541,-1.76390,-0.91722,2.09217,-0.43089 -2.65699,0.90432,-1.20521,-1.76369,-0.91736,2.09163,-0.43031 -2.65768,0.90505,-1.20502,-1.76348,-0.91749,2.09110,-0.42975 -2.65838,0.90576,-1.20482,-1.76327,-0.91761,2.09057,-0.42919 -2.65907,0.90646,-1.20464,-1.76306,-0.91774,2.09006,-0.42865 -2.65977,0.90715,-1.20445,-1.76286,-0.91786,2.08955,-0.42811 -2.66046,0.90783,-1.20427,-1.76267,-0.91798,2.08905,-0.42758 -2.66116,0.90850,-1.20409,-1.76247,-0.91810,2.08856,-0.42706 -2.66185,0.90916,-1.20391,-1.76229,-0.91821,2.08807,-0.42655 -2.66255,0.90981,-1.20374,-1.76210,-0.91832,2.08759,-0.42605 -2.66324,0.91045,-1.20357,-1.76192,-0.91843,2.08712,-0.42555 -2.66393,0.91107,-1.20341,-1.76174,-0.91854,2.08666,-0.42507 -2.66463,0.91169,-1.20324,-1.76156,-0.91865,2.08620,-0.42459 -2.66532,0.91230,-1.20308,-1.76139,-0.91875,2.08575,-0.42412 -2.66602,0.91290,-1.20293,-1.76122,-0.91885,2.08531,-0.42365 -2.66671,0.91349,-1.20277,-1.76106,-0.91895,2.08488,-0.42320 -2.66741,0.91407,-1.20262,-1.76090,-0.91904,2.08445,-0.42275 -2.66810,0.91464,-1.20247,-1.76074,-0.91914,2.08402,-0.42231 -2.66880,0.91520,-1.20232,-1.76058,-0.91923,2.08361,-0.42187 -2.66949,0.91575,-1.20218,-1.76043,-0.91932,2.08320,-0.42145 -2.67019,0.91629,-1.20204,-1.76028,-0.91941,2.08280,-0.42103 -2.67088,0.91683,-1.20190,-1.76013,-0.91949,2.08240,-0.42061 -2.67158,0.91735,-1.20176,-1.75999,-0.91958,2.08201,-0.42020 -2.67227,0.91787,-1.20163,-1.75985,-0.91966,2.08162,-0.41980 -2.67296,0.91838,-1.20150,-1.75971,-0.91974,2.08124,-0.41941 -2.67366,0.91888,-1.20137,-1.75957,-0.91982,2.08087,-0.41902 -2.67435,0.91938,-1.20124,-1.75944,-0.91990,2.08050,-0.41864 -2.67505,0.91986,-1.20112,-1.75931,-0.91997,2.08014,-0.41827 -2.67574,0.92039,-1.20100,-1.75913,-0.92007,2.07975,-0.41786 -2.67644,0.92131,-1.20098,-1.75850,-0.92037,2.07908,-0.41716 -2.67713,0.92221,-1.20096,-1.75789,-0.92067,2.07841,-0.41647 -2.67783,0.92310,-1.20093,-1.75729,-0.92097,2.07776,-0.41578 -2.67852,0.92398,-1.20091,-1.75670,-0.92126,2.07711,-0.41512 -2.67922,0.92484,-1.20089,-1.75612,-0.92154,2.07648,-0.41446 -2.67991,0.92569,-1.20087,-1.75555,-0.92182,2.07586,-0.41381 -2.68061,0.92652,-1.20085,-1.75499,-0.92209,2.07524,-0.41317 -2.68130,0.92734,-1.20084,-1.75444,-0.92236,2.07464,-0.41255 -2.68199,0.92814,-1.20082,-1.75389,-0.92262,2.07404,-0.41193 -2.68269,0.92894,-1.20080,-1.75336,-0.92288,2.07346,-0.41133 -2.68338,0.92972,-1.20079,-1.75284,-0.92313,2.07288,-0.41074 -2.68408,0.93048,-1.20077,-1.75233,-0.92338,2.07231,-0.41015 -2.68477,0.93124,-1.20076,-1.75182,-0.92363,2.07175,-0.40958 -2.68547,0.93198,-1.20074,-1.75133,-0.92387,2.07120,-0.40901 -2.68616,0.93271,-1.20073,-1.75084,-0.92410,2.07066,-0.40846 -2.68686,0.93343,-1.20072,-1.75036,-0.92434,2.07013,-0.40791 -2.68755,0.93414,-1.20070,-1.74989,-0.92456,2.06961,-0.40738 -2.68825,0.93483,-1.20069,-1.74943,-0.92479,2.06909,-0.40685 -2.68894,0.93552,-1.20068,-1.74898,-0.92500,2.06858,-0.40633 -2.68964,0.93619,-1.20067,-1.74853,-0.92522,2.06808,-0.40582 -2.69033,0.93685,-1.20066,-1.74810,-0.92543,2.06759,-0.40532 -2.69103,0.93750,-1.20065,-1.74767,-0.92564,2.06711,-0.40482 -2.69172,0.93814,-1.20064,-1.74725,-0.92584,2.06663,-0.40434 -2.69241,0.93877,-1.20063,-1.74683,-0.92604,2.06616,-0.40386 -2.69311,0.93939,-1.20062,-1.74643,-0.92623,2.06570,-0.40339 -2.69380,0.94000,-1.20061,-1.74603,-0.92643,2.06525,-0.40293 -2.69450,0.94060,-1.20060,-1.74563,-0.92662,2.06480,-0.40248 -2.69519,0.94119,-1.20059,-1.74525,-0.92680,2.06436,-0.40203 -2.69589,0.94177,-1.20059,-1.74487,-0.92698,2.06393,-0.40160 -2.69658,0.94234,-1.20058,-1.74450,-0.92716,2.06350,-0.40116 -2.69728,0.94290,-1.20057,-1.74413,-0.92733,2.06308,-0.40074 -2.69797,0.94345,-1.20056,-1.74377,-0.92751,2.06267,-0.40032 -2.69867,0.94400,-1.20056,-1.74342,-0.92767,2.06226,-0.39991 -2.69936,0.94453,-1.20055,-1.74307,-0.92784,2.06187,-0.39951 -2.70006,0.94506,-1.20054,-1.74273,-0.92800,2.06147,-0.39912 -2.70075,0.94557,-1.20054,-1.74240,-0.92816,2.06109,-0.39873 -2.70144,0.94608,-1.20053,-1.74207,-0.92832,2.06070,-0.39834 -2.70214,0.94658,-1.20052,-1.74175,-0.92847,2.06033,-0.39797 -2.70283,0.94707,-1.20052,-1.74143,-0.92862,2.05996,-0.39759 -2.70353,0.94756,-1.20051,-1.74112,-0.92877,2.05960,-0.39723 -2.70422,0.94803,-1.20051,-1.74082,-0.92891,2.05924,-0.39687 -2.70492,0.94850,-1.20050,-1.74052,-0.92906,2.05889,-0.39652 -2.70561,0.94896,-1.20050,-1.74023,-0.92920,2.05854,-0.39617 -2.70631,0.94941,-1.20049,-1.73994,-0.92933,2.05820,-0.39583 -2.70700,0.94986,-1.20049,-1.73965,-0.92947,2.05787,-0.39550 -2.70770,0.95030,-1.20048,-1.73938,-0.92960,2.05754,-0.39517 -2.70839,0.95073,-1.20048,-1.73910,-0.92973,2.05722,-0.39484 -2.70909,0.95090,-1.20051,-1.73893,-0.92980,2.05709,-0.39471 -2.70978,0.95178,-1.20087,-1.73777,-0.93030,2.05643,-0.39406 -2.71048,0.95265,-1.20121,-1.73663,-0.93079,2.05579,-0.39341 -2.71117,0.95350,-1.20156,-1.73551,-0.93126,2.05516,-0.39278 -2.71186,0.95433,-1.20190,-1.73441,-0.93174,2.05454,-0.39216 -2.71256,0.95515,-1.20223,-1.73333,-0.93220,2.05394,-0.39155 -2.71325,0.95595,-1.20256,-1.73227,-0.93265,2.05334,-0.39095 -2.71395,0.95674,-1.20288,-1.73122,-0.93310,2.05275,-0.39036 -2.71464,0.95752,-1.20320,-1.73020,-0.93354,2.05217,-0.38978 -2.71534,0.95829,-1.20351,-1.72919,-0.93398,2.05160,-0.38921 -2.71603,0.95904,-1.20382,-1.72820,-0.93440,2.05104,-0.38865 -2.71673,0.95977,-1.20412,-1.72722,-0.93482,2.05049,-0.38811 -2.71742,0.96050,-1.20442,-1.72626,-0.93523,2.04995,-0.38757 -2.71812,0.96121,-1.20471,-1.72532,-0.93564,2.04942,-0.38704 -2.71881,0.96191,-1.20500,-1.72439,-0.93604,2.04890,-0.38652 -2.71951,0.96260,-1.20528,-1.72348,-0.93643,2.04838,-0.38601 -2.72020,0.96327,-1.20556,-1.72259,-0.93682,2.04788,-0.38551 -2.72089,0.96394,-1.20584,-1.72171,-0.93719,2.04738,-0.38502 -2.72159,0.96459,-1.20611,-1.72084,-0.93757,2.04690,-0.38454 -2.72228,0.96523,-1.20638,-1.71999,-0.93793,2.04642,-0.38406 -2.72298,0.96586,-1.20664,-1.71916,-0.93829,2.04594,-0.38360 -2.72367,0.96648,-1.20690,-1.71834,-0.93865,2.04548,-0.38314 -2.72437,0.96709,-1.20715,-1.71753,-0.93900,2.04502,-0.38269 -2.72506,0.96769,-1.20740,-1.71674,-0.93934,2.04457,-0.38225 -2.72576,0.96827,-1.20765,-1.71596,-0.93968,2.04413,-0.38181 -2.72645,0.96885,-1.20789,-1.71519,-0.94001,2.04370,-0.38139 -2.72715,0.96942,-1.20813,-1.71444,-0.94033,2.04327,-0.38097 -2.72784,0.96998,-1.20836,-1.71370,-0.94065,2.04286,-0.38056 -2.72854,0.97052,-1.20859,-1.71297,-0.94097,2.04244,-0.38015 -2.72923,0.97106,-1.20882,-1.71226,-0.94128,2.04204,-0.37976 -2.72992,0.97159,-1.20904,-1.71155,-0.94158,2.04164,-0.37937 -2.73062,0.97211,-1.20926,-1.71086,-0.94188,2.04125,-0.37898 -2.73131,0.97262,-1.20948,-1.71018,-0.94218,2.04086,-0.37861 -2.73201,0.97313,-1.20969,-1.70952,-0.94247,2.04048,-0.37824 -2.73270,0.97362,-1.20990,-1.70886,-0.94275,2.04011,-0.37787 -2.73340,0.97411,-1.21010,-1.70822,-0.94303,2.03975,-0.37752 -2.73409,0.97458,-1.21030,-1.70758,-0.94330,2.03939,-0.37717 -2.73479,0.97505,-1.21050,-1.70696,-0.94358,2.03903,-0.37682 -2.73548,0.97551,-1.21070,-1.70635,-0.94384,2.03869,-0.37648 -2.73618,0.97596,-1.21089,-1.70575,-0.94410,2.03834,-0.37615 -2.73687,0.97641,-1.21108,-1.70516,-0.94436,2.03801,-0.37582 -2.73757,0.97685,-1.21126,-1.70458,-0.94461,2.03768,-0.37550 -2.73826,0.97728,-1.21145,-1.70401,-0.94486,2.03735,-0.37519 -2.73896,0.97770,-1.21163,-1.70345,-0.94511,2.03703,-0.37488 -2.73965,0.97811,-1.21180,-1.70290,-0.94535,2.03672,-0.37457 -2.74034,0.97852,-1.21198,-1.70236,-0.94558,2.03641,-0.37427 -2.74104,0.97892,-1.21215,-1.70183,-0.94581,2.03611,-0.37398 -2.74173,0.97932,-1.21232,-1.70130,-0.94604,2.03581,-0.37369 -2.74243,0.97970,-1.21248,-1.70079,-0.94627,2.03551,-0.37341 -2.74312,0.98009,-1.21264,-1.70028,-0.94649,2.03523,-0.37313 -2.74382,0.98046,-1.21280,-1.69979,-0.94670,2.03494,-0.37286 -2.74451,0.98083,-1.21296,-1.69930,-0.94692,2.03466,-0.37259 -2.74521,0.98119,-1.21311,-1.69882,-0.94713,2.03439,-0.37232 -2.74590,0.98154,-1.21326,-1.69835,-0.94733,2.03412,-0.37206 -2.74660,0.98189,-1.21341,-1.69789,-0.94753,2.03385,-0.37181 -2.74729,0.98224,-1.21356,-1.69743,-0.94773,2.03359,-0.37155 -2.74799,0.98257,-1.21370,-1.69699,-0.94793,2.03334,-0.37131 -2.74868,0.98291,-1.21384,-1.69655,-0.94812,2.03308,-0.37107 -2.74937,0.98323,-1.21398,-1.69612,-0.94831,2.03284,-0.37083 -2.75007,0.98355,-1.21412,-1.69569,-0.94850,2.03259,-0.37059 -2.75076,0.98373,-1.21421,-1.69543,-0.94861,2.03246,-0.37046 -2.75146,0.98427,-1.21461,-1.69444,-0.94902,2.03205,-0.37007 -2.75215,0.98480,-1.21500,-1.69348,-0.94943,2.03165,-0.36968 -2.75285,0.98532,-1.21538,-1.69253,-0.94983,2.03126,-0.36930 -2.75354,0.98583,-1.21575,-1.69160,-0.95022,2.03088,-0.36893 -2.75424,0.98633,-1.21612,-1.69068,-0.95061,2.03050,-0.36857 -2.75493,0.98683,-1.21649,-1.68978,-0.95099,2.03013,-0.36821 -2.75563,0.98731,-1.21684,-1.68889,-0.95136,2.02976,-0.36786 -2.75632,0.98779,-1.21719,-1.68802,-0.95173,2.02940,-0.36751 -2.75702,0.98825,-1.21754,-1.68716,-0.95209,2.02905,-0.36717 -2.75771,0.98871,-1.21788,-1.68632,-0.95245,2.02871,-0.36684 -2.75841,0.98916,-1.21821,-1.68549,-0.95280,2.02837,-0.36651 -2.75910,0.98961,-1.21854,-1.68468,-0.95314,2.02803,-0.36619 -2.75979,0.99004,-1.21887,-1.68388,-0.95348,2.02770,-0.36588 -2.76049,0.99047,-1.21918,-1.68309,-0.95381,2.02738,-0.36557 -2.76118,0.99089,-1.21950,-1.68232,-0.95414,2.02706,-0.36527 -2.76188,0.99130,-1.21980,-1.68156,-0.95447,2.02675,-0.36497 -2.76257,0.99170,-1.22010,-1.68081,-0.95478,2.02645,-0.36468 -2.76327,0.99210,-1.22040,-1.68007,-0.95510,2.02615,-0.36439 -2.76396,0.99249,-1.22069,-1.67935,-0.95540,2.02585,-0.36411 -2.76466,0.99287,-1.22098,-1.67864,-0.95571,2.02556,-0.36383 -2.76535,0.99325,-1.22126,-1.67795,-0.95600,2.02528,-0.36356 -2.76605,0.99362,-1.22154,-1.67726,-0.95630,2.02499,-0.36329 -2.76674,0.99398,-1.22181,-1.67659,-0.95658,2.02472,-0.36303 -2.76744,0.99434,-1.22208,-1.67592,-0.95687,2.02445,-0.36277 -2.76813,0.99469,-1.22234,-1.67527,-0.95715,2.02418,-0.36252 -2.76882,0.99503,-1.22260,-1.67463,-0.95742,2.02392,-0.36227 -2.76952,0.99537,-1.22286,-1.67400,-0.95769,2.02367,-0.36202 -2.77021,0.99570,-1.22311,-1.67338,-0.95795,2.02341,-0.36178 -2.77091,0.99603,-1.22336,-1.67278,-0.95822,2.02317,-0.36155 -2.77160,0.99635,-1.22360,-1.67218,-0.95847,2.02292,-0.36132 -2.77230,0.99666,-1.22384,-1.67159,-0.95872,2.02268,-0.36109 -2.77299,0.99697,-1.22407,-1.67102,-0.95897,2.02245,-0.36087 -2.77369,0.99728,-1.22430,-1.67045,-0.95922,2.02222,-0.36065 -2.77438,0.99758,-1.22453,-1.66989,-0.95946,2.02199,-0.36043 -2.77508,0.99787,-1.22475,-1.66934,-0.95969,2.02177,-0.36022 -2.77577,0.99816,-1.22497,-1.66880,-0.95993,2.02155,-0.36001 -2.77647,0.99844,-1.22518,-1.66827,-0.96016,2.02133,-0.35981 -2.77716,0.99872,-1.22539,-1.66775,-0.96038,2.02112,-0.35961 -2.77785,0.99899,-1.22560,-1.66724,-0.96060,2.02091,-0.35941 -2.77855,0.99926,-1.22580,-1.66674,-0.96082,2.02071,-0.35922 -2.77924,0.99952,-1.22600,-1.66624,-0.96103,2.02051,-0.35903 -2.77994,0.99978,-1.22620,-1.66576,-0.96124,2.02031,-0.35885 -2.78063,1.00003,-1.22639,-1.66528,-0.96145,2.02011,-0.35866 -2.78133,1.00015,-1.22650,-1.66503,-0.96156,2.02003,-0.35858 -2.78202,1.00054,-1.22699,-1.66399,-0.96198,2.01973,-0.35830 -2.78272,1.00093,-1.22748,-1.66297,-0.96240,2.01944,-0.35802 -2.78341,1.00130,-1.22795,-1.66196,-0.96281,2.01916,-0.35775 -2.78411,1.00167,-1.22842,-1.66097,-0.96322,2.01888,-0.35749 -2.78480,1.00204,-1.22888,-1.66000,-0.96362,2.01860,-0.35723 -2.78550,1.00239,-1.22933,-1.65904,-0.96401,2.01833,-0.35697 -2.78619,1.00274,-1.22978,-1.65810,-0.96440,2.01807,-0.35672 -2.78689,1.00309,-1.23021,-1.65717,-0.96478,2.01781,-0.35647 -2.78758,1.00342,-1.23064,-1.65626,-0.96516,2.01755,-0.35623 -2.78827,1.00375,-1.23107,-1.65537,-0.96553,2.01730,-0.35600 -2.78897,1.00408,-1.23148,-1.65449,-0.96589,2.01705,-0.35576 -2.78966,1.00440,-1.23189,-1.65362,-0.96625,2.01681,-0.35554 -2.79036,1.00471,-1.23229,-1.65277,-0.96660,2.01657,-0.35531 -2.79105,1.00502,-1.23269,-1.65194,-0.96695,2.01634,-0.35509 -2.79175,1.00532,-1.23307,-1.65111,-0.96729,2.01611,-0.35488 -2.79244,1.00561,-1.23346,-1.65031,-0.96763,2.01589,-0.35467 -2.79314,1.00590,-1.23383,-1.64951,-0.96796,2.01567,-0.35446 -2.79383,1.00619,-1.23420,-1.64873,-0.96829,2.01545,-0.35426 -2.79453,1.00647,-1.23456,-1.64796,-0.96861,2.01524,-0.35406 -2.79522,1.00674,-1.23492,-1.64721,-0.96892,2.01503,-0.35386 -2.79592,1.00701,-1.23527,-1.64647,-0.96923,2.01483,-0.35367 -2.79661,1.00727,-1.23561,-1.64574,-0.96954,2.01463,-0.35348 -2.79730,1.00753,-1.23595,-1.64502,-0.96984,2.01443,-0.35330 -2.79800,1.00779,-1.23628,-1.64431,-0.97014,2.01423,-0.35311 -2.79869,1.00804,-1.23661,-1.64362,-0.97043,2.01404,-0.35294 -2.79939,1.00828,-1.23693,-1.64294,-0.97072,2.01386,-0.35276 -2.80008,1.00852,-1.23725,-1.64227,-0.97100,2.01367,-0.35259 -2.80078,1.00876,-1.23756,-1.64161,-0.97128,2.01349,-0.35242 -2.80147,1.00899,-1.23787,-1.64096,-0.97155,2.01332,-0.35226 -2.80217,1.00922,-1.23817,-1.64032,-0.97182,2.01314,-0.35210 -2.80286,1.00944,-1.23846,-1.63970,-0.97209,2.01297,-0.35194 -2.80356,1.00966,-1.23875,-1.63908,-0.97235,2.01281,-0.35178 -2.80425,1.00987,-1.23904,-1.63848,-0.97260,2.01264,-0.35163 -2.80495,1.01009,-1.23932,-1.63788,-0.97286,2.01248,-0.35148 -2.80564,1.01029,-1.23959,-1.63730,-0.97310,2.01232,-0.35133 -2.80634,1.01050,-1.23986,-1.63672,-0.97335,2.01217,-0.35119 -2.80703,1.01070,-1.24013,-1.63616,-0.97359,2.01202,-0.35105 -2.80772,1.01089,-1.24039,-1.63560,-0.97383,2.01187,-0.35091 -2.80842,1.01108,-1.24065,-1.63505,-0.97406,2.01172,-0.35077 -2.80911,1.01127,-1.24090,-1.63452,-0.97429,2.01157,-0.35064 -2.80981,1.01146,-1.24115,-1.63399,-0.97452,2.01143,-0.35051 -2.81050,1.01164,-1.24142,-1.63343,-0.97475,2.01129,-0.35038 -2.81120,1.01184,-1.24191,-1.63251,-0.97512,2.01114,-0.35024 -2.81189,1.01203,-1.24239,-1.63161,-0.97548,2.01100,-0.35010 -2.81259,1.01221,-1.24286,-1.63072,-0.97583,2.01085,-0.34997 -2.81328,1.01240,-1.24333,-1.62985,-0.97618,2.01071,-0.34984 -2.81398,1.01258,-1.24379,-1.62900,-0.97653,2.01058,-0.34971 -2.81467,1.01275,-1.24424,-1.62816,-0.97687,2.01044,-0.34959 -2.81537,1.01293,-1.24468,-1.62733,-0.97720,2.01031,-0.34946 -2.81606,1.01309,-1.24511,-1.62651,-0.97753,2.01018,-0.34934 -2.81675,1.01326,-1.24554,-1.62571,-0.97785,2.01005,-0.34923 -2.81745,1.01342,-1.24596,-1.62493,-0.97817,2.00993,-0.34911 -2.81814,1.01358,-1.24637,-1.62415,-0.97849,2.00981,-0.34900 -2.81884,1.01374,-1.24678,-1.62339,-0.97880,2.00969,-0.34889 -2.81953,1.01389,-1.24718,-1.62264,-0.97910,2.00957,-0.34878 -2.82023,1.01404,-1.24757,-1.62191,-0.97940,2.00946,-0.34868 -2.82092,1.01419,-1.24795,-1.62118,-0.97970,2.00934,-0.34857 -2.82162,1.01433,-1.24833,-1.62047,-0.97999,2.00923,-0.34847 -2.82231,1.01447,-1.24871,-1.61977,-0.98027,2.00913,-0.34837 -2.82301,1.01461,-1.24907,-1.61908,-0.98055,2.00902,-0.34827 -2.82370,1.01474,-1.24943,-1.61840,-0.98083,2.00892,-0.34818 -2.82440,1.01488,-1.24978,-1.61774,-0.98111,2.00882,-0.34809 -2.82509,1.01501,-1.25013,-1.61709,-0.98137,2.00872,-0.34799 -2.82578,1.01513,-1.25047,-1.61644,-0.98164,2.00862,-0.34790 -2.82648,1.01526,-1.25081,-1.61581,-0.98190,2.00852,-0.34782 -2.82717,1.01538,-1.25114,-1.61519,-0.98216,2.00843,-0.34773 -2.82787,1.01550,-1.25146,-1.61458,-0.98241,2.00834,-0.34765 -2.82856,1.01562,-1.25178,-1.61397,-0.98266,2.00825,-0.34756 -2.82926,1.01573,-1.25210,-1.61338,-0.98291,2.00816,-0.34748 -2.82995,1.01585,-1.25241,-1.61280,-0.98315,2.00807,-0.34740 -2.83065,1.01596,-1.25271,-1.61223,-0.98339,2.00799,-0.34733 -2.83134,1.01606,-1.25301,-1.61167,-0.98362,2.00790,-0.34725 -2.83204,1.01617,-1.25330,-1.61111,-0.98385,2.00782,-0.34718 -2.83273,1.01617,-1.25341,-1.61093,-0.98392,2.00782,-0.34717 -2.83343,1.01611,-1.25423,-1.60965,-0.98439,2.00787,-0.34722 -2.83412,1.01604,-1.25504,-1.60840,-0.98485,2.00791,-0.34727 -2.83482,1.01598,-1.25584,-1.60716,-0.98530,2.00796,-0.34731 -2.83551,1.01591,-1.25662,-1.60595,-0.98575,2.00801,-0.34736 -2.83620,1.01585,-1.25739,-1.60475,-0.98619,2.00805,-0.34741 -2.83690,1.01579,-1.25815,-1.60358,-0.98663,2.00810,-0.34745 -2.83759,1.01572,-1.25889,-1.60242,-0.98706,2.00814,-0.34750 -2.83829,1.01566,-1.25962,-1.60128,-0.98748,2.00819,-0.34754 -2.83898,1.01560,-1.26033,-1.60016,-0.98790,2.00824,-0.34759 -2.83968,1.01553,-1.26104,-1.59906,-0.98831,2.00828,-0.34763 -2.84037,1.01547,-1.26173,-1.59798,-0.98872,2.00833,-0.34768 -2.84107,1.01541,-1.26241,-1.59691,-0.98912,2.00837,-0.34772 -2.84176,1.01535,-1.26308,-1.59586,-0.98952,2.00842,-0.34777 -2.84246,1.01529,-1.26374,-1.59483,-0.98991,2.00846,-0.34781 -2.84315,1.01523,-1.26439,-1.59382,-0.99029,2.00850,-0.34786 -2.84385,1.01517,-1.26502,-1.59282,-0.99067,2.00855,-0.34790 -2.84454,1.01511,-1.26565,-1.59184,-0.99104,2.00859,-0.34794 -2.84523,1.01505,-1.26626,-1.59087,-0.99141,2.00864,-0.34799 -2.84593,1.01499,-1.26687,-1.58992,-0.99177,2.00868,-0.34803 -2.84662,1.01493,-1.26746,-1.58899,-0.99213,2.00872,-0.34807 -2.84732,1.01487,-1.26804,-1.58807,-0.99248,2.00876,-0.34812 -2.84801,1.01481,-1.26862,-1.58716,-0.99283,2.00881,-0.34816 -2.84871,1.01475,-1.26918,-1.58627,-0.99318,2.00885,-0.34820 -2.84940,1.01470,-1.26973,-1.58540,-0.99351,2.00889,-0.34824 -2.85010,1.01464,-1.27028,-1.58454,-0.99385,2.00893,-0.34829 -2.85079,1.01458,-1.27081,-1.58369,-0.99418,2.00897,-0.34833 -2.85149,1.01453,-1.27134,-1.58286,-0.99450,2.00902,-0.34837 -2.85218,1.01447,-1.27186,-1.58204,-0.99482,2.00906,-0.34841 -2.85288,1.01442,-1.27237,-1.58123,-0.99513,2.00910,-0.34845 -2.85357,1.01436,-1.27287,-1.58044,-0.99544,2.00914,-0.34849 -2.85427,1.01431,-1.27336,-1.57966,-0.99575,2.00918,-0.34853 -2.85496,1.01426,-1.27384,-1.57889,-0.99605,2.00922,-0.34857 -2.85565,1.01420,-1.27432,-1.57814,-0.99635,2.00926,-0.34861 -2.85635,1.01415,-1.27478,-1.57740,-0.99664,2.00930,-0.34865 -2.85704,1.01410,-1.27524,-1.57667,-0.99693,2.00934,-0.34869 -2.85774,1.01405,-1.27569,-1.57595,-0.99721,2.00938,-0.34873 -2.85843,1.01399,-1.27614,-1.57524,-0.99749,2.00941,-0.34877 -2.85913,1.01394,-1.27657,-1.57455,-0.99777,2.00945,-0.34881 -2.85982,1.01389,-1.27700,-1.57386,-0.99804,2.00949,-0.34885 -2.86052,1.01384,-1.27742,-1.57319,-0.99831,2.00953,-0.34888 -2.86121,1.01379,-1.27783,-1.57253,-0.99858,2.00956,-0.34892 -2.86191,1.01374,-1.27824,-1.57188,-0.99884,2.00960,-0.34896 -2.86260,1.01369,-1.27864,-1.57124,-0.99909,2.00964,-0.34900 -2.86330,1.01365,-1.27903,-1.57061,-0.99935,2.00968,-0.34903 -2.86399,1.01360,-1.27942,-1.56999,-0.99960,2.00971,-0.34907 -2.86468,1.01355,-1.27980,-1.56938,-0.99984,2.00975,-0.34911 -2.86538,1.01350,-1.28017,-1.56878,-1.00009,2.00978,-0.34914 -2.86607,1.01345,-1.28054,-1.56819,-1.00032,2.00982,-0.34918 -2.86677,1.01341,-1.28090,-1.56761,-1.00056,2.00985,-0.34921 -2.86746,1.01337,-1.28109,-1.56733,-1.00067,2.00988,-0.34924 -2.86816,1.01312,-1.28185,-1.56624,-1.00107,2.01007,-0.34942 -2.86885,1.01287,-1.28261,-1.56516,-1.00146,2.01025,-0.34960 -2.86955,1.01263,-1.28335,-1.56411,-1.00184,2.01044,-0.34977 -2.87024,1.01239,-1.28408,-1.56306,-1.00222,2.01062,-0.34994 -2.87094,1.01215,-1.28480,-1.56204,-1.00260,2.01079,-0.35011 -2.87163,1.01192,-1.28551,-1.56103,-1.00297,2.01097,-0.35028 -2.87233,1.01169,-1.28620,-1.56004,-1.00333,2.01114,-0.35045 -2.87302,1.01147,-1.28688,-1.55907,-1.00369,2.01131,-0.35061 -2.87371,1.01124,-1.28755,-1.55811,-1.00405,2.01148,-0.35077 -2.87441,1.01102,-1.28821,-1.55716,-1.00440,2.01164,-0.35093 -2.87510,1.01081,-1.28886,-1.55623,-1.00475,2.01180,-0.35108 -2.87580,1.01060,-1.28949,-1.55532,-1.00509,2.01196,-0.35124 -2.87649,1.01039,-1.29012,-1.55442,-1.00543,2.01212,-0.35139 -2.87719,1.01018,-1.29073,-1.55353,-1.00576,2.01227,-0.35154 -2.87788,1.00998,-1.29134,-1.55266,-1.00609,2.01243,-0.35168 -2.87858,1.00978,-1.29193,-1.55180,-1.00641,2.01258,-0.35183 -2.87927,1.00958,-1.29251,-1.55096,-1.00673,2.01273,-0.35197 -2.87997,1.00939,-1.29309,-1.55013,-1.00705,2.01287,-0.35211 -2.88066,1.00919,-1.29365,-1.54931,-1.00736,2.01302,-0.35225 -2.88136,1.00901,-1.29421,-1.54851,-1.00766,2.01316,-0.35239 -2.88205,1.00882,-1.29475,-1.54772,-1.00797,2.01330,-0.35252 -2.88275,1.00864,-1.29529,-1.54694,-1.00827,2.01344,-0.35266 -2.88344,1.00846,-1.29582,-1.54618,-1.00856,2.01358,-0.35279 -2.88413,1.00828,-1.29633,-1.54542,-1.00885,2.01371,-0.35292 -2.88483,1.00810,-1.29684,-1.54468,-1.00914,2.01384,-0.35305 -2.88552,1.00793,-1.29734,-1.54395,-1.00942,2.01397,-0.35317 -2.88622,1.00776,-1.29784,-1.54324,-1.00970,2.01410,-0.35330 -2.88691,1.00759,-1.29832,-1.54253,-1.00997,2.01423,-0.35342 -2.88761,1.00743,-1.29879,-1.54184,-1.01024,2.01435,-0.35354 -2.88830,1.00726,-1.29926,-1.54115,-1.01051,2.01448,-0.35366 -2.88900,1.00710,-1.29972,-1.54048,-1.01077,2.01460,-0.35378 -2.88969,1.00695,-1.30017,-1.53982,-1.01103,2.01472,-0.35389 -2.89039,1.00679,-1.30062,-1.53917,-1.01129,2.01484,-0.35401 -2.89108,1.00664,-1.30105,-1.53853,-1.01154,2.01495,-0.35412 -2.89178,1.00648,-1.30148,-1.53790,-1.01179,2.01507,-0.35423 -2.89247,1.00634,-1.30191,-1.53728,-1.01204,2.01518,-0.35434 -2.89316,1.00619,-1.30232,-1.53667,-1.01228,2.01529,-0.35445 -2.89386,1.00604,-1.30273,-1.53607,-1.01252,2.01540,-0.35456 -2.89455,1.00590,-1.30313,-1.53548,-1.01276,2.01551,-0.35466 -2.89525,1.00576,-1.30352,-1.53490,-1.01299,2.01562,-0.35477 -2.89594,1.00562,-1.30391,-1.53432,-1.01322,2.01572,-0.35487 -2.89664,1.00545,-1.30431,-1.53377,-1.01343,2.01585,-0.35499 -2.89733,1.00470,-1.30557,-1.53222,-1.01394,2.01642,-0.35553 -2.89803,1.00396,-1.30681,-1.53068,-1.01445,2.01697,-0.35606 -2.89872,1.00323,-1.30803,-1.52918,-1.01495,2.01751,-0.35658 -2.89942,1.00252,-1.30923,-1.52769,-1.01545,2.01805,-0.35709 -2.90011,1.00181,-1.31041,-1.52623,-1.01594,2.01857,-0.35760 -2.90081,1.00112,-1.31157,-1.52479,-1.01643,2.01909,-0.35809 -2.90150,1.00045,-1.31271,-1.52337,-1.01691,2.01960,-0.35858 -2.90220,0.99978,-1.31383,-1.52197,-1.01739,2.02010,-0.35906 -2.90289,0.99912,-1.31494,-1.52060,-1.01786,2.02059,-0.35953 -2.90358,0.99848,-1.31602,-1.51924,-1.01832,2.02107,-0.36000 -2.90428,0.99785,-1.31708,-1.51791,-1.01878,2.02154,-0.36045 -2.90497,0.99723,-1.31813,-1.51660,-1.01924,2.02201,-0.36090 -2.90567,0.99662,-1.31916,-1.51530,-1.01969,2.02247,-0.36134 -2.90636,0.99602,-1.32017,-1.51403,-1.02013,2.02292,-0.36178 -2.90706,0.99543,-1.32116,-1.51278,-1.02057,2.02336,-0.36221 -2.90775,0.99484,-1.32214,-1.51154,-1.02101,2.02380,-0.36263 -2.90845,0.99427,-1.32310,-1.51033,-1.02144,2.02423,-0.36304 -2.90914,0.99371,-1.32405,-1.50913,-1.02186,2.02465,-0.36345 -2.90984,0.99316,-1.32497,-1.50795,-1.02228,2.02506,-0.36385 -2.91053,0.99262,-1.32589,-1.50679,-1.02270,2.02547,-0.36424 -2.91123,0.99209,-1.32678,-1.50565,-1.02311,2.02587,-0.36463 -2.91192,0.99156,-1.32767,-1.50453,-1.02351,2.02626,-0.36501 -2.91261,0.99105,-1.32853,-1.50342,-1.02391,2.02665,-0.36539 -2.91331,0.99054,-1.32939,-1.50233,-1.02431,2.02703,-0.36576 -2.91400,0.99005,-1.33022,-1.50126,-1.02470,2.02741,-0.36612 -2.91470,0.98956,-1.33105,-1.50020,-1.02509,2.02777,-0.36648 -2.91539,0.98907,-1.33186,-1.49916,-1.02547,2.02814,-0.36683 -2.91609,0.98860,-1.33265,-1.49814,-1.02585,2.02849,-0.36718 -2.91678,0.98814,-1.33344,-1.49713,-1.02622,2.02884,-0.36752 -2.91748,0.98768,-1.33421,-1.49614,-1.02659,2.02919,-0.36785 -2.91817,0.98723,-1.33496,-1.49516,-1.02695,2.02953,-0.36818 -2.91887,0.98679,-1.33571,-1.49420,-1.02731,2.02986,-0.36851 -2.91956,0.98635,-1.33644,-1.49325,-1.02767,2.03019,-0.36883 -2.92026,0.98592,-1.33716,-1.49232,-1.02802,2.03051,-0.36914 -2.92095,0.98550,-1.33786,-1.49140,-1.02836,2.03083,-0.36945 -2.92164,0.98509,-1.33856,-1.49050,-1.02871,2.03114,-0.36976 -2.92234,0.98468,-1.33924,-1.48961,-1.02904,2.03145,-0.37006 -2.92303,0.98428,-1.33991,-1.48873,-1.02938,2.03175,-0.37035 -2.92373,0.98389,-1.34057,-1.48787,-1.02971,2.03205,-0.37064 -2.92442,0.98350,-1.34122,-1.48702,-1.03003,2.03234,-0.37093 -2.92512,0.98312,-1.34186,-1.48619,-1.03035,2.03263,-0.37121 -2.92581,0.98275,-1.34249,-1.48536,-1.03067,2.03291,-0.37149 -2.92651,0.98238,-1.34311,-1.48455,-1.03098,2.03319,-0.37176 -2.92720,0.98202,-1.34371,-1.48376,-1.03129,2.03346,-0.37203 -2.92790,0.98166,-1.34431,-1.48297,-1.03160,2.03373,-0.37229 -2.92859,0.98131,-1.34490,-1.48220,-1.03190,2.03400,-0.37255 -2.92929,0.98097,-1.34547,-1.48144,-1.03220,2.03426,-0.37281 -2.92998,0.98063,-1.34604,-1.48069,-1.03249,2.03451,-0.37306 -2.93068,0.98030,-1.34660,-1.47995,-1.03278,2.03476,-0.37331 -2.93137,0.97997,-1.34714,-1.47923,-1.03307,2.03501,-0.37355 -2.93206,0.97965,-1.34768,-1.47852,-1.03335,2.03526,-0.37379 -2.93276,0.97933,-1.34821,-1.47781,-1.03363,2.03550,-0.37403 -2.93345,0.97902,-1.34873,-1.47712,-1.03391,2.03573,-0.37426 -2.93415,0.97871,-1.34925,-1.47644,-1.03418,2.03597,-0.37449 -2.93484,0.97841,-1.34975,-1.47577,-1.03445,2.03620,-0.37471 -2.93554,0.97811,-1.35024,-1.47511,-1.03471,2.03642,-0.37494 -2.93623,0.97782,-1.35073,-1.47446,-1.03497,2.03664,-0.37515 -2.93693,0.97753,-1.35121,-1.47382,-1.03523,2.03686,-0.37537 -2.93762,0.97725,-1.35168,-1.47319,-1.03549,2.03708,-0.37558 -2.93832,0.97697,-1.35214,-1.47257,-1.03574,2.03729,-0.37579 -2.93901,0.97670,-1.35260,-1.47196,-1.03599,2.03749,-0.37600 -2.93971,0.97643,-1.35304,-1.47136,-1.03623,2.03770,-0.37620 -2.94040,0.97616,-1.35348,-1.47077,-1.03647,2.03790,-0.37640 -2.94109,0.97590,-1.35392,-1.47019,-1.03671,2.03810,-0.37659 -2.94179,0.97565,-1.35434,-1.46961,-1.03695,2.03829,-0.37678 -2.94248,0.97539,-1.35476,-1.46905,-1.03718,2.03848,-0.37697 -2.94318,0.97515,-1.35517,-1.46849,-1.03741,2.03867,-0.37716 -2.94387,0.97490,-1.35557,-1.46795,-1.03764,2.03886,-0.37734 -2.94457,0.97466,-1.35597,-1.46741,-1.03786,2.03904,-0.37753 -2.94526,0.97443,-1.35636,-1.46688,-1.03808,2.03922,-0.37770 -2.94596,0.97424,-1.35663,-1.46654,-1.03821,2.03936,-0.37784 -2.94665,0.97335,-1.35780,-1.46522,-1.03865,2.04003,-0.37850 -2.94735,0.97247,-1.35895,-1.46392,-1.03909,2.04068,-0.37914 -2.94804,0.97160,-1.36008,-1.46263,-1.03952,2.04132,-0.37978 -2.94874,0.97076,-1.36120,-1.46137,-1.03994,2.04196,-0.38040 -2.94943,0.96992,-1.36229,-1.46013,-1.04037,2.04258,-0.38101 -2.95013,0.96911,-1.36336,-1.45890,-1.04079,2.04319,-0.38162 -2.95082,0.96830,-1.36442,-1.45769,-1.04120,2.04378,-0.38221 -2.95151,0.96751,-1.36546,-1.45650,-1.04161,2.04437,-0.38279 -2.95221,0.96674,-1.36648,-1.45533,-1.04202,2.04495,-0.38336 -2.95290,0.96598,-1.36748,-1.45417,-1.04242,2.04552,-0.38393 -2.95360,0.96523,-1.36847,-1.45303,-1.04282,2.04608,-0.38448 -2.95429,0.96450,-1.36944,-1.45191,-1.04321,2.04662,-0.38503 -2.95499,0.96377,-1.37040,-1.45081,-1.04360,2.04716,-0.38556 -2.95568,0.96307,-1.37134,-1.44972,-1.04399,2.04769,-0.38609 -2.95638,0.96237,-1.37226,-1.44865,-1.04437,2.04821,-0.38660 -2.95707,0.96169,-1.37317,-1.44759,-1.04474,2.04872,-0.38711 -2.95777,0.96101,-1.37406,-1.44655,-1.04512,2.04922,-0.38761 -2.95846,0.96035,-1.37493,-1.44553,-1.04549,2.04972,-0.38811 -2.95916,0.95971,-1.37580,-1.44452,-1.04585,2.05020,-0.38859 -2.95985,0.95907,-1.37664,-1.44352,-1.04622,2.05068,-0.38907 -2.96054,0.95844,-1.37748,-1.44254,-1.04657,2.05114,-0.38953 -2.96124,0.95783,-1.37830,-1.44158,-1.04693,2.05160,-0.38999 -2.96193,0.95722,-1.37910,-1.44063,-1.04728,2.05206,-0.39045 -2.96263,0.95663,-1.37990,-1.43969,-1.04762,2.05250,-0.39089 -2.96332,0.95605,-1.38068,-1.43877,-1.04797,2.05294,-0.39133 -2.96402,0.95547,-1.38144,-1.43786,-1.04831,2.05336,-0.39176 -2.96471,0.95491,-1.38219,-1.43697,-1.04864,2.05379,-0.39218 -2.96541,0.95436,-1.38294,-1.43609,-1.04897,2.05420,-0.39260 -2.96610,0.95381,-1.38366,-1.43522,-1.04930,2.05461,-0.39301 -2.96680,0.95328,-1.38438,-1.43437,-1.04962,2.05501,-0.39341 -2.96749,0.95275,-1.38508,-1.43353,-1.04994,2.05540,-0.39381 -2.96819,0.95223,-1.38578,-1.43270,-1.05026,2.05579,-0.39420 -2.96888,0.95173,-1.38646,-1.43188,-1.05057,2.05617,-0.39458 -2.96957,0.95123,-1.38712,-1.43108,-1.05088,2.05654,-0.39496 -2.97027,0.95074,-1.38778,-1.43028,-1.05119,2.05691,-0.39533 -2.97096,0.95026,-1.38843,-1.42950,-1.05149,2.05727,-0.39570 -2.97166,0.94978,-1.38907,-1.42874,-1.05179,2.05762,-0.39605 -2.97235,0.94932,-1.38969,-1.42798,-1.05208,2.05797,-0.39641 -2.97305,0.94886,-1.39031,-1.42723,-1.05237,2.05832,-0.39675 -2.97374,0.94841,-1.39091,-1.42650,-1.05266,2.05865,-0.39710 -2.97444,0.94797,-1.39151,-1.42578,-1.05295,2.05899,-0.39743 -2.97513,0.94753,-1.39209,-1.42507,-1.05323,2.05931,-0.39776 -2.97583,0.94711,-1.39267,-1.42436,-1.05350,2.05963,-0.39809 -2.97652,0.94669,-1.39323,-1.42367,-1.05378,2.05995,-0.39841 -2.97722,0.94628,-1.39379,-1.42299,-1.05405,2.06026,-0.39872 -2.97791,0.94587,-1.39433,-1.42232,-1.05432,2.06056,-0.39903 -2.97861,0.94547,-1.39487,-1.42166,-1.05458,2.06086,-0.39933 -2.97930,0.94508,-1.39540,-1.42101,-1.05485,2.06115,-0.39963 -2.97999,0.94469,-1.39592,-1.42038,-1.05510,2.06144,-0.39993 -2.98069,0.94431,-1.39643,-1.41975,-1.05536,2.06173,-0.40022 -2.98138,0.94394,-1.39693,-1.41913,-1.05561,2.06201,-0.40050 -2.98208,0.94358,-1.39743,-1.41851,-1.05586,2.06228,-0.40078 -2.98277,0.94322,-1.39791,-1.41791,-1.05611,2.06255,-0.40106 -2.98347,0.94286,-1.39839,-1.41732,-1.05635,2.06282,-0.40133 -2.98416,0.94251,-1.39886,-1.41674,-1.05659,2.06308,-0.40160 -2.98486,0.94217,-1.39932,-1.41616,-1.05683,2.06334,-0.40186 -2.98555,0.94184,-1.39977,-1.41560,-1.05706,2.06359,-0.40212 -2.98625,0.94151,-1.40022,-1.41504,-1.05729,2.06384,-0.40237 -2.98694,0.94118,-1.40066,-1.41449,-1.05752,2.06409,-0.40262 -2.98764,0.94086,-1.40109,-1.41395,-1.05775,2.06433,-0.40287 -2.98833,0.94055,-1.40152,-1.41342,-1.05797,2.06456,-0.40311 -2.98902,0.94024,-1.40193,-1.41289,-1.05819,2.06480,-0.40335 -2.98972,0.93993,-1.40234,-1.41238,-1.05841,2.06503,-0.40359 -2.99041,0.93964,-1.40275,-1.41187,-1.05862,2.06525,-0.40382 -2.99111,0.93934,-1.40314,-1.41137,-1.05884,2.06547,-0.40404 -2.99180,0.93905,-1.40353,-1.41088,-1.05904,2.06569,-0.40427 -2.99250,0.93877,-1.40392,-1.41039,-1.05925,2.06590,-0.40449 -2.99319,0.93853,-1.40423,-1.41000,-1.05942,2.06608,-0.40467 -2.99389,0.93813,-1.40473,-1.40942,-1.05965,2.06638,-0.40498 -2.99458,0.93773,-1.40523,-1.40884,-1.05987,2.06668,-0.40528 -2.99528,0.93734,-1.40571,-1.40828,-1.06010,2.06697,-0.40558 -2.99597,0.93696,-1.40618,-1.40772,-1.06032,2.06726,-0.40588 -2.99667,0.93658,-1.40665,-1.40717,-1.06054,2.06754,-0.40617 -2.99736,0.93621,-1.40711,-1.40663,-1.06076,2.06782,-0.40645 -2.99806,0.93585,-1.40756,-1.40610,-1.06097,2.06809,-0.40673 -2.99875,0.93549,-1.40801,-1.40557,-1.06118,2.06836,-0.40701 -2.99944,0.93513,-1.40844,-1.40506,-1.06139,2.06862,-0.40728 -3.00014,0.93479,-1.40887,-1.40455,-1.06160,2.06888,-0.40754 -3.00083,0.93445,-1.40929,-1.40405,-1.06180,2.06914,-0.40781 -3.00153,0.93411,-1.40971,-1.40355,-1.06200,2.06939,-0.40806 -3.00222,0.93378,-1.41012,-1.40307,-1.06220,2.06963,-0.40832 -3.00292,0.93346,-1.41052,-1.40259,-1.06240,2.06988,-0.40857 -3.00361,0.93314,-1.41091,-1.40212,-1.06259,2.07011,-0.40881 -3.00431,0.93283,-1.41130,-1.40165,-1.06278,2.07035,-0.40906 -3.00500,0.93252,-1.41168,-1.40120,-1.06297,2.07058,-0.40929 -3.00570,0.93222,-1.41206,-1.40075,-1.06316,2.07080,-0.40953 -3.00639,0.93209,-1.41222,-1.40057,-1.06323,2.07091,-0.40963 -3.00709,0.93133,-1.41307,-1.39969,-1.06353,2.07146,-0.41021 -3.00778,0.93058,-1.41391,-1.39882,-1.06383,2.07201,-0.41077 -3.00847,0.92985,-1.41473,-1.39797,-1.06412,2.07255,-0.41133 -3.00917,0.92914,-1.41554,-1.39713,-1.06441,2.07308,-0.41187 -3.00986,0.92843,-1.41633,-1.39630,-1.06470,2.07360,-0.41241 -3.01056,0.92774,-1.41711,-1.39548,-1.06499,2.07411,-0.41294 -3.01125,0.92706,-1.41788,-1.39467,-1.06527,2.07461,-0.41346 -3.01195,0.92639,-1.41864,-1.39388,-1.06556,2.07511,-0.41397 -3.01264,0.92574,-1.41938,-1.39309,-1.06583,2.07559,-0.41447 -3.01334,0.92509,-1.42011,-1.39232,-1.06611,2.07607,-0.41496 -3.01403,0.92446,-1.42083,-1.39156,-1.06638,2.07653,-0.41545 -3.01473,0.92384,-1.42153,-1.39081,-1.06666,2.07699,-0.41593 -3.01542,0.92323,-1.42223,-1.39007,-1.06692,2.07744,-0.41640 -3.01612,0.92263,-1.42291,-1.38934,-1.06719,2.07789,-0.41686 -3.01681,0.92204,-1.42358,-1.38863,-1.06745,2.07832,-0.41731 -3.01750,0.92146,-1.42424,-1.38792,-1.06771,2.07875,-0.41776 -3.01820,0.92089,-1.42489,-1.38722,-1.06797,2.07917,-0.41819 -3.01889,0.92033,-1.42553,-1.38654,-1.06822,2.07958,-0.41862 -3.01959,0.91978,-1.42616,-1.38586,-1.06848,2.07999,-0.41905 -3.02028,0.91924,-1.42678,-1.38519,-1.06873,2.08039,-0.41946 -3.02098,0.91872,-1.42738,-1.38454,-1.06897,2.08078,-0.41987 -3.02167,0.91820,-1.42798,-1.38389,-1.06922,2.08116,-0.42028 -3.02237,0.91768,-1.42857,-1.38325,-1.06946,2.08154,-0.42067 -3.02306,0.91718,-1.42914,-1.38262,-1.06970,2.08191,-0.42106 -3.02376,0.91669,-1.42971,-1.38201,-1.06994,2.08228,-0.42144 -3.02445,0.91620,-1.43027,-1.38140,-1.07017,2.08264,-0.42182 -3.02515,0.91573,-1.43082,-1.38079,-1.07040,2.08299,-0.42219 -3.02584,0.91526,-1.43136,-1.38020,-1.07063,2.08334,-0.42255 -3.02654,0.91480,-1.43189,-1.37962,-1.07086,2.08368,-0.42291 -3.02723,0.91435,-1.43241,-1.37904,-1.07108,2.08401,-0.42326 -3.02792,0.91390,-1.43292,-1.37848,-1.07131,2.08434,-0.42361 -3.02862,0.91347,-1.43343,-1.37792,-1.07153,2.08467,-0.42395 -3.02931,0.91304,-1.43392,-1.37737,-1.07174,2.08498,-0.42429 -3.03001,0.91262,-1.43441,-1.37683,-1.07196,2.08530,-0.42461 -3.03070,0.91220,-1.43489,-1.37629,-1.07217,2.08560,-0.42494 -3.03140,0.91180,-1.43536,-1.37577,-1.07238,2.08591,-0.42526 -3.03209,0.91140,-1.43582,-1.37525,-1.07259,2.08620,-0.42557 -3.03279,0.91100,-1.43628,-1.37474,-1.07279,2.08649,-0.42588 -3.03348,0.91062,-1.43673,-1.37424,-1.07300,2.08678,-0.42618 -3.03418,0.91024,-1.43717,-1.37374,-1.07320,2.08706,-0.42648 -3.03487,0.90986,-1.43760,-1.37325,-1.07340,2.08734,-0.42677 -3.03557,0.90950,-1.43803,-1.37277,-1.07359,2.08761,-0.42706 -3.03626,0.90914,-1.43845,-1.37230,-1.07379,2.08788,-0.42734 -3.03695,0.90878,-1.43886,-1.37183,-1.07398,2.08814,-0.42762 -3.03765,0.90843,-1.43927,-1.37137,-1.07417,2.08840,-0.42789 -3.03834,0.90809,-1.43966,-1.37092,-1.07436,2.08865,-0.42816 -3.03904,0.90776,-1.44006,-1.37048,-1.07454,2.08890,-0.42843 -3.03973,0.90743,-1.44044,-1.37004,-1.07472,2.08915,-0.42869 -3.04043,0.90710,-1.44082,-1.36960,-1.07490,2.08939,-0.42895 -3.04112,0.90678,-1.44119,-1.36918,-1.07508,2.08963,-0.42920 -3.04182,0.90647,-1.44156,-1.36876,-1.07526,2.08986,-0.42945 -3.04251,0.90633,-1.44172,-1.36858,-1.07533,2.08996,-0.42955 -3.04321,0.90588,-1.44221,-1.36806,-1.07553,2.09029,-0.42990 -3.04390,0.90545,-1.44269,-1.36755,-1.07573,2.09062,-0.43025 -3.04460,0.90502,-1.44317,-1.36704,-1.07593,2.09093,-0.43058 -3.04529,0.90459,-1.44363,-1.36654,-1.07612,2.09125,-0.43092 -3.04598,0.90418,-1.44409,-1.36605,-1.07631,2.09155,-0.43124 -3.04668,0.90377,-1.44455,-1.36557,-1.07650,2.09185,-0.43156 -3.04737,0.90337,-1.44499,-1.36510,-1.07669,2.09215,-0.43188 -3.04807,0.90297,-1.44543,-1.36463,-1.07688,2.09244,-0.43219 -3.04876,0.90259,-1.44586,-1.36416,-1.07706,2.09273,-0.43249 -3.04946,0.90221,-1.44628,-1.36371,-1.07724,2.09301,-0.43279 -3.05015,0.90183,-1.44669,-1.36326,-1.07742,2.09329,-0.43309 -3.05085,0.90146,-1.44710,-1.36282,-1.07760,2.09356,-0.43338 -3.05154,0.90110,-1.44750,-1.36238,-1.07778,2.09382,-0.43366 -3.05224,0.90075,-1.44790,-1.36195,-1.07795,2.09409,-0.43394 -3.05293,0.90040,-1.44829,-1.36153,-1.07812,2.09435,-0.43422 -3.05363,0.90006,-1.44867,-1.36111,-1.07829,2.09460,-0.43449 -3.05432,0.89972,-1.44904,-1.36070,-1.07846,2.09485,-0.43476 -3.05502,0.89939,-1.44941,-1.36030,-1.07863,2.09509,-0.43502 -3.05571,0.89906,-1.44978,-1.35990,-1.07879,2.09533,-0.43528 -3.05640,0.89874,-1.45013,-1.35952,-1.07895,2.09557,-0.43553 -3.05710,0.89813,-1.45077,-1.35889,-1.07917,2.09602,-0.43601 -3.05779,0.89752,-1.45140,-1.35828,-1.07939,2.09646,-0.43649 -3.05849,0.89693,-1.45203,-1.35767,-1.07960,2.09689,-0.43695 -3.05918,0.89635,-1.45264,-1.35706,-1.07982,2.09732,-0.43741 -3.05988,0.89578,-1.45324,-1.35647,-1.08003,2.09774,-0.43786 -3.06057,0.89521,-1.45383,-1.35589,-1.08025,2.09815,-0.43830 -3.06127,0.89466,-1.45441,-1.35531,-1.08045,2.09856,-0.43873 -3.06196,0.89412,-1.45499,-1.35474,-1.08066,2.09895,-0.43916 -3.06266,0.89359,-1.45555,-1.35418,-1.08087,2.09934,-0.43958 -3.06335,0.89306,-1.45610,-1.35363,-1.08107,2.09973,-0.43999 -3.06405,0.89255,-1.45665,-1.35309,-1.08127,2.10010,-0.44040 -3.06474,0.89204,-1.45718,-1.35255,-1.08147,2.10047,-0.44080 -3.06543,0.89155,-1.45771,-1.35202,-1.08167,2.10084,-0.44119 -3.06613,0.89106,-1.45823,-1.35150,-1.08187,2.10119,-0.44157 -3.06682,0.89058,-1.45873,-1.35099,-1.08206,2.10154,-0.44195 -3.06752,0.89011,-1.45923,-1.35048,-1.08226,2.10189,-0.44233 -3.06821,0.88965,-1.45973,-1.34998,-1.08245,2.10223,-0.44269 -3.06891,0.88919,-1.46021,-1.34949,-1.08263,2.10256,-0.44305 -3.06960,0.88875,-1.46069,-1.34901,-1.08282,2.10289,-0.44341 -3.07030,0.88831,-1.46115,-1.34853,-1.08301,2.10321,-0.44375 -3.07099,0.88788,-1.46161,-1.34806,-1.08319,2.10352,-0.44410 -3.07169,0.88746,-1.46207,-1.34760,-1.08337,2.10383,-0.44443 -3.07238,0.88704,-1.46251,-1.34714,-1.08355,2.10414,-0.44476 -3.07308,0.88663,-1.46295,-1.34669,-1.08373,2.10444,-0.44509 -3.07377,0.88623,-1.46338,-1.34625,-1.08390,2.10473,-0.44541 -3.07447,0.88584,-1.46380,-1.34581,-1.08408,2.10502,-0.44572 -3.07516,0.88545,-1.46422,-1.34538,-1.08425,2.10531,-0.44603 -3.07585,0.88507,-1.46462,-1.34495,-1.08442,2.10559,-0.44634 -3.07655,0.88470,-1.46503,-1.34453,-1.08459,2.10586,-0.44664 -3.07724,0.88433,-1.46542,-1.34412,-1.08475,2.10613,-0.44693 -3.07794,0.88397,-1.46581,-1.34371,-1.08492,2.10640,-0.44722 -3.07863,0.88361,-1.46619,-1.34331,-1.08508,2.10666,-0.44750 -3.07933,0.88326,-1.46657,-1.34292,-1.08524,2.10691,-0.44778 -3.08002,0.88292,-1.46694,-1.34253,-1.08540,2.10716,-0.44806 -3.08072,0.88259,-1.46730,-1.34215,-1.08556,2.10741,-0.44833 -3.08141,0.88225,-1.46766,-1.34177,-1.08571,2.10765,-0.44859 -3.08211,0.88193,-1.46801,-1.34140,-1.08587,2.10789,-0.44885 -3.08280,0.88185,-1.46810,-1.34131,-1.08590,2.10796,-0.44892 -3.08350,0.88133,-1.46863,-1.34079,-1.08609,2.10833,-0.44933 -3.08419,0.88082,-1.46916,-1.34029,-1.08628,2.10870,-0.44974 -3.08488,0.88032,-1.46967,-1.33979,-1.08646,2.10907,-0.45014 -3.08558,0.87983,-1.47018,-1.33930,-1.08665,2.10943,-0.45053 -3.08627,0.87934,-1.47068,-1.33882,-1.08683,2.10978,-0.45092 -3.08697,0.87887,-1.47117,-1.33834,-1.08701,2.11012,-0.45129 -3.08766,0.87840,-1.47165,-1.33787,-1.08718,2.11046,-0.45167 -3.08836,0.87795,-1.47212,-1.33740,-1.08736,2.11080,-0.45203 -3.08905,0.87750,-1.47259,-1.33695,-1.08753,2.11113,-0.45239 -3.08975,0.87706,-1.47305,-1.33650,-1.08771,2.11145,-0.45275 -3.09044,0.87662,-1.47350,-1.33605,-1.08788,2.11176,-0.45309 -3.09114,0.87620,-1.47394,-1.33561,-1.08805,2.11207,-0.45343 -3.09183,0.87578,-1.47438,-1.33518,-1.08821,2.11238,-0.45377 -3.09253,0.87537,-1.47480,-1.33476,-1.08838,2.11268,-0.45410 -3.09322,0.87496,-1.47523,-1.33434,-1.08855,2.11298,-0.45443 -3.09391,0.87457,-1.47564,-1.33392,-1.08871,2.11326,-0.45475 -3.09461,0.87418,-1.47605,-1.33352,-1.08887,2.11355,-0.45506 -3.09530,0.87379,-1.47645,-1.33311,-1.08903,2.11383,-0.45537 -3.09600,0.87342,-1.47684,-1.33272,-1.08919,2.11410,-0.45567 -3.09669,0.87305,-1.47723,-1.33233,-1.08934,2.11437,-0.45597 -3.09739,0.87268,-1.47761,-1.33194,-1.08950,2.11464,-0.45626 -3.09808,0.87233,-1.47798,-1.33156,-1.08965,2.11490,-0.45655 -3.09878,0.87198,-1.47835,-1.33119,-1.08980,2.11516,-0.45684 -3.09947,0.87163,-1.47871,-1.33082,-1.08995,2.11541,-0.45711 -3.10017,0.87129,-1.47907,-1.33046,-1.09010,2.11566,-0.45739 -3.10086,0.87096,-1.47942,-1.33010,-1.09025,2.11590,-0.45766 -3.10156,0.87063,-1.47976,-1.32975,-1.09039,2.11614,-0.45792 -3.10225,0.87058,-1.47981,-1.32971,-1.09041,2.11618,-0.45796 -3.10295,0.87009,-1.48029,-1.32928,-1.09056,2.11653,-0.45836 -3.10364,0.86960,-1.48076,-1.32885,-1.09072,2.11689,-0.45875 -3.10433,0.86913,-1.48122,-1.32844,-1.09087,2.11723,-0.45913 -3.10503,0.86866,-1.48167,-1.32802,-1.09103,2.11757,-0.45951 -3.10572,0.86820,-1.48211,-1.32762,-1.09118,2.11790,-0.45988 -3.10642,0.86775,-1.48255,-1.32722,-1.09133,2.11823,-0.46024 -3.10711,0.86731,-1.48298,-1.32682,-1.09148,2.11855,-0.46060 -3.10781,0.86687,-1.48340,-1.32643,-1.09163,2.11887,-0.46095 -3.10850,0.86644,-1.48382,-1.32605,-1.09177,2.11918,-0.46130 -3.10920,0.86602,-1.48423,-1.32567,-1.09192,2.11949,-0.46164 -3.10989,0.86561,-1.48463,-1.32530,-1.09206,2.11979,-0.46197 -3.11059,0.86521,-1.48503,-1.32493,-1.09220,2.12008,-0.46230 -3.11128,0.86481,-1.48542,-1.32457,-1.09234,2.12037,-0.46262 -3.11198,0.86442,-1.48580,-1.32421,-1.09248,2.12065,-0.46294 -3.11267,0.86403,-1.48617,-1.32386,-1.09262,2.12093,-0.46325 -3.11336,0.86366,-1.48654,-1.32351,-1.09276,2.12121,-0.46356 -3.11406,0.86328,-1.48691,-1.32317,-1.09289,2.12148,-0.46386 -3.11475,0.86292,-1.48726,-1.32283,-1.09303,2.12174,-0.46416 -3.11545,0.86256,-1.48762,-1.32250,-1.09316,2.12200,-0.46445 -3.11614,0.86221,-1.48796,-1.32217,-1.09329,2.12226,-0.46474 -3.11684,0.86186,-1.48830,-1.32185,-1.09342,2.12251,-0.46502 -3.11753,0.86153,-1.48864,-1.32153,-1.09355,2.12276,-0.46530 -3.11823,0.86132,-1.48884,-1.32134,-1.09363,2.12291,-0.46547 -3.11892,0.86092,-1.48921,-1.32101,-1.09376,2.12320,-0.46579 -3.11962,0.86052,-1.48958,-1.32069,-1.09388,2.12349,-0.46611 -3.12031,0.86014,-1.48994,-1.32037,-1.09401,2.12377,-0.46643 -3.12101,0.85976,-1.49029,-1.32005,-1.09413,2.12404,-0.46674 -3.12170,0.85938,-1.49064,-1.31974,-1.09425,2.12431,-0.46704 -3.12240,0.85902,-1.49098,-1.31944,-1.09437,2.12458,-0.46734 -3.12309,0.85866,-1.49132,-1.31913,-1.09449,2.12484,-0.46763 -3.12378,0.85830,-1.49165,-1.31884,-1.09461,2.12510,-0.46792 -3.12448,0.85795,-1.49197,-1.31854,-1.09473,2.12535,-0.46821 -3.12517,0.85763,-1.49227,-1.31829,-1.09483,2.12558,-0.46847 -3.12587,0.85717,-1.49262,-1.31805,-1.09491,2.12591,-0.46884 -3.12656,0.85672,-1.49296,-1.31782,-1.09499,2.12624,-0.46921 -3.12726,0.85628,-1.49330,-1.31759,-1.09507,2.12656,-0.46957 -3.12795,0.85584,-1.49363,-1.31737,-1.09515,2.12688,-0.46993 -3.12865,0.85541,-1.49396,-1.31714,-1.09523,2.12719,-0.47028 -3.12934,0.85499,-1.49428,-1.31693,-1.09530,2.12749,-0.47062 -3.13004,0.85458,-1.49460,-1.31671,-1.09538,2.12779,-0.47096 -3.13073,0.85417,-1.49491,-1.31649,-1.09546,2.12808,-0.47129 -3.13143,0.85378,-1.49521,-1.31628,-1.09554,2.12837,-0.47162 -3.13212,0.85338,-1.49552,-1.31607,-1.09562,2.12865,-0.47194 -3.13281,0.85300,-1.49581,-1.31587,-1.09569,2.12893,-0.47225 -3.13351,0.85262,-1.49610,-1.31567,-1.09577,2.12920,-0.47256 -3.13420,0.85225,-1.49639,-1.31546,-1.09584,2.12947,-0.47287 -3.13490,0.85189,-1.49667,-1.31527,-1.09592,2.12974,-0.47317 -3.13559,0.85176,-1.49675,-1.31523,-1.09593,2.12983,-0.47327 -3.13629,0.85122,-1.49702,-1.31522,-1.09591,2.13022,-0.47371 -3.13698,0.85069,-1.49728,-1.31521,-1.09589,2.13060,-0.47414 -3.13768,0.85017,-1.49753,-1.31519,-1.09588,2.13097,-0.47457 -3.13837,0.84965,-1.49778,-1.31518,-1.09586,2.13134,-0.47499 -3.13907,0.84915,-1.49803,-1.31517,-1.09585,2.13170,-0.47540 -3.13976,0.84866,-1.49827,-1.31516,-1.09583,2.13205,-0.47581 -3.14046,0.84817,-1.49851,-1.31514,-1.09582,2.13240,-0.47620 -3.14115,0.84770,-1.49875,-1.31513,-1.09581,2.13274,-0.47659 -3.14184,0.84723,-1.49898,-1.31511,-1.09579,2.13308,-0.47698 -3.14254,0.84677,-1.49920,-1.31510,-1.09578,2.13341,-0.47735 -3.14323,0.84632,-1.49943,-1.31508,-1.09578,2.13373,-0.47772 -3.14393,0.84588,-1.49965,-1.31507,-1.09577,2.13405,-0.47809 -3.14462,0.84544,-1.49986,-1.31505,-1.09576,2.13437,-0.47845 -3.14532,0.84502,-1.50008,-1.31503,-1.09575,2.13467,-0.47880 -3.14601,0.84460,-1.50028,-1.31502,-1.09575,2.13497,-0.47914 -3.14671,0.84419,-1.50049,-1.31500,-1.09574,2.13527,-0.47948 -3.14740,0.84378,-1.50069,-1.31498,-1.09574,2.13556,-0.47982 -3.14810,0.84338,-1.50089,-1.31496,-1.09573,2.13585,-0.48014 -3.14879,0.84299,-1.50108,-1.31494,-1.09573,2.13613,-0.48047 -3.14949,0.84261,-1.50127,-1.31492,-1.09573,2.13640,-0.48078 -3.15018,0.84234,-1.50140,-1.31493,-1.09572,2.13660,-0.48101 -3.15088,0.84186,-1.50154,-1.31509,-1.09563,2.13695,-0.48141 -3.15157,0.84138,-1.50167,-1.31525,-1.09555,2.13728,-0.48179 -3.15226,0.84092,-1.50180,-1.31541,-1.09546,2.13761,-0.48218 -3.15296,0.84047,-1.50193,-1.31557,-1.09538,2.13794,-0.48255 -3.15365,0.84002,-1.50206,-1.31572,-1.09530,2.13826,-0.48292 -3.15435,0.83958,-1.50219,-1.31586,-1.09523,2.13857,-0.48328 -3.15504,0.83915,-1.50231,-1.31601,-1.09515,2.13888,-0.48364 -3.15574,0.83873,-1.50243,-1.31615,-1.09508,2.13918,-0.48399 -3.15643,0.83832,-1.50255,-1.31629,-1.09501,2.13948,-0.48433 -3.15713,0.83791,-1.50267,-1.31643,-1.09494,2.13977,-0.48467 -3.15782,0.83751,-1.50278,-1.31656,-1.09487,2.14006,-0.48500 -3.15852,0.83712,-1.50289,-1.31669,-1.09480,2.14034,-0.48533 -3.15921,0.83673,-1.50300,-1.31682,-1.09473,2.14062,-0.48565 -3.15991,0.83635,-1.50311,-1.31694,-1.09467,2.14089,-0.48596 -3.16060,0.83598,-1.50322,-1.31707,-1.09461,2.14116,-0.48627 -3.16129,0.83588,-1.50320,-1.31718,-1.09456,2.14123,-0.48636 -3.16199,0.83521,-1.50294,-1.31821,-1.09410,2.14170,-0.48691 -3.16268,0.83456,-1.50267,-1.31922,-1.09365,2.14217,-0.48745 -3.16338,0.83392,-1.50242,-1.32022,-1.09321,2.14262,-0.48798 -3.16407,0.83330,-1.50216,-1.32120,-1.09277,2.14307,-0.48850 -3.16477,0.83268,-1.50191,-1.32216,-1.09235,2.14350,-0.48901 -3.16546,0.83208,-1.50167,-1.32310,-1.09193,2.14393,-0.48951 -3.16616,0.83148,-1.50143,-1.32403,-1.09151,2.14435,-0.49000 -3.16685,0.83090,-1.50119,-1.32494,-1.09111,2.14477,-0.49049 -3.16755,0.83033,-1.50096,-1.32583,-1.09071,2.14518,-0.49096 -3.16824,0.82976,-1.50073,-1.32671,-1.09032,2.14557,-0.49143 -3.16894,0.82921,-1.50051,-1.32758,-1.08993,2.14597,-0.49189 -3.16963,0.82867,-1.50029,-1.32843,-1.08955,2.14635,-0.49234 -3.17033,0.82814,-1.50007,-1.32926,-1.08918,2.14673,-0.49279 -3.17102,0.82762,-1.49986,-1.33008,-1.08882,2.14710,-0.49322 -3.17171,0.82710,-1.49965,-1.33089,-1.08846,2.14746,-0.49365 -3.17241,0.82660,-1.49944,-1.33168,-1.08810,2.14782,-0.49407 -3.17310,0.82611,-1.49924,-1.33246,-1.08775,2.14817,-0.49448 -3.17380,0.82562,-1.49904,-1.33322,-1.08741,2.14852,-0.49489 -3.17449,0.82515,-1.49885,-1.33398,-1.08708,2.14886,-0.49529 -3.17519,0.82468,-1.49866,-1.33472,-1.08675,2.14919,-0.49568 -3.17588,0.82422,-1.49847,-1.33544,-1.08642,2.14952,-0.49606 -3.17658,0.82377,-1.49828,-1.33616,-1.08610,2.14984,-0.49644 -3.17727,0.82333,-1.49810,-1.33686,-1.08579,2.15015,-0.49681 -3.17797,0.82289,-1.49792,-1.33755,-1.08548,2.15046,-0.49717 -3.17866,0.82246,-1.49775,-1.33822,-1.08517,2.15076,-0.49753 -3.17936,0.82205,-1.49757,-1.33889,-1.08488,2.15106,-0.49788 -3.18005,0.82163,-1.49740,-1.33955,-1.08458,2.15135,-0.49822 -3.18074,0.82123,-1.49723,-1.34019,-1.08429,2.15164,-0.49856 -3.18144,0.82084,-1.49707,-1.34082,-1.08401,2.15192,-0.49890 -3.18213,0.82045,-1.49691,-1.34144,-1.08373,2.15220,-0.49922 -3.18283,0.82006,-1.49675,-1.34205,-1.08346,2.15247,-0.49954 -3.18352,0.81969,-1.49659,-1.34266,-1.08319,2.15274,-0.49986 -3.18422,0.81932,-1.49644,-1.34325,-1.08292,2.15300,-0.50017 -3.18491,0.81896,-1.49629,-1.34383,-1.08266,2.15325,-0.50047 -3.18561,0.81860,-1.49614,-1.34440,-1.08240,2.15351,-0.50077 -3.18630,0.81826,-1.49599,-1.34496,-1.08215,2.15376,-0.50106 -3.18700,0.81791,-1.49585,-1.34551,-1.08190,2.15400,-0.50135 -3.18769,0.81758,-1.49571,-1.34605,-1.08166,2.15424,-0.50163 -3.18839,0.81725,-1.49557,-1.34658,-1.08142,2.15447,-0.50191 -3.18908,0.81693,-1.49543,-1.34711,-1.08118,2.15470,-0.50218 -3.18977,0.81661,-1.49530,-1.34762,-1.08095,2.15493,-0.50245 -3.19047,0.81630,-1.49516,-1.34813,-1.08072,2.15515,-0.50271 -3.19116,0.81599,-1.49503,-1.34862,-1.08050,2.15537,-0.50297 -3.19186,0.81569,-1.49490,-1.34911,-1.08028,2.15558,-0.50322 -3.19255,0.81539,-1.49478,-1.34959,-1.08006,2.15579,-0.50347 -3.19325,0.81511,-1.49465,-1.35006,-1.07985,2.15600,-0.50372 -3.19394,0.81482,-1.49453,-1.35053,-1.07964,2.15620,-0.50396 -3.19464,0.81454,-1.49441,-1.35098,-1.07943,2.15640,-0.50419 -3.19533,0.81427,-1.49429,-1.35143,-1.07923,2.15660,-0.50442 -3.19603,0.81399,-1.49415,-1.35192,-1.07901,2.15679,-0.50465 -3.19672,0.81367,-1.49380,-1.35282,-1.07862,2.15702,-0.50493 -3.19742,0.81335,-1.49345,-1.35370,-1.07824,2.15725,-0.50520 -3.19811,0.81303,-1.49311,-1.35457,-1.07786,2.15747,-0.50547 -3.19881,0.81272,-1.49277,-1.35542,-1.07750,2.15769,-0.50573 -3.19950,0.81242,-1.49244,-1.35626,-1.07713,2.15791,-0.50599 -3.20019,0.81212,-1.49211,-1.35709,-1.07677,2.15812,-0.50624 -3.20089,0.81183,-1.49179,-1.35790,-1.07642,2.15832,-0.50648 -3.20158,0.81155,-1.49148,-1.35870,-1.07608,2.15853,-0.50673 -3.20228,0.81126,-1.49117,-1.35948,-1.07574,2.15873,-0.50696 -3.20297,0.81099,-1.49086,-1.36025,-1.07540,2.15892,-0.50720 -3.20367,0.81072,-1.49056,-1.36101,-1.07507,2.15911,-0.50743 -3.20436,0.81045,-1.49027,-1.36176,-1.07475,2.15930,-0.50765 -3.20506,0.81019,-1.48998,-1.36249,-1.07443,2.15949,-0.50787 -3.20575,0.80994,-1.48969,-1.36321,-1.07411,2.15967,-0.50809 -3.20645,0.80969,-1.48941,-1.36392,-1.07380,2.15985,-0.50830 -3.20714,0.80944,-1.48914,-1.36461,-1.07350,2.16002,-0.50851 -3.20784,0.80920,-1.48887,-1.36530,-1.07320,2.16019,-0.50871 -3.20853,0.80896,-1.48860,-1.36597,-1.07290,2.16036,-0.50891 -3.20922,0.80873,-1.48834,-1.36664,-1.07261,2.16053,-0.50911 -3.20992,0.80850,-1.48808,-1.36729,-1.07233,2.16069,-0.50930 -3.21061,0.80828,-1.48783,-1.36793,-1.07205,2.16085,-0.50949 -3.21131,0.80806,-1.48758,-1.36856,-1.07177,2.16100,-0.50968 -3.21200,0.80784,-1.48733,-1.36918,-1.07150,2.16116,-0.50986 -3.21270,0.80763,-1.48709,-1.36978,-1.07123,2.16131,-0.51004 -3.21339,0.80742,-1.48686,-1.37038,-1.07097,2.16145,-0.51022 -3.21409,0.80722,-1.48662,-1.37097,-1.07071,2.16160,-0.51039 -3.21478,0.80702,-1.48639,-1.37155,-1.07045,2.16174,-0.51056 -3.21548,0.80682,-1.48617,-1.37212,-1.07020,2.16188,-0.51072 -3.21617,0.80663,-1.48595,-1.37268,-1.06995,2.16202,-0.51089 -3.21687,0.80644,-1.48573,-1.37323,-1.06971,2.16215,-0.51105 -3.21756,0.80630,-1.48552,-1.37372,-1.06949,2.16226,-0.51117 -3.21826,0.80595,-1.48475,-1.37535,-1.06881,2.16250,-0.51147 -3.21895,0.80561,-1.48399,-1.37696,-1.06813,2.16274,-0.51176 -3.21964,0.80528,-1.48324,-1.37854,-1.06746,2.16297,-0.51204 -3.22034,0.80495,-1.48251,-1.38009,-1.06681,2.16320,-0.51232 -3.22103,0.80463,-1.48179,-1.38161,-1.06616,2.16342,-0.51259 -3.22173,0.80432,-1.48108,-1.38311,-1.06553,2.16364,-0.51286 -3.22242,0.80401,-1.48038,-1.38459,-1.06491,2.16386,-0.51312 -3.22312,0.80371,-1.47970,-1.38604,-1.06429,2.16407,-0.51338 -3.22381,0.80341,-1.47903,-1.38746,-1.06369,2.16428,-0.51363 -3.22451,0.80312,-1.47836,-1.38886,-1.06309,2.16448,-0.51388 -3.22520,0.80283,-1.47771,-1.39024,-1.06251,2.16468,-0.51412 -3.22590,0.80255,-1.47707,-1.39159,-1.06193,2.16488,-0.51436 -3.22659,0.80228,-1.47645,-1.39292,-1.06136,2.16507,-0.51459 -3.22729,0.80201,-1.47583,-1.39423,-1.06080,2.16526,-0.51482 -3.22798,0.80175,-1.47522,-1.39552,-1.06025,2.16545,-0.51504 -3.22867,0.80149,-1.47463,-1.39678,-1.05971,2.16563,-0.51526 -3.22937,0.80123,-1.47404,-1.39802,-1.05918,2.16581,-0.51548 -3.23006,0.80099,-1.47346,-1.39925,-1.05865,2.16598,-0.51569 -3.23076,0.80074,-1.47290,-1.40045,-1.05814,2.16615,-0.51590 -3.23145,0.80050,-1.47234,-1.40163,-1.05763,2.16632,-0.51610 -3.23215,0.80027,-1.47179,-1.40279,-1.05713,2.16648,-0.51630 -3.23284,0.80004,-1.47125,-1.40393,-1.05664,2.16664,-0.51649 -3.23354,0.79981,-1.47072,-1.40505,-1.05615,2.16680,-0.51668 -3.23423,0.79959,-1.47020,-1.40616,-1.05568,2.16696,-0.51687 -3.23493,0.79938,-1.46969,-1.40724,-1.05521,2.16711,-0.51705 -3.23562,0.79916,-1.46919,-1.40831,-1.05475,2.16726,-0.51723 -3.23632,0.79896,-1.46870,-1.40936,-1.05429,2.16740,-0.51741 -3.23701,0.79875,-1.46821,-1.41039,-1.05384,2.16755,-0.51758 -3.23770,0.79855,-1.46773,-1.41140,-1.05340,2.16769,-0.51775 -3.23840,0.79835,-1.46726,-1.41240,-1.05297,2.16783,-0.51792 -3.23909,0.79816,-1.46680,-1.41338,-1.05254,2.16796,-0.51808 -3.23979,0.79797,-1.46635,-1.41434,-1.05212,2.16809,-0.51824 -3.24048,0.79779,-1.46590,-1.41529,-1.05171,2.16822,-0.51839 -3.24118,0.79761,-1.46546,-1.41622,-1.05130,2.16835,-0.51855 -3.24187,0.79743,-1.46503,-1.41714,-1.05090,2.16848,-0.51870 -3.24257,0.79726,-1.46461,-1.41804,-1.05051,2.16860,-0.51884 -3.24326,0.79709,-1.46419,-1.41892,-1.05012,2.16872,-0.51899 -3.24396,0.79692,-1.46378,-1.41979,-1.04974,2.16884,-0.51913 -3.24465,0.79675,-1.46338,-1.42065,-1.04936,2.16895,-0.51927 -3.24535,0.79659,-1.46298,-1.42149,-1.04899,2.16906,-0.51940 -3.24604,0.79644,-1.46260,-1.42232,-1.04862,2.16918,-0.51953 -3.24674,0.79628,-1.46221,-1.42313,-1.04826,2.16928,-0.51966 -3.24743,0.79613,-1.46184,-1.42393,-1.04791,2.16939,-0.51979 -3.24812,0.79598,-1.46147,-1.42472,-1.04756,2.16949,-0.51991 -3.24882,0.79584,-1.46110,-1.42549,-1.04722,2.16960,-0.52004 -3.24951,0.79569,-1.46075,-1.42625,-1.04688,2.16970,-0.52016 -3.25021,0.79555,-1.46039,-1.42700,-1.04655,2.16980,-0.52027 -3.25090,0.79542,-1.46005,-1.42773,-1.04622,2.16989,-0.52039 -3.25160,0.79528,-1.45971,-1.42846,-1.04590,2.16999,-0.52050 -3.25229,0.79515,-1.45938,-1.42917,-1.04559,2.17008,-0.52061 -3.25299,0.79502,-1.45905,-1.42987,-1.04527,2.17017,-0.52072 -3.25368,0.79490,-1.45872,-1.43055,-1.04497,2.17026,-0.52082 -3.25438,0.79477,-1.45841,-1.43123,-1.04466,2.17034,-0.52093 -3.25507,0.79465,-1.45809,-1.43189,-1.04437,2.17043,-0.52103 -3.25577,0.79453,-1.45779,-1.43255,-1.04407,2.17051,-0.52113 -3.25646,0.79442,-1.45749,-1.43319,-1.04379,2.17060,-0.52122 -3.25715,0.79430,-1.45719,-1.43382,-1.04350,2.17068,-0.52132 -3.25785,0.79419,-1.45690,-1.43444,-1.04322,2.17075,-0.52141 -3.25854,0.79408,-1.45661,-1.43506,-1.04295,2.17083,-0.52150 -3.25924,0.79397,-1.45633,-1.43566,-1.04268,2.17091,-0.52159 -3.25993,0.79387,-1.45605,-1.43625,-1.04241,2.17098,-0.52168 -3.26063,0.79383,-1.45591,-1.43653,-1.04228,2.17101,-0.52171 -3.26132,0.79372,-1.45535,-1.43759,-1.04184,2.17109,-0.52181 -3.26202,0.79361,-1.45480,-1.43864,-1.04139,2.17116,-0.52189 -3.26271,0.79351,-1.45426,-1.43967,-1.04096,2.17123,-0.52198 -3.26341,0.79341,-1.45372,-1.44068,-1.04053,2.17130,-0.52207 -3.26410,0.79331,-1.45320,-1.44167,-1.04011,2.17137,-0.52215 -3.26480,0.79322,-1.45269,-1.44265,-1.03969,2.17144,-0.52223 -3.26549,0.79312,-1.45218,-1.44361,-1.03928,2.17151,-0.52231 -3.26619,0.79303,-1.45168,-1.44455,-1.03888,2.17157,-0.52239 -3.26688,0.79294,-1.45119,-1.44548,-1.03848,2.17163,-0.52246 -3.26757,0.79285,-1.45071,-1.44640,-1.03809,2.17170,-0.52253 -3.26827,0.79277,-1.45024,-1.44729,-1.03771,2.17176,-0.52261 -3.26896,0.79268,-1.44977,-1.44818,-1.03733,2.17181,-0.52268 -3.26966,0.79260,-1.44932,-1.44904,-1.03695,2.17187,-0.52274 -3.27035,0.79252,-1.44887,-1.44990,-1.03659,2.17193,-0.52281 -3.27105,0.79244,-1.44843,-1.45074,-1.03623,2.17198,-0.52288 -3.27174,0.79237,-1.44799,-1.45156,-1.03587,2.17204,-0.52294 -3.27244,0.79229,-1.44757,-1.45237,-1.03552,2.17209,-0.52300 -3.27313,0.79222,-1.44715,-1.45317,-1.03517,2.17214,-0.52306 -3.27383,0.79215,-1.44673,-1.45396,-1.03483,2.17219,-0.52312 -3.27452,0.79208,-1.44633,-1.45473,-1.03450,2.17224,-0.52318 -3.27522,0.79201,-1.44593,-1.45549,-1.03417,2.17229,-0.52323 -3.27591,0.79194,-1.44554,-1.45623,-1.03384,2.17233,-0.52329 -3.27660,0.79188,-1.44515,-1.45697,-1.03353,2.17238,-0.52334 -3.27730,0.79181,-1.44477,-1.45769,-1.03321,2.17242,-0.52339 -3.27799,0.79175,-1.44440,-1.45840,-1.03290,2.17247,-0.52344 -3.27869,0.79169,-1.44404,-1.45910,-1.03260,2.17251,-0.52349 -3.27938,0.79163,-1.44368,-1.45978,-1.03229,2.17255,-0.52354 -3.28008,0.79157,-1.44332,-1.46046,-1.03200,2.17259,-0.52359 -3.28077,0.79152,-1.44297,-1.46112,-1.03171,2.17263,-0.52363 -3.28147,0.79146,-1.44263,-1.46177,-1.03142,2.17267,-0.52368 -3.28216,0.79141,-1.44230,-1.46241,-1.03114,2.17271,-0.52372 -3.28286,0.79136,-1.44196,-1.46304,-1.03086,2.17274,-0.52376 -3.28355,0.79131,-1.44164,-1.46366,-1.03059,2.17278,-0.52380 -3.28425,0.79126,-1.44132,-1.46427,-1.03032,2.17281,-0.52384 -3.28494,0.79121,-1.44101,-1.46487,-1.03005,2.17285,-0.52388 -3.28563,0.79121,-1.44092,-1.46502,-1.02999,2.17285,-0.52388 -3.28633,0.79119,-1.44010,-1.46642,-1.02942,2.17286,-0.52390 -3.28702,0.79117,-1.43929,-1.46780,-1.02886,2.17287,-0.52391 -3.28772,0.79115,-1.43850,-1.46916,-1.02831,2.17289,-0.52393 -3.28841,0.79114,-1.43772,-1.47050,-1.02776,2.17290,-0.52394 -3.28911,0.79113,-1.43695,-1.47181,-1.02723,2.17291,-0.52395 -3.28980,0.79111,-1.43620,-1.47310,-1.02670,2.17291,-0.52396 -3.29050,0.79110,-1.43546,-1.47437,-1.02618,2.17292,-0.52397 -3.29119,0.79109,-1.43473,-1.47562,-1.02567,2.17293,-0.52398 -3.29189,0.79108,-1.43401,-1.47685,-1.02516,2.17294,-0.52398 -3.29258,0.79107,-1.43331,-1.47806,-1.02467,2.17294,-0.52399 -3.29328,0.79106,-1.43261,-1.47924,-1.02418,2.17295,-0.52400 -3.29397,0.79105,-1.43193,-1.48041,-1.02370,2.17295,-0.52400 -3.29467,0.79105,-1.43127,-1.48156,-1.02322,2.17296,-0.52400 -3.29536,0.79104,-1.43061,-1.48268,-1.02276,2.17296,-0.52401 -3.29605,0.79104,-1.42996,-1.48379,-1.02230,2.17297,-0.52401 -3.29675,0.79103,-1.42933,-1.48488,-1.02185,2.17297,-0.52401 -3.29744,0.79103,-1.42870,-1.48595,-1.02140,2.17297,-0.52401 -3.29814,0.79103,-1.42809,-1.48701,-1.02096,2.17297,-0.52401 -3.29883,0.79102,-1.42749,-1.48804,-1.02053,2.17297,-0.52401 -3.29953,0.79102,-1.42689,-1.48906,-1.02010,2.17297,-0.52401 -3.30022,0.79102,-1.42631,-1.49006,-1.01969,2.17297,-0.52401 -3.30092,0.79102,-1.42574,-1.49104,-1.01927,2.17297,-0.52401 -3.30161,0.79102,-1.42518,-1.49201,-1.01887,2.17297,-0.52400 -3.30231,0.79102,-1.42462,-1.49296,-1.01847,2.17297,-0.52400 -3.30300,0.79102,-1.42408,-1.49390,-1.01807,2.17297,-0.52399 -3.30370,0.79103,-1.42354,-1.49482,-1.01768,2.17297,-0.52399 -3.30439,0.79103,-1.42302,-1.49572,-1.01730,2.17297,-0.52398 -3.30508,0.79103,-1.42250,-1.49661,-1.01693,2.17297,-0.52398 -3.30578,0.79103,-1.42199,-1.49749,-1.01655,2.17296,-0.52397 -3.30647,0.79104,-1.42149,-1.49835,-1.01619,2.17296,-0.52397 -3.30717,0.79104,-1.42100,-1.49919,-1.01583,2.17296,-0.52396 -3.30786,0.79105,-1.42052,-1.50003,-1.01548,2.17295,-0.52395 -3.30856,0.79105,-1.42005,-1.50084,-1.01513,2.17295,-0.52394 -3.30925,0.79106,-1.41958,-1.50165,-1.01478,2.17294,-0.52393 -3.30995,0.79106,-1.41912,-1.50244,-1.01445,2.17294,-0.52393 -3.31064,0.79107,-1.41867,-1.50321,-1.01411,2.17293,-0.52392 -3.31134,0.79108,-1.41823,-1.50398,-1.01378,2.17293,-0.52391 -3.31203,0.79109,-1.41780,-1.50473,-1.01346,2.17292,-0.52390 -3.31273,0.79109,-1.41737,-1.50547,-1.01314,2.17292,-0.52389 -3.31342,0.79110,-1.41695,-1.50619,-1.01283,2.17291,-0.52388 -3.31412,0.79111,-1.41653,-1.50691,-1.01252,2.17291,-0.52387 -3.31481,0.79112,-1.41613,-1.50761,-1.01222,2.17290,-0.52385 -3.31550,0.79113,-1.41573,-1.50830,-1.01192,2.17289,-0.52384 -3.31620,0.79113,-1.41534,-1.50898,-1.01162,2.17289,-0.52383 -3.31689,0.79114,-1.41495,-1.50965,-1.01133,2.17288,-0.52382 -3.31759,0.79115,-1.41457,-1.51030,-1.01105,2.17287,-0.52381 -3.31828,0.79116,-1.41420,-1.51095,-1.01076,2.17286,-0.52380 -3.31898,0.79117,-1.41383,-1.51158,-1.01049,2.17286,-0.52378 -3.31967,0.79118,-1.41347,-1.51221,-1.01021,2.17285,-0.52377 -3.32037,0.79119,-1.41312,-1.51282,-1.00994,2.17284,-0.52376 -3.32106,0.79120,-1.41277,-1.51343,-1.00968,2.17283,-0.52374 -3.32176,0.79122,-1.41242,-1.51402,-1.00942,2.17282,-0.52373 -3.32245,0.79122,-1.41238,-1.51410,-1.00939,2.17282,-0.52373 -3.32315,0.79126,-1.41193,-1.51484,-1.00907,2.17279,-0.52369 -3.32384,0.79130,-1.41148,-1.51557,-1.00876,2.17277,-0.52366 -3.32453,0.79133,-1.41105,-1.51629,-1.00846,2.17274,-0.52362 -3.32523,0.79137,-1.41062,-1.51700,-1.00816,2.17271,-0.52358 -3.32592,0.79141,-1.41020,-1.51770,-1.00786,2.17269,-0.52355 -3.32662,0.79145,-1.40978,-1.51838,-1.00757,2.17266,-0.52351 -3.32731,0.79148,-1.40937,-1.51906,-1.00728,2.17264,-0.52348 -3.32801,0.79152,-1.40897,-1.51972,-1.00700,2.17261,-0.52344 -3.32870,0.79156,-1.40858,-1.52037,-1.00672,2.17258,-0.52341 -3.32940,0.79159,-1.40819,-1.52101,-1.00644,2.17256,-0.52337 -3.33009,0.79163,-1.40781,-1.52164,-1.00617,2.17253,-0.52334 -3.33079,0.79167,-1.40744,-1.52226,-1.00591,2.17251,-0.52330 -3.33148,0.79170,-1.40707,-1.52287,-1.00565,2.17248,-0.52327 -3.33218,0.79174,-1.40671,-1.52347,-1.00539,2.17245,-0.52323 -3.33287,0.79177,-1.40635,-1.52406,-1.00513,2.17243,-0.52320 -3.33356,0.79179,-1.40626,-1.52421,-1.00507,2.17242,-0.52319 -3.33426,0.79189,-1.40564,-1.52515,-1.00469,2.17235,-0.52309 -3.33495,0.79200,-1.40504,-1.52607,-1.00432,2.17227,-0.52300 -3.33565,0.79210,-1.40445,-1.52698,-1.00396,2.17220,-0.52291 -3.33634,0.79220,-1.40387,-1.52787,-1.00360,2.17213,-0.52282 -3.33704,0.79231,-1.40330,-1.52874,-1.00324,2.17206,-0.52273 -3.33773,0.79241,-1.40274,-1.52961,-1.00289,2.17199,-0.52264 -3.33843,0.79250,-1.40218,-1.53045,-1.00255,2.17192,-0.52256 -3.33912,0.79260,-1.40164,-1.53129,-1.00221,2.17185,-0.52247 -3.33982,0.79270,-1.40111,-1.53211,-1.00187,2.17178,-0.52238 -3.34051,0.79280,-1.40058,-1.53291,-1.00155,2.17171,-0.52230 -3.34121,0.79289,-1.40007,-1.53370,-1.00122,2.17165,-0.52222 -3.34190,0.79298,-1.39956,-1.53448,-1.00090,2.17158,-0.52213 -3.34260,0.79308,-1.39906,-1.53525,-1.00059,2.17152,-0.52205 -3.34329,0.79317,-1.39858,-1.53600,-1.00028,2.17145,-0.52197 -3.34398,0.79326,-1.39809,-1.53674,-0.99997,2.17139,-0.52189 -3.34468,0.79335,-1.39762,-1.53747,-0.99967,2.17132,-0.52181 -3.34537,0.79344,-1.39716,-1.53819,-0.99937,2.17126,-0.52173 -3.34607,0.79352,-1.39670,-1.53889,-0.99908,2.17120,-0.52165 -3.34676,0.79361,-1.39625,-1.53958,-0.99879,2.17114,-0.52157 -3.34746,0.79370,-1.39581,-1.54026,-0.99851,2.17108,-0.52150 -3.34815,0.79378,-1.39538,-1.54093,-0.99823,2.17102,-0.52142 -3.34885,0.79387,-1.39495,-1.54159,-0.99796,2.17096,-0.52135 -3.34954,0.79395,-1.39453,-1.54224,-0.99768,2.17090,-0.52127 -3.35024,0.79403,-1.39412,-1.54288,-0.99742,2.17084,-0.52120 -3.35093,0.79411,-1.39371,-1.54350,-0.99715,2.17079,-0.52113 -3.35163,0.79419,-1.39332,-1.54412,-0.99689,2.17073,-0.52105 -3.35232,0.79427,-1.39293,-1.54472,-0.99664,2.17067,-0.52098 -3.35301,0.79435,-1.39254,-1.54532,-0.99639,2.17062,-0.52091 -3.35371,0.79442,-1.39216,-1.54590,-0.99614,2.17056,-0.52084 -3.35440,0.79450,-1.39179,-1.54648,-0.99590,2.17051,-0.52077 -3.35510,0.79455,-1.39163,-1.54672,-0.99580,2.17048,-0.52073 -3.35579,0.79485,-1.39072,-1.54794,-0.99534,2.17026,-0.52047 -3.35649,0.79515,-1.38982,-1.54914,-0.99489,2.17005,-0.52021 -3.35718,0.79545,-1.38895,-1.55032,-0.99445,2.16985,-0.51996 -3.35788,0.79575,-1.38808,-1.55149,-0.99402,2.16964,-0.51971 -3.35857,0.79604,-1.38723,-1.55263,-0.99358,2.16944,-0.51946 -3.35927,0.79632,-1.38640,-1.55375,-0.99316,2.16924,-0.51921 -3.35996,0.79661,-1.38558,-1.55486,-0.99274,2.16904,-0.51897 -3.36066,0.79689,-1.38478,-1.55594,-0.99233,2.16885,-0.51873 -3.36135,0.79716,-1.38398,-1.55701,-0.99193,2.16865,-0.51849 -3.36205,0.79743,-1.38321,-1.55806,-0.99153,2.16846,-0.51826 -3.36274,0.79770,-1.38244,-1.55909,-0.99113,2.16828,-0.51803 -3.36343,0.79797,-1.38169,-1.56011,-0.99074,2.16809,-0.51780 -3.36413,0.79823,-1.38095,-1.56110,-0.99036,2.16791,-0.51758 -3.36482,0.79848,-1.38022,-1.56208,-0.98999,2.16773,-0.51736 -3.36552,0.79874,-1.37951,-1.56305,-0.98961,2.16755,-0.51714 -3.36621,0.79899,-1.37881,-1.56400,-0.98925,2.16738,-0.51692 -3.36691,0.79924,-1.37812,-1.56493,-0.98889,2.16720,-0.51671 -3.36760,0.79948,-1.37744,-1.56585,-0.98853,2.16703,-0.51650 -3.36830,0.79972,-1.37678,-1.56675,-0.98818,2.16686,-0.51629 -3.36899,0.79996,-1.37612,-1.56763,-0.98784,2.16670,-0.51609 -3.36969,0.80019,-1.37548,-1.56850,-0.98750,2.16653,-0.51589 -3.37038,0.80042,-1.37485,-1.56936,-0.98716,2.16637,-0.51569 -3.37108,0.80065,-1.37423,-1.57020,-0.98683,2.16621,-0.51549 -3.37177,0.80087,-1.37362,-1.57103,-0.98650,2.16605,-0.51530 -3.37246,0.80110,-1.37302,-1.57185,-0.98618,2.16589,-0.51510 -3.37316,0.80131,-1.37243,-1.57265,-0.98587,2.16574,-0.51492 -3.37385,0.80153,-1.37185,-1.57343,-0.98556,2.16559,-0.51473 -3.37455,0.80174,-1.37128,-1.57421,-0.98525,2.16544,-0.51455 -3.37524,0.80195,-1.37072,-1.57497,-0.98495,2.16529,-0.51436 -3.37594,0.80216,-1.37016,-1.57572,-0.98465,2.16515,-0.51418 -3.37663,0.80236,-1.36962,-1.57646,-0.98435,2.16500,-0.51401 -3.37733,0.80256,-1.36909,-1.57718,-0.98406,2.16486,-0.51383 -3.37802,0.80276,-1.36857,-1.57789,-0.98378,2.16472,-0.51366 -3.37872,0.80296,-1.36806,-1.57859,-0.98350,2.16458,-0.51349 -3.37941,0.80315,-1.36755,-1.57928,-0.98322,2.16444,-0.51332 -3.38011,0.80334,-1.36705,-1.57996,-0.98295,2.16431,-0.51316 -3.38080,0.80353,-1.36657,-1.58062,-0.98268,2.16418,-0.51299 -3.38149,0.80371,-1.36609,-1.58128,-0.98241,2.16405,-0.51283 -3.38219,0.80390,-1.36562,-1.58192,-0.98215,2.16392,-0.51268 -3.38288,0.80408,-1.36515,-1.58255,-0.98189,2.16379,-0.51252 -3.38358,0.80425,-1.36470,-1.58317,-0.98164,2.16366,-0.51236 -3.38427,0.80443,-1.36425,-1.58379,-0.98139,2.16354,-0.51221 -3.38497,0.80460,-1.36381,-1.58439,-0.98114,2.16342,-0.51206 -3.38566,0.80477,-1.36338,-1.58498,-0.98090,2.16330,-0.51191 -3.38636,0.80494,-1.36295,-1.58556,-0.98066,2.16318,-0.51177 -3.38705,0.80510,-1.36254,-1.58613,-0.98042,2.16306,-0.51162 -3.38775,0.80527,-1.36213,-1.58670,-0.98019,2.16294,-0.51148 -3.38844,0.80543,-1.36172,-1.58725,-0.97996,2.16283,-0.51134 -3.38914,0.80559,-1.36133,-1.58779,-0.97973,2.16272,-0.51120 -3.38983,0.80574,-1.36094,-1.58833,-0.97951,2.16260,-0.51106 -3.39053,0.80580,-1.36081,-1.58851,-0.97944,2.16257,-0.51102 -3.39122,0.80602,-1.36028,-1.58920,-0.97916,2.16241,-0.51082 -3.39191,0.80624,-1.35975,-1.58989,-0.97889,2.16225,-0.51063 -3.39261,0.80646,-1.35924,-1.59056,-0.97863,2.16209,-0.51044 -3.39330,0.80668,-1.35874,-1.59122,-0.97837,2.16194,-0.51025 -3.39400,0.80689,-1.35824,-1.59187,-0.97811,2.16179,-0.51007 -3.39469,0.80710,-1.35775,-1.59251,-0.97786,2.16164,-0.50989 -3.39539,0.80731,-1.35727,-1.59314,-0.97761,2.16149,-0.50971 -3.39608,0.80752,-1.35680,-1.59376,-0.97736,2.16135,-0.50953 -3.39678,0.80772,-1.35634,-1.59436,-0.97712,2.16120,-0.50936 -3.39747,0.80792,-1.35589,-1.59496,-0.97688,2.16106,-0.50919 -3.39817,0.80811,-1.35544,-1.59555,-0.97664,2.16092,-0.50902 -3.39886,0.80831,-1.35500,-1.59613,-0.97641,2.16079,-0.50885 -3.39956,0.80850,-1.35457,-1.59670,-0.97618,2.16065,-0.50869 -3.40025,0.80869,-1.35415,-1.59725,-0.97596,2.16052,-0.50852 -3.40094,0.80887,-1.35373,-1.59780,-0.97573,2.16039,-0.50836 -3.40164,0.80905,-1.35332,-1.59835,-0.97551,2.16026,-0.50820 -3.40233,0.80923,-1.35292,-1.59888,-0.97530,2.16013,-0.50805 -3.40303,0.80941,-1.35252,-1.59940,-0.97508,2.16000,-0.50790 -3.40372,0.80955,-1.35224,-1.59975,-0.97494,2.15990,-0.50778 -3.40442,0.81004,-1.35139,-1.60070,-0.97462,2.15956,-0.50736 -3.40511,0.81052,-1.35056,-1.60164,-0.97429,2.15922,-0.50695 -3.40581,0.81100,-1.34974,-1.60256,-0.97397,2.15889,-0.50655 -3.40650,0.81147,-1.34894,-1.60346,-0.97366,2.15856,-0.50615 -3.40720,0.81193,-1.34815,-1.60435,-0.97335,2.15823,-0.50576 -3.40789,0.81239,-1.34737,-1.60522,-0.97304,2.15791,-0.50538 -3.40859,0.81284,-1.34661,-1.60608,-0.97274,2.15759,-0.50500 -3.40928,0.81329,-1.34586,-1.60692,-0.97244,2.15728,-0.50462 -3.40997,0.81372,-1.34512,-1.60775,-0.97215,2.15697,-0.50425 -3.41067,0.81416,-1.34440,-1.60856,-0.97186,2.15667,-0.50389 -3.41136,0.81458,-1.34368,-1.60937,-0.97157,2.15637,-0.50353 -3.41206,0.81500,-1.34298,-1.61016,-0.97129,2.15607,-0.50318 -3.41275,0.81541,-1.34230,-1.61093,-0.97101,2.15578,-0.50283 -3.41345,0.81582,-1.34162,-1.61169,-0.97074,2.15549,-0.50248 -3.41414,0.81622,-1.34096,-1.61244,-0.97047,2.15521,-0.50214 -3.41484,0.81662,-1.34030,-1.61318,-0.97020,2.15493,-0.50181 -3.41553,0.81701,-1.33966,-1.61390,-0.96994,2.15465,-0.50148 -3.41623,0.81739,-1.33903,-1.61462,-0.96968,2.15438,-0.50116 -3.41692,0.81777,-1.33841,-1.61532,-0.96942,2.15411,-0.50084 -3.41762,0.81814,-1.33780,-1.61601,-0.96917,2.15385,-0.50052 -3.41831,0.81851,-1.33720,-1.61669,-0.96892,2.15359,-0.50021 -3.41901,0.81887,-1.33662,-1.61735,-0.96868,2.15333,-0.49990 -3.41970,0.81923,-1.33604,-1.61801,-0.96843,2.15308,-0.49960 -3.42039,0.81958,-1.33547,-1.61865,-0.96819,2.15283,-0.49931 -3.42109,0.81993,-1.33491,-1.61929,-0.96796,2.15258,-0.49901 -3.42178,0.82027,-1.33436,-1.61991,-0.96773,2.15234,-0.49872 -3.42248,0.82061,-1.33382,-1.62052,-0.96750,2.15210,-0.49844 -3.42317,0.82094,-1.33329,-1.62112,-0.96727,2.15186,-0.49816 -3.42387,0.82126,-1.33277,-1.62172,-0.96705,2.15163,-0.49788 -3.42456,0.82159,-1.33226,-1.62230,-0.96683,2.15140,-0.49761 -3.42526,0.82190,-1.33176,-1.62287,-0.96661,2.15118,-0.49734 -3.42595,0.82222,-1.33126,-1.62344,-0.96640,2.15095,-0.49708 -3.42665,0.82252,-1.33078,-1.62399,-0.96619,2.15073,-0.49682 -3.42734,0.82283,-1.33030,-1.62454,-0.96598,2.15052,-0.49656 -3.42804,0.82313,-1.32983,-1.62507,-0.96577,2.15030,-0.49631 -3.42873,0.82342,-1.32937,-1.62560,-0.96557,2.15009,-0.49606 -3.42942,0.82371,-1.32892,-1.62612,-0.96537,2.14989,-0.49581 -3.43012,0.82400,-1.32847,-1.62663,-0.96517,2.14968,-0.49557 -3.43081,0.82428,-1.32803,-1.62713,-0.96498,2.14948,-0.49533 -3.43151,0.82456,-1.32760,-1.62762,-0.96479,2.14928,-0.49510 -3.43220,0.82483,-1.32718,-1.62811,-0.96460,2.14909,-0.49487 -3.43290,0.82510,-1.32677,-1.62859,-0.96441,2.14889,-0.49464 -3.43359,0.82536,-1.32636,-1.62906,-0.96423,2.14870,-0.49441 -3.43429,0.82562,-1.32596,-1.62952,-0.96404,2.14852,-0.49419 -3.43498,0.82588,-1.32556,-1.62997,-0.96386,2.14833,-0.49397 -3.43568,0.82598,-1.32543,-1.63011,-0.96381,2.14827,-0.49389 -3.43637,0.82641,-1.32489,-1.63064,-0.96363,2.14796,-0.49353 -3.43707,0.82684,-1.32436,-1.63115,-0.96345,2.14765,-0.49317 -3.43776,0.82727,-1.32383,-1.63166,-0.96328,2.14735,-0.49281 -3.43846,0.82768,-1.32332,-1.63216,-0.96310,2.14705,-0.49247 -3.43915,0.82809,-1.32281,-1.63265,-0.96293,2.14676,-0.49212 -3.43984,0.82850,-1.32232,-1.63313,-0.96276,2.14647,-0.49178 -3.44054,0.82890,-1.32183,-1.63360,-0.96259,2.14619,-0.49145 -3.44123,0.82929,-1.32135,-1.63407,-0.96243,2.14591,-0.49112 -3.44193,0.82967,-1.32088,-1.63453,-0.96227,2.14564,-0.49080 -3.44262,0.83006,-1.32042,-1.63498,-0.96210,2.14536,-0.49048 -3.44332,0.83043,-1.31996,-1.63542,-0.96195,2.14510,-0.49017 -3.44401,0.83080,-1.31952,-1.63586,-0.96179,2.14483,-0.48986 -3.44471,0.83116,-1.31908,-1.63629,-0.96163,2.14457,-0.48955 -3.44540,0.83152,-1.31865,-1.63671,-0.96148,2.14432,-0.48926 -3.44610,0.83187,-1.31822,-1.63713,-0.96133,2.14407,-0.48896 -3.44679,0.83222,-1.31781,-1.63753,-0.96118,2.14382,-0.48867 -3.44749,0.83256,-1.31740,-1.63794,-0.96103,2.14357,-0.48838 -3.44818,0.83290,-1.31699,-1.63833,-0.96089,2.14333,-0.48810 -3.44887,0.83323,-1.31660,-1.63872,-0.96074,2.14309,-0.48782 -3.44957,0.83356,-1.31621,-1.63910,-0.96060,2.14286,-0.48755 -3.45026,0.83388,-1.31583,-1.63948,-0.96046,2.14263,-0.48728 -3.45096,0.83399,-1.31570,-1.63959,-0.96042,2.14255,-0.48719 -3.45165,0.83450,-1.31521,-1.63998,-0.96030,2.14219,-0.48676 -3.45235,0.83501,-1.31472,-1.64036,-0.96018,2.14183,-0.48635 -3.45304,0.83550,-1.31424,-1.64074,-0.96007,2.14148,-0.48594 -3.45374,0.83599,-1.31377,-1.64111,-0.95995,2.14113,-0.48553 -3.45443,0.83647,-1.31330,-1.64147,-0.95983,2.14079,-0.48514 -3.45513,0.83694,-1.31285,-1.64183,-0.95972,2.14045,-0.48475 -3.45582,0.83740,-1.31240,-1.64218,-0.95961,2.14012,-0.48436 -3.45652,0.83786,-1.31196,-1.64253,-0.95950,2.13979,-0.48398 -3.45721,0.83831,-1.31153,-1.64287,-0.95939,2.13947,-0.48361 -3.45790,0.83876,-1.31111,-1.64321,-0.95928,2.13915,-0.48324 -3.45860,0.83919,-1.31069,-1.64354,-0.95917,2.13884,-0.48288 -3.45929,0.83962,-1.31028,-1.64386,-0.95907,2.13853,-0.48252 -3.45999,0.84005,-1.30988,-1.64418,-0.95896,2.13823,-0.48217 -3.46068,0.84046,-1.30948,-1.64450,-0.95886,2.13793,-0.48183 -3.46138,0.84087,-1.30910,-1.64481,-0.95875,2.13764,-0.48149 -3.46207,0.84128,-1.30871,-1.64511,-0.95865,2.13735,-0.48116 -3.46277,0.84167,-1.30834,-1.64541,-0.95855,2.13706,-0.48083 -3.46346,0.84207,-1.30797,-1.64570,-0.95845,2.13678,-0.48050 -3.46416,0.84245,-1.30761,-1.64599,-0.95835,2.13650,-0.48018 -3.46485,0.84283,-1.30725,-1.64628,-0.95825,2.13623,-0.47987 -3.46555,0.84316,-1.30696,-1.64649,-0.95818,2.13600,-0.47960 -3.46624,0.84382,-1.30653,-1.64667,-0.95816,2.13553,-0.47906 -3.46694,0.84446,-1.30610,-1.64683,-0.95814,2.13507,-0.47853 -3.46763,0.84509,-1.30567,-1.64700,-0.95812,2.13462,-0.47801 -3.46832,0.84572,-1.30526,-1.64717,-0.95810,2.13417,-0.47750 -3.46902,0.84633,-1.30485,-1.64733,-0.95808,2.13373,-0.47700 -3.46971,0.84694,-1.30445,-1.64749,-0.95805,2.13330,-0.47650 -3.47041,0.84753,-1.30406,-1.64764,-0.95803,2.13287,-0.47601 -3.47110,0.84812,-1.30367,-1.64780,-0.95801,2.13246,-0.47553 -3.47180,0.84870,-1.30329,-1.64795,-0.95798,2.13204,-0.47506 -3.47249,0.84927,-1.30292,-1.64810,-0.95796,2.13164,-0.47460 -3.47319,0.84983,-1.30255,-1.64825,-0.95794,2.13123,-0.47414 -3.47388,0.85038,-1.30219,-1.64839,-0.95791,2.13084,-0.47369 -3.47458,0.85092,-1.30184,-1.64853,-0.95789,2.13045,-0.47325 -3.47527,0.85145,-1.30149,-1.64868,-0.95786,2.13007,-0.47281 -3.47597,0.85197,-1.30115,-1.64881,-0.95784,2.12969,-0.47238 -3.47666,0.85249,-1.30082,-1.64895,-0.95781,2.12932,-0.47196 -3.47735,0.85300,-1.30049,-1.64909,-0.95779,2.12896,-0.47155 -3.47805,0.85350,-1.30016,-1.64922,-0.95776,2.12860,-0.47114 -3.47874,0.85399,-1.29985,-1.64935,-0.95774,2.12824,-0.47074 -3.47944,0.85448,-1.29954,-1.64948,-0.95771,2.12789,-0.47034 -3.48013,0.85495,-1.29923,-1.64961,-0.95768,2.12755,-0.46995 -3.48083,0.85542,-1.29893,-1.64973,-0.95766,2.12721,-0.46957 -3.48152,0.85588,-1.29863,-1.64985,-0.95763,2.12688,-0.46920 -3.48222,0.85634,-1.29834,-1.64998,-0.95760,2.12655,-0.46883 -3.48291,0.85679,-1.29806,-1.65010,-0.95758,2.12623,-0.46846 -3.48361,0.85723,-1.29778,-1.65021,-0.95755,2.12591,-0.46810 -3.48430,0.85766,-1.29750,-1.65033,-0.95752,2.12560,-0.46775 -3.48500,0.85787,-1.29741,-1.65030,-0.95755,2.12544,-0.46758 -3.48569,0.85914,-1.29708,-1.64978,-0.95786,2.12454,-0.46655 -3.48639,0.86039,-1.29676,-1.64927,-0.95817,2.12364,-0.46555 -3.48708,0.86162,-1.29644,-1.64877,-0.95847,2.12277,-0.46456 -3.48777,0.86283,-1.29613,-1.64827,-0.95876,2.12190,-0.46359 -3.48847,0.86402,-1.29583,-1.64778,-0.95905,2.12105,-0.46263 -3.48916,0.86519,-1.29554,-1.64730,-0.95933,2.12021,-0.46169 -3.48986,0.86635,-1.29525,-1.64683,-0.95961,2.11938,-0.46077 -3.49055,0.86748,-1.29496,-1.64637,-0.95989,2.11857,-0.45986 -3.49125,0.86860,-1.29469,-1.64592,-0.96015,2.11777,-0.45897 -3.49194,0.86969,-1.29441,-1.64547,-0.96042,2.11698,-0.45809 -3.49264,0.87077,-1.29415,-1.64503,-0.96067,2.11621,-0.45723 -3.49333,0.87183,-1.29389,-1.64460,-0.96093,2.11544,-0.45638 -3.49403,0.87288,-1.29364,-1.64417,-0.96117,2.11469,-0.45555 -3.49472,0.87391,-1.29339,-1.64375,-0.96142,2.11395,-0.45473 -3.49542,0.87492,-1.29314,-1.64334,-0.96165,2.11322,-0.45393 -3.49611,0.87591,-1.29291,-1.64294,-0.96189,2.11250,-0.45314 -3.49680,0.87689,-1.29267,-1.64254,-0.96212,2.11180,-0.45236 -3.49750,0.87785,-1.29245,-1.64215,-0.96234,2.11110,-0.45160 -3.49819,0.87880,-1.29222,-1.64177,-0.96256,2.11042,-0.45085 -3.49889,0.87973,-1.29200,-1.64139,-0.96278,2.10974,-0.45011 -3.49958,0.88064,-1.29179,-1.64102,-0.96299,2.10908,-0.44938 -3.50028,0.88154,-1.29158,-1.64066,-0.96320,2.10843,-0.44867 -3.50097,0.88243,-1.29137,-1.64030,-0.96340,2.10779,-0.44797 -3.50167,0.88330,-1.29117,-1.63995,-0.96361,2.10715,-0.44728 -3.50236,0.88416,-1.29098,-1.63961,-0.96380,2.10653,-0.44660 -3.50306,0.88500,-1.29078,-1.63927,-0.96399,2.10592,-0.44593 -3.50375,0.88583,-1.29060,-1.63894,-0.96418,2.10532,-0.44528 -3.50445,0.88665,-1.29041,-1.63861,-0.96437,2.10472,-0.44463 -3.50514,0.88745,-1.29023,-1.63829,-0.96455,2.10414,-0.44400 -3.50583,0.88824,-1.29005,-1.63797,-0.96473,2.10356,-0.44338 -3.50653,0.88901,-1.28988,-1.63766,-0.96490,2.10300,-0.44276 -3.50722,0.88978,-1.28971,-1.63736,-0.96507,2.10244,-0.44216 -3.50792,0.89053,-1.28954,-1.63706,-0.96524,2.10189,-0.44157 -3.50861,0.89127,-1.28938,-1.63677,-0.96540,2.10135,-0.44099 -3.50931,0.89199,-1.28922,-1.63648,-0.96557,2.10082,-0.44042 -3.51000,0.89271,-1.28906,-1.63619,-0.96572,2.10030,-0.43986 -3.51070,0.89341,-1.28891,-1.63591,-0.96588,2.09979,-0.43930 -3.51139,0.89410,-1.28876,-1.63564,-0.96603,2.09928,-0.43876 -3.51209,0.89478,-1.28861,-1.63537,-0.96618,2.09878,-0.43823 -3.51278,0.89545,-1.28847,-1.63511,-0.96633,2.09829,-0.43770 -3.51348,0.89611,-1.28832,-1.63485,-0.96647,2.09781,-0.43718 -3.51417,0.89676,-1.28819,-1.63460,-0.96661,2.09734,-0.43668 -3.51487,0.89739,-1.28805,-1.63435,-0.96675,2.09687,-0.43618 -3.51556,0.89802,-1.28792,-1.63410,-0.96688,2.09641,-0.43569 -3.51625,0.89863,-1.28778,-1.63386,-0.96701,2.09596,-0.43520 -3.51695,0.89924,-1.28766,-1.63362,-0.96714,2.09551,-0.43473 -3.51764,0.89984,-1.28753,-1.63339,-0.96727,2.09508,-0.43426 -3.51834,0.90042,-1.28741,-1.63316,-0.96739,2.09465,-0.43381 -3.51903,0.90100,-1.28729,-1.63294,-0.96752,2.09422,-0.43336 -3.51973,0.90156,-1.28717,-1.63272,-0.96763,2.09381,-0.43291 -3.52042,0.90212,-1.28705,-1.63250,-0.96775,2.09339,-0.43248 -3.52112,0.90267,-1.28694,-1.63229,-0.96787,2.09299,-0.43205 -3.52181,0.90321,-1.28683,-1.63208,-0.96798,2.09259,-0.43163 -3.52251,0.90374,-1.28672,-1.63188,-0.96809,2.09220,-0.43121 -3.52320,0.90426,-1.28661,-1.63168,-0.96820,2.09182,-0.43081 -3.52390,0.90477,-1.28650,-1.63148,-0.96830,2.09144,-0.43041 -3.52459,0.90528,-1.28640,-1.63129,-0.96841,2.09107,-0.43001 -3.52528,0.90577,-1.28630,-1.63110,-0.96851,2.09070,-0.42963 -3.52598,0.90626,-1.28620,-1.63091,-0.96861,2.09034,-0.42924 -3.52667,0.90674,-1.28610,-1.63073,-0.96870,2.08999,-0.42887 -3.52737,0.90721,-1.28600,-1.63055,-0.96880,2.08964,-0.42850 -3.52806,0.90767,-1.28591,-1.63037,-0.96889,2.08929,-0.42814 -3.52876,0.90813,-1.28582,-1.63020,-0.96898,2.08895,-0.42779 -3.52945,0.90858,-1.28573,-1.63003,-0.96907,2.08862,-0.42744 -3.53015,0.90902,-1.28564,-1.62986,-0.96916,2.08830,-0.42709 -3.53084,0.90919,-1.28562,-1.62977,-0.96921,2.08817,-0.42696 -3.53154,0.90997,-1.28563,-1.62917,-0.96950,2.08760,-0.42635 -3.53223,0.91075,-1.28564,-1.62858,-0.96978,2.08703,-0.42575 -3.53293,0.91151,-1.28564,-1.62800,-0.97006,2.08647,-0.42517 -3.53362,0.91226,-1.28565,-1.62744,-0.97034,2.08592,-0.42459 -3.53432,0.91299,-1.28566,-1.62688,-0.97061,2.08538,-0.42402 -3.53501,0.91372,-1.28567,-1.62633,-0.97087,2.08485,-0.42346 -3.53570,0.91443,-1.28568,-1.62579,-0.97113,2.08433,-0.42292 -3.53640,0.91512,-1.28569,-1.62526,-0.97139,2.08381,-0.42238 -3.53709,0.91581,-1.28570,-1.62474,-0.97164,2.08331,-0.42185 -3.53779,0.91649,-1.28571,-1.62423,-0.97189,2.08281,-0.42133 -3.53848,0.91715,-1.28572,-1.62373,-0.97213,2.08232,-0.42082 -3.53918,0.91780,-1.28573,-1.62323,-0.97237,2.08184,-0.42031 -3.53987,0.91844,-1.28574,-1.62275,-0.97260,2.08137,-0.41982 -3.54057,0.91908,-1.28576,-1.62227,-0.97283,2.08090,-0.41934 -3.54126,0.91970,-1.28577,-1.62180,-0.97306,2.08044,-0.41886 -3.54196,0.92030,-1.28578,-1.62134,-0.97328,2.07999,-0.41839 -3.54265,0.92090,-1.28579,-1.62089,-0.97350,2.07955,-0.41793 -3.54335,0.92149,-1.28581,-1.62044,-0.97371,2.07911,-0.41748 -3.54404,0.92207,-1.28582,-1.62000,-0.97392,2.07869,-0.41703 -3.54473,0.92264,-1.28583,-1.61957,-0.97413,2.07826,-0.41660 -3.54543,0.92320,-1.28584,-1.61915,-0.97433,2.07785,-0.41617 -3.54612,0.92375,-1.28586,-1.61874,-0.97453,2.07744,-0.41575 -3.54682,0.92429,-1.28587,-1.61833,-0.97472,2.07704,-0.41533 -3.54751,0.92482,-1.28588,-1.61793,-0.97492,2.07665,-0.41493 -3.54821,0.92535,-1.28590,-1.61753,-0.97510,2.07626,-0.41452 -3.54890,0.92586,-1.28591,-1.61715,-0.97529,2.07588,-0.41413 -3.54960,0.92637,-1.28592,-1.61677,-0.97547,2.07550,-0.41374 -3.55029,0.92686,-1.28593,-1.61639,-0.97565,2.07513,-0.41336 -3.55099,0.92735,-1.28595,-1.61603,-0.97583,2.07477,-0.41299 -3.55168,0.92783,-1.28596,-1.61567,-0.97600,2.07441,-0.41262 -3.55238,0.92830,-1.28597,-1.61531,-0.97617,2.07406,-0.41226 -3.55307,0.92877,-1.28599,-1.61496,-0.97633,2.07372,-0.41191 -3.55376,0.92922,-1.28600,-1.61462,-0.97650,2.07338,-0.41156 -3.55446,0.92967,-1.28601,-1.61428,-0.97666,2.07304,-0.41122 -3.55515,0.93011,-1.28603,-1.61395,-0.97681,2.07272,-0.41088 -3.55585,0.93054,-1.28604,-1.61363,-0.97697,2.07239,-0.41055 -3.55654,0.93097,-1.28605,-1.61331,-0.97712,2.07208,-0.41023 -3.55724,0.93139,-1.28607,-1.61300,-0.97727,2.07176,-0.40991 -3.55793,0.93180,-1.28608,-1.61269,-0.97742,2.07146,-0.40959 -3.55863,0.93220,-1.28609,-1.61239,-0.97756,2.07115,-0.40928 -3.55932,0.93260,-1.28610,-1.61209,-0.97770,2.07086,-0.40898 -3.56002,0.93279,-1.28613,-1.61191,-0.97778,2.07072,-0.40884 -3.56071,0.93349,-1.28640,-1.61096,-0.97820,2.07020,-0.40831 -3.56141,0.93418,-1.28667,-1.61004,-0.97861,2.06969,-0.40779 -3.56210,0.93485,-1.28693,-1.60913,-0.97901,2.06919,-0.40727 -3.56280,0.93551,-1.28719,-1.60823,-0.97941,2.06870,-0.40677 -3.56349,0.93617,-1.28745,-1.60735,-0.97980,2.06822,-0.40628 -3.56418,0.93681,-1.28770,-1.60648,-0.98018,2.06775,-0.40580 -3.56488,0.93743,-1.28794,-1.60563,-0.98056,2.06728,-0.40532 -3.56557,0.93805,-1.28819,-1.60479,-0.98093,2.06682,-0.40485 -3.56627,0.93866,-1.28843,-1.60397,-0.98130,2.06637,-0.40440 -3.56696,0.93925,-1.28866,-1.60316,-0.98165,2.06593,-0.40395 -3.56766,0.93984,-1.28890,-1.60236,-0.98201,2.06550,-0.40350 -3.56835,0.94041,-1.28913,-1.60158,-0.98235,2.06507,-0.40307 -3.56905,0.94098,-1.28935,-1.60081,-0.98270,2.06465,-0.40264 -3.56974,0.94153,-1.28957,-1.60006,-0.98303,2.06424,-0.40223 -3.57044,0.94208,-1.28979,-1.59931,-0.98336,2.06384,-0.40181 -3.57113,0.94261,-1.29001,-1.59858,-0.98369,2.06344,-0.40141 -3.57183,0.94314,-1.29022,-1.59786,-0.98401,2.06305,-0.40102 -3.57252,0.94365,-1.29043,-1.59716,-0.98432,2.06266,-0.40063 -3.57321,0.94416,-1.29063,-1.59646,-0.98463,2.06228,-0.40025 -3.57391,0.94466,-1.29084,-1.59578,-0.98493,2.06191,-0.39987 -3.57460,0.94515,-1.29104,-1.59511,-0.98523,2.06155,-0.39950 -3.57530,0.94563,-1.29123,-1.59445,-0.98553,2.06119,-0.39914 -3.57599,0.94610,-1.29143,-1.59380,-0.98582,2.06084,-0.39879 -3.57669,0.94657,-1.29162,-1.59316,-0.98610,2.06049,-0.39844 -3.57738,0.94702,-1.29180,-1.59253,-0.98638,2.06015,-0.39809 -3.57808,0.94747,-1.29199,-1.59192,-0.98666,2.05981,-0.39776 -3.57877,0.94791,-1.29217,-1.59131,-0.98693,2.05948,-0.39743 -3.57947,0.94834,-1.29235,-1.59072,-0.98719,2.05916,-0.39710 -3.58016,0.94877,-1.29252,-1.59013,-0.98746,2.05884,-0.39679 -3.58086,0.94918,-1.29270,-1.58955,-0.98771,2.05853,-0.39647 -3.58155,0.94959,-1.29287,-1.58899,-0.98797,2.05822,-0.39617 -3.58225,0.95000,-1.29304,-1.58843,-0.98822,2.05792,-0.39586 -3.58294,0.95039,-1.29320,-1.58788,-0.98846,2.05763,-0.39557 -3.58363,0.95078,-1.29336,-1.58735,-0.98870,2.05734,-0.39528 -3.58433,0.95116,-1.29352,-1.58682,-0.98894,2.05705,-0.39499 -3.58502,0.95154,-1.29368,-1.58630,-0.98917,2.05677,-0.39471 -3.58572,0.95191,-1.29383,-1.58579,-0.98940,2.05649,-0.39443 -3.58641,0.95227,-1.29399,-1.58529,-0.98963,2.05622,-0.39416 -3.58711,0.95262,-1.29414,-1.58479,-0.98985,2.05595,-0.39390 -3.58780,0.95297,-1.29428,-1.58431,-0.99007,2.05569,-0.39364 -3.58850,0.95332,-1.29443,-1.58383,-0.99028,2.05543,-0.39338 -3.58919,0.95365,-1.29457,-1.58336,-0.99049,2.05518,-0.39313 -3.58989,0.95398,-1.29471,-1.58290,-0.99070,2.05493,-0.39288 -3.59058,0.95431,-1.29485,-1.58245,-0.99090,2.05469,-0.39264 -3.59128,0.95463,-1.29499,-1.58200,-0.99110,2.05444,-0.39240 -3.59197,0.95494,-1.29512,-1.58156,-0.99130,2.05421,-0.39216 -3.59266,0.95525,-1.29525,-1.58113,-0.99149,2.05398,-0.39193 -3.59336,0.95538,-1.29532,-1.58093,-0.99159,2.05388,-0.39184 -3.59405,0.95578,-1.29563,-1.58016,-0.99192,2.05358,-0.39154 -3.59475,0.95617,-1.29592,-1.57939,-0.99224,2.05329,-0.39125 -3.59544,0.95656,-1.29622,-1.57865,-0.99257,2.05300,-0.39096 -3.59614,0.95693,-1.29651,-1.57791,-0.99288,2.05272,-0.39068 -3.59683,0.95730,-1.29679,-1.57719,-0.99319,2.05244,-0.39041 -3.59753,0.95767,-1.29707,-1.57648,-0.99350,2.05217,-0.39014 -3.59822,0.95802,-1.29734,-1.57578,-0.99380,2.05190,-0.38987 -3.59892,0.95837,-1.29761,-1.57509,-0.99410,2.05164,-0.38961 -3.59961,0.95872,-1.29788,-1.57441,-0.99439,2.05138,-0.38935 -3.60031,0.95905,-1.29814,-1.57375,-0.99468,2.05112,-0.38910 -3.60100,0.95938,-1.29840,-1.57310,-0.99496,2.05088,-0.38886 -3.60169,0.95971,-1.29865,-1.57245,-0.99524,2.05063,-0.38861 -3.60239,0.96003,-1.29890,-1.57182,-0.99552,2.05039,-0.38838 -3.60308,0.96034,-1.29915,-1.57120,-0.99579,2.05015,-0.38814 -3.60378,0.96065,-1.29939,-1.57059,-0.99605,2.04992,-0.38792 -3.60447,0.96095,-1.29963,-1.56999,-0.99631,2.04970,-0.38769 -3.60517,0.96125,-1.29986,-1.56940,-0.99657,2.04947,-0.38747 -3.60586,0.96154,-1.30009,-1.56882,-0.99682,2.04925,-0.38726 -3.60656,0.96183,-1.30031,-1.56825,-0.99707,2.04904,-0.38704 -3.60725,0.96211,-1.30053,-1.56769,-0.99732,2.04882,-0.38683 -3.60795,0.96239,-1.30075,-1.56713,-0.99756,2.04862,-0.38663 -3.60864,0.96266,-1.30097,-1.56659,-0.99779,2.04841,-0.38643 -3.60934,0.96292,-1.30118,-1.56606,-0.99803,2.04821,-0.38623 -3.61003,0.96318,-1.30139,-1.56553,-0.99826,2.04801,-0.38604 -3.61073,0.96344,-1.30159,-1.56502,-0.99848,2.04782,-0.38585 -3.61142,0.96369,-1.30179,-1.56451,-0.99871,2.04763,-0.38566 -3.61211,0.96394,-1.30199,-1.56401,-0.99892,2.04744,-0.38548 -3.61281,0.96418,-1.30218,-1.56352,-0.99914,2.04726,-0.38530 -3.61350,0.96422,-1.30224,-1.56340,-0.99919,2.04723,-0.38527 -3.61420,0.96457,-1.30285,-1.56216,-0.99970,2.04697,-0.38501 -3.61489,0.96492,-1.30344,-1.56095,-1.00020,2.04671,-0.38475 -3.61559,0.96526,-1.30403,-1.55975,-1.00069,2.04645,-0.38450 -3.61628,0.96560,-1.30461,-1.55857,-1.00117,2.04620,-0.38425 -3.61698,0.96592,-1.30517,-1.55742,-1.00165,2.04596,-0.38401 -3.61767,0.96625,-1.30573,-1.55628,-1.00212,2.04572,-0.38377 -3.61837,0.96656,-1.30628,-1.55516,-1.00258,2.04548,-0.38354 -3.61906,0.96687,-1.30682,-1.55406,-1.00304,2.04525,-0.38331 -3.61976,0.96717,-1.30735,-1.55297,-1.00349,2.04502,-0.38309 -3.62045,0.96747,-1.30787,-1.55191,-1.00393,2.04480,-0.38287 -3.62114,0.96776,-1.30838,-1.55086,-1.00436,2.04458,-0.38266 -3.62184,0.96805,-1.30888,-1.54983,-1.00479,2.04436,-0.38245 -3.62253,0.96833,-1.30938,-1.54881,-1.00521,2.04415,-0.38224 -3.62323,0.96860,-1.30987,-1.54782,-1.00563,2.04395,-0.38204 -3.62392,0.96887,-1.31035,-1.54684,-1.00604,2.04375,-0.38184 -3.62462,0.96913,-1.31082,-1.54587,-1.00644,2.04355,-0.38165 -3.62531,0.96939,-1.31128,-1.54492,-1.00684,2.04335,-0.38146 -3.62601,0.96964,-1.31174,-1.54399,-1.00723,2.04316,-0.38127 -3.62670,0.96989,-1.31219,-1.54307,-1.00762,2.04298,-0.38109 -3.62740,0.97014,-1.31263,-1.54217,-1.00800,2.04279,-0.38091 -3.62809,0.97037,-1.31306,-1.54128,-1.00837,2.04261,-0.38074 -3.62879,0.97061,-1.31349,-1.54041,-1.00874,2.04244,-0.38057 -3.62948,0.97084,-1.31391,-1.53955,-1.00910,2.04226,-0.38040 -3.63018,0.97106,-1.31432,-1.53870,-1.00946,2.04209,-0.38023 -3.63087,0.97128,-1.31473,-1.53787,-1.00981,2.04193,-0.38007 -3.63156,0.97150,-1.31513,-1.53706,-1.01016,2.04176,-0.37991 -3.63226,0.97171,-1.31552,-1.53625,-1.01050,2.04160,-0.37976 -3.63295,0.97192,-1.31591,-1.53546,-1.01084,2.04145,-0.37961 -3.63365,0.97212,-1.31628,-1.53468,-1.01117,2.04129,-0.37946 -3.63434,0.97232,-1.31666,-1.53392,-1.01149,2.04114,-0.37931 -3.63504,0.97252,-1.31703,-1.53317,-1.01182,2.04099,-0.37917 -3.63573,0.97271,-1.31739,-1.53243,-1.01213,2.04085,-0.37903 -3.63643,0.97290,-1.31774,-1.53170,-1.01244,2.04071,-0.37889 -3.63712,0.97308,-1.31809,-1.53098,-1.01275,2.04057,-0.37876 -3.63782,0.97327,-1.31843,-1.53028,-1.01305,2.04043,-0.37862 -3.63851,0.97344,-1.31877,-1.52959,-1.01335,2.04030,-0.37850 -3.63921,0.97362,-1.31910,-1.52891,-1.01364,2.04016,-0.37837 -3.63990,0.97379,-1.31943,-1.52824,-1.01393,2.04004,-0.37824 -3.64059,0.97396,-1.31975,-1.52758,-1.01421,2.03991,-0.37812 -3.64129,0.97412,-1.32007,-1.52693,-1.01449,2.03978,-0.37800 -3.64198,0.97428,-1.32038,-1.52629,-1.01477,2.03966,-0.37789 -3.64268,0.97444,-1.32068,-1.52567,-1.01504,2.03954,-0.37777 -3.64337,0.97459,-1.32098,-1.52505,-1.01531,2.03943,-0.37766 -3.64407,0.97474,-1.32128,-1.52445,-1.01557,2.03931,-0.37755 -3.64476,0.97489,-1.32157,-1.52385,-1.01583,2.03920,-0.37744 -3.64546,0.97504,-1.32186,-1.52326,-1.01608,2.03909,-0.37734 -3.64615,0.97518,-1.32214,-1.52269,-1.01633,2.03898,-0.37723 -3.64685,0.97532,-1.32241,-1.52212,-1.01658,2.03887,-0.37713 -3.64754,0.97546,-1.32269,-1.52155,-1.01683,2.03877,-0.37703 -3.64824,0.97556,-1.32305,-1.52088,-1.01711,2.03869,-0.37696 -3.64893,0.97567,-1.32340,-1.52022,-1.01738,2.03861,-0.37688 -3.64962,0.97577,-1.32374,-1.51958,-1.01766,2.03853,-0.37681 -3.65032,0.97587,-1.32407,-1.51894,-1.01793,2.03846,-0.37674 -3.65101,0.97596,-1.32441,-1.51831,-1.01819,2.03838,-0.37667 -3.65171,0.97606,-1.32473,-1.51770,-1.01845,2.03831,-0.37660 -3.65240,0.97615,-1.32505,-1.51709,-1.01871,2.03824,-0.37653 -3.65310,0.97624,-1.32537,-1.51650,-1.01896,2.03817,-0.37647 -3.65379,0.97633,-1.32568,-1.51591,-1.01921,2.03810,-0.37640 -3.65449,0.97642,-1.32598,-1.51534,-1.01945,2.03803,-0.37634 -3.65518,0.97643,-1.32603,-1.51525,-1.01949,2.03803,-0.37634 -3.65588,0.97646,-1.32651,-1.51443,-1.01982,2.03800,-0.37631 -3.65657,0.97649,-1.32698,-1.51362,-1.02015,2.03797,-0.37629 -3.65727,0.97653,-1.32745,-1.51282,-1.02047,2.03795,-0.37626 -3.65796,0.97656,-1.32790,-1.51204,-1.02079,2.03792,-0.37624 -3.65866,0.97659,-1.32835,-1.51126,-1.02110,2.03790,-0.37622 -3.65935,0.97662,-1.32879,-1.51050,-1.02141,2.03788,-0.37620 -3.66004,0.97664,-1.32923,-1.50976,-1.02171,2.03785,-0.37618 -3.66074,0.97667,-1.32965,-1.50902,-1.02201,2.03783,-0.37616 -3.66143,0.97670,-1.33007,-1.50830,-1.02231,2.03781,-0.37614 -3.66213,0.97672,-1.33049,-1.50759,-1.02260,2.03779,-0.37613 -3.66282,0.97675,-1.33089,-1.50689,-1.02288,2.03777,-0.37611 -3.66352,0.97677,-1.33129,-1.50620,-1.02317,2.03775,-0.37609 -3.66421,0.97679,-1.33168,-1.50552,-1.02345,2.03773,-0.37608 -3.66491,0.97682,-1.33207,-1.50485,-1.02372,2.03771,-0.37606 -3.66560,0.97684,-1.33245,-1.50420,-1.02399,2.03770,-0.37605 -3.66630,0.97686,-1.33282,-1.50355,-1.02426,2.03768,-0.37603 -3.66699,0.97688,-1.33319,-1.50292,-1.02452,2.03766,-0.37602 -3.66769,0.97690,-1.33355,-1.50230,-1.02478,2.03765,-0.37601 -3.66838,0.97691,-1.33390,-1.50168,-1.02503,2.03763,-0.37600 -3.66907,0.97693,-1.33425,-1.50108,-1.02529,2.03762,-0.37598 -3.66977,0.97695,-1.33459,-1.50048,-1.02553,2.03761,-0.37597 -3.67046,0.97695,-1.33474,-1.50023,-1.02564,2.03760,-0.37597 -3.67116,0.97692,-1.33520,-1.49948,-1.02594,2.03762,-0.37599 -3.67185,0.97689,-1.33565,-1.49874,-1.02624,2.03764,-0.37602 -3.67255,0.97686,-1.33610,-1.49801,-1.02653,2.03767,-0.37604 -3.67324,0.97683,-1.33654,-1.49729,-1.02682,2.03769,-0.37606 -3.67394,0.97680,-1.33697,-1.49658,-1.02711,2.03771,-0.37609 -3.67463,0.97677,-1.33739,-1.49589,-1.02739,2.03773,-0.37611 -3.67533,0.97675,-1.33781,-1.49520,-1.02766,2.03775,-0.37613 -3.67602,0.97672,-1.33822,-1.49453,-1.02794,2.03777,-0.37615 -3.67672,0.97669,-1.33862,-1.49387,-1.02821,2.03779,-0.37618 -3.67741,0.97666,-1.33902,-1.49322,-1.02847,2.03781,-0.37620 -3.67811,0.97663,-1.33941,-1.49258,-1.02874,2.03783,-0.37622 -3.67880,0.97660,-1.33979,-1.49195,-1.02899,2.03785,-0.37624 -3.67949,0.97657,-1.34016,-1.49133,-1.02925,2.03787,-0.37627 -3.68019,0.97654,-1.34053,-1.49072,-1.02950,2.03789,-0.37629 -3.68088,0.97652,-1.34090,-1.49012,-1.02975,2.03791,-0.37631 -3.68158,0.97647,-1.34124,-1.48957,-1.02996,2.03795,-0.37635 -3.68227,0.97616,-1.34213,-1.48831,-1.03043,2.03817,-0.37657 -3.68297,0.97587,-1.34301,-1.48706,-1.03089,2.03839,-0.37678 -3.68366,0.97558,-1.34388,-1.48583,-1.03135,2.03860,-0.37700 -3.68436,0.97529,-1.34473,-1.48462,-1.03180,2.03882,-0.37721 -3.68505,0.97501,-1.34556,-1.48342,-1.03224,2.03903,-0.37741 -3.68575,0.97473,-1.34639,-1.48225,-1.03268,2.03923,-0.37762 -3.68644,0.97446,-1.34719,-1.48110,-1.03311,2.03943,-0.37782 -3.68714,0.97419,-1.34799,-1.47996,-1.03354,2.03963,-0.37802 -3.68783,0.97392,-1.34877,-1.47884,-1.03396,2.03983,-0.37821 -3.68852,0.97366,-1.34954,-1.47774,-1.03437,2.04002,-0.37840 -3.68922,0.97340,-1.35029,-1.47666,-1.03478,2.04021,-0.37859 -3.68991,0.97315,-1.35103,-1.47559,-1.03519,2.04040,-0.37878 -3.69061,0.97290,-1.35176,-1.47454,-1.03559,2.04059,-0.37896 -3.69130,0.97266,-1.35248,-1.47351,-1.03598,2.04077,-0.37914 -3.69200,0.97242,-1.35318,-1.47249,-1.03637,2.04095,-0.37932 -3.69269,0.97218,-1.35387,-1.47149,-1.03676,2.04112,-0.37950 -3.69339,0.97194,-1.35456,-1.47051,-1.03714,2.04130,-0.37967 -3.69408,0.97171,-1.35523,-1.46954,-1.03751,2.04147,-0.37984 -3.69478,0.97149,-1.35588,-1.46858,-1.03788,2.04164,-0.38001 -3.69547,0.97126,-1.35653,-1.46764,-1.03825,2.04180,-0.38017 -3.69617,0.97104,-1.35717,-1.46672,-1.03861,2.04197,-0.38034 -3.69686,0.97083,-1.35779,-1.46581,-1.03896,2.04213,-0.38050 -3.69755,0.97061,-1.35841,-1.46491,-1.03931,2.04229,-0.38066 -3.69825,0.97041,-1.35901,-1.46403,-1.03966,2.04244,-0.38081 -3.69894,0.97020,-1.35961,-1.46316,-1.04000,2.04260,-0.38097 -3.69964,0.97000,-1.36019,-1.46231,-1.04034,2.04275,-0.38112 -3.70033,0.96979,-1.36077,-1.46147,-1.04067,2.04290,-0.38127 -3.70103,0.96960,-1.36133,-1.46064,-1.04100,2.04304,-0.38142 -3.70172,0.96940,-1.36189,-1.45983,-1.04132,2.04319,-0.38156 -3.70242,0.96921,-1.36244,-1.45903,-1.04164,2.04333,-0.38170 -3.70311,0.96902,-1.36297,-1.45824,-1.04195,2.04347,-0.38185 -3.70381,0.96884,-1.36350,-1.45746,-1.04227,2.04361,-0.38198 -3.70450,0.96866,-1.36402,-1.45670,-1.04257,2.04375,-0.38212 -3.70520,0.96848,-1.36453,-1.45594,-1.04287,2.04388,-0.38226 -3.70589,0.96830,-1.36503,-1.45520,-1.04317,2.04401,-0.38239 -3.70659,0.96812,-1.36553,-1.45447,-1.04347,2.04415,-0.38252 -3.70728,0.96795,-1.36601,-1.45376,-1.04376,2.04427,-0.38265 -3.70797,0.96778,-1.36649,-1.45305,-1.04405,2.04440,-0.38278 -3.70867,0.96762,-1.36696,-1.45236,-1.04433,2.04453,-0.38290 -3.70936,0.96745,-1.36742,-1.45167,-1.04461,2.04465,-0.38303 -3.71006,0.96729,-1.36787,-1.45100,-1.04488,2.04477,-0.38315 -3.71075,0.96713,-1.36832,-1.45034,-1.04515,2.04489,-0.38327 -3.71145,0.96698,-1.36876,-1.44969,-1.04542,2.04501,-0.38339 -3.71214,0.96682,-1.36919,-1.44905,-1.04569,2.04512,-0.38351 -3.71284,0.96667,-1.36961,-1.44841,-1.04595,2.04524,-0.38362 -3.71353,0.96652,-1.37003,-1.44779,-1.04620,2.04535,-0.38373 -3.71423,0.96637,-1.37044,-1.44718,-1.04646,2.04546,-0.38385 -3.71492,0.96623,-1.37084,-1.44658,-1.04671,2.04557,-0.38396 -3.71562,0.96608,-1.37124,-1.44599,-1.04695,2.04568,-0.38407 -3.71631,0.96594,-1.37163,-1.44540,-1.04720,2.04578,-0.38417 -3.71700,0.96585,-1.37185,-1.44509,-1.04733,2.04585,-0.38424 -3.71770,0.96552,-1.37249,-1.44423,-1.04765,2.04609,-0.38449 -3.71839,0.96520,-1.37313,-1.44338,-1.04798,2.04634,-0.38473 -3.71909,0.96488,-1.37375,-1.44254,-1.04829,2.04657,-0.38496 -3.71978,0.96456,-1.37436,-1.44172,-1.04861,2.04681,-0.38520 -3.72048,0.96426,-1.37497,-1.44091,-1.04892,2.04704,-0.38543 -3.72117,0.96395,-1.37556,-1.44011,-1.04923,2.04727,-0.38566 -3.72187,0.96365,-1.37614,-1.43933,-1.04953,2.04749,-0.38588 -3.72256,0.96336,-1.37671,-1.43856,-1.04983,2.04771,-0.38610 -3.72326,0.96307,-1.37728,-1.43779,-1.05012,2.04792,-0.38632 -3.72395,0.96278,-1.37783,-1.43705,-1.05042,2.04814,-0.38653 -3.72465,0.96250,-1.37837,-1.43631,-1.05070,2.04835,-0.38674 -3.72534,0.96223,-1.37891,-1.43558,-1.05099,2.04855,-0.38695 -3.72604,0.96196,-1.37943,-1.43487,-1.05127,2.04875,-0.38715 -3.72673,0.96169,-1.37995,-1.43417,-1.05155,2.04895,-0.38735 -3.72742,0.96143,-1.38046,-1.43347,-1.05182,2.04915,-0.38755 -3.72812,0.96117,-1.38096,-1.43279,-1.05209,2.04934,-0.38774 -3.72881,0.96092,-1.38145,-1.43212,-1.05236,2.04953,-0.38793 -3.72951,0.96067,-1.38194,-1.43146,-1.05262,2.04972,-0.38812 -3.73020,0.96042,-1.38241,-1.43081,-1.05288,2.04990,-0.38830 -3.73090,0.96018,-1.38288,-1.43017,-1.05314,2.05008,-0.38849 -3.73159,0.95994,-1.38334,-1.42954,-1.05339,2.05026,-0.38867 -3.73229,0.95971,-1.38379,-1.42892,-1.05364,2.05044,-0.38884 -3.73298,0.95948,-1.38423,-1.42831,-1.05389,2.05061,-0.38902 -3.73368,0.95925,-1.38467,-1.42771,-1.05413,2.05078,-0.38919 -3.73437,0.95903,-1.38510,-1.42712,-1.05437,2.05094,-0.38936 -3.73507,0.95881,-1.38552,-1.42653,-1.05461,2.05111,-0.38952 -3.73576,0.95859,-1.38594,-1.42596,-1.05484,2.05127,-0.38968 -3.73645,0.95838,-1.38635,-1.42540,-1.05507,2.05143,-0.38985 -3.73715,0.95817,-1.38675,-1.42484,-1.05530,2.05159,-0.39000 -3.73784,0.95797,-1.38714,-1.42429,-1.05553,2.05174,-0.39016 -3.73854,0.95788,-1.38729,-1.42410,-1.05560,2.05180,-0.39022 -3.73923,0.95747,-1.38796,-1.42325,-1.05592,2.05211,-0.39053 -3.73993,0.95706,-1.38863,-1.42241,-1.05623,2.05242,-0.39084 -3.74062,0.95665,-1.38928,-1.42159,-1.05654,2.05272,-0.39114 -3.74132,0.95626,-1.38992,-1.42077,-1.05685,2.05301,-0.39144 -3.74201,0.95587,-1.39055,-1.41997,-1.05715,2.05330,-0.39173 -3.74271,0.95548,-1.39117,-1.41919,-1.05745,2.05359,-0.39202 -3.74340,0.95511,-1.39178,-1.41841,-1.05774,2.05387,-0.39230 -3.74410,0.95474,-1.39238,-1.41765,-1.05803,2.05414,-0.39258 -3.74479,0.95437,-1.39297,-1.41690,-1.05832,2.05441,-0.39285 -3.74548,0.95401,-1.39355,-1.41616,-1.05860,2.05468,-0.39312 -3.74618,0.95366,-1.39412,-1.41543,-1.05888,2.05494,-0.39339 -3.74687,0.95332,-1.39468,-1.41471,-1.05916,2.05520,-0.39365 -3.74757,0.95298,-1.39523,-1.41400,-1.05943,2.05545,-0.39390 -3.74826,0.95264,-1.39577,-1.41331,-1.05971,2.05570,-0.39416 -3.74896,0.95231,-1.39631,-1.41262,-1.05997,2.05595,-0.39440 -3.74965,0.95199,-1.39683,-1.41195,-1.06024,2.05619,-0.39465 -3.75035,0.95167,-1.39735,-1.41128,-1.06050,2.05643,-0.39489 -3.75104,0.95136,-1.39785,-1.41063,-1.06075,2.05666,-0.39513 -3.75174,0.95105,-1.39835,-1.40998,-1.06101,2.05689,-0.39536 -3.75243,0.95075,-1.39884,-1.40935,-1.06126,2.05712,-0.39559 -3.75313,0.95045,-1.39932,-1.40872,-1.06151,2.05734,-0.39581 -3.75382,0.95016,-1.39979,-1.40811,-1.06175,2.05756,-0.39603 -3.75452,0.94987,-1.40026,-1.40750,-1.06199,2.05777,-0.39625 -3.75521,0.94959,-1.40072,-1.40691,-1.06223,2.05798,-0.39647 -3.75590,0.94931,-1.40117,-1.40632,-1.06247,2.05819,-0.39668 -3.75660,0.94903,-1.40161,-1.40574,-1.06270,2.05840,-0.39689 -3.75729,0.94877,-1.40204,-1.40517,-1.06293,2.05860,-0.39709 -3.75799,0.94850,-1.40247,-1.40461,-1.06316,2.05880,-0.39729 -3.75868,0.94824,-1.40289,-1.40406,-1.06338,2.05899,-0.39749 -3.75938,0.94798,-1.40331,-1.40352,-1.06361,2.05918,-0.39769 -3.76007,0.94773,-1.40371,-1.40298,-1.06382,2.05937,-0.39788 -3.76077,0.94749,-1.40411,-1.40245,-1.06404,2.05956,-0.39807 -3.76146,0.94724,-1.40451,-1.40193,-1.06425,2.05974,-0.39825 -3.76216,0.94709,-1.40473,-1.40166,-1.06436,2.05985,-0.39837 -3.76285,0.94631,-1.40576,-1.40050,-1.06476,2.06043,-0.39896 -3.76355,0.94553,-1.40678,-1.39935,-1.06515,2.06100,-0.39953 -3.76424,0.94478,-1.40778,-1.39821,-1.06555,2.06156,-0.40010 -3.76493,0.94403,-1.40876,-1.39710,-1.06594,2.06211,-0.40066 -3.76563,0.94330,-1.40973,-1.39600,-1.06632,2.06265,-0.40121 -3.76632,0.94259,-1.41068,-1.39491,-1.06670,2.06318,-0.40174 -3.76702,0.94188,-1.41161,-1.39385,-1.06708,2.06370,-0.40227 -3.76771,0.94119,-1.41253,-1.39279,-1.06745,2.06421,-0.40280 -3.76841,0.94051,-1.41343,-1.39176,-1.06782,2.06471,-0.40331 -3.76910,0.93985,-1.41432,-1.39074,-1.06819,2.06520,-0.40381 -3.76980,0.93919,-1.41519,-1.38973,-1.06855,2.06569,-0.40431 -3.77049,0.93855,-1.41605,-1.38874,-1.06891,2.06616,-0.40479 -3.77119,0.93791,-1.41690,-1.38776,-1.06927,2.06663,-0.40527 -3.77188,0.93729,-1.41773,-1.38680,-1.06962,2.06709,-0.40574 -3.77258,0.93668,-1.41854,-1.38585,-1.06996,2.06754,-0.40620 -3.77327,0.93608,-1.41935,-1.38491,-1.07031,2.06799,-0.40666 -3.77396,0.93549,-1.42014,-1.38399,-1.07065,2.06842,-0.40711 -3.77466,0.93492,-1.42091,-1.38309,-1.07099,2.06885,-0.40755 -3.77535,0.93435,-1.42168,-1.38219,-1.07132,2.06927,-0.40798 -3.77605,0.93379,-1.42243,-1.38131,-1.07165,2.06969,-0.40840 -3.77674,0.93324,-1.42317,-1.38044,-1.07197,2.07009,-0.40882 -3.77744,0.93270,-1.42389,-1.37959,-1.07230,2.07049,-0.40923 -3.77813,0.93217,-1.42460,-1.37875,-1.07262,2.07088,-0.40964 -3.77883,0.93165,-1.42531,-1.37792,-1.07293,2.07127,-0.41003 -3.77952,0.93114,-1.42600,-1.37710,-1.07324,2.07165,-0.41042 -3.78022,0.93064,-1.42667,-1.37630,-1.07355,2.07202,-0.41081 -3.78091,0.93015,-1.42734,-1.37550,-1.07386,2.07239,-0.41119 -3.78161,0.92966,-1.42800,-1.37472,-1.07416,2.07275,-0.41156 -3.78230,0.92918,-1.42864,-1.37395,-1.07446,2.07310,-0.41192 -3.78300,0.92872,-1.42928,-1.37319,-1.07475,2.07345,-0.41228 -3.78369,0.92826,-1.42990,-1.37245,-1.07504,2.07379,-0.41264 -3.78438,0.92780,-1.43051,-1.37171,-1.07533,2.07412,-0.41299 -3.78508,0.92736,-1.43112,-1.37099,-1.07562,2.07445,-0.41333 -3.78577,0.92692,-1.43171,-1.37027,-1.07590,2.07478,-0.41366 -3.78647,0.92649,-1.43229,-1.36957,-1.07617,2.07510,-0.41399 -3.78716,0.92607,-1.43287,-1.36887,-1.07645,2.07541,-0.41432 -3.78786,0.92566,-1.43343,-1.36819,-1.07672,2.07572,-0.41464 -3.78855,0.92525,-1.43399,-1.36752,-1.07699,2.07602,-0.41495 -3.78925,0.92485,-1.43453,-1.36686,-1.07726,2.07632,-0.41526 -3.78994,0.92446,-1.43507,-1.36620,-1.07752,2.07661,-0.41557 -3.79064,0.92407,-1.43560,-1.36556,-1.07778,2.07690,-0.41587 -3.79133,0.92369,-1.43611,-1.36493,-1.07803,2.07718,-0.41616 -3.79203,0.92332,-1.43662,-1.36431,-1.07829,2.07746,-0.41645 -3.79272,0.92295,-1.43713,-1.36369,-1.07854,2.07773,-0.41674 -3.79341,0.92259,-1.43762,-1.36309,-1.07879,2.07800,-0.41702 -3.79411,0.92224,-1.43810,-1.36249,-1.07903,2.07826,-0.41729 -3.79480,0.92189,-1.43858,-1.36190,-1.07927,2.07852,-0.41756 -3.79550,0.92154,-1.43905,-1.36132,-1.07951,2.07878,-0.41783 -3.79619,0.92121,-1.43951,-1.36076,-1.07975,2.07903,-0.41809 -3.79689,0.92088,-1.43996,-1.36019,-1.07998,2.07928,-0.41835 -3.79758,0.92055,-1.44041,-1.35964,-1.08021,2.07952,-0.41860 -3.79828,0.92023,-1.44085,-1.35910,-1.08044,2.07976,-0.41885 -3.79897,0.91992,-1.44128,-1.35856,-1.08066,2.07999,-0.41910 -3.79967,0.91961,-1.44170,-1.35803,-1.08088,2.08022,-0.41934 -3.80036,0.91930,-1.44212,-1.35751,-1.08110,2.08045,-0.41958 -3.80106,0.91901,-1.44253,-1.35700,-1.08132,2.08067,-0.41981 -3.80175,0.91871,-1.44294,-1.35650,-1.08153,2.08089,-0.42004 -3.80245,0.91842,-1.44333,-1.35600,-1.08174,2.08111,-0.42027 -3.80314,0.91814,-1.44372,-1.35551,-1.08195,2.08132,-0.42049 -3.80383,0.91786,-1.44411,-1.35503,-1.08216,2.08153,-0.42071 -3.80453,0.91766,-1.44438,-1.35469,-1.08230,2.08168,-0.42087 -3.80522,0.91730,-1.44484,-1.35415,-1.08252,2.08194,-0.42115 -3.80592,0.91694,-1.44529,-1.35362,-1.08274,2.08221,-0.42143 -3.80661,0.91660,-1.44573,-1.35310,-1.08295,2.08247,-0.42170 -3.80731,0.91625,-1.44616,-1.35258,-1.08316,2.08272,-0.42197 -3.80800,0.91592,-1.44659,-1.35207,-1.08337,2.08297,-0.42223 -3.80870,0.91559,-1.44701,-1.35157,-1.08358,2.08322,-0.42249 -3.80939,0.91526,-1.44742,-1.35108,-1.08378,2.08346,-0.42274 -3.81009,0.91494,-1.44783,-1.35060,-1.08398,2.08369,-0.42299 -3.81078,0.91463,-1.44823,-1.35012,-1.08418,2.08393,-0.42324 -3.81148,0.91432,-1.44862,-1.34965,-1.08438,2.08416,-0.42348 -3.81217,0.91401,-1.44901,-1.34919,-1.08457,2.08438,-0.42372 -3.81286,0.91372,-1.44939,-1.34873,-1.08476,2.08460,-0.42395 -3.81356,0.91342,-1.44976,-1.34828,-1.08495,2.08482,-0.42418 -3.81425,0.91335,-1.44985,-1.34819,-1.08498,2.08488,-0.42424 -3.81495,0.91258,-1.45071,-1.34731,-1.08529,2.08544,-0.42483 -3.81564,0.91183,-1.45156,-1.34644,-1.08559,2.08599,-0.42541 -3.81634,0.91109,-1.45239,-1.34558,-1.08589,2.08653,-0.42598 -3.81703,0.91036,-1.45321,-1.34474,-1.08619,2.08706,-0.42654 -3.81773,0.90965,-1.45401,-1.34390,-1.08648,2.08758,-0.42709 -3.81842,0.90895,-1.45480,-1.34308,-1.08678,2.08810,-0.42763 -3.81912,0.90827,-1.45558,-1.34227,-1.08707,2.08860,-0.42817 -3.81981,0.90759,-1.45635,-1.34147,-1.08736,2.08909,-0.42869 -3.82051,0.90693,-1.45710,-1.34069,-1.08764,2.08958,-0.42920 -3.82120,0.90628,-1.45784,-1.33991,-1.08792,2.09006,-0.42971 -3.82189,0.90564,-1.45857,-1.33915,-1.08820,2.09052,-0.43020 -3.82259,0.90502,-1.45928,-1.33839,-1.08848,2.09098,-0.43069 -3.82328,0.90440,-1.45998,-1.33765,-1.08875,2.09144,-0.43117 -3.82398,0.90379,-1.46068,-1.33692,-1.08902,2.09188,-0.43164 -3.82467,0.90320,-1.46136,-1.33619,-1.08929,2.09231,-0.43211 -3.82537,0.90262,-1.46203,-1.33548,-1.08956,2.09274,-0.43256 -3.82606,0.90204,-1.46268,-1.33478,-1.08982,2.09316,-0.43301 -3.82676,0.90148,-1.46333,-1.33409,-1.09008,2.09358,-0.43345 -3.82745,0.90093,-1.46397,-1.33341,-1.09034,2.09398,-0.43388 -3.82815,0.90039,-1.46459,-1.33274,-1.09060,2.09438,-0.43431 -3.82884,0.89985,-1.46521,-1.33207,-1.09085,2.09477,-0.43473 -3.82954,0.89933,-1.46581,-1.33142,-1.09110,2.09516,-0.43514 -3.83023,0.89881,-1.46641,-1.33078,-1.09135,2.09553,-0.43554 -3.83093,0.89831,-1.46700,-1.33015,-1.09160,2.09591,-0.43594 -3.83162,0.89781,-1.46757,-1.32952,-1.09184,2.09627,-0.43633 -3.83231,0.89732,-1.46814,-1.32890,-1.09208,2.09663,-0.43672 -3.83301,0.89684,-1.46869,-1.32830,-1.09232,2.09698,-0.43710 -3.83370,0.89637,-1.46924,-1.32770,-1.09255,2.09733,-0.43747 -3.83440,0.89591,-1.46978,-1.32711,-1.09279,2.09767,-0.43783 -3.83509,0.89546,-1.47031,-1.32653,-1.09302,2.09800,-0.43819 -3.83579,0.89501,-1.47083,-1.32596,-1.09325,2.09833,-0.43854 -3.83648,0.89457,-1.47134,-1.32539,-1.09347,2.09865,-0.43889 -3.83718,0.89414,-1.47184,-1.32484,-1.09369,2.09897,-0.43923 -3.83787,0.89372,-1.47234,-1.32429,-1.09392,2.09928,-0.43957 -3.83857,0.89330,-1.47283,-1.32375,-1.09413,2.09959,-0.43990 -3.83926,0.89289,-1.47330,-1.32322,-1.09435,2.09989,-0.44022 -3.83996,0.89249,-1.47378,-1.32269,-1.09456,2.10018,-0.44054 -3.84065,0.89210,-1.47424,-1.32218,-1.09478,2.10047,-0.44086 -3.84134,0.89171,-1.47469,-1.32167,-1.09498,2.10076,-0.44117 -3.84204,0.89133,-1.47514,-1.32117,-1.09519,2.10104,-0.44147 -3.84273,0.89095,-1.47558,-1.32067,-1.09540,2.10132,-0.44177 -3.84343,0.89059,-1.47601,-1.32018,-1.09560,2.10159,-0.44206 -3.84412,0.89023,-1.47644,-1.31970,-1.09580,2.10185,-0.44235 -3.84482,0.88987,-1.47686,-1.31923,-1.09599,2.10212,-0.44263 -3.84551,0.88952,-1.47727,-1.31876,-1.09619,2.10237,-0.44291 -3.84621,0.88918,-1.47768,-1.31831,-1.09638,2.10263,-0.44319 -3.84690,0.88884,-1.47807,-1.31785,-1.09657,2.10287,-0.44346 -3.84760,0.88851,-1.47847,-1.31741,-1.09676,2.10312,-0.44372 -3.84829,0.88819,-1.47885,-1.31697,-1.09695,2.10336,-0.44398 -3.84899,0.88787,-1.47923,-1.31653,-1.09713,2.10359,-0.44424 -3.84968,0.88755,-1.47960,-1.31611,-1.09732,2.10383,-0.44449 -3.85038,0.88724,-1.47997,-1.31569,-1.09750,2.10405,-0.44474 -3.85107,0.88699,-1.48026,-1.31535,-1.09764,2.10424,-0.44494 -3.85176,0.88661,-1.48068,-1.31490,-1.09783,2.10452,-0.44524 -3.85246,0.88624,-1.48110,-1.31445,-1.09801,2.10479,-0.44554 -3.85315,0.88588,-1.48151,-1.31401,-1.09819,2.10506,-0.44583 -3.85385,0.88552,-1.48191,-1.31358,-1.09837,2.10532,-0.44612 -3.85454,0.88517,-1.48230,-1.31315,-1.09855,2.10558,-0.44640 -3.85524,0.88482,-1.48269,-1.31273,-1.09872,2.10584,-0.44668 -3.85593,0.88448,-1.48307,-1.31231,-1.09890,2.10609,-0.44695 -3.85663,0.88415,-1.48344,-1.31190,-1.09907,2.10633,-0.44722 -3.85732,0.88382,-1.48381,-1.31150,-1.09924,2.10657,-0.44748 -3.85802,0.88349,-1.48417,-1.31110,-1.09940,2.10681,-0.44774 -3.85871,0.88318,-1.48453,-1.31071,-1.09957,2.10704,-0.44800 -3.85941,0.88304,-1.48468,-1.31054,-1.09964,2.10715,-0.44811 -3.86010,0.88258,-1.48517,-1.31005,-1.09983,2.10748,-0.44847 -3.86079,0.88213,-1.48565,-1.30957,-1.10002,2.10781,-0.44883 -3.86149,0.88168,-1.48612,-1.30909,-1.10020,2.10814,-0.44919 -3.86218,0.88125,-1.48658,-1.30862,-1.10038,2.10845,-0.44954 -3.86288,0.88082,-1.48704,-1.30816,-1.10057,2.10877,-0.44988 -3.86357,0.88040,-1.48749,-1.30770,-1.10075,2.10907,-0.45022 -3.86427,0.87998,-1.48793,-1.30725,-1.10092,2.10938,-0.45055 -3.86496,0.87958,-1.48836,-1.30681,-1.10110,2.10967,-0.45087 -3.86566,0.87918,-1.48879,-1.30637,-1.10128,2.10996,-0.45119 -3.86635,0.87879,-1.48920,-1.30594,-1.10145,2.11025,-0.45151 -3.86705,0.87840,-1.48962,-1.30552,-1.10162,2.11053,-0.45181 -3.86774,0.87803,-1.49002,-1.30510,-1.10179,2.11081,-0.45212 -3.86844,0.87765,-1.49042,-1.30468,-1.10196,2.11108,-0.45242 -3.86913,0.87729,-1.49081,-1.30428,-1.10212,2.11135,-0.45271 -3.86982,0.87693,-1.49120,-1.30388,-1.10229,2.11161,-0.45300 -3.87052,0.87658,-1.49158,-1.30348,-1.10245,2.11187,-0.45328 -3.87121,0.87623,-1.49195,-1.30309,-1.10261,2.11212,-0.45356 -3.87191,0.87589,-1.49231,-1.30271,-1.10277,2.11237,-0.45384 -3.87260,0.87556,-1.49267,-1.30233,-1.10293,2.11261,-0.45411 -3.87330,0.87523,-1.49303,-1.30196,-1.10308,2.11285,-0.45437 -3.87399,0.87491,-1.49338,-1.30159,-1.10323,2.11309,-0.45463 -3.87469,0.87479,-1.49350,-1.30147,-1.10328,2.11317,-0.45473 -3.87538,0.87428,-1.49400,-1.30100,-1.10345,2.11355,-0.45513 -3.87608,0.87378,-1.49449,-1.30054,-1.10362,2.11391,-0.45554 -3.87677,0.87329,-1.49498,-1.30009,-1.10379,2.11427,-0.45593 -3.87747,0.87280,-1.49546,-1.29965,-1.10396,2.11462,-0.45632 -3.87816,0.87233,-1.49593,-1.29921,-1.10412,2.11497,-0.45670 -3.87886,0.87186,-1.49639,-1.29877,-1.10429,2.11530,-0.45708 -3.87955,0.87140,-1.49684,-1.29835,-1.10445,2.11564,-0.45745 -3.88024,0.87095,-1.49729,-1.29793,-1.10461,2.11597,-0.45781 -3.88094,0.87051,-1.49773,-1.29751,-1.10477,2.11629,-0.45817 -3.88163,0.87007,-1.49816,-1.29710,-1.10493,2.11660,-0.45852 -3.88233,0.86964,-1.49858,-1.29670,-1.10509,2.11691,-0.45886 -3.88302,0.86923,-1.49900,-1.29630,-1.10524,2.11722,-0.45920 -3.88372,0.86881,-1.49941,-1.29591,-1.10540,2.11752,-0.45953 -3.88441,0.86841,-1.49982,-1.29552,-1.10555,2.11781,-0.45986 -3.88511,0.86801,-1.50021,-1.29514,-1.10570,2.11810,-0.46018 -3.88580,0.86762,-1.50060,-1.29476,-1.10585,2.11839,-0.46050 -3.88650,0.86724,-1.50099,-1.29439,-1.10600,2.11867,-0.46081 -3.88719,0.86686,-1.50136,-1.29402,-1.10615,2.11894,-0.46111 -3.88789,0.86649,-1.50174,-1.29366,-1.10629,2.11921,-0.46141 -3.88858,0.86612,-1.50210,-1.29331,-1.10643,2.11948,-0.46171 -3.88927,0.86577,-1.50246,-1.29296,-1.10658,2.11974,-0.46200 -3.88997,0.86542,-1.50281,-1.29261,-1.10672,2.11999,-0.46229 -3.89066,0.86507,-1.50316,-1.29227,-1.10686,2.12024,-0.46257 -3.89136,0.86473,-1.50350,-1.29193,-1.10700,2.12049,-0.46284 -3.89205,0.86440,-1.50384,-1.29160,-1.10713,2.12073,-0.46311 -3.89275,0.86423,-1.50401,-1.29144,-1.10720,2.12086,-0.46325 -3.89344,0.86385,-1.50437,-1.29111,-1.10733,2.12113,-0.46356 -3.89414,0.86347,-1.50472,-1.29078,-1.10746,2.12141,-0.46387 -3.89483,0.86310,-1.50507,-1.29046,-1.10759,2.12168,-0.46417 -3.89553,0.86274,-1.50542,-1.29014,-1.10772,2.12194,-0.46446 -3.89622,0.86238,-1.50576,-1.28983,-1.10784,2.12220,-0.46475 -3.89692,0.86203,-1.50609,-1.28952,-1.10797,2.12245,-0.46504 -3.89761,0.86169,-1.50641,-1.28922,-1.10809,2.12270,-0.46532 -3.89831,0.86134,-1.50674,-1.28892,-1.10821,2.12296,-0.46560 -3.89900,0.86093,-1.50709,-1.28865,-1.10832,2.12326,-0.46594 -3.89969,0.86052,-1.50743,-1.28837,-1.10842,2.12355,-0.46627 -3.90039,0.86012,-1.50777,-1.28810,-1.10852,2.12384,-0.46660 -3.90108,0.85973,-1.50810,-1.28784,-1.10862,2.12412,-0.46692 -3.90178,0.85934,-1.50842,-1.28758,-1.10873,2.12440,-0.46723 -3.90247,0.85896,-1.50874,-1.28732,-1.10883,2.12468,-0.46754 -3.90317,0.85859,-1.50906,-1.28707,-1.10893,2.12495,-0.46784 -3.90386,0.85823,-1.50936,-1.28681,-1.10902,2.12521,-0.46814 -3.90456,0.85787,-1.50967,-1.28657,-1.10912,2.12547,-0.46843 -3.90525,0.85751,-1.50997,-1.28632,-1.10922,2.12573,-0.46872 -3.90595,0.85747,-1.51000,-1.28630,-1.10923,2.12576,-0.46876 -3.90664,0.85701,-1.51031,-1.28613,-1.10928,2.12609,-0.46913 -3.90734,0.85656,-1.51062,-1.28595,-1.10934,2.12642,-0.46950 -3.90803,0.85612,-1.51093,-1.28578,-1.10940,2.12673,-0.46986 -3.90872,0.85569,-1.51123,-1.28560,-1.10946,2.12705,-0.47021 -3.90942,0.85526,-1.51152,-1.28544,-1.10952,2.12735,-0.47056 -3.91011,0.85484,-1.51181,-1.28527,-1.10958,2.12766,-0.47090 -3.91081,0.85443,-1.51210,-1.28510,-1.10964,2.12795,-0.47123 -3.91150,0.85403,-1.51238,-1.28494,-1.10969,2.12824,-0.47156 -3.91220,0.85364,-1.51265,-1.28478,-1.10975,2.12853,-0.47189 -3.91289,0.85325,-1.51292,-1.28462,-1.10981,2.12881,-0.47221 -3.91359,0.85286,-1.51319,-1.28446,-1.10987,2.12909,-0.47252 -3.91428,0.85249,-1.51345,-1.28430,-1.10992,2.12936,-0.47283 -3.91498,0.85212,-1.51371,-1.28415,-1.10998,2.12962,-0.47313 -3.91567,0.85203,-1.51376,-1.28414,-1.10998,2.12969,-0.47320 -3.91637,0.85151,-1.51399,-1.28416,-1.10995,2.13007,-0.47363 -3.91706,0.85099,-1.51422,-1.28419,-1.10992,2.13044,-0.47405 -3.91775,0.85048,-1.51445,-1.28422,-1.10989,2.13080,-0.47447 -3.91845,0.84999,-1.51467,-1.28424,-1.10986,2.13116,-0.47487 -3.91914,0.84950,-1.51489,-1.28426,-1.10983,2.13151,-0.47527 -3.91984,0.84902,-1.51511,-1.28429,-1.10980,2.13185,-0.47567 -3.92053,0.84855,-1.51532,-1.28431,-1.10977,2.13219,-0.47605 -3.92123,0.84808,-1.51553,-1.28433,-1.10975,2.13252,-0.47643 -3.92192,0.84763,-1.51573,-1.28435,-1.10973,2.13285,-0.47681 -3.92262,0.84718,-1.51593,-1.28436,-1.10970,2.13317,-0.47717 -3.92331,0.84675,-1.51613,-1.28438,-1.10968,2.13349,-0.47753 -3.92401,0.84632,-1.51632,-1.28440,-1.10966,2.13380,-0.47789 -3.92470,0.84589,-1.51652,-1.28441,-1.10964,2.13410,-0.47823 -3.92540,0.84548,-1.51670,-1.28442,-1.10962,2.13440,-0.47858 -3.92609,0.84507,-1.51689,-1.28444,-1.10960,2.13469,-0.47891 -3.92679,0.84467,-1.51707,-1.28445,-1.10959,2.13498,-0.47924 -3.92748,0.84428,-1.51725,-1.28446,-1.10957,2.13526,-0.47957 -3.92817,0.84389,-1.51742,-1.28447,-1.10956,2.13554,-0.47988 -3.92887,0.84351,-1.51760,-1.28448,-1.10954,2.13581,-0.48020 -3.92956,0.84332,-1.51768,-1.28450,-1.10953,2.13595,-0.48036 -3.93026,0.84285,-1.51781,-1.28466,-1.10944,2.13629,-0.48074 -3.93095,0.84240,-1.51794,-1.28482,-1.10936,2.13661,-0.48112 -3.93165,0.84195,-1.51807,-1.28497,-1.10928,2.13693,-0.48149 -3.93234,0.84151,-1.51819,-1.28512,-1.10920,2.13725,-0.48185 -3.93304,0.84108,-1.51832,-1.28526,-1.10913,2.13756,-0.48221 -3.93373,0.84066,-1.51844,-1.28540,-1.10905,2.13786,-0.48255 -3.93443,0.84024,-1.51855,-1.28554,-1.10898,2.13816,-0.48290 -3.93512,0.83983,-1.51867,-1.28568,-1.10891,2.13845,-0.48324 -3.93582,0.83943,-1.51879,-1.28582,-1.10884,2.13874,-0.48357 -3.93651,0.83904,-1.51890,-1.28595,-1.10877,2.13902,-0.48389 -3.93720,0.83865,-1.51901,-1.28608,-1.10871,2.13930,-0.48421 -3.93790,0.83827,-1.51912,-1.28620,-1.10864,2.13957,-0.48453 -3.93859,0.83790,-1.51923,-1.28633,-1.10858,2.13984,-0.48484 -3.93929,0.83759,-1.51929,-1.28647,-1.10851,2.14006,-0.48510 -3.93998,0.83705,-1.51924,-1.28702,-1.10826,2.14045,-0.48554 -3.94068,0.83652,-1.51919,-1.28756,-1.10801,2.14082,-0.48598 -3.94137,0.83601,-1.51913,-1.28809,-1.10776,2.14119,-0.48641 -3.94207,0.83550,-1.51908,-1.28862,-1.10752,2.14155,-0.48683 -3.94276,0.83500,-1.51903,-1.28913,-1.10728,2.14191,-0.48724 -3.94346,0.83451,-1.51898,-1.28964,-1.10705,2.14226,-0.48765 -3.94415,0.83403,-1.51893,-1.29014,-1.10682,2.14260,-0.48805 -3.94485,0.83356,-1.51888,-1.29062,-1.10660,2.14294,-0.48844 -3.94554,0.83309,-1.51883,-1.29110,-1.10638,2.14327,-0.48882 -3.94624,0.83264,-1.51879,-1.29157,-1.10616,2.14359,-0.48920 -3.94693,0.83219,-1.51874,-1.29204,-1.10595,2.14391,-0.48957 -3.94762,0.83175,-1.51870,-1.29249,-1.10574,2.14422,-0.48994 -3.94832,0.83132,-1.51865,-1.29294,-1.10554,2.14453,-0.49030 -3.94901,0.83090,-1.51861,-1.29338,-1.10533,2.14483,-0.49065 -3.94971,0.83049,-1.51856,-1.29381,-1.10514,2.14513,-0.49099 -3.95040,0.83008,-1.51852,-1.29423,-1.10494,2.14542,-0.49133 -3.95110,0.82968,-1.51848,-1.29465,-1.10475,2.14571,-0.49167 -3.95179,0.82929,-1.51844,-1.29506,-1.10456,2.14599,-0.49199 -3.95249,0.82890,-1.51839,-1.29546,-1.10438,2.14626,-0.49232 -3.95318,0.82852,-1.51835,-1.29586,-1.10420,2.14653,-0.49263 -3.95388,0.82815,-1.51831,-1.29625,-1.10402,2.14680,-0.49294 -3.95457,0.82778,-1.51828,-1.29663,-1.10384,2.14706,-0.49325 -3.95527,0.82743,-1.51824,-1.29700,-1.10367,2.14731,-0.49355 -3.95596,0.82707,-1.51820,-1.29737,-1.10350,2.14757,-0.49384 -3.95665,0.82673,-1.51816,-1.29773,-1.10334,2.14781,-0.49413 -3.95735,0.82639,-1.51812,-1.29809,-1.10317,2.14805,-0.49442 -3.95804,0.82606,-1.51809,-1.29844,-1.10301,2.14829,-0.49469 -3.95874,0.82573,-1.51805,-1.29878,-1.10286,2.14853,-0.49497 -3.95943,0.82541,-1.51802,-1.29912,-1.10270,2.14876,-0.49524 -3.96013,0.82527,-1.51798,-1.29930,-1.10262,2.14886,-0.49535 -3.96082,0.82482,-1.51774,-1.30010,-1.10226,2.14917,-0.49573 -3.96152,0.82438,-1.51751,-1.30089,-1.10192,2.14948,-0.49609 -3.96221,0.82395,-1.51728,-1.30167,-1.10157,2.14979,-0.49645 -3.96291,0.82353,-1.51705,-1.30243,-1.10123,2.15009,-0.49681 -3.96360,0.82312,-1.51683,-1.30318,-1.10090,2.15038,-0.49715 -3.96430,0.82271,-1.51661,-1.30392,-1.10057,2.15067,-0.49750 -3.96499,0.82231,-1.51639,-1.30464,-1.10025,2.15095,-0.49783 -3.96568,0.82192,-1.51618,-1.30536,-1.09994,2.15123,-0.49816 -3.96638,0.82154,-1.51597,-1.30606,-1.09962,2.15151,-0.49848 -3.96707,0.82116,-1.51576,-1.30675,-1.09932,2.15177,-0.49880 -3.96777,0.82079,-1.51556,-1.30742,-1.09902,2.15204,-0.49911 -3.96846,0.82042,-1.51536,-1.30809,-1.09872,2.15230,-0.49942 -3.96916,0.82007,-1.51517,-1.30874,-1.09843,2.15255,-0.49972 -3.96985,0.81972,-1.51497,-1.30939,-1.09814,2.15280,-0.50001 -3.97055,0.81937,-1.51478,-1.31002,-1.09786,2.15304,-0.50030 -3.97124,0.81903,-1.51460,-1.31064,-1.09758,2.15328,-0.50058 -3.97194,0.81870,-1.51441,-1.31125,-1.09731,2.15352,-0.50086 -3.97263,0.81838,-1.51423,-1.31185,-1.09704,2.15375,-0.50114 -3.97333,0.81806,-1.51406,-1.31244,-1.09678,2.15398,-0.50140 -3.97402,0.81774,-1.51388,-1.31302,-1.09652,2.15420,-0.50167 -3.97472,0.81744,-1.51371,-1.31360,-1.09626,2.15442,-0.50193 -3.97541,0.81713,-1.51354,-1.31416,-1.09601,2.15463,-0.50218 -3.97610,0.81684,-1.51338,-1.31471,-1.09576,2.15484,-0.50243 -3.97680,0.81655,-1.51321,-1.31525,-1.09552,2.15505,-0.50268 -3.97749,0.81626,-1.51305,-1.31579,-1.09528,2.15526,-0.50292 -3.97819,0.81598,-1.51289,-1.31631,-1.09504,2.15546,-0.50315 -3.97888,0.81571,-1.51274,-1.31683,-1.09481,2.15565,-0.50339 -3.97958,0.81544,-1.51259,-1.31733,-1.09458,2.15584,-0.50361 -3.98027,0.81517,-1.51243,-1.31783,-1.09436,2.15603,-0.50384 -3.98097,0.81491,-1.51229,-1.31832,-1.09414,2.15622,-0.50406 -3.98166,0.81465,-1.51214,-1.31881,-1.09392,2.15640,-0.50427 -3.98236,0.81440,-1.51200,-1.31928,-1.09371,2.15658,-0.50449 -3.98305,0.81437,-1.51197,-1.31935,-1.09368,2.15660,-0.50451 -3.98375,0.81410,-1.51169,-1.32008,-1.09336,2.15680,-0.50474 -3.98444,0.81382,-1.51142,-1.32079,-1.09305,2.15699,-0.50497 -3.98513,0.81356,-1.51116,-1.32149,-1.09274,2.15718,-0.50520 -3.98583,0.81330,-1.51089,-1.32218,-1.09244,2.15736,-0.50542 -3.98652,0.81304,-1.51064,-1.32286,-1.09214,2.15755,-0.50564 -3.98722,0.81279,-1.51038,-1.32352,-1.09185,2.15773,-0.50585 -3.98791,0.81254,-1.51013,-1.32418,-1.09156,2.15790,-0.50606 -3.98861,0.81229,-1.50989,-1.32482,-1.09128,2.15808,-0.50627 -3.98930,0.81206,-1.50964,-1.32546,-1.09100,2.15825,-0.50647 -3.99000,0.81182,-1.50941,-1.32608,-1.09072,2.15841,-0.50667 -3.99069,0.81159,-1.50917,-1.32669,-1.09045,2.15858,-0.50686 -3.99139,0.81137,-1.50894,-1.32729,-1.09019,2.15874,-0.50705 -3.99208,0.81114,-1.50872,-1.32789,-1.08993,2.15889,-0.50724 -3.99278,0.81093,-1.50850,-1.32847,-1.08967,2.15905,-0.50742 -3.99347,0.81071,-1.50828,-1.32904,-1.08941,2.15920,-0.50760 -3.99417,0.81051,-1.50806,-1.32960,-1.08916,2.15935,-0.50778 -3.99486,0.81030,-1.50785,-1.33016,-1.08892,2.15949,-0.50795 -3.99555,0.81010,-1.50764,-1.33070,-1.08868,2.15964,-0.50812 -3.99625,0.80994,-1.50744,-1.33120,-1.08846,2.15975,-0.50826 -3.99694,0.80956,-1.50664,-1.33292,-1.08773,2.16002,-0.50858 -3.99764,0.80919,-1.50585,-1.33461,-1.08701,2.16028,-0.50890 -3.99833,0.80882,-1.50508,-1.33627,-1.08631,2.16053,-0.50921 -3.99903,0.80846,-1.50432,-1.33790,-1.08561,2.16079,-0.50952 -3.99972,0.80811,-1.50357,-1.33951,-1.08493,2.16103,-0.50981 -4.00042,0.80776,-1.50284,-1.34109,-1.08426,2.16128,-0.51011 -4.00111,0.80743,-1.50211,-1.34264,-1.08360,2.16151,-0.51040 -4.00181,0.80709,-1.50140,-1.34417,-1.08294,2.16175,-0.51068 -4.00250,0.80677,-1.50071,-1.34567,-1.08230,2.16198,-0.51096 -4.00320,0.80645,-1.50002,-1.34714,-1.08167,2.16220,-0.51123 -4.00389,0.80613,-1.49935,-1.34859,-1.08105,2.16242,-0.51149 -4.00458,0.80583,-1.49869,-1.35002,-1.08044,2.16264,-0.51175 -4.00528,0.80552,-1.49803,-1.35142,-1.07984,2.16285,-0.51201 -4.00597,0.80523,-1.49739,-1.35280,-1.07924,2.16306,-0.51226 -4.00667,0.80494,-1.49677,-1.35415,-1.07866,2.16326,-0.51251 -4.00736,0.80465,-1.49615,-1.35548,-1.07809,2.16346,-0.51275 -4.00806,0.80437,-1.49554,-1.35679,-1.07752,2.16366,-0.51299 -4.00875,0.80410,-1.49494,-1.35808,-1.07697,2.16385,-0.51322 -4.00945,0.80383,-1.49435,-1.35935,-1.07642,2.16404,-0.51345 -4.01014,0.80357,-1.49378,-1.36059,-1.07588,2.16422,-0.51367 -4.01084,0.80331,-1.49321,-1.36182,-1.07535,2.16440,-0.51389 -4.01153,0.80306,-1.49265,-1.36302,-1.07483,2.16458,-0.51410 -4.01223,0.80281,-1.49210,-1.36420,-1.07431,2.16475,-0.51431 -4.01292,0.80257,-1.49156,-1.36537,-1.07380,2.16493,-0.51452 -4.01361,0.80233,-1.49103,-1.36651,-1.07331,2.16509,-0.51472 -4.01431,0.80209,-1.49051,-1.36764,-1.07282,2.16526,-0.51492 -4.01500,0.80186,-1.48999,-1.36874,-1.07233,2.16542,-0.51511 -4.01570,0.80164,-1.48949,-1.36983,-1.07186,2.16558,-0.51530 -4.01639,0.80142,-1.48899,-1.37090,-1.07139,2.16573,-0.51549 -4.01709,0.80120,-1.48851,-1.37195,-1.07093,2.16588,-0.51567 -4.01778,0.80099,-1.48803,-1.37298,-1.07047,2.16603,-0.51585 -4.01848,0.80078,-1.48756,-1.37400,-1.07003,2.16618,-0.51602 -4.01917,0.80058,-1.48709,-1.37500,-1.06959,2.16632,-0.51620 -4.01987,0.80038,-1.48664,-1.37598,-1.06916,2.16646,-0.51636 -4.02056,0.80018,-1.48619,-1.37695,-1.06873,2.16660,-0.51653 -4.02126,0.79999,-1.48575,-1.37790,-1.06831,2.16674,-0.51669 -4.02195,0.79980,-1.48532,-1.37884,-1.06790,2.16687,-0.51685 -4.02265,0.79962,-1.48489,-1.37976,-1.06749,2.16700,-0.51700 -4.02334,0.79944,-1.48447,-1.38066,-1.06709,2.16713,-0.51716 -4.02403,0.79926,-1.48406,-1.38155,-1.06670,2.16725,-0.51731 -4.02473,0.79908,-1.48366,-1.38242,-1.06631,2.16737,-0.51745 -4.02542,0.79891,-1.48326,-1.38328,-1.06593,2.16749,-0.51760 -4.02612,0.79875,-1.48287,-1.38413,-1.06555,2.16761,-0.51774 -4.02681,0.79858,-1.48248,-1.38496,-1.06518,2.16772,-0.51787 -4.02751,0.79842,-1.48210,-1.38577,-1.06482,2.16784,-0.51801 -4.02820,0.79827,-1.48173,-1.38658,-1.06446,2.16795,-0.51814 -4.02890,0.79811,-1.48137,-1.38737,-1.06410,2.16806,-0.51827 -4.02959,0.79796,-1.48101,-1.38815,-1.06376,2.16816,-0.51840 -4.03029,0.79781,-1.48065,-1.38891,-1.06341,2.16827,-0.51852 -4.03098,0.79767,-1.48031,-1.38966,-1.06308,2.16837,-0.51864 -4.03168,0.79752,-1.47996,-1.39040,-1.06274,2.16847,-0.51876 -4.03237,0.79739,-1.47963,-1.39113,-1.06242,2.16857,-0.51888 -4.03306,0.79725,-1.47930,-1.39184,-1.06209,2.16866,-0.51899 -4.03376,0.79711,-1.47897,-1.39254,-1.06178,2.16876,-0.51910 -4.03445,0.79698,-1.47865,-1.39324,-1.06147,2.16885,-0.51921 -4.03515,0.79686,-1.47834,-1.39392,-1.06116,2.16894,-0.51932 -4.03584,0.79673,-1.47803,-1.39458,-1.06086,2.16903,-0.51942 -4.03654,0.79661,-1.47772,-1.39524,-1.06056,2.16912,-0.51953 -4.03723,0.79648,-1.47743,-1.39589,-1.06027,2.16920,-0.51963 -4.03793,0.79637,-1.47713,-1.39652,-1.05998,2.16929,-0.51973 -4.03862,0.79625,-1.47684,-1.39715,-1.05969,2.16937,-0.51982 -4.03932,0.79614,-1.47656,-1.39776,-1.05941,2.16945,-0.51992 -4.04001,0.79602,-1.47628,-1.39837,-1.05914,2.16953,-0.52001 -4.04071,0.79591,-1.47600,-1.39896,-1.05887,2.16960,-0.52010 -4.04140,0.79589,-1.47593,-1.39911,-1.05880,2.16962,-0.52012 -4.04210,0.79578,-1.47549,-1.39999,-1.05842,2.16970,-0.52022 -4.04279,0.79567,-1.47505,-1.40086,-1.05804,2.16978,-0.52031 -4.04348,0.79556,-1.47462,-1.40172,-1.05767,2.16986,-0.52040 -4.04418,0.79545,-1.47420,-1.40256,-1.05730,2.16993,-0.52049 -4.04487,0.79534,-1.47378,-1.40339,-1.05694,2.17001,-0.52058 -4.04557,0.79524,-1.47337,-1.40420,-1.05658,2.17008,-0.52067 -4.04626,0.79514,-1.47297,-1.40500,-1.05623,2.17015,-0.52075 -4.04696,0.79504,-1.47257,-1.40578,-1.05589,2.17022,-0.52083 -4.04765,0.79494,-1.47219,-1.40656,-1.05555,2.17029,-0.52091 -4.04835,0.79485,-1.47180,-1.40732,-1.05521,2.17035,-0.52099 -4.04904,0.79476,-1.47143,-1.40806,-1.05488,2.17042,-0.52107 -4.04974,0.79467,-1.47106,-1.40880,-1.05456,2.17048,-0.52114 -4.05043,0.79458,-1.47070,-1.40952,-1.05424,2.17054,-0.52122 -4.05113,0.79449,-1.47034,-1.41023,-1.05392,2.17061,-0.52129 -4.05182,0.79441,-1.46999,-1.41093,-1.05361,2.17067,-0.52136 -4.05251,0.79432,-1.46964,-1.41162,-1.05331,2.17072,-0.52143 -4.05321,0.79424,-1.46930,-1.41230,-1.05301,2.17078,-0.52149 -4.05390,0.79416,-1.46897,-1.41296,-1.05271,2.17084,-0.52156 -4.05460,0.79409,-1.46864,-1.41361,-1.05242,2.17089,-0.52162 -4.05529,0.79401,-1.46832,-1.41426,-1.05213,2.17094,-0.52169 -4.05599,0.79394,-1.46800,-1.41489,-1.05185,2.17100,-0.52175 -4.05668,0.79386,-1.46769,-1.41551,-1.05157,2.17105,-0.52181 -4.05738,0.79379,-1.46738,-1.41612,-1.05130,2.17110,-0.52186 -4.05807,0.79373,-1.46711,-1.41665,-1.05107,2.17114,-0.52191 -4.05877,0.79358,-1.46623,-1.41829,-1.05038,2.17124,-0.52204 -4.05946,0.79343,-1.46537,-1.41991,-1.04971,2.17135,-0.52217 -4.06016,0.79329,-1.46452,-1.42150,-1.04905,2.17145,-0.52229 -4.06085,0.79315,-1.46368,-1.42306,-1.04840,2.17154,-0.52241 -4.06154,0.79301,-1.46286,-1.42460,-1.04776,2.17164,-0.52253 -4.06224,0.79287,-1.46205,-1.42610,-1.04713,2.17173,-0.52265 -4.06293,0.79274,-1.46126,-1.42759,-1.04650,2.17183,-0.52276 -4.06363,0.79261,-1.46048,-1.42905,-1.04589,2.17191,-0.52287 -4.06432,0.79249,-1.45971,-1.43048,-1.04529,2.17200,-0.52297 -4.06502,0.79236,-1.45896,-1.43189,-1.04470,2.17209,-0.52308 -4.06571,0.79224,-1.45822,-1.43328,-1.04411,2.17217,-0.52318 -4.06641,0.79212,-1.45749,-1.43464,-1.04354,2.17225,-0.52328 -4.06710,0.79201,-1.45677,-1.43598,-1.04297,2.17233,-0.52338 -4.06780,0.79190,-1.45607,-1.43729,-1.04242,2.17241,-0.52347 -4.06849,0.79179,-1.45538,-1.43859,-1.04187,2.17249,-0.52356 -4.06919,0.79168,-1.45470,-1.43986,-1.04133,2.17256,-0.52365 -4.06988,0.79157,-1.45403,-1.44111,-1.04080,2.17263,-0.52374 -4.07058,0.79147,-1.45337,-1.44234,-1.04027,2.17270,-0.52383 -4.07127,0.79137,-1.45273,-1.44355,-1.03976,2.17277,-0.52391 -4.07196,0.79127,-1.45209,-1.44474,-1.03925,2.17284,-0.52399 -4.07266,0.79118,-1.45147,-1.44591,-1.03875,2.17291,-0.52407 -4.07335,0.79108,-1.45086,-1.44706,-1.03826,2.17297,-0.52415 -4.07405,0.79099,-1.45025,-1.44819,-1.03777,2.17303,-0.52422 -4.07474,0.79090,-1.44966,-1.44930,-1.03730,2.17309,-0.52429 -4.07544,0.79082,-1.44908,-1.45039,-1.03683,2.17315,-0.52437 -4.07613,0.79073,-1.44851,-1.45147,-1.03637,2.17321,-0.52444 -4.07683,0.79065,-1.44794,-1.45252,-1.03591,2.17327,-0.52450 -4.07752,0.79057,-1.44739,-1.45356,-1.03546,2.17333,-0.52457 -4.07822,0.79049,-1.44685,-1.45458,-1.03502,2.17338,-0.52463 -4.07891,0.79042,-1.44631,-1.45559,-1.03459,2.17343,-0.52470 -4.07961,0.79034,-1.44579,-1.45658,-1.03416,2.17348,-0.52476 -4.08030,0.79027,-1.44527,-1.45755,-1.03374,2.17353,-0.52482 -4.08099,0.79020,-1.44476,-1.45850,-1.03332,2.17358,-0.52487 -4.08169,0.79013,-1.44426,-1.45944,-1.03292,2.17363,-0.52493 -4.08238,0.79006,-1.44377,-1.46036,-1.03251,2.17368,-0.52498 -4.08308,0.78999,-1.44329,-1.46127,-1.03212,2.17372,-0.52504 -4.08377,0.78993,-1.44281,-1.46216,-1.03173,2.17377,-0.52509 -4.08447,0.78987,-1.44235,-1.46304,-1.03135,2.17381,-0.52514 -4.08516,0.78980,-1.44189,-1.46390,-1.03097,2.17385,-0.52519 -4.08586,0.78974,-1.44144,-1.46475,-1.03060,2.17390,-0.52523 -4.08655,0.78969,-1.44100,-1.46558,-1.03023,2.17394,-0.52528 -4.08725,0.78963,-1.44056,-1.46640,-1.02987,2.17397,-0.52533 -4.08794,0.78957,-1.44013,-1.46721,-1.02951,2.17401,-0.52537 -4.08864,0.78952,-1.43971,-1.46800,-1.02916,2.17405,-0.52541 -4.08933,0.78947,-1.43930,-1.46878,-1.02882,2.17409,-0.52545 -4.09003,0.78942,-1.43889,-1.46955,-1.02848,2.17412,-0.52549 -4.09072,0.78937,-1.43849,-1.47030,-1.02815,2.17416,-0.52553 -4.09141,0.78932,-1.43810,-1.47104,-1.02782,2.17419,-0.52557 -4.09211,0.78927,-1.43771,-1.47177,-1.02749,2.17422,-0.52561 -4.09280,0.78922,-1.43733,-1.47249,-1.02717,2.17425,-0.52564 -4.09350,0.78918,-1.43696,-1.47319,-1.02686,2.17428,-0.52568 -4.09419,0.78914,-1.43659,-1.47388,-1.02655,2.17431,-0.52571 -4.09489,0.78909,-1.43623,-1.47456,-1.02625,2.17434,-0.52574 -4.09558,0.78905,-1.43587,-1.47523,-1.02595,2.17437,-0.52577 -4.09628,0.78901,-1.43553,-1.47589,-1.02565,2.17440,-0.52580 -4.09697,0.78897,-1.43518,-1.47654,-1.02536,2.17443,-0.52583 -4.09767,0.78893,-1.43485,-1.47718,-1.02507,2.17445,-0.52586 -4.09836,0.78890,-1.43451,-1.47780,-1.02479,2.17448,-0.52589 -4.09906,0.78886,-1.43419,-1.47842,-1.02451,2.17450,-0.52592 -4.09975,0.78882,-1.43387,-1.47902,-1.02424,2.17453,-0.52594 -4.10044,0.78880,-1.43363,-1.47947,-1.02404,2.17455,-0.52596 -4.10114,0.78875,-1.43320,-1.48027,-1.02369,2.17458,-0.52600 -4.10183,0.78871,-1.43276,-1.48107,-1.02335,2.17461,-0.52603 -4.10253,0.78867,-1.43234,-1.48185,-1.02301,2.17463,-0.52606 -4.10322,0.78863,-1.43192,-1.48262,-1.02267,2.17466,-0.52610 -4.10392,0.78859,-1.43151,-1.48337,-1.02234,2.17469,-0.52613 -4.10461,0.78855,-1.43111,-1.48412,-1.02202,2.17472,-0.52616 -4.10531,0.78851,-1.43072,-1.48485,-1.02170,2.17474,-0.52619 -4.10600,0.78847,-1.43033,-1.48557,-1.02138,2.17477,-0.52621 -4.10670,0.78844,-1.42994,-1.48627,-1.02107,2.17479,-0.52624 -4.10739,0.78840,-1.42957,-1.48697,-1.02076,2.17482,-0.52627 -4.10809,0.78837,-1.42920,-1.48765,-1.02046,2.17484,-0.52629 -4.10878,0.78834,-1.42883,-1.48832,-1.02017,2.17486,-0.52632 -4.10947,0.78830,-1.42848,-1.48898,-1.01988,2.17488,-0.52634 -4.11017,0.78827,-1.42813,-1.48963,-1.01959,2.17490,-0.52636 -4.11086,0.78824,-1.42778,-1.49027,-1.01931,2.17492,-0.52638 -4.11156,0.78822,-1.42744,-1.49090,-1.01903,2.17494,-0.52640 -4.11225,0.78819,-1.42711,-1.49152,-1.01875,2.17496,-0.52643 -4.11295,0.78816,-1.42678,-1.49212,-1.01848,2.17498,-0.52644 -4.11364,0.78813,-1.42646,-1.49272,-1.01822,2.17500,-0.52646 -4.11434,0.78813,-1.42641,-1.49280,-1.01818,2.17500,-0.52646 -4.11503,0.78812,-1.42597,-1.49358,-1.01785,2.17501,-0.52647 -4.11573,0.78811,-1.42553,-1.49435,-1.01752,2.17502,-0.52648 -4.11642,0.78810,-1.42510,-1.49511,-1.01719,2.17502,-0.52649 -4.11712,0.78809,-1.42468,-1.49585,-1.01687,2.17503,-0.52649 -4.11781,0.78808,-1.42426,-1.49659,-1.01656,2.17504,-0.52650 -4.11851,0.78807,-1.42385,-1.49731,-1.01625,2.17504,-0.52650 -4.11920,0.78806,-1.42345,-1.49801,-1.01594,2.17505,-0.52651 -4.11989,0.78805,-1.42306,-1.49871,-1.01564,2.17505,-0.52651 -4.12059,0.78804,-1.42267,-1.49939,-1.01535,2.17506,-0.52651 -4.12128,0.78804,-1.42229,-1.50007,-1.01505,2.17506,-0.52651 -4.12198,0.78803,-1.42192,-1.50073,-1.01477,2.17507,-0.52652 -4.12267,0.78802,-1.42155,-1.50138,-1.01448,2.17507,-0.52652 -4.12337,0.78802,-1.42119,-1.50202,-1.01421,2.17507,-0.52652 -4.12406,0.78801,-1.42083,-1.50265,-1.01393,2.17508,-0.52652 -4.12476,0.78801,-1.42048,-1.50326,-1.01366,2.17508,-0.52652 -4.12545,0.78800,-1.42014,-1.50387,-1.01340,2.17508,-0.52652 -4.12615,0.78800,-1.41980,-1.50447,-1.01313,2.17508,-0.52652 -4.12684,0.78802,-1.41960,-1.50479,-1.01300,2.17507,-0.52650 -4.12754,0.78824,-1.41861,-1.50624,-1.01245,2.17491,-0.52631 -4.12823,0.78846,-1.41764,-1.50765,-1.01190,2.17476,-0.52612 -4.12892,0.78868,-1.41668,-1.50905,-1.01136,2.17461,-0.52594 -4.12962,0.78889,-1.41574,-1.51042,-1.01084,2.17446,-0.52575 -4.13031,0.78911,-1.41482,-1.51176,-1.01031,2.17432,-0.52557 -4.13101,0.78931,-1.41391,-1.51309,-1.00980,2.17417,-0.52539 -4.13170,0.78952,-1.41301,-1.51439,-1.00930,2.17403,-0.52521 -4.13240,0.78973,-1.41214,-1.51567,-1.00880,2.17389,-0.52504 -4.13309,0.78993,-1.41127,-1.51693,-1.00831,2.17375,-0.52486 -4.13379,0.79013,-1.41043,-1.51816,-1.00782,2.17361,-0.52469 -4.13448,0.79032,-1.40959,-1.51938,-1.00735,2.17347,-0.52452 -4.13518,0.79052,-1.40878,-1.52058,-1.00688,2.17334,-0.52435 -4.13587,0.79071,-1.40797,-1.52175,-1.00642,2.17320,-0.52419 -4.13657,0.79090,-1.40718,-1.52291,-1.00596,2.17307,-0.52402 -4.13726,0.79109,-1.40640,-1.52404,-1.00551,2.17294,-0.52386 -4.13795,0.79127,-1.40564,-1.52516,-1.00507,2.17281,-0.52370 -4.13865,0.79146,-1.40489,-1.52626,-1.00464,2.17268,-0.52354 -4.13934,0.79164,-1.40415,-1.52734,-1.00421,2.17256,-0.52338 -4.14004,0.79181,-1.40342,-1.52840,-1.00379,2.17243,-0.52323 -4.14073,0.79199,-1.40271,-1.52945,-1.00337,2.17231,-0.52307 -4.14143,0.79216,-1.40201,-1.53047,-1.00296,2.17219,-0.52292 -4.14212,0.79234,-1.40132,-1.53148,-1.00256,2.17207,-0.52277 -4.14282,0.79251,-1.40064,-1.53248,-1.00216,2.17195,-0.52262 -4.14351,0.79267,-1.39998,-1.53345,-1.00177,2.17183,-0.52248 -4.14421,0.79284,-1.39932,-1.53441,-1.00138,2.17171,-0.52233 -4.14490,0.79300,-1.39868,-1.53535,-1.00100,2.17160,-0.52219 -4.14560,0.79316,-1.39805,-1.53628,-1.00063,2.17149,-0.52205 -4.14629,0.79332,-1.39743,-1.53719,-1.00026,2.17137,-0.52191 -4.14699,0.79348,-1.39681,-1.53809,-0.99989,2.17126,-0.52177 -4.14768,0.79364,-1.39621,-1.53897,-0.99953,2.17115,-0.52163 -4.14837,0.79379,-1.39562,-1.53984,-0.99918,2.17105,-0.52150 -4.14907,0.79394,-1.39504,-1.54069,-0.99883,2.17094,-0.52136 -4.14976,0.79409,-1.39447,-1.54153,-0.99849,2.17083,-0.52123 -4.15046,0.79424,-1.39391,-1.54236,-0.99815,2.17073,-0.52110 -4.15115,0.79439,-1.39336,-1.54317,-0.99782,2.17063,-0.52097 -4.15185,0.79453,-1.39282,-1.54396,-0.99749,2.17053,-0.52084 -4.15254,0.79467,-1.39229,-1.54475,-0.99717,2.17043,-0.52072 -4.15324,0.79481,-1.39177,-1.54552,-0.99685,2.17033,-0.52059 -4.15393,0.79495,-1.39125,-1.54628,-0.99654,2.17023,-0.52047 -4.15463,0.79509,-1.39075,-1.54702,-0.99623,2.17013,-0.52035 -4.15532,0.79522,-1.39025,-1.54775,-0.99592,2.17004,-0.52023 -4.15602,0.79536,-1.38976,-1.54847,-0.99562,2.16994,-0.52011 -4.15671,0.79549,-1.38928,-1.54918,-0.99533,2.16985,-0.52000 -4.15740,0.79562,-1.38881,-1.54988,-0.99503,2.16976,-0.51988 -4.15810,0.79575,-1.38835,-1.55056,-0.99475,2.16967,-0.51977 -4.15879,0.79587,-1.38789,-1.55124,-0.99446,2.16958,-0.51965 -4.15949,0.79600,-1.38745,-1.55190,-0.99419,2.16949,-0.51954 -4.16018,0.79612,-1.38701,-1.55255,-0.99391,2.16940,-0.51943 -4.16088,0.79624,-1.38657,-1.55319,-0.99364,2.16932,-0.51933 -4.16157,0.79636,-1.38615,-1.55382,-0.99337,2.16923,-0.51922 -4.16227,0.79648,-1.38573,-1.55444,-0.99311,2.16915,-0.51911 -4.16296,0.79660,-1.38532,-1.55505,-0.99285,2.16906,-0.51901 -4.16366,0.79671,-1.38491,-1.55565,-0.99260,2.16898,-0.51891 -4.16435,0.79683,-1.38452,-1.55624,-0.99235,2.16890,-0.51880 -4.16505,0.79694,-1.38413,-1.55682,-0.99210,2.16882,-0.51870 -4.16574,0.79705,-1.38374,-1.55739,-0.99185,2.16874,-0.51860 -4.16644,0.79716,-1.38338,-1.55793,-0.99163,2.16866,-0.51851 -4.16713,0.79737,-1.38275,-1.55880,-0.99129,2.16851,-0.51832 -4.16782,0.79758,-1.38213,-1.55965,-0.99095,2.16837,-0.51814 -4.16852,0.79779,-1.38152,-1.56049,-0.99062,2.16822,-0.51796 -4.16921,0.79800,-1.38092,-1.56132,-0.99029,2.16808,-0.51778 -4.16991,0.79820,-1.38033,-1.56213,-0.98997,2.16793,-0.51761 -4.17060,0.79840,-1.37975,-1.56293,-0.98965,2.16779,-0.51743 -4.17130,0.79860,-1.37918,-1.56372,-0.98934,2.16765,-0.51726 -4.17199,0.79879,-1.37862,-1.56449,-0.98903,2.16752,-0.51709 -4.17269,0.79898,-1.37807,-1.56525,-0.98872,2.16738,-0.51692 -4.17338,0.79917,-1.37754,-1.56600,-0.98842,2.16725,-0.51676 -4.17408,0.79936,-1.37700,-1.56673,-0.98813,2.16712,-0.51660 -4.17477,0.79954,-1.37648,-1.56745,-0.98784,2.16699,-0.51644 -4.17547,0.79972,-1.37597,-1.56816,-0.98755,2.16686,-0.51628 -4.17616,0.79990,-1.37547,-1.56886,-0.98727,2.16673,-0.51612 -4.17685,0.80008,-1.37497,-1.56955,-0.98699,2.16661,-0.51597 -4.17755,0.80025,-1.37448,-1.57023,-0.98672,2.16649,-0.51582 -4.17824,0.80042,-1.37401,-1.57089,-0.98645,2.16637,-0.51567 -4.17894,0.80059,-1.37354,-1.57154,-0.98618,2.16625,-0.51552 -4.17963,0.80076,-1.37307,-1.57219,-0.98592,2.16613,-0.51537 -4.18033,0.80092,-1.37262,-1.57282,-0.98566,2.16601,-0.51523 -4.18102,0.80109,-1.37217,-1.57344,-0.98540,2.16590,-0.51509 -4.18172,0.80125,-1.37173,-1.57405,-0.98515,2.16578,-0.51495 -4.18241,0.80141,-1.37130,-1.57465,-0.98490,2.16567,-0.51481 -4.18311,0.80156,-1.37088,-1.57524,-0.98466,2.16556,-0.51467 -4.18380,0.80171,-1.37046,-1.57582,-0.98442,2.16545,-0.51454 -4.18450,0.80187,-1.37005,-1.57639,-0.98418,2.16534,-0.51441 -4.18519,0.80202,-1.36965,-1.57696,-0.98395,2.16524,-0.51427 -4.18588,0.80216,-1.36925,-1.57751,-0.98372,2.16513,-0.51414 -4.18658,0.80231,-1.36887,-1.57805,-0.98349,2.16503,-0.51402 -4.18727,0.80240,-1.36865,-1.57833,-0.98338,2.16497,-0.51394 -4.18797,0.80285,-1.36769,-1.57950,-0.98296,2.16465,-0.51356 -4.18866,0.80329,-1.36675,-1.58066,-0.98255,2.16434,-0.51318 -4.18936,0.80373,-1.36582,-1.58179,-0.98214,2.16404,-0.51281 -4.19005,0.80416,-1.36490,-1.58291,-0.98174,2.16373,-0.51244 -4.19075,0.80459,-1.36401,-1.58400,-0.98134,2.16344,-0.51208 -4.19144,0.80501,-1.36312,-1.58508,-0.98095,2.16314,-0.51173 -4.19214,0.80542,-1.36226,-1.58614,-0.98057,2.16285,-0.51137 -4.19283,0.80583,-1.36141,-1.58718,-0.98019,2.16256,-0.51103 -4.19353,0.80623,-1.36057,-1.58820,-0.97981,2.16228,-0.51069 -4.19422,0.80663,-1.35975,-1.58921,-0.97944,2.16200,-0.51035 -4.19492,0.80702,-1.35894,-1.59020,-0.97908,2.16173,-0.51001 -4.19561,0.80741,-1.35814,-1.59117,-0.97872,2.16146,-0.50969 -4.19630,0.80779,-1.35736,-1.59213,-0.97837,2.16119,-0.50936 -4.19700,0.80816,-1.35659,-1.59307,-0.97802,2.16092,-0.50904 -4.19769,0.80853,-1.35584,-1.59400,-0.97768,2.16066,-0.50873 -4.19839,0.80890,-1.35510,-1.59491,-0.97734,2.16041,-0.50842 -4.19908,0.80926,-1.35437,-1.59580,-0.97701,2.16015,-0.50811 -4.19978,0.80961,-1.35365,-1.59668,-0.97668,2.15990,-0.50781 -4.20047,0.80996,-1.35295,-1.59754,-0.97636,2.15966,-0.50751 -4.20117,0.81031,-1.35226,-1.59839,-0.97604,2.15941,-0.50722 -4.20186,0.81065,-1.35158,-1.59923,-0.97572,2.15917,-0.50693 -4.20256,0.81098,-1.35091,-1.60005,-0.97541,2.15894,-0.50664 -4.20325,0.81131,-1.35025,-1.60086,-0.97510,2.15870,-0.50636 -4.20395,0.81164,-1.34960,-1.60165,-0.97480,2.15847,-0.50608 -4.20464,0.81196,-1.34897,-1.60243,-0.97451,2.15824,-0.50581 -4.20533,0.81227,-1.34835,-1.60320,-0.97421,2.15802,-0.50554 -4.20603,0.81259,-1.34773,-1.60396,-0.97392,2.15780,-0.50527 -4.20672,0.81289,-1.34713,-1.60470,-0.97364,2.15758,-0.50501 -4.20742,0.81320,-1.34654,-1.60543,-0.97336,2.15737,-0.50475 -4.20811,0.81350,-1.34596,-1.60615,-0.97308,2.15715,-0.50450 -4.20881,0.81379,-1.34539,-1.60685,-0.97281,2.15694,-0.50424 -4.20950,0.81408,-1.34482,-1.60755,-0.97254,2.15674,-0.50400 -4.21020,0.81437,-1.34427,-1.60823,-0.97227,2.15653,-0.50375 -4.21089,0.81465,-1.34373,-1.60890,-0.97201,2.15633,-0.50351 -4.21159,0.81493,-1.34320,-1.60956,-0.97175,2.15614,-0.50327 -4.21228,0.81520,-1.34267,-1.61021,-0.97150,2.15594,-0.50304 -4.21298,0.81547,-1.34216,-1.61085,-0.97125,2.15575,-0.50281 -4.21367,0.81574,-1.34165,-1.61148,-0.97100,2.15556,-0.50258 -4.21437,0.81600,-1.34115,-1.61210,-0.97076,2.15537,-0.50236 -4.21506,0.81626,-1.34066,-1.61270,-0.97052,2.15519,-0.50213 -4.21575,0.81651,-1.34018,-1.61330,-0.97028,2.15501,-0.50192 -4.21645,0.81677,-1.33971,-1.61389,-0.97005,2.15483,-0.50170 -4.21714,0.81701,-1.33924,-1.61446,-0.96982,2.15465,-0.50149 -4.21784,0.81726,-1.33879,-1.61503,-0.96959,2.15448,-0.50128 -4.21853,0.81750,-1.33834,-1.61559,-0.96937,2.15430,-0.50107 -4.21923,0.81773,-1.33790,-1.61614,-0.96915,2.15413,-0.50087 -4.21992,0.81797,-1.33747,-1.61668,-0.96893,2.15397,-0.50067 -4.22062,0.81820,-1.33704,-1.61721,-0.96871,2.15380,-0.50047 -4.22131,0.81842,-1.33662,-1.61773,-0.96850,2.15364,-0.50028 -4.22201,0.81865,-1.33621,-1.61825,-0.96829,2.15348,-0.50009 -4.22270,0.81887,-1.33581,-1.61875,-0.96809,2.15332,-0.49990 -4.22340,0.81909,-1.33541,-1.61925,-0.96789,2.15317,-0.49971 -4.22409,0.81931,-1.33505,-1.61965,-0.96773,2.15301,-0.49952 -4.22478,0.82023,-1.33387,-1.62075,-0.96741,2.15236,-0.49875 -4.22548,0.82115,-1.33270,-1.62183,-0.96708,2.15172,-0.49799 -4.22617,0.82205,-1.33155,-1.62289,-0.96676,2.15109,-0.49724 -4.22687,0.82293,-1.33043,-1.62393,-0.96645,2.15046,-0.49651 -4.22756,0.82381,-1.32932,-1.62496,-0.96614,2.14984,-0.49578 -4.22826,0.82467,-1.32823,-1.62596,-0.96583,2.14924,-0.49506 -4.22895,0.82552,-1.32716,-1.62695,-0.96553,2.14864,-0.49436 -4.22965,0.82636,-1.32611,-1.62793,-0.96523,2.14804,-0.49366 -4.23034,0.82719,-1.32508,-1.62888,-0.96494,2.14746,-0.49297 -4.23104,0.82800,-1.32407,-1.62982,-0.96465,2.14688,-0.49230 -4.23173,0.82881,-1.32307,-1.63075,-0.96436,2.14632,-0.49163 -4.23243,0.82960,-1.32209,-1.63166,-0.96408,2.14576,-0.49097 -4.23312,0.83038,-1.32113,-1.63255,-0.96380,2.14520,-0.49033 -4.23381,0.83115,-1.32019,-1.63343,-0.96353,2.14466,-0.48969 -4.23451,0.83191,-1.31926,-1.63429,-0.96326,2.14412,-0.48906 -4.23520,0.83266,-1.31835,-1.63514,-0.96299,2.14359,-0.48844 -4.23590,0.83340,-1.31745,-1.63598,-0.96272,2.14306,-0.48783 -4.23659,0.83412,-1.31657,-1.63680,-0.96246,2.14255,-0.48723 -4.23729,0.83484,-1.31570,-1.63760,-0.96220,2.14204,-0.48664 -4.23798,0.83555,-1.31485,-1.63840,-0.96195,2.14154,-0.48605 -4.23868,0.83624,-1.31402,-1.63918,-0.96170,2.14104,-0.48548 -4.23937,0.83693,-1.31319,-1.63994,-0.96145,2.14055,-0.48491 -4.24007,0.83760,-1.31239,-1.64070,-0.96121,2.14007,-0.48435 -4.24076,0.83827,-1.31159,-1.64144,-0.96096,2.13960,-0.48380 -4.24146,0.83892,-1.31081,-1.64217,-0.96073,2.13913,-0.48326 -4.24215,0.83957,-1.31005,-1.64288,-0.96049,2.13867,-0.48272 -4.24285,0.84021,-1.30930,-1.64359,-0.96026,2.13821,-0.48220 -4.24354,0.84084,-1.30856,-1.64428,-0.96003,2.13776,-0.48168 -4.24423,0.84146,-1.30783,-1.64496,-0.95980,2.13732,-0.48117 -4.24493,0.84207,-1.30712,-1.64563,-0.95958,2.13688,-0.48067 -4.24562,0.84267,-1.30641,-1.64629,-0.95936,2.13645,-0.48017 -4.24632,0.84326,-1.30572,-1.64694,-0.95914,2.13603,-0.47968 -4.24701,0.84384,-1.30505,-1.64758,-0.95892,2.13561,-0.47920 -4.24771,0.84442,-1.30438,-1.64820,-0.95871,2.13520,-0.47873 -4.24840,0.84498,-1.30373,-1.64882,-0.95850,2.13479,-0.47826 -4.24910,0.84554,-1.30308,-1.64942,-0.95830,2.13439,-0.47780 -4.24979,0.84609,-1.30245,-1.65002,-0.95809,2.13399,-0.47735 -4.25049,0.84663,-1.30183,-1.65061,-0.95789,2.13360,-0.47690 -4.25118,0.84717,-1.30122,-1.65118,-0.95769,2.13322,-0.47646 -4.25188,0.84769,-1.30062,-1.65175,-0.95749,2.13284,-0.47603 -4.25257,0.84821,-1.30003,-1.65231,-0.95730,2.13247,-0.47560 -4.25326,0.84872,-1.29945,-1.65286,-0.95711,2.13210,-0.47518 -4.25396,0.84922,-1.29888,-1.65340,-0.95692,2.13174,-0.47477 -4.25465,0.84972,-1.29832,-1.65393,-0.95673,2.13138,-0.47436 -4.25535,0.85021,-1.29777,-1.65445,-0.95655,2.13103,-0.47396 -4.25604,0.85069,-1.29723,-1.65496,-0.95636,2.13068,-0.47356 -4.25674,0.85116,-1.29670,-1.65546,-0.95618,2.13034,-0.47317 -4.25743,0.85163,-1.29618,-1.65596,-0.95601,2.13000,-0.47279 -4.25813,0.85209,-1.29567,-1.65645,-0.95583,2.12967,-0.47241 -4.25882,0.85254,-1.29517,-1.65693,-0.95566,2.12934,-0.47204 -4.25952,0.85299,-1.29467,-1.65740,-0.95549,2.12902,-0.47167 -4.26021,0.85343,-1.29418,-1.65787,-0.95532,2.12870,-0.47131 -4.26091,0.85386,-1.29371,-1.65832,-0.95515,2.12839,-0.47095 -4.26160,0.85429,-1.29324,-1.65877,-0.95499,2.12808,-0.47060 -4.26230,0.85471,-1.29277,-1.65921,-0.95483,2.12777,-0.47026 -4.26299,0.85512,-1.29232,-1.65965,-0.95466,2.12747,-0.46992 -4.26368,0.85553,-1.29187,-1.66008,-0.95451,2.12718,-0.46958 -4.26438,0.85593,-1.29144,-1.66050,-0.95435,2.12689,-0.46925 -4.26507,0.85632,-1.29101,-1.66091,-0.95420,2.12660,-0.46893 -4.26577,0.85671,-1.29058,-1.66132,-0.95404,2.12631,-0.46861 -4.26646,0.85710,-1.29017,-1.66172,-0.95389,2.12604,-0.46829 -4.26716,0.85747,-1.28976,-1.66211,-0.95374,2.12576,-0.46798 -4.26785,0.85785,-1.28936,-1.66250,-0.95360,2.12549,-0.46768 -4.26855,0.85821,-1.28896,-1.66288,-0.95345,2.12522,-0.46737 -4.26924,0.85857,-1.28857,-1.66326,-0.95331,2.12496,-0.46708 -4.26994,0.85893,-1.28819,-1.66362,-0.95317,2.12470,-0.46679 -4.27063,0.85928,-1.28782,-1.66399,-0.95303,2.12445,-0.46650 -4.27133,0.85947,-1.28762,-1.66418,-0.95296,2.12431,-0.46634 -4.27202,0.86000,-1.28709,-1.66462,-0.95282,2.12392,-0.46591 -4.27271,0.86052,-1.28657,-1.66505,-0.95268,2.12355,-0.46549 -4.27341,0.86104,-1.28607,-1.66548,-0.95254,2.12317,-0.46507 -4.27410,0.86154,-1.28557,-1.66590,-0.95240,2.12281,-0.46466 -4.27480,0.86204,-1.28508,-1.66632,-0.95226,2.12245,-0.46425 -4.27549,0.86253,-1.28460,-1.66672,-0.95213,2.12209,-0.46385 -4.27619,0.86302,-1.28412,-1.66712,-0.95200,2.12174,-0.46346 -4.27688,0.86350,-1.28366,-1.66752,-0.95187,2.12139,-0.46307 -4.27758,0.86397,-1.28320,-1.66790,-0.95174,2.12105,-0.46269 -4.27827,0.86443,-1.28275,-1.66829,-0.95161,2.12072,-0.46231 -4.27897,0.86488,-1.28231,-1.66866,-0.95148,2.12039,-0.46194 -4.27966,0.86533,-1.28188,-1.66903,-0.95136,2.12006,-0.46158 -4.28036,0.86577,-1.28145,-1.66939,-0.95123,2.11974,-0.46122 -4.28105,0.86621,-1.28104,-1.66975,-0.95111,2.11942,-0.46087 -4.28174,0.86664,-1.28062,-1.67010,-0.95099,2.11911,-0.46052 -4.28244,0.86706,-1.28022,-1.67045,-0.95087,2.11880,-0.46018 -4.28313,0.86748,-1.27982,-1.67079,-0.95075,2.11850,-0.45984 -4.28383,0.86789,-1.27943,-1.67112,-0.95064,2.11820,-0.45951 -4.28452,0.86829,-1.27905,-1.67145,-0.95052,2.11791,-0.45918 -4.28522,0.86869,-1.27867,-1.67177,-0.95041,2.11762,-0.45886 -4.28591,0.86908,-1.27830,-1.67209,-0.95029,2.11733,-0.45854 -4.28661,0.86946,-1.27794,-1.67241,-0.95018,2.11705,-0.45823 -4.28730,0.86983,-1.27760,-1.67268,-0.95009,2.11679,-0.45793 -4.28800,0.87043,-1.27713,-1.67298,-0.95001,2.11635,-0.45745 -4.28869,0.87103,-1.27666,-1.67327,-0.94994,2.11592,-0.45696 -4.28939,0.87162,-1.27621,-1.67355,-0.94987,2.11549,-0.45649 -4.29008,0.87220,-1.27576,-1.67383,-0.94980,2.11507,-0.45603 -4.29078,0.87277,-1.27532,-1.67411,-0.94972,2.11466,-0.45557 -4.29147,0.87333,-1.27489,-1.67438,-0.94965,2.11425,-0.45512 -4.29216,0.87389,-1.27446,-1.67465,-0.94958,2.11385,-0.45467 -4.29286,0.87443,-1.27404,-1.67491,-0.94951,2.11345,-0.45424 -4.29355,0.87497,-1.27363,-1.67517,-0.94944,2.11306,-0.45381 -4.29425,0.87550,-1.27323,-1.67543,-0.94937,2.11268,-0.45338 -4.29494,0.87602,-1.27283,-1.67568,-0.94930,2.11230,-0.45296 -4.29564,0.87653,-1.27244,-1.67593,-0.94924,2.11192,-0.45255 -4.29633,0.87704,-1.27206,-1.67617,-0.94917,2.11156,-0.45215 -4.29703,0.87753,-1.27168,-1.67641,-0.94910,2.11120,-0.45175 -4.29772,0.87802,-1.27131,-1.67665,-0.94903,2.11084,-0.45136 -4.29842,0.87850,-1.27095,-1.67688,-0.94897,2.11049,-0.45097 -4.29911,0.87898,-1.27059,-1.67711,-0.94890,2.11014,-0.45060 -4.29981,0.87945,-1.27024,-1.67733,-0.94884,2.10980,-0.45022 -4.30050,0.87990,-1.26990,-1.67755,-0.94877,2.10947,-0.44985 -4.30119,0.88036,-1.26956,-1.67777,-0.94871,2.10914,-0.44949 -4.30189,0.88080,-1.26922,-1.67798,-0.94865,2.10881,-0.44914 -4.30258,0.88124,-1.26890,-1.67820,-0.94858,2.10849,-0.44878 -4.30328,0.88167,-1.26858,-1.67840,-0.94852,2.10817,-0.44844 -4.30397,0.88201,-1.26834,-1.67854,-0.94848,2.10793,-0.44817 -4.30467,0.88278,-1.26791,-1.67863,-0.94851,2.10737,-0.44756 -4.30536,0.88353,-1.26749,-1.67873,-0.94853,2.10683,-0.44696 -4.30606,0.88428,-1.26707,-1.67883,-0.94855,2.10629,-0.44637 -4.30675,0.88501,-1.26666,-1.67892,-0.94857,2.10575,-0.44579 -4.30745,0.88573,-1.26626,-1.67902,-0.94859,2.10523,-0.44522 -4.30814,0.88644,-1.26586,-1.67911,-0.94860,2.10471,-0.44466 -4.30884,0.88714,-1.26548,-1.67920,-0.94862,2.10420,-0.44411 -4.30953,0.88783,-1.26510,-1.67929,-0.94864,2.10370,-0.44356 -4.31023,0.88851,-1.26472,-1.67938,-0.94865,2.10321,-0.44303 -4.31092,0.88918,-1.26436,-1.67947,-0.94866,2.10272,-0.44250 -4.31161,0.88983,-1.26400,-1.67955,-0.94868,2.10225,-0.44198 -4.31231,0.89048,-1.26364,-1.67964,-0.94869,2.10177,-0.44147 -4.31300,0.89112,-1.26329,-1.67972,-0.94870,2.10131,-0.44097 -4.31370,0.89174,-1.26295,-1.67980,-0.94871,2.10085,-0.44048 -4.31439,0.89236,-1.26262,-1.67988,-0.94872,2.10040,-0.43999 -4.31509,0.89297,-1.26229,-1.67997,-0.94873,2.09996,-0.43951 -4.31578,0.89357,-1.26196,-1.68005,-0.94873,2.09952,-0.43904 -4.31648,0.89415,-1.26165,-1.68012,-0.94874,2.09909,-0.43858 -4.31717,0.89473,-1.26133,-1.68020,-0.94875,2.09867,-0.43812 -4.31787,0.89530,-1.26103,-1.68028,-0.94875,2.09825,-0.43767 -4.31856,0.89587,-1.26072,-1.68035,-0.94876,2.09784,-0.43723 -4.31926,0.89642,-1.26043,-1.68043,-0.94876,2.09743,-0.43680 -4.31995,0.89696,-1.26014,-1.68050,-0.94876,2.09703,-0.43637 -4.32064,0.89750,-1.25985,-1.68057,-0.94877,2.09664,-0.43595 -4.32134,0.89802,-1.25957,-1.68065,-0.94877,2.09626,-0.43554 -4.32203,0.89854,-1.25929,-1.68072,-0.94877,2.09587,-0.43513 -4.32273,0.89905,-1.25902,-1.68079,-0.94877,2.09550,-0.43473 -4.32342,0.89955,-1.25876,-1.68086,-0.94877,2.09513,-0.43433 -4.32412,0.90005,-1.25850,-1.68092,-0.94877,2.09477,-0.43394 -4.32481,0.90054,-1.25824,-1.68099,-0.94877,2.09441,-0.43356 -4.32551,0.90102,-1.25799,-1.68106,-0.94877,2.09406,-0.43319 -4.32620,0.90149,-1.25774,-1.68112,-0.94877,2.09371,-0.43282 -4.32690,0.90196,-1.25752,-1.68114,-0.94879,2.09336,-0.43244 -4.32759,0.90298,-1.25726,-1.68078,-0.94902,2.09262,-0.43165 -4.32829,0.90398,-1.25700,-1.68042,-0.94924,2.09189,-0.43087 -4.32898,0.90497,-1.25676,-1.68007,-0.94945,2.09117,-0.43011 -4.32967,0.90594,-1.25651,-1.67973,-0.94967,2.09046,-0.42935 -4.33037,0.90690,-1.25628,-1.67939,-0.94988,2.08976,-0.42861 -4.33106,0.90784,-1.25604,-1.67906,-0.95008,2.08908,-0.42788 -4.33176,0.90876,-1.25581,-1.67873,-0.95028,2.08840,-0.42717 -4.33245,0.90967,-1.25559,-1.67841,-0.95048,2.08773,-0.42646 -4.33315,0.91057,-1.25537,-1.67810,-0.95067,2.08708,-0.42577 -4.33384,0.91145,-1.25515,-1.67779,-0.95086,2.08643,-0.42509 -4.33454,0.91232,-1.25494,-1.67749,-0.95104,2.08580,-0.42442 -4.33523,0.91317,-1.25474,-1.67719,-0.95122,2.08517,-0.42376 -4.33593,0.91401,-1.25453,-1.67690,-0.95140,2.08456,-0.42311 -4.33662,0.91484,-1.25433,-1.67661,-0.95158,2.08395,-0.42248 -4.33732,0.91565,-1.25414,-1.67633,-0.95175,2.08336,-0.42185 -4.33801,0.91645,-1.25395,-1.67605,-0.95191,2.08277,-0.42124 -4.33871,0.91724,-1.25376,-1.67578,-0.95208,2.08219,-0.42063 -4.33940,0.91801,-1.25358,-1.67551,-0.95224,2.08162,-0.42003 -4.34009,0.91877,-1.25340,-1.67525,-0.95240,2.08106,-0.41945 -4.34079,0.91952,-1.25322,-1.67499,-0.95255,2.08051,-0.41887 -4.34148,0.92026,-1.25305,-1.67474,-0.95270,2.07997,-0.41831 -4.34218,0.92098,-1.25288,-1.67449,-0.95285,2.07943,-0.41775 -4.34287,0.92170,-1.25271,-1.67425,-0.95299,2.07890,-0.41720 -4.34357,0.92240,-1.25255,-1.67401,-0.95314,2.07839,-0.41666 -4.34426,0.92309,-1.25239,-1.67377,-0.95328,2.07788,-0.41613 -4.34496,0.92377,-1.25223,-1.67354,-0.95341,2.07737,-0.41561 -4.34565,0.92444,-1.25207,-1.67331,-0.95355,2.07688,-0.41510 -4.34635,0.92509,-1.25192,-1.67309,-0.95368,2.07639,-0.41460 -4.34704,0.92574,-1.25178,-1.67287,-0.95381,2.07592,-0.41410 -4.34774,0.92638,-1.25163,-1.67266,-0.95393,2.07544,-0.41361 -4.34843,0.92700,-1.25149,-1.67245,-0.95406,2.07498,-0.41313 -4.34912,0.92762,-1.25135,-1.67224,-0.95418,2.07452,-0.41266 -4.34982,0.92823,-1.25121,-1.67204,-0.95430,2.07407,-0.41220 -4.35051,0.92882,-1.25107,-1.67184,-0.95441,2.07363,-0.41174 -4.35121,0.92941,-1.25094,-1.67164,-0.95453,2.07320,-0.41129 -4.35190,0.92999,-1.25081,-1.67145,-0.95464,2.07277,-0.41085 -4.35260,0.93055,-1.25068,-1.67126,-0.95475,2.07235,-0.41042 -4.35329,0.93111,-1.25056,-1.67108,-0.95485,2.07193,-0.40999 -4.35399,0.93166,-1.25044,-1.67090,-0.95496,2.07152,-0.40957 -4.35468,0.93220,-1.25031,-1.67072,-0.95506,2.07112,-0.40916 -4.35538,0.93273,-1.25020,-1.67054,-0.95516,2.07072,-0.40876 -4.35607,0.93326,-1.25008,-1.67037,-0.95526,2.07033,-0.40836 -4.35677,0.93377,-1.24997,-1.67020,-0.95536,2.06995,-0.40796 -4.35746,0.93428,-1.24985,-1.67004,-0.95545,2.06957,-0.40758 -4.35816,0.93478,-1.24974,-1.66988,-0.95554,2.06920,-0.40720 -4.35885,0.93527,-1.24964,-1.66972,-0.95563,2.06884,-0.40683 -4.35954,0.93575,-1.24953,-1.66956,-0.95572,2.06848,-0.40646 -4.36024,0.93622,-1.24943,-1.66941,-0.95581,2.06812,-0.40610 -4.36093,0.93669,-1.24932,-1.66926,-0.95589,2.06777,-0.40574 -4.36163,0.93708,-1.24927,-1.66908,-0.95598,2.06748,-0.40544 -4.36232,0.93779,-1.24941,-1.66836,-0.95630,2.06696,-0.40491 -4.36302,0.93849,-1.24955,-1.66765,-0.95662,2.06644,-0.40438 -4.36371,0.93917,-1.24969,-1.66696,-0.95693,2.06593,-0.40386 -4.36441,0.93984,-1.24983,-1.66627,-0.95723,2.06544,-0.40335 -4.36510,0.94050,-1.24997,-1.66560,-0.95753,2.06494,-0.40285 -4.36580,0.94115,-1.25010,-1.66494,-0.95782,2.06446,-0.40236 -4.36649,0.94179,-1.25023,-1.66429,-0.95811,2.06399,-0.40188 -4.36719,0.94242,-1.25036,-1.66365,-0.95840,2.06352,-0.40141 -4.36788,0.94303,-1.25049,-1.66302,-0.95868,2.06306,-0.40094 -4.36857,0.94364,-1.25062,-1.66240,-0.95895,2.06261,-0.40048 -4.36927,0.94424,-1.25074,-1.66179,-0.95922,2.06217,-0.40003 -4.36996,0.94482,-1.25086,-1.66120,-0.95948,2.06173,-0.39959 -4.37066,0.94540,-1.25099,-1.66061,-0.95975,2.06131,-0.39916 -4.37135,0.94596,-1.25110,-1.66004,-0.96000,2.06088,-0.39873 -4.37205,0.94652,-1.25122,-1.65947,-0.96025,2.06047,-0.39831 -4.37274,0.94706,-1.25134,-1.65891,-0.96050,2.06006,-0.39790 -4.37344,0.94760,-1.25145,-1.65837,-0.96074,2.05966,-0.39750 -4.37413,0.94813,-1.25156,-1.65783,-0.96098,2.05927,-0.39710 -4.37483,0.94865,-1.25167,-1.65730,-0.96122,2.05888,-0.39671 -4.37552,0.94916,-1.25178,-1.65678,-0.96145,2.05850,-0.39633 -4.37622,0.94966,-1.25189,-1.65627,-0.96167,2.05812,-0.39595 -4.37691,0.95015,-1.25200,-1.65577,-0.96190,2.05775,-0.39558 -4.37760,0.95064,-1.25210,-1.65528,-0.96212,2.05739,-0.39522 -4.37830,0.95111,-1.25220,-1.65480,-0.96233,2.05703,-0.39486 -4.37899,0.95158,-1.25230,-1.65432,-0.96254,2.05668,-0.39451 -4.37969,0.95204,-1.25240,-1.65385,-0.96275,2.05634,-0.39416 -4.38038,0.95249,-1.25250,-1.65339,-0.96295,2.05600,-0.39382 -4.38108,0.95294,-1.25260,-1.65294,-0.96315,2.05567,-0.39349 -4.38177,0.95338,-1.25269,-1.65250,-0.96335,2.05534,-0.39316 -4.38247,0.95380,-1.25278,-1.65206,-0.96355,2.05502,-0.39284 -4.38316,0.95423,-1.25288,-1.65164,-0.96374,2.05470,-0.39252 -4.38386,0.95464,-1.25297,-1.65121,-0.96392,2.05439,-0.39221 -4.38455,0.95505,-1.25305,-1.65080,-0.96411,2.05408,-0.39191 -4.38525,0.95545,-1.25314,-1.65040,-0.96429,2.05378,-0.39161 -4.38594,0.95584,-1.25323,-1.65000,-0.96447,2.05348,-0.39131 -4.38664,0.95623,-1.25331,-1.64960,-0.96464,2.05319,-0.39102 -4.38733,0.95661,-1.25340,-1.64922,-0.96481,2.05291,-0.39074 -4.38802,0.95699,-1.25348,-1.64884,-0.96498,2.05262,-0.39046 -4.38872,0.95735,-1.25356,-1.64847,-0.96515,2.05235,-0.39018 -4.38941,0.95772,-1.25364,-1.64810,-0.96531,2.05207,-0.38991 -4.39011,0.95777,-1.25369,-1.64799,-0.96536,2.05204,-0.38987 -4.39080,0.95826,-1.25419,-1.64685,-0.96581,2.05166,-0.38950 -4.39150,0.95875,-1.25469,-1.64573,-0.96626,2.05130,-0.38914 -4.39219,0.95923,-1.25518,-1.64462,-0.96671,2.05094,-0.38878 -4.39289,0.95970,-1.25566,-1.64354,-0.96714,2.05059,-0.38843 -4.39358,0.96016,-1.25614,-1.64248,-0.96757,2.05024,-0.38809 -4.39428,0.96061,-1.25660,-1.64143,-0.96799,2.04991,-0.38775 -4.39497,0.96106,-1.25706,-1.64040,-0.96841,2.04957,-0.38742 -4.39567,0.96149,-1.25751,-1.63939,-0.96882,2.04925,-0.38709 -4.39636,0.96192,-1.25796,-1.63839,-0.96922,2.04892,-0.38678 -4.39705,0.96234,-1.25839,-1.63741,-0.96962,2.04861,-0.38646 -4.39775,0.96276,-1.25882,-1.63645,-0.97001,2.04830,-0.38616 -4.39844,0.96316,-1.25924,-1.63550,-0.97039,2.04800,-0.38586 -4.39914,0.96356,-1.25966,-1.63457,-0.97077,2.04770,-0.38556 -4.39983,0.96395,-1.26006,-1.63366,-0.97115,2.04740,-0.38527 -4.40053,0.96433,-1.26047,-1.63276,-0.97151,2.04712,-0.38499 -4.40122,0.96470,-1.26086,-1.63187,-0.97187,2.04683,-0.38471 -4.40192,0.96507,-1.26125,-1.63100,-0.97223,2.04656,-0.38444 -4.40261,0.96543,-1.26163,-1.63015,-0.97258,2.04629,-0.38417 -4.40331,0.96579,-1.26200,-1.62931,-0.97292,2.04602,-0.38391 -4.40400,0.96614,-1.26237,-1.62848,-0.97326,2.04576,-0.38365 -4.40470,0.96648,-1.26274,-1.62767,-0.97360,2.04550,-0.38339 -4.40539,0.96682,-1.26309,-1.62687,-0.97393,2.04524,-0.38315 -4.40609,0.96715,-1.26344,-1.62608,-0.97425,2.04500,-0.38290 -4.40678,0.96747,-1.26379,-1.62531,-0.97457,2.04475,-0.38266 -4.40747,0.96779,-1.26413,-1.62455,-0.97488,2.04451,-0.38243 -4.40817,0.96810,-1.26446,-1.62380,-0.97519,2.04428,-0.38220 -4.40886,0.96840,-1.26479,-1.62307,-0.97549,2.04405,-0.38197 -4.40956,0.96870,-1.26511,-1.62235,-0.97579,2.04382,-0.38175 -4.41025,0.96900,-1.26543,-1.62164,-0.97608,2.04360,-0.38153 -4.41095,0.96929,-1.26574,-1.62094,-0.97637,2.04338,-0.38132 -4.41164,0.96957,-1.26604,-1.62025,-0.97666,2.04316,-0.38111 -4.41234,0.96985,-1.26635,-1.61958,-0.97694,2.04295,-0.38090 -4.41303,0.97012,-1.26664,-1.61892,-0.97721,2.04275,-0.38070 -4.41373,0.97039,-1.26693,-1.61827,-0.97749,2.04254,-0.38050 -4.41442,0.97066,-1.26722,-1.61762,-0.97775,2.04234,-0.38031 -4.41512,0.97092,-1.26750,-1.61699,-0.97802,2.04215,-0.38012 -4.41581,0.97117,-1.26778,-1.61637,-0.97828,2.04195,-0.37993 -4.41650,0.97142,-1.26805,-1.61577,-0.97853,2.04177,-0.37975 -4.41720,0.97166,-1.26832,-1.61517,-0.97878,2.04158,-0.37957 -4.41789,0.97190,-1.26858,-1.61458,-0.97903,2.04140,-0.37939 -4.41859,0.97214,-1.26884,-1.61400,-0.97927,2.04122,-0.37922 -4.41928,0.97237,-1.26909,-1.61343,-0.97951,2.04104,-0.37905 -4.41998,0.97260,-1.26934,-1.61287,-0.97974,2.04087,-0.37888 -4.42067,0.97282,-1.26959,-1.61232,-0.97998,2.04070,-0.37871 -4.42137,0.97304,-1.26983,-1.61178,-0.98020,2.04053,-0.37855 -4.42206,0.97326,-1.27007,-1.61125,-0.98043,2.04037,-0.37840 -4.42276,0.97347,-1.27030,-1.61073,-0.98065,2.04021,-0.37824 -4.42345,0.97367,-1.27053,-1.61021,-0.98087,2.04005,-0.37809 -4.42415,0.97379,-1.27070,-1.60987,-0.98101,2.03996,-0.37800 -4.42484,0.97395,-1.27121,-1.60894,-0.98137,2.03984,-0.37788 -4.42553,0.97411,-1.27171,-1.60803,-0.98172,2.03972,-0.37777 -4.42623,0.97426,-1.27220,-1.60714,-0.98207,2.03960,-0.37766 -4.42692,0.97441,-1.27268,-1.60626,-0.98241,2.03949,-0.37755 -4.42762,0.97456,-1.27316,-1.60539,-0.98275,2.03938,-0.37744 -4.42831,0.97470,-1.27363,-1.60454,-0.98309,2.03927,-0.37733 -4.42901,0.97484,-1.27409,-1.60371,-0.98341,2.03916,-0.37723 -4.42970,0.97498,-1.27454,-1.60289,-0.98374,2.03906,-0.37713 -4.43040,0.97511,-1.27498,-1.60208,-0.98406,2.03895,-0.37703 -4.43109,0.97524,-1.27542,-1.60128,-0.98437,2.03885,-0.37693 -4.43179,0.97537,-1.27585,-1.60050,-0.98468,2.03875,-0.37684 -4.43248,0.97550,-1.27627,-1.59973,-0.98498,2.03866,-0.37674 -4.43318,0.97562,-1.27669,-1.59897,-0.98528,2.03856,-0.37665 -4.43387,0.97574,-1.27710,-1.59823,-0.98558,2.03847,-0.37657 -4.43457,0.97586,-1.27750,-1.59750,-0.98587,2.03838,-0.37648 -4.43526,0.97598,-1.27789,-1.59678,-0.98616,2.03829,-0.37639 -4.43595,0.97609,-1.27828,-1.59607,-0.98644,2.03820,-0.37631 -4.43665,0.97620,-1.27866,-1.59538,-0.98672,2.03812,-0.37623 -4.43734,0.97631,-1.27904,-1.59469,-0.98699,2.03803,-0.37615 -4.43804,0.97642,-1.27940,-1.59402,-0.98726,2.03795,-0.37607 -4.43873,0.97652,-1.27977,-1.59336,-0.98753,2.03787,-0.37600 -4.43943,0.97662,-1.28012,-1.59271,-0.98779,2.03779,-0.37592 -4.44012,0.97672,-1.28047,-1.59207,-0.98805,2.03771,-0.37585 -4.44082,0.97682,-1.28082,-1.59144,-0.98830,2.03764,-0.37578 -4.44151,0.97692,-1.28115,-1.59082,-0.98855,2.03757,-0.37571 -4.44221,0.97701,-1.28149,-1.59021,-0.98880,2.03749,-0.37564 -4.44290,0.97710,-1.28181,-1.58961,-0.98904,2.03742,-0.37557 -4.44360,0.97719,-1.28213,-1.58902,-0.98928,2.03735,-0.37551 -4.44429,0.97728,-1.28245,-1.58844,-0.98952,2.03729,-0.37545 -4.44498,0.97737,-1.28276,-1.58788,-0.98975,2.03722,-0.37538 -4.44568,0.97744,-1.28312,-1.58723,-0.99001,2.03716,-0.37533 -4.44637,0.97743,-1.28399,-1.58584,-0.99053,2.03717,-0.37533 -4.44707,0.97742,-1.28484,-1.58447,-0.99104,2.03717,-0.37534 -4.44776,0.97741,-1.28568,-1.58313,-0.99154,2.03718,-0.37535 -4.44846,0.97740,-1.28650,-1.58181,-0.99204,2.03718,-0.37535 -4.44915,0.97739,-1.28731,-1.58050,-0.99253,2.03719,-0.37536 -4.44985,0.97738,-1.28810,-1.57922,-0.99302,2.03720,-0.37537 -4.45054,0.97736,-1.28888,-1.57796,-0.99349,2.03720,-0.37538 -4.45124,0.97735,-1.28965,-1.57672,-0.99397,2.03721,-0.37539 -4.45193,0.97734,-1.29041,-1.57551,-0.99443,2.03722,-0.37540 -4.45263,0.97732,-1.29115,-1.57431,-0.99489,2.03723,-0.37541 -4.45332,0.97731,-1.29188,-1.57313,-0.99534,2.03724,-0.37542 -4.45402,0.97729,-1.29260,-1.57196,-0.99579,2.03725,-0.37543 -4.45471,0.97728,-1.29330,-1.57082,-0.99623,2.03726,-0.37545 -4.45540,0.97726,-1.29399,-1.56970,-0.99666,2.03727,-0.37546 -4.45610,0.97724,-1.29467,-1.56859,-0.99709,2.03728,-0.37547 -4.45679,0.97723,-1.29534,-1.56750,-0.99751,2.03729,-0.37548 -4.45749,0.97721,-1.29600,-1.56644,-0.99792,2.03730,-0.37550 -4.45818,0.97719,-1.29665,-1.56538,-0.99833,2.03732,-0.37551 -4.45888,0.97717,-1.29729,-1.56435,-0.99874,2.03733,-0.37553 -4.45957,0.97715,-1.29791,-1.56333,-0.99913,2.03734,-0.37554 -4.46027,0.97714,-1.29853,-1.56233,-0.99953,2.03735,-0.37556 -4.46096,0.97712,-1.29913,-1.56134,-0.99991,2.03737,-0.37557 -4.46166,0.97710,-1.29972,-1.56037,-1.00029,2.03738,-0.37559 -4.46235,0.97708,-1.30031,-1.55942,-1.00067,2.03739,-0.37560 -4.46305,0.97706,-1.30088,-1.55848,-1.00104,2.03741,-0.37562 -4.46374,0.97704,-1.30145,-1.55755,-1.00141,2.03742,-0.37563 -4.46443,0.97702,-1.30200,-1.55665,-1.00177,2.03744,-0.37565 -4.46513,0.97700,-1.30255,-1.55575,-1.00212,2.03745,-0.37567 -4.46582,0.97698,-1.30308,-1.55487,-1.00247,2.03747,-0.37568 -4.46652,0.97695,-1.30361,-1.55401,-1.00282,2.03748,-0.37570 -4.46721,0.97693,-1.30413,-1.55316,-1.00316,2.03750,-0.37572 -4.46791,0.97691,-1.30464,-1.55232,-1.00349,2.03751,-0.37574 -4.46860,0.97689,-1.30514,-1.55150,-1.00382,2.03753,-0.37575 -4.46930,0.97687,-1.30563,-1.55069,-1.00415,2.03754,-0.37577 -4.46999,0.97685,-1.30611,-1.54989,-1.00447,2.03756,-0.37579 -4.47069,0.97682,-1.30659,-1.54911,-1.00478,2.03757,-0.37581 -4.47138,0.97680,-1.30706,-1.54834,-1.00510,2.03759,-0.37583 -4.47208,0.97678,-1.30752,-1.54758,-1.00540,2.03761,-0.37584 -4.47277,0.97676,-1.30797,-1.54683,-1.00571,2.03762,-0.37586 -4.47346,0.97674,-1.30841,-1.54610,-1.00600,2.03764,-0.37588 -4.47416,0.97671,-1.30885,-1.54538,-1.00630,2.03766,-0.37590 -4.47485,0.97669,-1.30928,-1.54467,-1.00659,2.03767,-0.37592 -4.47555,0.97667,-1.30970,-1.54397,-1.00687,2.03769,-0.37594 -4.47624,0.97665,-1.31012,-1.54328,-1.00716,2.03770,-0.37596 -4.47694,0.97662,-1.31052,-1.54261,-1.00743,2.03772,-0.37598 -4.47763,0.97660,-1.31092,-1.54194,-1.00771,2.03774,-0.37599 -4.47833,0.97658,-1.31132,-1.54129,-1.00798,2.03775,-0.37601 -4.47902,0.97656,-1.31171,-1.54064,-1.00824,2.03777,-0.37603 -4.47972,0.97653,-1.31209,-1.54001,-1.00850,2.03779,-0.37605 -4.48041,0.97651,-1.31246,-1.53939,-1.00876,2.03781,-0.37607 -4.48111,0.97649,-1.31283,-1.53877,-1.00902,2.03782,-0.37609 -4.48180,0.97646,-1.31319,-1.53817,-1.00927,2.03784,-0.37611 -4.48250,0.97644,-1.31355,-1.53758,-1.00951,2.03786,-0.37613 -4.48319,0.97641,-1.31389,-1.53702,-1.00974,2.03788,-0.37615 -4.48388,0.97628,-1.31450,-1.53609,-1.01010,2.03798,-0.37625 -4.48458,0.97615,-1.31510,-1.53518,-1.01045,2.03807,-0.37634 -4.48527,0.97602,-1.31569,-1.53429,-1.01080,2.03816,-0.37644 -4.48597,0.97590,-1.31627,-1.53341,-1.01114,2.03826,-0.37653 -4.48666,0.97578,-1.31684,-1.53254,-1.01148,2.03835,-0.37662 -4.48736,0.97565,-1.31740,-1.53169,-1.01181,2.03844,-0.37672 -4.48805,0.97553,-1.31795,-1.53085,-1.01214,2.03853,-0.37680 -4.48875,0.97542,-1.31849,-1.53003,-1.01246,2.03862,-0.37689 -4.48944,0.97530,-1.31902,-1.52921,-1.01278,2.03870,-0.37698 -4.49014,0.97518,-1.31954,-1.52842,-1.01310,2.03879,-0.37707 -4.49083,0.97507,-1.32006,-1.52763,-1.01341,2.03888,-0.37715 -4.49153,0.97496,-1.32056,-1.52686,-1.01371,2.03896,-0.37724 -4.49222,0.97485,-1.32106,-1.52609,-1.01401,2.03904,-0.37732 -4.49291,0.97474,-1.32155,-1.52535,-1.01431,2.03912,-0.37740 -4.49361,0.97463,-1.32203,-1.52461,-1.01461,2.03920,-0.37749 -4.49430,0.97452,-1.32250,-1.52388,-1.01490,2.03928,-0.37757 -4.49500,0.97442,-1.32296,-1.52317,-1.01518,2.03936,-0.37765 -4.49569,0.97431,-1.32342,-1.52247,-1.01546,2.03944,-0.37772 -4.49639,0.97421,-1.32387,-1.52178,-1.01574,2.03952,-0.37780 -4.49708,0.97411,-1.32431,-1.52110,-1.01601,2.03959,-0.37788 -4.49778,0.97401,-1.32474,-1.52043,-1.01628,2.03967,-0.37795 -4.49847,0.97391,-1.32516,-1.51977,-1.01655,2.03974,-0.37803 -4.49917,0.97381,-1.32558,-1.51913,-1.01681,2.03981,-0.37810 -4.49986,0.97372,-1.32600,-1.51849,-1.01707,2.03989,-0.37818 -4.50056,0.97362,-1.32640,-1.51786,-1.01732,2.03996,-0.37825 -4.50125,0.97353,-1.32680,-1.51725,-1.01758,2.04003,-0.37832 -4.50194,0.97344,-1.32719,-1.51664,-1.01782,2.04010,-0.37839 -4.50264,0.97335,-1.32757,-1.51605,-1.01807,2.04016,-0.37846 -4.50333,0.97326,-1.32795,-1.51546,-1.01831,2.04023,-0.37853 -4.50403,0.97315,-1.32828,-1.51498,-1.01850,2.04031,-0.37860 -4.50472,0.97265,-1.32932,-1.51362,-1.01897,2.04068,-0.37897 -4.50542,0.97216,-1.33034,-1.51229,-1.01944,2.04105,-0.37933 -4.50611,0.97167,-1.33134,-1.51098,-1.01991,2.04141,-0.37969 -4.50681,0.97120,-1.33232,-1.50969,-1.02037,2.04176,-0.38004 -4.50750,0.97073,-1.33329,-1.50841,-1.02082,2.04211,-0.38038 -4.50820,0.97027,-1.33424,-1.50716,-1.02127,2.04245,-0.38072 -4.50889,0.96981,-1.33518,-1.50593,-1.02171,2.04279,-0.38106 -4.50959,0.96937,-1.33609,-1.50472,-1.02215,2.04312,-0.38138 -4.51028,0.96893,-1.33700,-1.50352,-1.02258,2.04344,-0.38171 -4.51098,0.96850,-1.33789,-1.50235,-1.02301,2.04376,-0.38203 -4.51167,0.96807,-1.33876,-1.50119,-1.02343,2.04408,-0.38234 -4.51236,0.96766,-1.33962,-1.50005,-1.02385,2.04439,-0.38265 -4.51306,0.96725,-1.34046,-1.49893,-1.02426,2.04469,-0.38295 -4.51375,0.96684,-1.34129,-1.49783,-1.02467,2.04499,-0.38325 -4.51445,0.96645,-1.34211,-1.49674,-1.02507,2.04529,-0.38354 -4.51514,0.96606,-1.34291,-1.49567,-1.02546,2.04558,-0.38383 -4.51584,0.96567,-1.34370,-1.49462,-1.02586,2.04586,-0.38412 -4.51653,0.96530,-1.34447,-1.49358,-1.02624,2.04614,-0.38440 -4.51723,0.96493,-1.34523,-1.49256,-1.02663,2.04642,-0.38467 -4.51792,0.96456,-1.34598,-1.49155,-1.02700,2.04669,-0.38495 -4.51862,0.96420,-1.34672,-1.49056,-1.02738,2.04696,-0.38521 -4.51931,0.96385,-1.34744,-1.48959,-1.02774,2.04722,-0.38548 -4.52001,0.96350,-1.34815,-1.48863,-1.02811,2.04748,-0.38574 -4.52070,0.96316,-1.34885,-1.48769,-1.02847,2.04774,-0.38599 -4.52139,0.96282,-1.34954,-1.48676,-1.02882,2.04799,-0.38624 -4.52209,0.96249,-1.35021,-1.48585,-1.02917,2.04824,-0.38649 -4.52278,0.96217,-1.35088,-1.48495,-1.02952,2.04848,-0.38673 -4.52348,0.96185,-1.35153,-1.48406,-1.02986,2.04872,-0.38697 -4.52417,0.96153,-1.35217,-1.48319,-1.03019,2.04895,-0.38721 -4.52487,0.96122,-1.35281,-1.48233,-1.03053,2.04918,-0.38744 -4.52556,0.96092,-1.35343,-1.48149,-1.03085,2.04941,-0.38767 -4.52626,0.96062,-1.35404,-1.48065,-1.03118,2.04964,-0.38790 -4.52695,0.96033,-1.35464,-1.47983,-1.03150,2.04986,-0.38812 -4.52765,0.96004,-1.35523,-1.47903,-1.03181,2.05007,-0.38834 -4.52834,0.95975,-1.35581,-1.47824,-1.03213,2.05029,-0.38855 -4.52904,0.95947,-1.35638,-1.47746,-1.03243,2.05050,-0.38876 -4.52973,0.95919,-1.35694,-1.47669,-1.03274,2.05071,-0.38897 -4.53043,0.95892,-1.35749,-1.47593,-1.03304,2.05091,-0.38918 -4.53112,0.95865,-1.35803,-1.47519,-1.03333,2.05111,-0.38938 -4.53181,0.95839,-1.35856,-1.47445,-1.03362,2.05131,-0.38958 -4.53251,0.95813,-1.35908,-1.47373,-1.03391,2.05150,-0.38977 -4.53320,0.95788,-1.35960,-1.47302,-1.03420,2.05169,-0.38997 -4.53390,0.95763,-1.36011,-1.47232,-1.03448,2.05188,-0.39016 -4.53459,0.95738,-1.36060,-1.47163,-1.03475,2.05207,-0.39034 -4.53529,0.95714,-1.36109,-1.47096,-1.03503,2.05225,-0.39053 -4.53598,0.95690,-1.36157,-1.47029,-1.03530,2.05243,-0.39071 -4.53668,0.95666,-1.36205,-1.46964,-1.03556,2.05260,-0.39089 -4.53737,0.95643,-1.36251,-1.46899,-1.03583,2.05278,-0.39106 -4.53807,0.95621,-1.36297,-1.46835,-1.03609,2.05295,-0.39124 -4.53876,0.95598,-1.36342,-1.46773,-1.03634,2.05312,-0.39141 -4.53946,0.95576,-1.36386,-1.46711,-1.03659,2.05328,-0.39157 -4.54015,0.95554,-1.36429,-1.46651,-1.03684,2.05345,-0.39174 -4.54084,0.95533,-1.36472,-1.46591,-1.03709,2.05361,-0.39190 -4.54154,0.95512,-1.36514,-1.46532,-1.03733,2.05376,-0.39206 -4.54223,0.95492,-1.36555,-1.46474,-1.03757,2.05392,-0.39222 -4.54293,0.95471,-1.36596,-1.46418,-1.03781,2.05407,-0.39238 -4.54362,0.95451,-1.36636,-1.46362,-1.03804,2.05422,-0.39253 -4.54432,0.95431,-1.36675,-1.46307,-1.03827,2.05437,-0.39268 -4.54501,0.95422,-1.36692,-1.46283,-1.03836,2.05444,-0.39275 -4.54571,0.95391,-1.36748,-1.46210,-1.03865,2.05468,-0.39299 -4.54640,0.95360,-1.36802,-1.46139,-1.03892,2.05491,-0.39322 -4.54710,0.95329,-1.36856,-1.46069,-1.03920,2.05514,-0.39345 -4.54779,0.95299,-1.36909,-1.46000,-1.03947,2.05536,-0.39368 -4.54849,0.95269,-1.36960,-1.45931,-1.03974,2.05558,-0.39391 -4.54918,0.95240,-1.37011,-1.45864,-1.04000,2.05580,-0.39413 -4.54987,0.95211,-1.37061,-1.45798,-1.04026,2.05602,-0.39434 -4.55057,0.95183,-1.37110,-1.45733,-1.04052,2.05623,-0.39456 -4.55126,0.95156,-1.37159,-1.45669,-1.04077,2.05643,-0.39477 -4.55196,0.95128,-1.37206,-1.45606,-1.04102,2.05664,-0.39498 -4.55265,0.95101,-1.37253,-1.45544,-1.04127,2.05684,-0.39518 -4.55335,0.95075,-1.37299,-1.45483,-1.04151,2.05704,-0.39538 -4.55404,0.95049,-1.37344,-1.45423,-1.04176,2.05723,-0.39558 -4.55474,0.95024,-1.37389,-1.45364,-1.04199,2.05742,-0.39577 -4.55543,0.94998,-1.37432,-1.45306,-1.04223,2.05761,-0.39596 -4.55613,0.94974,-1.37475,-1.45249,-1.04246,2.05780,-0.39615 -4.55682,0.94949,-1.37517,-1.45192,-1.04269,2.05798,-0.39634 -4.55752,0.94925,-1.37559,-1.45137,-1.04292,2.05816,-0.39652 -4.55821,0.94902,-1.37600,-1.45082,-1.04314,2.05833,-0.39670 -4.55891,0.94879,-1.37640,-1.45028,-1.04336,2.05851,-0.39688 -4.55960,0.94856,-1.37679,-1.44975,-1.04358,2.05868,-0.39705 -4.56029,0.94838,-1.37708,-1.44939,-1.04372,2.05881,-0.39719 -4.56099,0.94770,-1.37798,-1.44838,-1.04406,2.05932,-0.39770 -4.56168,0.94703,-1.37886,-1.44739,-1.04441,2.05981,-0.39820 -4.56238,0.94638,-1.37972,-1.44641,-1.04475,2.06030,-0.39869 -4.56307,0.94573,-1.38058,-1.44544,-1.04508,2.06077,-0.39917 -4.56377,0.94510,-1.38142,-1.44449,-1.04541,2.06124,-0.39965 -4.56446,0.94448,-1.38224,-1.44355,-1.04574,2.06170,-0.40012 -4.56516,0.94386,-1.38305,-1.44263,-1.04607,2.06215,-0.40058 -4.56585,0.94326,-1.38385,-1.44172,-1.04639,2.06260,-0.40103 -4.56655,0.94267,-1.38463,-1.44082,-1.04671,2.06303,-0.40147 -4.56724,0.94209,-1.38540,-1.43994,-1.04702,2.06346,-0.40191 -4.56794,0.94153,-1.38616,-1.43907,-1.04733,2.06388,-0.40234 -4.56863,0.94097,-1.38690,-1.43822,-1.04764,2.06430,-0.40276 -4.56932,0.94042,-1.38763,-1.43737,-1.04795,2.06471,-0.40318 -4.57002,0.93988,-1.38835,-1.43654,-1.04825,2.06511,-0.40359 -4.57071,0.93934,-1.38906,-1.43573,-1.04855,2.06550,-0.40399 -4.57141,0.93882,-1.38975,-1.43492,-1.04884,2.06589,-0.40439 -4.57210,0.93831,-1.39044,-1.43413,-1.04913,2.06627,-0.40478 -4.57280,0.93781,-1.39111,-1.43335,-1.04942,2.06664,-0.40516 -4.57349,0.93731,-1.39177,-1.43258,-1.04971,2.06701,-0.40554 -4.57419,0.93682,-1.39242,-1.43182,-1.04999,2.06737,-0.40591 -4.57488,0.93635,-1.39306,-1.43107,-1.05027,2.06772,-0.40627 -4.57558,0.93588,-1.39369,-1.43034,-1.05054,2.06807,-0.40663 -4.57627,0.93541,-1.39431,-1.42961,-1.05082,2.06842,-0.40698 -4.57697,0.93496,-1.39491,-1.42890,-1.05109,2.06875,-0.40733 -4.57766,0.93451,-1.39551,-1.42820,-1.05135,2.06908,-0.40767 -4.57836,0.93408,-1.39610,-1.42750,-1.05162,2.06941,-0.40800 -4.57905,0.93364,-1.39668,-1.42682,-1.05188,2.06973,-0.40833 -4.57974,0.93322,-1.39724,-1.42615,-1.05213,2.07005,-0.40866 -4.58044,0.93280,-1.39780,-1.42549,-1.05239,2.07035,-0.40898 -4.58113,0.93239,-1.39835,-1.42484,-1.05264,2.07066,-0.40929 -4.58183,0.93199,-1.39889,-1.42420,-1.05289,2.07096,-0.40960 -4.58252,0.93160,-1.39942,-1.42357,-1.05313,2.07125,-0.40990 -4.58322,0.93121,-1.39994,-1.42294,-1.05338,2.07154,-0.41020 -4.58391,0.93083,-1.40045,-1.42233,-1.05362,2.07183,-0.41050 -4.58461,0.93045,-1.40096,-1.42173,-1.05385,2.07211,-0.41079 -4.58530,0.93008,-1.40145,-1.42113,-1.05409,2.07238,-0.41107 -4.58600,0.92972,-1.40194,-1.42055,-1.05432,2.07265,-0.41135 -4.58669,0.92936,-1.40242,-1.41997,-1.05455,2.07292,-0.41163 -4.58739,0.92901,-1.40289,-1.41941,-1.05478,2.07318,-0.41190 -4.58808,0.92867,-1.40335,-1.41885,-1.05500,2.07343,-0.41216 -4.58877,0.92833,-1.40381,-1.41830,-1.05522,2.07369,-0.41242 -4.58947,0.92799,-1.40426,-1.41775,-1.05544,2.07394,-0.41268 -4.59016,0.92767,-1.40470,-1.41722,-1.05565,2.07418,-0.41294 -4.59086,0.92734,-1.40513,-1.41670,-1.05587,2.07442,-0.41318 -4.59155,0.92703,-1.40556,-1.41618,-1.05608,2.07466,-0.41343 -4.59225,0.92672,-1.40598,-1.41567,-1.05628,2.07489,-0.41367 -4.59294,0.92641,-1.40639,-1.41517,-1.05649,2.07512,-0.41391 -4.59364,0.92611,-1.40679,-1.41467,-1.05669,2.07534,-0.41414 -4.59433,0.92581,-1.40719,-1.41419,-1.05689,2.07556,-0.41437 -4.59503,0.92552,-1.40758,-1.41371,-1.05709,2.07578,-0.41460 -4.59572,0.92524,-1.40797,-1.41323,-1.05728,2.07599,-0.41482 -4.59642,0.92502,-1.40825,-1.41289,-1.05742,2.07616,-0.41499 -4.59711,0.92450,-1.40884,-1.41226,-1.05765,2.07654,-0.41539 -4.59780,0.92399,-1.40943,-1.41164,-1.05788,2.07691,-0.41578 -4.59850,0.92349,-1.41000,-1.41103,-1.05810,2.07728,-0.41616 -4.59919,0.92300,-1.41056,-1.41043,-1.05832,2.07764,-0.41654 -4.59989,0.92252,-1.41111,-1.40983,-1.05854,2.07800,-0.41691 -4.60058,0.92205,-1.41165,-1.40925,-1.05876,2.07835,-0.41727 -4.60128,0.92158,-1.41219,-1.40867,-1.05898,2.07869,-0.41763 -4.60197,0.92113,-1.41271,-1.40810,-1.05919,2.07903,-0.41798 -4.60267,0.92068,-1.41323,-1.40754,-1.05940,2.07936,-0.41833 -4.60336,0.92024,-1.41374,-1.40699,-1.05961,2.07969,-0.41867 -4.60406,0.91981,-1.41424,-1.40645,-1.05981,2.08001,-0.41901 -4.60475,0.91938,-1.41473,-1.40592,-1.06002,2.08032,-0.41934 -4.60545,0.91896,-1.41521,-1.40539,-1.06022,2.08063,-0.41966 -4.60614,0.91855,-1.41568,-1.40487,-1.06042,2.08094,-0.41998 -4.60684,0.91815,-1.41615,-1.40436,-1.06061,2.08124,-0.42029 -4.60753,0.91775,-1.41661,-1.40386,-1.06081,2.08153,-0.42060 -4.60822,0.91736,-1.41706,-1.40336,-1.06100,2.08182,-0.42090 -4.60892,0.91697,-1.41750,-1.40287,-1.06119,2.08210,-0.42120 -4.60961,0.91660,-1.41794,-1.40239,-1.06138,2.08238,-0.42150 -4.61031,0.91623,-1.41837,-1.40192,-1.06156,2.08266,-0.42178 -4.61100,0.91586,-1.41879,-1.40145,-1.06175,2.08293,-0.42207 -4.61170,0.91550,-1.41921,-1.40099,-1.06193,2.08319,-0.42235 -4.61239,0.91515,-1.41961,-1.40054,-1.06211,2.08345,-0.42262 -4.61309,0.91481,-1.42001,-1.40009,-1.06229,2.08371,-0.42289 -4.61378,0.91447,-1.42041,-1.39965,-1.06246,2.08396,-0.42316 -4.61448,0.91413,-1.42079,-1.39922,-1.06264,2.08421,-0.42342 -4.61517,0.91380,-1.42118,-1.39879,-1.06281,2.08445,-0.42368 -4.61587,0.91348,-1.42155,-1.39837,-1.06298,2.08469,-0.42393 -4.61656,0.91316,-1.42192,-1.39795,-1.06315,2.08493,-0.42418 -4.61725,0.91302,-1.42208,-1.39778,-1.06322,2.08504,-0.42429 -4.61795,0.91250,-1.42261,-1.39727,-1.06340,2.08542,-0.42469 -4.61864,0.91199,-1.42313,-1.39676,-1.06358,2.08579,-0.42508 -4.61934,0.91150,-1.42363,-1.39626,-1.06376,2.08616,-0.42547 -4.62003,0.91101,-1.42413,-1.39577,-1.06394,2.08652,-0.42585 -4.62073,0.91052,-1.42463,-1.39528,-1.06412,2.08687,-0.42623 -4.62142,0.91005,-1.42511,-1.39480,-1.06429,2.08722,-0.42659 -4.62212,0.90959,-1.42559,-1.39433,-1.06446,2.08756,-0.42695 -4.62281,0.90913,-1.42605,-1.39386,-1.06464,2.08790,-0.42731 -4.62351,0.90868,-1.42651,-1.39341,-1.06481,2.08823,-0.42766 -4.62420,0.90824,-1.42697,-1.39296,-1.06497,2.08855,-0.42800 -4.62490,0.90781,-1.42741,-1.39251,-1.06514,2.08887,-0.42834 -4.62559,0.90738,-1.42785,-1.39207,-1.06530,2.08918,-0.42867 -4.62629,0.90697,-1.42828,-1.39164,-1.06547,2.08949,-0.42900 -4.62698,0.90656,-1.42870,-1.39122,-1.06563,2.08980,-0.42932 -4.62767,0.90615,-1.42912,-1.39080,-1.06579,2.09009,-0.42964 -4.62837,0.90576,-1.42952,-1.39038,-1.06595,2.09039,-0.42995 -4.62906,0.90537,-1.42993,-1.38998,-1.06610,2.09067,-0.43025 -4.62976,0.90498,-1.43032,-1.38958,-1.06626,2.09096,-0.43055 -4.63045,0.90461,-1.43071,-1.38918,-1.06641,2.09123,-0.43085 -4.63115,0.90424,-1.43109,-1.38879,-1.06656,2.09151,-0.43114 -4.63184,0.90387,-1.43147,-1.38841,-1.06671,2.09177,-0.43143 -4.63254,0.90352,-1.43184,-1.38803,-1.06686,2.09204,-0.43171 -4.63323,0.90317,-1.43220,-1.38766,-1.06701,2.09230,-0.43198 -4.63393,0.90282,-1.43256,-1.38729,-1.06715,2.09255,-0.43226 -4.63462,0.90248,-1.43291,-1.38693,-1.06730,2.09280,-0.43252 -4.63532,0.90237,-1.43302,-1.38681,-1.06734,2.09289,-0.43261 -4.63601,0.90192,-1.43347,-1.38639,-1.06750,2.09322,-0.43297 -4.63670,0.90147,-1.43390,-1.38597,-1.06765,2.09354,-0.43331 -4.63740,0.90104,-1.43433,-1.38555,-1.06780,2.09386,-0.43366 -4.63809,0.90061,-1.43476,-1.38515,-1.06795,2.09418,-0.43399 -4.63879,0.90019,-1.43517,-1.38475,-1.06810,2.09449,-0.43432 -4.63948,0.89977,-1.43558,-1.38435,-1.06825,2.09479,-0.43465 -4.64018,0.89937,-1.43599,-1.38396,-1.06840,2.09509,-0.43497 -4.64087,0.89897,-1.43638,-1.38358,-1.06854,2.09539,-0.43528 -4.64157,0.89857,-1.43677,-1.38320,-1.06869,2.09568,-0.43559 -4.64226,0.89819,-1.43715,-1.38282,-1.06883,2.09596,-0.43590 -4.64296,0.89781,-1.43753,-1.38246,-1.06897,2.09624,-0.43620 -4.64365,0.89744,-1.43790,-1.38209,-1.06911,2.09651,-0.43649 -4.64435,0.89707,-1.43826,-1.38174,-1.06925,2.09678,-0.43678 -4.64504,0.89671,-1.43862,-1.38138,-1.06938,2.09705,-0.43706 -4.64573,0.89636,-1.43897,-1.38104,-1.06952,2.09731,-0.43734 -4.64643,0.89601,-1.43932,-1.38070,-1.06965,2.09756,-0.43762 -4.64712,0.89576,-1.43956,-1.38046,-1.06975,2.09775,-0.43781 -4.64782,0.89535,-1.43994,-1.38011,-1.06987,2.09805,-0.43814 -4.64851,0.89494,-1.44032,-1.37977,-1.07000,2.09834,-0.43846 -4.64921,0.89455,-1.44069,-1.37943,-1.07013,2.09864,-0.43877 -4.64990,0.89415,-1.44105,-1.37910,-1.07025,2.09892,-0.43908 -4.65060,0.89377,-1.44141,-1.37877,-1.07037,2.09921,-0.43939 -4.65129,0.89339,-1.44176,-1.37845,-1.07050,2.09948,-0.43969 -4.65199,0.89302,-1.44211,-1.37813,-1.07062,2.09976,-0.43998 -4.65268,0.89266,-1.44244,-1.37781,-1.07074,2.10002,-0.44027 -4.65338,0.89230,-1.44278,-1.37751,-1.07086,2.10029,-0.44055 -4.65407,0.89204,-1.44301,-1.37729,-1.07094,2.10048,-0.44076 -4.65477,0.89159,-1.44338,-1.37700,-1.07104,2.10080,-0.44111 -4.65546,0.89116,-1.44374,-1.37672,-1.07114,2.10113,-0.44146 -4.65615,0.89072,-1.44410,-1.37643,-1.07124,2.10144,-0.44180 -4.65685,0.89030,-1.44445,-1.37615,-1.07134,2.10175,-0.44213 -4.65754,0.88988,-1.44479,-1.37588,-1.07144,2.10206,-0.44246 -4.65824,0.88947,-1.44513,-1.37561,-1.07153,2.10236,-0.44279 -4.65893,0.88907,-1.44546,-1.37534,-1.07163,2.10265,-0.44311 -4.65963,0.88868,-1.44579,-1.37508,-1.07172,2.10294,-0.44342 -4.66032,0.88829,-1.44611,-1.37482,-1.07182,2.10322,-0.44373 -4.66102,0.88791,-1.44642,-1.37456,-1.07191,2.10350,-0.44403 -4.66171,0.88753,-1.44673,-1.37431,-1.07201,2.10378,-0.44433 -4.66241,0.88722,-1.44698,-1.37412,-1.07208,2.10401,-0.44458 -4.66310,0.88670,-1.44731,-1.37397,-1.07211,2.10439,-0.44499 -4.66380,0.88618,-1.44762,-1.37382,-1.07215,2.10476,-0.44540 -4.66449,0.88568,-1.44794,-1.37368,-1.07218,2.10513,-0.44580 -4.66518,0.88518,-1.44825,-1.37353,-1.07222,2.10549,-0.44619 -4.66588,0.88469,-1.44855,-1.37339,-1.07225,2.10585,-0.44658 -4.66657,0.88421,-1.44885,-1.37325,-1.07229,2.10620,-0.44696 -4.66727,0.88374,-1.44914,-1.37311,-1.07232,2.10654,-0.44734 -4.66796,0.88328,-1.44943,-1.37297,-1.07236,2.10688,-0.44770 -4.66866,0.88283,-1.44971,-1.37284,-1.07240,2.10721,-0.44806 -4.66935,0.88238,-1.44999,-1.37270,-1.07244,2.10753,-0.44842 -4.67005,0.88194,-1.45027,-1.37257,-1.07247,2.10785,-0.44877 -4.67074,0.88151,-1.45054,-1.37244,-1.07251,2.10817,-0.44911 -4.67144,0.88109,-1.45080,-1.37231,-1.07255,2.10847,-0.44945 -4.67213,0.88068,-1.45106,-1.37218,-1.07259,2.10878,-0.44978 -4.67283,0.88027,-1.45132,-1.37205,-1.07262,2.10908,-0.45011 -4.67352,0.87987,-1.45157,-1.37193,-1.07266,2.10937,-0.45043 -4.67422,0.87947,-1.45182,-1.37180,-1.07270,2.10966,-0.45074 -4.67491,0.87937,-1.45186,-1.37180,-1.07269,2.10973,-0.45082 -4.67560,0.87874,-1.45208,-1.37194,-1.07260,2.11019,-0.45133 -4.67630,0.87812,-1.45230,-1.37207,-1.07251,2.11064,-0.45182 -4.67699,0.87751,-1.45251,-1.37219,-1.07243,2.11108,-0.45230 -4.67769,0.87691,-1.45271,-1.37232,-1.07234,2.11151,-0.45278 -4.67838,0.87633,-1.45292,-1.37244,-1.07226,2.11194,-0.45325 -4.67908,0.87575,-1.45312,-1.37255,-1.07218,2.11235,-0.45371 -4.67977,0.87518,-1.45332,-1.37267,-1.07210,2.11276,-0.45416 -4.68047,0.87463,-1.45351,-1.37278,-1.07203,2.11317,-0.45461 -4.68116,0.87408,-1.45370,-1.37289,-1.07196,2.11356,-0.45504 -4.68186,0.87354,-1.45389,-1.37300,-1.07188,2.11395,-0.45547 -4.68255,0.87302,-1.45407,-1.37310,-1.07181,2.11433,-0.45589 -4.68325,0.87250,-1.45425,-1.37320,-1.07175,2.11471,-0.45631 -4.68394,0.87199,-1.45443,-1.37330,-1.07168,2.11508,-0.45672 -4.68463,0.87149,-1.45461,-1.37340,-1.07162,2.11544,-0.45712 -4.68533,0.87100,-1.45478,-1.37349,-1.07155,2.11580,-0.45751 -4.68602,0.87052,-1.45495,-1.37359,-1.07149,2.11615,-0.45790 -4.68672,0.87005,-1.45512,-1.37368,-1.07143,2.11649,-0.45828 -4.68741,0.86958,-1.45528,-1.37376,-1.07138,2.11683,-0.45865 -4.68811,0.86913,-1.45544,-1.37385,-1.07132,2.11716,-0.45902 -4.68880,0.86868,-1.45560,-1.37393,-1.07127,2.11748,-0.45938 -4.68950,0.86824,-1.45576,-1.37401,-1.07121,2.11780,-0.45973 -4.69019,0.86780,-1.45591,-1.37409,-1.07116,2.11812,-0.46008 -4.69089,0.86738,-1.45606,-1.37417,-1.07111,2.11842,-0.46043 -4.69158,0.86696,-1.45621,-1.37425,-1.07106,2.11873,-0.46076 -4.69228,0.86655,-1.45636,-1.37432,-1.07102,2.11902,-0.46109 -4.69297,0.86615,-1.45650,-1.37439,-1.07097,2.11932,-0.46142 -4.69366,0.86575,-1.45664,-1.37447,-1.07092,2.11960,-0.46174 -4.69436,0.86563,-1.45667,-1.37451,-1.07090,2.11970,-0.46184 -4.69505,0.86513,-1.45673,-1.37481,-1.07076,2.12006,-0.46224 -4.69575,0.86464,-1.45679,-1.37510,-1.07061,2.12041,-0.46264 -4.69644,0.86416,-1.45685,-1.37538,-1.07047,2.12076,-0.46302 -4.69714,0.86369,-1.45691,-1.37566,-1.07034,2.12110,-0.46341 -4.69783,0.86323,-1.45697,-1.37594,-1.07020,2.12143,-0.46378 -4.69853,0.86277,-1.45702,-1.37621,-1.07007,2.12176,-0.46415 -4.69922,0.86233,-1.45708,-1.37647,-1.06994,2.12209,-0.46451 -4.69992,0.86189,-1.45713,-1.37673,-1.06981,2.12240,-0.46486 -4.70061,0.86146,-1.45719,-1.37699,-1.06969,2.12271,-0.46521 -4.70131,0.86103,-1.45724,-1.37724,-1.06957,2.12302,-0.46556 -4.70200,0.86062,-1.45729,-1.37748,-1.06945,2.12332,-0.46589 -4.70270,0.86021,-1.45734,-1.37772,-1.06933,2.12362,-0.46622 -4.70339,0.85981,-1.45739,-1.37796,-1.06922,2.12391,-0.46655 -4.70408,0.85942,-1.45744,-1.37819,-1.06910,2.12419,-0.46687 -4.70478,0.85903,-1.45749,-1.37842,-1.06899,2.12447,-0.46718 -4.70547,0.85865,-1.45754,-1.37864,-1.06889,2.12475,-0.46749 -4.70617,0.85828,-1.45758,-1.37886,-1.06878,2.12502,-0.46780 -4.70686,0.85808,-1.45759,-1.37900,-1.06871,2.12516,-0.46795 -4.70756,0.85761,-1.45749,-1.37956,-1.06846,2.12550,-0.46834 -4.70825,0.85715,-1.45738,-1.38011,-1.06822,2.12583,-0.46871 -4.70895,0.85670,-1.45728,-1.38065,-1.06797,2.12616,-0.46908 -4.70964,0.85625,-1.45719,-1.38118,-1.06773,2.12648,-0.46944 -4.71034,0.85581,-1.45709,-1.38170,-1.06750,2.12679,-0.46980 -4.71103,0.85539,-1.45699,-1.38222,-1.06727,2.12710,-0.47015 -4.71173,0.85496,-1.45690,-1.38272,-1.06704,2.12740,-0.47049 -4.71242,0.85455,-1.45681,-1.38321,-1.06682,2.12770,-0.47083 -4.71311,0.85414,-1.45672,-1.38370,-1.06660,2.12800,-0.47116 -4.71381,0.85374,-1.45663,-1.38418,-1.06639,2.12828,-0.47149 -4.71450,0.85335,-1.45654,-1.38465,-1.06618,2.12857,-0.47180 -4.71520,0.85297,-1.45646,-1.38511,-1.06597,2.12885,-0.47212 -4.71589,0.85259,-1.45637,-1.38556,-1.06577,2.12912,-0.47243 -4.71659,0.85222,-1.45629,-1.38600,-1.06557,2.12939,-0.47273 -4.71728,0.85185,-1.45621,-1.38644,-1.06537,2.12965,-0.47303 -4.71798,0.85150,-1.45613,-1.38687,-1.06518,2.12991,-0.47332 -4.71867,0.85114,-1.45605,-1.38729,-1.06499,2.13016,-0.47361 -4.71937,0.85080,-1.45597,-1.38771,-1.06480,2.13041,-0.47389 -4.72006,0.85046,-1.45590,-1.38811,-1.06462,2.13066,-0.47417 -4.72076,0.85013,-1.45582,-1.38852,-1.06444,2.13090,-0.47444 -4.72145,0.84980,-1.45575,-1.38891,-1.06426,2.13113,-0.47471 -4.72215,0.84948,-1.45568,-1.38929,-1.06409,2.13136,-0.47497 -4.72284,0.84916,-1.45561,-1.38967,-1.06392,2.13159,-0.47523 -4.72353,0.84900,-1.45554,-1.38993,-1.06381,2.13171,-0.47537 -4.72423,0.84857,-1.45516,-1.39093,-1.06338,2.13202,-0.47572 -4.72492,0.84815,-1.45478,-1.39192,-1.06296,2.13232,-0.47606 -4.72562,0.84774,-1.45441,-1.39289,-1.06254,2.13261,-0.47640 -4.72631,0.84734,-1.45405,-1.39384,-1.06213,2.13290,-0.47673 -4.72701,0.84694,-1.45369,-1.39478,-1.06173,2.13319,-0.47706 -4.72770,0.84655,-1.45334,-1.39570,-1.06133,2.13347,-0.47737 -4.72840,0.84617,-1.45299,-1.39661,-1.06095,2.13374,-0.47769 -4.72909,0.84580,-1.45265,-1.39750,-1.06056,2.13401,-0.47800 -4.72979,0.84543,-1.45232,-1.39838,-1.06019,2.13427,-0.47830 -4.73048,0.84507,-1.45199,-1.39924,-1.05982,2.13453,-0.47859 -4.73118,0.84471,-1.45167,-1.40008,-1.05945,2.13479,-0.47889 -4.73187,0.84436,-1.45135,-1.40091,-1.05909,2.13504,-0.47917 -4.73256,0.84402,-1.45104,-1.40173,-1.05874,2.13528,-0.47945 -4.73326,0.84369,-1.45073,-1.40253,-1.05840,2.13552,-0.47973 -4.73395,0.84336,-1.45043,-1.40332,-1.05805,2.13576,-0.48000 -4.73465,0.84303,-1.45014,-1.40410,-1.05772,2.13599,-0.48027 -4.73534,0.84272,-1.44984,-1.40486,-1.05739,2.13622,-0.48053 -4.73604,0.84240,-1.44956,-1.40561,-1.05706,2.13644,-0.48078 -4.73673,0.84210,-1.44928,-1.40635,-1.05674,2.13666,-0.48103 -4.73743,0.84180,-1.44900,-1.40707,-1.05643,2.13688,-0.48128 -4.73812,0.84150,-1.44873,-1.40779,-1.05612,2.13709,-0.48152 -4.73882,0.84121,-1.44846,-1.40849,-1.05582,2.13730,-0.48176 -4.73951,0.84093,-1.44820,-1.40917,-1.05552,2.13750,-0.48200 -4.74021,0.84065,-1.44794,-1.40985,-1.05522,2.13770,-0.48223 -4.74090,0.84038,-1.44769,-1.41052,-1.05493,2.13790,-0.48245 -4.74159,0.84011,-1.44744,-1.41117,-1.05465,2.13810,-0.48267 -4.74229,0.83984,-1.44720,-1.41181,-1.05437,2.13828,-0.48289 -4.74298,0.83959,-1.44696,-1.41245,-1.05409,2.13847,-0.48310 -4.74368,0.83933,-1.44672,-1.41307,-1.05382,2.13865,-0.48331 -4.74437,0.83908,-1.44649,-1.41368,-1.05355,2.13883,-0.48352 -4.74507,0.83884,-1.44626,-1.41428,-1.05329,2.13901,-0.48372 -4.74576,0.83860,-1.44603,-1.41487,-1.05303,2.13918,-0.48392 -4.74646,0.83836,-1.44581,-1.41545,-1.05278,2.13935,-0.48411 -4.74715,0.83813,-1.44559,-1.41602,-1.05253,2.13952,-0.48430 -4.74785,0.83790,-1.44538,-1.41658,-1.05228,2.13968,-0.48449 -4.74854,0.83768,-1.44517,-1.41713,-1.05204,2.13984,-0.48467 -4.74924,0.83746,-1.44496,-1.41767,-1.05180,2.14000,-0.48485 -4.74993,0.83725,-1.44476,-1.41821,-1.05157,2.14016,-0.48503 -4.75063,0.83703,-1.44456,-1.41873,-1.05134,2.14031,-0.48521 -4.75132,0.83693,-1.44443,-1.41904,-1.05120,2.14038,-0.48529 -4.75201,0.83670,-1.44391,-1.42011,-1.05076,2.14055,-0.48548 -4.75271,0.83648,-1.44340,-1.42116,-1.05032,2.14070,-0.48566 -4.75340,0.83627,-1.44290,-1.42220,-1.04989,2.14086,-0.48584 -4.75410,0.83605,-1.44241,-1.42321,-1.04947,2.14101,-0.48602 -4.75479,0.83585,-1.44192,-1.42421,-1.04905,2.14116,-0.48619 -4.75549,0.83564,-1.44144,-1.42519,-1.04864,2.14131,-0.48636 -4.75618,0.83544,-1.44098,-1.42616,-1.04823,2.14145,-0.48653 -4.75688,0.83525,-1.44052,-1.42710,-1.04784,2.14159,-0.48669 -4.75757,0.83505,-1.44006,-1.42804,-1.04744,2.14173,-0.48685 -4.75827,0.83486,-1.43962,-1.42895,-1.04706,2.14187,-0.48700 -4.75896,0.83468,-1.43918,-1.42986,-1.04668,2.14200,-0.48716 -4.75966,0.83450,-1.43875,-1.43074,-1.04631,2.14213,-0.48731 -4.76035,0.83432,-1.43833,-1.43161,-1.04594,2.14226,-0.48745 -4.76104,0.83415,-1.43792,-1.43247,-1.04558,2.14238,-0.48760 -4.76174,0.83397,-1.43751,-1.43331,-1.04522,2.14251,-0.48774 -4.76243,0.83381,-1.43711,-1.43414,-1.04487,2.14263,-0.48788 -4.76313,0.83364,-1.43671,-1.43495,-1.04452,2.14274,-0.48801 -4.76382,0.83348,-1.43632,-1.43575,-1.04418,2.14286,-0.48815 -4.76452,0.83332,-1.43594,-1.43654,-1.04385,2.14297,-0.48828 -4.76521,0.83317,-1.43557,-1.43732,-1.04352,2.14309,-0.48841 -4.76591,0.83302,-1.43520,-1.43808,-1.04320,2.14319,-0.48853 -4.76660,0.83287,-1.43484,-1.43883,-1.04288,2.14330,-0.48865 -4.76730,0.83272,-1.43448,-1.43956,-1.04256,2.14341,-0.48877 -4.76799,0.83258,-1.43413,-1.44028,-1.04225,2.14351,-0.48889 -4.76869,0.83244,-1.43379,-1.44100,-1.04195,2.14361,-0.48901 -4.76938,0.83230,-1.43345,-1.44169,-1.04165,2.14371,-0.48912 -4.77008,0.83217,-1.43312,-1.44238,-1.04135,2.14381,-0.48923 -4.77077,0.83203,-1.43279,-1.44306,-1.04106,2.14390,-0.48934 -4.77146,0.83190,-1.43247,-1.44372,-1.04078,2.14399,-0.48945 -4.77216,0.83178,-1.43215,-1.44438,-1.04050,2.14409,-0.48955 -4.77285,0.83165,-1.43184,-1.44502,-1.04022,2.14418,-0.48965 -4.77355,0.83153,-1.43154,-1.44565,-1.03995,2.14426,-0.48975 -4.77424,0.83141,-1.43124,-1.44627,-1.03968,2.14435,-0.48985 -4.77494,0.83129,-1.43094,-1.44688,-1.03941,2.14443,-0.48995 -4.77563,0.83118,-1.43065,-1.44748,-1.03915,2.14452,-0.49004 -4.77633,0.83107,-1.43037,-1.44807,-1.03890,2.14460,-0.49013 -4.77702,0.83096,-1.43005,-1.44872,-1.03862,2.14467,-0.49022 -4.77772,0.83091,-1.42936,-1.44991,-1.03814,2.14471,-0.49026 -4.77841,0.83087,-1.42868,-1.45109,-1.03767,2.14474,-0.49030 -4.77911,0.83082,-1.42802,-1.45224,-1.03720,2.14478,-0.49034 -4.77980,0.83078,-1.42737,-1.45338,-1.03674,2.14481,-0.49037 -4.78049,0.83074,-1.42673,-1.45450,-1.03629,2.14484,-0.49041 -4.78119,0.83070,-1.42610,-1.45560,-1.03584,2.14487,-0.49044 -4.78188,0.83066,-1.42548,-1.45668,-1.03540,2.14490,-0.49048 -4.78258,0.83062,-1.42487,-1.45774,-1.03497,2.14493,-0.49051 -4.78327,0.83058,-1.42427,-1.45878,-1.03454,2.14495,-0.49054 -4.78397,0.83055,-1.42368,-1.45981,-1.03412,2.14498,-0.49057 -4.78466,0.83051,-1.42310,-1.46082,-1.03371,2.14501,-0.49060 -4.78536,0.83048,-1.42253,-1.46181,-1.03330,2.14503,-0.49062 -4.78605,0.83045,-1.42197,-1.46279,-1.03290,2.14505,-0.49065 -4.78675,0.83041,-1.42142,-1.46375,-1.03251,2.14508,-0.49067 -4.78744,0.83038,-1.42088,-1.46469,-1.03212,2.14510,-0.49070 -4.78814,0.83036,-1.42035,-1.46562,-1.03174,2.14512,-0.49072 -4.78883,0.83033,-1.41983,-1.46653,-1.03136,2.14514,-0.49074 -4.78952,0.83030,-1.41932,-1.46743,-1.03099,2.14516,-0.49077 -4.79022,0.83027,-1.41881,-1.46831,-1.03063,2.14518,-0.49079 -4.79091,0.83025,-1.41832,-1.46918,-1.03027,2.14520,-0.49081 -4.79161,0.83023,-1.41783,-1.47003,-1.02991,2.14522,-0.49083 -4.79230,0.83020,-1.41735,-1.47087,-1.02956,2.14523,-0.49084 -4.79300,0.83018,-1.41688,-1.47169,-1.02922,2.14525,-0.49086 -4.79369,0.83016,-1.41642,-1.47250,-1.02888,2.14527,-0.49088 -4.79439,0.83014,-1.41596,-1.47330,-1.02855,2.14528,-0.49089 -4.79508,0.83012,-1.41551,-1.47408,-1.02822,2.14530,-0.49091 -4.79578,0.83010,-1.41507,-1.47486,-1.02790,2.14531,-0.49092 -4.79647,0.83008,-1.41464,-1.47561,-1.02758,2.14532,-0.49093 -4.79717,0.83006,-1.41422,-1.47636,-1.02726,2.14534,-0.49095 -4.79786,0.83005,-1.41380,-1.47709,-1.02695,2.14535,-0.49096 -4.79856,0.83003,-1.41339,-1.47781,-1.02665,2.14536,-0.49097 -4.79925,0.83001,-1.41298,-1.47852,-1.02635,2.14537,-0.49098 -4.79994,0.83000,-1.41259,-1.47922,-1.02606,2.14538,-0.49099 -4.80064,0.82999,-1.41220,-1.47990,-1.02577,2.14539,-0.49100 -4.80133,0.82997,-1.41181,-1.48058,-1.02548,2.14540,-0.49101 -4.80203,0.82996,-1.41144,-1.48124,-1.02520,2.14541,-0.49102 -4.80272,0.82995,-1.41106,-1.48189,-1.02492,2.14542,-0.49103 -4.80342,0.82994,-1.41070,-1.48253,-1.02465,2.14543,-0.49103 -4.80411,0.82993,-1.41034,-1.48316,-1.02438,2.14544,-0.49104 -4.80481,0.82991,-1.40999,-1.48378,-1.02411,2.14545,-0.49105 -4.80550,0.82991,-1.40964,-1.48439,-1.02385,2.14545,-0.49105 -4.80620,0.82990,-1.40930,-1.48499,-1.02359,2.14546,-0.49106 -4.80689,0.82990,-1.40918,-1.48519,-1.02351,2.14546,-0.49106 -4.80759,0.82994,-1.40868,-1.48602,-1.02317,2.14543,-0.49102 -4.80828,0.82998,-1.40818,-1.48684,-1.02284,2.14541,-0.49099 -4.80897,0.83001,-1.40769,-1.48764,-1.02251,2.14538,-0.49096 -4.80967,0.83005,-1.40720,-1.48843,-1.02218,2.14535,-0.49092 -4.81036,0.83009,-1.40673,-1.48921,-1.02186,2.14532,-0.49089 -4.81106,0.83013,-1.40626,-1.48997,-1.02155,2.14530,-0.49086 -4.81175,0.83017,-1.40580,-1.49072,-1.02124,2.14527,-0.49082 -4.81245,0.83021,-1.40535,-1.49146,-1.02093,2.14524,-0.49079 -4.81314,0.83024,-1.40491,-1.49218,-1.02063,2.14522,-0.49076 -4.81384,0.83028,-1.40447,-1.49290,-1.02034,2.14519,-0.49072 -4.81453,0.83032,-1.40405,-1.49360,-1.02005,2.14517,-0.49069 -4.81523,0.83035,-1.40362,-1.49429,-1.01976,2.14514,-0.49066 -4.81592,0.83039,-1.40321,-1.49497,-1.01948,2.14511,-0.49063 -4.81662,0.83043,-1.40280,-1.49564,-1.01920,2.14509,-0.49059 -4.81731,0.83046,-1.40240,-1.49629,-1.01892,2.14506,-0.49056 -4.81801,0.83050,-1.40201,-1.49694,-1.01865,2.14504,-0.49053 -4.81870,0.83054,-1.40162,-1.49757,-1.01839,2.14501,-0.49050 -4.81939,0.83057,-1.40124,-1.49820,-1.01812,2.14499,-0.49046 -4.82009,0.83061,-1.40087,-1.49881,-1.01786,2.14496,-0.49043 -4.82078,0.83064,-1.40050,-1.49941,-1.01761,2.14494,-0.49040 -4.82148,0.83068,-1.40014,-1.50001,-1.01736,2.14491,-0.49037 -4.82217,0.83070,-1.40001,-1.50022,-1.01727,2.14490,-0.49035 -4.82287,0.83081,-1.39941,-1.50113,-1.01691,2.14482,-0.49026 -4.82356,0.83092,-1.39882,-1.50203,-1.01655,2.14474,-0.49017 -4.82426,0.83103,-1.39824,-1.50291,-1.01620,2.14466,-0.49008 -4.82495,0.83113,-1.39767,-1.50378,-1.01585,2.14459,-0.48999 -4.82565,0.83124,-1.39711,-1.50464,-1.01551,2.14451,-0.48990 -4.82634,0.83135,-1.39656,-1.50548,-1.01517,2.14444,-0.48981 -4.82704,0.83145,-1.39602,-1.50631,-1.01484,2.14437,-0.48972 -4.82773,0.83155,-1.39549,-1.50712,-1.01451,2.14429,-0.48964 -4.82842,0.83165,-1.39497,-1.50792,-1.01419,2.14422,-0.48955 -4.82912,0.83175,-1.39446,-1.50870,-1.01387,2.14415,-0.48946 -4.82981,0.83185,-1.39395,-1.50948,-1.01356,2.14408,-0.48938 -4.83051,0.83195,-1.39345,-1.51024,-1.01325,2.14401,-0.48930 -4.83120,0.83205,-1.39297,-1.51098,-1.01295,2.14394,-0.48922 -4.83190,0.83214,-1.39249,-1.51172,-1.01265,2.14387,-0.48913 -4.83259,0.83224,-1.39202,-1.51244,-1.01236,2.14381,-0.48905 -4.83329,0.83233,-1.39155,-1.51315,-1.01207,2.14374,-0.48897 -4.83398,0.83242,-1.39110,-1.51385,-1.01178,2.14367,-0.48890 -4.83468,0.83251,-1.39065,-1.51454,-1.01150,2.14361,-0.48882 -4.83537,0.83261,-1.39021,-1.51521,-1.01122,2.14354,-0.48874 -4.83607,0.83269,-1.38978,-1.51588,-1.01095,2.14348,-0.48867 -4.83676,0.83278,-1.38935,-1.51653,-1.01068,2.14342,-0.48859 -4.83745,0.83287,-1.38893,-1.51717,-1.01041,2.14336,-0.48852 -4.83815,0.83296,-1.38852,-1.51781,-1.01015,2.14329,-0.48844 -4.83884,0.83304,-1.38812,-1.51843,-1.00989,2.14323,-0.48837 -4.83954,0.83312,-1.38772,-1.51904,-1.00964,2.14317,-0.48830 -4.84023,0.83321,-1.38733,-1.51964,-1.00939,2.14311,-0.48823 -4.84093,0.83329,-1.38695,-1.52023,-1.00914,2.14306,-0.48815 -4.84162,0.83337,-1.38657,-1.52081,-1.00890,2.14300,-0.48808 -4.84232,0.83344,-1.38633,-1.52117,-1.00875,2.14295,-0.48803 -4.84301,0.83377,-1.38539,-1.52244,-1.00829,2.14272,-0.48776 -4.84371,0.83410,-1.38447,-1.52368,-1.00782,2.14248,-0.48749 -4.84440,0.83442,-1.38356,-1.52490,-1.00737,2.14225,-0.48722 -4.84510,0.83474,-1.38267,-1.52611,-1.00692,2.14203,-0.48696 -4.84579,0.83506,-1.38179,-1.52729,-1.00648,2.14180,-0.48670 -4.84649,0.83537,-1.38093,-1.52845,-1.00604,2.14158,-0.48644 -4.84718,0.83568,-1.38008,-1.52960,-1.00561,2.14137,-0.48619 -4.84787,0.83598,-1.37925,-1.53072,-1.00519,2.14115,-0.48594 -4.84857,0.83628,-1.37843,-1.53182,-1.00478,2.14094,-0.48569 -4.84926,0.83657,-1.37763,-1.53291,-1.00437,2.14073,-0.48544 -4.84996,0.83686,-1.37684,-1.53398,-1.00396,2.14052,-0.48520 -4.85065,0.83715,-1.37606,-1.53503,-1.00356,2.14032,-0.48497 -4.85135,0.83744,-1.37530,-1.53606,-1.00317,2.14012,-0.48473 -4.85204,0.83771,-1.37455,-1.53708,-1.00278,2.13992,-0.48450 -4.85274,0.83799,-1.37381,-1.53808,-1.00240,2.13972,-0.48427 -4.85343,0.83826,-1.37309,-1.53906,-1.00203,2.13953,-0.48405 -4.85413,0.83853,-1.37237,-1.54002,-1.00166,2.13934,-0.48382 -4.85482,0.83880,-1.37167,-1.54097,-1.00129,2.13915,-0.48361 -4.85552,0.83906,-1.37098,-1.54191,-1.00093,2.13896,-0.48339 -4.85621,0.83931,-1.37031,-1.54282,-1.00058,2.13878,-0.48317 -4.85690,0.83957,-1.36964,-1.54373,-1.00023,2.13860,-0.48296 -4.85760,0.83982,-1.36899,-1.54461,-0.99988,2.13842,-0.48276 -4.85829,0.84007,-1.36835,-1.54549,-0.99955,2.13824,-0.48255 -4.85899,0.84031,-1.36772,-1.54635,-0.99921,2.13807,-0.48235 -4.85968,0.84055,-1.36709,-1.54719,-0.99888,2.13789,-0.48215 -4.86038,0.84079,-1.36648,-1.54802,-0.99856,2.13772,-0.48195 -4.86107,0.84102,-1.36588,-1.54883,-0.99824,2.13756,-0.48176 -4.86177,0.84125,-1.36530,-1.54964,-0.99792,2.13739,-0.48156 -4.86246,0.84148,-1.36472,-1.55043,-0.99761,2.13723,-0.48137 -4.86316,0.84170,-1.36415,-1.55120,-0.99731,2.13707,-0.48119 -4.86385,0.84193,-1.36359,-1.55196,-0.99700,2.13691,-0.48100 -4.86455,0.84214,-1.36304,-1.55271,-0.99671,2.13675,-0.48082 -4.86524,0.84236,-1.36250,-1.55345,-0.99641,2.13660,-0.48064 -4.86593,0.84257,-1.36196,-1.55418,-0.99613,2.13644,-0.48046 -4.86663,0.84278,-1.36144,-1.55489,-0.99584,2.13629,-0.48029 -4.86732,0.84299,-1.36093,-1.55559,-0.99556,2.13614,-0.48012 -4.86802,0.84319,-1.36042,-1.55628,-0.99528,2.13600,-0.47995 -4.86871,0.84339,-1.35993,-1.55696,-0.99501,2.13585,-0.47978 -4.86941,0.84359,-1.35944,-1.55763,-0.99474,2.13571,-0.47961 -4.87010,0.84378,-1.35896,-1.55828,-0.99448,2.13557,-0.47945 -4.87080,0.84398,-1.35849,-1.55893,-0.99422,2.13543,-0.47929 -4.87149,0.84417,-1.35803,-1.55956,-0.99396,2.13530,-0.47913 -4.87219,0.84435,-1.35757,-1.56019,-0.99371,2.13516,-0.47897 -4.87288,0.84454,-1.35712,-1.56080,-0.99346,2.13503,-0.47882 -4.87358,0.84472,-1.35668,-1.56140,-0.99321,2.13490,-0.47866 -4.87427,0.84490,-1.35625,-1.56200,-0.99297,2.13477,-0.47851 -4.87497,0.84508,-1.35583,-1.56258,-0.99273,2.13464,-0.47837 -4.87566,0.84525,-1.35541,-1.56316,-0.99250,2.13451,-0.47822 -4.87635,0.84542,-1.35500,-1.56372,-0.99226,2.13439,-0.47808 -4.87705,0.84559,-1.35460,-1.56427,-0.99203,2.13427,-0.47793 -4.87774,0.84576,-1.35420,-1.56482,-0.99181,2.13414,-0.47779 -4.87844,0.84592,-1.35381,-1.56536,-0.99159,2.13403,-0.47765 -4.87913,0.84598,-1.35370,-1.56550,-0.99153,2.13399,-0.47761 -4.87983,0.84632,-1.35302,-1.56634,-0.99122,2.13374,-0.47733 -4.88052,0.84666,-1.35235,-1.56717,-0.99091,2.13350,-0.47705 -4.88122,0.84700,-1.35169,-1.56798,-0.99061,2.13325,-0.47677 -4.88191,0.84733,-1.35105,-1.56878,-0.99031,2.13302,-0.47649 -4.88261,0.84766,-1.35041,-1.56957,-0.99002,2.13278,-0.47623 -4.88330,0.84798,-1.34979,-1.57035,-0.98973,2.13255,-0.47596 -4.88400,0.84830,-1.34917,-1.57111,-0.98944,2.13232,-0.47570 -4.88469,0.84862,-1.34857,-1.57186,-0.98916,2.13210,-0.47544 -4.88538,0.84893,-1.34798,-1.57260,-0.98888,2.13187,-0.47518 -4.88608,0.84923,-1.34739,-1.57332,-0.98861,2.13166,-0.47493 -4.88677,0.84953,-1.34682,-1.57404,-0.98834,2.13144,-0.47469 -4.88747,0.84983,-1.34626,-1.57474,-0.98807,2.13123,-0.47444 -4.88816,0.85012,-1.34570,-1.57543,-0.98781,2.13102,-0.47420 -4.88886,0.85041,-1.34516,-1.57610,-0.98755,2.13081,-0.47396 -4.88955,0.85069,-1.34462,-1.57677,-0.98729,2.13061,-0.47373 -4.89025,0.85097,-1.34410,-1.57743,-0.98704,2.13040,-0.47350 -4.89094,0.85125,-1.34358,-1.57807,-0.98679,2.13021,-0.47327 -4.89164,0.85152,-1.34307,-1.57870,-0.98655,2.13001,-0.47305 -4.89233,0.85179,-1.34257,-1.57933,-0.98631,2.12982,-0.47283 -4.89303,0.85205,-1.34208,-1.57994,-0.98607,2.12963,-0.47261 -4.89372,0.85231,-1.34160,-1.58054,-0.98583,2.12944,-0.47240 -4.89442,0.85257,-1.34113,-1.58114,-0.98560,2.12925,-0.47218 -4.89511,0.85282,-1.34066,-1.58172,-0.98537,2.12907,-0.47198 -4.89580,0.85307,-1.34020,-1.58229,-0.98515,2.12889,-0.47177 -4.89650,0.85331,-1.33975,-1.58286,-0.98493,2.12871,-0.47157 -4.89719,0.85356,-1.33931,-1.58341,-0.98471,2.12854,-0.47137 -4.89789,0.85379,-1.33888,-1.58396,-0.98449,2.12837,-0.47117 -4.89858,0.85403,-1.33845,-1.58450,-0.98428,2.12820,-0.47098 -4.89928,0.85426,-1.33803,-1.58502,-0.98407,2.12803,-0.47079 -4.89997,0.85449,-1.33762,-1.58554,-0.98387,2.12787,-0.47060 -4.90067,0.85471,-1.33721,-1.58605,-0.98366,2.12770,-0.47041 -4.90136,0.85493,-1.33681,-1.58656,-0.98346,2.12754,-0.47023 -4.90206,0.85512,-1.33648,-1.58697,-0.98330,2.12741,-0.47007 -4.90275,0.85546,-1.33591,-1.58764,-0.98305,2.12716,-0.46979 -4.90345,0.85580,-1.33535,-1.58829,-0.98281,2.12692,-0.46952 -4.90414,0.85613,-1.33480,-1.58894,-0.98257,2.12668,-0.46925 -4.90483,0.85646,-1.33426,-1.58957,-0.98234,2.12644,-0.46898 -4.90553,0.85679,-1.33373,-1.59020,-0.98210,2.12621,-0.46871 -4.90622,0.85710,-1.33321,-1.59081,-0.98188,2.12598,-0.46845 -4.90692,0.85742,-1.33270,-1.59142,-0.98165,2.12575,-0.46820 -4.90761,0.85773,-1.33219,-1.59201,-0.98143,2.12553,-0.46794 -4.90831,0.85803,-1.33170,-1.59259,-0.98121,2.12531,-0.46769 -4.90900,0.85833,-1.33121,-1.59317,-0.98099,2.12509,-0.46745 -4.90970,0.85863,-1.33073,-1.59373,-0.98078,2.12488,-0.46721 -4.91039,0.85892,-1.33026,-1.59429,-0.98057,2.12467,-0.46697 -4.91109,0.85921,-1.32980,-1.59483,-0.98036,2.12446,-0.46673 -4.91178,0.85949,-1.32935,-1.59537,-0.98016,2.12425,-0.46650 -4.91248,0.85977,-1.32890,-1.59590,-0.97995,2.12405,-0.46627 -4.91317,0.86004,-1.32846,-1.59642,-0.97976,2.12385,-0.46605 -4.91386,0.86032,-1.32803,-1.59693,-0.97956,2.12366,-0.46583 -4.91456,0.86058,-1.32761,-1.59743,-0.97937,2.12346,-0.46561 -4.91525,0.86084,-1.32719,-1.59793,-0.97918,2.12327,-0.46539 -4.91595,0.86110,-1.32678,-1.59842,-0.97899,2.12308,-0.46518 -4.91664,0.86136,-1.32638,-1.59889,-0.97880,2.12290,-0.46497 -4.91734,0.86161,-1.32598,-1.59936,-0.97862,2.12272,-0.46477 -4.91803,0.86171,-1.32584,-1.59952,-0.97856,2.12265,-0.46469 -4.91873,0.86218,-1.32524,-1.60012,-0.97836,2.12230,-0.46430 -4.91942,0.86265,-1.32465,-1.60072,-0.97816,2.12197,-0.46392 -4.92012,0.86311,-1.32407,-1.60130,-0.97796,2.12163,-0.46355 -4.92081,0.86357,-1.32350,-1.60188,-0.97777,2.12131,-0.46318 -4.92151,0.86402,-1.32294,-1.60244,-0.97757,2.12099,-0.46282 -4.92220,0.86446,-1.32238,-1.60300,-0.97738,2.12067,-0.46246 -4.92290,0.86489,-1.32184,-1.60355,-0.97720,2.12035,-0.46211 -4.92359,0.86532,-1.32131,-1.60409,-0.97701,2.12005,-0.46177 -4.92428,0.86574,-1.32078,-1.60462,-0.97683,2.11974,-0.46143 -4.92498,0.86616,-1.32027,-1.60514,-0.97665,2.11944,-0.46109 -4.92567,0.86657,-1.31976,-1.60565,-0.97647,2.11915,-0.46076 -4.92637,0.86697,-1.31927,-1.60615,-0.97630,2.11885,-0.46043 -4.92706,0.86737,-1.31878,-1.60665,-0.97612,2.11857,-0.46011 -4.92776,0.86776,-1.31830,-1.60714,-0.97595,2.11828,-0.45980 -4.92845,0.86814,-1.31783,-1.60762,-0.97578,2.11801,-0.45949 -4.92915,0.86852,-1.31736,-1.60809,-0.97561,2.11773,-0.45918 -4.92984,0.86890,-1.31691,-1.60855,-0.97545,2.11746,-0.45888 -4.93054,0.86926,-1.31646,-1.60901,-0.97529,2.11719,-0.45858 -4.93123,0.86963,-1.31602,-1.60946,-0.97513,2.11693,-0.45829 -4.93193,0.86998,-1.31559,-1.60990,-0.97497,2.11667,-0.45800 -4.93262,0.87033,-1.31516,-1.61033,-0.97481,2.11642,-0.45772 -4.93331,0.87068,-1.31474,-1.61076,-0.97466,2.11616,-0.45744 -4.93401,0.87102,-1.31433,-1.61118,-0.97451,2.11592,-0.45716 -4.93470,0.87136,-1.31393,-1.61159,-0.97436,2.11567,-0.45689 -4.93540,0.87169,-1.31353,-1.61200,-0.97421,2.11543,-0.45662 -4.93609,0.87201,-1.31314,-1.61240,-0.97406,2.11519,-0.45636 -4.93679,0.87234,-1.31276,-1.61279,-0.97392,2.11496,-0.45610 -4.93748,0.87244,-1.31264,-1.61291,-0.97387,2.11488,-0.45601 -4.93818,0.87289,-1.31218,-1.61332,-0.97374,2.11456,-0.45566 -4.93887,0.87332,-1.31173,-1.61373,-0.97361,2.11425,-0.45531 -4.93957,0.87375,-1.31129,-1.61413,-0.97347,2.11394,-0.45496 -4.94026,0.87417,-1.31085,-1.61452,-0.97334,2.11363,-0.45463 -4.94096,0.87459,-1.31042,-1.61490,-0.97322,2.11333,-0.45429 -4.94165,0.87499,-1.31000,-1.61528,-0.97309,2.11303,-0.45396 -4.94235,0.87540,-1.30959,-1.61565,-0.97296,2.11274,-0.45364 -4.94304,0.87579,-1.30918,-1.61602,-0.97284,2.11245,-0.45332 -4.94373,0.87619,-1.30879,-1.61638,-0.97272,2.11217,-0.45301 -4.94443,0.87657,-1.30839,-1.61673,-0.97260,2.11189,-0.45270 -4.94512,0.87695,-1.30801,-1.61708,-0.97248,2.11161,-0.45240 -4.94582,0.87732,-1.30763,-1.61743,-0.97236,2.11134,-0.45210 -4.94651,0.87769,-1.30726,-1.61776,-0.97224,2.11108,-0.45180 -4.94721,0.87805,-1.30689,-1.61809,-0.97213,2.11081,-0.45151 -4.94790,0.87817,-1.30678,-1.61819,-0.97209,2.11072,-0.45141 -4.94860,0.87868,-1.30636,-1.61847,-0.97202,2.11035,-0.45101 -4.94929,0.87918,-1.30595,-1.61875,-0.97194,2.10999,-0.45061 -4.94999,0.87968,-1.30555,-1.61903,-0.97186,2.10963,-0.45021 -4.95068,0.88017,-1.30516,-1.61930,-0.97178,2.10928,-0.44983 -4.95138,0.88064,-1.30477,-1.61957,-0.97171,2.10893,-0.44944 -4.95207,0.88112,-1.30439,-1.61983,-0.97163,2.10859,-0.44907 -4.95276,0.88158,-1.30402,-1.62009,-0.97156,2.10825,-0.44870 -4.95346,0.88204,-1.30365,-1.62035,-0.97148,2.10792,-0.44834 -4.95415,0.88249,-1.30329,-1.62060,-0.97141,2.10759,-0.44798 -4.95485,0.88293,-1.30294,-1.62084,-0.97134,2.10727,-0.44762 -4.95554,0.88336,-1.30259,-1.62109,-0.97127,2.10695,-0.44728 -4.95624,0.88379,-1.30225,-1.62133,-0.97119,2.10664,-0.44694 -4.95693,0.88422,-1.30191,-1.62156,-0.97112,2.10633,-0.44660 -4.95763,0.88463,-1.30158,-1.62179,-0.97105,2.10603,-0.44627 -4.95832,0.88504,-1.30126,-1.62202,-0.97098,2.10573,-0.44594 -4.95902,0.88510,-1.30123,-1.62202,-0.97099,2.10568,-0.44589 -4.95971,0.88573,-1.30092,-1.62204,-0.97102,2.10523,-0.44540 -4.96041,0.88635,-1.30062,-1.62206,-0.97105,2.10478,-0.44491 -4.96110,0.88695,-1.30032,-1.62208,-0.97109,2.10434,-0.44443 -4.96179,0.88755,-1.30003,-1.62211,-0.97112,2.10391,-0.44396 -4.96249,0.88814,-1.29974,-1.62213,-0.97115,2.10348,-0.44350 -4.96318,0.88872,-1.29946,-1.62215,-0.97118,2.10306,-0.44304 -4.96388,0.88928,-1.29919,-1.62217,-0.97120,2.10265,-0.44259 -4.96457,0.88984,-1.29892,-1.62219,-0.97123,2.10224,-0.44215 -4.96527,0.89039,-1.29865,-1.62221,-0.97126,2.10184,-0.44171 -4.96596,0.89094,-1.29839,-1.62223,-0.97128,2.10145,-0.44129 -4.96666,0.89147,-1.29813,-1.62225,-0.97130,2.10106,-0.44087 -4.96735,0.89199,-1.29788,-1.62227,-0.97133,2.10068,-0.44045 -4.96805,0.89251,-1.29763,-1.62229,-0.97135,2.10030,-0.44005 -4.96874,0.89302,-1.29739,-1.62231,-0.97137,2.09993,-0.43965 -4.96944,0.89352,-1.29715,-1.62233,-0.97139,2.09957,-0.43925 -4.97013,0.89401,-1.29691,-1.62235,-0.97141,2.09921,-0.43886 -4.97083,0.89449,-1.29668,-1.62237,-0.97143,2.09885,-0.43848 -4.97152,0.89497,-1.29646,-1.62239,-0.97144,2.09851,-0.43811 -4.97221,0.89543,-1.29624,-1.62241,-0.97146,2.09816,-0.43774 -4.97291,0.89590,-1.29602,-1.62242,-0.97148,2.09783,-0.43738 -4.97360,0.89635,-1.29580,-1.62244,-0.97149,2.09749,-0.43702 -4.97430,0.89651,-1.29576,-1.62239,-0.97152,2.09738,-0.43689 -4.97499,0.89722,-1.29580,-1.62180,-0.97179,2.09686,-0.43634 -4.97569,0.89792,-1.29584,-1.62122,-0.97206,2.09635,-0.43579 -4.97638,0.89861,-1.29587,-1.62064,-0.97232,2.09585,-0.43525 -4.97708,0.89929,-1.29591,-1.62008,-0.97258,2.09535,-0.43472 -4.97777,0.89995,-1.29595,-1.61953,-0.97283,2.09487,-0.43420 -4.97847,0.90061,-1.29598,-1.61899,-0.97307,2.09439,-0.43369 -4.97916,0.90125,-1.29602,-1.61845,-0.97332,2.09392,-0.43319 -4.97986,0.90188,-1.29606,-1.61793,-0.97356,2.09346,-0.43269 -4.98055,0.90250,-1.29609,-1.61742,-0.97379,2.09301,-0.43221 -4.98124,0.90311,-1.29613,-1.61691,-0.97402,2.09256,-0.43173 -4.98194,0.90371,-1.29616,-1.61641,-0.97425,2.09213,-0.43127 -4.98263,0.90430,-1.29620,-1.61592,-0.97447,2.09169,-0.43081 -4.98333,0.90488,-1.29623,-1.61544,-0.97469,2.09127,-0.43035 -4.98402,0.90545,-1.29627,-1.61497,-0.97490,2.09085,-0.42991 -4.98472,0.90601,-1.29630,-1.61451,-0.97511,2.09044,-0.42947 -4.98541,0.90656,-1.29634,-1.61405,-0.97532,2.09004,-0.42905 -4.98611,0.90710,-1.29637,-1.61360,-0.97553,2.08964,-0.42863 -4.98680,0.90763,-1.29641,-1.61316,-0.97573,2.08925,-0.42821 -4.98750,0.90815,-1.29644,-1.61273,-0.97592,2.08887,-0.42781 -4.98819,0.90867,-1.29647,-1.61230,-0.97612,2.08849,-0.42741 -4.98889,0.90917,-1.29651,-1.61188,-0.97630,2.08812,-0.42701 -4.98958,0.90967,-1.29654,-1.61147,-0.97649,2.08776,-0.42663 -4.99028,0.91016,-1.29657,-1.61107,-0.97667,2.08740,-0.42625 -4.99097,0.91063,-1.29660,-1.61067,-0.97685,2.08704,-0.42588 -4.99166,0.91111,-1.29664,-1.61028,-0.97703,2.08670,-0.42551 -4.99236,0.91157,-1.29667,-1.60990,-0.97720,2.08636,-0.42515 -4.99305,0.91202,-1.29670,-1.60952,-0.97737,2.08602,-0.42480 -4.99375,0.91247,-1.29673,-1.60915,-0.97754,2.08569,-0.42445 -4.99444,0.91291,-1.29676,-1.60879,-0.97771,2.08537,-0.42411 -4.99514,0.91334,-1.29679,-1.60843,-0.97787,2.08505,-0.42378 -4.99583,0.91377,-1.29682,-1.60808,-0.97803,2.08473,-0.42345 -4.99653,0.91419,-1.29685,-1.60774,-0.97818,2.08442,-0.42312 -4.99722,0.91460,-1.29688,-1.60740,-0.97833,2.08412,-0.42281 -4.99792,0.91500,-1.29691,-1.60707,-0.97848,2.08382,-0.42249 -4.99861,0.91540,-1.29694,-1.60674,-0.97863,2.08353,-0.42219 -4.99931,0.91579,-1.29696,-1.60642,-0.97878,2.08324,-0.42189 -5.00000,0.91617,-1.29699,-1.60610,-0.97892,2.08296,-0.42159 +0.00000,1.21192,-1.33063,-1.35815,-1.11449,1.85620,-0.21660 +0.00107,1.21180,-1.33029,-1.35878,-1.11423,1.85629,-0.21667 +0.00213,1.21168,-1.32996,-1.35940,-1.11397,1.85639,-0.21675 +0.00320,1.21156,-1.32964,-1.36000,-1.11371,1.85648,-0.21682 +0.00427,1.21144,-1.32932,-1.36060,-1.11346,1.85657,-0.21690 +0.00533,1.21142,-1.32925,-1.36072,-1.11341,1.85659,-0.21691 +0.00640,1.21118,-1.32861,-1.36192,-1.11291,1.85677,-0.21706 +0.00746,1.21096,-1.32798,-1.36309,-1.11242,1.85694,-0.21720 +0.00853,1.21073,-1.32736,-1.36425,-1.11194,1.85712,-0.21734 +0.00960,1.21051,-1.32675,-1.36538,-1.11146,1.85729,-0.21748 +0.01066,1.21029,-1.32615,-1.36650,-1.11099,1.85746,-0.21762 +0.01173,1.21008,-1.32556,-1.36760,-1.11053,1.85762,-0.21775 +0.01280,1.20987,-1.32498,-1.36868,-1.11007,1.85779,-0.21788 +0.01386,1.20966,-1.32441,-1.36975,-1.10963,1.85794,-0.21801 +0.01493,1.20946,-1.32385,-1.37079,-1.10918,1.85810,-0.21814 +0.01599,1.20926,-1.32329,-1.37182,-1.10875,1.85825,-0.21826 +0.01706,1.20907,-1.32275,-1.37283,-1.10832,1.85840,-0.21838 +0.01813,1.20888,-1.32222,-1.37382,-1.10790,1.85855,-0.21850 +0.01919,1.20869,-1.32170,-1.37480,-1.10749,1.85870,-0.21862 +0.02026,1.20851,-1.32118,-1.37576,-1.10708,1.85884,-0.21874 +0.02133,1.20833,-1.32068,-1.37671,-1.10668,1.85898,-0.21885 +0.02239,1.20815,-1.32018,-1.37763,-1.10628,1.85912,-0.21896 +0.02346,1.20798,-1.31969,-1.37855,-1.10589,1.85925,-0.21907 +0.02453,1.20781,-1.31921,-1.37945,-1.10551,1.85938,-0.21917 +0.02559,1.20764,-1.31874,-1.38033,-1.10514,1.85951,-0.21928 +0.02666,1.20748,-1.31828,-1.38120,-1.10476,1.85964,-0.21938 +0.02772,1.20732,-1.31782,-1.38205,-1.10440,1.85976,-0.21948 +0.02879,1.20716,-1.31737,-1.38289,-1.10404,1.85989,-0.21958 +0.02986,1.20701,-1.31693,-1.38372,-1.10368,1.86001,-0.21968 +0.03092,1.20686,-1.31650,-1.38453,-1.10334,1.86012,-0.21977 +0.03199,1.20671,-1.31607,-1.38533,-1.10299,1.86024,-0.21986 +0.03306,1.20656,-1.31565,-1.38612,-1.10266,1.86035,-0.21995 +0.03412,1.20642,-1.31524,-1.38689,-1.10232,1.86046,-0.22004 +0.03519,1.20628,-1.31484,-1.38765,-1.10200,1.86057,-0.22013 +0.03626,1.20614,-1.31444,-1.38840,-1.10167,1.86068,-0.22022 +0.03732,1.20600,-1.31405,-1.38913,-1.10136,1.86079,-0.22030 +0.03839,1.20587,-1.31366,-1.38986,-1.10104,1.86089,-0.22038 +0.03945,1.20574,-1.31329,-1.39057,-1.10074,1.86099,-0.22047 +0.04052,1.20561,-1.31291,-1.39127,-1.10043,1.86109,-0.22054 +0.04159,1.20549,-1.31255,-1.39195,-1.10013,1.86119,-0.22062 +0.04265,1.20537,-1.31219,-1.39263,-1.09984,1.86128,-0.22070 +0.04372,1.20524,-1.31184,-1.39330,-1.09955,1.86138,-0.22077 +0.04479,1.20513,-1.31149,-1.39395,-1.09927,1.86147,-0.22085 +0.04585,1.20501,-1.31115,-1.39459,-1.09899,1.86156,-0.22092 +0.04692,1.20490,-1.31081,-1.39523,-1.09871,1.86165,-0.22099 +0.04798,1.20479,-1.31048,-1.39585,-1.09844,1.86173,-0.22106 +0.04905,1.20468,-1.31016,-1.39646,-1.09817,1.86182,-0.22113 +0.05012,1.20457,-1.30984,-1.39706,-1.09791,1.86190,-0.22119 +0.05118,1.20450,-1.30964,-1.39744,-1.09775,1.86195,-0.22124 +0.05225,1.20437,-1.30923,-1.39820,-1.09742,1.86205,-0.22132 +0.05332,1.20425,-1.30882,-1.39896,-1.09709,1.86215,-0.22140 +0.05438,1.20412,-1.30842,-1.39970,-1.09677,1.86225,-0.22147 +0.05545,1.20400,-1.30803,-1.40043,-1.09646,1.86234,-0.22155 +0.05652,1.20388,-1.30765,-1.40115,-1.09615,1.86244,-0.22162 +0.05758,1.20376,-1.30727,-1.40186,-1.09584,1.86253,-0.22170 +0.05865,1.20365,-1.30690,-1.40255,-1.09554,1.86262,-0.22177 +0.05971,1.20354,-1.30653,-1.40324,-1.09524,1.86271,-0.22184 +0.06078,1.20343,-1.30617,-1.40391,-1.09495,1.86279,-0.22191 +0.06185,1.20332,-1.30582,-1.40457,-1.09466,1.86288,-0.22197 +0.06291,1.20321,-1.30547,-1.40522,-1.09438,1.86296,-0.22204 +0.06398,1.20311,-1.30513,-1.40586,-1.09410,1.86304,-0.22210 +0.06505,1.20300,-1.30479,-1.40649,-1.09383,1.86312,-0.22217 +0.06611,1.20290,-1.30446,-1.40711,-1.09356,1.86320,-0.22223 +0.06718,1.20281,-1.30414,-1.40771,-1.09330,1.86328,-0.22229 +0.06824,1.20271,-1.30382,-1.40831,-1.09303,1.86335,-0.22235 +0.06931,1.20268,-1.30372,-1.40850,-1.09296,1.86338,-0.22237 +0.07038,1.20246,-1.30305,-1.40973,-1.09243,1.86355,-0.22251 +0.07144,1.20224,-1.30240,-1.41094,-1.09192,1.86372,-0.22264 +0.07251,1.20203,-1.30176,-1.41214,-1.09141,1.86388,-0.22278 +0.07358,1.20182,-1.30113,-1.41331,-1.09091,1.86404,-0.22291 +0.07464,1.20161,-1.30050,-1.41446,-1.09042,1.86420,-0.22304 +0.07571,1.20141,-1.29990,-1.41560,-1.08994,1.86436,-0.22316 +0.07678,1.20121,-1.29930,-1.41671,-1.08946,1.86451,-0.22328 +0.07784,1.20102,-1.29871,-1.41781,-1.08900,1.86466,-0.22341 +0.07891,1.20083,-1.29813,-1.41888,-1.08854,1.86481,-0.22352 +0.07997,1.20064,-1.29756,-1.41994,-1.08808,1.86495,-0.22364 +0.08104,1.20046,-1.29700,-1.42098,-1.08764,1.86510,-0.22375 +0.08211,1.20028,-1.29645,-1.42201,-1.08720,1.86524,-0.22387 +0.08317,1.20010,-1.29591,-1.42302,-1.08677,1.86537,-0.22398 +0.08424,1.19993,-1.29538,-1.42401,-1.08634,1.86551,-0.22408 +0.08531,1.19976,-1.29486,-1.42498,-1.08592,1.86564,-0.22419 +0.08637,1.19960,-1.29434,-1.42594,-1.08551,1.86577,-0.22429 +0.08744,1.19943,-1.29384,-1.42688,-1.08511,1.86590,-0.22440 +0.08851,1.19927,-1.29334,-1.42780,-1.08471,1.86602,-0.22450 +0.08957,1.19911,-1.29286,-1.42871,-1.08431,1.86614,-0.22459 +0.09064,1.19896,-1.29238,-1.42961,-1.08393,1.86626,-0.22469 +0.09170,1.19881,-1.29191,-1.43049,-1.08355,1.86638,-0.22478 +0.09277,1.19866,-1.29144,-1.43135,-1.08317,1.86649,-0.22488 +0.09384,1.19852,-1.29099,-1.43220,-1.08280,1.86661,-0.22497 +0.09490,1.19837,-1.29054,-1.43304,-1.08244,1.86672,-0.22505 +0.09597,1.19823,-1.29010,-1.43386,-1.08208,1.86683,-0.22514 +0.09704,1.19810,-1.28967,-1.43467,-1.08173,1.86693,-0.22523 +0.09810,1.19796,-1.28925,-1.43546,-1.08139,1.86704,-0.22531 +0.09917,1.19783,-1.28883,-1.43624,-1.08105,1.86714,-0.22539 +0.10023,1.19770,-1.28842,-1.43701,-1.08071,1.86724,-0.22547 +0.10130,1.19757,-1.28802,-1.43777,-1.08038,1.86734,-0.22555 +0.10237,1.19745,-1.28762,-1.43851,-1.08006,1.86744,-0.22563 +0.10343,1.19733,-1.28723,-1.43924,-1.07974,1.86753,-0.22570 +0.10450,1.19721,-1.28685,-1.43996,-1.07942,1.86763,-0.22578 +0.10557,1.19709,-1.28647,-1.44067,-1.07911,1.86772,-0.22585 +0.10663,1.19697,-1.28610,-1.44136,-1.07881,1.86781,-0.22592 +0.10770,1.19686,-1.28574,-1.44204,-1.07851,1.86790,-0.22599 +0.10877,1.19675,-1.28538,-1.44272,-1.07821,1.86798,-0.22606 +0.10983,1.19664,-1.28503,-1.44338,-1.07792,1.86807,-0.22613 +0.11090,1.19653,-1.28468,-1.44402,-1.07764,1.86815,-0.22619 +0.11196,1.19643,-1.28434,-1.44466,-1.07736,1.86823,-0.22626 +0.11303,1.19633,-1.28401,-1.44529,-1.07708,1.86831,-0.22632 +0.11410,1.19623,-1.28368,-1.44591,-1.07681,1.86839,-0.22638 +0.11516,1.19613,-1.28336,-1.44652,-1.07654,1.86847,-0.22645 +0.11623,1.19603,-1.28304,-1.44711,-1.07627,1.86854,-0.22650 +0.11730,1.19595,-1.28278,-1.44760,-1.07606,1.86861,-0.22655 +0.11836,1.19583,-1.28240,-1.44832,-1.07575,1.86870,-0.22663 +0.11943,1.19571,-1.28202,-1.44903,-1.07544,1.86879,-0.22670 +0.12049,1.19560,-1.28164,-1.44973,-1.07513,1.86888,-0.22677 +0.12156,1.19549,-1.28128,-1.45042,-1.07483,1.86897,-0.22684 +0.12263,1.19537,-1.28091,-1.45110,-1.07453,1.86906,-0.22691 +0.12369,1.19527,-1.28056,-1.45176,-1.07424,1.86914,-0.22698 +0.12476,1.19516,-1.28021,-1.45241,-1.07396,1.86922,-0.22704 +0.12583,1.19505,-1.27987,-1.45306,-1.07367,1.86931,-0.22711 +0.12689,1.19495,-1.27953,-1.45369,-1.07340,1.86939,-0.22717 +0.12796,1.19485,-1.27920,-1.45431,-1.07312,1.86946,-0.22723 +0.12903,1.19475,-1.27887,-1.45492,-1.07285,1.86954,-0.22730 +0.13009,1.19466,-1.27855,-1.45552,-1.07259,1.86962,-0.22736 +0.13116,1.19456,-1.27824,-1.45611,-1.07233,1.86969,-0.22741 +0.13222,1.19452,-1.27810,-1.45637,-1.07222,1.86972,-0.22744 +0.13329,1.19441,-1.27770,-1.45710,-1.07190,1.86981,-0.22751 +0.13436,1.19429,-1.27731,-1.45783,-1.07158,1.86990,-0.22758 +0.13542,1.19418,-1.27693,-1.45855,-1.07128,1.86998,-0.22765 +0.13649,1.19408,-1.27655,-1.45925,-1.07097,1.87007,-0.22771 +0.13756,1.19397,-1.27617,-1.45994,-1.07067,1.87015,-0.22778 +0.13862,1.19387,-1.27581,-1.46062,-1.07038,1.87023,-0.22784 +0.13969,1.19376,-1.27545,-1.46129,-1.07009,1.87031,-0.22791 +0.14075,1.19366,-1.27509,-1.46195,-1.06980,1.87039,-0.22797 +0.14182,1.19357,-1.27474,-1.46259,-1.06952,1.87047,-0.22803 +0.14289,1.19347,-1.27440,-1.46323,-1.06924,1.87054,-0.22809 +0.14395,1.19337,-1.27407,-1.46385,-1.06897,1.87061,-0.22815 +0.14502,1.19328,-1.27374,-1.46447,-1.06870,1.87069,-0.22820 +0.14609,1.19319,-1.27341,-1.46507,-1.06844,1.87076,-0.22826 +0.14715,1.19310,-1.27309,-1.46566,-1.06818,1.87083,-0.22831 +0.14822,1.19304,-1.27286,-1.46610,-1.06799,1.87088,-0.22836 +0.14929,1.19290,-1.27240,-1.46695,-1.06762,1.87098,-0.22844 +0.15035,1.19277,-1.27194,-1.46778,-1.06727,1.87109,-0.22852 +0.15142,1.19264,-1.27150,-1.46860,-1.06692,1.87119,-0.22860 +0.15248,1.19251,-1.27106,-1.46941,-1.06657,1.87129,-0.22868 +0.15355,1.19238,-1.27063,-1.47020,-1.06623,1.87139,-0.22876 +0.15462,1.19226,-1.27021,-1.47098,-1.06590,1.87148,-0.22884 +0.15568,1.19214,-1.26980,-1.47175,-1.06557,1.87158,-0.22891 +0.15675,1.19202,-1.26939,-1.47250,-1.06525,1.87167,-0.22899 +0.15782,1.19190,-1.26899,-1.47324,-1.06493,1.87176,-0.22906 +0.15888,1.19179,-1.26859,-1.47397,-1.06461,1.87185,-0.22913 +0.15995,1.19168,-1.26821,-1.47468,-1.06430,1.87193,-0.22920 +0.16102,1.19157,-1.26783,-1.47539,-1.06400,1.87202,-0.22927 +0.16208,1.19146,-1.26745,-1.47608,-1.06370,1.87210,-0.22933 +0.16315,1.19136,-1.26709,-1.47676,-1.06341,1.87218,-0.22940 +0.16421,1.19125,-1.26673,-1.47743,-1.06312,1.87227,-0.22946 +0.16528,1.19115,-1.26637,-1.47809,-1.06283,1.87234,-0.22953 +0.16635,1.19105,-1.26602,-1.47873,-1.06255,1.87242,-0.22959 +0.16741,1.19096,-1.26568,-1.47937,-1.06228,1.87250,-0.22965 +0.16848,1.19086,-1.26534,-1.47999,-1.06200,1.87257,-0.22971 +0.16955,1.19077,-1.26501,-1.48061,-1.06174,1.87264,-0.22976 +0.17061,1.19067,-1.26468,-1.48121,-1.06147,1.87272,-0.22982 +0.17168,1.19059,-1.26436,-1.48181,-1.06121,1.87279,-0.22988 +0.17274,1.19050,-1.26405,-1.48239,-1.06096,1.87285,-0.22993 +0.17381,1.19048,-1.26400,-1.48248,-1.06092,1.87287,-0.22994 +0.17488,1.19034,-1.26355,-1.48331,-1.06056,1.87298,-0.23003 +0.17594,1.19019,-1.26310,-1.48414,-1.06021,1.87309,-0.23012 +0.17701,1.19005,-1.26267,-1.48495,-1.05986,1.87320,-0.23021 +0.17808,1.18992,-1.26224,-1.48575,-1.05952,1.87330,-0.23029 +0.17914,1.18978,-1.26181,-1.48653,-1.05919,1.87341,-0.23038 +0.18021,1.18965,-1.26140,-1.48731,-1.05885,1.87351,-0.23046 +0.18128,1.18952,-1.26099,-1.48806,-1.05853,1.87361,-0.23054 +0.18234,1.18940,-1.26059,-1.48881,-1.05821,1.87371,-0.23062 +0.18341,1.18927,-1.26019,-1.48954,-1.05789,1.87381,-0.23069 +0.18447,1.18915,-1.25981,-1.49026,-1.05758,1.87390,-0.23077 +0.18554,1.18903,-1.25943,-1.49097,-1.05728,1.87399,-0.23084 +0.18661,1.18891,-1.25905,-1.49167,-1.05697,1.87409,-0.23092 +0.18767,1.18880,-1.25868,-1.49235,-1.05668,1.87418,-0.23099 +0.18874,1.18868,-1.25832,-1.49302,-1.05639,1.87426,-0.23106 +0.18981,1.18857,-1.25797,-1.49369,-1.05610,1.87435,-0.23113 +0.19087,1.18846,-1.25762,-1.49434,-1.05582,1.87443,-0.23120 +0.19194,1.18836,-1.25727,-1.49498,-1.05554,1.87452,-0.23126 +0.19300,1.18825,-1.25693,-1.49561,-1.05527,1.87460,-0.23133 +0.19407,1.18815,-1.25660,-1.49622,-1.05500,1.87468,-0.23139 +0.19514,1.18805,-1.25628,-1.49683,-1.05473,1.87476,-0.23145 +0.19620,1.18795,-1.25596,-1.49743,-1.05447,1.87483,-0.23151 +0.19727,1.18785,-1.25564,-1.49802,-1.05422,1.87491,-0.23157 +0.19834,1.18775,-1.25532,-1.49861,-1.05396,1.87499,-0.23164 +0.19940,1.18761,-1.25492,-1.49937,-1.05363,1.87510,-0.23172 +0.20047,1.18747,-1.25452,-1.50011,-1.05331,1.87520,-0.23181 +0.20154,1.18734,-1.25414,-1.50083,-1.05300,1.87531,-0.23190 +0.20260,1.18721,-1.25375,-1.50155,-1.05269,1.87541,-0.23198 +0.20367,1.18707,-1.25338,-1.50225,-1.05239,1.87551,-0.23206 +0.20473,1.18695,-1.25301,-1.50294,-1.05209,1.87561,-0.23214 +0.20580,1.18682,-1.25265,-1.50362,-1.05179,1.87571,-0.23222 +0.20687,1.18670,-1.25229,-1.50429,-1.05151,1.87581,-0.23230 +0.20793,1.18658,-1.25194,-1.50495,-1.05122,1.87590,-0.23237 +0.20900,1.18646,-1.25160,-1.50559,-1.05094,1.87599,-0.23245 +0.21007,1.18634,-1.25126,-1.50623,-1.05066,1.87608,-0.23252 +0.21113,1.18623,-1.25092,-1.50685,-1.05039,1.87617,-0.23259 +0.21220,1.18611,-1.25060,-1.50747,-1.05013,1.87626,-0.23266 +0.21327,1.18600,-1.25028,-1.50807,-1.04986,1.87635,-0.23273 +0.21433,1.18590,-1.24996,-1.50866,-1.04960,1.87643,-0.23279 +0.21540,1.18579,-1.24965,-1.50925,-1.04935,1.87651,-0.23286 +0.21646,1.18568,-1.24934,-1.50983,-1.04909,1.87660,-0.23293 +0.21753,1.18555,-1.24898,-1.51052,-1.04880,1.87670,-0.23301 +0.21860,1.18542,-1.24862,-1.51119,-1.04850,1.87680,-0.23309 +0.21966,1.18529,-1.24826,-1.51185,-1.04822,1.87690,-0.23317 +0.22073,1.18516,-1.24792,-1.51251,-1.04793,1.87700,-0.23325 +0.22180,1.18504,-1.24758,-1.51315,-1.04766,1.87710,-0.23333 +0.22286,1.18491,-1.24724,-1.51378,-1.04738,1.87719,-0.23341 +0.22393,1.18479,-1.24692,-1.51440,-1.04711,1.87729,-0.23348 +0.22499,1.18468,-1.24659,-1.51501,-1.04685,1.87738,-0.23356 +0.22606,1.18456,-1.24627,-1.51560,-1.04659,1.87747,-0.23363 +0.22713,1.18445,-1.24596,-1.51619,-1.04633,1.87755,-0.23370 +0.22819,1.18434,-1.24566,-1.51677,-1.04608,1.87764,-0.23377 +0.22926,1.18423,-1.24537,-1.51731,-1.04584,1.87772,-0.23383 +0.23033,1.18407,-1.24492,-1.51815,-1.04548,1.87785,-0.23394 +0.23139,1.18391,-1.24447,-1.51898,-1.04513,1.87797,-0.23404 +0.23246,1.18375,-1.24404,-1.51979,-1.04479,1.87809,-0.23414 +0.23353,1.18360,-1.24361,-1.52059,-1.04445,1.87821,-0.23423 +0.23459,1.18345,-1.24319,-1.52137,-1.04411,1.87833,-0.23433 +0.23566,1.18330,-1.24277,-1.52215,-1.04378,1.87845,-0.23442 +0.23672,1.18315,-1.24237,-1.52290,-1.04346,1.87856,-0.23451 +0.23779,1.18301,-1.24197,-1.52365,-1.04314,1.87867,-0.23460 +0.23886,1.18287,-1.24157,-1.52438,-1.04283,1.87878,-0.23469 +0.23992,1.18273,-1.24119,-1.52510,-1.04252,1.87889,-0.23478 +0.24099,1.18260,-1.24081,-1.52581,-1.04222,1.87899,-0.23486 +0.24206,1.18246,-1.24043,-1.52651,-1.04192,1.87910,-0.23494 +0.24312,1.18233,-1.24007,-1.52719,-1.04162,1.87920,-0.23503 +0.24419,1.18220,-1.23971,-1.52787,-1.04133,1.87930,-0.23511 +0.24525,1.18208,-1.23935,-1.52853,-1.04105,1.87939,-0.23518 +0.24632,1.18196,-1.23901,-1.52918,-1.04077,1.87949,-0.23526 +0.24739,1.18183,-1.23866,-1.52982,-1.04049,1.87958,-0.23534 +0.24845,1.18172,-1.23833,-1.53044,-1.04022,1.87968,-0.23541 +0.24952,1.18160,-1.23800,-1.53106,-1.03996,1.87977,-0.23548 +0.25059,1.18149,-1.23767,-1.53167,-1.03969,1.87986,-0.23556 +0.25165,1.18137,-1.23736,-1.53227,-1.03943,1.87994,-0.23563 +0.25272,1.18126,-1.23704,-1.53285,-1.03918,1.88003,-0.23569 +0.25379,1.18116,-1.23673,-1.53343,-1.03893,1.88011,-0.23576 +0.25485,1.18105,-1.23642,-1.53402,-1.03868,1.88020,-0.23583 +0.25592,1.18089,-1.23603,-1.53475,-1.03836,1.88032,-0.23593 +0.25698,1.18074,-1.23564,-1.53548,-1.03805,1.88043,-0.23602 +0.25805,1.18060,-1.23526,-1.53620,-1.03774,1.88055,-0.23611 +0.25912,1.18045,-1.23489,-1.53690,-1.03744,1.88066,-0.23621 +0.26018,1.18031,-1.23452,-1.53759,-1.03714,1.88077,-0.23629 +0.26125,1.18017,-1.23416,-1.53827,-1.03685,1.88088,-0.23638 +0.26232,1.18003,-1.23380,-1.53894,-1.03657,1.88098,-0.23647 +0.26338,1.17990,-1.23345,-1.53959,-1.03628,1.88109,-0.23655 +0.26445,1.17977,-1.23311,-1.54024,-1.03601,1.88119,-0.23663 +0.26552,1.17964,-1.23278,-1.54087,-1.03573,1.88129,-0.23672 +0.26658,1.17951,-1.23244,-1.54149,-1.03546,1.88139,-0.23680 +0.26765,1.17939,-1.23212,-1.54210,-1.03520,1.88149,-0.23687 +0.26871,1.17926,-1.23180,-1.54271,-1.03494,1.88158,-0.23695 +0.26978,1.17914,-1.23149,-1.54330,-1.03468,1.88167,-0.23703 +0.27085,1.17903,-1.23118,-1.54388,-1.03443,1.88177,-0.23710 +0.27191,1.17891,-1.23087,-1.54445,-1.03418,1.88186,-0.23717 +0.27298,1.17880,-1.23060,-1.54498,-1.03395,1.88194,-0.23724 +0.27405,1.17864,-1.23021,-1.54571,-1.03364,1.88206,-0.23734 +0.27511,1.17848,-1.22982,-1.54643,-1.03333,1.88219,-0.23744 +0.27618,1.17833,-1.22945,-1.54714,-1.03303,1.88231,-0.23754 +0.27724,1.17818,-1.22908,-1.54784,-1.03273,1.88243,-0.23763 +0.27831,1.17803,-1.22871,-1.54853,-1.03243,1.88254,-0.23773 +0.27938,1.17788,-1.22836,-1.54920,-1.03214,1.88266,-0.23782 +0.28044,1.17774,-1.22801,-1.54986,-1.03186,1.88277,-0.23791 +0.28151,1.17759,-1.22766,-1.55052,-1.03158,1.88288,-0.23800 +0.28258,1.17746,-1.22732,-1.55116,-1.03130,1.88299,-0.23809 +0.28364,1.17732,-1.22699,-1.55179,-1.03103,1.88309,-0.23817 +0.28471,1.17719,-1.22666,-1.55240,-1.03076,1.88320,-0.23826 +0.28578,1.17705,-1.22634,-1.55301,-1.03050,1.88330,-0.23834 +0.28684,1.17693,-1.22603,-1.55361,-1.03024,1.88340,-0.23842 +0.28791,1.17680,-1.22572,-1.55420,-1.02999,1.88350,-0.23850 +0.28897,1.17667,-1.22541,-1.55478,-1.02974,1.88359,-0.23858 +0.29004,1.17655,-1.22511,-1.55534,-1.02949,1.88369,-0.23866 +0.29111,1.17644,-1.22483,-1.55588,-1.02926,1.88378,-0.23873 +0.29217,1.17624,-1.22434,-1.55680,-1.02887,1.88393,-0.23886 +0.29324,1.17604,-1.22385,-1.55770,-1.02849,1.88409,-0.23898 +0.29431,1.17584,-1.22338,-1.55858,-1.02812,1.88424,-0.23911 +0.29537,1.17565,-1.22291,-1.55945,-1.02776,1.88438,-0.23923 +0.29644,1.17547,-1.22246,-1.56031,-1.02740,1.88453,-0.23934 +0.29750,1.17529,-1.22201,-1.56115,-1.02704,1.88467,-0.23946 +0.29857,1.17511,-1.22157,-1.56197,-1.02669,1.88481,-0.23957 +0.29964,1.17493,-1.22113,-1.56279,-1.02635,1.88495,-0.23969 +0.30070,1.17476,-1.22071,-1.56358,-1.02601,1.88508,-0.23980 +0.30177,1.17459,-1.22029,-1.56437,-1.02568,1.88521,-0.23990 +0.30284,1.17442,-1.21987,-1.56514,-1.02535,1.88534,-0.24001 +0.30390,1.17425,-1.21947,-1.56590,-1.02503,1.88547,-0.24011 +0.30497,1.17409,-1.21907,-1.56664,-1.02472,1.88559,-0.24021 +0.30604,1.17393,-1.21868,-1.56737,-1.02441,1.88572,-0.24031 +0.30710,1.17378,-1.21830,-1.56809,-1.02410,1.88584,-0.24041 +0.30817,1.17363,-1.21792,-1.56880,-1.02380,1.88596,-0.24051 +0.30923,1.17348,-1.21755,-1.56949,-1.02350,1.88607,-0.24060 +0.31030,1.17333,-1.21719,-1.57017,-1.02321,1.88619,-0.24070 +0.31137,1.17319,-1.21683,-1.57085,-1.02293,1.88630,-0.24079 +0.31243,1.17304,-1.21648,-1.57151,-1.02264,1.88641,-0.24088 +0.31350,1.17291,-1.21614,-1.57215,-1.02237,1.88652,-0.24097 +0.31457,1.17277,-1.21580,-1.57279,-1.02209,1.88662,-0.24105 +0.31563,1.17263,-1.21546,-1.57342,-1.02183,1.88673,-0.24114 +0.31670,1.17250,-1.21514,-1.57403,-1.02156,1.88683,-0.24122 +0.31776,1.17237,-1.21481,-1.57464,-1.02130,1.88693,-0.24130 +0.31883,1.17225,-1.21450,-1.57523,-1.02105,1.88703,-0.24138 +0.31990,1.17212,-1.21419,-1.57582,-1.02079,1.88713,-0.24146 +0.32096,1.17200,-1.21388,-1.57639,-1.02055,1.88722,-0.24154 +0.32203,1.17188,-1.21358,-1.57696,-1.02030,1.88731,-0.24161 +0.32310,1.17176,-1.21328,-1.57754,-1.02005,1.88741,-0.24169 +0.32416,1.17158,-1.21287,-1.57830,-1.01973,1.88755,-0.24180 +0.32523,1.17140,-1.21247,-1.57906,-1.01941,1.88768,-0.24191 +0.32630,1.17123,-1.21207,-1.57980,-1.01909,1.88782,-0.24202 +0.32736,1.17106,-1.21169,-1.58053,-1.01878,1.88795,-0.24213 +0.32843,1.17089,-1.21130,-1.58125,-1.01848,1.88808,-0.24224 +0.32949,1.17073,-1.21093,-1.58196,-1.01818,1.88821,-0.24234 +0.33056,1.17057,-1.21056,-1.58265,-1.01788,1.88833,-0.24244 +0.33163,1.17041,-1.21020,-1.58333,-1.01759,1.88845,-0.24254 +0.33269,1.17026,-1.20985,-1.58400,-1.01731,1.88857,-0.24264 +0.33376,1.17011,-1.20950,-1.58466,-1.01702,1.88869,-0.24274 +0.33483,1.16996,-1.20916,-1.58531,-1.01675,1.88881,-0.24283 +0.33589,1.16981,-1.20882,-1.58594,-1.01648,1.88892,-0.24292 +0.33696,1.16967,-1.20849,-1.58657,-1.01621,1.88903,-0.24301 +0.33803,1.16953,-1.20817,-1.58718,-1.01594,1.88914,-0.24310 +0.33909,1.16939,-1.20785,-1.58779,-1.01569,1.88925,-0.24319 +0.34016,1.16925,-1.20754,-1.58838,-1.01543,1.88935,-0.24328 +0.34122,1.16912,-1.20723,-1.58896,-1.01518,1.88946,-0.24336 +0.34229,1.16899,-1.20693,-1.58954,-1.01493,1.88956,-0.24345 +0.34336,1.16886,-1.20663,-1.59010,-1.01469,1.88966,-0.24353 +0.34442,1.16873,-1.20634,-1.59066,-1.01445,1.88976,-0.24361 +0.34549,1.16868,-1.20621,-1.59089,-1.01435,1.88980,-0.24364 +0.34656,1.16850,-1.20583,-1.59161,-1.01404,1.88994,-0.24375 +0.34762,1.16833,-1.20546,-1.59232,-1.01374,1.89007,-0.24386 +0.34869,1.16816,-1.20509,-1.59301,-1.01345,1.89020,-0.24397 +0.34975,1.16800,-1.20473,-1.59369,-1.01316,1.89033,-0.24407 +0.35082,1.16783,-1.20438,-1.59436,-1.01287,1.89046,-0.24418 +0.35189,1.16767,-1.20403,-1.59502,-1.01259,1.89058,-0.24428 +0.35295,1.16752,-1.20369,-1.59567,-1.01232,1.89070,-0.24438 +0.35402,1.16736,-1.20336,-1.59631,-1.01204,1.89082,-0.24448 +0.35509,1.16721,-1.20303,-1.59693,-1.01178,1.89094,-0.24457 +0.35615,1.16707,-1.20270,-1.59755,-1.01151,1.89105,-0.24467 +0.35722,1.16692,-1.20239,-1.59815,-1.01126,1.89117,-0.24476 +0.35829,1.16678,-1.20207,-1.59875,-1.01100,1.89128,-0.24485 +0.35935,1.16664,-1.20177,-1.59933,-1.01075,1.89139,-0.24494 +0.36042,1.16650,-1.20147,-1.59990,-1.01050,1.89149,-0.24503 +0.36148,1.16636,-1.20117,-1.60047,-1.01026,1.89160,-0.24511 +0.36255,1.16623,-1.20088,-1.60102,-1.01002,1.89170,-0.24520 +0.36362,1.16612,-1.20064,-1.60147,-1.00983,1.89179,-0.24526 +0.36468,1.16596,-1.20030,-1.60212,-1.00955,1.89191,-0.24537 +0.36575,1.16580,-1.19996,-1.60277,-1.00928,1.89204,-0.24547 +0.36682,1.16564,-1.19963,-1.60340,-1.00901,1.89216,-0.24557 +0.36788,1.16549,-1.19930,-1.60402,-1.00874,1.89228,-0.24567 +0.36895,1.16534,-1.19898,-1.60463,-1.00848,1.89240,-0.24577 +0.37001,1.16519,-1.19866,-1.60524,-1.00822,1.89251,-0.24586 +0.37108,1.16504,-1.19835,-1.60583,-1.00797,1.89263,-0.24595 +0.37215,1.16490,-1.19805,-1.60641,-1.00772,1.89274,-0.24605 +0.37321,1.16476,-1.19775,-1.60698,-1.00748,1.89285,-0.24613 +0.37428,1.16462,-1.19746,-1.60754,-1.00724,1.89295,-0.24622 +0.37535,1.16448,-1.19717,-1.60809,-1.00700,1.89306,-0.24631 +0.37641,1.16438,-1.19696,-1.60849,-1.00683,1.89314,-0.24637 +0.37748,1.16420,-1.19659,-1.60920,-1.00653,1.89328,-0.24649 +0.37855,1.16402,-1.19622,-1.60990,-1.00623,1.89342,-0.24661 +0.37961,1.16384,-1.19586,-1.61058,-1.00594,1.89356,-0.24672 +0.38068,1.16366,-1.19550,-1.61126,-1.00566,1.89369,-0.24683 +0.38174,1.16349,-1.19516,-1.61192,-1.00537,1.89383,-0.24694 +0.38281,1.16333,-1.19481,-1.61258,-1.00510,1.89396,-0.24705 +0.38388,1.16316,-1.19448,-1.61322,-1.00483,1.89408,-0.24715 +0.38494,1.16300,-1.19415,-1.61385,-1.00456,1.89421,-0.24726 +0.38601,1.16284,-1.19382,-1.61447,-1.00429,1.89433,-0.24736 +0.38708,1.16268,-1.19350,-1.61508,-1.00403,1.89445,-0.24746 +0.38814,1.16253,-1.19319,-1.61567,-1.00378,1.89457,-0.24756 +0.38921,1.16238,-1.19288,-1.61626,-1.00353,1.89469,-0.24765 +0.39028,1.16223,-1.19258,-1.61684,-1.00328,1.89481,-0.24775 +0.39134,1.16208,-1.19228,-1.61741,-1.00304,1.89492,-0.24784 +0.39241,1.16194,-1.19199,-1.61796,-1.00280,1.89503,-0.24793 +0.39347,1.16180,-1.19171,-1.61851,-1.00256,1.89514,-0.24802 +0.39454,1.16168,-1.19147,-1.61896,-1.00237,1.89523,-0.24809 +0.39561,1.16148,-1.19111,-1.61966,-1.00207,1.89539,-0.24823 +0.39667,1.16127,-1.19076,-1.62035,-1.00178,1.89555,-0.24836 +0.39774,1.16108,-1.19041,-1.62103,-1.00149,1.89570,-0.24848 +0.39881,1.16088,-1.19007,-1.62170,-1.00120,1.89585,-0.24861 +0.39987,1.16069,-1.18973,-1.62235,-1.00092,1.89600,-0.24873 +0.40094,1.16050,-1.18940,-1.62299,-1.00065,1.89615,-0.24885 +0.40200,1.16032,-1.18907,-1.62363,-1.00038,1.89629,-0.24897 +0.40307,1.16013,-1.18876,-1.62425,-1.00011,1.89643,-0.24909 +0.40414,1.15996,-1.18844,-1.62486,-0.99985,1.89657,-0.24920 +0.40520,1.15978,-1.18814,-1.62546,-0.99959,1.89670,-0.24931 +0.40627,1.15961,-1.18783,-1.62605,-0.99934,1.89684,-0.24942 +0.40734,1.15944,-1.18754,-1.62663,-0.99909,1.89697,-0.24953 +0.40840,1.15927,-1.18725,-1.62720,-0.99884,1.89710,-0.24964 +0.40947,1.15911,-1.18696,-1.62776,-0.99860,1.89723,-0.24974 +0.41054,1.15895,-1.18668,-1.62831,-0.99836,1.89735,-0.24985 +0.41160,1.15879,-1.18640,-1.62885,-0.99813,1.89747,-0.24995 +0.41267,1.15868,-1.18620,-1.62923,-0.99796,1.89756,-0.25002 +0.41373,1.15846,-1.18586,-1.62991,-0.99767,1.89773,-0.25016 +0.41480,1.15824,-1.18552,-1.63058,-0.99738,1.89790,-0.25030 +0.41587,1.15803,-1.18519,-1.63124,-0.99710,1.89806,-0.25043 +0.41693,1.15782,-1.18487,-1.63188,-0.99682,1.89822,-0.25057 +0.41800,1.15762,-1.18455,-1.63252,-0.99655,1.89838,-0.25070 +0.41907,1.15742,-1.18423,-1.63314,-0.99628,1.89854,-0.25083 +0.42013,1.15722,-1.18392,-1.63375,-0.99602,1.89869,-0.25095 +0.42120,1.15703,-1.18362,-1.63435,-0.99576,1.89884,-0.25108 +0.42226,1.15684,-1.18332,-1.63494,-0.99550,1.89899,-0.25120 +0.42333,1.15665,-1.18303,-1.63552,-0.99525,1.89913,-0.25132 +0.42440,1.15647,-1.18275,-1.63609,-0.99501,1.89927,-0.25144 +0.42546,1.15629,-1.18246,-1.63665,-0.99476,1.89941,-0.25156 +0.42653,1.15611,-1.18219,-1.63720,-0.99452,1.89955,-0.25167 +0.42760,1.15593,-1.18191,-1.63775,-0.99429,1.89969,-0.25178 +0.42866,1.15576,-1.18165,-1.63828,-0.99406,1.89982,-0.25189 +0.42973,1.15567,-1.18151,-1.63856,-0.99394,1.89989,-0.25195 +0.43080,1.15545,-1.18117,-1.63923,-0.99365,1.90006,-0.25209 +0.43186,1.15523,-1.18083,-1.63990,-0.99336,1.90024,-0.25224 +0.43293,1.15501,-1.18051,-1.64055,-0.99308,1.90040,-0.25238 +0.43399,1.15480,-1.18018,-1.64119,-0.99281,1.90057,-0.25251 +0.43506,1.15459,-1.17987,-1.64182,-0.99254,1.90073,-0.25265 +0.43613,1.15438,-1.17956,-1.64244,-0.99227,1.90089,-0.25278 +0.43719,1.15418,-1.17925,-1.64305,-0.99201,1.90105,-0.25291 +0.43826,1.15398,-1.17895,-1.64364,-0.99175,1.90120,-0.25304 +0.43933,1.15379,-1.17866,-1.64423,-0.99150,1.90135,-0.25316 +0.44039,1.15359,-1.17837,-1.64481,-0.99125,1.90150,-0.25329 +0.44146,1.15340,-1.17809,-1.64537,-0.99100,1.90165,-0.25341 +0.44253,1.15322,-1.17781,-1.64593,-0.99076,1.90179,-0.25353 +0.44359,1.15304,-1.17753,-1.64648,-0.99052,1.90193,-0.25365 +0.44466,1.15286,-1.17726,-1.64702,-0.99029,1.90207,-0.25376 +0.44572,1.15268,-1.17700,-1.64755,-0.99006,1.90221,-0.25388 +0.44679,1.15259,-1.17686,-1.64782,-0.98994,1.90228,-0.25394 +0.44786,1.15233,-1.17652,-1.64852,-0.98964,1.90248,-0.25410 +0.44892,1.15208,-1.17618,-1.64920,-0.98935,1.90268,-0.25426 +0.44999,1.15183,-1.17585,-1.64987,-0.98906,1.90287,-0.25442 +0.45106,1.15159,-1.17553,-1.65053,-0.98877,1.90305,-0.25458 +0.45212,1.15135,-1.17521,-1.65118,-0.98849,1.90324,-0.25474 +0.45319,1.15112,-1.17490,-1.65182,-0.98822,1.90342,-0.25489 +0.45425,1.15089,-1.17459,-1.65244,-0.98795,1.90360,-0.25504 +0.45532,1.15066,-1.17429,-1.65306,-0.98768,1.90377,-0.25518 +0.45639,1.15044,-1.17399,-1.65366,-0.98742,1.90395,-0.25533 +0.45745,1.15022,-1.17370,-1.65425,-0.98716,1.90412,-0.25547 +0.45852,1.15000,-1.17342,-1.65483,-0.98691,1.90428,-0.25561 +0.45959,1.14979,-1.17314,-1.65541,-0.98666,1.90445,-0.25574 +0.46065,1.14958,-1.17286,-1.65597,-0.98641,1.90461,-0.25588 +0.46172,1.14938,-1.17259,-1.65652,-0.98617,1.90477,-0.25601 +0.46279,1.14918,-1.17233,-1.65707,-0.98593,1.90492,-0.25614 +0.46385,1.14898,-1.17207,-1.65760,-0.98570,1.90508,-0.25627 +0.46492,1.14878,-1.17181,-1.65813,-0.98547,1.90523,-0.25640 +0.46598,1.14858,-1.17155,-1.65867,-0.98523,1.90539,-0.25653 +0.46705,1.14829,-1.17116,-1.65946,-0.98490,1.90561,-0.25672 +0.46812,1.14800,-1.17077,-1.66023,-0.98457,1.90584,-0.25691 +0.46918,1.14771,-1.17040,-1.66100,-0.98424,1.90606,-0.25709 +0.47025,1.14743,-1.17003,-1.66174,-0.98392,1.90628,-0.25727 +0.47132,1.14715,-1.16967,-1.66248,-0.98361,1.90649,-0.25745 +0.47238,1.14688,-1.16931,-1.66320,-0.98330,1.90670,-0.25763 +0.47345,1.14661,-1.16896,-1.66391,-0.98299,1.90691,-0.25780 +0.47451,1.14635,-1.16862,-1.66461,-0.98269,1.90711,-0.25797 +0.47558,1.14609,-1.16828,-1.66529,-0.98240,1.90731,-0.25814 +0.47665,1.14584,-1.16795,-1.66597,-0.98211,1.90751,-0.25830 +0.47771,1.14559,-1.16763,-1.66663,-0.98182,1.90770,-0.25847 +0.47878,1.14535,-1.16731,-1.66728,-0.98154,1.90789,-0.25862 +0.47985,1.14510,-1.16700,-1.66792,-0.98127,1.90807,-0.25878 +0.48091,1.14487,-1.16669,-1.66855,-0.98100,1.90826,-0.25893 +0.48198,1.14463,-1.16639,-1.66916,-0.98073,1.90844,-0.25909 +0.48305,1.14441,-1.16609,-1.66977,-0.98047,1.90862,-0.25923 +0.48411,1.14418,-1.16580,-1.67036,-0.98021,1.90879,-0.25938 +0.48518,1.14396,-1.16551,-1.67095,-0.97996,1.90896,-0.25952 +0.48624,1.14374,-1.16523,-1.67152,-0.97971,1.90913,-0.25967 +0.48731,1.14353,-1.16496,-1.67209,-0.97947,1.90930,-0.25981 +0.48838,1.14332,-1.16469,-1.67264,-0.97923,1.90946,-0.25994 +0.48944,1.14311,-1.16442,-1.67319,-0.97899,1.90962,-0.26008 +0.49051,1.14290,-1.16416,-1.67372,-0.97876,1.90978,-0.26021 +0.49158,1.14270,-1.16391,-1.67425,-0.97853,1.90994,-0.26034 +0.49264,1.14251,-1.16365,-1.67476,-0.97830,1.91009,-0.26047 +0.49371,1.14238,-1.16350,-1.67509,-0.97816,1.91018,-0.26055 +0.49478,1.14213,-1.16316,-1.67577,-0.97787,1.91039,-0.26072 +0.49584,1.14187,-1.16283,-1.67645,-0.97758,1.91058,-0.26088 +0.49691,1.14162,-1.16250,-1.67711,-0.97730,1.91078,-0.26104 +0.49797,1.14137,-1.16218,-1.67776,-0.97702,1.91097,-0.26121 +0.49904,1.14113,-1.16187,-1.67840,-0.97675,1.91116,-0.26136 +0.50011,1.14089,-1.16156,-1.67903,-0.97648,1.91134,-0.26152 +0.50117,1.14066,-1.16126,-1.67965,-0.97621,1.91152,-0.26167 +0.50224,1.14043,-1.16096,-1.68025,-0.97595,1.91170,-0.26182 +0.50331,1.14020,-1.16067,-1.68085,-0.97570,1.91188,-0.26197 +0.50437,1.13998,-1.16038,-1.68143,-0.97544,1.91205,-0.26211 +0.50544,1.13976,-1.16010,-1.68201,-0.97520,1.91222,-0.26226 +0.50650,1.13954,-1.15982,-1.68257,-0.97495,1.91239,-0.26240 +0.50757,1.13933,-1.15955,-1.68313,-0.97471,1.91255,-0.26254 +0.50864,1.13912,-1.15929,-1.68367,-0.97448,1.91271,-0.26267 +0.50970,1.13892,-1.15903,-1.68421,-0.97425,1.91287,-0.26280 +0.51077,1.13871,-1.15877,-1.68474,-0.97402,1.91303,-0.26294 +0.51184,1.13852,-1.15852,-1.68525,-0.97379,1.91318,-0.26306 +0.51290,1.13834,-1.15829,-1.68572,-0.97359,1.91332,-0.26318 +0.51397,1.13810,-1.15799,-1.68633,-0.97333,1.91351,-0.26334 +0.51504,1.13787,-1.15770,-1.68693,-0.97307,1.91369,-0.26349 +0.51610,1.13764,-1.15741,-1.68752,-0.97282,1.91387,-0.26364 +0.51717,1.13741,-1.15713,-1.68810,-0.97257,1.91404,-0.26379 +0.51823,1.13719,-1.15685,-1.68867,-0.97232,1.91421,-0.26393 +0.51930,1.13697,-1.15657,-1.68923,-0.97208,1.91438,-0.26407 +0.52037,1.13676,-1.15631,-1.68978,-0.97185,1.91455,-0.26421 +0.52143,1.13654,-1.15604,-1.69032,-0.97161,1.91471,-0.26435 +0.52250,1.13634,-1.15579,-1.69086,-0.97138,1.91487,-0.26449 +0.52357,1.13613,-1.15553,-1.69138,-0.97116,1.91503,-0.26462 +0.52463,1.13593,-1.15528,-1.69189,-0.97094,1.91519,-0.26475 +0.52570,1.13580,-1.15512,-1.69222,-0.97079,1.91529,-0.26483 +0.52676,1.13552,-1.15475,-1.69297,-0.97048,1.91551,-0.26502 +0.52783,1.13523,-1.15439,-1.69371,-0.97017,1.91573,-0.26521 +0.52890,1.13496,-1.15403,-1.69443,-0.96986,1.91594,-0.26539 +0.52996,1.13468,-1.15368,-1.69515,-0.96956,1.91615,-0.26557 +0.53103,1.13441,-1.15333,-1.69585,-0.96927,1.91636,-0.26574 +0.53210,1.13415,-1.15299,-1.69653,-0.96897,1.91656,-0.26592 +0.53316,1.13389,-1.15266,-1.69721,-0.96869,1.91677,-0.26609 +0.53423,1.13363,-1.15233,-1.69787,-0.96841,1.91696,-0.26625 +0.53530,1.13338,-1.15201,-1.69852,-0.96813,1.91716,-0.26642 +0.53636,1.13313,-1.15170,-1.69917,-0.96786,1.91735,-0.26658 +0.53743,1.13289,-1.15139,-1.69979,-0.96759,1.91754,-0.26674 +0.53849,1.13265,-1.15108,-1.70041,-0.96733,1.91772,-0.26689 +0.53956,1.13242,-1.15079,-1.70102,-0.96707,1.91790,-0.26705 +0.54063,1.13219,-1.15049,-1.70162,-0.96682,1.91808,-0.26720 +0.54169,1.13196,-1.15021,-1.70220,-0.96657,1.91826,-0.26735 +0.54276,1.13174,-1.14992,-1.70278,-0.96632,1.91843,-0.26749 +0.54383,1.13152,-1.14965,-1.70335,-0.96608,1.91860,-0.26764 +0.54489,1.13130,-1.14938,-1.70390,-0.96584,1.91877,-0.26778 +0.54596,1.13109,-1.14911,-1.70445,-0.96561,1.91894,-0.26792 +0.54702,1.13088,-1.14885,-1.70499,-0.96538,1.91910,-0.26806 +0.54809,1.13067,-1.14859,-1.70551,-0.96515,1.91926,-0.26819 +0.54916,1.13047,-1.14834,-1.70603,-0.96493,1.91941,-0.26832 +0.55022,1.13027,-1.14809,-1.70654,-0.96471,1.91957,-0.26845 +0.55129,1.13019,-1.14798,-1.70676,-0.96462,1.91963,-0.26851 +0.55236,1.12992,-1.14763,-1.70747,-0.96432,1.91984,-0.26868 +0.55342,1.12966,-1.14728,-1.70817,-0.96403,1.92004,-0.26885 +0.55449,1.12940,-1.14694,-1.70885,-0.96374,1.92024,-0.26902 +0.55556,1.12915,-1.14660,-1.70952,-0.96346,1.92043,-0.26919 +0.55662,1.12891,-1.14627,-1.71018,-0.96318,1.92062,-0.26935 +0.55769,1.12866,-1.14595,-1.71083,-0.96291,1.92081,-0.26951 +0.55875,1.12842,-1.14563,-1.71147,-0.96264,1.92100,-0.26967 +0.55982,1.12819,-1.14532,-1.71209,-0.96238,1.92118,-0.26982 +0.56089,1.12796,-1.14502,-1.71271,-0.96212,1.92136,-0.26997 +0.56195,1.12773,-1.14472,-1.71331,-0.96187,1.92154,-0.27012 +0.56302,1.12750,-1.14442,-1.71391,-0.96162,1.92171,-0.27027 +0.56409,1.12728,-1.14414,-1.71449,-0.96137,1.92188,-0.27041 +0.56515,1.12707,-1.14385,-1.71506,-0.96113,1.92205,-0.27055 +0.56622,1.12685,-1.14357,-1.71563,-0.96089,1.92221,-0.27069 +0.56729,1.12665,-1.14330,-1.71618,-0.96066,1.92237,-0.27083 +0.56835,1.12644,-1.14303,-1.71672,-0.96043,1.92253,-0.27097 +0.56942,1.12624,-1.14277,-1.71726,-0.96020,1.92269,-0.27110 +0.57048,1.12604,-1.14251,-1.71778,-0.95998,1.92285,-0.27123 +0.57155,1.12584,-1.14225,-1.71829,-0.95976,1.92300,-0.27136 +0.57262,1.12565,-1.14200,-1.71880,-0.95955,1.92315,-0.27148 +0.57368,1.12563,-1.14197,-1.71887,-0.95952,1.92316,-0.27150 +0.57475,1.12539,-1.14163,-1.71954,-0.95924,1.92335,-0.27166 +0.57582,1.12516,-1.14130,-1.72019,-0.95897,1.92353,-0.27181 +0.57688,1.12493,-1.14097,-1.72084,-0.95870,1.92371,-0.27196 +0.57795,1.12470,-1.14065,-1.72147,-0.95844,1.92388,-0.27211 +0.57901,1.12448,-1.14034,-1.72209,-0.95818,1.92405,-0.27226 +0.58008,1.12426,-1.14003,-1.72270,-0.95793,1.92422,-0.27240 +0.58115,1.12405,-1.13973,-1.72330,-0.95768,1.92439,-0.27254 +0.58221,1.12384,-1.13943,-1.72389,-0.95743,1.92455,-0.27268 +0.58328,1.12363,-1.13914,-1.72447,-0.95719,1.92471,-0.27281 +0.58435,1.12342,-1.13885,-1.72504,-0.95695,1.92487,-0.27295 +0.58541,1.12322,-1.13857,-1.72560,-0.95672,1.92503,-0.27308 +0.58648,1.12303,-1.13829,-1.72615,-0.95649,1.92518,-0.27321 +0.58755,1.12283,-1.13802,-1.72669,-0.95627,1.92533,-0.27334 +0.58861,1.12264,-1.13775,-1.72722,-0.95604,1.92548,-0.27346 +0.58968,1.12245,-1.13749,-1.72774,-0.95583,1.92562,-0.27359 +0.59074,1.12227,-1.13723,-1.72826,-0.95561,1.92576,-0.27371 +0.59181,1.12218,-1.13710,-1.72852,-0.95550,1.92584,-0.27377 +0.59288,1.12198,-1.13681,-1.72909,-0.95527,1.92599,-0.27390 +0.59394,1.12179,-1.13652,-1.72965,-0.95503,1.92614,-0.27402 +0.59501,1.12160,-1.13624,-1.73020,-0.95481,1.92628,-0.27415 +0.59608,1.12142,-1.13596,-1.73074,-0.95458,1.92643,-0.27427 +0.59714,1.12124,-1.13569,-1.73128,-0.95436,1.92657,-0.27439 +0.59821,1.12106,-1.13542,-1.73180,-0.95414,1.92671,-0.27451 +0.59927,1.12088,-1.13516,-1.73231,-0.95393,1.92684,-0.27462 +0.60034,1.12079,-1.13503,-1.73257,-0.95382,1.92691,-0.27468 +0.60141,1.12062,-1.13475,-1.73312,-0.95360,1.92705,-0.27480 +0.60247,1.12044,-1.13447,-1.73365,-0.95338,1.92718,-0.27491 +0.60354,1.12027,-1.13420,-1.73418,-0.95316,1.92732,-0.27502 +0.60461,1.12010,-1.13393,-1.73470,-0.95295,1.92745,-0.27514 +0.60567,1.12000,-1.13377,-1.73501,-0.95282,1.92753,-0.27520 +0.60674,1.11983,-1.13350,-1.73554,-0.95261,1.92766,-0.27532 +0.60781,1.11966,-1.13323,-1.73606,-0.95239,1.92779,-0.27543 +0.60887,1.11949,-1.13296,-1.73657,-0.95218,1.92792,-0.27554 +0.60994,1.11946,-1.13292,-1.73666,-0.95214,1.92795,-0.27556 +0.61100,1.11914,-1.13248,-1.73751,-0.95180,1.92819,-0.27577 +0.61207,1.11883,-1.13206,-1.73836,-0.95145,1.92843,-0.27598 +0.61314,1.11852,-1.13164,-1.73918,-0.95112,1.92867,-0.27618 +0.61420,1.11822,-1.13123,-1.73999,-0.95078,1.92890,-0.27638 +0.61527,1.11792,-1.13082,-1.74079,-0.95046,1.92913,-0.27657 +0.61634,1.11763,-1.13043,-1.74158,-0.95014,1.92935,-0.27676 +0.61740,1.11734,-1.13004,-1.74235,-0.94982,1.92957,-0.27695 +0.61847,1.11706,-1.12966,-1.74310,-0.94951,1.92979,-0.27714 +0.61954,1.11679,-1.12928,-1.74385,-0.94921,1.93000,-0.27732 +0.62060,1.11651,-1.12892,-1.74458,-0.94891,1.93021,-0.27750 +0.62167,1.11624,-1.12856,-1.74529,-0.94862,1.93042,-0.27768 +0.62273,1.11598,-1.12820,-1.74600,-0.94833,1.93062,-0.27786 +0.62380,1.11572,-1.12785,-1.74669,-0.94804,1.93082,-0.27803 +0.62487,1.11547,-1.12751,-1.74737,-0.94776,1.93102,-0.27820 +0.62593,1.11522,-1.12718,-1.74804,-0.94749,1.93121,-0.27836 +0.62700,1.11497,-1.12685,-1.74869,-0.94722,1.93140,-0.27852 +0.62807,1.11473,-1.12652,-1.74934,-0.94695,1.93159,-0.27868 +0.62913,1.11449,-1.12621,-1.74997,-0.94669,1.93177,-0.27884 +0.63020,1.11425,-1.12590,-1.75059,-0.94643,1.93195,-0.27900 +0.63126,1.11402,-1.12559,-1.75120,-0.94618,1.93213,-0.27915 +0.63233,1.11380,-1.12529,-1.75180,-0.94593,1.93231,-0.27930 +0.63340,1.11357,-1.12500,-1.75239,-0.94569,1.93248,-0.27945 +0.63446,1.11335,-1.12471,-1.75297,-0.94545,1.93265,-0.27959 +0.63553,1.11314,-1.12442,-1.75354,-0.94521,1.93282,-0.27974 +0.63660,1.11293,-1.12414,-1.75410,-0.94498,1.93298,-0.27988 +0.63766,1.11272,-1.12387,-1.75465,-0.94475,1.93314,-0.28001 +0.63873,1.11251,-1.12360,-1.75519,-0.94453,1.93330,-0.28015 +0.63980,1.11231,-1.12334,-1.75572,-0.94430,1.93346,-0.28028 +0.64086,1.11211,-1.12308,-1.75624,-0.94409,1.93361,-0.28041 +0.64193,1.11192,-1.12282,-1.75675,-0.94387,1.93376,-0.28054 +0.64299,1.11172,-1.12257,-1.75725,-0.94366,1.93391,-0.28067 +0.64406,1.11166,-1.12249,-1.75742,-0.94359,1.93396,-0.28071 +0.64513,1.11140,-1.12216,-1.75809,-0.94332,1.93416,-0.28089 +0.64619,1.11114,-1.12183,-1.75874,-0.94305,1.93436,-0.28106 +0.64726,1.11089,-1.12151,-1.75939,-0.94278,1.93455,-0.28122 +0.64833,1.11064,-1.12120,-1.76002,-0.94252,1.93474,-0.28139 +0.64939,1.11040,-1.12089,-1.76064,-0.94227,1.93493,-0.28155 +0.65046,1.11016,-1.12059,-1.76125,-0.94201,1.93512,-0.28171 +0.65152,1.10992,-1.12029,-1.76185,-0.94176,1.93530,-0.28186 +0.65259,1.10969,-1.12000,-1.76244,-0.94152,1.93548,-0.28202 +0.65366,1.10946,-1.11971,-1.76302,-0.94128,1.93565,-0.28217 +0.65472,1.10924,-1.11943,-1.76359,-0.94104,1.93583,-0.28232 +0.65579,1.10902,-1.11915,-1.76415,-0.94081,1.93600,-0.28247 +0.65686,1.10880,-1.11888,-1.76470,-0.94058,1.93616,-0.28261 +0.65792,1.10859,-1.11861,-1.76524,-0.94036,1.93633,-0.28275 +0.65899,1.10838,-1.11835,-1.76577,-0.94014,1.93649,-0.28289 +0.66006,1.10817,-1.11809,-1.76629,-0.93992,1.93665,-0.28303 +0.66112,1.10797,-1.11784,-1.76680,-0.93971,1.93681,-0.28316 +0.66219,1.10777,-1.11760,-1.76730,-0.93950,1.93696,-0.28329 +0.66325,1.10762,-1.11741,-1.76767,-0.93935,1.93708,-0.28339 +0.66432,1.10734,-1.11706,-1.76838,-0.93906,1.93729,-0.28358 +0.66539,1.10706,-1.11672,-1.76907,-0.93877,1.93751,-0.28376 +0.66645,1.10679,-1.11638,-1.76975,-0.93849,1.93772,-0.28395 +0.66752,1.10652,-1.11605,-1.77042,-0.93822,1.93792,-0.28412 +0.66859,1.10626,-1.11573,-1.77107,-0.93795,1.93813,-0.28430 +0.66965,1.10600,-1.11541,-1.77172,-0.93769,1.93833,-0.28447 +0.67072,1.10574,-1.11510,-1.77235,-0.93742,1.93852,-0.28464 +0.67179,1.10549,-1.11479,-1.77298,-0.93717,1.93872,-0.28481 +0.67285,1.10524,-1.11449,-1.77359,-0.93692,1.93891,-0.28498 +0.67392,1.10500,-1.11419,-1.77419,-0.93667,1.93910,-0.28514 +0.67498,1.10476,-1.11390,-1.77478,-0.93643,1.93928,-0.28530 +0.67605,1.10452,-1.11362,-1.77536,-0.93619,1.93946,-0.28545 +0.67712,1.10429,-1.11334,-1.77592,-0.93595,1.93964,-0.28561 +0.67818,1.10406,-1.11306,-1.77648,-0.93572,1.93982,-0.28576 +0.67925,1.10384,-1.11279,-1.77703,-0.93549,1.93999,-0.28591 +0.68032,1.10362,-1.11253,-1.77757,-0.93527,1.94016,-0.28606 +0.68138,1.10340,-1.11227,-1.77810,-0.93505,1.94033,-0.28620 +0.68245,1.10319,-1.11201,-1.77862,-0.93483,1.94049,-0.28634 +0.68351,1.10298,-1.11176,-1.77913,-0.93462,1.94065,-0.28648 +0.68458,1.10277,-1.11152,-1.77964,-0.93441,1.94081,-0.28662 +0.68565,1.10257,-1.11128,-1.78013,-0.93420,1.94097,-0.28676 +0.68671,1.10254,-1.11124,-1.78020,-0.93418,1.94099,-0.28677 +0.68778,1.10227,-1.11093,-1.78084,-0.93391,1.94120,-0.28695 +0.68885,1.10201,-1.11062,-1.78147,-0.93365,1.94140,-0.28713 +0.68991,1.10175,-1.11031,-1.78210,-0.93340,1.94160,-0.28730 +0.69098,1.10149,-1.11001,-1.78271,-0.93314,1.94180,-0.28747 +0.69205,1.10124,-1.10972,-1.78331,-0.93290,1.94199,-0.28764 +0.69311,1.10099,-1.10943,-1.78390,-0.93265,1.94218,-0.28781 +0.69418,1.10075,-1.10915,-1.78448,-0.93241,1.94237,-0.28797 +0.69524,1.10051,-1.10887,-1.78505,-0.93218,1.94255,-0.28813 +0.69631,1.10028,-1.10859,-1.78561,-0.93195,1.94273,-0.28828 +0.69738,1.10005,-1.10833,-1.78616,-0.93172,1.94291,-0.28844 +0.69844,1.09982,-1.10806,-1.78670,-0.93150,1.94309,-0.28859 +0.69951,1.09959,-1.10781,-1.78723,-0.93128,1.94326,-0.28874 +0.70058,1.09937,-1.10755,-1.78775,-0.93106,1.94343,-0.28889 +0.70164,1.09916,-1.10730,-1.78826,-0.93085,1.94360,-0.28903 +0.70271,1.09894,-1.10706,-1.78877,-0.93064,1.94376,-0.28917 +0.70377,1.09873,-1.10682,-1.78926,-0.93043,1.94392,-0.28931 +0.70484,1.09860,-1.10666,-1.78958,-0.93030,1.94403,-0.28940 +0.70591,1.09828,-1.10627,-1.79036,-0.92999,1.94427,-0.28962 +0.70697,1.09797,-1.10589,-1.79113,-0.92968,1.94451,-0.28982 +0.70804,1.09766,-1.10552,-1.79188,-0.92938,1.94474,-0.29003 +0.70911,1.09736,-1.10515,-1.79262,-0.92908,1.94498,-0.29023 +0.71017,1.09707,-1.10479,-1.79335,-0.92878,1.94520,-0.29043 +0.71124,1.09678,-1.10443,-1.79406,-0.92850,1.94543,-0.29062 +0.71231,1.09649,-1.10409,-1.79476,-0.92821,1.94565,-0.29082 +0.71337,1.09621,-1.10374,-1.79545,-0.92793,1.94586,-0.29101 +0.71444,1.09593,-1.10341,-1.79613,-0.92766,1.94608,-0.29119 +0.71550,1.09566,-1.10308,-1.79679,-0.92739,1.94629,-0.29137 +0.71657,1.09539,-1.10276,-1.79744,-0.92713,1.94649,-0.29155 +0.71764,1.09512,-1.10244,-1.79808,-0.92687,1.94670,-0.29173 +0.71870,1.09486,-1.10213,-1.79871,-0.92661,1.94690,-0.29191 +0.71977,1.09461,-1.10182,-1.79933,-0.92636,1.94709,-0.29208 +0.72084,1.09436,-1.10152,-1.79994,-0.92611,1.94729,-0.29225 +0.72190,1.09411,-1.10123,-1.80053,-0.92587,1.94748,-0.29241 +0.72297,1.09387,-1.10094,-1.80112,-0.92563,1.94766,-0.29257 +0.72403,1.09363,-1.10066,-1.80169,-0.92540,1.94785,-0.29273 +0.72510,1.09339,-1.10038,-1.80226,-0.92516,1.94803,-0.29289 +0.72617,1.09316,-1.10011,-1.80281,-0.92494,1.94821,-0.29305 +0.72723,1.09293,-1.09984,-1.80336,-0.92471,1.94838,-0.29320 +0.72830,1.09271,-1.09958,-1.80389,-0.92450,1.94856,-0.29335 +0.72937,1.09249,-1.09932,-1.80442,-0.92428,1.94873,-0.29350 +0.73043,1.09227,-1.09907,-1.80494,-0.92407,1.94889,-0.29364 +0.73150,1.09206,-1.09882,-1.80544,-0.92386,1.94906,-0.29379 +0.73257,1.09185,-1.09857,-1.80594,-0.92365,1.94922,-0.29393 +0.73363,1.09164,-1.09833,-1.80643,-0.92345,1.94938,-0.29407 +0.73470,1.09157,-1.09826,-1.80659,-0.92339,1.94943,-0.29411 +0.73576,1.09132,-1.09797,-1.80719,-0.92315,1.94963,-0.29428 +0.73683,1.09106,-1.09768,-1.80778,-0.92291,1.94982,-0.29445 +0.73790,1.09081,-1.09740,-1.80835,-0.92267,1.95001,-0.29462 +0.73896,1.09057,-1.09712,-1.80892,-0.92244,1.95020,-0.29479 +0.74003,1.09033,-1.09685,-1.80948,-0.92221,1.95039,-0.29495 +0.74110,1.09009,-1.09659,-1.81002,-0.92199,1.95057,-0.29511 +0.74216,1.08986,-1.09633,-1.81056,-0.92177,1.95075,-0.29526 +0.74323,1.08963,-1.09607,-1.81109,-0.92155,1.95093,-0.29542 +0.74430,1.08940,-1.09582,-1.81160,-0.92134,1.95110,-0.29557 +0.74536,1.08918,-1.09557,-1.81211,-0.92113,1.95127,-0.29572 +0.74643,1.08896,-1.09533,-1.81261,-0.92092,1.95144,-0.29587 +0.74749,1.08875,-1.09509,-1.81310,-0.92072,1.95160,-0.29601 +0.74856,1.08857,-1.09490,-1.81350,-0.92056,1.95174,-0.29613 +0.74963,1.08832,-1.09462,-1.81408,-0.92032,1.95193,-0.29630 +0.75069,1.08808,-1.09434,-1.81466,-0.92009,1.95212,-0.29646 +0.75176,1.08784,-1.09406,-1.81522,-0.91986,1.95231,-0.29662 +0.75283,1.08760,-1.09379,-1.81577,-0.91964,1.95249,-0.29678 +0.75389,1.08736,-1.09353,-1.81632,-0.91941,1.95267,-0.29694 +0.75496,1.08713,-1.09327,-1.81685,-0.91920,1.95285,-0.29710 +0.75602,1.08691,-1.09301,-1.81737,-0.91898,1.95302,-0.29725 +0.75709,1.08668,-1.09276,-1.81789,-0.91877,1.95319,-0.29740 +0.75816,1.08646,-1.09251,-1.81839,-0.91857,1.95336,-0.29755 +0.75922,1.08625,-1.09227,-1.81889,-0.91836,1.95353,-0.29769 +0.76029,1.08603,-1.09204,-1.81938,-0.91817,1.95369,-0.29784 +0.76136,1.08592,-1.09191,-1.81964,-0.91806,1.95378,-0.29791 +0.76242,1.08564,-1.09158,-1.82030,-0.91779,1.95399,-0.29810 +0.76349,1.08536,-1.09126,-1.82095,-0.91753,1.95421,-0.29829 +0.76456,1.08509,-1.09094,-1.82159,-0.91728,1.95441,-0.29847 +0.76562,1.08483,-1.09063,-1.82222,-0.91702,1.95462,-0.29865 +0.76669,1.08456,-1.09033,-1.82284,-0.91678,1.95482,-0.29883 +0.76775,1.08430,-1.09003,-1.82345,-0.91653,1.95502,-0.29900 +0.76882,1.08405,-1.08974,-1.82404,-0.91629,1.95521,-0.29918 +0.76989,1.08380,-1.08945,-1.82463,-0.91606,1.95541,-0.29935 +0.77095,1.08355,-1.08917,-1.82520,-0.91583,1.95560,-0.29951 +0.77202,1.08331,-1.08889,-1.82577,-0.91560,1.95578,-0.29968 +0.77309,1.08307,-1.08862,-1.82632,-0.91538,1.95597,-0.29984 +0.77415,1.08284,-1.08835,-1.82686,-0.91516,1.95615,-0.30000 +0.77522,1.08261,-1.08809,-1.82740,-0.91494,1.95632,-0.30015 +0.77628,1.08238,-1.08783,-1.82793,-0.91473,1.95650,-0.30030 +0.77735,1.08216,-1.08758,-1.82844,-0.91452,1.95667,-0.30046 +0.77842,1.08194,-1.08733,-1.82895,-0.91431,1.95684,-0.30060 +0.77948,1.08172,-1.08709,-1.82945,-0.91411,1.95701,-0.30075 +0.78055,1.08151,-1.08685,-1.82993,-0.91391,1.95717,-0.30089 +0.78162,1.08133,-1.08665,-1.83035,-0.91374,1.95731,-0.30102 +0.78268,1.08099,-1.08626,-1.83113,-0.91344,1.95757,-0.30124 +0.78375,1.08066,-1.08588,-1.83190,-0.91313,1.95782,-0.30147 +0.78482,1.08033,-1.08551,-1.83265,-0.91283,1.95807,-0.30169 +0.78588,1.08001,-1.08515,-1.83339,-0.91254,1.95831,-0.30191 +0.78695,1.07969,-1.08479,-1.83411,-0.91225,1.95856,-0.30212 +0.78801,1.07938,-1.08444,-1.83482,-0.91197,1.95879,-0.30233 +0.78908,1.07908,-1.08410,-1.83552,-0.91169,1.95903,-0.30254 +0.79015,1.07877,-1.08376,-1.83621,-0.91142,1.95926,-0.30274 +0.79121,1.07848,-1.08343,-1.83689,-0.91115,1.95949,-0.30294 +0.79228,1.07819,-1.08311,-1.83755,-0.91088,1.95971,-0.30314 +0.79335,1.07790,-1.08279,-1.83820,-0.91062,1.95993,-0.30334 +0.79441,1.07762,-1.08248,-1.83884,-0.91037,1.96014,-0.30353 +0.79548,1.07734,-1.08217,-1.83947,-0.91012,1.96036,-0.30372 +0.79655,1.07707,-1.08187,-1.84008,-0.90987,1.96057,-0.30390 +0.79761,1.07680,-1.08157,-1.84069,-0.90963,1.96077,-0.30408 +0.79868,1.07653,-1.08128,-1.84128,-0.90939,1.96098,-0.30426 +0.79974,1.07627,-1.08100,-1.84187,-0.90915,1.96117,-0.30444 +0.80081,1.07602,-1.08072,-1.84244,-0.90892,1.96137,-0.30461 +0.80188,1.07576,-1.08045,-1.84301,-0.90870,1.96156,-0.30478 +0.80294,1.07552,-1.08018,-1.84356,-0.90847,1.96175,-0.30495 +0.80401,1.07527,-1.07991,-1.84410,-0.90825,1.96194,-0.30512 +0.80508,1.07503,-1.07966,-1.84464,-0.90804,1.96213,-0.30528 +0.80614,1.07480,-1.07940,-1.84516,-0.90783,1.96231,-0.30544 +0.80721,1.07456,-1.07915,-1.84568,-0.90762,1.96249,-0.30560 +0.80827,1.07434,-1.07891,-1.84618,-0.90742,1.96266,-0.30575 +0.80934,1.07411,-1.07867,-1.84668,-0.90722,1.96283,-0.30591 +0.81041,1.07389,-1.07843,-1.84717,-0.90702,1.96300,-0.30606 +0.81147,1.07367,-1.07820,-1.84765,-0.90682,1.96317,-0.30620 +0.81254,1.07363,-1.07815,-1.84775,-0.90678,1.96321,-0.30624 +0.81361,1.07337,-1.07788,-1.84831,-0.90656,1.96340,-0.30641 +0.81467,1.07313,-1.07761,-1.84887,-0.90634,1.96359,-0.30657 +0.81574,1.07288,-1.07734,-1.84941,-0.90612,1.96378,-0.30674 +0.81681,1.07264,-1.07708,-1.84994,-0.90591,1.96396,-0.30690 +0.81787,1.07241,-1.07683,-1.85047,-0.90570,1.96414,-0.30706 +0.81894,1.07218,-1.07658,-1.85098,-0.90549,1.96432,-0.30722 +0.82000,1.07195,-1.07634,-1.85148,-0.90529,1.96449,-0.30738 +0.82107,1.07173,-1.07610,-1.85198,-0.90509,1.96467,-0.30753 +0.82214,1.07150,-1.07586,-1.85247,-0.90489,1.96483,-0.30768 +0.82320,1.07129,-1.07563,-1.85295,-0.90470,1.96500,-0.30783 +0.82427,1.07124,-1.07558,-1.85305,-0.90466,1.96504,-0.30786 +0.82534,1.07101,-1.07533,-1.85357,-0.90445,1.96522,-0.30802 +0.82640,1.07078,-1.07508,-1.85408,-0.90425,1.96539,-0.30817 +0.82747,1.07055,-1.07484,-1.85458,-0.90404,1.96557,-0.30833 +0.82853,1.07033,-1.07460,-1.85508,-0.90385,1.96574,-0.30848 +0.82960,1.07011,-1.07436,-1.85556,-0.90365,1.96591,-0.30863 +0.83067,1.06989,-1.07413,-1.85604,-0.90346,1.96608,-0.30878 +0.83173,1.06966,-1.07388,-1.85655,-0.90326,1.96625,-0.30893 +0.83280,1.06943,-1.07364,-1.85705,-0.90306,1.96642,-0.30909 +0.83387,1.06921,-1.07340,-1.85754,-0.90286,1.96659,-0.30924 +0.83493,1.06899,-1.07317,-1.85802,-0.90267,1.96676,-0.30939 +0.83600,1.06886,-1.07303,-1.85831,-0.90255,1.96686,-0.30948 +0.83707,1.06863,-1.07278,-1.85881,-0.90235,1.96704,-0.30963 +0.83813,1.06841,-1.07254,-1.85931,-0.90215,1.96721,-0.30979 +0.83920,1.06819,-1.07230,-1.85980,-0.90196,1.96738,-0.30994 +0.84026,1.06797,-1.07207,-1.86028,-0.90177,1.96755,-0.31009 +0.84133,1.06784,-1.07193,-1.86057,-0.90165,1.96765,-0.31018 +0.84240,1.06762,-1.07169,-1.86106,-0.90145,1.96782,-0.31033 +0.84346,1.06740,-1.07145,-1.86155,-0.90126,1.96799,-0.31048 +0.84453,1.06718,-1.07122,-1.86202,-0.90107,1.96815,-0.31063 +0.84560,1.06716,-1.07120,-1.86207,-0.90105,1.96817,-0.31064 +0.84666,1.06694,-1.07097,-1.86255,-0.90086,1.96834,-0.31079 +0.84773,1.06683,-1.07085,-1.86279,-0.90077,1.96842,-0.31086 +0.84880,1.06661,-1.07062,-1.86327,-0.90057,1.96859,-0.31101 +0.84986,1.06648,-1.07048,-1.86356,-0.90046,1.96869,-0.31110 +0.85093,1.06626,-1.07024,-1.86405,-0.90026,1.96886,-0.31125 +0.85199,1.06604,-1.07000,-1.86454,-0.90007,1.96903,-0.31140 +0.85306,1.06582,-1.06977,-1.86501,-0.89988,1.96919,-0.31155 +0.85413,1.06585,-1.06982,-1.86493,-0.89991,1.96917,-0.31153 +0.85519,1.06610,-1.07025,-1.86415,-0.90018,1.96899,-0.31136 +0.85626,1.06635,-1.07068,-1.86339,-0.90044,1.96880,-0.31119 +0.85733,1.06660,-1.07110,-1.86263,-0.90070,1.96862,-0.31102 +0.85839,1.06684,-1.07151,-1.86189,-0.90096,1.96844,-0.31085 +0.85946,1.06708,-1.07191,-1.86116,-0.90121,1.96826,-0.31069 +0.86052,1.06731,-1.07231,-1.86045,-0.90146,1.96809,-0.31053 +0.86159,1.06754,-1.07270,-1.85974,-0.90170,1.96792,-0.31038 +0.86266,1.06776,-1.07309,-1.85905,-0.90194,1.96776,-0.31022 +0.86372,1.06798,-1.07346,-1.85838,-0.90218,1.96759,-0.31007 +0.86479,1.06820,-1.07383,-1.85771,-0.90241,1.96743,-0.30992 +0.86586,1.06841,-1.07420,-1.85705,-0.90264,1.96727,-0.30978 +0.86692,1.06862,-1.07455,-1.85641,-0.90286,1.96712,-0.30964 +0.86799,1.06882,-1.07490,-1.85578,-0.90308,1.96697,-0.30950 +0.86906,1.06902,-1.07525,-1.85515,-0.90330,1.96682,-0.30936 +0.87012,1.06922,-1.07559,-1.85454,-0.90352,1.96667,-0.30922 +0.87119,1.06941,-1.07592,-1.85394,-0.90373,1.96653,-0.30909 +0.87225,1.06961,-1.07624,-1.85335,-0.90394,1.96638,-0.30896 +0.87332,1.06979,-1.07656,-1.85277,-0.90414,1.96624,-0.30883 +0.87439,1.06998,-1.07688,-1.85220,-0.90434,1.96611,-0.30871 +0.87545,1.07016,-1.07719,-1.85164,-0.90454,1.96597,-0.30859 +0.87652,1.07033,-1.07749,-1.85109,-0.90474,1.96584,-0.30846 +0.87759,1.07051,-1.07779,-1.85055,-0.90493,1.96571,-0.30835 +0.87865,1.07068,-1.07808,-1.85002,-0.90512,1.96558,-0.30823 +0.87972,1.07085,-1.07837,-1.84950,-0.90530,1.96546,-0.30811 +0.88078,1.07101,-1.07865,-1.84898,-0.90549,1.96533,-0.30800 +0.88185,1.07117,-1.07893,-1.84848,-0.90567,1.96521,-0.30789 +0.88292,1.07133,-1.07920,-1.84798,-0.90584,1.96509,-0.30778 +0.88398,1.07138,-1.07930,-1.84781,-0.90591,1.96506,-0.30775 +0.88505,1.07158,-1.07972,-1.84708,-0.90616,1.96491,-0.30762 +0.88612,1.07177,-1.08013,-1.84637,-0.90641,1.96477,-0.30748 +0.88718,1.07196,-1.08053,-1.84566,-0.90666,1.96462,-0.30736 +0.88825,1.07214,-1.08093,-1.84497,-0.90690,1.96449,-0.30723 +0.88932,1.07232,-1.08131,-1.84429,-0.90714,1.96435,-0.30711 +0.89038,1.07250,-1.08170,-1.84362,-0.90737,1.96422,-0.30699 +0.89145,1.07268,-1.08207,-1.84297,-0.90760,1.96409,-0.30687 +0.89251,1.07285,-1.08244,-1.84232,-0.90783,1.96396,-0.30675 +0.89358,1.07302,-1.08280,-1.84169,-0.90806,1.96383,-0.30663 +0.89465,1.07318,-1.08315,-1.84107,-0.90828,1.96371,-0.30652 +0.89571,1.07334,-1.08350,-1.84045,-0.90850,1.96358,-0.30641 +0.89678,1.07350,-1.08385,-1.83985,-0.90871,1.96346,-0.30630 +0.89785,1.07366,-1.08418,-1.83926,-0.90892,1.96335,-0.30620 +0.89891,1.07381,-1.08451,-1.83868,-0.90913,1.96323,-0.30609 +0.89998,1.07396,-1.08484,-1.83811,-0.90933,1.96312,-0.30599 +0.90104,1.07411,-1.08516,-1.83755,-0.90953,1.96301,-0.30589 +0.90211,1.07425,-1.08547,-1.83700,-0.90973,1.96290,-0.30579 +0.90318,1.07440,-1.08578,-1.83645,-0.90992,1.96279,-0.30570 +0.90424,1.07454,-1.08608,-1.83592,-0.91012,1.96269,-0.30560 +0.90531,1.07467,-1.08638,-1.83540,-0.91030,1.96258,-0.30551 +0.90638,1.07481,-1.08667,-1.83488,-0.91049,1.96248,-0.30542 +0.90744,1.07494,-1.08696,-1.83438,-0.91067,1.96238,-0.30533 +0.90851,1.07498,-1.08707,-1.83419,-0.91074,1.96235,-0.30530 +0.90958,1.07515,-1.08758,-1.83333,-0.91104,1.96222,-0.30519 +0.91064,1.07531,-1.08809,-1.83248,-0.91133,1.96210,-0.30507 +0.91171,1.07548,-1.08858,-1.83165,-0.91162,1.96198,-0.30496 +0.91277,1.07563,-1.08907,-1.83083,-0.91190,1.96186,-0.30486 +0.91384,1.07579,-1.08955,-1.83003,-0.91218,1.96174,-0.30475 +0.91491,1.07594,-1.09002,-1.82924,-0.91246,1.96162,-0.30465 +0.91597,1.07609,-1.09048,-1.82846,-0.91273,1.96151,-0.30455 +0.91704,1.07624,-1.09094,-1.82770,-0.91300,1.96140,-0.30445 +0.91811,1.07638,-1.09139,-1.82695,-0.91326,1.96129,-0.30435 +0.91917,1.07652,-1.09182,-1.82621,-0.91352,1.96119,-0.30426 +0.92024,1.07666,-1.09226,-1.82549,-0.91378,1.96108,-0.30416 +0.92131,1.07679,-1.09268,-1.82478,-0.91403,1.96098,-0.30407 +0.92237,1.07692,-1.09309,-1.82408,-0.91427,1.96088,-0.30398 +0.92344,1.07705,-1.09350,-1.82339,-0.91452,1.96078,-0.30390 +0.92450,1.07718,-1.09390,-1.82271,-0.91476,1.96069,-0.30381 +0.92557,1.07730,-1.09430,-1.82205,-0.91499,1.96059,-0.30373 +0.92664,1.07742,-1.09469,-1.82140,-0.91523,1.96050,-0.30365 +0.92770,1.07754,-1.09507,-1.82075,-0.91546,1.96041,-0.30357 +0.92877,1.07766,-1.09544,-1.82012,-0.91568,1.96032,-0.30349 +0.92984,1.07778,-1.09581,-1.81950,-0.91590,1.96024,-0.30341 +0.93090,1.07789,-1.09617,-1.81889,-0.91612,1.96015,-0.30333 +0.93197,1.07800,-1.09652,-1.81829,-0.91634,1.96007,-0.30326 +0.93303,1.07810,-1.09687,-1.81770,-0.91655,1.95999,-0.30319 +0.93410,1.07821,-1.09721,-1.81713,-0.91676,1.95991,-0.30312 +0.93517,1.07831,-1.09755,-1.81656,-0.91696,1.95983,-0.30305 +0.93623,1.07842,-1.09788,-1.81600,-0.91716,1.95975,-0.30298 +0.93730,1.07851,-1.09820,-1.81545,-0.91736,1.95968,-0.30291 +0.93837,1.07861,-1.09852,-1.81491,-0.91756,1.95960,-0.30285 +0.93943,1.07871,-1.09884,-1.81438,-0.91775,1.95953,-0.30278 +0.94050,1.07880,-1.09914,-1.81386,-0.91794,1.95946,-0.30272 +0.94157,1.07887,-1.09937,-1.81346,-0.91808,1.95941,-0.30267 +0.94263,1.07899,-1.09987,-1.81265,-0.91837,1.95931,-0.30259 +0.94370,1.07911,-1.10035,-1.81185,-0.91865,1.95922,-0.30251 +0.94476,1.07923,-1.10083,-1.81106,-0.91893,1.95913,-0.30243 +0.94583,1.07935,-1.10130,-1.81028,-0.91921,1.95904,-0.30235 +0.94690,1.07946,-1.10176,-1.80952,-0.91948,1.95895,-0.30227 +0.94796,1.07958,-1.10221,-1.80877,-0.91974,1.95887,-0.30220 +0.94903,1.07969,-1.10266,-1.80803,-0.92000,1.95879,-0.30213 +0.95010,1.07979,-1.10310,-1.80731,-0.92026,1.95870,-0.30205 +0.95116,1.07990,-1.10353,-1.80660,-0.92052,1.95863,-0.30198 +0.95223,1.08000,-1.10395,-1.80590,-0.92077,1.95855,-0.30192 +0.95329,1.08010,-1.10436,-1.80521,-0.92101,1.95847,-0.30185 +0.95436,1.08020,-1.10477,-1.80454,-0.92126,1.95840,-0.30178 +0.95543,1.08029,-1.10517,-1.80387,-0.92149,1.95832,-0.30172 +0.95649,1.08039,-1.10556,-1.80322,-0.92173,1.95825,-0.30166 +0.95756,1.08048,-1.10595,-1.80258,-0.92196,1.95818,-0.30159 +0.95863,1.08057,-1.10633,-1.80195,-0.92219,1.95811,-0.30153 +0.95969,1.08066,-1.10670,-1.80133,-0.92241,1.95805,-0.30148 +0.96076,1.08074,-1.10706,-1.80072,-0.92263,1.95798,-0.30142 +0.96183,1.08083,-1.10742,-1.80012,-0.92285,1.95792,-0.30136 +0.96289,1.08091,-1.10778,-1.79953,-0.92307,1.95785,-0.30131 +0.96396,1.08099,-1.10812,-1.79895,-0.92328,1.95779,-0.30125 +0.96502,1.08107,-1.10847,-1.79838,-0.92349,1.95773,-0.30120 +0.96609,1.08115,-1.10880,-1.79782,-0.92369,1.95767,-0.30115 +0.96716,1.08122,-1.10913,-1.79727,-0.92389,1.95762,-0.30110 +0.96822,1.08130,-1.10945,-1.79673,-0.92409,1.95756,-0.30105 +0.96929,1.08137,-1.10977,-1.79620,-0.92428,1.95750,-0.30100 +0.97036,1.08143,-1.11006,-1.79572,-0.92446,1.95745,-0.30096 +0.97142,1.08150,-1.11045,-1.79508,-0.92469,1.95740,-0.30091 +0.97249,1.08157,-1.11083,-1.79446,-0.92491,1.95735,-0.30087 +0.97356,1.08164,-1.11121,-1.79384,-0.92514,1.95730,-0.30083 +0.97462,1.08170,-1.11158,-1.79324,-0.92535,1.95725,-0.30078 +0.97569,1.08176,-1.11195,-1.79264,-0.92557,1.95720,-0.30074 +0.97675,1.08182,-1.11230,-1.79206,-0.92578,1.95716,-0.30070 +0.97782,1.08188,-1.11266,-1.79148,-0.92599,1.95711,-0.30066 +0.97889,1.08194,-1.11300,-1.79092,-0.92619,1.95707,-0.30062 +0.97995,1.08200,-1.11334,-1.79036,-0.92639,1.95702,-0.30059 +0.98102,1.08206,-1.11367,-1.78982,-0.92659,1.95698,-0.30055 +0.98209,1.08211,-1.11400,-1.78928,-0.92679,1.95694,-0.30051 +0.98315,1.08216,-1.11432,-1.78875,-0.92698,1.95690,-0.30048 +0.98422,1.08217,-1.11437,-1.78868,-0.92701,1.95690,-0.30048 +0.98528,1.08222,-1.11480,-1.78799,-0.92725,1.95686,-0.30044 +0.98635,1.08227,-1.11522,-1.78732,-0.92749,1.95682,-0.30041 +0.98742,1.08231,-1.11564,-1.78665,-0.92773,1.95679,-0.30038 +0.98848,1.08236,-1.11605,-1.78600,-0.92796,1.95675,-0.30035 +0.98955,1.08240,-1.11645,-1.78536,-0.92819,1.95672,-0.30032 +0.99062,1.08245,-1.11684,-1.78473,-0.92841,1.95668,-0.30029 +0.99168,1.08249,-1.11723,-1.78411,-0.92863,1.95665,-0.30027 +0.99275,1.08253,-1.11761,-1.78350,-0.92885,1.95662,-0.30024 +0.99382,1.08257,-1.11799,-1.78290,-0.92907,1.95659,-0.30021 +0.99488,1.08261,-1.11835,-1.78231,-0.92928,1.95656,-0.30019 +0.99595,1.08264,-1.11872,-1.78173,-0.92949,1.95653,-0.30017 +0.99701,1.08268,-1.11907,-1.78116,-0.92969,1.95650,-0.30014 +0.99808,1.08272,-1.11942,-1.78060,-0.92990,1.95648,-0.30012 +0.99915,1.08275,-1.11976,-1.78005,-0.93010,1.95645,-0.30010 +1.00021,1.08278,-1.12010,-1.77950,-0.93029,1.95643,-0.30008 +1.00128,1.08282,-1.12043,-1.77897,-0.93049,1.95640,-0.30006 +1.00235,1.08282,-1.12051,-1.77885,-0.93053,1.95640,-0.30005 +1.00341,1.08286,-1.12093,-1.77818,-0.93077,1.95637,-0.30003 +1.00448,1.08289,-1.12135,-1.77751,-0.93100,1.95635,-0.30001 +1.00554,1.08292,-1.12177,-1.77686,-0.93124,1.95632,-0.29999 +1.00661,1.08295,-1.12217,-1.77622,-0.93147,1.95630,-0.29997 +1.00768,1.08298,-1.12257,-1.77559,-0.93169,1.95628,-0.29995 +1.00874,1.08300,-1.12296,-1.77497,-0.93191,1.95626,-0.29994 +1.00981,1.08303,-1.12335,-1.77436,-0.93213,1.95624,-0.29992 +1.01088,1.08305,-1.12372,-1.77376,-0.93235,1.95622,-0.29990 +1.01194,1.08308,-1.12410,-1.77317,-0.93256,1.95620,-0.29989 +1.01301,1.08310,-1.12446,-1.77259,-0.93277,1.95618,-0.29987 +1.01408,1.08313,-1.12482,-1.77202,-0.93297,1.95617,-0.29986 +1.01514,1.08315,-1.12517,-1.77146,-0.93318,1.95615,-0.29985 +1.01621,1.08317,-1.12552,-1.77091,-0.93338,1.95613,-0.29983 +1.01727,1.08319,-1.12586,-1.77037,-0.93357,1.95612,-0.29982 +1.01834,1.08321,-1.12617,-1.76988,-0.93375,1.95610,-0.29981 +1.01941,1.08322,-1.12658,-1.76922,-0.93398,1.95610,-0.29981 +1.02047,1.08323,-1.12699,-1.76858,-0.93421,1.95609,-0.29980 +1.02154,1.08324,-1.12740,-1.76796,-0.93443,1.95608,-0.29980 +1.02261,1.08324,-1.12779,-1.76734,-0.93465,1.95608,-0.29979 +1.02367,1.08325,-1.12818,-1.76673,-0.93487,1.95607,-0.29979 +1.02474,1.08326,-1.12857,-1.76613,-0.93508,1.95607,-0.29979 +1.02581,1.08326,-1.12894,-1.76554,-0.93529,1.95606,-0.29978 +1.02687,1.08327,-1.12931,-1.76496,-0.93550,1.95606,-0.29978 +1.02794,1.08327,-1.12967,-1.76440,-0.93571,1.95605,-0.29978 +1.02900,1.08328,-1.13003,-1.76384,-0.93591,1.95605,-0.29978 +1.03007,1.08328,-1.13038,-1.76329,-0.93611,1.95605,-0.29978 +1.03114,1.08329,-1.13073,-1.76275,-0.93630,1.95605,-0.29978 +1.03220,1.08329,-1.13090,-1.76247,-0.93640,1.95604,-0.29978 +1.03327,1.08329,-1.13130,-1.76185,-0.93662,1.95604,-0.29978 +1.03434,1.08329,-1.13169,-1.76124,-0.93684,1.95605,-0.29978 +1.03540,1.08329,-1.13208,-1.76064,-0.93705,1.95605,-0.29978 +1.03647,1.08328,-1.13246,-1.76005,-0.93727,1.95605,-0.29978 +1.03753,1.08328,-1.13283,-1.75947,-0.93747,1.95605,-0.29979 +1.03860,1.08328,-1.13320,-1.75890,-0.93768,1.95605,-0.29979 +1.03967,1.08328,-1.13356,-1.75834,-0.93788,1.95605,-0.29979 +1.04073,1.08327,-1.13391,-1.75779,-0.93808,1.95606,-0.29980 +1.04180,1.08327,-1.13426,-1.75725,-0.93828,1.95606,-0.29980 +1.04287,1.08327,-1.13447,-1.75692,-0.93839,1.95606,-0.29980 +1.04393,1.08325,-1.13486,-1.75633,-0.93860,1.95608,-0.29982 +1.04500,1.08323,-1.13524,-1.75575,-0.93881,1.95609,-0.29983 +1.04607,1.08322,-1.13561,-1.75517,-0.93902,1.95610,-0.29984 +1.04713,1.08320,-1.13598,-1.75461,-0.93922,1.95612,-0.29986 +1.04820,1.08318,-1.13634,-1.75405,-0.93942,1.95613,-0.29987 +1.04926,1.08316,-1.13670,-1.75351,-0.93961,1.95614,-0.29988 +1.05033,1.08314,-1.13702,-1.75302,-0.93979,1.95616,-0.29990 +1.05140,1.08309,-1.13743,-1.75241,-0.94000,1.95620,-0.29994 +1.05246,1.08303,-1.13783,-1.75182,-0.94020,1.95624,-0.29998 +1.05353,1.08298,-1.13822,-1.75123,-0.94040,1.95629,-0.30002 +1.05460,1.08292,-1.13861,-1.75066,-0.94060,1.95633,-0.30006 +1.05566,1.08287,-1.13900,-1.75010,-0.94080,1.95637,-0.30009 +1.05673,1.08281,-1.13937,-1.74954,-0.94099,1.95641,-0.30013 +1.05779,1.08276,-1.13974,-1.74900,-0.94119,1.95645,-0.30017 +1.05886,1.08271,-1.14010,-1.74846,-0.94137,1.95649,-0.30021 +1.05993,1.08270,-1.14014,-1.74840,-0.94139,1.95650,-0.30021 +1.06099,1.08261,-1.14055,-1.74781,-0.94159,1.95657,-0.30027 +1.06206,1.08252,-1.14096,-1.74724,-0.94179,1.95663,-0.30033 +1.06313,1.08244,-1.14135,-1.74667,-0.94198,1.95670,-0.30039 +1.06419,1.08235,-1.14174,-1.74611,-0.94217,1.95676,-0.30045 +1.06526,1.08227,-1.14212,-1.74557,-0.94236,1.95683,-0.30051 +1.06633,1.08219,-1.14250,-1.74503,-0.94254,1.95689,-0.30057 +1.06739,1.08213,-1.14272,-1.74470,-0.94266,1.95693,-0.30061 +1.06846,1.08199,-1.14315,-1.74413,-0.94284,1.95704,-0.30070 +1.06952,1.08186,-1.14356,-1.74356,-0.94303,1.95714,-0.30080 +1.07059,1.08172,-1.14397,-1.74301,-0.94321,1.95724,-0.30089 +1.07166,1.08159,-1.14437,-1.74246,-0.94339,1.95735,-0.30098 +1.07272,1.08146,-1.14476,-1.74192,-0.94357,1.95745,-0.30107 +1.07379,1.08133,-1.14515,-1.74139,-0.94375,1.95754,-0.30116 +1.07486,1.08127,-1.14531,-1.74118,-0.94382,1.95759,-0.30120 +1.07592,1.08108,-1.14575,-1.74060,-0.94400,1.95773,-0.30133 +1.07699,1.08089,-1.14618,-1.74004,-0.94417,1.95788,-0.30146 +1.07806,1.08071,-1.14661,-1.73949,-0.94435,1.95802,-0.30159 +1.07912,1.08052,-1.14703,-1.73895,-0.94452,1.95816,-0.30171 +1.08019,1.08034,-1.14744,-1.73841,-0.94469,1.95830,-0.30184 +1.08125,1.08016,-1.14784,-1.73788,-0.94486,1.95843,-0.30196 +1.08232,1.07999,-1.14824,-1.73737,-0.94502,1.95857,-0.30208 +1.08339,1.07991,-1.14841,-1.73716,-0.94509,1.95863,-0.30214 +1.08445,1.07968,-1.14886,-1.73660,-0.94526,1.95881,-0.30230 +1.08552,1.07944,-1.14930,-1.73605,-0.94543,1.95898,-0.30246 +1.08659,1.07921,-1.14973,-1.73551,-0.94559,1.95916,-0.30262 +1.08765,1.07899,-1.15016,-1.73497,-0.94575,1.95933,-0.30277 +1.08872,1.07876,-1.15058,-1.73445,-0.94592,1.95950,-0.30293 +1.08978,1.07854,-1.15100,-1.73393,-0.94607,1.95967,-0.30308 +1.09085,1.07832,-1.15140,-1.73343,-0.94623,1.95984,-0.30323 +1.09192,1.07813,-1.15177,-1.73297,-0.94637,1.95999,-0.30336 +1.09298,1.07787,-1.15220,-1.73245,-0.94653,1.96018,-0.30354 +1.09405,1.07762,-1.15262,-1.73194,-0.94668,1.96038,-0.30371 +1.09512,1.07737,-1.15304,-1.73143,-0.94683,1.96057,-0.30388 +1.09618,1.07713,-1.15345,-1.73093,-0.94698,1.96075,-0.30405 +1.09725,1.07688,-1.15386,-1.73044,-0.94713,1.96094,-0.30422 +1.09832,1.07683,-1.15394,-1.73034,-0.94716,1.96098,-0.30425 +1.09938,1.07657,-1.15436,-1.72984,-0.94731,1.96118,-0.30443 +1.10045,1.07631,-1.15478,-1.72934,-0.94746,1.96138,-0.30461 +1.10151,1.07605,-1.15519,-1.72885,-0.94761,1.96157,-0.30479 +1.10258,1.07580,-1.15559,-1.72837,-0.94775,1.96177,-0.30497 +1.10365,1.07553,-1.15600,-1.72789,-0.94789,1.96197,-0.30515 +1.10471,1.07540,-1.15620,-1.72765,-0.94796,1.96207,-0.30524 +1.10578,1.07521,-1.15649,-1.72732,-0.94806,1.96222,-0.30537 +1.10685,1.07493,-1.15689,-1.72685,-0.94820,1.96243,-0.30556 +1.10791,1.07475,-1.15714,-1.72657,-0.94828,1.96256,-0.30568 +1.10898,1.07443,-1.15755,-1.72612,-0.94840,1.96281,-0.30591 +1.11004,1.07411,-1.15795,-1.72568,-0.94852,1.96306,-0.30613 +1.11111,1.07406,-1.15799,-1.72564,-0.94853,1.96309,-0.30616 +1.11218,1.07365,-1.15839,-1.72527,-0.94861,1.96340,-0.30644 +1.11324,1.07325,-1.15878,-1.72490,-0.94870,1.96371,-0.30672 +1.11431,1.07304,-1.15897,-1.72473,-0.94873,1.96387,-0.30686 +1.11538,1.07254,-1.15931,-1.72450,-0.94876,1.96425,-0.30720 +1.11644,1.07205,-1.15965,-1.72426,-0.94878,1.96462,-0.30754 +1.11751,1.07195,-1.15971,-1.72423,-0.94878,1.96470,-0.30761 +1.11858,1.07141,-1.16001,-1.72408,-0.94877,1.96511,-0.30798 +1.11964,1.07088,-1.16030,-1.72394,-0.94876,1.96552,-0.30835 +1.12071,1.07035,-1.16059,-1.72381,-0.94875,1.96591,-0.30870 +1.12177,1.07019,-1.16067,-1.72377,-0.94874,1.96604,-0.30881 +1.12284,1.06962,-1.16093,-1.72371,-0.94869,1.96647,-0.30920 +1.12391,1.06907,-1.16118,-1.72365,-0.94865,1.96689,-0.30959 +1.12497,1.06852,-1.16143,-1.72359,-0.94861,1.96731,-0.30997 +1.12604,1.06797,-1.16168,-1.72353,-0.94857,1.96772,-0.31034 +1.12711,1.06749,-1.16189,-1.72349,-0.94853,1.96809,-0.31067 +1.12817,1.06691,-1.16209,-1.72353,-0.94845,1.96854,-0.31107 +1.12924,1.06633,-1.16228,-1.72358,-0.94837,1.96897,-0.31147 +1.13030,1.06577,-1.16246,-1.72362,-0.94829,1.96940,-0.31186 +1.13137,1.06521,-1.16265,-1.72366,-0.94821,1.96982,-0.31224 +1.13244,1.06467,-1.16283,-1.72370,-0.94814,1.97024,-0.31262 +1.13350,1.06413,-1.16301,-1.72374,-0.94806,1.97065,-0.31299 +1.13457,1.06384,-1.16309,-1.72378,-0.94801,1.97087,-0.31319 +1.13564,1.06306,-1.16321,-1.72407,-0.94782,1.97146,-0.31372 +1.13670,1.06230,-1.16333,-1.72436,-0.94763,1.97204,-0.31425 +1.13777,1.06155,-1.16344,-1.72463,-0.94744,1.97261,-0.31476 +1.13884,1.06081,-1.16355,-1.72491,-0.94725,1.97317,-0.31527 +1.13990,1.06008,-1.16366,-1.72517,-0.94707,1.97372,-0.31578 +1.14097,1.05937,-1.16378,-1.72544,-0.94690,1.97427,-0.31627 +1.14203,1.05866,-1.16389,-1.72569,-0.94672,1.97480,-0.31676 +1.14310,1.05797,-1.16399,-1.72594,-0.94655,1.97533,-0.31724 +1.14417,1.05729,-1.16410,-1.72619,-0.94639,1.97585,-0.31771 +1.14523,1.05662,-1.16421,-1.72643,-0.94623,1.97636,-0.31817 +1.14630,1.05596,-1.16431,-1.72667,-0.94607,1.97686,-0.31863 +1.14737,1.05531,-1.16442,-1.72690,-0.94591,1.97735,-0.31908 +1.14843,1.05467,-1.16452,-1.72712,-0.94576,1.97784,-0.31953 +1.14950,1.05404,-1.16462,-1.72734,-0.94561,1.97832,-0.31996 +1.15057,1.05342,-1.16472,-1.72756,-0.94546,1.97879,-0.32039 +1.15163,1.05281,-1.16482,-1.72777,-0.94532,1.97925,-0.32082 +1.15270,1.05221,-1.16492,-1.72798,-0.94518,1.97971,-0.32123 +1.15376,1.05162,-1.16502,-1.72819,-0.94504,1.98016,-0.32164 +1.15483,1.05104,-1.16511,-1.72839,-0.94491,1.98060,-0.32205 +1.15590,1.05047,-1.16521,-1.72858,-0.94477,1.98104,-0.32244 +1.15696,1.04990,-1.16530,-1.72877,-0.94464,1.98146,-0.32284 +1.15803,1.04935,-1.16540,-1.72896,-0.94452,1.98189,-0.32322 +1.15910,1.04881,-1.16549,-1.72914,-0.94439,1.98230,-0.32360 +1.16016,1.04827,-1.16558,-1.72932,-0.94427,1.98271,-0.32397 +1.16123,1.04774,-1.16567,-1.72950,-0.94415,1.98311,-0.32434 +1.16229,1.04723,-1.16576,-1.72967,-0.94404,1.98351,-0.32470 +1.16336,1.04671,-1.16585,-1.72984,-0.94392,1.98390,-0.32506 +1.16443,1.04625,-1.16592,-1.73001,-0.94382,1.98425,-0.32539 +1.16549,1.04562,-1.16596,-1.73032,-0.94363,1.98473,-0.32582 +1.16656,1.04500,-1.16600,-1.73063,-0.94345,1.98520,-0.32626 +1.16763,1.04440,-1.16605,-1.73094,-0.94328,1.98566,-0.32668 +1.16869,1.04380,-1.16609,-1.73124,-0.94311,1.98611,-0.32710 +1.16976,1.04321,-1.16613,-1.73153,-0.94294,1.98656,-0.32751 +1.17083,1.04263,-1.16617,-1.73182,-0.94277,1.98700,-0.32791 +1.17189,1.04206,-1.16621,-1.73210,-0.94261,1.98744,-0.32831 +1.17296,1.04150,-1.16625,-1.73238,-0.94245,1.98786,-0.32871 +1.17402,1.04095,-1.16629,-1.73265,-0.94230,1.98828,-0.32909 +1.17509,1.04041,-1.16634,-1.73291,-0.94215,1.98870,-0.32947 +1.17616,1.03987,-1.16638,-1.73317,-0.94200,1.98910,-0.32985 +1.17722,1.03935,-1.16642,-1.73343,-0.94185,1.98950,-0.33022 +1.17829,1.03883,-1.16646,-1.73368,-0.94171,1.98990,-0.33058 +1.17936,1.03832,-1.16650,-1.73392,-0.94157,1.99029,-0.33094 +1.18042,1.03782,-1.16654,-1.73416,-0.94143,1.99067,-0.33129 +1.18149,1.03733,-1.16658,-1.73440,-0.94129,1.99104,-0.33164 +1.18255,1.03684,-1.16662,-1.73463,-0.94116,1.99141,-0.33198 +1.18362,1.03635,-1.16665,-1.73487,-0.94102,1.99179,-0.33232 +1.18469,1.03577,-1.16666,-1.73522,-0.94084,1.99223,-0.33273 +1.18575,1.03520,-1.16666,-1.73557,-0.94065,1.99267,-0.33313 +1.18682,1.03463,-1.16667,-1.73591,-0.94047,1.99310,-0.33353 +1.18789,1.03408,-1.16668,-1.73624,-0.94029,1.99352,-0.33392 +1.18895,1.03353,-1.16668,-1.73656,-0.94012,1.99393,-0.33431 +1.19002,1.03299,-1.16669,-1.73688,-0.93995,1.99434,-0.33469 +1.19109,1.03246,-1.16670,-1.73720,-0.93978,1.99475,-0.33506 +1.19215,1.03194,-1.16671,-1.73750,-0.93961,1.99514,-0.33543 +1.19322,1.03143,-1.16671,-1.73780,-0.93945,1.99553,-0.33579 +1.19428,1.03092,-1.16672,-1.73810,-0.93930,1.99592,-0.33615 +1.19535,1.03043,-1.16673,-1.73839,-0.93914,1.99630,-0.33650 +1.19642,1.02994,-1.16674,-1.73867,-0.93899,1.99667,-0.33684 +1.19748,1.02946,-1.16675,-1.73895,-0.93884,1.99703,-0.33718 +1.19855,1.02898,-1.16676,-1.73923,-0.93869,1.99739,-0.33752 +1.19962,1.02852,-1.16677,-1.73949,-0.93855,1.99775,-0.33785 +1.20068,1.02806,-1.16678,-1.73976,-0.93841,1.99810,-0.33817 +1.20175,1.02796,-1.16678,-1.73981,-0.93838,1.99817,-0.33824 +1.20282,1.02747,-1.16677,-1.74013,-0.93821,1.99854,-0.33858 +1.20388,1.02699,-1.16676,-1.74045,-0.93805,1.99891,-0.33893 +1.20495,1.02651,-1.16675,-1.74075,-0.93789,1.99928,-0.33926 +1.20601,1.02604,-1.16674,-1.74106,-0.93774,1.99963,-0.33960 +1.20708,1.02558,-1.16674,-1.74135,-0.93758,1.99998,-0.33992 +1.20815,1.02513,-1.16673,-1.74164,-0.93744,2.00033,-0.34024 +1.20921,1.02468,-1.16672,-1.74193,-0.93729,2.00067,-0.34056 +1.21028,1.02454,-1.16672,-1.74202,-0.93724,2.00077,-0.34066 +1.21135,1.02404,-1.16671,-1.74235,-0.93707,2.00116,-0.34102 +1.21241,1.02355,-1.16670,-1.74267,-0.93690,2.00153,-0.34137 +1.21348,1.02306,-1.16669,-1.74299,-0.93674,2.00190,-0.34171 +1.21454,1.02258,-1.16668,-1.74330,-0.93658,2.00227,-0.34205 +1.21561,1.02211,-1.16667,-1.74361,-0.93642,2.00263,-0.34239 +1.21668,1.02164,-1.16666,-1.74391,-0.93626,2.00298,-0.34272 +1.21774,1.02119,-1.16666,-1.74420,-0.93611,2.00333,-0.34304 +1.21881,1.02074,-1.16665,-1.74449,-0.93596,2.00367,-0.34336 +1.21988,1.02033,-1.16664,-1.74475,-0.93583,2.00398,-0.34365 +1.22094,1.01982,-1.16663,-1.74509,-0.93565,2.00436,-0.34401 +1.22201,1.01932,-1.16661,-1.74543,-0.93547,2.00474,-0.34437 +1.22308,1.01883,-1.16660,-1.74576,-0.93530,2.00512,-0.34472 +1.22414,1.01835,-1.16658,-1.74609,-0.93514,2.00548,-0.34506 +1.22521,1.01787,-1.16657,-1.74641,-0.93497,2.00584,-0.34540 +1.22627,1.01741,-1.16655,-1.74672,-0.93481,2.00620,-0.34573 +1.22734,1.01695,-1.16654,-1.74703,-0.93465,2.00655,-0.34606 +1.22841,1.01649,-1.16653,-1.74733,-0.93450,2.00689,-0.34638 +1.22947,1.01605,-1.16652,-1.74762,-0.93435,2.00723,-0.34670 +1.23054,1.01561,-1.16651,-1.74791,-0.93420,2.00757,-0.34701 +1.23161,1.01555,-1.16651,-1.74795,-0.93418,2.00761,-0.34705 +1.23267,1.01500,-1.16648,-1.74835,-0.93398,2.00802,-0.34744 +1.23374,1.01447,-1.16645,-1.74874,-0.93378,2.00843,-0.34783 +1.23480,1.01394,-1.16642,-1.74912,-0.93359,2.00883,-0.34821 +1.23587,1.01341,-1.16640,-1.74949,-0.93340,2.00923,-0.34858 +1.23694,1.01290,-1.16637,-1.74985,-0.93321,2.00962,-0.34894 +1.23800,1.01239,-1.16635,-1.75021,-0.93303,2.01000,-0.34930 +1.23907,1.01190,-1.16632,-1.75056,-0.93285,2.01038,-0.34966 +1.24014,1.01141,-1.16630,-1.75091,-0.93267,2.01075,-0.35001 +1.24120,1.01093,-1.16628,-1.75125,-0.93250,2.01111,-0.35035 +1.24227,1.01045,-1.16626,-1.75158,-0.93233,2.01147,-0.35069 +1.24334,1.00999,-1.16624,-1.75191,-0.93216,2.01182,-0.35103 +1.24440,1.00953,-1.16622,-1.75223,-0.93200,2.01217,-0.35135 +1.24547,1.00908,-1.16620,-1.75254,-0.93184,2.01251,-0.35168 +1.24653,1.00864,-1.16619,-1.75285,-0.93169,2.01285,-0.35199 +1.24760,1.00820,-1.16617,-1.75315,-0.93153,2.01318,-0.35231 +1.24867,1.00784,-1.16616,-1.75340,-0.93140,2.01345,-0.35256 +1.24973,1.00727,-1.16612,-1.75382,-0.93119,2.01388,-0.35297 +1.25080,1.00671,-1.16609,-1.75424,-0.93098,2.01430,-0.35337 +1.25187,1.00616,-1.16605,-1.75465,-0.93077,2.01472,-0.35376 +1.25293,1.00562,-1.16602,-1.75504,-0.93057,2.01513,-0.35415 +1.25400,1.00509,-1.16599,-1.75544,-0.93037,2.01553,-0.35453 +1.25507,1.00457,-1.16596,-1.75582,-0.93018,2.01592,-0.35491 +1.25613,1.00405,-1.16593,-1.75620,-0.92999,2.01631,-0.35528 +1.25720,1.00355,-1.16591,-1.75657,-0.92980,2.01670,-0.35564 +1.25826,1.00305,-1.16588,-1.75693,-0.92962,2.01707,-0.35600 +1.25933,1.00256,-1.16586,-1.75729,-0.92944,2.01744,-0.35635 +1.26040,1.00208,-1.16583,-1.75763,-0.92926,2.01781,-0.35670 +1.26146,1.00160,-1.16581,-1.75798,-0.92909,2.01817,-0.35704 +1.26253,1.00113,-1.16578,-1.75831,-0.92892,2.01852,-0.35738 +1.26360,1.00067,-1.16576,-1.75864,-0.92875,2.01887,-0.35771 +1.26466,1.00022,-1.16574,-1.75897,-0.92858,2.01921,-0.35803 +1.26573,0.99978,-1.16572,-1.75929,-0.92842,2.01955,-0.35835 +1.26679,0.99934,-1.16570,-1.75960,-0.92827,2.01988,-0.35867 +1.26786,0.99891,-1.16568,-1.75990,-0.92811,2.02021,-0.35898 +1.26893,0.99864,-1.16567,-1.76010,-0.92801,2.02041,-0.35917 +1.26999,0.99808,-1.16564,-1.76051,-0.92780,2.02083,-0.35958 +1.27106,0.99753,-1.16561,-1.76091,-0.92760,2.02124,-0.35997 +1.27213,0.99699,-1.16559,-1.76131,-0.92740,2.02165,-0.36036 +1.27319,0.99646,-1.16556,-1.76170,-0.92720,2.02205,-0.36074 +1.27426,0.99594,-1.16554,-1.76208,-0.92700,2.02244,-0.36112 +1.27533,0.99543,-1.16551,-1.76246,-0.92681,2.02283,-0.36149 +1.27639,0.99492,-1.16549,-1.76282,-0.92663,2.02321,-0.36186 +1.27746,0.99442,-1.16547,-1.76318,-0.92644,2.02359,-0.36222 +1.27852,0.99393,-1.16544,-1.76354,-0.92626,2.02396,-0.36257 +1.27959,0.99345,-1.16542,-1.76389,-0.92609,2.02432,-0.36292 +1.28066,0.99298,-1.16540,-1.76423,-0.92591,2.02468,-0.36326 +1.28172,0.99251,-1.16538,-1.76456,-0.92574,2.02503,-0.36360 +1.28279,0.99205,-1.16537,-1.76489,-0.92558,2.02538,-0.36393 +1.28386,0.99160,-1.16535,-1.76521,-0.92541,2.02572,-0.36426 +1.28492,0.99116,-1.16533,-1.76553,-0.92525,2.02605,-0.36458 +1.28599,0.99072,-1.16532,-1.76584,-0.92510,2.02638,-0.36490 +1.28705,0.99029,-1.16530,-1.76614,-0.92494,2.02671,-0.36521 +1.28812,0.99002,-1.16529,-1.76633,-0.92485,2.02691,-0.36541 +1.28919,0.98948,-1.16527,-1.76672,-0.92465,2.02732,-0.36580 +1.29025,0.98895,-1.16526,-1.76710,-0.92445,2.02771,-0.36618 +1.29132,0.98843,-1.16524,-1.76747,-0.92426,2.02811,-0.36656 +1.29239,0.98792,-1.16522,-1.76783,-0.92408,2.02849,-0.36693 +1.29345,0.98742,-1.16521,-1.76819,-0.92389,2.02887,-0.36730 +1.29452,0.98692,-1.16520,-1.76854,-0.92371,2.02924,-0.36766 +1.29559,0.98643,-1.16518,-1.76889,-0.92354,2.02961,-0.36801 +1.29665,0.98595,-1.16517,-1.76923,-0.92336,2.02997,-0.36836 +1.29772,0.98548,-1.16516,-1.76956,-0.92319,2.03033,-0.36870 +1.29878,0.98501,-1.16515,-1.76988,-0.92303,2.03068,-0.36904 +1.29985,0.98456,-1.16514,-1.77020,-0.92286,2.03103,-0.36938 +1.30092,0.98411,-1.16513,-1.77052,-0.92270,2.03136,-0.36970 +1.30198,0.98366,-1.16512,-1.77082,-0.92255,2.03170,-0.37003 +1.30305,0.98323,-1.16511,-1.77112,-0.92239,2.03203,-0.37034 +1.30412,0.98280,-1.16510,-1.77142,-0.92224,2.03235,-0.37066 +1.30518,0.98275,-1.16510,-1.77146,-0.92222,2.03239,-0.37069 +1.30625,0.98222,-1.16510,-1.77181,-0.92204,2.03279,-0.37108 +1.30731,0.98170,-1.16510,-1.77216,-0.92185,2.03318,-0.37146 +1.30838,0.98119,-1.16511,-1.77250,-0.92168,2.03356,-0.37183 +1.30945,0.98068,-1.16511,-1.77283,-0.92150,2.03394,-0.37220 +1.31051,0.98019,-1.16511,-1.77316,-0.92133,2.03431,-0.37256 +1.31158,0.97970,-1.16512,-1.77348,-0.92116,2.03468,-0.37292 +1.31265,0.97922,-1.16512,-1.77379,-0.92100,2.03504,-0.37327 +1.31371,0.97875,-1.16513,-1.77410,-0.92083,2.03539,-0.37361 +1.31478,0.97828,-1.16513,-1.77440,-0.92067,2.03574,-0.37395 +1.31585,0.97783,-1.16514,-1.77470,-0.92052,2.03609,-0.37429 +1.31691,0.97738,-1.16514,-1.77499,-0.92037,2.03642,-0.37462 +1.31798,0.97693,-1.16515,-1.77528,-0.92022,2.03676,-0.37494 +1.31904,0.97649,-1.16516,-1.77556,-0.92007,2.03709,-0.37526 +1.32011,0.97600,-1.16517,-1.77588,-0.91990,2.03746,-0.37562 +1.32118,0.97552,-1.16518,-1.77618,-0.91974,2.03782,-0.37597 +1.32224,0.97505,-1.16519,-1.77648,-0.91958,2.03817,-0.37632 +1.32331,0.97459,-1.16520,-1.77678,-0.91943,2.03852,-0.37666 +1.32438,0.97413,-1.16522,-1.77707,-0.91927,2.03887,-0.37700 +1.32544,0.97368,-1.16523,-1.77735,-0.91912,2.03920,-0.37733 +1.32651,0.97323,-1.16524,-1.77763,-0.91898,2.03954,-0.37765 +1.32758,0.97292,-1.16525,-1.77782,-0.91887,2.03977,-0.37788 +1.32864,0.97240,-1.16526,-1.77816,-0.91869,2.04017,-0.37827 +1.32971,0.97188,-1.16528,-1.77850,-0.91852,2.04055,-0.37865 +1.33077,0.97137,-1.16529,-1.77882,-0.91834,2.04093,-0.37902 +1.33184,0.97087,-1.16530,-1.77914,-0.91817,2.04130,-0.37939 +1.33291,0.97038,-1.16532,-1.77945,-0.91801,2.04167,-0.37975 +1.33397,0.96990,-1.16533,-1.77976,-0.91785,2.04203,-0.38010 +1.33504,0.96943,-1.16534,-1.78006,-0.91769,2.04239,-0.38045 +1.33611,0.96896,-1.16536,-1.78036,-0.91753,2.04274,-0.38080 +1.33717,0.96850,-1.16537,-1.78065,-0.91738,2.04309,-0.38113 +1.33824,0.96805,-1.16539,-1.78093,-0.91723,2.04342,-0.38147 +1.33930,0.96760,-1.16540,-1.78121,-0.91708,2.04376,-0.38180 +1.34037,0.96716,-1.16541,-1.78149,-0.91694,2.04409,-0.38212 +1.34144,0.96711,-1.16542,-1.78152,-0.91692,2.04413,-0.38216 +1.34250,0.96660,-1.16544,-1.78183,-0.91675,2.04451,-0.38253 +1.34357,0.96610,-1.16547,-1.78213,-0.91659,2.04488,-0.38290 +1.34464,0.96560,-1.16550,-1.78243,-0.91642,2.04525,-0.38327 +1.34570,0.96512,-1.16552,-1.78273,-0.91627,2.04562,-0.38363 +1.34677,0.96464,-1.16555,-1.78301,-0.91611,2.04598,-0.38398 +1.34784,0.96417,-1.16557,-1.78330,-0.91596,2.04633,-0.38433 +1.34890,0.96370,-1.16560,-1.78357,-0.91581,2.04668,-0.38467 +1.34997,0.96325,-1.16563,-1.78384,-0.91567,2.04702,-0.38501 +1.35103,0.96280,-1.16565,-1.78411,-0.91552,2.04735,-0.38534 +1.35210,0.96243,-1.16567,-1.78433,-0.91541,2.04763,-0.38561 +1.35317,0.96190,-1.16571,-1.78463,-0.91524,2.04802,-0.38600 +1.35423,0.96138,-1.16575,-1.78494,-0.91507,2.04841,-0.38639 +1.35530,0.96087,-1.16579,-1.78524,-0.91491,2.04879,-0.38677 +1.35637,0.96037,-1.16582,-1.78553,-0.91475,2.04917,-0.38714 +1.35743,0.95987,-1.16586,-1.78581,-0.91459,2.04954,-0.38751 +1.35850,0.95938,-1.16590,-1.78609,-0.91444,2.04991,-0.38787 +1.35956,0.95890,-1.16593,-1.78637,-0.91429,2.05026,-0.38823 +1.36063,0.95843,-1.16597,-1.78664,-0.91414,2.05062,-0.38858 +1.36170,0.95796,-1.16601,-1.78690,-0.91400,2.05097,-0.38892 +1.36276,0.95751,-1.16604,-1.78716,-0.91385,2.05131,-0.38926 +1.36383,0.95705,-1.16608,-1.78742,-0.91372,2.05164,-0.38960 +1.36490,0.95682,-1.16610,-1.78754,-0.91365,2.05182,-0.38977 +1.36596,0.95631,-1.16617,-1.78780,-0.91349,2.05220,-0.39015 +1.36703,0.95580,-1.16623,-1.78806,-0.91335,2.05258,-0.39053 +1.36810,0.95530,-1.16630,-1.78831,-0.91320,2.05295,-0.39090 +1.36916,0.95481,-1.16636,-1.78855,-0.91306,2.05332,-0.39127 +1.37023,0.95433,-1.16642,-1.78879,-0.91292,2.05368,-0.39163 +1.37129,0.95385,-1.16648,-1.78902,-0.91279,2.05403,-0.39198 +1.37236,0.95338,-1.16655,-1.78925,-0.91265,2.05438,-0.39233 +1.37343,0.95292,-1.16661,-1.78948,-0.91252,2.05473,-0.39267 +1.37449,0.95282,-1.16662,-1.78953,-0.91250,2.05480,-0.39275 +1.37556,0.95228,-1.16672,-1.78976,-0.91235,2.05521,-0.39316 +1.37663,0.95174,-1.16682,-1.79000,-0.91220,2.05561,-0.39356 +1.37769,0.95121,-1.16691,-1.79023,-0.91206,2.05600,-0.39395 +1.37876,0.95068,-1.16700,-1.79045,-0.91192,2.05639,-0.39434 +1.37983,0.95017,-1.16709,-1.79067,-0.91179,2.05677,-0.39473 +1.38089,0.94967,-1.16719,-1.79089,-0.91165,2.05715,-0.39510 +1.38196,0.94917,-1.16728,-1.79110,-0.91152,2.05752,-0.39547 +1.38302,0.94868,-1.16736,-1.79130,-0.91139,2.05789,-0.39584 +1.38409,0.94820,-1.16745,-1.79151,-0.91127,2.05824,-0.39620 +1.38516,0.94772,-1.16754,-1.79170,-0.91115,2.05860,-0.39655 +1.38622,0.94744,-1.16759,-1.79182,-0.91107,2.05881,-0.39677 +1.38729,0.94690,-1.16772,-1.79201,-0.91095,2.05921,-0.39717 +1.38836,0.94637,-1.16785,-1.79219,-0.91082,2.05960,-0.39757 +1.38942,0.94585,-1.16797,-1.79237,-0.91070,2.05999,-0.39796 +1.39049,0.94533,-1.16809,-1.79254,-0.91058,2.06037,-0.39834 +1.39155,0.94483,-1.16821,-1.79272,-0.91046,2.06075,-0.39872 +1.39262,0.94433,-1.16833,-1.79288,-0.91034,2.06112,-0.39909 +1.39369,0.94385,-1.16845,-1.79305,-0.91023,2.06148,-0.39946 +1.39475,0.94337,-1.16856,-1.79321,-0.91012,2.06184,-0.39982 +1.39582,0.94326,-1.16860,-1.79324,-0.91010,2.06192,-0.39990 +1.39689,0.94268,-1.16880,-1.79334,-0.90999,2.06235,-0.40034 +1.39795,0.94211,-1.16900,-1.79344,-0.90989,2.06277,-0.40076 +1.39902,0.94155,-1.16920,-1.79354,-0.90978,2.06319,-0.40118 +1.40009,0.94100,-1.16939,-1.79364,-0.90968,2.06359,-0.40160 +1.40115,0.94045,-1.16959,-1.79373,-0.90959,2.06400,-0.40201 +1.40222,0.93992,-1.16978,-1.79382,-0.90949,2.06439,-0.40241 +1.40328,0.93939,-1.16996,-1.79391,-0.90940,2.06478,-0.40281 +1.40435,0.93888,-1.17015,-1.79400,-0.90931,2.06517,-0.40319 +1.40542,0.93837,-1.17033,-1.79409,-0.90922,2.06555,-0.40358 +1.40648,0.93787,-1.17051,-1.79417,-0.90913,2.06592,-0.40396 +1.40755,0.93746,-1.17065,-1.79423,-0.90907,2.06622,-0.40426 +1.40862,0.93690,-1.17091,-1.79425,-0.90899,2.06664,-0.40469 +1.40968,0.93634,-1.17115,-1.79428,-0.90891,2.06705,-0.40511 +1.41075,0.93579,-1.17140,-1.79430,-0.90884,2.06745,-0.40552 +1.41181,0.93525,-1.17164,-1.79432,-0.90877,2.06785,-0.40593 +1.41288,0.93472,-1.17187,-1.79434,-0.90870,2.06825,-0.40633 +1.41395,0.93420,-1.17211,-1.79435,-0.90863,2.06863,-0.40672 +1.41501,0.93369,-1.17234,-1.79437,-0.90857,2.06901,-0.40711 +1.41608,0.93318,-1.17256,-1.79439,-0.90850,2.06939,-0.40749 +1.41715,0.93268,-1.17279,-1.79439,-0.90845,2.06976,-0.40787 +1.41821,0.93213,-1.17311,-1.79431,-0.90841,2.07017,-0.40829 +1.41928,0.93159,-1.17342,-1.79423,-0.90837,2.07057,-0.40870 +1.42035,0.93105,-1.17372,-1.79415,-0.90833,2.07097,-0.40911 +1.42141,0.93053,-1.17402,-1.79407,-0.90830,2.07135,-0.40950 +1.42248,0.93001,-1.17431,-1.79399,-0.90827,2.07174,-0.40990 +1.42354,0.92951,-1.17460,-1.79391,-0.90824,2.07211,-0.41028 +1.42461,0.92901,-1.17489,-1.79384,-0.90821,2.07248,-0.41066 +1.42568,0.92851,-1.17517,-1.79376,-0.90818,2.07285,-0.41103 +1.42674,0.92836,-1.17526,-1.79373,-0.90817,2.07296,-0.41115 +1.42781,0.92784,-1.17561,-1.79358,-0.90816,2.07335,-0.41155 +1.42888,0.92732,-1.17595,-1.79344,-0.90815,2.07373,-0.41194 +1.42994,0.92681,-1.17628,-1.79329,-0.90814,2.07411,-0.41233 +1.43101,0.92631,-1.17661,-1.79315,-0.90813,2.07448,-0.41271 +1.43208,0.92581,-1.17694,-1.79301,-0.90813,2.07485,-0.41309 +1.43314,0.92533,-1.17725,-1.79287,-0.90812,2.07521,-0.41346 +1.43421,0.92485,-1.17757,-1.79273,-0.90811,2.07556,-0.41382 +1.43527,0.92470,-1.17767,-1.79268,-0.90812,2.07567,-0.41394 +1.43634,0.92418,-1.17810,-1.79240,-0.90815,2.07605,-0.41433 +1.43741,0.92368,-1.17852,-1.79213,-0.90818,2.07643,-0.41472 +1.43847,0.92317,-1.17893,-1.79187,-0.90822,2.07680,-0.41510 +1.43954,0.92268,-1.17933,-1.79161,-0.90825,2.07716,-0.41548 +1.44061,0.92220,-1.17973,-1.79135,-0.90829,2.07752,-0.41585 +1.44167,0.92172,-1.18012,-1.79109,-0.90832,2.07788,-0.41621 +1.44274,0.92125,-1.18051,-1.79084,-0.90836,2.07822,-0.41657 +1.44380,0.92079,-1.18089,-1.79059,-0.90839,2.07857,-0.41693 +1.44487,0.92033,-1.18126,-1.79035,-0.90843,2.07890,-0.41727 +1.44594,0.91989,-1.18162,-1.79011,-0.90847,2.07923,-0.41762 +1.44700,0.91944,-1.18198,-1.78987,-0.90850,2.07956,-0.41795 +1.44807,0.91935,-1.18207,-1.78981,-0.90852,2.07963,-0.41803 +1.44914,0.91885,-1.18259,-1.78938,-0.90861,2.08000,-0.41841 +1.45020,0.91836,-1.18310,-1.78895,-0.90870,2.08036,-0.41878 +1.45127,0.91788,-1.18360,-1.78854,-0.90879,2.08072,-0.41915 +1.45234,0.91741,-1.18409,-1.78812,-0.90888,2.08107,-0.41952 +1.45340,0.91694,-1.18458,-1.78772,-0.90897,2.08141,-0.41987 +1.45447,0.91648,-1.18505,-1.78732,-0.90905,2.08175,-0.42023 +1.45553,0.91603,-1.18552,-1.78693,-0.90914,2.08208,-0.42057 +1.45660,0.91559,-1.18598,-1.78655,-0.90923,2.08241,-0.42091 +1.45767,0.91515,-1.18643,-1.78617,-0.90932,2.08274,-0.42125 +1.45873,0.91472,-1.18687,-1.78579,-0.90940,2.08305,-0.42158 +1.45980,0.91430,-1.18731,-1.78542,-0.90949,2.08337,-0.42191 +1.46087,0.91388,-1.18774,-1.78506,-0.90957,2.08368,-0.42223 +1.46193,0.91347,-1.18816,-1.78471,-0.90966,2.08398,-0.42255 +1.46300,0.91307,-1.18858,-1.78435,-0.90974,2.08428,-0.42286 +1.46406,0.91267,-1.18898,-1.78401,-0.90983,2.08457,-0.42316 +1.46513,0.91228,-1.18938,-1.78367,-0.90991,2.08486,-0.42347 +1.46620,0.91190,-1.18978,-1.78333,-0.90999,2.08515,-0.42376 +1.46726,0.91167,-1.19002,-1.78312,-0.91005,2.08532,-0.42394 +1.46833,0.91126,-1.19054,-1.78262,-0.91018,2.08562,-0.42426 +1.46940,0.91085,-1.19104,-1.78214,-0.91031,2.08592,-0.42457 +1.47046,0.91046,-1.19154,-1.78166,-0.91044,2.08621,-0.42488 +1.47153,0.91006,-1.19202,-1.78119,-0.91057,2.08650,-0.42518 +1.47260,0.90968,-1.19250,-1.78073,-0.91069,2.08679,-0.42548 +1.47366,0.90930,-1.19297,-1.78027,-0.91082,2.08707,-0.42577 +1.47473,0.90893,-1.19343,-1.77983,-0.91094,2.08734,-0.42606 +1.47579,0.90856,-1.19389,-1.77938,-0.91106,2.08762,-0.42635 +1.47686,0.90820,-1.19433,-1.77895,-0.91118,2.08788,-0.42663 +1.47793,0.90785,-1.19477,-1.77852,-0.91131,2.08815,-0.42690 +1.47899,0.90750,-1.19520,-1.77810,-0.91142,2.08841,-0.42717 +1.48006,0.90715,-1.19563,-1.77769,-0.91154,2.08866,-0.42744 +1.48113,0.90681,-1.19604,-1.77728,-0.91166,2.08891,-0.42771 +1.48219,0.90648,-1.19645,-1.77688,-0.91178,2.08916,-0.42797 +1.48326,0.90615,-1.19689,-1.77644,-0.91191,2.08940,-0.42822 +1.48433,0.90584,-1.19759,-1.77558,-0.91218,2.08964,-0.42847 +1.48539,0.90552,-1.19829,-1.77473,-0.91244,2.08987,-0.42871 +1.48646,0.90521,-1.19897,-1.77389,-0.91271,2.09010,-0.42895 +1.48752,0.90491,-1.19965,-1.77307,-0.91297,2.09033,-0.42919 +1.48859,0.90461,-1.20031,-1.77226,-0.91322,2.09055,-0.42942 +1.48966,0.90431,-1.20096,-1.77147,-0.91348,2.09077,-0.42965 +1.49072,0.90402,-1.20159,-1.77068,-0.91373,2.09099,-0.42988 +1.49179,0.90374,-1.20222,-1.76991,-0.91398,2.09120,-0.43010 +1.49286,0.90345,-1.20284,-1.76916,-0.91422,2.09141,-0.43033 +1.49392,0.90318,-1.20344,-1.76841,-0.91446,2.09162,-0.43054 +1.49499,0.90290,-1.20404,-1.76768,-0.91470,2.09182,-0.43076 +1.49605,0.90263,-1.20462,-1.76696,-0.91494,2.09202,-0.43097 +1.49712,0.90237,-1.20519,-1.76625,-0.91517,2.09222,-0.43118 +1.49819,0.90211,-1.20576,-1.76555,-0.91540,2.09242,-0.43138 +1.49925,0.90185,-1.20631,-1.76487,-0.91563,2.09261,-0.43158 +1.50032,0.90159,-1.20686,-1.76420,-0.91585,2.09280,-0.43178 +1.50139,0.90135,-1.20739,-1.76353,-0.91608,2.09298,-0.43198 +1.50245,0.90110,-1.20792,-1.76288,-0.91629,2.09317,-0.43217 +1.50352,0.90086,-1.20843,-1.76224,-0.91651,2.09335,-0.43236 +1.50459,0.90062,-1.20894,-1.76161,-0.91672,2.09353,-0.43255 +1.50565,0.90038,-1.20944,-1.76099,-0.91693,2.09370,-0.43274 +1.50672,0.90015,-1.20993,-1.76038,-0.91714,2.09387,-0.43292 +1.50778,0.89992,-1.21041,-1.75978,-0.91735,2.09405,-0.43310 +1.50885,0.89970,-1.21089,-1.75919,-0.91755,2.09421,-0.43328 +1.50992,0.89948,-1.21135,-1.75860,-0.91775,2.09438,-0.43345 +1.51098,0.89926,-1.21181,-1.75803,-0.91795,2.09454,-0.43363 +1.51205,0.89904,-1.21226,-1.75747,-0.91814,2.09470,-0.43380 +1.51312,0.89883,-1.21270,-1.75692,-0.91833,2.09486,-0.43397 +1.51418,0.89862,-1.21313,-1.75637,-0.91852,2.09502,-0.43413 +1.51525,0.89842,-1.21356,-1.75584,-0.91871,2.09517,-0.43429 +1.51631,0.89821,-1.21398,-1.75531,-0.91890,2.09532,-0.43445 +1.51738,0.89801,-1.21439,-1.75480,-0.91908,2.09547,-0.43461 +1.51845,0.89782,-1.21479,-1.75429,-0.91926,2.09562,-0.43477 +1.51951,0.89762,-1.21519,-1.75379,-0.91944,2.09577,-0.43492 +1.52058,0.89755,-1.21536,-1.75357,-0.91952,2.09582,-0.43498 +1.52165,0.89735,-1.21591,-1.75284,-0.91977,2.09597,-0.43514 +1.52271,0.89716,-1.21644,-1.75213,-0.92002,2.09611,-0.43529 +1.52378,0.89698,-1.21697,-1.75143,-0.92026,2.09625,-0.43544 +1.52485,0.89679,-1.21748,-1.75074,-0.92051,2.09639,-0.43558 +1.52591,0.89661,-1.21799,-1.75006,-0.92075,2.09652,-0.43573 +1.52698,0.89643,-1.21849,-1.74940,-0.92098,2.09666,-0.43587 +1.52804,0.89626,-1.21898,-1.74874,-0.92122,2.09679,-0.43601 +1.52911,0.89608,-1.21946,-1.74810,-0.92145,2.09692,-0.43615 +1.53018,0.89591,-1.21993,-1.74746,-0.92167,2.09705,-0.43629 +1.53124,0.89574,-1.22040,-1.74684,-0.92190,2.09718,-0.43642 +1.53231,0.89557,-1.22085,-1.74623,-0.92212,2.09730,-0.43655 +1.53338,0.89541,-1.22130,-1.74562,-0.92234,2.09743,-0.43669 +1.53444,0.89525,-1.22174,-1.74503,-0.92255,2.09755,-0.43682 +1.53551,0.89509,-1.22218,-1.74445,-0.92276,2.09767,-0.43694 +1.53657,0.89493,-1.22260,-1.74387,-0.92297,2.09779,-0.43707 +1.53764,0.89478,-1.22302,-1.74331,-0.92318,2.09790,-0.43719 +1.53871,0.89462,-1.22343,-1.74276,-0.92338,2.09802,-0.43732 +1.53977,0.89447,-1.22383,-1.74221,-0.92358,2.09813,-0.43744 +1.54084,0.89432,-1.22423,-1.74167,-0.92378,2.09824,-0.43756 +1.54191,0.89418,-1.22462,-1.74115,-0.92397,2.09835,-0.43768 +1.54297,0.89405,-1.22498,-1.74065,-0.92416,2.09845,-0.43778 +1.54404,0.89391,-1.22551,-1.73990,-0.92443,2.09855,-0.43789 +1.54511,0.89378,-1.22604,-1.73915,-0.92470,2.09865,-0.43799 +1.54617,0.89365,-1.22655,-1.73842,-0.92497,2.09875,-0.43809 +1.54724,0.89353,-1.22706,-1.73770,-0.92523,2.09884,-0.43820 +1.54830,0.89340,-1.22755,-1.73699,-0.92549,2.09894,-0.43830 +1.54937,0.89328,-1.22804,-1.73630,-0.92575,2.09903,-0.43840 +1.55044,0.89316,-1.22852,-1.73561,-0.92600,2.09912,-0.43850 +1.55150,0.89303,-1.22899,-1.73494,-0.92625,2.09922,-0.43859 +1.55257,0.89292,-1.22946,-1.73428,-0.92649,2.09931,-0.43869 +1.55364,0.89280,-1.22991,-1.73363,-0.92674,2.09940,-0.43879 +1.55470,0.89268,-1.23036,-1.73298,-0.92698,2.09948,-0.43888 +1.55577,0.89257,-1.23080,-1.73236,-0.92721,2.09957,-0.43897 +1.55684,0.89245,-1.23123,-1.73174,-0.92744,2.09966,-0.43907 +1.55790,0.89234,-1.23165,-1.73113,-0.92767,2.09974,-0.43916 +1.55897,0.89223,-1.23207,-1.73053,-0.92790,2.09982,-0.43925 +1.56003,0.89212,-1.23248,-1.72994,-0.92812,2.09991,-0.43933 +1.56110,0.89201,-1.23288,-1.72936,-0.92834,2.09999,-0.43942 +1.56217,0.89191,-1.23328,-1.72879,-0.92856,2.10007,-0.43951 +1.56323,0.89180,-1.23367,-1.72823,-0.92877,2.10015,-0.43959 +1.56430,0.89170,-1.23405,-1.72768,-0.92898,2.10023,-0.43968 +1.56537,0.89160,-1.23442,-1.72714,-0.92919,2.10030,-0.43976 +1.56643,0.89153,-1.23471,-1.72673,-0.92934,2.10035,-0.43981 +1.56750,0.89148,-1.23529,-1.72583,-0.92968,2.10039,-0.43986 +1.56856,0.89144,-1.23586,-1.72494,-0.93001,2.10043,-0.43990 +1.56963,0.89139,-1.23642,-1.72407,-0.93034,2.10047,-0.43994 +1.57070,0.89134,-1.23697,-1.72321,-0.93066,2.10051,-0.43998 +1.57176,0.89129,-1.23751,-1.72237,-0.93098,2.10055,-0.44002 +1.57283,0.89125,-1.23805,-1.72154,-0.93129,2.10059,-0.44006 +1.57390,0.89120,-1.23857,-1.72072,-0.93160,2.10062,-0.44010 +1.57496,0.89115,-1.23908,-1.71992,-0.93191,2.10066,-0.44014 +1.57603,0.89110,-1.23959,-1.71914,-0.93221,2.10070,-0.44018 +1.57710,0.89106,-1.24009,-1.71836,-0.93250,2.10074,-0.44022 +1.57816,0.89101,-1.24057,-1.71760,-0.93280,2.10077,-0.44026 +1.57923,0.89096,-1.24105,-1.71685,-0.93308,2.10081,-0.44030 +1.58029,0.89092,-1.24152,-1.71611,-0.93337,2.10085,-0.44034 +1.58136,0.89087,-1.24199,-1.71539,-0.93365,2.10088,-0.44038 +1.58243,0.89083,-1.24244,-1.71468,-0.93392,2.10092,-0.44042 +1.58349,0.89078,-1.24289,-1.71398,-0.93419,2.10096,-0.44045 +1.58456,0.89074,-1.24333,-1.71329,-0.93446,2.10099,-0.44049 +1.58563,0.89069,-1.24376,-1.71261,-0.93472,2.10103,-0.44053 +1.58669,0.89065,-1.24419,-1.71194,-0.93498,2.10106,-0.44057 +1.58776,0.89061,-1.24460,-1.71129,-0.93524,2.10110,-0.44061 +1.58882,0.89056,-1.24501,-1.71064,-0.93549,2.10113,-0.44064 +1.58989,0.89052,-1.24542,-1.71001,-0.93574,2.10117,-0.44068 +1.59096,0.89047,-1.24581,-1.70939,-0.93599,2.10120,-0.44072 +1.59202,0.89043,-1.24620,-1.70877,-0.93623,2.10124,-0.44076 +1.59309,0.89039,-1.24658,-1.70817,-0.93647,2.10127,-0.44079 +1.59416,0.89035,-1.24696,-1.70758,-0.93670,2.10130,-0.44083 +1.59522,0.89030,-1.24733,-1.70700,-0.93693,2.10134,-0.44087 +1.59629,0.89026,-1.24769,-1.70643,-0.93716,2.10137,-0.44090 +1.59736,0.89022,-1.24805,-1.70586,-0.93738,2.10140,-0.44094 +1.59842,0.89018,-1.24840,-1.70531,-0.93760,2.10143,-0.44097 +1.59949,0.89017,-1.24851,-1.70512,-0.93768,2.10144,-0.44098 +1.60055,0.89016,-1.24897,-1.70438,-0.93797,2.10145,-0.44099 +1.60162,0.89015,-1.24942,-1.70365,-0.93826,2.10146,-0.44100 +1.60269,0.89014,-1.24986,-1.70293,-0.93854,2.10147,-0.44102 +1.60375,0.89013,-1.25029,-1.70222,-0.93882,2.10148,-0.44103 +1.60482,0.89012,-1.25072,-1.70153,-0.93909,2.10149,-0.44104 +1.60589,0.89011,-1.25114,-1.70084,-0.93936,2.10150,-0.44105 +1.60695,0.89010,-1.25155,-1.70017,-0.93963,2.10152,-0.44106 +1.60802,0.89009,-1.25196,-1.69951,-0.93989,2.10153,-0.44108 +1.60909,0.89008,-1.25235,-1.69886,-0.94015,2.10154,-0.44109 +1.61015,0.89006,-1.25274,-1.69822,-0.94040,2.10155,-0.44110 +1.61122,0.89005,-1.25313,-1.69759,-0.94065,2.10156,-0.44111 +1.61228,0.89004,-1.25350,-1.69697,-0.94090,2.10157,-0.44113 +1.61335,0.89003,-1.25388,-1.69637,-0.94114,2.10158,-0.44114 +1.61442,0.89001,-1.25424,-1.69577,-0.94138,2.10160,-0.44115 +1.61548,0.89000,-1.25460,-1.69518,-0.94162,2.10161,-0.44117 +1.61655,0.88999,-1.25495,-1.69460,-0.94185,2.10162,-0.44118 +1.61762,0.88997,-1.25530,-1.69403,-0.94208,2.10163,-0.44120 +1.61868,0.88996,-1.25564,-1.69348,-0.94231,2.10165,-0.44121 +1.61975,0.88996,-1.25582,-1.69317,-0.94243,2.10165,-0.44121 +1.62081,0.88998,-1.25629,-1.69238,-0.94274,2.10163,-0.44119 +1.62188,0.89001,-1.25675,-1.69160,-0.94305,2.10161,-0.44118 +1.62295,0.89004,-1.25720,-1.69084,-0.94336,2.10160,-0.44116 +1.62401,0.89006,-1.25764,-1.69008,-0.94365,2.10158,-0.44114 +1.62508,0.89009,-1.25808,-1.68934,-0.94395,2.10157,-0.44113 +1.62615,0.89011,-1.25851,-1.68862,-0.94424,2.10155,-0.44111 +1.62721,0.89013,-1.25893,-1.68790,-0.94453,2.10154,-0.44110 +1.62828,0.89016,-1.25934,-1.68720,-0.94481,2.10153,-0.44108 +1.62935,0.89018,-1.25975,-1.68650,-0.94509,2.10151,-0.44107 +1.63041,0.89020,-1.26015,-1.68582,-0.94536,2.10150,-0.44106 +1.63148,0.89022,-1.26055,-1.68515,-0.94563,2.10149,-0.44105 +1.63254,0.89023,-1.26093,-1.68449,-0.94589,2.10148,-0.44103 +1.63361,0.89025,-1.26131,-1.68385,-0.94616,2.10147,-0.44102 +1.63468,0.89027,-1.26169,-1.68321,-0.94641,2.10146,-0.44101 +1.63574,0.89028,-1.26205,-1.68258,-0.94667,2.10145,-0.44100 +1.63681,0.89030,-1.26242,-1.68197,-0.94692,2.10144,-0.44100 +1.63788,0.89031,-1.26277,-1.68136,-0.94716,2.10143,-0.44099 +1.63894,0.89033,-1.26312,-1.68077,-0.94741,2.10142,-0.44098 +1.64001,0.89034,-1.26346,-1.68018,-0.94765,2.10142,-0.44097 +1.64107,0.89036,-1.26380,-1.67961,-0.94788,2.10141,-0.44097 +1.64214,0.89037,-1.26413,-1.67904,-0.94811,2.10140,-0.44096 +1.64321,0.89038,-1.26443,-1.67853,-0.94832,2.10139,-0.44095 +1.64427,0.89041,-1.26484,-1.67782,-0.94861,2.10137,-0.44093 +1.64534,0.89044,-1.26525,-1.67712,-0.94889,2.10135,-0.44091 +1.64641,0.89047,-1.26565,-1.67644,-0.94916,2.10134,-0.44089 +1.64747,0.89050,-1.26604,-1.67577,-0.94943,2.10132,-0.44087 +1.64854,0.89052,-1.26642,-1.67511,-0.94970,2.10130,-0.44085 +1.64961,0.89055,-1.26680,-1.67446,-0.94996,2.10128,-0.44084 +1.65067,0.89058,-1.26717,-1.67382,-0.95022,2.10127,-0.44082 +1.65174,0.89060,-1.26754,-1.67319,-0.95048,2.10125,-0.44080 +1.65280,0.89062,-1.26790,-1.67257,-0.95073,2.10124,-0.44079 +1.65387,0.89065,-1.26825,-1.67196,-0.95098,2.10122,-0.44077 +1.65494,0.89067,-1.26860,-1.67136,-0.95122,2.10121,-0.44076 +1.65600,0.89069,-1.26894,-1.67078,-0.95146,2.10119,-0.44075 +1.65707,0.89071,-1.26927,-1.67020,-0.95170,2.10118,-0.44073 +1.65814,0.89073,-1.26960,-1.66963,-0.95193,2.10117,-0.44072 +1.65920,0.89075,-1.26992,-1.66907,-0.95216,2.10116,-0.44071 +1.66027,0.89075,-1.26997,-1.66900,-0.95219,2.10115,-0.44071 +1.66134,0.89078,-1.27041,-1.66825,-0.95249,2.10113,-0.44069 +1.66240,0.89081,-1.27084,-1.66751,-0.95279,2.10111,-0.44067 +1.66347,0.89084,-1.27126,-1.66679,-0.95307,2.10110,-0.44065 +1.66453,0.89087,-1.27168,-1.66608,-0.95336,2.10108,-0.44063 +1.66560,0.89089,-1.27209,-1.66538,-0.95364,2.10106,-0.44061 +1.66667,0.89092,-1.27249,-1.66469,-0.95392,2.10104,-0.44059 +1.66773,0.89094,-1.27288,-1.66402,-0.95419,2.10103,-0.44058 +1.66880,0.89097,-1.27327,-1.66335,-0.95446,2.10101,-0.44056 +1.66987,0.89099,-1.27365,-1.66270,-0.95472,2.10100,-0.44055 +1.67093,0.89101,-1.27403,-1.66205,-0.95498,2.10098,-0.44053 +1.67200,0.89103,-1.27440,-1.66142,-0.95524,2.10097,-0.44052 +1.67306,0.89106,-1.27476,-1.66080,-0.95549,2.10096,-0.44050 +1.67413,0.89107,-1.27512,-1.66019,-0.95574,2.10094,-0.44049 +1.67520,0.89109,-1.27547,-1.65959,-0.95598,2.10093,-0.44048 +1.67626,0.89111,-1.27581,-1.65900,-0.95623,2.10092,-0.44047 +1.67733,0.89113,-1.27615,-1.65842,-0.95646,2.10091,-0.44046 +1.67840,0.89115,-1.27648,-1.65785,-0.95670,2.10090,-0.44045 +1.67946,0.89116,-1.27681,-1.65728,-0.95693,2.10089,-0.44044 +1.68053,0.89117,-1.27688,-1.65715,-0.95698,2.10088,-0.44043 +1.68160,0.89120,-1.27733,-1.65639,-0.95729,2.10086,-0.44041 +1.68266,0.89123,-1.27777,-1.65563,-0.95759,2.10084,-0.44039 +1.68373,0.89126,-1.27820,-1.65490,-0.95788,2.10082,-0.44037 +1.68479,0.89129,-1.27863,-1.65417,-0.95818,2.10080,-0.44035 +1.68586,0.89132,-1.27904,-1.65345,-0.95846,2.10078,-0.44032 +1.68693,0.89135,-1.27945,-1.65275,-0.95875,2.10076,-0.44031 +1.68799,0.89138,-1.27986,-1.65206,-0.95902,2.10074,-0.44029 +1.68906,0.89141,-1.28025,-1.65138,-0.95930,2.10072,-0.44027 +1.69013,0.89143,-1.28064,-1.65071,-0.95957,2.10071,-0.44025 +1.69119,0.89146,-1.28102,-1.65005,-0.95984,2.10069,-0.44024 +1.69226,0.89148,-1.28140,-1.64941,-0.96010,2.10067,-0.44022 +1.69332,0.89150,-1.28177,-1.64877,-0.96036,2.10066,-0.44020 +1.69439,0.89152,-1.28213,-1.64815,-0.96061,2.10064,-0.44019 +1.69546,0.89154,-1.28249,-1.64753,-0.96086,2.10063,-0.44018 +1.69652,0.89157,-1.28284,-1.64693,-0.96111,2.10062,-0.44016 +1.69759,0.89158,-1.28319,-1.64633,-0.96135,2.10060,-0.44015 +1.69866,0.89160,-1.28352,-1.64575,-0.96159,2.10059,-0.44014 +1.69972,0.89162,-1.28386,-1.64517,-0.96183,2.10058,-0.44013 +1.70079,0.89164,-1.28418,-1.64461,-0.96206,2.10057,-0.44012 +1.70186,0.89165,-1.28430,-1.64442,-0.96214,2.10056,-0.44011 +1.70292,0.89169,-1.28475,-1.64364,-0.96245,2.10054,-0.44008 +1.70399,0.89173,-1.28519,-1.64287,-0.96276,2.10051,-0.44005 +1.70505,0.89176,-1.28563,-1.64211,-0.96307,2.10048,-0.44003 +1.70612,0.89180,-1.28606,-1.64137,-0.96336,2.10046,-0.44000 +1.70719,0.89184,-1.28648,-1.64064,-0.96366,2.10043,-0.43998 +1.70825,0.89187,-1.28690,-1.63992,-0.96395,2.10041,-0.43995 +1.70932,0.89190,-1.28731,-1.63921,-0.96424,2.10039,-0.43993 +1.71039,0.89194,-1.28771,-1.63852,-0.96452,2.10037,-0.43991 +1.71145,0.89197,-1.28810,-1.63783,-0.96479,2.10034,-0.43988 +1.71252,0.89200,-1.28849,-1.63716,-0.96507,2.10032,-0.43986 +1.71358,0.89203,-1.28887,-1.63650,-0.96534,2.10030,-0.43984 +1.71465,0.89206,-1.28925,-1.63585,-0.96560,2.10028,-0.43982 +1.71572,0.89208,-1.28962,-1.63521,-0.96587,2.10027,-0.43980 +1.71678,0.89211,-1.28998,-1.63458,-0.96612,2.10025,-0.43979 +1.71785,0.89214,-1.29034,-1.63396,-0.96638,2.10023,-0.43977 +1.71892,0.89216,-1.29068,-1.63336,-0.96663,2.10021,-0.43975 +1.71998,0.89218,-1.29103,-1.63276,-0.96687,2.10020,-0.43974 +1.72105,0.89221,-1.29137,-1.63217,-0.96712,2.10018,-0.43972 +1.72212,0.89223,-1.29170,-1.63159,-0.96735,2.10017,-0.43971 +1.72318,0.89225,-1.29203,-1.63102,-0.96759,2.10015,-0.43969 +1.72425,0.89226,-1.29216,-1.63079,-0.96769,2.10015,-0.43969 +1.72531,0.89229,-1.29251,-1.63017,-0.96794,2.10012,-0.43966 +1.72638,0.89232,-1.29286,-1.62957,-0.96819,2.10010,-0.43964 +1.72745,0.89235,-1.29320,-1.62897,-0.96844,2.10008,-0.43962 +1.72851,0.89238,-1.29354,-1.62838,-0.96868,2.10006,-0.43960 +1.72958,0.89241,-1.29387,-1.62780,-0.96892,2.10005,-0.43959 +1.73065,0.89243,-1.29419,-1.62723,-0.96916,2.10003,-0.43957 +1.73171,0.89244,-1.29432,-1.62700,-0.96925,2.10002,-0.43956 +1.73278,0.89248,-1.29464,-1.62644,-0.96949,2.10000,-0.43954 +1.73385,0.89249,-1.29480,-1.62615,-0.96961,2.09999,-0.43953 +1.73491,0.89253,-1.29512,-1.62558,-0.96984,2.09996,-0.43950 +1.73598,0.89258,-1.29525,-1.62533,-0.96996,2.09993,-0.43946 +1.73704,0.89295,-1.29523,-1.62501,-0.97015,2.09966,-0.43918 +1.73811,0.89332,-1.29521,-1.62470,-0.97034,2.09940,-0.43890 +1.73918,0.89358,-1.29520,-1.62449,-0.97047,2.09921,-0.43870 +1.74024,0.89400,-1.29510,-1.62427,-0.97063,2.09891,-0.43838 +1.74131,0.89441,-1.29501,-1.62404,-0.97079,2.09861,-0.43806 +1.74238,0.89482,-1.29491,-1.62383,-0.97095,2.09832,-0.43775 +1.74344,0.89522,-1.29482,-1.62361,-0.97111,2.09803,-0.43744 +1.74451,0.89530,-1.29480,-1.62358,-0.97114,2.09797,-0.43737 +1.74557,0.89574,-1.29464,-1.62343,-0.97127,2.09766,-0.43704 +1.74664,0.89617,-1.29449,-1.62329,-0.97140,2.09735,-0.43671 +1.74771,0.89659,-1.29435,-1.62315,-0.97153,2.09704,-0.43639 +1.74877,0.89697,-1.29421,-1.62303,-0.97165,2.09677,-0.43609 +1.74984,0.89742,-1.29402,-1.62294,-0.97176,2.09644,-0.43575 +1.75091,0.89787,-1.29383,-1.62285,-0.97187,2.09612,-0.43540 +1.75197,0.89831,-1.29364,-1.62277,-0.97198,2.09581,-0.43507 +1.75304,0.89874,-1.29346,-1.62268,-0.97209,2.09549,-0.43473 +1.75411,0.89913,-1.29329,-1.62261,-0.97218,2.09521,-0.43444 +1.75517,0.89959,-1.29305,-1.62259,-0.97227,2.09488,-0.43409 +1.75624,0.90004,-1.29282,-1.62257,-0.97236,2.09456,-0.43374 +1.75730,0.90048,-1.29259,-1.62255,-0.97244,2.09424,-0.43340 +1.75837,0.90092,-1.29237,-1.62254,-0.97252,2.09392,-0.43306 +1.75944,0.90127,-1.29219,-1.62252,-0.97258,2.09367,-0.43280 +1.76050,0.90172,-1.29195,-1.62252,-0.97266,2.09334,-0.43245 +1.76157,0.90216,-1.29172,-1.62252,-0.97273,2.09302,-0.43211 +1.76264,0.90259,-1.29149,-1.62252,-0.97280,2.09271,-0.43178 +1.76370,0.90277,-1.29139,-1.62252,-0.97283,2.09258,-0.43165 +1.76477,0.90320,-1.29115,-1.62254,-0.97289,2.09227,-0.43132 +1.76583,0.90324,-1.29112,-1.62254,-0.97290,2.09224,-0.43128 +1.76690,0.90368,-1.29087,-1.62257,-0.97296,2.09192,-0.43095 +1.76797,0.90403,-1.29068,-1.62260,-0.97301,2.09167,-0.43068 +1.76903,0.90442,-1.29045,-1.62263,-0.97306,2.09139,-0.43039 +1.77010,0.90476,-1.29025,-1.62266,-0.97310,2.09114,-0.43012 +1.77117,0.90510,-1.29003,-1.62272,-0.97313,2.09089,-0.42986 +1.77223,0.90554,-1.28973,-1.62285,-0.97315,2.09057,-0.42953 +1.77330,0.90596,-1.28943,-1.62298,-0.97317,2.09027,-0.42920 +1.77437,0.90613,-1.28930,-1.62304,-0.97317,2.09014,-0.42907 +1.77543,0.90655,-1.28894,-1.62327,-0.97316,2.08984,-0.42875 +1.77650,0.90696,-1.28858,-1.62350,-0.97314,2.08954,-0.42844 +1.77756,0.90736,-1.28823,-1.62372,-0.97312,2.08924,-0.42813 +1.77863,0.90776,-1.28788,-1.62394,-0.97309,2.08895,-0.42782 +1.77970,0.90792,-1.28772,-1.62407,-0.97307,2.08884,-0.42771 +1.78076,0.90825,-1.28715,-1.62470,-0.97289,2.08860,-0.42745 +1.78183,0.90858,-1.28659,-1.62532,-0.97272,2.08836,-0.42720 +1.78290,0.90890,-1.28604,-1.62593,-0.97255,2.08812,-0.42695 +1.78396,0.90922,-1.28550,-1.62654,-0.97238,2.08789,-0.42671 +1.78503,0.90954,-1.28497,-1.62713,-0.97221,2.08766,-0.42647 +1.78610,0.90985,-1.28444,-1.62771,-0.97204,2.08743,-0.42623 +1.78716,0.91015,-1.28393,-1.62828,-0.97188,2.08720,-0.42600 +1.78823,0.91045,-1.28342,-1.62884,-0.97172,2.08698,-0.42577 +1.78929,0.91075,-1.28293,-1.62939,-0.97156,2.08676,-0.42554 +1.79036,0.91104,-1.28244,-1.62994,-0.97140,2.08655,-0.42532 +1.79143,0.91133,-1.28196,-1.63047,-0.97124,2.08634,-0.42510 +1.79249,0.91162,-1.28149,-1.63100,-0.97109,2.08613,-0.42488 +1.79356,0.91190,-1.28102,-1.63151,-0.97094,2.08592,-0.42467 +1.79463,0.91217,-1.28057,-1.63202,-0.97079,2.08572,-0.42445 +1.79569,0.91245,-1.28012,-1.63252,-0.97064,2.08552,-0.42425 +1.79676,0.91271,-1.27968,-1.63301,-0.97049,2.08532,-0.42404 +1.79782,0.91298,-1.27925,-1.63349,-0.97035,2.08513,-0.42384 +1.79889,0.91324,-1.27882,-1.63397,-0.97021,2.08494,-0.42364 +1.79996,0.91350,-1.27841,-1.63444,-0.97007,2.08475,-0.42344 +1.80102,0.91375,-1.27799,-1.63490,-0.96993,2.08456,-0.42325 +1.80209,0.91390,-1.27775,-1.63518,-0.96984,2.08445,-0.42313 +1.80316,0.91412,-1.27728,-1.63575,-0.96966,2.08429,-0.42296 +1.80422,0.91434,-1.27682,-1.63631,-0.96948,2.08412,-0.42280 +1.80529,0.91455,-1.27638,-1.63686,-0.96930,2.08397,-0.42263 +1.80636,0.91476,-1.27594,-1.63740,-0.96913,2.08381,-0.42247 +1.80742,0.91497,-1.27550,-1.63794,-0.96896,2.08365,-0.42231 +1.80849,0.91518,-1.27508,-1.63846,-0.96879,2.08350,-0.42215 +1.80955,0.91538,-1.27466,-1.63897,-0.96862,2.08335,-0.42199 +1.81062,0.91559,-1.27425,-1.63948,-0.96845,2.08320,-0.42184 +1.81169,0.91578,-1.27384,-1.63998,-0.96829,2.08305,-0.42169 +1.81275,0.91580,-1.27380,-1.64004,-0.96827,2.08304,-0.42167 +1.81382,0.91596,-1.27332,-1.64068,-0.96805,2.08292,-0.42155 +1.81489,0.91611,-1.27286,-1.64131,-0.96784,2.08281,-0.42143 +1.81595,0.91627,-1.27240,-1.64193,-0.96762,2.08269,-0.42131 +1.81702,0.91642,-1.27195,-1.64253,-0.96741,2.08258,-0.42120 +1.81808,0.91657,-1.27151,-1.64313,-0.96721,2.08247,-0.42108 +1.81915,0.91672,-1.27107,-1.64372,-0.96700,2.08236,-0.42097 +1.82022,0.91686,-1.27065,-1.64429,-0.96680,2.08225,-0.42086 +1.82128,0.91701,-1.27023,-1.64486,-0.96661,2.08214,-0.42074 +1.82235,0.91715,-1.26982,-1.64542,-0.96641,2.08203,-0.42063 +1.82342,0.91729,-1.26941,-1.64597,-0.96622,2.08193,-0.42053 +1.82448,0.91743,-1.26901,-1.64651,-0.96603,2.08182,-0.42042 +1.82555,0.91756,-1.26861,-1.64706,-0.96584,2.08173,-0.42032 +1.82662,0.91762,-1.26813,-1.64778,-0.96557,2.08167,-0.42027 +1.82768,0.91769,-1.26766,-1.64849,-0.96531,2.08162,-0.42021 +1.82875,0.91776,-1.26720,-1.64919,-0.96506,2.08157,-0.42016 +1.82981,0.91783,-1.26675,-1.64987,-0.96481,2.08152,-0.42011 +1.83088,0.91789,-1.26630,-1.65055,-0.96456,2.08147,-0.42006 +1.83195,0.91796,-1.26586,-1.65121,-0.96431,2.08142,-0.42000 +1.83301,0.91802,-1.26543,-1.65186,-0.96407,2.08137,-0.41995 +1.83408,0.91809,-1.26500,-1.65250,-0.96384,2.08132,-0.41990 +1.83515,0.91815,-1.26459,-1.65313,-0.96360,2.08127,-0.41985 +1.83621,0.91821,-1.26418,-1.65375,-0.96337,2.08122,-0.41980 +1.83728,0.91828,-1.26377,-1.65436,-0.96315,2.08117,-0.41975 +1.83835,0.91834,-1.26338,-1.65495,-0.96293,2.08112,-0.41970 +1.83941,0.91840,-1.26299,-1.65554,-0.96271,2.08107,-0.41965 +1.84048,0.91846,-1.26261,-1.65612,-0.96249,2.08102,-0.41960 +1.84154,0.91852,-1.26223,-1.65669,-0.96228,2.08098,-0.41956 +1.84261,0.91858,-1.26186,-1.65725,-0.96207,2.08093,-0.41951 +1.84368,0.91862,-1.26160,-1.65765,-0.96192,2.08090,-0.41948 +1.84474,0.91860,-1.26116,-1.65837,-0.96164,2.08091,-0.41949 +1.84581,0.91859,-1.26074,-1.65908,-0.96137,2.08092,-0.41950 +1.84688,0.91857,-1.26032,-1.65978,-0.96110,2.08093,-0.41951 +1.84794,0.91856,-1.25990,-1.66046,-0.96083,2.08093,-0.41952 +1.84901,0.91855,-1.25950,-1.66113,-0.96057,2.08094,-0.41952 +1.85007,0.91853,-1.25910,-1.66180,-0.96032,2.08095,-0.41953 +1.85114,0.91852,-1.25871,-1.66245,-0.96007,2.08095,-0.41954 +1.85221,0.91851,-1.25832,-1.66308,-0.95982,2.08096,-0.41954 +1.85327,0.91850,-1.25794,-1.66371,-0.95957,2.08096,-0.41955 +1.85434,0.91849,-1.25757,-1.66433,-0.95933,2.08096,-0.41955 +1.85541,0.91849,-1.25720,-1.66494,-0.95910,2.08097,-0.41956 +1.85647,0.91848,-1.25685,-1.66553,-0.95886,2.08097,-0.41956 +1.85754,0.91847,-1.25649,-1.66612,-0.95863,2.08097,-0.41957 +1.85861,0.91846,-1.25615,-1.66670,-0.95841,2.08098,-0.41957 +1.85967,0.91846,-1.25580,-1.66726,-0.95819,2.08098,-0.41957 +1.86074,0.91845,-1.25547,-1.66782,-0.95797,2.08098,-0.41957 +1.86180,0.91844,-1.25543,-1.66789,-0.95794,2.08098,-0.41958 +1.86287,0.91839,-1.25506,-1.66854,-0.95768,2.08102,-0.41962 +1.86394,0.91834,-1.25469,-1.66919,-0.95743,2.08105,-0.41965 +1.86500,0.91829,-1.25432,-1.66982,-0.95718,2.08109,-0.41969 +1.86607,0.91825,-1.25397,-1.67044,-0.95693,2.08112,-0.41972 +1.86714,0.91820,-1.25362,-1.67105,-0.95668,2.08115,-0.41975 +1.86820,0.91815,-1.25327,-1.67166,-0.95645,2.08118,-0.41979 +1.86927,0.91811,-1.25293,-1.67225,-0.95621,2.08121,-0.41982 +1.87033,0.91807,-1.25260,-1.67283,-0.95598,2.08124,-0.41985 +1.87140,0.91803,-1.25227,-1.67340,-0.95575,2.08127,-0.41988 +1.87247,0.91798,-1.25195,-1.67396,-0.95552,2.08130,-0.41991 +1.87353,0.91794,-1.25169,-1.67442,-0.95534,2.08132,-0.41994 +1.87460,0.91781,-1.25131,-1.67515,-0.95504,2.08142,-0.42004 +1.87567,0.91768,-1.25094,-1.67586,-0.95475,2.08151,-0.42013 +1.87673,0.91755,-1.25057,-1.67657,-0.95447,2.08160,-0.42023 +1.87780,0.91743,-1.25021,-1.67726,-0.95419,2.08169,-0.42032 +1.87887,0.91730,-1.24985,-1.67793,-0.95391,2.08178,-0.42041 +1.87993,0.91718,-1.24950,-1.67860,-0.95364,2.08186,-0.42050 +1.88100,0.91707,-1.24916,-1.67926,-0.95337,2.08195,-0.42059 +1.88206,0.91695,-1.24882,-1.67990,-0.95310,2.08203,-0.42068 +1.88313,0.91684,-1.24849,-1.68053,-0.95285,2.08211,-0.42076 +1.88420,0.91672,-1.24817,-1.68116,-0.95259,2.08219,-0.42084 +1.88526,0.91662,-1.24785,-1.68177,-0.95234,2.08226,-0.42092 +1.88633,0.91651,-1.24753,-1.68237,-0.95209,2.08234,-0.42100 +1.88740,0.91640,-1.24722,-1.68296,-0.95185,2.08242,-0.42108 +1.88846,0.91630,-1.24692,-1.68354,-0.95161,2.08249,-0.42116 +1.88953,0.91620,-1.24662,-1.68411,-0.95138,2.08256,-0.42123 +1.89060,0.91610,-1.24633,-1.68467,-0.95114,2.08263,-0.42131 +1.89166,0.91601,-1.24604,-1.68522,-0.95092,2.08270,-0.42138 +1.89273,0.91591,-1.24578,-1.68572,-0.95071,2.08277,-0.42145 +1.89379,0.91573,-1.24548,-1.68637,-0.95044,2.08290,-0.42159 +1.89486,0.91555,-1.24518,-1.68700,-0.95017,2.08303,-0.42172 +1.89593,0.91537,-1.24488,-1.68763,-0.94990,2.08315,-0.42185 +1.89699,0.91519,-1.24459,-1.68825,-0.94964,2.08328,-0.42199 +1.89806,0.91502,-1.24430,-1.68885,-0.94938,2.08340,-0.42211 +1.89913,0.91485,-1.24402,-1.68945,-0.94913,2.08352,-0.42224 +1.90019,0.91469,-1.24375,-1.69003,-0.94888,2.08364,-0.42236 +1.90126,0.91453,-1.24348,-1.69060,-0.94864,2.08376,-0.42249 +1.90232,0.91437,-1.24321,-1.69117,-0.94840,2.08387,-0.42261 +1.90339,0.91421,-1.24295,-1.69172,-0.94817,2.08398,-0.42272 +1.90446,0.91406,-1.24269,-1.69227,-0.94793,2.08409,-0.42284 +1.90552,0.91391,-1.24244,-1.69280,-0.94771,2.08420,-0.42295 +1.90659,0.91376,-1.24219,-1.69333,-0.94748,2.08431,-0.42306 +1.90766,0.91372,-1.24214,-1.69345,-0.94743,2.08434,-0.42309 +1.90872,0.91347,-1.24187,-1.69409,-0.94715,2.08452,-0.42328 +1.90979,0.91323,-1.24160,-1.69472,-0.94688,2.08469,-0.42346 +1.91086,0.91299,-1.24134,-1.69534,-0.94661,2.08486,-0.42365 +1.91192,0.91275,-1.24109,-1.69594,-0.94635,2.08503,-0.42382 +1.91299,0.91252,-1.24084,-1.69654,-0.94609,2.08520,-0.42400 +1.91405,0.91229,-1.24059,-1.69713,-0.94583,2.08537,-0.42417 +1.91512,0.91207,-1.24035,-1.69770,-0.94558,2.08553,-0.42434 +1.91619,0.91185,-1.24011,-1.69827,-0.94533,2.08568,-0.42451 +1.91725,0.91164,-1.23987,-1.69883,-0.94509,2.08584,-0.42467 +1.91832,0.91143,-1.23964,-1.69937,-0.94485,2.08599,-0.42483 +1.91939,0.91122,-1.23942,-1.69991,-0.94462,2.08614,-0.42499 +1.92045,0.91101,-1.23920,-1.70044,-0.94439,2.08629,-0.42514 +1.92152,0.91081,-1.23898,-1.70096,-0.94416,2.08643,-0.42529 +1.92258,0.91062,-1.23876,-1.70147,-0.94394,2.08658,-0.42544 +1.92365,0.91041,-1.23855,-1.70198,-0.94371,2.08672,-0.42560 +1.92472,0.91012,-1.23833,-1.70258,-0.94345,2.08694,-0.42582 +1.92578,0.90983,-1.23811,-1.70317,-0.94318,2.08715,-0.42604 +1.92685,0.90954,-1.23790,-1.70375,-0.94292,2.08735,-0.42626 +1.92792,0.90926,-1.23769,-1.70431,-0.94267,2.08756,-0.42647 +1.92898,0.90899,-1.23748,-1.70487,-0.94242,2.08775,-0.42668 +1.93005,0.90872,-1.23728,-1.70542,-0.94217,2.08795,-0.42689 +1.93112,0.90845,-1.23708,-1.70596,-0.94193,2.08814,-0.42709 +1.93218,0.90819,-1.23688,-1.70649,-0.94170,2.08833,-0.42729 +1.93325,0.90793,-1.23669,-1.70701,-0.94146,2.08852,-0.42748 +1.93431,0.90768,-1.23651,-1.70752,-0.94123,2.08870,-0.42768 +1.93538,0.90743,-1.23632,-1.70802,-0.94101,2.08888,-0.42786 +1.93645,0.90719,-1.23614,-1.70851,-0.94079,2.08905,-0.42805 +1.93751,0.90695,-1.23596,-1.70900,-0.94057,2.08923,-0.42823 +1.93858,0.90671,-1.23579,-1.70947,-0.94036,2.08940,-0.42841 +1.93965,0.90668,-1.23577,-1.70953,-0.94033,2.08942,-0.42844 +1.94071,0.90636,-1.23558,-1.71010,-0.94007,2.08966,-0.42868 +1.94178,0.90604,-1.23540,-1.71065,-0.93982,2.08989,-0.42893 +1.94284,0.90573,-1.23522,-1.71119,-0.93957,2.09011,-0.42917 +1.94391,0.90542,-1.23504,-1.71173,-0.93933,2.09033,-0.42940 +1.94498,0.90512,-1.23487,-1.71226,-0.93909,2.09055,-0.42963 +1.94604,0.90482,-1.23470,-1.71277,-0.93886,2.09077,-0.42986 +1.94711,0.90453,-1.23453,-1.71328,-0.93863,2.09098,-0.43008 +1.94818,0.90425,-1.23437,-1.71378,-0.93840,2.09119,-0.43030 +1.94924,0.90396,-1.23421,-1.71426,-0.93818,2.09139,-0.43052 +1.95031,0.90369,-1.23405,-1.71474,-0.93796,2.09159,-0.43073 +1.95138,0.90342,-1.23389,-1.71522,-0.93774,2.09179,-0.43094 +1.95244,0.90315,-1.23374,-1.71568,-0.93753,2.09198,-0.43114 +1.95351,0.90289,-1.23359,-1.71613,-0.93732,2.09217,-0.43134 +1.95457,0.90283,-1.23356,-1.71623,-0.93728,2.09221,-0.43139 +1.95564,0.90251,-1.23341,-1.71674,-0.93705,2.09245,-0.43163 +1.95671,0.90219,-1.23325,-1.71724,-0.93682,2.09267,-0.43187 +1.95777,0.90189,-1.23310,-1.71774,-0.93659,2.09290,-0.43211 +1.95884,0.90158,-1.23296,-1.71822,-0.93637,2.09312,-0.43234 +1.95991,0.90129,-1.23281,-1.71869,-0.93615,2.09333,-0.43257 +1.96097,0.90099,-1.23267,-1.71916,-0.93593,2.09354,-0.43280 +1.96204,0.90071,-1.23253,-1.71962,-0.93572,2.09375,-0.43302 +1.96311,0.90042,-1.23240,-1.72007,-0.93552,2.09396,-0.43323 +1.96417,0.90014,-1.23226,-1.72051,-0.93531,2.09416,-0.43345 +1.96524,0.90007,-1.23223,-1.72061,-0.93527,2.09421,-0.43350 +1.96630,0.89966,-1.23209,-1.72118,-0.93500,2.09451,-0.43382 +1.96737,0.89925,-1.23195,-1.72174,-0.93474,2.09481,-0.43414 +1.96844,0.89885,-1.23181,-1.72228,-0.93448,2.09510,-0.43445 +1.96950,0.89845,-1.23168,-1.72282,-0.93423,2.09538,-0.43475 +1.97057,0.89807,-1.23154,-1.72335,-0.93398,2.09566,-0.43505 +1.97164,0.89769,-1.23141,-1.72387,-0.93374,2.09594,-0.43535 +1.97270,0.89731,-1.23129,-1.72438,-0.93350,2.09621,-0.43563 +1.97377,0.89694,-1.23116,-1.72488,-0.93327,2.09648,-0.43592 +1.97483,0.89658,-1.23104,-1.72537,-0.93304,2.09674,-0.43620 +1.97590,0.89622,-1.23092,-1.72585,-0.93281,2.09700,-0.43648 +1.97697,0.89587,-1.23080,-1.72632,-0.93259,2.09725,-0.43675 +1.97803,0.89553,-1.23069,-1.72679,-0.93237,2.09750,-0.43701 +1.97910,0.89519,-1.23057,-1.72724,-0.93216,2.09775,-0.43727 +1.98017,0.89486,-1.23046,-1.72769,-0.93195,2.09799,-0.43753 +1.98123,0.89453,-1.23035,-1.72813,-0.93174,2.09823,-0.43778 +1.98230,0.89421,-1.23025,-1.72856,-0.93154,2.09846,-0.43803 +1.98337,0.89389,-1.23014,-1.72899,-0.93134,2.09869,-0.43828 +1.98443,0.89358,-1.23004,-1.72941,-0.93115,2.09891,-0.43852 +1.98550,0.89332,-1.22996,-1.72975,-0.93098,2.09910,-0.43872 +1.98656,0.89283,-1.22984,-1.73034,-0.93070,2.09946,-0.43911 +1.98763,0.89234,-1.22972,-1.73093,-0.93043,2.09981,-0.43949 +1.98870,0.89186,-1.22960,-1.73150,-0.93016,2.10016,-0.43986 +1.98976,0.89139,-1.22949,-1.73206,-0.92989,2.10050,-0.44022 +1.99083,0.89093,-1.22938,-1.73261,-0.92963,2.10083,-0.44058 +1.99190,0.89048,-1.22927,-1.73315,-0.92937,2.10116,-0.44093 +1.99296,0.89003,-1.22917,-1.73368,-0.92912,2.10148,-0.44128 +1.99403,0.88959,-1.22906,-1.73420,-0.92888,2.10180,-0.44162 +1.99509,0.88916,-1.22896,-1.73471,-0.92863,2.10211,-0.44196 +1.99616,0.88874,-1.22886,-1.73521,-0.92840,2.10242,-0.44229 +1.99723,0.88832,-1.22877,-1.73570,-0.92816,2.10272,-0.44261 +1.99829,0.88791,-1.22867,-1.73619,-0.92793,2.10302,-0.44293 +1.99936,0.88751,-1.22858,-1.73666,-0.92771,2.10331,-0.44325 +2.00043,0.88711,-1.22849,-1.73713,-0.92749,2.10359,-0.44356 +2.00149,0.88672,-1.22840,-1.73759,-0.92727,2.10388,-0.44386 +2.00256,0.88634,-1.22831,-1.73804,-0.92706,2.10415,-0.44416 +2.00363,0.88596,-1.22823,-1.73848,-0.92685,2.10443,-0.44445 +2.00469,0.88559,-1.22814,-1.73891,-0.92664,2.10469,-0.44474 +2.00576,0.88523,-1.22806,-1.73934,-0.92644,2.10496,-0.44503 +2.00682,0.88487,-1.22798,-1.73975,-0.92625,2.10522,-0.44531 +2.00789,0.88452,-1.22790,-1.74016,-0.92605,2.10547,-0.44558 +2.00896,0.88418,-1.22782,-1.74057,-0.92586,2.10572,-0.44585 +2.01002,0.88384,-1.22775,-1.74096,-0.92567,2.10597,-0.44612 +2.01109,0.88350,-1.22768,-1.74135,-0.92549,2.10621,-0.44638 +2.01216,0.88326,-1.22762,-1.74163,-0.92536,2.10639,-0.44657 +2.01322,0.88279,-1.22753,-1.74216,-0.92511,2.10673,-0.44694 +2.01429,0.88233,-1.22744,-1.74268,-0.92486,2.10706,-0.44730 +2.01536,0.88188,-1.22735,-1.74318,-0.92462,2.10738,-0.44765 +2.01642,0.88143,-1.22727,-1.74368,-0.92439,2.10771,-0.44800 +2.01749,0.88100,-1.22718,-1.74417,-0.92416,2.10802,-0.44835 +2.01855,0.88057,-1.22710,-1.74465,-0.92393,2.10833,-0.44868 +2.01962,0.88015,-1.22702,-1.74512,-0.92371,2.10864,-0.44902 +2.02069,0.87973,-1.22694,-1.74558,-0.92349,2.10894,-0.44934 +2.02175,0.87932,-1.22686,-1.74603,-0.92328,2.10923,-0.44966 +2.02282,0.87892,-1.22679,-1.74648,-0.92307,2.10952,-0.44998 +2.02389,0.87853,-1.22671,-1.74692,-0.92286,2.10981,-0.45029 +2.02495,0.87814,-1.22664,-1.74735,-0.92266,2.11009,-0.45060 +2.02602,0.87776,-1.22657,-1.74777,-0.92246,2.11036,-0.45090 +2.02708,0.87738,-1.22650,-1.74818,-0.92226,2.11063,-0.45119 +2.02815,0.87702,-1.22643,-1.74859,-0.92207,2.11090,-0.45148 +2.02922,0.87665,-1.22636,-1.74899,-0.92188,2.11116,-0.45177 +2.03028,0.87630,-1.22630,-1.74938,-0.92170,2.11142,-0.45205 +2.03135,0.87595,-1.22624,-1.74976,-0.92152,2.11167,-0.45233 +2.03242,0.87560,-1.22617,-1.75014,-0.92134,2.11192,-0.45260 +2.03348,0.87529,-1.22612,-1.75048,-0.92118,2.11215,-0.45284 +2.03455,0.87488,-1.22605,-1.75092,-0.92097,2.11244,-0.45317 +2.03562,0.87448,-1.22599,-1.75134,-0.92077,2.11273,-0.45348 +2.03668,0.87409,-1.22592,-1.75176,-0.92057,2.11302,-0.45380 +2.03775,0.87370,-1.22586,-1.75218,-0.92038,2.11330,-0.45410 +2.03881,0.87332,-1.22580,-1.75258,-0.92018,2.11358,-0.45440 +2.03988,0.87294,-1.22574,-1.75298,-0.92000,2.11385,-0.45470 +2.04095,0.87258,-1.22568,-1.75337,-0.91981,2.11411,-0.45499 +2.04201,0.87221,-1.22563,-1.75376,-0.91963,2.11437,-0.45528 +2.04308,0.87186,-1.22557,-1.75413,-0.91945,2.11463,-0.45556 +2.04415,0.87151,-1.22552,-1.75450,-0.91928,2.11489,-0.45584 +2.04521,0.87115,-1.22546,-1.75487,-0.91910,2.11514,-0.45612 +2.04628,0.87072,-1.22542,-1.75529,-0.91890,2.11545,-0.45647 +2.04734,0.87029,-1.22539,-1.75569,-0.91870,2.11576,-0.45680 +2.04841,0.86988,-1.22535,-1.75610,-0.91851,2.11606,-0.45713 +2.04948,0.86947,-1.22531,-1.75649,-0.91832,2.11636,-0.45746 +2.05054,0.86906,-1.22528,-1.75688,-0.91813,2.11665,-0.45778 +2.05161,0.86866,-1.22524,-1.75725,-0.91795,2.11694,-0.45810 +2.05268,0.86827,-1.22521,-1.75763,-0.91777,2.11722,-0.45841 +2.05374,0.86789,-1.22517,-1.75799,-0.91759,2.11750,-0.45872 +2.05481,0.86751,-1.22514,-1.75835,-0.91742,2.11777,-0.45902 +2.05588,0.86714,-1.22511,-1.75870,-0.91725,2.11804,-0.45931 +2.05694,0.86677,-1.22508,-1.75905,-0.91708,2.11830,-0.45960 +2.05801,0.86644,-1.22505,-1.75936,-0.91693,2.11854,-0.45987 +2.05907,0.86603,-1.22502,-1.75976,-0.91674,2.11884,-0.46020 +2.06014,0.86562,-1.22498,-1.76014,-0.91656,2.11913,-0.46052 +2.06121,0.86522,-1.22495,-1.76052,-0.91637,2.11942,-0.46085 +2.06227,0.86482,-1.22492,-1.76090,-0.91619,2.11971,-0.46116 +2.06334,0.86443,-1.22489,-1.76127,-0.91602,2.11999,-0.46147 +2.06441,0.86405,-1.22485,-1.76163,-0.91585,2.12026,-0.46178 +2.06547,0.86367,-1.22482,-1.76198,-0.91568,2.12054,-0.46208 +2.06654,0.86331,-1.22479,-1.76233,-0.91551,2.12080,-0.46237 +2.06761,0.86294,-1.22477,-1.76267,-0.91535,2.12106,-0.46266 +2.06867,0.86276,-1.22475,-1.76284,-0.91526,2.12120,-0.46281 +2.06974,0.86238,-1.22473,-1.76319,-0.91510,2.12147,-0.46311 +2.07080,0.86201,-1.22470,-1.76353,-0.91493,2.12174,-0.46341 +2.07187,0.86164,-1.22468,-1.76387,-0.91477,2.12200,-0.46370 +2.07294,0.86146,-1.22467,-1.76404,-0.91469,2.12213,-0.46385 +2.07400,0.86108,-1.22464,-1.76439,-0.91452,2.12240,-0.46415 +2.07507,0.86071,-1.22461,-1.76473,-0.91436,2.12267,-0.46445 +2.07614,0.86035,-1.22459,-1.76507,-0.91420,2.12293,-0.46474 +2.07720,0.86027,-1.22459,-1.76512,-0.91417,2.12299,-0.46480 +2.07827,0.85982,-1.22470,-1.76534,-0.91403,2.12332,-0.46517 +2.07933,0.85937,-1.22480,-1.76555,-0.91390,2.12364,-0.46552 +2.08040,0.85893,-1.22490,-1.76576,-0.91377,2.12395,-0.46587 +2.08147,0.85850,-1.22500,-1.76597,-0.91364,2.12426,-0.46622 +2.08253,0.85812,-1.22509,-1.76614,-0.91353,2.12454,-0.46653 +2.08360,0.85762,-1.22526,-1.76629,-0.91342,2.12489,-0.46693 +2.08467,0.85714,-1.22543,-1.76644,-0.91330,2.12524,-0.46731 +2.08573,0.85666,-1.22559,-1.76658,-0.91319,2.12558,-0.46770 +2.08680,0.85619,-1.22576,-1.76672,-0.91308,2.12592,-0.46807 +2.08787,0.85573,-1.22592,-1.76686,-0.91298,2.12625,-0.46844 +2.08893,0.85528,-1.22607,-1.76699,-0.91287,2.12657,-0.46881 +2.09000,0.85484,-1.22623,-1.76713,-0.91277,2.12689,-0.46917 +2.09106,0.85456,-1.22633,-1.76720,-0.91271,2.12709,-0.46939 +2.09213,0.85403,-1.22657,-1.76726,-0.91262,2.12747,-0.46981 +2.09320,0.85352,-1.22681,-1.76733,-0.91253,2.12784,-0.47023 +2.09426,0.85300,-1.22705,-1.76739,-0.91244,2.12820,-0.47064 +2.09533,0.85250,-1.22728,-1.76745,-0.91236,2.12856,-0.47104 +2.09640,0.85201,-1.22751,-1.76751,-0.91228,2.12892,-0.47144 +2.09746,0.85152,-1.22774,-1.76757,-0.91220,2.12927,-0.47183 +2.09853,0.85105,-1.22796,-1.76762,-0.91212,2.12961,-0.47222 +2.09959,0.85058,-1.22818,-1.76768,-0.91204,2.12994,-0.47260 +2.10066,0.85012,-1.22839,-1.76773,-0.91197,2.13027,-0.47297 +2.10173,0.84966,-1.22861,-1.76778,-0.91190,2.13060,-0.47334 +2.10279,0.84939,-1.22874,-1.76781,-0.91185,2.13080,-0.47356 +2.10386,0.84889,-1.22901,-1.76780,-0.91179,2.13115,-0.47396 +2.10493,0.84840,-1.22928,-1.76779,-0.91174,2.13150,-0.47436 +2.10599,0.84792,-1.22954,-1.76779,-0.91168,2.13185,-0.47475 +2.10706,0.84744,-1.22980,-1.76778,-0.91163,2.13219,-0.47514 +2.10813,0.84698,-1.23006,-1.76778,-0.91157,2.13252,-0.47551 +2.10919,0.84652,-1.23031,-1.76777,-0.91152,2.13285,-0.47589 +2.11026,0.84607,-1.23056,-1.76776,-0.91147,2.13317,-0.47625 +2.11132,0.84597,-1.23062,-1.76775,-0.91147,2.13324,-0.47633 +2.11239,0.84544,-1.23097,-1.76765,-0.91144,2.13362,-0.47676 +2.11346,0.84492,-1.23132,-1.76755,-0.91141,2.13399,-0.47718 +2.11452,0.84441,-1.23166,-1.76745,-0.91138,2.13436,-0.47760 +2.11559,0.84391,-1.23199,-1.76735,-0.91136,2.13472,-0.47801 +2.11666,0.84342,-1.23232,-1.76726,-0.91133,2.13507,-0.47841 +2.11772,0.84293,-1.23265,-1.76716,-0.91131,2.13542,-0.47880 +2.11879,0.84245,-1.23297,-1.76707,-0.91129,2.13576,-0.47919 +2.11985,0.84198,-1.23328,-1.76698,-0.91127,2.13610,-0.47958 +2.12092,0.84152,-1.23359,-1.76688,-0.91125,2.13643,-0.47995 +2.12199,0.84107,-1.23389,-1.76679,-0.91123,2.13675,-0.48032 +2.12305,0.84062,-1.23419,-1.76670,-0.91121,2.13707,-0.48069 +2.12412,0.84017,-1.23451,-1.76659,-0.91120,2.13740,-0.48106 +2.12519,0.83957,-1.23503,-1.76629,-0.91123,2.13782,-0.48154 +2.12625,0.83899,-1.23554,-1.76600,-0.91126,2.13823,-0.48202 +2.12732,0.83842,-1.23604,-1.76571,-0.91130,2.13864,-0.48249 +2.12839,0.83786,-1.23653,-1.76543,-0.91133,2.13904,-0.48295 +2.12945,0.83730,-1.23701,-1.76514,-0.91136,2.13944,-0.48340 +2.13052,0.83676,-1.23749,-1.76487,-0.91140,2.13983,-0.48385 +2.13158,0.83622,-1.23796,-1.76459,-0.91143,2.14021,-0.48428 +2.13265,0.83570,-1.23842,-1.76432,-0.91147,2.14058,-0.48471 +2.13372,0.83518,-1.23887,-1.76406,-0.91151,2.14095,-0.48514 +2.13478,0.83467,-1.23931,-1.76380,-0.91154,2.14131,-0.48556 +2.13585,0.83417,-1.23975,-1.76354,-0.91158,2.14167,-0.48597 +2.13692,0.83368,-1.24018,-1.76328,-0.91162,2.14202,-0.48637 +2.13798,0.83320,-1.24060,-1.76303,-0.91166,2.14237,-0.48677 +2.13905,0.83272,-1.24102,-1.76279,-0.91170,2.14271,-0.48716 +2.14012,0.83225,-1.24142,-1.76254,-0.91174,2.14304,-0.48755 +2.14118,0.83179,-1.24183,-1.76230,-0.91178,2.14337,-0.48793 +2.14225,0.83134,-1.24222,-1.76206,-0.91182,2.14369,-0.48830 +2.14331,0.83090,-1.24261,-1.76183,-0.91186,2.14401,-0.48867 +2.14438,0.83046,-1.24299,-1.76160,-0.91190,2.14432,-0.48903 +2.14545,0.83003,-1.24336,-1.76137,-0.91194,2.14463,-0.48938 +2.14651,0.82961,-1.24373,-1.76115,-0.91198,2.14493,-0.48973 +2.14758,0.82919,-1.24409,-1.76093,-0.91202,2.14523,-0.49008 +2.14865,0.82879,-1.24444,-1.76071,-0.91206,2.14552,-0.49041 +2.14971,0.82846,-1.24474,-1.76053,-0.91210,2.14575,-0.49069 +2.15078,0.82799,-1.24519,-1.76020,-0.91217,2.14608,-0.49107 +2.15184,0.82754,-1.24564,-1.75988,-0.91224,2.14641,-0.49145 +2.15291,0.82709,-1.24609,-1.75957,-0.91231,2.14673,-0.49182 +2.15398,0.82665,-1.24652,-1.75925,-0.91238,2.14704,-0.49218 +2.15504,0.82622,-1.24695,-1.75895,-0.91245,2.14735,-0.49254 +2.15611,0.82580,-1.24737,-1.75864,-0.91252,2.14765,-0.49289 +2.15718,0.82538,-1.24778,-1.75835,-0.91259,2.14795,-0.49324 +2.15824,0.82497,-1.24819,-1.75805,-0.91266,2.14824,-0.49358 +2.15931,0.82456,-1.24859,-1.75776,-0.91273,2.14853,-0.49392 +2.16038,0.82416,-1.24898,-1.75748,-0.91280,2.14882,-0.49425 +2.16144,0.82377,-1.24936,-1.75720,-0.91286,2.14910,-0.49458 +2.16251,0.82339,-1.24974,-1.75692,-0.91293,2.14937,-0.49490 +2.16357,0.82301,-1.25012,-1.75665,-0.91300,2.14964,-0.49521 +2.16464,0.82293,-1.25021,-1.75658,-0.91302,2.14970,-0.49528 +2.16571,0.82247,-1.25075,-1.75611,-0.91314,2.15002,-0.49566 +2.16677,0.82203,-1.25128,-1.75566,-0.91326,2.15034,-0.49603 +2.16784,0.82159,-1.25180,-1.75521,-0.91338,2.15065,-0.49639 +2.16891,0.82116,-1.25232,-1.75477,-0.91350,2.15096,-0.49675 +2.16997,0.82074,-1.25282,-1.75433,-0.91362,2.15126,-0.49711 +2.17104,0.82032,-1.25332,-1.75391,-0.91374,2.15155,-0.49745 +2.17210,0.81991,-1.25381,-1.75348,-0.91385,2.15185,-0.49780 +2.17317,0.81951,-1.25429,-1.75307,-0.91397,2.15213,-0.49813 +2.17424,0.81912,-1.25476,-1.75266,-0.91408,2.15242,-0.49846 +2.17530,0.81873,-1.25522,-1.75226,-0.91420,2.15269,-0.49879 +2.17637,0.81834,-1.25567,-1.75186,-0.91431,2.15297,-0.49911 +2.17744,0.81797,-1.25612,-1.75147,-0.91442,2.15323,-0.49943 +2.17850,0.81760,-1.25656,-1.75109,-0.91453,2.15350,-0.49974 +2.17957,0.81723,-1.25699,-1.75071,-0.91464,2.15376,-0.50004 +2.18064,0.81687,-1.25742,-1.75034,-0.91475,2.15401,-0.50034 +2.18170,0.81652,-1.25783,-1.74997,-0.91486,2.15427,-0.50064 +2.18277,0.81617,-1.25824,-1.74961,-0.91497,2.15451,-0.50093 +2.18383,0.81583,-1.25864,-1.74926,-0.91507,2.15476,-0.50122 +2.18490,0.81550,-1.25904,-1.74891,-0.91518,2.15500,-0.50150 +2.18597,0.81533,-1.25925,-1.74873,-0.91524,2.15512,-0.50165 +2.18703,0.81494,-1.25975,-1.74827,-0.91537,2.15540,-0.50198 +2.18810,0.81455,-1.26024,-1.74782,-0.91550,2.15567,-0.50230 +2.18917,0.81417,-1.26072,-1.74738,-0.91563,2.15594,-0.50262 +2.19023,0.81380,-1.26119,-1.74694,-0.91577,2.15620,-0.50293 +2.19130,0.81344,-1.26166,-1.74651,-0.91589,2.15646,-0.50324 +2.19237,0.81308,-1.26211,-1.74609,-0.91602,2.15672,-0.50354 +2.19343,0.81272,-1.26256,-1.74568,-0.91615,2.15697,-0.50384 +2.19450,0.81238,-1.26300,-1.74527,-0.91628,2.15722,-0.50413 +2.19556,0.81203,-1.26344,-1.74486,-0.91640,2.15746,-0.50442 +2.19663,0.81170,-1.26386,-1.74447,-0.91652,2.15770,-0.50471 +2.19770,0.81137,-1.26428,-1.74408,-0.91665,2.15794,-0.50499 +2.19876,0.81104,-1.26469,-1.74369,-0.91677,2.15817,-0.50526 +2.19983,0.81072,-1.26510,-1.74332,-0.91689,2.15840,-0.50553 +2.20090,0.81041,-1.26550,-1.74295,-0.91701,2.15862,-0.50580 +2.20196,0.81034,-1.26558,-1.74286,-0.91703,2.15867,-0.50586 +2.20303,0.80998,-1.26607,-1.74239,-0.91718,2.15893,-0.50616 +2.20409,0.80963,-1.26656,-1.74192,-0.91733,2.15918,-0.50646 +2.20516,0.80928,-1.26703,-1.74147,-0.91747,2.15943,-0.50676 +2.20623,0.80894,-1.26749,-1.74102,-0.91761,2.15967,-0.50705 +2.20729,0.80860,-1.26795,-1.74057,-0.91775,2.15991,-0.50733 +2.20836,0.80827,-1.26840,-1.74014,-0.91789,2.16014,-0.50761 +2.20943,0.80794,-1.26884,-1.73971,-0.91803,2.16037,-0.50789 +2.21049,0.80762,-1.26927,-1.73929,-0.91817,2.16060,-0.50816 +2.21156,0.80731,-1.26970,-1.73887,-0.91830,2.16083,-0.50843 +2.21263,0.80700,-1.27012,-1.73846,-0.91844,2.16105,-0.50869 +2.21369,0.80669,-1.27053,-1.73806,-0.91857,2.16127,-0.50895 +2.21476,0.80639,-1.27093,-1.73766,-0.91870,2.16148,-0.50921 +2.21582,0.80618,-1.27123,-1.73737,-0.91880,2.16163,-0.50939 +2.21689,0.80581,-1.27179,-1.73680,-0.91898,2.16189,-0.50971 +2.21796,0.80544,-1.27233,-1.73625,-0.91915,2.16215,-0.51001 +2.21902,0.80509,-1.27287,-1.73570,-0.91933,2.16240,-0.51032 +2.22009,0.80474,-1.27340,-1.73516,-0.91950,2.16265,-0.51062 +2.22116,0.80439,-1.27392,-1.73462,-0.91968,2.16290,-0.51091 +2.22222,0.80405,-1.27443,-1.73410,-0.91985,2.16314,-0.51120 +2.22329,0.80372,-1.27493,-1.73359,-0.92001,2.16338,-0.51149 +2.22435,0.80339,-1.27543,-1.73308,-0.92018,2.16361,-0.51177 +2.22542,0.80306,-1.27591,-1.73258,-0.92035,2.16384,-0.51204 +2.22649,0.80274,-1.27639,-1.73209,-0.92051,2.16407,-0.51231 +2.22755,0.80243,-1.27686,-1.73161,-0.92067,2.16429,-0.51258 +2.22862,0.80212,-1.27731,-1.73113,-0.92083,2.16451,-0.51284 +2.22969,0.80182,-1.27777,-1.73066,-0.92099,2.16472,-0.51310 +2.23075,0.80152,-1.27821,-1.73020,-0.92115,2.16493,-0.51336 +2.23182,0.80123,-1.27865,-1.72975,-0.92130,2.16514,-0.51361 +2.23289,0.80094,-1.27907,-1.72931,-0.92145,2.16535,-0.51386 +2.23395,0.80066,-1.27950,-1.72887,-0.92160,2.16555,-0.51410 +2.23502,0.80038,-1.27991,-1.72844,-0.92175,2.16575,-0.51434 +2.23608,0.80010,-1.28032,-1.72801,-0.92190,2.16594,-0.51458 +2.23715,0.79988,-1.28064,-1.72767,-0.92202,2.16610,-0.51477 +2.23822,0.79958,-1.28112,-1.72716,-0.92219,2.16631,-0.51502 +2.23928,0.79929,-1.28159,-1.72666,-0.92236,2.16652,-0.51528 +2.24035,0.79900,-1.28205,-1.72617,-0.92253,2.16672,-0.51552 +2.24142,0.79872,-1.28250,-1.72568,-0.92270,2.16693,-0.51577 +2.24248,0.79844,-1.28294,-1.72521,-0.92287,2.16713,-0.51601 +2.24355,0.79816,-1.28338,-1.72474,-0.92303,2.16732,-0.51625 +2.24462,0.79789,-1.28380,-1.72428,-0.92319,2.16751,-0.51648 +2.24568,0.79762,-1.28422,-1.72382,-0.92335,2.16770,-0.51671 +2.24675,0.79736,-1.28464,-1.72338,-0.92351,2.16789,-0.51693 +2.24781,0.79710,-1.28504,-1.72294,-0.92366,2.16807,-0.51716 +2.24888,0.79694,-1.28530,-1.72266,-0.92376,2.16818,-0.51729 +2.24995,0.79664,-1.28587,-1.72201,-0.92398,2.16840,-0.51755 +2.25101,0.79635,-1.28642,-1.72138,-0.92420,2.16861,-0.51781 +2.25208,0.79605,-1.28697,-1.72075,-0.92442,2.16882,-0.51806 +2.25315,0.79576,-1.28751,-1.72014,-0.92463,2.16902,-0.51831 +2.25421,0.79548,-1.28804,-1.71953,-0.92484,2.16922,-0.51855 +2.25528,0.79520,-1.28856,-1.71894,-0.92505,2.16942,-0.51879 +2.25634,0.79493,-1.28907,-1.71835,-0.92525,2.16961,-0.51903 +2.25741,0.79466,-1.28957,-1.71777,-0.92545,2.16980,-0.51926 +2.25848,0.79439,-1.29006,-1.71721,-0.92566,2.16999,-0.51949 +2.25954,0.79413,-1.29055,-1.71665,-0.92585,2.17018,-0.51972 +2.26061,0.79387,-1.29102,-1.71610,-0.92605,2.17036,-0.51994 +2.26168,0.79362,-1.29149,-1.71556,-0.92624,2.17054,-0.52016 +2.26274,0.79337,-1.29195,-1.71503,-0.92643,2.17072,-0.52037 +2.26381,0.79313,-1.29240,-1.71451,-0.92662,2.17089,-0.52059 +2.26488,0.79289,-1.29284,-1.71399,-0.92681,2.17106,-0.52080 +2.26594,0.79265,-1.29328,-1.71349,-0.92699,2.17123,-0.52100 +2.26701,0.79242,-1.29371,-1.71299,-0.92717,2.17140,-0.52120 +2.26807,0.79219,-1.29413,-1.71250,-0.92735,2.17156,-0.52140 +2.26914,0.79196,-1.29454,-1.71202,-0.92753,2.17172,-0.52160 +2.27021,0.79174,-1.29495,-1.71155,-0.92771,2.17188,-0.52179 +2.27127,0.79156,-1.29528,-1.71116,-0.92785,2.17200,-0.52195 +2.27234,0.79132,-1.29576,-1.71058,-0.92806,2.17217,-0.52215 +2.27341,0.79109,-1.29624,-1.71000,-0.92827,2.17233,-0.52235 +2.27447,0.79087,-1.29670,-1.70944,-0.92847,2.17250,-0.52255 +2.27554,0.79064,-1.29716,-1.70889,-0.92868,2.17266,-0.52275 +2.27660,0.79042,-1.29761,-1.70834,-0.92888,2.17281,-0.52294 +2.27767,0.79020,-1.29806,-1.70780,-0.92907,2.17297,-0.52313 +2.27874,0.78999,-1.29849,-1.70728,-0.92927,2.17312,-0.52331 +2.27980,0.78978,-1.29892,-1.70676,-0.92946,2.17327,-0.52350 +2.28087,0.78957,-1.29934,-1.70625,-0.92965,2.17341,-0.52368 +2.28194,0.78937,-1.29975,-1.70574,-0.92984,2.17356,-0.52386 +2.28300,0.78917,-1.30016,-1.70525,-0.93003,2.17370,-0.52403 +2.28407,0.78897,-1.30056,-1.70476,-0.93021,2.17384,-0.52420 +2.28514,0.78893,-1.30064,-1.70466,-0.93025,2.17387,-0.52424 +2.28620,0.78874,-1.30107,-1.70413,-0.93045,2.17401,-0.52441 +2.28727,0.78854,-1.30149,-1.70360,-0.93065,2.17415,-0.52458 +2.28833,0.78835,-1.30191,-1.70309,-0.93084,2.17428,-0.52475 +2.28940,0.78816,-1.30232,-1.70258,-0.93103,2.17442,-0.52491 +2.29047,0.78798,-1.30272,-1.70208,-0.93122,2.17455,-0.52507 +2.29153,0.78785,-1.30300,-1.70173,-0.93135,2.17464,-0.52519 +2.29260,0.78766,-1.30340,-1.70122,-0.93155,2.17477,-0.52535 +2.29367,0.78748,-1.30380,-1.70072,-0.93174,2.17490,-0.52551 +2.29473,0.78739,-1.30400,-1.70047,-0.93183,2.17497,-0.52559 +2.29580,0.78721,-1.30440,-1.69997,-0.93202,2.17509,-0.52574 +2.29687,0.78709,-1.30467,-1.69962,-0.93216,2.17518,-0.52585 +2.29793,0.78695,-1.30501,-1.69919,-0.93232,2.17528,-0.52597 +2.29900,0.78684,-1.30557,-1.69837,-0.93263,2.17536,-0.52608 +2.30006,0.78672,-1.30613,-1.69756,-0.93293,2.17545,-0.52618 +2.30113,0.78660,-1.30668,-1.69677,-0.93324,2.17553,-0.52628 +2.30220,0.78649,-1.30722,-1.69599,-0.93353,2.17562,-0.52639 +2.30326,0.78638,-1.30775,-1.69522,-0.93382,2.17570,-0.52649 +2.30433,0.78627,-1.30826,-1.69447,-0.93411,2.17578,-0.52658 +2.30540,0.78616,-1.30878,-1.69373,-0.93440,2.17586,-0.52668 +2.30646,0.78605,-1.30928,-1.69299,-0.93468,2.17594,-0.52678 +2.30753,0.78594,-1.30977,-1.69228,-0.93496,2.17601,-0.52687 +2.30859,0.78584,-1.31025,-1.69157,-0.93523,2.17609,-0.52697 +2.30966,0.78573,-1.31073,-1.69088,-0.93550,2.17617,-0.52706 +2.31073,0.78563,-1.31120,-1.69019,-0.93576,2.17624,-0.52715 +2.31179,0.78553,-1.31166,-1.68952,-0.93603,2.17631,-0.52724 +2.31286,0.78543,-1.31211,-1.68886,-0.93628,2.17639,-0.52733 +2.31393,0.78533,-1.31255,-1.68821,-0.93654,2.17646,-0.52742 +2.31499,0.78523,-1.31299,-1.68757,-0.93679,2.17653,-0.52751 +2.31606,0.78514,-1.31342,-1.68694,-0.93704,2.17660,-0.52759 +2.31713,0.78504,-1.31384,-1.68632,-0.93728,2.17667,-0.52768 +2.31819,0.78495,-1.31425,-1.68572,-0.93752,2.17674,-0.52776 +2.31926,0.78486,-1.31466,-1.68512,-0.93776,2.17680,-0.52785 +2.32032,0.78476,-1.31506,-1.68453,-0.93799,2.17687,-0.52793 +2.32139,0.78467,-1.31545,-1.68395,-0.93823,2.17693,-0.52801 +2.32246,0.78459,-1.31583,-1.68338,-0.93845,2.17700,-0.52809 +2.32352,0.78450,-1.31621,-1.68282,-0.93868,2.17706,-0.52817 +2.32459,0.78441,-1.31659,-1.68227,-0.93890,2.17713,-0.52825 +2.32566,0.78437,-1.31682,-1.68191,-0.93904,2.17716,-0.52829 +2.32672,0.78433,-1.31737,-1.68104,-0.93938,2.17719,-0.52832 +2.32779,0.78430,-1.31791,-1.68018,-0.93972,2.17721,-0.52835 +2.32885,0.78427,-1.31844,-1.67934,-0.94005,2.17724,-0.52838 +2.32992,0.78424,-1.31896,-1.67851,-0.94038,2.17726,-0.52842 +2.33099,0.78420,-1.31947,-1.67769,-0.94070,2.17729,-0.52845 +2.33205,0.78417,-1.31997,-1.67689,-0.94102,2.17732,-0.52848 +2.33312,0.78414,-1.32046,-1.67610,-0.94133,2.17734,-0.52851 +2.33419,0.78411,-1.32094,-1.67532,-0.94164,2.17737,-0.52854 +2.33525,0.78407,-1.32142,-1.67455,-0.94194,2.17739,-0.52857 +2.33632,0.78404,-1.32189,-1.67380,-0.94224,2.17742,-0.52860 +2.33739,0.78401,-1.32235,-1.67306,-0.94254,2.17744,-0.52864 +2.33845,0.78398,-1.32280,-1.67234,-0.94283,2.17747,-0.52867 +2.33952,0.78394,-1.32324,-1.67162,-0.94312,2.17749,-0.52870 +2.34058,0.78391,-1.32368,-1.67092,-0.94340,2.17752,-0.52873 +2.34165,0.78388,-1.32411,-1.67023,-0.94368,2.17754,-0.52876 +2.34272,0.78385,-1.32453,-1.66955,-0.94396,2.17757,-0.52879 +2.34378,0.78382,-1.32494,-1.66888,-0.94423,2.17759,-0.52882 +2.34485,0.78379,-1.32535,-1.66822,-0.94449,2.17762,-0.52885 +2.34592,0.78375,-1.32575,-1.66758,-0.94476,2.17764,-0.52888 +2.34698,0.78372,-1.32614,-1.66694,-0.94502,2.17767,-0.52892 +2.34805,0.78369,-1.32653,-1.66632,-0.94527,2.17769,-0.52895 +2.34911,0.78366,-1.32691,-1.66570,-0.94552,2.17772,-0.52898 +2.35018,0.78363,-1.32728,-1.66510,-0.94577,2.17774,-0.52901 +2.35125,0.78360,-1.32765,-1.66450,-0.94602,2.17777,-0.52904 +2.35231,0.78357,-1.32801,-1.66392,-0.94626,2.17779,-0.52907 +2.35338,0.78354,-1.32836,-1.66334,-0.94650,2.17781,-0.52910 +2.35445,0.78351,-1.32871,-1.66278,-0.94673,2.17784,-0.52913 +2.35551,0.78350,-1.32893,-1.66241,-0.94688,2.17785,-0.52914 +2.35658,0.78353,-1.32940,-1.66159,-0.94722,2.17783,-0.52911 +2.35765,0.78357,-1.32987,-1.66078,-0.94754,2.17780,-0.52909 +2.35871,0.78360,-1.33032,-1.65998,-0.94787,2.17778,-0.52906 +2.35978,0.78363,-1.33077,-1.65920,-0.94819,2.17776,-0.52904 +2.36084,0.78366,-1.33121,-1.65843,-0.94850,2.17775,-0.52901 +2.36191,0.78369,-1.33165,-1.65767,-0.94881,2.17773,-0.52899 +2.36298,0.78372,-1.33207,-1.65693,-0.94912,2.17771,-0.52897 +2.36404,0.78375,-1.33249,-1.65620,-0.94942,2.17769,-0.52895 +2.36511,0.78378,-1.33290,-1.65548,-0.94972,2.17768,-0.52893 +2.36618,0.78380,-1.33331,-1.65477,-0.95001,2.17766,-0.52891 +2.36724,0.78383,-1.33371,-1.65407,-0.95030,2.17765,-0.52889 +2.36831,0.78385,-1.33410,-1.65339,-0.95058,2.17763,-0.52888 +2.36938,0.78388,-1.33448,-1.65271,-0.95086,2.17762,-0.52886 +2.37044,0.78390,-1.33486,-1.65205,-0.95113,2.17761,-0.52884 +2.37151,0.78392,-1.33523,-1.65140,-0.95141,2.17759,-0.52883 +2.37257,0.78394,-1.33559,-1.65076,-0.95167,2.17758,-0.52881 +2.37364,0.78396,-1.33595,-1.65013,-0.95194,2.17757,-0.52880 +2.37471,0.78398,-1.33631,-1.64951,-0.95220,2.17756,-0.52879 +2.37577,0.78400,-1.33665,-1.64890,-0.95245,2.17755,-0.52878 +2.37684,0.78402,-1.33699,-1.64830,-0.95270,2.17754,-0.52876 +2.37791,0.78404,-1.33733,-1.64771,-0.95295,2.17753,-0.52875 +2.37897,0.78405,-1.33766,-1.64713,-0.95320,2.17752,-0.52874 +2.38004,0.78407,-1.33798,-1.64656,-0.95344,2.17751,-0.52873 +2.38110,0.78408,-1.33815,-1.64627,-0.95356,2.17750,-0.52872 +2.38217,0.78414,-1.33854,-1.64555,-0.95386,2.17746,-0.52868 +2.38324,0.78420,-1.33892,-1.64484,-0.95416,2.17743,-0.52863 +2.38430,0.78426,-1.33930,-1.64415,-0.95445,2.17739,-0.52858 +2.38537,0.78431,-1.33967,-1.64346,-0.95473,2.17735,-0.52854 +2.38644,0.78437,-1.34004,-1.64279,-0.95502,2.17732,-0.52850 +2.38750,0.78442,-1.34040,-1.64213,-0.95529,2.17728,-0.52846 +2.38857,0.78447,-1.34075,-1.64148,-0.95557,2.17725,-0.52841 +2.38964,0.78452,-1.34110,-1.64084,-0.95584,2.17722,-0.52838 +2.39070,0.78457,-1.34144,-1.64021,-0.95610,2.17719,-0.52834 +2.39177,0.78462,-1.34178,-1.63959,-0.95636,2.17716,-0.52830 +2.39283,0.78466,-1.34211,-1.63898,-0.95662,2.17713,-0.52826 +2.39390,0.78471,-1.34243,-1.63839,-0.95687,2.17710,-0.52823 +2.39497,0.78475,-1.34275,-1.63780,-0.95712,2.17707,-0.52820 +2.39603,0.78479,-1.34306,-1.63722,-0.95737,2.17704,-0.52816 +2.39710,0.78483,-1.34337,-1.63665,-0.95761,2.17701,-0.52813 +2.39817,0.78486,-1.34353,-1.63636,-0.95774,2.17700,-0.52811 +2.39923,0.78494,-1.34390,-1.63566,-0.95803,2.17694,-0.52804 +2.40030,0.78502,-1.34426,-1.63497,-0.95832,2.17689,-0.52798 +2.40136,0.78510,-1.34461,-1.63429,-0.95861,2.17684,-0.52791 +2.40243,0.78518,-1.34496,-1.63362,-0.95889,2.17678,-0.52785 +2.40350,0.78526,-1.34530,-1.63297,-0.95917,2.17673,-0.52778 +2.40456,0.78533,-1.34564,-1.63232,-0.95944,2.17668,-0.52772 +2.40563,0.78541,-1.34597,-1.63169,-0.95971,2.17663,-0.52767 +2.40670,0.78548,-1.34629,-1.63107,-0.95998,2.17659,-0.52761 +2.40776,0.78555,-1.34661,-1.63046,-0.96024,2.17654,-0.52755 +2.40883,0.78561,-1.34693,-1.62985,-0.96050,2.17650,-0.52750 +2.40990,0.78568,-1.34724,-1.62926,-0.96075,2.17645,-0.52744 +2.41096,0.78574,-1.34754,-1.62868,-0.96100,2.17641,-0.52739 +2.41203,0.78581,-1.34784,-1.62811,-0.96124,2.17637,-0.52734 +2.41309,0.78587,-1.34813,-1.62754,-0.96149,2.17633,-0.52729 +2.41416,0.78588,-1.34817,-1.62747,-0.96152,2.17632,-0.52728 +2.41523,0.78599,-1.34853,-1.62676,-0.96182,2.17624,-0.52719 +2.41629,0.78610,-1.34888,-1.62606,-0.96212,2.17617,-0.52710 +2.41736,0.78620,-1.34923,-1.62537,-0.96241,2.17610,-0.52701 +2.41843,0.78631,-1.34957,-1.62469,-0.96270,2.17603,-0.52693 +2.41949,0.78641,-1.34991,-1.62402,-0.96298,2.17596,-0.52685 +2.42056,0.78651,-1.35024,-1.62337,-0.96326,2.17590,-0.52676 +2.42163,0.78660,-1.35056,-1.62272,-0.96354,2.17583,-0.52669 +2.42269,0.78670,-1.35088,-1.62209,-0.96381,2.17577,-0.52661 +2.42376,0.78679,-1.35119,-1.62147,-0.96407,2.17571,-0.52653 +2.42482,0.78688,-1.35150,-1.62086,-0.96434,2.17565,-0.52646 +2.42589,0.78697,-1.35180,-1.62025,-0.96460,2.17559,-0.52639 +2.42696,0.78705,-1.35210,-1.61966,-0.96485,2.17553,-0.52632 +2.42802,0.78714,-1.35240,-1.61908,-0.96510,2.17547,-0.52625 +2.42909,0.78722,-1.35268,-1.61850,-0.96535,2.17542,-0.52618 +2.43016,0.78730,-1.35297,-1.61794,-0.96559,2.17536,-0.52611 +2.43122,0.78734,-1.35309,-1.61770,-0.96570,2.17533,-0.52608 +2.43229,0.78748,-1.35346,-1.61693,-0.96602,2.17524,-0.52596 +2.43335,0.78763,-1.35383,-1.61617,-0.96634,2.17514,-0.52584 +2.43442,0.78777,-1.35419,-1.61543,-0.96666,2.17504,-0.52572 +2.43549,0.78790,-1.35454,-1.61470,-0.96697,2.17495,-0.52561 +2.43655,0.78804,-1.35489,-1.61398,-0.96728,2.17486,-0.52550 +2.43762,0.78817,-1.35524,-1.61327,-0.96758,2.17477,-0.52539 +2.43869,0.78830,-1.35557,-1.61258,-0.96787,2.17468,-0.52528 +2.43975,0.78842,-1.35591,-1.61189,-0.96817,2.17460,-0.52517 +2.44082,0.78855,-1.35623,-1.61122,-0.96846,2.17451,-0.52507 +2.44189,0.78867,-1.35655,-1.61056,-0.96874,2.17443,-0.52497 +2.44295,0.78879,-1.35687,-1.60991,-0.96902,2.17435,-0.52487 +2.44402,0.78890,-1.35718,-1.60927,-0.96929,2.17427,-0.52478 +2.44508,0.78902,-1.35749,-1.60864,-0.96956,2.17419,-0.52468 +2.44615,0.78913,-1.35779,-1.60802,-0.96983,2.17412,-0.52459 +2.44722,0.78923,-1.35808,-1.60741,-0.97009,2.17404,-0.52450 +2.44828,0.78934,-1.35837,-1.60682,-0.97035,2.17397,-0.52441 +2.44935,0.78945,-1.35866,-1.60623,-0.97061,2.17390,-0.52433 +2.45042,0.78955,-1.35894,-1.60565,-0.97086,2.17383,-0.52424 +2.45148,0.78965,-1.35921,-1.60508,-0.97110,2.17376,-0.52416 +2.45255,0.78974,-1.35948,-1.60452,-0.97135,2.17370,-0.52408 +2.45361,0.78978,-1.35957,-1.60433,-0.97143,2.17367,-0.52405 +2.45468,0.78997,-1.35995,-1.60353,-0.97177,2.17354,-0.52389 +2.45575,0.79015,-1.36031,-1.60274,-0.97211,2.17342,-0.52374 +2.45681,0.79033,-1.36067,-1.60196,-0.97244,2.17330,-0.52359 +2.45788,0.79050,-1.36102,-1.60120,-0.97277,2.17318,-0.52344 +2.45895,0.79067,-1.36137,-1.60045,-0.97309,2.17306,-0.52330 +2.46001,0.79084,-1.36171,-1.59971,-0.97341,2.17294,-0.52316 +2.46108,0.79100,-1.36205,-1.59899,-0.97372,2.17283,-0.52302 +2.46215,0.79116,-1.36238,-1.59828,-0.97402,2.17272,-0.52289 +2.46321,0.79132,-1.36270,-1.59757,-0.97433,2.17261,-0.52276 +2.46428,0.79148,-1.36302,-1.59688,-0.97462,2.17251,-0.52263 +2.46534,0.79163,-1.36334,-1.59621,-0.97492,2.17240,-0.52250 +2.46641,0.79177,-1.36365,-1.59554,-0.97521,2.17230,-0.52238 +2.46748,0.79192,-1.36395,-1.59488,-0.97549,2.17220,-0.52226 +2.46854,0.79206,-1.36425,-1.59424,-0.97577,2.17211,-0.52214 +2.46961,0.79220,-1.36454,-1.59360,-0.97605,2.17201,-0.52202 +2.47068,0.79234,-1.36483,-1.59298,-0.97632,2.17192,-0.52191 +2.47174,0.79247,-1.36512,-1.59237,-0.97658,2.17183,-0.52180 +2.47281,0.79260,-1.36540,-1.59176,-0.97685,2.17174,-0.52169 +2.47388,0.79273,-1.36567,-1.59117,-0.97711,2.17165,-0.52158 +2.47494,0.79285,-1.36594,-1.59059,-0.97736,2.17156,-0.52148 +2.47601,0.79298,-1.36621,-1.59001,-0.97761,2.17148,-0.52138 +2.47707,0.79310,-1.36647,-1.58945,-0.97786,2.17139,-0.52128 +2.47814,0.79321,-1.36673,-1.58890,-0.97810,2.17131,-0.52118 +2.47921,0.79327,-1.36684,-1.58866,-0.97821,2.17128,-0.52114 +2.48027,0.79345,-1.36716,-1.58793,-0.97852,2.17115,-0.52098 +2.48134,0.79362,-1.36749,-1.58722,-0.97883,2.17103,-0.52084 +2.48241,0.79380,-1.36780,-1.58651,-0.97913,2.17091,-0.52069 +2.48347,0.79397,-1.36812,-1.58582,-0.97943,2.17079,-0.52055 +2.48454,0.79413,-1.36842,-1.58514,-0.97973,2.17068,-0.52041 +2.48560,0.79430,-1.36872,-1.58448,-0.98002,2.17057,-0.52027 +2.48667,0.79446,-1.36902,-1.58382,-0.98030,2.17046,-0.52014 +2.48774,0.79461,-1.36931,-1.58317,-0.98059,2.17035,-0.52001 +2.48880,0.79477,-1.36960,-1.58254,-0.98086,2.17024,-0.51988 +2.48987,0.79492,-1.36988,-1.58191,-0.98114,2.17014,-0.51976 +2.49094,0.79506,-1.37016,-1.58130,-0.98140,2.17004,-0.51963 +2.49200,0.79521,-1.37043,-1.58069,-0.98167,2.16994,-0.51951 +2.49307,0.79535,-1.37070,-1.58010,-0.98193,2.16984,-0.51940 +2.49414,0.79549,-1.37096,-1.57952,-0.98219,2.16974,-0.51928 +2.49520,0.79562,-1.37122,-1.57894,-0.98244,2.16965,-0.51917 +2.49627,0.79576,-1.37148,-1.57838,-0.98269,2.16956,-0.51906 +2.49733,0.79589,-1.37173,-1.57782,-0.98293,2.16947,-0.51895 +2.49840,0.79599,-1.37194,-1.57737,-0.98313,2.16939,-0.51886 +2.49947,0.79617,-1.37225,-1.57667,-0.98343,2.16927,-0.51871 +2.50053,0.79635,-1.37255,-1.57598,-0.98373,2.16915,-0.51856 +2.50160,0.79652,-1.37285,-1.57531,-0.98402,2.16903,-0.51842 +2.50267,0.79669,-1.37315,-1.57465,-0.98431,2.16891,-0.51828 +2.50373,0.79685,-1.37344,-1.57399,-0.98460,2.16880,-0.51814 +2.50480,0.79702,-1.37373,-1.57335,-0.98488,2.16869,-0.51801 +2.50586,0.79718,-1.37401,-1.57272,-0.98515,2.16858,-0.51787 +2.50693,0.79733,-1.37429,-1.57210,-0.98543,2.16847,-0.51774 +2.50800,0.79748,-1.37456,-1.57149,-0.98569,2.16836,-0.51762 +2.50906,0.79763,-1.37483,-1.57089,-0.98596,2.16826,-0.51749 +2.51013,0.79778,-1.37509,-1.57030,-0.98621,2.16816,-0.51737 +2.51120,0.79792,-1.37535,-1.56972,-0.98647,2.16806,-0.51725 +2.51226,0.79806,-1.37560,-1.56915,-0.98672,2.16796,-0.51713 +2.51333,0.79820,-1.37585,-1.56859,-0.98697,2.16787,-0.51702 +2.51440,0.79834,-1.37610,-1.56804,-0.98721,2.16777,-0.51691 +2.51546,0.79841,-1.37623,-1.56774,-0.98734,2.16772,-0.51684 +2.51653,0.79862,-1.37657,-1.56697,-0.98767,2.16758,-0.51667 +2.51759,0.79882,-1.37691,-1.56621,-0.98800,2.16743,-0.51650 +2.51866,0.79902,-1.37723,-1.56547,-0.98832,2.16730,-0.51633 +2.51973,0.79922,-1.37756,-1.56473,-0.98864,2.16716,-0.51617 +2.52079,0.79941,-1.37788,-1.56401,-0.98895,2.16703,-0.51601 +2.52186,0.79960,-1.37819,-1.56331,-0.98926,2.16690,-0.51585 +2.52293,0.79978,-1.37850,-1.56261,-0.98957,2.16677,-0.51570 +2.52399,0.79997,-1.37880,-1.56192,-0.98986,2.16664,-0.51554 +2.52506,0.80014,-1.37910,-1.56125,-0.99016,2.16652,-0.51540 +2.52612,0.80032,-1.37939,-1.56059,-0.99045,2.16640,-0.51525 +2.52719,0.80049,-1.37968,-1.55993,-0.99073,2.16628,-0.51511 +2.52826,0.80065,-1.37996,-1.55929,-0.99101,2.16617,-0.51497 +2.52932,0.80082,-1.38024,-1.55866,-0.99129,2.16605,-0.51483 +2.53039,0.80098,-1.38051,-1.55804,-0.99156,2.16594,-0.51470 +2.53146,0.80113,-1.38078,-1.55743,-0.99183,2.16583,-0.51457 +2.53252,0.80129,-1.38105,-1.55683,-0.99209,2.16572,-0.51444 +2.53359,0.80144,-1.38131,-1.55625,-0.99235,2.16562,-0.51432 +2.53466,0.80159,-1.38157,-1.55567,-0.99261,2.16552,-0.51419 +2.53572,0.80173,-1.38182,-1.55510,-0.99286,2.16541,-0.51407 +2.53679,0.80188,-1.38207,-1.55453,-0.99311,2.16532,-0.51395 +2.53785,0.80201,-1.38231,-1.55398,-0.99335,2.16522,-0.51384 +2.53892,0.80207,-1.38241,-1.55376,-0.99345,2.16518,-0.51379 +2.53999,0.80222,-1.38266,-1.55320,-0.99370,2.16508,-0.51367 +2.54105,0.80236,-1.38290,-1.55264,-0.99394,2.16498,-0.51355 +2.54212,0.80250,-1.38314,-1.55209,-0.99419,2.16488,-0.51343 +2.54319,0.80252,-1.38317,-1.55204,-0.99421,2.16487,-0.51342 +2.54425,0.80266,-1.38341,-1.55149,-0.99446,2.16477,-0.51330 +2.54532,0.80275,-1.38355,-1.55116,-0.99460,2.16471,-0.51323 +2.54639,0.80289,-1.38379,-1.55061,-0.99484,2.16461,-0.51311 +2.54745,0.80294,-1.38389,-1.55040,-0.99494,2.16457,-0.51307 +2.54852,0.80269,-1.38365,-1.55099,-0.99472,2.16475,-0.51329 +2.54958,0.80244,-1.38343,-1.55156,-0.99449,2.16492,-0.51350 +2.55065,0.80220,-1.38320,-1.55213,-0.99428,2.16508,-0.51371 +2.55172,0.80196,-1.38298,-1.55269,-0.99406,2.16524,-0.51391 +2.55278,0.80173,-1.38276,-1.55324,-0.99385,2.16540,-0.51411 +2.55385,0.80150,-1.38255,-1.55378,-0.99364,2.16556,-0.51431 +2.55492,0.80128,-1.38234,-1.55431,-0.99344,2.16572,-0.51450 +2.55598,0.80106,-1.38213,-1.55483,-0.99324,2.16587,-0.51469 +2.55705,0.80084,-1.38193,-1.55534,-0.99304,2.16602,-0.51488 +2.55811,0.80063,-1.38173,-1.55585,-0.99285,2.16616,-0.51506 +2.55918,0.80043,-1.38155,-1.55631,-0.99267,2.16630,-0.51522 +2.56025,0.80017,-1.38129,-1.55695,-0.99242,2.16648,-0.51545 +2.56131,0.79991,-1.38104,-1.55758,-0.99217,2.16666,-0.51567 +2.56238,0.79966,-1.38080,-1.55820,-0.99192,2.16683,-0.51589 +2.56345,0.79941,-1.38055,-1.55881,-0.99168,2.16700,-0.51610 +2.56451,0.79916,-1.38032,-1.55941,-0.99145,2.16717,-0.51631 +2.56558,0.79892,-1.38008,-1.56000,-0.99122,2.16734,-0.51652 +2.56665,0.79869,-1.37985,-1.56057,-0.99099,2.16750,-0.51672 +2.56771,0.79845,-1.37963,-1.56114,-0.99076,2.16766,-0.51692 +2.56878,0.79823,-1.37941,-1.56170,-0.99054,2.16782,-0.51712 +2.56984,0.79800,-1.37919,-1.56225,-0.99032,2.16797,-0.51731 +2.57091,0.79778,-1.37898,-1.56279,-0.99011,2.16812,-0.51750 +2.57198,0.79757,-1.37877,-1.56332,-0.98990,2.16827,-0.51768 +2.57304,0.79736,-1.37856,-1.56384,-0.98969,2.16842,-0.51786 +2.57411,0.79715,-1.37836,-1.56435,-0.98949,2.16856,-0.51804 +2.57518,0.79695,-1.37816,-1.56485,-0.98929,2.16870,-0.51822 +2.57624,0.79687,-1.37808,-1.56504,-0.98922,2.16875,-0.51828 +2.57731,0.79652,-1.37775,-1.56590,-0.98886,2.16900,-0.51858 +2.57837,0.79618,-1.37742,-1.56675,-0.98852,2.16923,-0.51888 +2.57944,0.79584,-1.37709,-1.56759,-0.98818,2.16947,-0.51916 +2.58051,0.79551,-1.37677,-1.56841,-0.98785,2.16969,-0.51945 +2.58157,0.79518,-1.37646,-1.56921,-0.98752,2.16992,-0.51973 +2.58264,0.79486,-1.37615,-1.57000,-0.98720,2.17014,-0.52000 +2.58371,0.79455,-1.37585,-1.57078,-0.98688,2.17036,-0.52027 +2.58477,0.79424,-1.37555,-1.57154,-0.98657,2.17057,-0.52054 +2.58584,0.79393,-1.37526,-1.57229,-0.98626,2.17078,-0.52079 +2.58691,0.79364,-1.37497,-1.57303,-0.98596,2.17098,-0.52105 +2.58797,0.79335,-1.37469,-1.57376,-0.98566,2.17119,-0.52130 +2.58904,0.79306,-1.37441,-1.57447,-0.98537,2.17138,-0.52155 +2.59010,0.79278,-1.37414,-1.57517,-0.98508,2.17158,-0.52179 +2.59117,0.79250,-1.37387,-1.57586,-0.98480,2.17177,-0.52202 +2.59224,0.79223,-1.37361,-1.57653,-0.98452,2.17196,-0.52226 +2.59330,0.79196,-1.37335,-1.57719,-0.98425,2.17214,-0.52248 +2.59437,0.79170,-1.37310,-1.57785,-0.98398,2.17232,-0.52271 +2.59544,0.79145,-1.37285,-1.57849,-0.98372,2.17250,-0.52293 +2.59650,0.79119,-1.37260,-1.57912,-0.98346,2.17267,-0.52315 +2.59757,0.79095,-1.37236,-1.57974,-0.98321,2.17284,-0.52336 +2.59864,0.79070,-1.37213,-1.58034,-0.98296,2.17301,-0.52357 +2.59970,0.79046,-1.37189,-1.58094,-0.98271,2.17318,-0.52377 +2.60077,0.79023,-1.37167,-1.58153,-0.98247,2.17334,-0.52397 +2.60183,0.79000,-1.37144,-1.58210,-0.98223,2.17350,-0.52417 +2.60290,0.78977,-1.37122,-1.58267,-0.98199,2.17365,-0.52436 +2.60397,0.78955,-1.37101,-1.58323,-0.98176,2.17381,-0.52455 +2.60503,0.78934,-1.37079,-1.58377,-0.98154,2.17396,-0.52474 +2.60610,0.78912,-1.37058,-1.58431,-0.98131,2.17411,-0.52492 +2.60717,0.78891,-1.37038,-1.58484,-0.98110,2.17425,-0.52510 +2.60823,0.78871,-1.37018,-1.58536,-0.98088,2.17439,-0.52528 +2.60930,0.78850,-1.36998,-1.58587,-0.98067,2.17453,-0.52545 +2.61036,0.78831,-1.36979,-1.58637,-0.98046,2.17467,-0.52562 +2.61143,0.78828,-1.36976,-1.58644,-0.98043,2.17469,-0.52565 +2.61250,0.78800,-1.36950,-1.58712,-0.98015,2.17488,-0.52589 +2.61356,0.78773,-1.36924,-1.58779,-0.97987,2.17507,-0.52612 +2.61463,0.78746,-1.36899,-1.58845,-0.97959,2.17525,-0.52635 +2.61570,0.78720,-1.36875,-1.58909,-0.97933,2.17543,-0.52657 +2.61676,0.78694,-1.36851,-1.58973,-0.97906,2.17561,-0.52679 +2.61783,0.78669,-1.36827,-1.59035,-0.97880,2.17579,-0.52701 +2.61890,0.78644,-1.36803,-1.59096,-0.97854,2.17596,-0.52722 +2.61996,0.78620,-1.36780,-1.59156,-0.97829,2.17612,-0.52743 +2.62103,0.78596,-1.36758,-1.59215,-0.97804,2.17629,-0.52764 +2.62209,0.78573,-1.36736,-1.59274,-0.97780,2.17645,-0.52784 +2.62316,0.78550,-1.36714,-1.59331,-0.97756,2.17661,-0.52804 +2.62423,0.78527,-1.36693,-1.59387,-0.97733,2.17677,-0.52823 +2.62529,0.78505,-1.36672,-1.59442,-0.97709,2.17692,-0.52842 +2.62636,0.78483,-1.36651,-1.59496,-0.97687,2.17707,-0.52861 +2.62743,0.78462,-1.36631,-1.59549,-0.97664,2.17722,-0.52879 +2.62849,0.78441,-1.36611,-1.59601,-0.97642,2.17736,-0.52897 +2.62956,0.78420,-1.36591,-1.59653,-0.97621,2.17751,-0.52915 +2.63062,0.78400,-1.36572,-1.59703,-0.97599,2.17765,-0.52933 +2.63169,0.78384,-1.36556,-1.59745,-0.97582,2.17776,-0.52947 +2.63276,0.78357,-1.36532,-1.59808,-0.97555,2.17794,-0.52969 +2.63382,0.78332,-1.36509,-1.59871,-0.97529,2.17812,-0.52991 +2.63489,0.78307,-1.36486,-1.59932,-0.97503,2.17829,-0.53013 +2.63596,0.78282,-1.36463,-1.59993,-0.97477,2.17846,-0.53034 +2.63702,0.78258,-1.36441,-1.60052,-0.97452,2.17863,-0.53055 +2.63809,0.78234,-1.36419,-1.60110,-0.97428,2.17879,-0.53075 +2.63916,0.78211,-1.36397,-1.60168,-0.97404,2.17896,-0.53096 +2.64022,0.78188,-1.36376,-1.60224,-0.97380,2.17911,-0.53115 +2.64129,0.78165,-1.36355,-1.60279,-0.97356,2.17927,-0.53135 +2.64235,0.78143,-1.36335,-1.60334,-0.97333,2.17942,-0.53154 +2.64342,0.78122,-1.36315,-1.60387,-0.97311,2.17957,-0.53172 +2.64449,0.78100,-1.36295,-1.60439,-0.97289,2.17972,-0.53191 +2.64555,0.78079,-1.36276,-1.60491,-0.97267,2.17986,-0.53209 +2.64662,0.78059,-1.36257,-1.60542,-0.97245,2.18001,-0.53226 +2.64769,0.78039,-1.36238,-1.60591,-0.97224,2.18015,-0.53244 +2.64875,0.78034,-1.36234,-1.60602,-0.97219,2.18018,-0.53248 +2.64982,0.78010,-1.36213,-1.60660,-0.97195,2.18034,-0.53269 +2.65089,0.77986,-1.36192,-1.60716,-0.97171,2.18051,-0.53289 +2.65195,0.77962,-1.36172,-1.60772,-0.97147,2.18067,-0.53310 +2.65302,0.77939,-1.36152,-1.60827,-0.97124,2.18083,-0.53329 +2.65408,0.77917,-1.36132,-1.60880,-0.97101,2.18099,-0.53349 +2.65515,0.77894,-1.36113,-1.60933,-0.97078,2.18114,-0.53368 +2.65622,0.77873,-1.36094,-1.60985,-0.97056,2.18129,-0.53387 +2.65728,0.77851,-1.36076,-1.61036,-0.97035,2.18144,-0.53406 +2.65835,0.77830,-1.36057,-1.61086,-0.97013,2.18159,-0.53424 +2.65942,0.77810,-1.36039,-1.61135,-0.96992,2.18173,-0.53442 +2.66048,0.77805,-1.36035,-1.61146,-0.96987,2.18176,-0.53446 +2.66155,0.77777,-1.36014,-1.61208,-0.96961,2.18195,-0.53470 +2.66261,0.77750,-1.35993,-1.61269,-0.96935,2.18214,-0.53493 +2.66368,0.77723,-1.35972,-1.61328,-0.96909,2.18233,-0.53516 +2.66475,0.77696,-1.35951,-1.61387,-0.96884,2.18251,-0.53539 +2.66581,0.77671,-1.35931,-1.61445,-0.96859,2.18269,-0.53562 +2.66688,0.77645,-1.35912,-1.61501,-0.96835,2.18286,-0.53583 +2.66795,0.77620,-1.35892,-1.61557,-0.96811,2.18303,-0.53605 +2.66901,0.77596,-1.35873,-1.61612,-0.96788,2.18320,-0.53626 +2.67008,0.77572,-1.35855,-1.61665,-0.96765,2.18337,-0.53647 +2.67115,0.77548,-1.35836,-1.61718,-0.96742,2.18353,-0.53667 +2.67221,0.77525,-1.35818,-1.61770,-0.96720,2.18369,-0.53687 +2.67328,0.77502,-1.35800,-1.61821,-0.96698,2.18385,-0.53707 +2.67434,0.77480,-1.35783,-1.61871,-0.96676,2.18400,-0.53726 +2.67541,0.77458,-1.35766,-1.61920,-0.96655,2.18415,-0.53745 +2.67648,0.77437,-1.35749,-1.61968,-0.96634,2.18430,-0.53764 +2.67754,0.77431,-1.35745,-1.61979,-0.96629,2.18434,-0.53768 +2.67861,0.77401,-1.35726,-1.62041,-0.96603,2.18454,-0.53795 +2.67968,0.77371,-1.35707,-1.62101,-0.96577,2.18475,-0.53820 +2.68074,0.77342,-1.35688,-1.62160,-0.96551,2.18495,-0.53846 +2.68181,0.77314,-1.35669,-1.62218,-0.96526,2.18515,-0.53871 +2.68287,0.77285,-1.35651,-1.62275,-0.96501,2.18534,-0.53895 +2.68394,0.77258,-1.35633,-1.62331,-0.96476,2.18553,-0.53919 +2.68501,0.77231,-1.35615,-1.62386,-0.96452,2.18572,-0.53943 +2.68607,0.77204,-1.35598,-1.62440,-0.96429,2.18590,-0.53966 +2.68714,0.77178,-1.35581,-1.62494,-0.96406,2.18608,-0.53988 +2.68821,0.77152,-1.35564,-1.62546,-0.96383,2.18626,-0.54011 +2.68927,0.77127,-1.35548,-1.62597,-0.96361,2.18643,-0.54033 +2.69034,0.77102,-1.35532,-1.62647,-0.96339,2.18660,-0.54054 +2.69141,0.77078,-1.35516,-1.62697,-0.96317,2.18677,-0.54075 +2.69247,0.77054,-1.35500,-1.62746,-0.96296,2.18694,-0.54096 +2.69354,0.77030,-1.35485,-1.62793,-0.96275,2.18710,-0.54117 +2.69460,0.77007,-1.35470,-1.62840,-0.96254,2.18726,-0.54137 +2.69567,0.76997,-1.35464,-1.62860,-0.96246,2.18733,-0.54145 +2.69674,0.76966,-1.35447,-1.62919,-0.96220,2.18754,-0.54172 +2.69780,0.76935,-1.35430,-1.62976,-0.96195,2.18775,-0.54199 +2.69887,0.76905,-1.35413,-1.63032,-0.96170,2.18796,-0.54225 +2.69994,0.76876,-1.35397,-1.63088,-0.96146,2.18816,-0.54251 +2.70100,0.76847,-1.35381,-1.63142,-0.96122,2.18836,-0.54276 +2.70207,0.76818,-1.35365,-1.63196,-0.96099,2.18855,-0.54301 +2.70313,0.76790,-1.35350,-1.63248,-0.96076,2.18875,-0.54325 +2.70420,0.76763,-1.35334,-1.63300,-0.96053,2.18894,-0.54349 +2.70527,0.76736,-1.35320,-1.63350,-0.96031,2.18912,-0.54372 +2.70633,0.76710,-1.35305,-1.63400,-0.96009,2.18930,-0.54396 +2.70740,0.76684,-1.35290,-1.63449,-0.95987,2.18948,-0.54418 +2.70847,0.76658,-1.35276,-1.63497,-0.95966,2.18966,-0.54440 +2.70953,0.76633,-1.35262,-1.63544,-0.95945,2.18983,-0.54462 +2.71060,0.76608,-1.35249,-1.63590,-0.95925,2.19000,-0.54484 +2.71167,0.76584,-1.35235,-1.63636,-0.95905,2.19016,-0.54505 +2.71273,0.76576,-1.35232,-1.63650,-0.95899,2.19022,-0.54512 +2.71380,0.76547,-1.35219,-1.63700,-0.95876,2.19042,-0.54538 +2.71486,0.76517,-1.35206,-1.63749,-0.95854,2.19062,-0.54563 +2.71593,0.76489,-1.35194,-1.63797,-0.95833,2.19082,-0.54588 +2.71700,0.76460,-1.35182,-1.63845,-0.95812,2.19101,-0.54613 +2.71806,0.76433,-1.35170,-1.63891,-0.95791,2.19120,-0.54637 +2.71913,0.76405,-1.35159,-1.63937,-0.95771,2.19139,-0.54661 +2.72020,0.76379,-1.35147,-1.63982,-0.95750,2.19158,-0.54684 +2.72126,0.76352,-1.35136,-1.64026,-0.95731,2.19176,-0.54707 +2.72233,0.76327,-1.35125,-1.64069,-0.95711,2.19193,-0.54730 +2.72340,0.76323,-1.35124,-1.64075,-0.95709,2.19196,-0.54733 +2.72446,0.76285,-1.35115,-1.64127,-0.95685,2.19222,-0.54767 +2.72553,0.76247,-1.35106,-1.64179,-0.95661,2.19248,-0.54799 +2.72659,0.76210,-1.35097,-1.64231,-0.95637,2.19273,-0.54832 +2.72766,0.76174,-1.35088,-1.64281,-0.95614,2.19298,-0.54863 +2.72873,0.76138,-1.35079,-1.64330,-0.95592,2.19322,-0.54894 +2.72979,0.76104,-1.35071,-1.64378,-0.95569,2.19346,-0.54925 +2.73086,0.76069,-1.35062,-1.64426,-0.95547,2.19369,-0.54955 +2.73193,0.76036,-1.35054,-1.64472,-0.95526,2.19392,-0.54985 +2.73299,0.76002,-1.35046,-1.64518,-0.95505,2.19415,-0.55014 +2.73406,0.75970,-1.35038,-1.64563,-0.95484,2.19437,-0.55042 +2.73512,0.75938,-1.35031,-1.64607,-0.95464,2.19459,-0.55070 +2.73619,0.75907,-1.35023,-1.64651,-0.95444,2.19481,-0.55098 +2.73726,0.75876,-1.35016,-1.64693,-0.95425,2.19502,-0.55125 +2.73832,0.75846,-1.35008,-1.64735,-0.95405,2.19522,-0.55151 +2.73939,0.75816,-1.35001,-1.64776,-0.95387,2.19543,-0.55178 +2.74046,0.75787,-1.34994,-1.64816,-0.95368,2.19563,-0.55203 +2.74152,0.75758,-1.34987,-1.64856,-0.95350,2.19582,-0.55228 +2.74259,0.75746,-1.34985,-1.64872,-0.95343,2.19591,-0.55239 +2.74366,0.75713,-1.34979,-1.64913,-0.95323,2.19613,-0.55268 +2.74472,0.75681,-1.34974,-1.64954,-0.95304,2.19635,-0.55296 +2.74579,0.75649,-1.34969,-1.64994,-0.95286,2.19657,-0.55324 +2.74685,0.75618,-1.34964,-1.65033,-0.95267,2.19678,-0.55352 +2.74792,0.75587,-1.34959,-1.65072,-0.95249,2.19699,-0.55379 +2.74899,0.75557,-1.34954,-1.65110,-0.95232,2.19720,-0.55405 +2.75005,0.75533,-1.34950,-1.65140,-0.95218,2.19736,-0.55427 +2.75112,0.75500,-1.34947,-1.65178,-0.95199,2.19759,-0.55456 +2.75219,0.75467,-1.34945,-1.65215,-0.95182,2.19782,-0.55485 +2.75325,0.75434,-1.34942,-1.65252,-0.95164,2.19804,-0.55514 +2.75432,0.75402,-1.34939,-1.65288,-0.95147,2.19826,-0.55542 +2.75538,0.75371,-1.34936,-1.65323,-0.95130,2.19847,-0.55569 +2.75645,0.75352,-1.34935,-1.65344,-0.95120,2.19860,-0.55586 +2.75752,0.75315,-1.34938,-1.65378,-0.95103,2.19885,-0.55619 +2.75858,0.75278,-1.34940,-1.65411,-0.95087,2.19910,-0.55652 +2.75965,0.75242,-1.34943,-1.65443,-0.95070,2.19935,-0.55683 +2.76072,0.75207,-1.34945,-1.65475,-0.95055,2.19959,-0.55715 +2.76178,0.75172,-1.34947,-1.65506,-0.95039,2.19983,-0.55745 +2.76285,0.75138,-1.34949,-1.65536,-0.95024,2.20006,-0.55775 +2.76392,0.75105,-1.34952,-1.65566,-0.95009,2.20029,-0.55805 +2.76498,0.75091,-1.34953,-1.65578,-0.95003,2.20038,-0.55817 +2.76605,0.75050,-1.34963,-1.65603,-0.94988,2.20066,-0.55853 +2.76711,0.75011,-1.34972,-1.65628,-0.94974,2.20093,-0.55888 +2.76818,0.74972,-1.34981,-1.65653,-0.94961,2.20120,-0.55923 +2.76925,0.74933,-1.34990,-1.65677,-0.94947,2.20146,-0.55957 +2.77031,0.74896,-1.34999,-1.65700,-0.94934,2.20171,-0.55990 +2.77138,0.74858,-1.35008,-1.65723,-0.94921,2.20197,-0.56023 +2.77245,0.74822,-1.35017,-1.65746,-0.94908,2.20221,-0.56055 +2.77351,0.74786,-1.35025,-1.65768,-0.94896,2.20246,-0.56087 +2.77458,0.74782,-1.35027,-1.65770,-0.94895,2.20248,-0.56091 +2.77565,0.74742,-1.35042,-1.65787,-0.94884,2.20276,-0.56127 +2.77671,0.74702,-1.35057,-1.65803,-0.94873,2.20303,-0.56162 +2.77778,0.74663,-1.35072,-1.65819,-0.94863,2.20330,-0.56197 +2.77884,0.74624,-1.35086,-1.65834,-0.94853,2.20356,-0.56231 +2.77991,0.74586,-1.35100,-1.65849,-0.94843,2.20382,-0.56265 +2.78098,0.74549,-1.35114,-1.65864,-0.94833,2.20407,-0.56298 +2.78204,0.74545,-1.35118,-1.65863,-0.94833,2.20410,-0.56302 +2.78311,0.74502,-1.35152,-1.65852,-0.94831,2.20439,-0.56340 +2.78418,0.74459,-1.35186,-1.65841,-0.94830,2.20468,-0.56378 +2.78524,0.74417,-1.35220,-1.65831,-0.94829,2.20497,-0.56415 +2.78631,0.74376,-1.35252,-1.65820,-0.94828,2.20525,-0.56452 +2.78737,0.74336,-1.35285,-1.65810,-0.94827,2.20552,-0.56488 +2.78844,0.74296,-1.35316,-1.65799,-0.94826,2.20579,-0.56523 +2.78951,0.74257,-1.35347,-1.65789,-0.94825,2.20606,-0.56558 +2.79057,0.74219,-1.35378,-1.65779,-0.94824,2.20632,-0.56592 +2.79164,0.74181,-1.35408,-1.65769,-0.94824,2.20658,-0.56626 +2.79271,0.74144,-1.35437,-1.65759,-0.94823,2.20683,-0.56659 +2.79377,0.74133,-1.35448,-1.65753,-0.94824,2.20690,-0.56669 +2.79484,0.74098,-1.35494,-1.65716,-0.94834,2.20714,-0.56700 +2.79591,0.74063,-1.35539,-1.65679,-0.94843,2.20738,-0.56732 +2.79697,0.74029,-1.35583,-1.65643,-0.94852,2.20761,-0.56762 +2.79804,0.73995,-1.35627,-1.65607,-0.94861,2.20784,-0.56792 +2.79910,0.73962,-1.35670,-1.65572,-0.94871,2.20807,-0.56822 +2.80017,0.73929,-1.35712,-1.65538,-0.94880,2.20829,-0.56851 +2.80124,0.73897,-1.35753,-1.65504,-0.94889,2.20851,-0.56880 +2.80230,0.73866,-1.35794,-1.65470,-0.94898,2.20872,-0.56908 +2.80337,0.73835,-1.35834,-1.65437,-0.94907,2.20893,-0.56935 +2.80444,0.73805,-1.35873,-1.65405,-0.94916,2.20914,-0.56963 +2.80550,0.73775,-1.35912,-1.65373,-0.94924,2.20935,-0.56990 +2.80657,0.73772,-1.35917,-1.65366,-0.94926,2.20936,-0.56992 +2.80763,0.73744,-1.35975,-1.65304,-0.94946,2.20956,-0.57017 +2.80870,0.73716,-1.36031,-1.65242,-0.94966,2.20975,-0.57042 +2.80977,0.73688,-1.36086,-1.65181,-0.94985,2.20994,-0.57067 +2.81083,0.73661,-1.36140,-1.65122,-0.95005,2.21012,-0.57091 +2.81190,0.73635,-1.36193,-1.65063,-0.95024,2.21030,-0.57115 +2.81297,0.73609,-1.36245,-1.65005,-0.95042,2.21048,-0.57138 +2.81403,0.73583,-1.36296,-1.64948,-0.95061,2.21065,-0.57161 +2.81510,0.73558,-1.36347,-1.64892,-0.95079,2.21083,-0.57184 +2.81617,0.73534,-1.36396,-1.64837,-0.95098,2.21100,-0.57206 +2.81723,0.73509,-1.36445,-1.64783,-0.95116,2.21116,-0.57228 +2.81830,0.73485,-1.36493,-1.64730,-0.95133,2.21133,-0.57250 +2.81936,0.73462,-1.36540,-1.64677,-0.95151,2.21149,-0.57271 +2.82043,0.73439,-1.36586,-1.64626,-0.95168,2.21165,-0.57292 +2.82150,0.73416,-1.36631,-1.64575,-0.95186,2.21180,-0.57313 +2.82256,0.73393,-1.36676,-1.64525,-0.95203,2.21196,-0.57333 +2.82363,0.73371,-1.36720,-1.64476,-0.95219,2.21211,-0.57353 +2.82470,0.73350,-1.36763,-1.64427,-0.95236,2.21226,-0.57373 +2.82576,0.73328,-1.36805,-1.64380,-0.95252,2.21240,-0.57392 +2.82683,0.73307,-1.36847,-1.64333,-0.95269,2.21255,-0.57411 +2.82790,0.73287,-1.36887,-1.64287,-0.95285,2.21269,-0.57430 +2.82896,0.73279,-1.36906,-1.64265,-0.95292,2.21274,-0.57437 +2.83003,0.73262,-1.36967,-1.64181,-0.95322,2.21286,-0.57452 +2.83109,0.73246,-1.37028,-1.64099,-0.95352,2.21297,-0.57466 +2.83216,0.73230,-1.37088,-1.64019,-0.95381,2.21308,-0.57481 +2.83323,0.73214,-1.37146,-1.63939,-0.95409,2.21319,-0.57495 +2.83429,0.73199,-1.37204,-1.63861,-0.95438,2.21330,-0.57509 +2.83536,0.73183,-1.37260,-1.63785,-0.95466,2.21341,-0.57523 +2.83643,0.73168,-1.37316,-1.63709,-0.95493,2.21351,-0.57537 +2.83749,0.73154,-1.37371,-1.63635,-0.95520,2.21361,-0.57551 +2.83856,0.73139,-1.37424,-1.63562,-0.95547,2.21372,-0.57564 +2.83962,0.73124,-1.37477,-1.63490,-0.95574,2.21382,-0.57577 +2.84069,0.73110,-1.37529,-1.63419,-0.95600,2.21391,-0.57590 +2.84176,0.73096,-1.37580,-1.63349,-0.95626,2.21401,-0.57603 +2.84282,0.73082,-1.37630,-1.63281,-0.95651,2.21411,-0.57616 +2.84389,0.73069,-1.37679,-1.63214,-0.95677,2.21420,-0.57628 +2.84496,0.73055,-1.37727,-1.63147,-0.95701,2.21430,-0.57640 +2.84602,0.73042,-1.37775,-1.63082,-0.95726,2.21439,-0.57653 +2.84709,0.73029,-1.37821,-1.63018,-0.95750,2.21448,-0.57665 +2.84816,0.73016,-1.37867,-1.62955,-0.95774,2.21457,-0.57676 +2.84922,0.73004,-1.37912,-1.62893,-0.95798,2.21466,-0.57688 +2.85029,0.72991,-1.37956,-1.62832,-0.95821,2.21474,-0.57699 +2.85135,0.72979,-1.38000,-1.62772,-0.95844,2.21483,-0.57711 +2.85242,0.72967,-1.38042,-1.62713,-0.95867,2.21491,-0.57722 +2.85349,0.72955,-1.38084,-1.62655,-0.95889,2.21499,-0.57733 +2.85455,0.72944,-1.38126,-1.62598,-0.95911,2.21508,-0.57744 +2.85562,0.72932,-1.38166,-1.62541,-0.95933,2.21516,-0.57755 +2.85669,0.72921,-1.38206,-1.62486,-0.95954,2.21524,-0.57765 +2.85775,0.72909,-1.38245,-1.62432,-0.95975,2.21531,-0.57776 +2.85882,0.72901,-1.38286,-1.62372,-0.95998,2.21537,-0.57783 +2.85988,0.72903,-1.38387,-1.62206,-0.96061,2.21536,-0.57781 +2.86095,0.72906,-1.38486,-1.62043,-0.96123,2.21535,-0.57779 +2.86202,0.72908,-1.38583,-1.61883,-0.96184,2.21534,-0.57777 +2.86308,0.72910,-1.38678,-1.61725,-0.96245,2.21533,-0.57775 +2.86415,0.72912,-1.38772,-1.61569,-0.96304,2.21532,-0.57773 +2.86522,0.72914,-1.38864,-1.61417,-0.96363,2.21531,-0.57771 +2.86628,0.72916,-1.38955,-1.61266,-0.96421,2.21530,-0.57770 +2.86735,0.72917,-1.39044,-1.61118,-0.96478,2.21530,-0.57769 +2.86842,0.72919,-1.39132,-1.60973,-0.96534,2.21529,-0.57767 +2.86948,0.72920,-1.39218,-1.60830,-0.96590,2.21529,-0.57766 +2.87055,0.72922,-1.39302,-1.60689,-0.96644,2.21528,-0.57765 +2.87161,0.72923,-1.39385,-1.60550,-0.96698,2.21528,-0.57764 +2.87268,0.72924,-1.39467,-1.60414,-0.96752,2.21527,-0.57764 +2.87375,0.72925,-1.39548,-1.60280,-0.96804,2.21527,-0.57763 +2.87481,0.72926,-1.39627,-1.60148,-0.96856,2.21527,-0.57762 +2.87588,0.72926,-1.39704,-1.60018,-0.96907,2.21527,-0.57762 +2.87695,0.72927,-1.39781,-1.59891,-0.96958,2.21527,-0.57761 +2.87801,0.72928,-1.39856,-1.59765,-0.97008,2.21527,-0.57761 +2.87908,0.72928,-1.39930,-1.59642,-0.97057,2.21527,-0.57761 +2.88015,0.72928,-1.40002,-1.59520,-0.97105,2.21527,-0.57761 +2.88121,0.72929,-1.40073,-1.59400,-0.97153,2.21527,-0.57761 +2.88228,0.72929,-1.40143,-1.59283,-0.97200,2.21527,-0.57761 +2.88334,0.72929,-1.40212,-1.59167,-0.97247,2.21527,-0.57761 +2.88441,0.72929,-1.40280,-1.59053,-0.97292,2.21527,-0.57761 +2.88548,0.72929,-1.40347,-1.58941,-0.97338,2.21528,-0.57761 +2.88654,0.72929,-1.40412,-1.58831,-0.97382,2.21528,-0.57762 +2.88761,0.72929,-1.40476,-1.58723,-0.97426,2.21529,-0.57762 +2.88868,0.72929,-1.40540,-1.58616,-0.97469,2.21529,-0.57763 +2.88974,0.72929,-1.40602,-1.58512,-0.97512,2.21529,-0.57763 +2.89081,0.72928,-1.40663,-1.58408,-0.97554,2.21530,-0.57764 +2.89187,0.72928,-1.40723,-1.58307,-0.97596,2.21530,-0.57765 +2.89294,0.72928,-1.40782,-1.58207,-0.97637,2.21531,-0.57765 +2.89401,0.72927,-1.40840,-1.58109,-0.97677,2.21532,-0.57766 +2.89507,0.72927,-1.40897,-1.58012,-0.97717,2.21532,-0.57767 +2.89614,0.72926,-1.40953,-1.57917,-0.97756,2.21533,-0.57768 +2.89721,0.72926,-1.41008,-1.57824,-0.97795,2.21534,-0.57769 +2.89827,0.72925,-1.41062,-1.57732,-0.97833,2.21534,-0.57770 +2.89934,0.72924,-1.41116,-1.57642,-0.97871,2.21535,-0.57771 +2.90041,0.72924,-1.41168,-1.57553,-0.97908,2.21536,-0.57772 +2.90147,0.72923,-1.41220,-1.57465,-0.97944,2.21537,-0.57773 +2.90254,0.72922,-1.41270,-1.57379,-0.97980,2.21537,-0.57774 +2.90360,0.72921,-1.41320,-1.57294,-0.98016,2.21538,-0.57775 +2.90467,0.72920,-1.41369,-1.57211,-0.98051,2.21539,-0.57777 +2.90574,0.72919,-1.41417,-1.57129,-0.98085,2.21540,-0.57778 +2.90680,0.72918,-1.41464,-1.57049,-0.98120,2.21541,-0.57779 +2.90787,0.72917,-1.41511,-1.56969,-0.98153,2.21542,-0.57780 +2.90894,0.72916,-1.41556,-1.56891,-0.98186,2.21543,-0.57782 +2.91000,0.72915,-1.41601,-1.56815,-0.98219,2.21544,-0.57783 +2.91107,0.72914,-1.41645,-1.56739,-0.98251,2.21545,-0.57785 +2.91213,0.72913,-1.41689,-1.56665,-0.98283,2.21546,-0.57786 +2.91320,0.72912,-1.41731,-1.56592,-0.98314,2.21547,-0.57788 +2.91427,0.72911,-1.41773,-1.56520,-0.98345,2.21548,-0.57789 +2.91533,0.72910,-1.41815,-1.56449,-0.98375,2.21549,-0.57791 +2.91640,0.72909,-1.41855,-1.56380,-0.98405,2.21550,-0.57792 +2.91747,0.72907,-1.41895,-1.56312,-0.98434,2.21551,-0.57794 +2.91853,0.72906,-1.41934,-1.56244,-0.98463,2.21552,-0.57795 +2.91960,0.72905,-1.41973,-1.56178,-0.98492,2.21553,-0.57797 +2.92067,0.72904,-1.42011,-1.56113,-0.98520,2.21554,-0.57798 +2.92173,0.72902,-1.42048,-1.56049,-0.98548,2.21555,-0.57800 +2.92280,0.72901,-1.42084,-1.55986,-0.98576,2.21556,-0.57802 +2.92386,0.72900,-1.42120,-1.55924,-0.98603,2.21557,-0.57803 +2.92493,0.72898,-1.42156,-1.55863,-0.98629,2.21558,-0.57805 +2.92600,0.72897,-1.42191,-1.55803,-0.98656,2.21559,-0.57807 +2.92706,0.72896,-1.42225,-1.55744,-0.98682,2.21560,-0.57808 +2.92813,0.72895,-1.42247,-1.55706,-0.98698,2.21561,-0.57809 +2.92920,0.72898,-1.42300,-1.55612,-0.98738,2.21559,-0.57807 +2.93026,0.72901,-1.42352,-1.55519,-0.98776,2.21557,-0.57804 +2.93133,0.72904,-1.42404,-1.55428,-0.98815,2.21556,-0.57802 +2.93239,0.72907,-1.42454,-1.55339,-0.98852,2.21554,-0.57800 +2.93346,0.72909,-1.42504,-1.55251,-0.98889,2.21552,-0.57798 +2.93453,0.72912,-1.42553,-1.55164,-0.98926,2.21551,-0.57796 +2.93559,0.72914,-1.42601,-1.55079,-0.98962,2.21550,-0.57794 +2.93666,0.72917,-1.42648,-1.54995,-0.98998,2.21548,-0.57793 +2.93773,0.72919,-1.42694,-1.54913,-0.99033,2.21547,-0.57791 +2.93879,0.72921,-1.42740,-1.54832,-0.99067,2.21546,-0.57789 +2.93986,0.72923,-1.42785,-1.54752,-0.99101,2.21545,-0.57788 +2.94093,0.72925,-1.42829,-1.54673,-0.99135,2.21544,-0.57787 +2.94199,0.72927,-1.42872,-1.54596,-0.99168,2.21542,-0.57785 +2.94306,0.72929,-1.42915,-1.54520,-0.99200,2.21541,-0.57784 +2.94412,0.72931,-1.42956,-1.54445,-0.99233,2.21540,-0.57783 +2.94519,0.72932,-1.42998,-1.54372,-0.99264,2.21540,-0.57782 +2.94626,0.72934,-1.43038,-1.54300,-0.99295,2.21539,-0.57781 +2.94732,0.72935,-1.43078,-1.54228,-0.99326,2.21538,-0.57780 +2.94839,0.72937,-1.43117,-1.54158,-0.99357,2.21537,-0.57779 +2.94946,0.72938,-1.43156,-1.54090,-0.99386,2.21536,-0.57778 +2.95052,0.72939,-1.43193,-1.54022,-0.99416,2.21536,-0.57777 +2.95159,0.72941,-1.43231,-1.53955,-0.99445,2.21535,-0.57777 +2.95266,0.72942,-1.43267,-1.53890,-0.99474,2.21534,-0.57776 +2.95372,0.72943,-1.43303,-1.53825,-0.99502,2.21534,-0.57775 +2.95479,0.72944,-1.43339,-1.53762,-0.99530,2.21533,-0.57775 +2.95585,0.72945,-1.43373,-1.53700,-0.99557,2.21533,-0.57774 +2.95692,0.72946,-1.43408,-1.53638,-0.99584,2.21532,-0.57774 +2.95799,0.72947,-1.43441,-1.53578,-0.99610,2.21532,-0.57774 +2.95905,0.72948,-1.43474,-1.53519,-0.99637,2.21531,-0.57773 +2.96012,0.72949,-1.43492,-1.53486,-0.99651,2.21531,-0.57773 +2.96119,0.72954,-1.43542,-1.53395,-0.99689,2.21528,-0.57768 +2.96225,0.72959,-1.43590,-1.53306,-0.99727,2.21524,-0.57764 +2.96332,0.72964,-1.43638,-1.53219,-0.99764,2.21521,-0.57760 +2.96438,0.72969,-1.43685,-1.53132,-0.99801,2.21518,-0.57755 +2.96545,0.72974,-1.43731,-1.53048,-0.99837,2.21515,-0.57751 +2.96652,0.72979,-1.43777,-1.52964,-0.99873,2.21512,-0.57748 +2.96758,0.72983,-1.43821,-1.52882,-0.99908,2.21509,-0.57744 +2.96865,0.72988,-1.43865,-1.52801,-0.99943,2.21506,-0.57740 +2.96972,0.72992,-1.43909,-1.52722,-0.99977,2.21504,-0.57737 +2.97078,0.72996,-1.43951,-1.52644,-1.00010,2.21501,-0.57733 +2.97185,0.73000,-1.43993,-1.52567,-1.00044,2.21499,-0.57730 +2.97292,0.73004,-1.44034,-1.52491,-1.00076,2.21496,-0.57727 +2.97398,0.73008,-1.44074,-1.52417,-1.00108,2.21494,-0.57724 +2.97505,0.73011,-1.44114,-1.52343,-1.00140,2.21491,-0.57721 +2.97611,0.73015,-1.44153,-1.52271,-1.00171,2.21489,-0.57718 +2.97718,0.73018,-1.44191,-1.52201,-1.00202,2.21487,-0.57715 +2.97825,0.73022,-1.44229,-1.52131,-1.00233,2.21485,-0.57713 +2.97931,0.73025,-1.44266,-1.52062,-1.00263,2.21483,-0.57710 +2.98038,0.73028,-1.44303,-1.51995,-1.00292,2.21481,-0.57708 +2.98145,0.73031,-1.44339,-1.51929,-1.00321,2.21479,-0.57705 +2.98251,0.73034,-1.44374,-1.51863,-1.00350,2.21477,-0.57703 +2.98358,0.73037,-1.44409,-1.51799,-1.00378,2.21475,-0.57701 +2.98464,0.73040,-1.44443,-1.51736,-1.00406,2.21474,-0.57699 +2.98571,0.73043,-1.44476,-1.51674,-1.00433,2.21472,-0.57697 +2.98678,0.73045,-1.44509,-1.51613,-1.00460,2.21470,-0.57695 +2.98784,0.73048,-1.44542,-1.51553,-1.00487,2.21469,-0.57693 +2.98891,0.73050,-1.44571,-1.51499,-1.00511,2.21467,-0.57691 +2.98998,0.73054,-1.44605,-1.51434,-1.00540,2.21465,-0.57688 +2.99104,0.73058,-1.44639,-1.51370,-1.00568,2.21463,-0.57685 +2.99211,0.73061,-1.44673,-1.51308,-1.00595,2.21460,-0.57682 +2.99318,0.73065,-1.44706,-1.51246,-1.00622,2.21458,-0.57680 +2.99424,0.73068,-1.44738,-1.51186,-1.00649,2.21456,-0.57677 +2.99531,0.73071,-1.44770,-1.51126,-1.00676,2.21454,-0.57674 +2.99637,0.73073,-1.44783,-1.51101,-1.00687,2.21453,-0.57673 +2.99744,0.73078,-1.44820,-1.51029,-1.00718,2.21450,-0.57669 +2.99851,0.73084,-1.44858,-1.50959,-1.00749,2.21446,-0.57664 +2.99957,0.73089,-1.44894,-1.50890,-1.00779,2.21443,-0.57660 +3.00064,0.73094,-1.44930,-1.50821,-1.00809,2.21440,-0.57656 +3.00171,0.73099,-1.44965,-1.50754,-1.00838,2.21436,-0.57651 +3.00277,0.73103,-1.45000,-1.50688,-1.00867,2.21433,-0.57647 +3.00384,0.73108,-1.45034,-1.50623,-1.00896,2.21430,-0.57644 +3.00491,0.73113,-1.45068,-1.50559,-1.00924,2.21427,-0.57640 +3.00597,0.73117,-1.45101,-1.50496,-1.00952,2.21425,-0.57636 +3.00704,0.73121,-1.45133,-1.50435,-1.00979,2.21422,-0.57633 +3.00810,0.73126,-1.45165,-1.50374,-1.01006,2.21419,-0.57629 +3.00917,0.73130,-1.45196,-1.50314,-1.01033,2.21416,-0.57626 +3.01024,0.73132,-1.45215,-1.50278,-1.01049,2.21415,-0.57624 +3.01130,0.73136,-1.45249,-1.50214,-1.01077,2.21412,-0.57620 +3.01237,0.73141,-1.45282,-1.50151,-1.01105,2.21409,-0.57617 +3.01344,0.73145,-1.45315,-1.50089,-1.01132,2.21407,-0.57614 +3.01450,0.73149,-1.45347,-1.50028,-1.01159,2.21404,-0.57610 +3.01557,0.73152,-1.45379,-1.49969,-1.01185,2.21402,-0.57607 +3.01663,0.73155,-1.45398,-1.49933,-1.01201,2.21400,-0.57605 +3.01770,0.73159,-1.45430,-1.49871,-1.01228,2.21398,-0.57602 +3.01877,0.73163,-1.45462,-1.49811,-1.01255,2.21395,-0.57598 +3.01983,0.73168,-1.45493,-1.49751,-1.01282,2.21392,-0.57595 +3.02090,0.73169,-1.45502,-1.49733,-1.01290,2.21391,-0.57594 +3.02197,0.73174,-1.45534,-1.49672,-1.01317,2.21388,-0.57590 +3.02303,0.73178,-1.45566,-1.49611,-1.01344,2.21385,-0.57586 +3.02410,0.73183,-1.45597,-1.49551,-1.01370,2.21382,-0.57583 +3.02517,0.73184,-1.45606,-1.49534,-1.01378,2.21382,-0.57582 +3.02623,0.73188,-1.45638,-1.49473,-1.01404,2.21379,-0.57578 +3.02730,0.73192,-1.45666,-1.49420,-1.01428,2.21376,-0.57575 +3.02836,0.73197,-1.45698,-1.49358,-1.01455,2.21373,-0.57571 +3.02943,0.73202,-1.45729,-1.49297,-1.01482,2.21370,-0.57567 +3.03050,0.73207,-1.45760,-1.49238,-1.01509,2.21367,-0.57563 +3.03156,0.73208,-1.45770,-1.49220,-1.01517,2.21366,-0.57562 +3.03263,0.73213,-1.45801,-1.49160,-1.01543,2.21363,-0.57558 +3.03370,0.73217,-1.45829,-1.49106,-1.01567,2.21360,-0.57554 +3.03476,0.73222,-1.45860,-1.49046,-1.01593,2.21357,-0.57550 +3.03583,0.73224,-1.45875,-1.49017,-1.01607,2.21355,-0.57548 +3.03689,0.73230,-1.45906,-1.48957,-1.01633,2.21352,-0.57544 +3.03796,0.73232,-1.45918,-1.48933,-1.01644,2.21351,-0.57542 +3.03903,0.73237,-1.45948,-1.48874,-1.01670,2.21347,-0.57537 +3.04009,0.73240,-1.45963,-1.48844,-1.01683,2.21345,-0.57534 +3.04116,0.73246,-1.45993,-1.48784,-1.01710,2.21341,-0.57529 +3.04223,0.73245,-1.46002,-1.48770,-1.01717,2.21342,-0.57531 +3.04329,0.73202,-1.45972,-1.48860,-1.01681,2.21371,-0.57570 +3.04436,0.73160,-1.45943,-1.48949,-1.01646,2.21399,-0.57609 +3.04543,0.73119,-1.45914,-1.49036,-1.01612,2.21426,-0.57647 +3.04649,0.73078,-1.45885,-1.49121,-1.01578,2.21453,-0.57684 +3.04756,0.73038,-1.45857,-1.49206,-1.01545,2.21480,-0.57721 +3.04862,0.72999,-1.45830,-1.49288,-1.01512,2.21506,-0.57756 +3.04969,0.72961,-1.45803,-1.49369,-1.01480,2.21531,-0.57792 +3.05076,0.72924,-1.45777,-1.49449,-1.01449,2.21556,-0.57826 +3.05182,0.72887,-1.45751,-1.49527,-1.01418,2.21581,-0.57860 +3.05289,0.72850,-1.45725,-1.49604,-1.01387,2.21605,-0.57894 +3.05396,0.72815,-1.45700,-1.49680,-1.01357,2.21629,-0.57926 +3.05502,0.72780,-1.45675,-1.49754,-1.01328,2.21652,-0.57959 +3.05609,0.72746,-1.45651,-1.49827,-1.01299,2.21675,-0.57990 +3.05716,0.72712,-1.45627,-1.49899,-1.01270,2.21697,-0.58021 +3.05822,0.72679,-1.45604,-1.49969,-1.01242,2.21720,-0.58052 +3.05929,0.72647,-1.45581,-1.50039,-1.01215,2.21741,-0.58082 +3.06035,0.72615,-1.45558,-1.50107,-1.01188,2.21762,-0.58111 +3.06142,0.72584,-1.45536,-1.50173,-1.01161,2.21783,-0.58140 +3.06249,0.72553,-1.45514,-1.50239,-1.01135,2.21804,-0.58168 +3.06355,0.72523,-1.45493,-1.50304,-1.01109,2.21824,-0.58196 +3.06462,0.72493,-1.45472,-1.50367,-1.01084,2.21844,-0.58223 +3.06569,0.72464,-1.45451,-1.50429,-1.01059,2.21863,-0.58250 +3.06675,0.72436,-1.45431,-1.50491,-1.01035,2.21882,-0.58276 +3.06782,0.72408,-1.45411,-1.50551,-1.01011,2.21901,-0.58302 +3.06888,0.72380,-1.45391,-1.50610,-1.00987,2.21919,-0.58328 +3.06995,0.72353,-1.45372,-1.50668,-1.00964,2.21937,-0.58353 +3.07102,0.72327,-1.45353,-1.50725,-1.00941,2.21955,-0.58377 +3.07208,0.72301,-1.45334,-1.50781,-1.00918,2.21972,-0.58401 +3.07315,0.72275,-1.45316,-1.50836,-1.00896,2.21989,-0.58425 +3.07422,0.72250,-1.45298,-1.50891,-1.00874,2.22006,-0.58448 +3.07528,0.72226,-1.45280,-1.50944,-1.00853,2.22022,-0.58470 +3.07635,0.72202,-1.45263,-1.50996,-1.00832,2.22038,-0.58493 +3.07742,0.72178,-1.45246,-1.51048,-1.00811,2.22054,-0.58515 +3.07848,0.72155,-1.45229,-1.51098,-1.00791,2.22070,-0.58536 +3.07955,0.72132,-1.45212,-1.51148,-1.00771,2.22085,-0.58557 +3.08061,0.72110,-1.45196,-1.51196,-1.00751,2.22100,-0.58578 +3.08168,0.72088,-1.45180,-1.51244,-1.00732,2.22115,-0.58598 +3.08275,0.72077,-1.45171,-1.51271,-1.00721,2.22122,-0.58608 +3.08381,0.72017,-1.45108,-1.51435,-1.00654,2.22162,-0.58664 +3.08488,0.71957,-1.45047,-1.51597,-1.00588,2.22201,-0.58719 +3.08595,0.71898,-1.44987,-1.51756,-1.00523,2.22240,-0.58773 +3.08701,0.71841,-1.44928,-1.51912,-1.00459,2.22278,-0.58826 +3.08808,0.71785,-1.44870,-1.52065,-1.00396,2.22316,-0.58878 +3.08914,0.71729,-1.44813,-1.52216,-1.00334,2.22352,-0.58929 +3.09021,0.71675,-1.44758,-1.52364,-1.00274,2.22388,-0.58980 +3.09128,0.71622,-1.44703,-1.52509,-1.00214,2.22424,-0.59029 +3.09234,0.71569,-1.44649,-1.52651,-1.00155,2.22458,-0.59078 +3.09341,0.71518,-1.44596,-1.52792,-1.00098,2.22493,-0.59125 +3.09448,0.71467,-1.44544,-1.52929,-1.00041,2.22526,-0.59172 +3.09554,0.71418,-1.44493,-1.53065,-0.99985,2.22559,-0.59218 +3.09661,0.71369,-1.44443,-1.53198,-0.99931,2.22591,-0.59263 +3.09768,0.71321,-1.44394,-1.53328,-0.99877,2.22623,-0.59307 +3.09874,0.71274,-1.44346,-1.53456,-0.99824,2.22654,-0.59351 +3.09981,0.71228,-1.44299,-1.53582,-0.99772,2.22684,-0.59394 +3.10087,0.71183,-1.44252,-1.53706,-0.99721,2.22714,-0.59436 +3.10194,0.71139,-1.44206,-1.53828,-0.99670,2.22744,-0.59477 +3.10301,0.71095,-1.44162,-1.53947,-0.99621,2.22773,-0.59517 +3.10407,0.71052,-1.44117,-1.54064,-0.99572,2.22801,-0.59557 +3.10514,0.71010,-1.44074,-1.54180,-0.99525,2.22829,-0.59596 +3.10621,0.70969,-1.44032,-1.54293,-0.99478,2.22856,-0.59634 +3.10727,0.70929,-1.43990,-1.54404,-0.99431,2.22883,-0.59672 +3.10834,0.70889,-1.43949,-1.54514,-0.99386,2.22909,-0.59709 +3.10940,0.70850,-1.43909,-1.54621,-0.99341,2.22935,-0.59745 +3.11047,0.70812,-1.43869,-1.54727,-0.99297,2.22960,-0.59781 +3.11154,0.70774,-1.43830,-1.54830,-0.99254,2.22985,-0.59816 +3.11260,0.70737,-1.43792,-1.54932,-0.99212,2.23010,-0.59850 +3.11367,0.70701,-1.43755,-1.55032,-0.99170,2.23034,-0.59884 +3.11474,0.70666,-1.43718,-1.55131,-0.99129,2.23057,-0.59917 +3.11580,0.70631,-1.43682,-1.55227,-0.99089,2.23080,-0.59949 +3.11687,0.70596,-1.43646,-1.55322,-0.99049,2.23103,-0.59981 +3.11794,0.70563,-1.43611,-1.55415,-0.99010,2.23125,-0.60012 +3.11900,0.70530,-1.43577,-1.55507,-0.98972,2.23147,-0.60043 +3.12007,0.70498,-1.43543,-1.55597,-0.98934,2.23169,-0.60073 +3.12113,0.70466,-1.43510,-1.55685,-0.98897,2.23190,-0.60103 +3.12220,0.70435,-1.43477,-1.55772,-0.98860,2.23210,-0.60132 +3.12327,0.70404,-1.43445,-1.55858,-0.98824,2.23231,-0.60160 +3.12433,0.70374,-1.43414,-1.55942,-0.98789,2.23250,-0.60188 +3.12540,0.70345,-1.43383,-1.56024,-0.98754,2.23270,-0.60216 +3.12647,0.70316,-1.43353,-1.56105,-0.98720,2.23289,-0.60243 +3.12753,0.70287,-1.43323,-1.56185,-0.98687,2.23308,-0.60269 +3.12860,0.70259,-1.43294,-1.56263,-0.98654,2.23326,-0.60295 +3.12967,0.70232,-1.43265,-1.56340,-0.98621,2.23345,-0.60321 +3.13073,0.70205,-1.43237,-1.56415,-0.98589,2.23362,-0.60346 +3.13180,0.70179,-1.43209,-1.56490,-0.98558,2.23380,-0.60370 +3.13286,0.70153,-1.43182,-1.56563,-0.98527,2.23397,-0.60394 +3.13393,0.70128,-1.43155,-1.56634,-0.98497,2.23414,-0.60418 +3.13500,0.70103,-1.43129,-1.56705,-0.98467,2.23430,-0.60441 +3.13606,0.70078,-1.43103,-1.56774,-0.98437,2.23447,-0.60464 +3.13713,0.70054,-1.43077,-1.56842,-0.98408,2.23462,-0.60487 +3.13820,0.70031,-1.43052,-1.56909,-0.98380,2.23478,-0.60508 +3.13926,0.70008,-1.43028,-1.56974,-0.98352,2.23493,-0.60530 +3.14033,0.69985,-1.43004,-1.57039,-0.98325,2.23508,-0.60551 +3.14139,0.69963,-1.42980,-1.57102,-0.98298,2.23523,-0.60572 +3.14246,0.69941,-1.42957,-1.57164,-0.98271,2.23538,-0.60592 +3.14353,0.69920,-1.42934,-1.57226,-0.98245,2.23552,-0.60612 +3.14459,0.69899,-1.42911,-1.57286,-0.98219,2.23566,-0.60632 +3.14566,0.69878,-1.42889,-1.57345,-0.98194,2.23580,-0.60651 +3.14673,0.69858,-1.42867,-1.57403,-0.98169,2.23593,-0.60670 +3.14779,0.69838,-1.42846,-1.57460,-0.98145,2.23606,-0.60689 +3.14886,0.69818,-1.42825,-1.57516,-0.98120,2.23619,-0.60707 +3.14993,0.69799,-1.42805,-1.57571,-0.98097,2.23632,-0.60725 +3.15099,0.69781,-1.42784,-1.57625,-0.98074,2.23644,-0.60742 +3.15206,0.69762,-1.42764,-1.57679,-0.98051,2.23656,-0.60759 +3.15312,0.69744,-1.42745,-1.57731,-0.98028,2.23669,-0.60776 +3.15419,0.69726,-1.42726,-1.57782,-0.98006,2.23680,-0.60793 +3.15526,0.69717,-1.42716,-1.57809,-0.97995,2.23686,-0.60801 +3.15632,0.69696,-1.42692,-1.57870,-0.97968,2.23700,-0.60821 +3.15739,0.69675,-1.42669,-1.57931,-0.97943,2.23714,-0.60840 +3.15846,0.69655,-1.42647,-1.57990,-0.97917,2.23727,-0.60859 +3.15952,0.69635,-1.42625,-1.58049,-0.97892,2.23741,-0.60878 +3.16059,0.69616,-1.42603,-1.58106,-0.97868,2.23754,-0.60896 +3.16165,0.69596,-1.42582,-1.58162,-0.97844,2.23766,-0.60914 +3.16272,0.69578,-1.42561,-1.58218,-0.97820,2.23779,-0.60932 +3.16379,0.69559,-1.42540,-1.58272,-0.97797,2.23791,-0.60949 +3.16485,0.69541,-1.42520,-1.58326,-0.97774,2.23803,-0.60966 +3.16592,0.69523,-1.42500,-1.58378,-0.97751,2.23815,-0.60983 +3.16699,0.69506,-1.42481,-1.58430,-0.97729,2.23826,-0.60999 +3.16805,0.69495,-1.42468,-1.58463,-0.97715,2.23834,-0.61009 +3.16912,0.69470,-1.42439,-1.58538,-0.97683,2.23850,-0.61033 +3.17019,0.69445,-1.42411,-1.58611,-0.97652,2.23866,-0.61056 +3.17125,0.69421,-1.42383,-1.58683,-0.97622,2.23882,-0.61078 +3.17232,0.69398,-1.42355,-1.58754,-0.97592,2.23898,-0.61100 +3.17338,0.69375,-1.42328,-1.58824,-0.97563,2.23913,-0.61122 +3.17445,0.69352,-1.42302,-1.58893,-0.97534,2.23928,-0.61143 +3.17552,0.69330,-1.42276,-1.58960,-0.97505,2.23942,-0.61164 +3.17658,0.69308,-1.42250,-1.59026,-0.97477,2.23957,-0.61184 +3.17765,0.69287,-1.42225,-1.59091,-0.97450,2.23971,-0.61204 +3.17872,0.69266,-1.42200,-1.59155,-0.97423,2.23985,-0.61224 +3.17978,0.69245,-1.42176,-1.59218,-0.97396,2.23998,-0.61243 +3.18085,0.69225,-1.42152,-1.59280,-0.97370,2.24012,-0.61262 +3.18192,0.69205,-1.42128,-1.59340,-0.97344,2.24025,-0.61281 +3.18298,0.69186,-1.42105,-1.59400,-0.97319,2.24037,-0.61299 +3.18405,0.69167,-1.42083,-1.59458,-0.97294,2.24050,-0.61317 +3.18511,0.69148,-1.42060,-1.59516,-0.97270,2.24062,-0.61335 +3.18618,0.69130,-1.42038,-1.59572,-0.97246,2.24074,-0.61352 +3.18725,0.69112,-1.42017,-1.59628,-0.97222,2.24086,-0.61369 +3.18831,0.69094,-1.41996,-1.59683,-0.97199,2.24098,-0.61385 +3.18938,0.69077,-1.41975,-1.59736,-0.97176,2.24110,-0.61402 +3.19045,0.69060,-1.41955,-1.59789,-0.97153,2.24121,-0.61418 +3.19151,0.69043,-1.41935,-1.59841,-0.97131,2.24132,-0.61433 +3.19258,0.69035,-1.41926,-1.59864,-0.97121,2.24137,-0.61440 +3.19364,0.69012,-1.41895,-1.59939,-0.97090,2.24152,-0.61463 +3.19471,0.68988,-1.41866,-1.60013,-0.97059,2.24168,-0.61485 +3.19578,0.68965,-1.41837,-1.60086,-0.97028,2.24183,-0.61506 +3.19684,0.68943,-1.41808,-1.60158,-0.96998,2.24197,-0.61527 +3.19791,0.68921,-1.41780,-1.60228,-0.96969,2.24212,-0.61548 +3.19898,0.68899,-1.41753,-1.60298,-0.96940,2.24226,-0.61569 +3.20004,0.68878,-1.41726,-1.60365,-0.96911,2.24240,-0.61589 +3.20111,0.68857,-1.41699,-1.60432,-0.96883,2.24254,-0.61608 +3.20218,0.68836,-1.41673,-1.60498,-0.96855,2.24267,-0.61628 +3.20324,0.68816,-1.41647,-1.60562,-0.96828,2.24280,-0.61647 +3.20431,0.68797,-1.41622,-1.60626,-0.96802,2.24293,-0.61665 +3.20537,0.68777,-1.41597,-1.60688,-0.96775,2.24306,-0.61683 +3.20644,0.68758,-1.41573,-1.60749,-0.96749,2.24319,-0.61701 +3.20751,0.68740,-1.41549,-1.60809,-0.96724,2.24331,-0.61719 +3.20857,0.68721,-1.41526,-1.60868,-0.96699,2.24343,-0.61736 +3.20964,0.68704,-1.41502,-1.60926,-0.96674,2.24355,-0.61753 +3.21071,0.68686,-1.41480,-1.60984,-0.96650,2.24366,-0.61769 +3.21177,0.68669,-1.41457,-1.61040,-0.96626,2.24377,-0.61786 +3.21284,0.68652,-1.41436,-1.61095,-0.96603,2.24389,-0.61802 +3.21390,0.68635,-1.41414,-1.61149,-0.96580,2.24400,-0.61817 +3.21497,0.68619,-1.41393,-1.61202,-0.96557,2.24410,-0.61832 +3.21604,0.68603,-1.41372,-1.61254,-0.96535,2.24421,-0.61847 +3.21710,0.68593,-1.41359,-1.61287,-0.96521,2.24427,-0.61857 +3.21817,0.68573,-1.41332,-1.61354,-0.96493,2.24441,-0.61876 +3.21924,0.68553,-1.41305,-1.61420,-0.96466,2.24454,-0.61895 +3.22030,0.68533,-1.41279,-1.61484,-0.96439,2.24467,-0.61913 +3.22137,0.68514,-1.41254,-1.61548,-0.96412,2.24479,-0.61932 +3.22244,0.68495,-1.41229,-1.61610,-0.96386,2.24492,-0.61949 +3.22350,0.68476,-1.41204,-1.61671,-0.96360,2.24504,-0.61967 +3.22457,0.68458,-1.41179,-1.61732,-0.96335,2.24516,-0.61984 +3.22563,0.68440,-1.41156,-1.61791,-0.96310,2.24527,-0.62001 +3.22670,0.68423,-1.41132,-1.61849,-0.96285,2.24539,-0.62017 +3.22777,0.68406,-1.41109,-1.61906,-0.96261,2.24550,-0.62034 +3.22883,0.68389,-1.41086,-1.61963,-0.96237,2.24561,-0.62050 +3.22990,0.68372,-1.41064,-1.62018,-0.96214,2.24572,-0.62065 +3.23097,0.68356,-1.41042,-1.62072,-0.96191,2.24582,-0.62080 +3.23203,0.68340,-1.41021,-1.62125,-0.96168,2.24593,-0.62095 +3.23310,0.68325,-1.41000,-1.62178,-0.96146,2.24603,-0.62110 +3.23417,0.68315,-1.40987,-1.62210,-0.96133,2.24609,-0.62119 +3.23523,0.68297,-1.40961,-1.62271,-0.96107,2.24621,-0.62136 +3.23630,0.68279,-1.40937,-1.62332,-0.96082,2.24633,-0.62153 +3.23736,0.68262,-1.40912,-1.62391,-0.96057,2.24644,-0.62169 +3.23843,0.68245,-1.40889,-1.62449,-0.96032,2.24655,-0.62185 +3.23950,0.68228,-1.40865,-1.62506,-0.96008,2.24666,-0.62201 +3.24056,0.68212,-1.40842,-1.62563,-0.95984,2.24677,-0.62217 +3.24163,0.68196,-1.40820,-1.62618,-0.95961,2.24688,-0.62232 +3.24270,0.68180,-1.40797,-1.62672,-0.95938,2.24698,-0.62247 +3.24376,0.68164,-1.40776,-1.62726,-0.95916,2.24708,-0.62262 +3.24483,0.68149,-1.40754,-1.62778,-0.95894,2.24718,-0.62276 +3.24589,0.68142,-1.40743,-1.62806,-0.95882,2.24723,-0.62283 +3.24696,0.68124,-1.40713,-1.62873,-0.95854,2.24735,-0.62300 +3.24803,0.68106,-1.40685,-1.62939,-0.95827,2.24746,-0.62317 +3.24909,0.68089,-1.40657,-1.63004,-0.95800,2.24757,-0.62333 +3.25016,0.68072,-1.40629,-1.63068,-0.95774,2.24768,-0.62349 +3.25123,0.68056,-1.40602,-1.63131,-0.95748,2.24779,-0.62364 +3.25229,0.68040,-1.40575,-1.63193,-0.95722,2.24789,-0.62380 +3.25336,0.68024,-1.40549,-1.63254,-0.95697,2.24800,-0.62395 +3.25443,0.68009,-1.40523,-1.63313,-0.95672,2.24810,-0.62409 +3.25549,0.67993,-1.40498,-1.63372,-0.95648,2.24820,-0.62424 +3.25656,0.67978,-1.40473,-1.63429,-0.95624,2.24830,-0.62438 +3.25762,0.67964,-1.40448,-1.63486,-0.95600,2.24839,-0.62452 +3.25869,0.67949,-1.40424,-1.63542,-0.95577,2.24849,-0.62465 +3.25976,0.67935,-1.40401,-1.63596,-0.95554,2.24858,-0.62479 +3.26082,0.67921,-1.40378,-1.63650,-0.95532,2.24867,-0.62492 +3.26189,0.67909,-1.40356,-1.63700,-0.95511,2.24875,-0.62504 +3.26296,0.67892,-1.40322,-1.63773,-0.95481,2.24886,-0.62520 +3.26402,0.67875,-1.40289,-1.63846,-0.95452,2.24897,-0.62535 +3.26509,0.67859,-1.40256,-1.63917,-0.95423,2.24907,-0.62551 +3.26615,0.67843,-1.40225,-1.63986,-0.95395,2.24918,-0.62566 +3.26722,0.67828,-1.40193,-1.64055,-0.95367,2.24928,-0.62581 +3.26829,0.67812,-1.40162,-1.64122,-0.95340,2.24938,-0.62595 +3.26935,0.67797,-1.40132,-1.64189,-0.95313,2.24948,-0.62610 +3.27042,0.67783,-1.40102,-1.64254,-0.95286,2.24957,-0.62624 +3.27149,0.67768,-1.40073,-1.64318,-0.95260,2.24967,-0.62637 +3.27255,0.67754,-1.40044,-1.64380,-0.95234,2.24976,-0.62651 +3.27362,0.67740,-1.40016,-1.64442,-0.95209,2.24985,-0.62664 +3.27469,0.67727,-1.39988,-1.64503,-0.95184,2.24994,-0.62677 +3.27575,0.67713,-1.39961,-1.64563,-0.95159,2.25002,-0.62689 +3.27682,0.67700,-1.39934,-1.64621,-0.95135,2.25011,-0.62702 +3.27788,0.67688,-1.39908,-1.64679,-0.95112,2.25019,-0.62714 +3.27895,0.67675,-1.39882,-1.64735,-0.95088,2.25027,-0.62726 +3.28002,0.67663,-1.39856,-1.64791,-0.95065,2.25035,-0.62738 +3.28108,0.67651,-1.39831,-1.64846,-0.95043,2.25043,-0.62749 +3.28215,0.67639,-1.39807,-1.64899,-0.95020,2.25051,-0.62760 +3.28322,0.67637,-1.39803,-1.64907,-0.95017,2.25052,-0.62762 +3.28428,0.67622,-1.39766,-1.64984,-0.94987,2.25062,-0.62776 +3.28535,0.67608,-1.39730,-1.65059,-0.94957,2.25071,-0.62790 +3.28642,0.67593,-1.39694,-1.65133,-0.94927,2.25081,-0.62803 +3.28748,0.67579,-1.39659,-1.65205,-0.94898,2.25090,-0.62817 +3.28855,0.67566,-1.39624,-1.65277,-0.94869,2.25099,-0.62830 +3.28961,0.67552,-1.39591,-1.65347,-0.94841,2.25107,-0.62843 +3.29068,0.67539,-1.39557,-1.65416,-0.94813,2.25116,-0.62855 +3.29175,0.67526,-1.39525,-1.65483,-0.94786,2.25124,-0.62868 +3.29281,0.67513,-1.39493,-1.65550,-0.94759,2.25133,-0.62880 +3.29388,0.67501,-1.39461,-1.65615,-0.94733,2.25141,-0.62892 +3.29495,0.67489,-1.39430,-1.65679,-0.94707,2.25149,-0.62903 +3.29601,0.67477,-1.39400,-1.65743,-0.94681,2.25156,-0.62914 +3.29708,0.67465,-1.39370,-1.65805,-0.94656,2.25164,-0.62926 +3.29814,0.67453,-1.39340,-1.65866,-0.94631,2.25171,-0.62936 +3.29921,0.67442,-1.39311,-1.65925,-0.94607,2.25179,-0.62947 +3.30028,0.67431,-1.39283,-1.65984,-0.94583,2.25186,-0.62958 +3.30134,0.67420,-1.39255,-1.66042,-0.94559,2.25193,-0.62968 +3.30241,0.67410,-1.39228,-1.66099,-0.94536,2.25200,-0.62978 +3.30348,0.67399,-1.39201,-1.66155,-0.94513,2.25207,-0.62988 +3.30454,0.67389,-1.39174,-1.66210,-0.94490,2.25213,-0.62997 +3.30561,0.67381,-1.39152,-1.66256,-0.94472,2.25219,-0.63005 +3.30668,0.67369,-1.39111,-1.66334,-0.94441,2.25226,-0.63016 +3.30774,0.67358,-1.39072,-1.66411,-0.94410,2.25234,-0.63027 +3.30881,0.67346,-1.39033,-1.66487,-0.94380,2.25241,-0.63038 +3.30987,0.67335,-1.38994,-1.66562,-0.94351,2.25248,-0.63049 +3.31094,0.67324,-1.38957,-1.66635,-0.94322,2.25255,-0.63059 +3.31201,0.67313,-1.38920,-1.66707,-0.94294,2.25262,-0.63070 +3.31307,0.67303,-1.38883,-1.66777,-0.94265,2.25269,-0.63079 +3.31414,0.67293,-1.38848,-1.66847,-0.94238,2.25276,-0.63089 +3.31521,0.67283,-1.38813,-1.66915,-0.94211,2.25282,-0.63099 +3.31627,0.67273,-1.38778,-1.66982,-0.94184,2.25289,-0.63108 +3.31734,0.67263,-1.38744,-1.67048,-0.94158,2.25295,-0.63117 +3.31840,0.67254,-1.38711,-1.67113,-0.94132,2.25301,-0.63126 +3.31947,0.67245,-1.38678,-1.67176,-0.94106,2.25307,-0.63135 +3.32054,0.67236,-1.38646,-1.67239,-0.94081,2.25313,-0.63143 +3.32160,0.67227,-1.38615,-1.67301,-0.94056,2.25319,-0.63152 +3.32267,0.67218,-1.38584,-1.67361,-0.94032,2.25324,-0.63160 +3.32374,0.67210,-1.38553,-1.67420,-0.94008,2.25330,-0.63168 +3.32480,0.67201,-1.38523,-1.67479,-0.93984,2.25335,-0.63176 +3.32587,0.67193,-1.38494,-1.67536,-0.93961,2.25340,-0.63183 +3.32694,0.67185,-1.38465,-1.67592,-0.93938,2.25345,-0.63191 +3.32800,0.67178,-1.38436,-1.67648,-0.93916,2.25351,-0.63198 +3.32907,0.67172,-1.38416,-1.67687,-0.93900,2.25354,-0.63203 +3.33013,0.67165,-1.38380,-1.67753,-0.93874,2.25359,-0.63210 +3.33120,0.67158,-1.38345,-1.67818,-0.93848,2.25363,-0.63217 +3.33227,0.67151,-1.38311,-1.67882,-0.93823,2.25368,-0.63223 +3.33333,0.67144,-1.38277,-1.67944,-0.93798,2.25372,-0.63230 +3.33440,0.67137,-1.38244,-1.68006,-0.93774,2.25377,-0.63236 +3.33547,0.67131,-1.38212,-1.68066,-0.93750,2.25381,-0.63242 +3.33653,0.67125,-1.38180,-1.68125,-0.93726,2.25385,-0.63248 +3.33760,0.67118,-1.38148,-1.68184,-0.93703,2.25389,-0.63254 +3.33866,0.67112,-1.38117,-1.68241,-0.93680,2.25393,-0.63260 +3.33973,0.67106,-1.38087,-1.68297,-0.93657,2.25397,-0.63265 +3.34080,0.67101,-1.38057,-1.68353,-0.93635,2.25400,-0.63271 +3.34186,0.67098,-1.38044,-1.68376,-0.93626,2.25402,-0.63273 +3.34293,0.67092,-1.38004,-1.68448,-0.93598,2.25406,-0.63278 +3.34400,0.67087,-1.37965,-1.68518,-0.93571,2.25409,-0.63284 +3.34506,0.67081,-1.37926,-1.68587,-0.93544,2.25413,-0.63289 +3.34613,0.67075,-1.37888,-1.68655,-0.93517,2.25417,-0.63294 +3.34720,0.67070,-1.37850,-1.68721,-0.93491,2.25420,-0.63299 +3.34826,0.67065,-1.37814,-1.68787,-0.93466,2.25424,-0.63304 +3.34933,0.67060,-1.37778,-1.68851,-0.93441,2.25427,-0.63309 +3.35039,0.67055,-1.37742,-1.68914,-0.93416,2.25430,-0.63314 +3.35146,0.67050,-1.37707,-1.68976,-0.93391,2.25433,-0.63318 +3.35253,0.67045,-1.37673,-1.69037,-0.93367,2.25436,-0.63323 +3.35359,0.67041,-1.37639,-1.69097,-0.93343,2.25439,-0.63327 +3.35466,0.67036,-1.37606,-1.69156,-0.93320,2.25442,-0.63331 +3.35573,0.67032,-1.37574,-1.69214,-0.93297,2.25445,-0.63335 +3.35679,0.67027,-1.37542,-1.69271,-0.93274,2.25448,-0.63339 +3.35786,0.67023,-1.37511,-1.69327,-0.93252,2.25450,-0.63343 +3.35893,0.67019,-1.37478,-1.69384,-0.93230,2.25453,-0.63347 +3.35999,0.67016,-1.37434,-1.69459,-0.93201,2.25455,-0.63350 +3.36106,0.67013,-1.37391,-1.69533,-0.93173,2.25457,-0.63353 +3.36212,0.67010,-1.37348,-1.69605,-0.93145,2.25459,-0.63355 +3.36319,0.67007,-1.37306,-1.69675,-0.93118,2.25461,-0.63358 +3.36426,0.67004,-1.37265,-1.69745,-0.93091,2.25463,-0.63361 +3.36532,0.67002,-1.37224,-1.69814,-0.93065,2.25464,-0.63363 +3.36639,0.66999,-1.37185,-1.69881,-0.93039,2.25466,-0.63365 +3.36746,0.66996,-1.37145,-1.69947,-0.93013,2.25468,-0.63368 +3.36852,0.66994,-1.37107,-1.70012,-0.92988,2.25469,-0.63370 +3.36959,0.66992,-1.37069,-1.70076,-0.92963,2.25471,-0.63372 +3.37065,0.66989,-1.37032,-1.70139,-0.92939,2.25472,-0.63374 +3.37172,0.66987,-1.36996,-1.70200,-0.92915,2.25474,-0.63376 +3.37279,0.66985,-1.36960,-1.70261,-0.92891,2.25475,-0.63378 +3.37385,0.66983,-1.36925,-1.70321,-0.92868,2.25476,-0.63380 +3.37492,0.66981,-1.36890,-1.70379,-0.92845,2.25477,-0.63381 +3.37599,0.66979,-1.36856,-1.70437,-0.92822,2.25479,-0.63383 +3.37705,0.66977,-1.36823,-1.70493,-0.92800,2.25480,-0.63384 +3.37812,0.66976,-1.36790,-1.70549,-0.92778,2.25481,-0.63386 +3.37919,0.66975,-1.36766,-1.70589,-0.92762,2.25482,-0.63387 +3.38025,0.66975,-1.36723,-1.70659,-0.92736,2.25482,-0.63387 +3.38132,0.66975,-1.36680,-1.70727,-0.92710,2.25481,-0.63386 +3.38238,0.66975,-1.36638,-1.70795,-0.92684,2.25481,-0.63386 +3.38345,0.66975,-1.36597,-1.70861,-0.92659,2.25481,-0.63385 +3.38452,0.66976,-1.36556,-1.70926,-0.92634,2.25481,-0.63385 +3.38558,0.66976,-1.36517,-1.70990,-0.92609,2.25481,-0.63384 +3.38665,0.66976,-1.36478,-1.71053,-0.92585,2.25480,-0.63384 +3.38772,0.66977,-1.36439,-1.71115,-0.92561,2.25480,-0.63383 +3.38878,0.66977,-1.36401,-1.71175,-0.92538,2.25480,-0.63383 +3.38985,0.66978,-1.36364,-1.71235,-0.92515,2.25479,-0.63382 +3.39091,0.66978,-1.36328,-1.71294,-0.92492,2.25479,-0.63381 +3.39198,0.66979,-1.36292,-1.71352,-0.92470,2.25479,-0.63381 +3.39305,0.66979,-1.36257,-1.71408,-0.92448,2.25478,-0.63380 +3.39411,0.66980,-1.36222,-1.71464,-0.92426,2.25478,-0.63379 +3.39518,0.66981,-1.36188,-1.71519,-0.92405,2.25477,-0.63378 +3.39625,0.66982,-1.36181,-1.71529,-0.92401,2.25477,-0.63377 +3.39731,0.66992,-1.36109,-1.71633,-0.92364,2.25470,-0.63368 +3.39838,0.67001,-1.36037,-1.71734,-0.92328,2.25464,-0.63359 +3.39945,0.67011,-1.35968,-1.71834,-0.92293,2.25458,-0.63349 +3.40051,0.67021,-1.35899,-1.71932,-0.92258,2.25452,-0.63340 +3.40158,0.67030,-1.35831,-1.72028,-0.92223,2.25445,-0.63331 +3.40264,0.67039,-1.35765,-1.72123,-0.92190,2.25439,-0.63322 +3.40371,0.67049,-1.35700,-1.72216,-0.92156,2.25433,-0.63313 +3.40478,0.67058,-1.35636,-1.72308,-0.92123,2.25427,-0.63304 +3.40584,0.67067,-1.35573,-1.72398,-0.92091,2.25421,-0.63295 +3.40691,0.67076,-1.35511,-1.72486,-0.92059,2.25416,-0.63286 +3.40798,0.67085,-1.35450,-1.72573,-0.92027,2.25410,-0.63277 +3.40904,0.67094,-1.35391,-1.72658,-0.91996,2.25404,-0.63269 +3.41011,0.67103,-1.35332,-1.72742,-0.91966,2.25398,-0.63260 +3.41118,0.67112,-1.35274,-1.72825,-0.91936,2.25393,-0.63251 +3.41224,0.67120,-1.35218,-1.72906,-0.91906,2.25387,-0.63243 +3.41331,0.67129,-1.35162,-1.72985,-0.91877,2.25381,-0.63235 +3.41437,0.67137,-1.35107,-1.73064,-0.91848,2.25376,-0.63226 +3.41544,0.67146,-1.35054,-1.73141,-0.91820,2.25370,-0.63218 +3.41651,0.67154,-1.35001,-1.73216,-0.91792,2.25365,-0.63210 +3.41757,0.67162,-1.34949,-1.73291,-0.91764,2.25360,-0.63202 +3.41864,0.67170,-1.34898,-1.73364,-0.91737,2.25354,-0.63194 +3.41971,0.67178,-1.34848,-1.73436,-0.91711,2.25349,-0.63186 +3.42077,0.67186,-1.34799,-1.73506,-0.91684,2.25344,-0.63178 +3.42184,0.67194,-1.34750,-1.73576,-0.91658,2.25339,-0.63170 +3.42290,0.67202,-1.34703,-1.73644,-0.91633,2.25333,-0.63162 +3.42397,0.67210,-1.34656,-1.73711,-0.91608,2.25328,-0.63154 +3.42504,0.67217,-1.34610,-1.73777,-0.91583,2.25323,-0.63147 +3.42610,0.67225,-1.34565,-1.73841,-0.91558,2.25318,-0.63139 +3.42717,0.67232,-1.34521,-1.73905,-0.91534,2.25313,-0.63132 +3.42824,0.67240,-1.34477,-1.73968,-0.91511,2.25309,-0.63124 +3.42930,0.67247,-1.34434,-1.74029,-0.91487,2.25304,-0.63117 +3.43037,0.67255,-1.34392,-1.74090,-0.91464,2.25299,-0.63110 +3.43144,0.67262,-1.34351,-1.74149,-0.91442,2.25294,-0.63103 +3.43250,0.67269,-1.34311,-1.74207,-0.91419,2.25289,-0.63095 +3.43357,0.67276,-1.34271,-1.74265,-0.91397,2.25285,-0.63088 +3.43463,0.67283,-1.34231,-1.74321,-0.91375,2.25280,-0.63081 +3.43570,0.67290,-1.34193,-1.74377,-0.91354,2.25276,-0.63074 +3.43677,0.67297,-1.34155,-1.74431,-0.91333,2.25271,-0.63067 +3.43783,0.67303,-1.34118,-1.74485,-0.91312,2.25267,-0.63061 +3.43890,0.67307,-1.34099,-1.74512,-0.91302,2.25264,-0.63057 +3.43997,0.67317,-1.34054,-1.74573,-0.91279,2.25258,-0.63047 +3.44103,0.67326,-1.34011,-1.74634,-0.91256,2.25252,-0.63038 +3.44210,0.67336,-1.33968,-1.74693,-0.91234,2.25245,-0.63029 +3.44316,0.67345,-1.33925,-1.74751,-0.91212,2.25239,-0.63019 +3.44423,0.67354,-1.33884,-1.74809,-0.91190,2.25233,-0.63010 +3.44530,0.67364,-1.33843,-1.74865,-0.91169,2.25227,-0.63001 +3.44636,0.67373,-1.33803,-1.74920,-0.91148,2.25221,-0.62992 +3.44743,0.67382,-1.33764,-1.74975,-0.91127,2.25215,-0.62983 +3.44850,0.67390,-1.33725,-1.75028,-0.91107,2.25210,-0.62974 +3.44956,0.67399,-1.33687,-1.75081,-0.91087,2.25204,-0.62966 +3.45063,0.67403,-1.33674,-1.75098,-0.91080,2.25201,-0.62962 +3.45170,0.67421,-1.33618,-1.75168,-0.91056,2.25190,-0.62945 +3.45276,0.67438,-1.33563,-1.75236,-0.91032,2.25178,-0.62928 +3.45383,0.67456,-1.33509,-1.75303,-0.91008,2.25167,-0.62911 +3.45489,0.67473,-1.33456,-1.75369,-0.90984,2.25156,-0.62894 +3.45596,0.67490,-1.33404,-1.75434,-0.90961,2.25145,-0.62877 +3.45703,0.67507,-1.33353,-1.75498,-0.90938,2.25134,-0.62861 +3.45809,0.67523,-1.33303,-1.75560,-0.90916,2.25123,-0.62845 +3.45916,0.67539,-1.33254,-1.75622,-0.90894,2.25112,-0.62829 +3.46023,0.67555,-1.33205,-1.75682,-0.90872,2.25102,-0.62814 +3.46129,0.67571,-1.33158,-1.75742,-0.90850,2.25092,-0.62798 +3.46236,0.67587,-1.33111,-1.75800,-0.90829,2.25081,-0.62783 +3.46343,0.67602,-1.33065,-1.75858,-0.90808,2.25071,-0.62768 +3.46449,0.67618,-1.33020,-1.75914,-0.90788,2.25061,-0.62753 +3.46556,0.67633,-1.32975,-1.75970,-0.90767,2.25051,-0.62738 +3.46662,0.67647,-1.32932,-1.76024,-0.90747,2.25042,-0.62724 +3.46769,0.67662,-1.32889,-1.76078,-0.90727,2.25032,-0.62709 +3.46876,0.67677,-1.32847,-1.76131,-0.90708,2.25023,-0.62695 +3.46982,0.67691,-1.32805,-1.76183,-0.90689,2.25013,-0.62681 +3.47089,0.67705,-1.32764,-1.76234,-0.90670,2.25004,-0.62668 +3.47196,0.67719,-1.32725,-1.76284,-0.90651,2.24995,-0.62654 +3.47302,0.67728,-1.32699,-1.76315,-0.90640,2.24989,-0.62645 +3.47409,0.67748,-1.32646,-1.76377,-0.90618,2.24976,-0.62625 +3.47515,0.67769,-1.32594,-1.76438,-0.90596,2.24962,-0.62605 +3.47622,0.67789,-1.32543,-1.76499,-0.90575,2.24949,-0.62585 +3.47729,0.67809,-1.32492,-1.76558,-0.90554,2.24936,-0.62566 +3.47835,0.67829,-1.32443,-1.76616,-0.90534,2.24923,-0.62547 +3.47942,0.67849,-1.32394,-1.76674,-0.90513,2.24910,-0.62528 +3.48049,0.67868,-1.32346,-1.76730,-0.90493,2.24898,-0.62509 +3.48155,0.67887,-1.32299,-1.76785,-0.90473,2.24885,-0.62491 +3.48262,0.67905,-1.32253,-1.76840,-0.90454,2.24873,-0.62473 +3.48369,0.67924,-1.32207,-1.76893,-0.90435,2.24861,-0.62455 +3.48475,0.67942,-1.32163,-1.76946,-0.90416,2.24849,-0.62437 +3.48582,0.67960,-1.32119,-1.76997,-0.90397,2.24837,-0.62420 +3.48688,0.67977,-1.32076,-1.77048,-0.90378,2.24826,-0.62403 +3.48795,0.67995,-1.32033,-1.77098,-0.90360,2.24814,-0.62386 +3.48902,0.68012,-1.31992,-1.77147,-0.90342,2.24803,-0.62369 +3.49008,0.68029,-1.31951,-1.77196,-0.90324,2.24792,-0.62353 +3.49115,0.68043,-1.31917,-1.77235,-0.90310,2.24783,-0.62339 +3.49222,0.68068,-1.31865,-1.77292,-0.90290,2.24766,-0.62315 +3.49328,0.68092,-1.31813,-1.77349,-0.90271,2.24750,-0.62292 +3.49435,0.68116,-1.31762,-1.77404,-0.90252,2.24735,-0.62269 +3.49541,0.68140,-1.31712,-1.77459,-0.90233,2.24719,-0.62246 +3.49648,0.68163,-1.31663,-1.77513,-0.90214,2.24704,-0.62223 +3.49755,0.68186,-1.31615,-1.77565,-0.90196,2.24689,-0.62201 +3.49861,0.68209,-1.31568,-1.77617,-0.90178,2.24674,-0.62179 +3.49968,0.68231,-1.31521,-1.77668,-0.90160,2.24659,-0.62157 +3.50075,0.68253,-1.31475,-1.77718,-0.90142,2.24645,-0.62136 +3.50181,0.68275,-1.31430,-1.77768,-0.90125,2.24631,-0.62115 +3.50288,0.68296,-1.31386,-1.77816,-0.90107,2.24617,-0.62095 +3.50395,0.68318,-1.31343,-1.77864,-0.90090,2.24603,-0.62074 +3.50501,0.68338,-1.31300,-1.77911,-0.90074,2.24589,-0.62054 +3.50608,0.68359,-1.31258,-1.77957,-0.90057,2.24575,-0.62034 +3.50714,0.68379,-1.31217,-1.78002,-0.90041,2.24562,-0.62015 +3.50821,0.68391,-1.31194,-1.78026,-0.90032,2.24554,-0.62003 +3.50928,0.68428,-1.31129,-1.78091,-0.90012,2.24530,-0.61968 +3.51034,0.68464,-1.31064,-1.78154,-0.89992,2.24506,-0.61933 +3.51141,0.68500,-1.31000,-1.78216,-0.89973,2.24483,-0.61899 +3.51248,0.68536,-1.30938,-1.78276,-0.89953,2.24460,-0.61865 +3.51354,0.68571,-1.30877,-1.78336,-0.89934,2.24437,-0.61831 +3.51461,0.68605,-1.30816,-1.78395,-0.89915,2.24414,-0.61798 +3.51567,0.68639,-1.30757,-1.78453,-0.89896,2.24392,-0.61766 +3.51674,0.68673,-1.30699,-1.78510,-0.89878,2.24370,-0.61734 +3.51781,0.68706,-1.30642,-1.78566,-0.89860,2.24348,-0.61702 +3.51887,0.68738,-1.30585,-1.78621,-0.89842,2.24327,-0.61671 +3.51994,0.68771,-1.30530,-1.78675,-0.89824,2.24306,-0.61641 +3.52101,0.68802,-1.30476,-1.78728,-0.89806,2.24285,-0.61610 +3.52207,0.68833,-1.30423,-1.78780,-0.89789,2.24264,-0.61581 +3.52314,0.68864,-1.30370,-1.78832,-0.89772,2.24244,-0.61551 +3.52421,0.68894,-1.30319,-1.78882,-0.89755,2.24224,-0.61522 +3.52527,0.68924,-1.30268,-1.78932,-0.89738,2.24205,-0.61494 +3.52634,0.68953,-1.30219,-1.78981,-0.89722,2.24185,-0.61466 +3.52740,0.68982,-1.30170,-1.79029,-0.89705,2.24166,-0.61438 +3.52847,0.69011,-1.30122,-1.79076,-0.89689,2.24147,-0.61411 +3.52954,0.69039,-1.30075,-1.79122,-0.89673,2.24129,-0.61384 +3.53060,0.69067,-1.30028,-1.79168,-0.89657,2.24110,-0.61357 +3.53167,0.69094,-1.29983,-1.79213,-0.89642,2.24092,-0.61331 +3.53274,0.69121,-1.29938,-1.79257,-0.89627,2.24075,-0.61306 +3.53380,0.69147,-1.29894,-1.79300,-0.89611,2.24057,-0.61280 +3.53487,0.69174,-1.29851,-1.79343,-0.89596,2.24040,-0.61255 +3.53594,0.69199,-1.29809,-1.79385,-0.89582,2.24023,-0.61231 +3.53700,0.69225,-1.29767,-1.79426,-0.89567,2.24006,-0.61206 +3.53807,0.69250,-1.29726,-1.79467,-0.89553,2.23989,-0.61182 +3.53913,0.69255,-1.29717,-1.79476,-0.89550,2.23986,-0.61177 +3.54020,0.69286,-1.29666,-1.79524,-0.89534,2.23965,-0.61147 +3.54127,0.69317,-1.29617,-1.79571,-0.89518,2.23945,-0.61118 +3.54233,0.69347,-1.29568,-1.79618,-0.89502,2.23925,-0.61089 +3.54340,0.69377,-1.29520,-1.79664,-0.89487,2.23905,-0.61061 +3.54447,0.69406,-1.29473,-1.79709,-0.89472,2.23885,-0.61033 +3.54553,0.69435,-1.29427,-1.79753,-0.89456,2.23866,-0.61005 +3.54660,0.69464,-1.29381,-1.79797,-0.89442,2.23847,-0.60978 +3.54766,0.69492,-1.29337,-1.79839,-0.89427,2.23829,-0.60951 +3.54873,0.69520,-1.29293,-1.79882,-0.89412,2.23810,-0.60925 +3.54980,0.69547,-1.29250,-1.79923,-0.89398,2.23792,-0.60899 +3.55086,0.69574,-1.29208,-1.79964,-0.89384,2.23774,-0.60873 +3.55193,0.69600,-1.29166,-1.80004,-0.89370,2.23757,-0.60848 +3.55300,0.69626,-1.29125,-1.80043,-0.89356,2.23739,-0.60823 +3.55406,0.69634,-1.29113,-1.80054,-0.89353,2.23734,-0.60816 +3.55513,0.69686,-1.29037,-1.80118,-0.89334,2.23700,-0.60767 +3.55620,0.69738,-1.28962,-1.80182,-0.89316,2.23666,-0.60719 +3.55726,0.69788,-1.28889,-1.80244,-0.89299,2.23633,-0.60671 +3.55833,0.69838,-1.28816,-1.80305,-0.89281,2.23600,-0.60624 +3.55939,0.69887,-1.28745,-1.80366,-0.89263,2.23568,-0.60578 +3.56046,0.69935,-1.28675,-1.80425,-0.89246,2.23536,-0.60533 +3.56153,0.69983,-1.28607,-1.80483,-0.89229,2.23504,-0.60488 +3.56259,0.70030,-1.28539,-1.80541,-0.89212,2.23473,-0.60443 +3.56366,0.70077,-1.28473,-1.80597,-0.89195,2.23442,-0.60400 +3.56473,0.70122,-1.28408,-1.80653,-0.89179,2.23412,-0.60357 +3.56579,0.70167,-1.28344,-1.80707,-0.89163,2.23382,-0.60315 +3.56686,0.70212,-1.28281,-1.80761,-0.89146,2.23353,-0.60273 +3.56792,0.70255,-1.28220,-1.80813,-0.89130,2.23324,-0.60232 +3.56899,0.70298,-1.28159,-1.80865,-0.89115,2.23295,-0.60191 +3.57006,0.70341,-1.28099,-1.80916,-0.89099,2.23267,-0.60152 +3.57112,0.70383,-1.28041,-1.80966,-0.89083,2.23239,-0.60112 +3.57219,0.70424,-1.27983,-1.81015,-0.89068,2.23212,-0.60074 +3.57326,0.70464,-1.27927,-1.81064,-0.89053,2.23185,-0.60035 +3.57432,0.70504,-1.27871,-1.81111,-0.89038,2.23158,-0.59998 +3.57539,0.70544,-1.27817,-1.81158,-0.89023,2.23132,-0.59961 +3.57646,0.70583,-1.27763,-1.81204,-0.89009,2.23106,-0.59924 +3.57752,0.70621,-1.27711,-1.81249,-0.88994,2.23080,-0.59888 +3.57859,0.70659,-1.27659,-1.81294,-0.88980,2.23055,-0.59853 +3.57965,0.70696,-1.27608,-1.81337,-0.88966,2.23030,-0.59818 +3.58072,0.70733,-1.27558,-1.81380,-0.88952,2.23006,-0.59783 +3.58179,0.70769,-1.27509,-1.81423,-0.88938,2.22982,-0.59750 +3.58285,0.70804,-1.27461,-1.81464,-0.88924,2.22958,-0.59716 +3.58392,0.70839,-1.27413,-1.81505,-0.88911,2.22934,-0.59683 +3.58499,0.70874,-1.27367,-1.81545,-0.88897,2.22911,-0.59651 +3.58605,0.70908,-1.27321,-1.81585,-0.88884,2.22888,-0.59619 +3.58712,0.70941,-1.27276,-1.81624,-0.88871,2.22866,-0.59587 +3.58819,0.70974,-1.27232,-1.81662,-0.88858,2.22844,-0.59556 +3.58925,0.71007,-1.27189,-1.81700,-0.88845,2.22822,-0.59526 +3.59032,0.71039,-1.27146,-1.81737,-0.88833,2.22800,-0.59496 +3.59138,0.71070,-1.27104,-1.81773,-0.88820,2.22779,-0.59466 +3.59245,0.71101,-1.27063,-1.81809,-0.88808,2.22758,-0.59437 +3.59352,0.71132,-1.27022,-1.81844,-0.88796,2.22738,-0.59408 +3.59458,0.71152,-1.26996,-1.81866,-0.88788,2.22724,-0.59390 +3.59565,0.71198,-1.26936,-1.81915,-0.88774,2.22694,-0.59347 +3.59672,0.71243,-1.26877,-1.81963,-0.88760,2.22664,-0.59305 +3.59778,0.71287,-1.26819,-1.82010,-0.88745,2.22634,-0.59264 +3.59885,0.71331,-1.26762,-1.82057,-0.88732,2.22605,-0.59223 +3.59991,0.71374,-1.26706,-1.82102,-0.88718,2.22576,-0.59183 +3.60098,0.71416,-1.26651,-1.82147,-0.88704,2.22548,-0.59144 +3.60205,0.71458,-1.26597,-1.82191,-0.88691,2.22520,-0.59105 +3.60311,0.71499,-1.26544,-1.82235,-0.88677,2.22492,-0.59067 +3.60418,0.71540,-1.26491,-1.82277,-0.88664,2.22465,-0.59029 +3.60525,0.71580,-1.26440,-1.82319,-0.88651,2.22438,-0.58992 +3.60631,0.71619,-1.26390,-1.82361,-0.88638,2.22411,-0.58955 +3.60738,0.71658,-1.26340,-1.82401,-0.88625,2.22385,-0.58919 +3.60845,0.71696,-1.26291,-1.82441,-0.88613,2.22359,-0.58883 +3.60951,0.71734,-1.26243,-1.82480,-0.88600,2.22334,-0.58848 +3.61058,0.71771,-1.26196,-1.82519,-0.88588,2.22309,-0.58814 +3.61164,0.71808,-1.26150,-1.82557,-0.88576,2.22284,-0.58780 +3.61271,0.71844,-1.26105,-1.82594,-0.88564,2.22260,-0.58746 +3.61378,0.71879,-1.26060,-1.82631,-0.88552,2.22236,-0.58713 +3.61484,0.71914,-1.26016,-1.82667,-0.88540,2.22212,-0.58681 +3.61591,0.71949,-1.25973,-1.82702,-0.88528,2.22189,-0.58649 +3.61698,0.71983,-1.25931,-1.82737,-0.88516,2.22166,-0.58617 +3.61804,0.72016,-1.25890,-1.82772,-0.88505,2.22144,-0.58586 +3.61911,0.72049,-1.25849,-1.82805,-0.88494,2.22121,-0.58555 +3.62017,0.72081,-1.25809,-1.82839,-0.88482,2.22099,-0.58525 +3.62124,0.72103,-1.25782,-1.82860,-0.88475,2.22085,-0.58505 +3.62231,0.72154,-1.25718,-1.82910,-0.88462,2.22050,-0.58458 +3.62337,0.72205,-1.25654,-1.82959,-0.88448,2.22016,-0.58411 +3.62444,0.72255,-1.25592,-1.83007,-0.88435,2.21983,-0.58365 +3.62551,0.72304,-1.25531,-1.83055,-0.88421,2.21950,-0.58320 +3.62657,0.72353,-1.25471,-1.83101,-0.88408,2.21917,-0.58275 +3.62764,0.72400,-1.25411,-1.83147,-0.88395,2.21885,-0.58231 +3.62871,0.72448,-1.25353,-1.83192,-0.88382,2.21853,-0.58188 +3.62977,0.72494,-1.25296,-1.83236,-0.88370,2.21822,-0.58145 +3.63084,0.72540,-1.25240,-1.83280,-0.88357,2.21791,-0.58103 +3.63190,0.72585,-1.25185,-1.83323,-0.88344,2.21760,-0.58062 +3.63297,0.72629,-1.25131,-1.83365,-0.88332,2.21730,-0.58021 +3.63404,0.72673,-1.25078,-1.83406,-0.88320,2.21701,-0.57980 +3.63510,0.72716,-1.25025,-1.83447,-0.88308,2.21671,-0.57941 +3.63617,0.72759,-1.24974,-1.83487,-0.88295,2.21643,-0.57902 +3.63724,0.72801,-1.24924,-1.83527,-0.88284,2.21614,-0.57863 +3.63830,0.72842,-1.24874,-1.83566,-0.88272,2.21586,-0.57825 +3.63937,0.72883,-1.24825,-1.83604,-0.88260,2.21559,-0.57788 +3.64044,0.72923,-1.24777,-1.83641,-0.88249,2.21532,-0.57751 +3.64150,0.72962,-1.24730,-1.83678,-0.88237,2.21505,-0.57715 +3.64257,0.73001,-1.24684,-1.83714,-0.88226,2.21478,-0.57679 +3.64363,0.73040,-1.24639,-1.83750,-0.88215,2.21452,-0.57644 +3.64470,0.73077,-1.24594,-1.83785,-0.88203,2.21427,-0.57609 +3.64577,0.73115,-1.24550,-1.83820,-0.88192,2.21401,-0.57575 +3.64683,0.73151,-1.24507,-1.83853,-0.88182,2.21376,-0.57541 +3.64790,0.73187,-1.24465,-1.83887,-0.88171,2.21352,-0.57508 +3.64897,0.73223,-1.24423,-1.83920,-0.88160,2.21327,-0.57475 +3.65003,0.73258,-1.24382,-1.83952,-0.88149,2.21304,-0.57443 +3.65110,0.73293,-1.24342,-1.83984,-0.88139,2.21280,-0.57412 +3.65216,0.73327,-1.24303,-1.84015,-0.88129,2.21257,-0.57380 +3.65323,0.73334,-1.24294,-1.84021,-0.88127,2.21252,-0.57374 +3.65430,0.73373,-1.24250,-1.84055,-0.88116,2.21225,-0.57338 +3.65536,0.73411,-1.24207,-1.84088,-0.88106,2.21199,-0.57303 +3.65643,0.73449,-1.24164,-1.84120,-0.88096,2.21174,-0.57268 +3.65750,0.73486,-1.24122,-1.84152,-0.88086,2.21148,-0.57234 +3.65856,0.73523,-1.24080,-1.84183,-0.88076,2.21123,-0.57201 +3.65963,0.73559,-1.24040,-1.84214,-0.88066,2.21099,-0.57168 +3.66070,0.73594,-1.24000,-1.84245,-0.88056,2.21074,-0.57135 +3.66176,0.73629,-1.23961,-1.84274,-0.88047,2.21050,-0.57103 +3.66283,0.73641,-1.23948,-1.84284,-0.88044,2.21043,-0.57093 +3.66389,0.73685,-1.23899,-1.84320,-0.88034,2.21012,-0.57053 +3.66496,0.73729,-1.23850,-1.84355,-0.88024,2.20983,-0.57013 +3.66603,0.73772,-1.23803,-1.84389,-0.88014,2.20954,-0.56974 +3.66709,0.73814,-1.23756,-1.84423,-0.88004,2.20925,-0.56936 +3.66816,0.73855,-1.23710,-1.84456,-0.87994,2.20896,-0.56898 +3.66923,0.73897,-1.23665,-1.84489,-0.87985,2.20868,-0.56860 +3.67029,0.73937,-1.23620,-1.84521,-0.87975,2.20841,-0.56824 +3.67136,0.73977,-1.23576,-1.84553,-0.87966,2.20814,-0.56787 +3.67242,0.74016,-1.23534,-1.84584,-0.87956,2.20787,-0.56752 +3.67349,0.74055,-1.23491,-1.84615,-0.87947,2.20761,-0.56717 +3.67456,0.74093,-1.23450,-1.84645,-0.87938,2.20734,-0.56682 +3.67562,0.74130,-1.23409,-1.84675,-0.87929,2.20709,-0.56648 +3.67669,0.74167,-1.23369,-1.84704,-0.87920,2.20684,-0.56614 +3.67776,0.74204,-1.23330,-1.84733,-0.87911,2.20659,-0.56581 +3.67882,0.74240,-1.23291,-1.84761,-0.87902,2.20634,-0.56549 +3.67989,0.74277,-1.23251,-1.84791,-0.87893,2.20608,-0.56514 +3.68096,0.74314,-1.23211,-1.84820,-0.87884,2.20583,-0.56481 +3.68202,0.74351,-1.23172,-1.84849,-0.87875,2.20558,-0.56448 +3.68309,0.74379,-1.23140,-1.84871,-0.87868,2.20538,-0.56422 +3.68415,0.74416,-1.23101,-1.84900,-0.87859,2.20513,-0.56389 +3.68522,0.74453,-1.23061,-1.84929,-0.87850,2.20488,-0.56355 +3.68629,0.74500,-1.23008,-1.84968,-0.87840,2.20456,-0.56313 +3.68735,0.74546,-1.22956,-1.85006,-0.87830,2.20424,-0.56271 +3.68842,0.74592,-1.22904,-1.85044,-0.87819,2.20393,-0.56230 +3.68949,0.74637,-1.22854,-1.85081,-0.87809,2.20362,-0.56190 +3.69055,0.74681,-1.22804,-1.85117,-0.87799,2.20332,-0.56150 +3.69162,0.74724,-1.22756,-1.85153,-0.87789,2.20302,-0.56111 +3.69269,0.74767,-1.22708,-1.85188,-0.87779,2.20273,-0.56072 +3.69375,0.74810,-1.22661,-1.85222,-0.87770,2.20244,-0.56034 +3.69482,0.74851,-1.22615,-1.85256,-0.87760,2.20215,-0.55997 +3.69588,0.74892,-1.22569,-1.85290,-0.87751,2.20187,-0.55960 +3.69695,0.74933,-1.22525,-1.85322,-0.87741,2.20159,-0.55923 +3.69802,0.74973,-1.22481,-1.85355,-0.87732,2.20132,-0.55887 +3.69908,0.75012,-1.22438,-1.85386,-0.87722,2.20105,-0.55852 +3.70015,0.75051,-1.22395,-1.85418,-0.87713,2.20079,-0.55817 +3.70122,0.75089,-1.22354,-1.85448,-0.87704,2.20052,-0.55783 +3.70228,0.75126,-1.22313,-1.85479,-0.87695,2.20026,-0.55749 +3.70335,0.75163,-1.22273,-1.85508,-0.87686,2.20001,-0.55716 +3.70441,0.75200,-1.22233,-1.85538,-0.87677,2.19976,-0.55683 +3.70548,0.75227,-1.22204,-1.85559,-0.87671,2.19957,-0.55659 +3.70655,0.75282,-1.22144,-1.85600,-0.87661,2.19919,-0.55609 +3.70761,0.75337,-1.22085,-1.85639,-0.87652,2.19882,-0.55561 +3.70868,0.75390,-1.22028,-1.85679,-0.87642,2.19845,-0.55513 +3.70975,0.75443,-1.21971,-1.85717,-0.87633,2.19809,-0.55466 +3.71081,0.75496,-1.21916,-1.85755,-0.87624,2.19773,-0.55419 +3.71188,0.75547,-1.21861,-1.85792,-0.87615,2.19738,-0.55373 +3.71295,0.75598,-1.21807,-1.85829,-0.87606,2.19703,-0.55328 +3.71401,0.75648,-1.21754,-1.85865,-0.87597,2.19669,-0.55284 +3.71508,0.75697,-1.21702,-1.85900,-0.87588,2.19635,-0.55240 +3.71614,0.75745,-1.21651,-1.85935,-0.87579,2.19602,-0.55197 +3.71721,0.75793,-1.21601,-1.85970,-0.87570,2.19569,-0.55154 +3.71828,0.75840,-1.21552,-1.86003,-0.87561,2.19537,-0.55112 +3.71934,0.75887,-1.21504,-1.86037,-0.87552,2.19505,-0.55071 +3.72041,0.75932,-1.21456,-1.86069,-0.87544,2.19473,-0.55030 +3.72148,0.75977,-1.21410,-1.86101,-0.87535,2.19442,-0.54990 +3.72254,0.76022,-1.21364,-1.86133,-0.87527,2.19411,-0.54951 +3.72361,0.76065,-1.21319,-1.86164,-0.87518,2.19381,-0.54912 +3.72467,0.76108,-1.21274,-1.86194,-0.87510,2.19351,-0.54874 +3.72574,0.76151,-1.21231,-1.86224,-0.87502,2.19322,-0.54836 +3.72681,0.76193,-1.21188,-1.86254,-0.87493,2.19293,-0.54799 +3.72787,0.76234,-1.21146,-1.86283,-0.87485,2.19265,-0.54762 +3.72894,0.76275,-1.21105,-1.86312,-0.87477,2.19237,-0.54726 +3.73001,0.76315,-1.21064,-1.86340,-0.87469,2.19209,-0.54690 +3.73107,0.76354,-1.21024,-1.86368,-0.87461,2.19182,-0.54655 +3.73214,0.76393,-1.20985,-1.86395,-0.87453,2.19155,-0.54621 +3.73321,0.76431,-1.20946,-1.86422,-0.87445,2.19128,-0.54587 +3.73427,0.76451,-1.20927,-1.86434,-0.87442,2.19114,-0.54569 +3.73534,0.76535,-1.20844,-1.86482,-0.87435,2.19057,-0.54495 +3.73640,0.76618,-1.20763,-1.86528,-0.87428,2.19000,-0.54423 +3.73747,0.76700,-1.20683,-1.86574,-0.87421,2.18944,-0.54351 +3.73854,0.76780,-1.20604,-1.86619,-0.87414,2.18889,-0.54280 +3.73960,0.76860,-1.20527,-1.86664,-0.87406,2.18834,-0.54211 +3.74067,0.76938,-1.20451,-1.86707,-0.87399,2.18780,-0.54142 +3.74174,0.77015,-1.20377,-1.86750,-0.87392,2.18727,-0.54074 +3.74280,0.77092,-1.20304,-1.86792,-0.87385,2.18674,-0.54008 +3.74387,0.77167,-1.20232,-1.86834,-0.87378,2.18623,-0.53942 +3.74493,0.77241,-1.20161,-1.86875,-0.87371,2.18572,-0.53878 +3.74600,0.77314,-1.20092,-1.86915,-0.87364,2.18521,-0.53814 +3.74707,0.77385,-1.20024,-1.86954,-0.87357,2.18472,-0.53751 +3.74813,0.77456,-1.19957,-1.86993,-0.87350,2.18423,-0.53689 +3.74920,0.77526,-1.19891,-1.87031,-0.87343,2.18374,-0.53628 +3.75027,0.77595,-1.19827,-1.87069,-0.87336,2.18327,-0.53568 +3.75133,0.77663,-1.19763,-1.87105,-0.87329,2.18280,-0.53509 +3.75240,0.77730,-1.19701,-1.87142,-0.87322,2.18233,-0.53451 +3.75347,0.77796,-1.19639,-1.87177,-0.87315,2.18188,-0.53393 +3.75453,0.77861,-1.19579,-1.87212,-0.87308,2.18143,-0.53337 +3.75560,0.77925,-1.19520,-1.87247,-0.87301,2.18098,-0.53281 +3.75666,0.77988,-1.19462,-1.87281,-0.87294,2.18054,-0.53226 +3.75773,0.78050,-1.19405,-1.87314,-0.87287,2.18011,-0.53172 +3.75880,0.78111,-1.19348,-1.87347,-0.87281,2.17968,-0.53119 +3.75986,0.78172,-1.19293,-1.87379,-0.87274,2.17926,-0.53066 +3.76093,0.78231,-1.19239,-1.87411,-0.87267,2.17885,-0.53014 +3.76200,0.78290,-1.19186,-1.87442,-0.87260,2.17844,-0.52963 +3.76306,0.78348,-1.19133,-1.87473,-0.87254,2.17804,-0.52913 +3.76413,0.78405,-1.19082,-1.87503,-0.87247,2.17764,-0.52864 +3.76520,0.78461,-1.19031,-1.87533,-0.87240,2.17725,-0.52815 +3.76626,0.78516,-1.18982,-1.87563,-0.87233,2.17686,-0.52767 +3.76733,0.78571,-1.18933,-1.87591,-0.87227,2.17648,-0.52720 +3.76839,0.78624,-1.18885,-1.87620,-0.87220,2.17610,-0.52673 +3.76946,0.78677,-1.18838,-1.87648,-0.87214,2.17573,-0.52627 +3.77053,0.78730,-1.18791,-1.87675,-0.87207,2.17537,-0.52582 +3.77159,0.78781,-1.18746,-1.87702,-0.87200,2.17501,-0.52537 +3.77266,0.78832,-1.18701,-1.87729,-0.87194,2.17465,-0.52493 +3.77373,0.78882,-1.18657,-1.87755,-0.87187,2.17430,-0.52450 +3.77479,0.78931,-1.18614,-1.87780,-0.87181,2.17396,-0.52408 +3.77586,0.78979,-1.18572,-1.87806,-0.87175,2.17362,-0.52366 +3.77692,0.79027,-1.18530,-1.87831,-0.87168,2.17328,-0.52324 +3.77799,0.79074,-1.18489,-1.87855,-0.87162,2.17295,-0.52283 +3.77906,0.79120,-1.18448,-1.87879,-0.87156,2.17262,-0.52243 +3.78012,0.79166,-1.18409,-1.87903,-0.87149,2.17230,-0.52204 +3.78119,0.79211,-1.18370,-1.87926,-0.87143,2.17198,-0.52165 +3.78226,0.79255,-1.18332,-1.87949,-0.87137,2.17167,-0.52126 +3.78332,0.79299,-1.18294,-1.87972,-0.87131,2.17136,-0.52089 +3.78439,0.79342,-1.18257,-1.87994,-0.87124,2.17106,-0.52051 +3.78546,0.79385,-1.18221,-1.88016,-0.87118,2.17076,-0.52015 +3.78652,0.79398,-1.18209,-1.88023,-0.87116,2.17066,-0.52003 +3.78759,0.79451,-1.18163,-1.88050,-0.87110,2.17029,-0.51958 +3.78865,0.79503,-1.18117,-1.88077,-0.87104,2.16993,-0.51913 +3.78972,0.79554,-1.18072,-1.88104,-0.87098,2.16957,-0.51869 +3.79079,0.79604,-1.18028,-1.88129,-0.87092,2.16922,-0.51826 +3.79185,0.79654,-1.17985,-1.88155,-0.87086,2.16887,-0.51783 +3.79292,0.79703,-1.17942,-1.88180,-0.87080,2.16852,-0.51741 +3.79399,0.79751,-1.17900,-1.88205,-0.87074,2.16818,-0.51700 +3.79505,0.79799,-1.17859,-1.88229,-0.87069,2.16785,-0.51659 +3.79612,0.79845,-1.17819,-1.88253,-0.87063,2.16752,-0.51619 +3.79718,0.79891,-1.17779,-1.88277,-0.87057,2.16719,-0.51579 +3.79825,0.79937,-1.17740,-1.88300,-0.87051,2.16687,-0.51540 +3.79932,0.79982,-1.17702,-1.88323,-0.87045,2.16656,-0.51502 +3.80038,0.80026,-1.17664,-1.88345,-0.87039,2.16624,-0.51464 +3.80145,0.80069,-1.17627,-1.88367,-0.87034,2.16594,-0.51427 +3.80252,0.80112,-1.17591,-1.88389,-0.87028,2.16563,-0.51390 +3.80358,0.80128,-1.17577,-1.88397,-0.87026,2.16552,-0.51376 +3.80465,0.80198,-1.17513,-1.88434,-0.87020,2.16503,-0.51317 +3.80572,0.80267,-1.17450,-1.88470,-0.87015,2.16454,-0.51258 +3.80678,0.80336,-1.17388,-1.88505,-0.87009,2.16406,-0.51199 +3.80785,0.80403,-1.17327,-1.88540,-0.87003,2.16359,-0.51142 +3.80891,0.80470,-1.17267,-1.88575,-0.86997,2.16312,-0.51085 +3.80998,0.80536,-1.17208,-1.88609,-0.86992,2.16266,-0.51030 +3.81105,0.80600,-1.17151,-1.88642,-0.86986,2.16220,-0.50975 +3.81211,0.80664,-1.17094,-1.88675,-0.86980,2.16176,-0.50921 +3.81318,0.80727,-1.17038,-1.88707,-0.86974,2.16131,-0.50868 +3.81425,0.80789,-1.16983,-1.88739,-0.86969,2.16088,-0.50815 +3.81531,0.80850,-1.16929,-1.88770,-0.86963,2.16045,-0.50763 +3.81638,0.80910,-1.16877,-1.88800,-0.86957,2.16002,-0.50712 +3.81745,0.80969,-1.16824,-1.88831,-0.86952,2.15960,-0.50662 +3.81851,0.81028,-1.16773,-1.88860,-0.86946,2.15919,-0.50613 +3.81958,0.81085,-1.16723,-1.88889,-0.86940,2.15878,-0.50564 +3.82064,0.81142,-1.16674,-1.88918,-0.86935,2.15838,-0.50516 +3.82171,0.81198,-1.16625,-1.88946,-0.86929,2.15799,-0.50469 +3.82278,0.81253,-1.16578,-1.88974,-0.86923,2.15759,-0.50422 +3.82384,0.81308,-1.16531,-1.89002,-0.86918,2.15721,-0.50376 +3.82491,0.81361,-1.16485,-1.89028,-0.86912,2.15683,-0.50331 +3.82598,0.81414,-1.16439,-1.89055,-0.86906,2.15645,-0.50286 +3.82704,0.81466,-1.16395,-1.89081,-0.86901,2.15609,-0.50242 +3.82811,0.81517,-1.16351,-1.89107,-0.86895,2.15572,-0.50199 +3.82917,0.81568,-1.16308,-1.89132,-0.86890,2.15536,-0.50156 +3.83024,0.81618,-1.16266,-1.89157,-0.86884,2.15501,-0.50114 +3.83131,0.81667,-1.16224,-1.89181,-0.86879,2.15466,-0.50073 +3.83237,0.81715,-1.16184,-1.89205,-0.86873,2.15431,-0.50032 +3.83344,0.81763,-1.16143,-1.89229,-0.86868,2.15397,-0.49991 +3.83451,0.81810,-1.16104,-1.89252,-0.86862,2.15364,-0.49952 +3.83557,0.81856,-1.16065,-1.89275,-0.86857,2.15331,-0.49913 +3.83664,0.81902,-1.16027,-1.89298,-0.86851,2.15298,-0.49874 +3.83771,0.81947,-1.15990,-1.89320,-0.86846,2.15266,-0.49836 +3.83877,0.81991,-1.15953,-1.89342,-0.86841,2.15235,-0.49799 +3.83984,0.82031,-1.15920,-1.89362,-0.86836,2.15206,-0.49765 +3.84090,0.82082,-1.15875,-1.89389,-0.86830,2.15170,-0.49723 +3.84197,0.82132,-1.15831,-1.89416,-0.86824,2.15134,-0.49681 +3.84304,0.82181,-1.15788,-1.89443,-0.86818,2.15099,-0.49639 +3.84410,0.82230,-1.15745,-1.89469,-0.86812,2.15065,-0.49598 +3.84517,0.82278,-1.15704,-1.89495,-0.86806,2.15030,-0.49558 +3.84624,0.82325,-1.15662,-1.89521,-0.86801,2.14997,-0.49519 +3.84730,0.82372,-1.15622,-1.89546,-0.86795,2.14964,-0.49480 +3.84837,0.82418,-1.15583,-1.89570,-0.86789,2.14931,-0.49441 +3.84943,0.82463,-1.15544,-1.89595,-0.86783,2.14898,-0.49403 +3.85050,0.82507,-1.15505,-1.89618,-0.86778,2.14867,-0.49366 +3.85157,0.82551,-1.15468,-1.89642,-0.86772,2.14835,-0.49329 +3.85263,0.82597,-1.15428,-1.89666,-0.86766,2.14803,-0.49291 +3.85370,0.82663,-1.15368,-1.89703,-0.86760,2.14756,-0.49236 +3.85477,0.82728,-1.15309,-1.89739,-0.86754,2.14710,-0.49182 +3.85583,0.82792,-1.15250,-1.89775,-0.86748,2.14664,-0.49129 +3.85690,0.82855,-1.15193,-1.89810,-0.86742,2.14619,-0.49077 +3.85797,0.82917,-1.15137,-1.89845,-0.86737,2.14575,-0.49025 +3.85903,0.82978,-1.15081,-1.89878,-0.86731,2.14532,-0.48974 +3.86010,0.83039,-1.15027,-1.89912,-0.86725,2.14488,-0.48924 +3.86116,0.83098,-1.14974,-1.89945,-0.86719,2.14446,-0.48874 +3.86223,0.83157,-1.14921,-1.89977,-0.86713,2.14404,-0.48825 +3.86330,0.83215,-1.14869,-1.90009,-0.86707,2.14363,-0.48777 +3.86436,0.83272,-1.14819,-1.90040,-0.86701,2.14322,-0.48730 +3.86543,0.83329,-1.14769,-1.90071,-0.86696,2.14282,-0.48683 +3.86650,0.83384,-1.14720,-1.90101,-0.86690,2.14242,-0.48637 +3.86756,0.83439,-1.14672,-1.90131,-0.86684,2.14203,-0.48592 +3.86863,0.83493,-1.14624,-1.90160,-0.86678,2.14164,-0.48547 +3.86970,0.83546,-1.14578,-1.90189,-0.86673,2.14126,-0.48503 +3.87076,0.83599,-1.14532,-1.90217,-0.86667,2.14089,-0.48460 +3.87183,0.83650,-1.14487,-1.90245,-0.86661,2.14052,-0.48417 +3.87289,0.83701,-1.14443,-1.90272,-0.86656,2.14015,-0.48375 +3.87396,0.83751,-1.14399,-1.90299,-0.86650,2.13979,-0.48333 +3.87503,0.83801,-1.14357,-1.90326,-0.86644,2.13943,-0.48292 +3.87609,0.83850,-1.14315,-1.90352,-0.86639,2.13908,-0.48252 +3.87716,0.83898,-1.14273,-1.90378,-0.86633,2.13874,-0.48212 +3.87823,0.83945,-1.14233,-1.90403,-0.86628,2.13840,-0.48173 +3.87929,0.83992,-1.14193,-1.90428,-0.86622,2.13806,-0.48134 +3.88036,0.84038,-1.14154,-1.90452,-0.86617,2.13773,-0.48096 +3.88142,0.84084,-1.14115,-1.90476,-0.86611,2.13740,-0.48058 +3.88249,0.84128,-1.14077,-1.90500,-0.86606,2.13708,-0.48021 +3.88356,0.84173,-1.14040,-1.90523,-0.86600,2.13676,-0.47985 +3.88462,0.84182,-1.14032,-1.90528,-0.86599,2.13670,-0.47977 +3.88569,0.84229,-1.13992,-1.90553,-0.86594,2.13635,-0.47938 +3.88676,0.84276,-1.13952,-1.90578,-0.86589,2.13602,-0.47900 +3.88782,0.84322,-1.13913,-1.90602,-0.86583,2.13569,-0.47862 +3.88889,0.84367,-1.13875,-1.90626,-0.86578,2.13536,-0.47825 +3.88996,0.84412,-1.13837,-1.90650,-0.86573,2.13504,-0.47788 +3.89102,0.84458,-1.13798,-1.90674,-0.86567,2.13471,-0.47750 +3.89209,0.84516,-1.13746,-1.90706,-0.86562,2.13429,-0.47702 +3.89315,0.84574,-1.13695,-1.90737,-0.86557,2.13387,-0.47655 +3.89422,0.84631,-1.13645,-1.90767,-0.86552,2.13346,-0.47608 +3.89529,0.84688,-1.13596,-1.90798,-0.86547,2.13306,-0.47562 +3.89635,0.84743,-1.13548,-1.90827,-0.86542,2.13266,-0.47516 +3.89742,0.84798,-1.13500,-1.90856,-0.86536,2.13227,-0.47471 +3.89849,0.84852,-1.13454,-1.90885,-0.86531,2.13188,-0.47427 +3.89955,0.84905,-1.13408,-1.90913,-0.86526,2.13149,-0.47384 +3.90062,0.84958,-1.13363,-1.90941,-0.86521,2.13112,-0.47341 +3.90168,0.85010,-1.13318,-1.90968,-0.86516,2.13074,-0.47299 +3.90275,0.85061,-1.13275,-1.90995,-0.86511,2.13038,-0.47257 +3.90382,0.85111,-1.13232,-1.91022,-0.86506,2.13001,-0.47216 +3.90488,0.85160,-1.13190,-1.91048,-0.86501,2.12966,-0.47175 +3.90595,0.85209,-1.13148,-1.91073,-0.86496,2.12930,-0.47135 +3.90702,0.85258,-1.13107,-1.91098,-0.86491,2.12896,-0.47096 +3.90808,0.85305,-1.13067,-1.91123,-0.86486,2.12861,-0.47057 +3.90915,0.85352,-1.13028,-1.91147,-0.86481,2.12827,-0.47019 +3.91022,0.85398,-1.12989,-1.91171,-0.86476,2.12794,-0.46981 +3.91128,0.85444,-1.12951,-1.91195,-0.86471,2.12761,-0.46944 +3.91235,0.85488,-1.12914,-1.91218,-0.86466,2.12729,-0.46908 +3.91341,0.85504,-1.12901,-1.91226,-0.86464,2.12718,-0.46895 +3.91448,0.85567,-1.12850,-1.91254,-0.86461,2.12672,-0.46844 +3.91555,0.85629,-1.12799,-1.91282,-0.86458,2.12628,-0.46794 +3.91661,0.85690,-1.12749,-1.91310,-0.86454,2.12584,-0.46744 +3.91768,0.85750,-1.12700,-1.91337,-0.86451,2.12540,-0.46695 +3.91875,0.85810,-1.12652,-1.91363,-0.86448,2.12497,-0.46647 +3.91981,0.85869,-1.12604,-1.91389,-0.86444,2.12455,-0.46599 +3.92088,0.85927,-1.12558,-1.91415,-0.86441,2.12413,-0.46553 +3.92194,0.85984,-1.12512,-1.91440,-0.86437,2.12372,-0.46506 +3.92301,0.86040,-1.12467,-1.91465,-0.86434,2.12331,-0.46461 +3.92408,0.86095,-1.12422,-1.91490,-0.86430,2.12291,-0.46416 +3.92514,0.86150,-1.12379,-1.91514,-0.86427,2.12252,-0.46372 +3.92621,0.86204,-1.12336,-1.91538,-0.86423,2.12213,-0.46328 +3.92728,0.86257,-1.12294,-1.91561,-0.86420,2.12174,-0.46285 +3.92834,0.86309,-1.12253,-1.91584,-0.86416,2.12136,-0.46243 +3.92941,0.86361,-1.12212,-1.91607,-0.86413,2.12099,-0.46201 +3.93048,0.86412,-1.12172,-1.91629,-0.86409,2.12062,-0.46160 +3.93154,0.86462,-1.12133,-1.91651,-0.86405,2.12026,-0.46120 +3.93261,0.86512,-1.12094,-1.91673,-0.86402,2.11990,-0.46080 +3.93367,0.86560,-1.12056,-1.91694,-0.86398,2.11954,-0.46040 +3.93474,0.86608,-1.12019,-1.91715,-0.86395,2.11919,-0.46002 +3.93581,0.86656,-1.11982,-1.91736,-0.86391,2.11885,-0.45963 +3.93687,0.86703,-1.11946,-1.91756,-0.86388,2.11851,-0.45926 +3.93794,0.86709,-1.11941,-1.91758,-0.86387,2.11846,-0.45920 +3.93901,0.86776,-1.11892,-1.91781,-0.86387,2.11798,-0.45867 +3.94007,0.86842,-1.11843,-1.91804,-0.86386,2.11751,-0.45814 +3.94114,0.86906,-1.11795,-1.91826,-0.86385,2.11704,-0.45762 +3.94221,0.86970,-1.11748,-1.91848,-0.86383,2.11658,-0.45711 +3.94327,0.87033,-1.11702,-1.91869,-0.86382,2.11612,-0.45661 +3.94434,0.87095,-1.11657,-1.91890,-0.86381,2.11567,-0.45611 +3.94540,0.87157,-1.11612,-1.91911,-0.86380,2.11523,-0.45562 +3.94647,0.87217,-1.11568,-1.91932,-0.86378,2.11479,-0.45514 +3.94754,0.87276,-1.11525,-1.91952,-0.86377,2.11436,-0.45466 +3.94860,0.87335,-1.11483,-1.91972,-0.86376,2.11393,-0.45419 +3.94967,0.87393,-1.11441,-1.91991,-0.86374,2.11352,-0.45373 +3.95074,0.87450,-1.11400,-1.92011,-0.86373,2.11310,-0.45327 +3.95180,0.87506,-1.11360,-1.92030,-0.86371,2.11269,-0.45282 +3.95287,0.87561,-1.11320,-1.92048,-0.86369,2.11229,-0.45238 +3.95393,0.87616,-1.11281,-1.92067,-0.86368,2.11189,-0.45195 +3.95500,0.87670,-1.11243,-1.92085,-0.86366,2.11150,-0.45152 +3.95607,0.87723,-1.11205,-1.92103,-0.86364,2.11112,-0.45109 +3.95713,0.87775,-1.11168,-1.92120,-0.86363,2.11073,-0.45068 +3.95820,0.87827,-1.11132,-1.92138,-0.86361,2.11036,-0.45026 +3.95927,0.87878,-1.11096,-1.92155,-0.86359,2.10999,-0.44986 +3.96033,0.87928,-1.11061,-1.92171,-0.86357,2.10962,-0.44946 +3.96140,0.87977,-1.11027,-1.92188,-0.86355,2.10926,-0.44907 +3.96247,0.88018,-1.10998,-1.92201,-0.86354,2.10897,-0.44874 +3.96353,0.88080,-1.10956,-1.92218,-0.86354,2.10851,-0.44824 +3.96460,0.88142,-1.10914,-1.92235,-0.86354,2.10806,-0.44775 +3.96566,0.88203,-1.10873,-1.92252,-0.86354,2.10762,-0.44727 +3.96673,0.88263,-1.10832,-1.92268,-0.86354,2.10718,-0.44679 +3.96780,0.88323,-1.10792,-1.92284,-0.86354,2.10675,-0.44632 +3.96886,0.88381,-1.10753,-1.92300,-0.86354,2.10632,-0.44586 +3.96993,0.88439,-1.10714,-1.92316,-0.86354,2.10590,-0.44540 +3.97100,0.88496,-1.10676,-1.92332,-0.86354,2.10549,-0.44495 +3.97206,0.88552,-1.10639,-1.92347,-0.86353,2.10508,-0.44451 +3.97313,0.88607,-1.10603,-1.92362,-0.86353,2.10467,-0.44407 +3.97419,0.88661,-1.10567,-1.92377,-0.86353,2.10428,-0.44364 +3.97526,0.88715,-1.10531,-1.92391,-0.86352,2.10388,-0.44321 +3.97633,0.88768,-1.10496,-1.92406,-0.86352,2.10350,-0.44280 +3.97739,0.88820,-1.10462,-1.92420,-0.86351,2.10312,-0.44238 +3.97846,0.88871,-1.10429,-1.92434,-0.86350,2.10274,-0.44198 +3.97953,0.88922,-1.10396,-1.92447,-0.86350,2.10237,-0.44158 +3.98059,0.88958,-1.10372,-1.92457,-0.86349,2.10210,-0.44129 +3.98166,0.89020,-1.10333,-1.92470,-0.86351,2.10166,-0.44081 +3.98273,0.89080,-1.10295,-1.92483,-0.86352,2.10121,-0.44033 +3.98379,0.89140,-1.10258,-1.92495,-0.86353,2.10078,-0.43986 +3.98486,0.89199,-1.10221,-1.92508,-0.86354,2.10035,-0.43940 +3.98592,0.89257,-1.10185,-1.92520,-0.86355,2.09993,-0.43894 +3.98699,0.89314,-1.10150,-1.92532,-0.86356,2.09951,-0.43849 +3.98806,0.89370,-1.10115,-1.92544,-0.86357,2.09909,-0.43805 +3.98912,0.89426,-1.10081,-1.92556,-0.86358,2.09869,-0.43761 +3.99019,0.89481,-1.10047,-1.92567,-0.86359,2.09829,-0.43718 +3.99126,0.89535,-1.10014,-1.92579,-0.86359,2.09789,-0.43676 +3.99232,0.89588,-1.09981,-1.92590,-0.86360,2.09750,-0.43634 +3.99339,0.89640,-1.09949,-1.92601,-0.86360,2.09712,-0.43593 +3.99446,0.89692,-1.09918,-1.92612,-0.86361,2.09674,-0.43552 +3.99552,0.89730,-1.09895,-1.92619,-0.86362,2.09646,-0.43522 +3.99659,0.89805,-1.09853,-1.92626,-0.86367,2.09591,-0.43464 +3.99765,0.89879,-1.09812,-1.92633,-0.86373,2.09537,-0.43406 +3.99872,0.89952,-1.09772,-1.92640,-0.86378,2.09484,-0.43349 +3.99979,0.90024,-1.09732,-1.92647,-0.86383,2.09431,-0.43293 +4.00085,0.90095,-1.09693,-1.92653,-0.86388,2.09379,-0.43237 +4.00192,0.90165,-1.09655,-1.92660,-0.86393,2.09328,-0.43183 +4.00299,0.90234,-1.09617,-1.92666,-0.86398,2.09278,-0.43129 +4.00405,0.90302,-1.09580,-1.92673,-0.86402,2.09228,-0.43076 +4.00512,0.90369,-1.09544,-1.92679,-0.86407,2.09179,-0.43024 +4.00618,0.90435,-1.09508,-1.92686,-0.86411,2.09131,-0.42973 +4.00725,0.90500,-1.09473,-1.92692,-0.86415,2.09083,-0.42922 +4.00832,0.90564,-1.09438,-1.92698,-0.86419,2.09036,-0.42872 +4.00938,0.90628,-1.09404,-1.92704,-0.86423,2.08989,-0.42823 +4.01045,0.90690,-1.09371,-1.92710,-0.86427,2.08944,-0.42775 +4.01152,0.90751,-1.09338,-1.92716,-0.86430,2.08898,-0.42727 +4.01258,0.90812,-1.09305,-1.92722,-0.86434,2.08854,-0.42680 +4.01365,0.90872,-1.09274,-1.92728,-0.86437,2.08810,-0.42634 +4.01472,0.90930,-1.09242,-1.92734,-0.86440,2.08767,-0.42588 +4.01578,0.90988,-1.09211,-1.92739,-0.86443,2.08724,-0.42543 +4.01685,0.91046,-1.09181,-1.92745,-0.86446,2.08682,-0.42499 +4.01791,0.91102,-1.09152,-1.92751,-0.86449,2.08640,-0.42455 +4.01898,0.91158,-1.09122,-1.92756,-0.86452,2.08599,-0.42412 +4.02005,0.91212,-1.09094,-1.92762,-0.86455,2.08559,-0.42370 +4.02111,0.91266,-1.09065,-1.92767,-0.86457,2.08519,-0.42328 +4.02218,0.91319,-1.09037,-1.92772,-0.86460,2.08480,-0.42287 +4.02325,0.91336,-1.09029,-1.92774,-0.86461,2.08467,-0.42273 +4.02431,0.91401,-1.08997,-1.92775,-0.86466,2.08420,-0.42223 +4.02538,0.91466,-1.08966,-1.92777,-0.86472,2.08372,-0.42174 +4.02644,0.91529,-1.08935,-1.92779,-0.86477,2.08326,-0.42125 +4.02751,0.91591,-1.08905,-1.92781,-0.86482,2.08280,-0.42077 +4.02858,0.91652,-1.08875,-1.92783,-0.86487,2.08235,-0.42030 +4.02964,0.91713,-1.08846,-1.92785,-0.86492,2.08190,-0.41983 +4.03071,0.91772,-1.08817,-1.92787,-0.86496,2.08146,-0.41937 +4.03178,0.91831,-1.08789,-1.92789,-0.86501,2.08103,-0.41892 +4.03284,0.91889,-1.08761,-1.92791,-0.86505,2.08060,-0.41848 +4.03391,0.91946,-1.08734,-1.92793,-0.86509,2.08018,-0.41804 +4.03498,0.92002,-1.08707,-1.92795,-0.86513,2.07977,-0.41760 +4.03604,0.92058,-1.08681,-1.92797,-0.86517,2.07936,-0.41718 +4.03711,0.92112,-1.08655,-1.92799,-0.86521,2.07895,-0.41676 +4.03817,0.92166,-1.08629,-1.92801,-0.86525,2.07855,-0.41634 +4.03924,0.92183,-1.08621,-1.92801,-0.86526,2.07843,-0.41621 +4.04031,0.92246,-1.08592,-1.92801,-0.86532,2.07796,-0.41573 +4.04137,0.92308,-1.08563,-1.92802,-0.86538,2.07750,-0.41526 +4.04244,0.92369,-1.08535,-1.92802,-0.86543,2.07705,-0.41479 +4.04351,0.92429,-1.08507,-1.92802,-0.86549,2.07661,-0.41433 +4.04457,0.92489,-1.08479,-1.92803,-0.86554,2.07617,-0.41387 +4.04564,0.92547,-1.08452,-1.92803,-0.86559,2.07574,-0.41342 +4.04671,0.92605,-1.08426,-1.92804,-0.86564,2.07531,-0.41298 +4.04777,0.92662,-1.08400,-1.92804,-0.86569,2.07489,-0.41255 +4.04884,0.92718,-1.08374,-1.92805,-0.86573,2.07447,-0.41212 +4.04990,0.92773,-1.08349,-1.92806,-0.86578,2.07406,-0.41170 +4.05097,0.92827,-1.08324,-1.92806,-0.86582,2.07366,-0.41128 +4.05204,0.92868,-1.08306,-1.92806,-0.86586,2.07336,-0.41097 +4.05310,0.92947,-1.08271,-1.92802,-0.86596,2.07277,-0.41037 +4.05417,0.93026,-1.08237,-1.92797,-0.86606,2.07219,-0.40977 +4.05524,0.93104,-1.08203,-1.92793,-0.86616,2.07162,-0.40918 +4.05630,0.93180,-1.08170,-1.92789,-0.86626,2.07106,-0.40860 +4.05737,0.93256,-1.08138,-1.92785,-0.86635,2.07050,-0.40802 +4.05843,0.93330,-1.08106,-1.92781,-0.86644,2.06995,-0.40746 +4.05950,0.93403,-1.08074,-1.92778,-0.86653,2.06941,-0.40691 +4.06057,0.93475,-1.08043,-1.92774,-0.86662,2.06888,-0.40636 +4.06163,0.93547,-1.08013,-1.92770,-0.86671,2.06835,-0.40582 +4.06270,0.93617,-1.07983,-1.92767,-0.86679,2.06783,-0.40529 +4.06377,0.93686,-1.07954,-1.92763,-0.86687,2.06732,-0.40476 +4.06483,0.93754,-1.07925,-1.92760,-0.86695,2.06681,-0.40425 +4.06590,0.93821,-1.07896,-1.92757,-0.86703,2.06631,-0.40374 +4.06697,0.93887,-1.07869,-1.92754,-0.86710,2.06582,-0.40324 +4.06803,0.93952,-1.07841,-1.92751,-0.86717,2.06534,-0.40275 +4.06910,0.94017,-1.07814,-1.92748,-0.86725,2.06486,-0.40226 +4.07016,0.94080,-1.07787,-1.92745,-0.86732,2.06439,-0.40178 +4.07123,0.94143,-1.07761,-1.92743,-0.86738,2.06393,-0.40131 +4.07230,0.94204,-1.07736,-1.92740,-0.86745,2.06347,-0.40084 +4.07336,0.94265,-1.07710,-1.92738,-0.86751,2.06302,-0.40039 +4.07443,0.94325,-1.07685,-1.92735,-0.86758,2.06257,-0.39994 +4.07550,0.94384,-1.07661,-1.92733,-0.86764,2.06213,-0.39949 +4.07656,0.94442,-1.07637,-1.92731,-0.86770,2.06170,-0.39905 +4.07763,0.94499,-1.07613,-1.92729,-0.86776,2.06127,-0.39862 +4.07869,0.94555,-1.07590,-1.92726,-0.86781,2.06085,-0.39820 +4.07976,0.94611,-1.07567,-1.92724,-0.86787,2.06044,-0.39778 +4.08083,0.94666,-1.07544,-1.92722,-0.86792,2.06003,-0.39736 +4.08189,0.94683,-1.07537,-1.92722,-0.86794,2.05990,-0.39723 +4.08296,0.94747,-1.07511,-1.92718,-0.86802,2.05942,-0.39675 +4.08403,0.94810,-1.07485,-1.92715,-0.86809,2.05895,-0.39628 +4.08509,0.94873,-1.07460,-1.92711,-0.86816,2.05849,-0.39581 +4.08616,0.94934,-1.07435,-1.92708,-0.86823,2.05803,-0.39535 +4.08723,0.94994,-1.07411,-1.92704,-0.86830,2.05758,-0.39489 +4.08829,0.95054,-1.07387,-1.92701,-0.86837,2.05713,-0.39445 +4.08936,0.95113,-1.07363,-1.92698,-0.86843,2.05669,-0.39401 +4.09042,0.95171,-1.07340,-1.92695,-0.86849,2.05626,-0.39357 +4.09149,0.95228,-1.07317,-1.92692,-0.86856,2.05584,-0.39315 +4.09256,0.95284,-1.07294,-1.92690,-0.86862,2.05542,-0.39272 +4.09362,0.95339,-1.07272,-1.92687,-0.86867,2.05500,-0.39231 +4.09469,0.95384,-1.07254,-1.92685,-0.86872,2.05467,-0.39197 +4.09576,0.95445,-1.07230,-1.92681,-0.86880,2.05421,-0.39152 +4.09682,0.95506,-1.07206,-1.92677,-0.86887,2.05376,-0.39106 +4.09789,0.95565,-1.07182,-1.92673,-0.86894,2.05331,-0.39062 +4.09896,0.95624,-1.07159,-1.92669,-0.86901,2.05287,-0.39018 +4.10002,0.95682,-1.07137,-1.92665,-0.86907,2.05244,-0.38975 +4.10109,0.95739,-1.07114,-1.92662,-0.86914,2.05201,-0.38932 +4.10215,0.95796,-1.07092,-1.92658,-0.86920,2.05159,-0.38890 +4.10322,0.95851,-1.07070,-1.92655,-0.86926,2.05118,-0.38849 +4.10429,0.95885,-1.07057,-1.92653,-0.86930,2.05092,-0.38824 +4.10535,0.95948,-1.07035,-1.92645,-0.86939,2.05045,-0.38777 +4.10642,0.96009,-1.07013,-1.92638,-0.86947,2.04999,-0.38731 +4.10749,0.96071,-1.06991,-1.92631,-0.86955,2.04953,-0.38685 +4.10855,0.96131,-1.06969,-1.92625,-0.86964,2.04908,-0.38641 +4.10962,0.96190,-1.06948,-1.92618,-0.86971,2.04864,-0.38597 +4.11068,0.96248,-1.06927,-1.92611,-0.86979,2.04820,-0.38553 +4.11175,0.96306,-1.06907,-1.92605,-0.86987,2.04777,-0.38510 +4.11282,0.96363,-1.06886,-1.92599,-0.86994,2.04735,-0.38468 +4.11388,0.96419,-1.06866,-1.92593,-0.87001,2.04693,-0.38427 +4.11495,0.96474,-1.06847,-1.92587,-0.87008,2.04651,-0.38386 +4.11602,0.96491,-1.06841,-1.92585,-0.87010,2.04638,-0.38373 +4.11708,0.96555,-1.06820,-1.92574,-0.87021,2.04590,-0.38325 +4.11815,0.96619,-1.06800,-1.92563,-0.87030,2.04543,-0.38278 +4.11922,0.96681,-1.06780,-1.92553,-0.87040,2.04496,-0.38232 +4.12028,0.96742,-1.06760,-1.92543,-0.87049,2.04450,-0.38187 +4.12135,0.96803,-1.06741,-1.92533,-0.87058,2.04405,-0.38142 +4.12241,0.96862,-1.06722,-1.92523,-0.87067,2.04360,-0.38098 +4.12348,0.96921,-1.06703,-1.92514,-0.87076,2.04316,-0.38054 +4.12455,0.96979,-1.06685,-1.92505,-0.87085,2.04273,-0.38012 +4.12561,0.97036,-1.06666,-1.92495,-0.87093,2.04230,-0.37969 +4.12668,0.97093,-1.06648,-1.92487,-0.87101,2.04187,-0.37928 +4.12775,0.97148,-1.06631,-1.92478,-0.87109,2.04146,-0.37887 +4.12881,0.97198,-1.06615,-1.92470,-0.87117,2.04108,-0.37850 +4.12988,0.97261,-1.06597,-1.92457,-0.87127,2.04061,-0.37804 +4.13094,0.97322,-1.06578,-1.92445,-0.87137,2.04015,-0.37758 +4.13201,0.97383,-1.06560,-1.92433,-0.87147,2.03969,-0.37714 +4.13308,0.97443,-1.06543,-1.92421,-0.87157,2.03924,-0.37669 +4.13414,0.97502,-1.06525,-1.92410,-0.87166,2.03880,-0.37626 +4.13521,0.97561,-1.06508,-1.92399,-0.87176,2.03836,-0.37583 +4.13628,0.97618,-1.06492,-1.92388,-0.87185,2.03793,-0.37541 +4.13734,0.97674,-1.06475,-1.92377,-0.87194,2.03750,-0.37499 +4.13841,0.97730,-1.06459,-1.92366,-0.87203,2.03708,-0.37458 +4.13948,0.97785,-1.06443,-1.92356,-0.87211,2.03667,-0.37418 +4.14054,0.97808,-1.06436,-1.92351,-0.87215,2.03650,-0.37402 +4.14161,0.97869,-1.06420,-1.92337,-0.87226,2.03604,-0.37356 +4.14267,0.97930,-1.06404,-1.92322,-0.87236,2.03558,-0.37312 +4.14374,0.97990,-1.06388,-1.92309,-0.87247,2.03513,-0.37268 +4.14481,0.98049,-1.06372,-1.92295,-0.87257,2.03469,-0.37225 +4.14587,0.98107,-1.06357,-1.92281,-0.87267,2.03425,-0.37182 +4.14694,0.98165,-1.06341,-1.92268,-0.87277,2.03382,-0.37140 +4.14801,0.98221,-1.06326,-1.92255,-0.87287,2.03339,-0.37099 +4.14907,0.98277,-1.06312,-1.92243,-0.87296,2.03297,-0.37058 +4.15014,0.98332,-1.06297,-1.92230,-0.87305,2.03256,-0.37018 +4.15120,0.98375,-1.06286,-1.92220,-0.87313,2.03223,-0.36986 +4.15227,0.98434,-1.06271,-1.92206,-0.87323,2.03178,-0.36943 +4.15334,0.98492,-1.06256,-1.92192,-0.87334,2.03135,-0.36901 +4.15440,0.98548,-1.06242,-1.92178,-0.87344,2.03092,-0.36859 +4.15547,0.98604,-1.06228,-1.92164,-0.87354,2.03050,-0.36818 +4.15654,0.98660,-1.06214,-1.92151,-0.87363,2.03008,-0.36778 +4.15760,0.98714,-1.06200,-1.92138,-0.87373,2.02967,-0.36738 +4.15867,0.98736,-1.06195,-1.92132,-0.87377,2.02951,-0.36722 +4.15974,0.98793,-1.06181,-1.92118,-0.87387,2.02908,-0.36681 +4.16080,0.98849,-1.06167,-1.92104,-0.87397,2.02866,-0.36640 +4.16187,0.98904,-1.06153,-1.92090,-0.87407,2.02824,-0.36600 +4.16293,0.98959,-1.06140,-1.92077,-0.87417,2.02783,-0.36560 +4.16400,0.98986,-1.06133,-1.92070,-0.87422,2.02762,-0.36540 +4.16507,0.99042,-1.06120,-1.92055,-0.87432,2.02720,-0.36500 +4.16613,0.99097,-1.06107,-1.92040,-0.87442,2.02678,-0.36459 +4.16720,0.99152,-1.06095,-1.92026,-0.87452,2.02637,-0.36420 +4.16827,0.99195,-1.06085,-1.92014,-0.87460,2.02604,-0.36388 +4.16933,0.99250,-1.06072,-1.92000,-0.87470,2.02562,-0.36348 +4.17040,0.99305,-1.06059,-1.91985,-0.87480,2.02521,-0.36309 +4.17147,0.99348,-1.06049,-1.91974,-0.87488,2.02488,-0.36277 +4.17253,0.99391,-1.06038,-1.91963,-0.87496,2.02456,-0.36246 +4.17360,0.99446,-1.06025,-1.91949,-0.87506,2.02414,-0.36206 +4.17466,0.99495,-1.06014,-1.91936,-0.87515,2.02378,-0.36171 +4.17573,0.99550,-1.06002,-1.91920,-0.87526,2.02336,-0.36131 +4.17680,0.99604,-1.05990,-1.91904,-0.87536,2.02295,-0.36091 +4.17786,0.99658,-1.05979,-1.91889,-0.87547,2.02254,-0.36052 +4.17893,0.99663,-1.05977,-1.91887,-0.87548,2.02250,-0.36049 +4.18000,0.99717,-1.05967,-1.91871,-0.87558,2.02210,-0.36010 +4.18106,0.99727,-1.05965,-1.91867,-0.87561,2.02201,-0.36002 +4.18213,0.99782,-1.05961,-1.91840,-0.87574,2.02160,-0.35962 +4.18319,0.99836,-1.05958,-1.91813,-0.87588,2.02119,-0.35923 +4.18426,0.99889,-1.05954,-1.91787,-0.87601,2.02079,-0.35885 +4.18533,0.99942,-1.05950,-1.91761,-0.87614,2.02039,-0.35847 +4.18639,0.99993,-1.05947,-1.91736,-0.87627,2.02000,-0.35810 +4.18746,1.00044,-1.05943,-1.91711,-0.87640,2.01962,-0.35773 +4.18853,1.00094,-1.05940,-1.91687,-0.87652,2.01924,-0.35737 +4.18959,1.00124,-1.05938,-1.91672,-0.87659,2.01901,-0.35715 +4.19066,1.00171,-1.05944,-1.91637,-0.87674,2.01865,-0.35681 +4.19173,1.00218,-1.05949,-1.91603,-0.87689,2.01830,-0.35648 +4.19279,1.00263,-1.05954,-1.91570,-0.87703,2.01795,-0.35614 +4.19386,1.00309,-1.05959,-1.91537,-0.87717,2.01760,-0.35582 +4.19492,1.00353,-1.05963,-1.91505,-0.87730,2.01727,-0.35550 +4.19599,1.00397,-1.05969,-1.91472,-0.87744,2.01694,-0.35518 +4.19706,1.00436,-1.05984,-1.91429,-0.87760,2.01664,-0.35490 +4.19812,1.00474,-1.05999,-1.91386,-0.87776,2.01634,-0.35462 +4.19919,1.00512,-1.06014,-1.91345,-0.87791,2.01605,-0.35435 +4.20026,1.00549,-1.06028,-1.91304,-0.87806,2.01577,-0.35408 +4.20132,1.00586,-1.06042,-1.91264,-0.87821,2.01549,-0.35381 +4.20239,1.00622,-1.06056,-1.91225,-0.87835,2.01521,-0.35355 +4.20345,1.00646,-1.06067,-1.91196,-0.87845,2.01503,-0.35338 +4.20452,1.00672,-1.06098,-1.91139,-0.87863,2.01482,-0.35319 +4.20559,1.00698,-1.06128,-1.91084,-0.87880,2.01463,-0.35300 +4.20665,1.00724,-1.06157,-1.91029,-0.87897,2.01443,-0.35282 +4.20772,1.00748,-1.06186,-1.90976,-0.87914,2.01424,-0.35264 +4.20879,1.00773,-1.06215,-1.90923,-0.87931,2.01405,-0.35246 +4.20985,1.00797,-1.06243,-1.90871,-0.87947,2.01386,-0.35228 +4.21092,1.00821,-1.06270,-1.90820,-0.87963,2.01368,-0.35211 +4.21199,1.00844,-1.06297,-1.90770,-0.87978,2.01350,-0.35194 +4.21305,1.00867,-1.06324,-1.90721,-0.87994,2.01332,-0.35178 +4.21412,1.00889,-1.06350,-1.90673,-0.88009,2.01314,-0.35161 +4.21518,1.00911,-1.06375,-1.90626,-0.88024,2.01297,-0.35145 +4.21625,1.00933,-1.06400,-1.90579,-0.88039,2.01280,-0.35130 +4.21732,1.00940,-1.06412,-1.90559,-0.88045,2.01275,-0.35125 +4.21838,1.00945,-1.06461,-1.90491,-0.88063,2.01271,-0.35121 +4.21945,1.00949,-1.06509,-1.90424,-0.88080,2.01267,-0.35117 +4.22052,1.00954,-1.06555,-1.90358,-0.88098,2.01263,-0.35114 +4.22158,1.00958,-1.06601,-1.90293,-0.88115,2.01259,-0.35111 +4.22265,1.00962,-1.06647,-1.90230,-0.88132,2.01255,-0.35107 +4.22372,1.00966,-1.06691,-1.90167,-0.88148,2.01252,-0.35104 +4.22478,1.00970,-1.06735,-1.90106,-0.88164,2.01248,-0.35101 +4.22585,1.00974,-1.06777,-1.90046,-0.88181,2.01245,-0.35098 +4.22691,1.00977,-1.06819,-1.89986,-0.88196,2.01241,-0.35095 +4.22798,1.00981,-1.06861,-1.89928,-0.88212,2.01238,-0.35093 +4.22905,1.00984,-1.06901,-1.89871,-0.88228,2.01235,-0.35090 +4.23011,1.00988,-1.06941,-1.89814,-0.88243,2.01232,-0.35087 +4.23118,1.00991,-1.06980,-1.89759,-0.88258,2.01229,-0.35085 +4.23225,1.00994,-1.07019,-1.89705,-0.88273,2.01226,-0.35082 +4.23331,1.00997,-1.07057,-1.89651,-0.88287,2.01223,-0.35080 +4.23438,1.01000,-1.07094,-1.89599,-0.88302,2.01220,-0.35078 +4.23544,1.01003,-1.07130,-1.89547,-0.88316,2.01218,-0.35075 +4.23651,1.01006,-1.07166,-1.89496,-0.88330,2.01215,-0.35073 +4.23758,1.01007,-1.07199,-1.89451,-0.88342,2.01214,-0.35072 +4.23864,1.01003,-1.07244,-1.89391,-0.88357,2.01216,-0.35075 +4.23971,1.00999,-1.07288,-1.89333,-0.88373,2.01219,-0.35077 +4.24078,1.00994,-1.07331,-1.89276,-0.88387,2.01222,-0.35080 +4.24184,1.00990,-1.07374,-1.89220,-0.88402,2.01224,-0.35083 +4.24291,1.00986,-1.07416,-1.89164,-0.88416,2.01227,-0.35086 +4.24398,1.00982,-1.07457,-1.89110,-0.88431,2.01230,-0.35089 +4.24504,1.00977,-1.07498,-1.89056,-0.88445,2.01233,-0.35092 +4.24611,1.00973,-1.07538,-1.89004,-0.88459,2.01235,-0.35095 +4.24717,1.00969,-1.07577,-1.88952,-0.88472,2.01238,-0.35097 +4.24824,1.00965,-1.07615,-1.88901,-0.88486,2.01241,-0.35100 +4.24931,1.00960,-1.07651,-1.88855,-0.88498,2.01244,-0.35104 +4.25037,1.00939,-1.07709,-1.88787,-0.88513,2.01259,-0.35118 +4.25144,1.00918,-1.07766,-1.88721,-0.88529,2.01274,-0.35133 +4.25251,1.00898,-1.07822,-1.88656,-0.88544,2.01289,-0.35147 +4.25357,1.00878,-1.07877,-1.88591,-0.88559,2.01303,-0.35161 +4.25464,1.00859,-1.07931,-1.88528,-0.88574,2.01318,-0.35175 +4.25570,1.00839,-1.07984,-1.88466,-0.88588,2.01332,-0.35189 +4.25677,1.00820,-1.08037,-1.88405,-0.88603,2.01346,-0.35202 +4.25784,1.00801,-1.08088,-1.88345,-0.88617,2.01359,-0.35216 +4.25890,1.00782,-1.08138,-1.88286,-0.88631,2.01373,-0.35229 +4.25997,1.00764,-1.08188,-1.88228,-0.88645,2.01387,-0.35242 +4.26104,1.00746,-1.08236,-1.88171,-0.88659,2.01400,-0.35255 +4.26210,1.00728,-1.08284,-1.88115,-0.88672,2.01413,-0.35267 +4.26317,1.00710,-1.08331,-1.88060,-0.88686,2.01426,-0.35280 +4.26424,1.00693,-1.08377,-1.88006,-0.88699,2.01439,-0.35292 +4.26530,1.00675,-1.08422,-1.87952,-0.88712,2.01451,-0.35305 +4.26637,1.00658,-1.08467,-1.87900,-0.88725,2.01464,-0.35317 +4.26743,1.00642,-1.08511,-1.87848,-0.88738,2.01476,-0.35329 +4.26850,1.00625,-1.08554,-1.87798,-0.88751,2.01488,-0.35340 +4.26957,1.00609,-1.08596,-1.87748,-0.88763,2.01500,-0.35352 +4.27063,1.00592,-1.08637,-1.87699,-0.88775,2.01512,-0.35364 +4.27170,1.00577,-1.08675,-1.87655,-0.88786,2.01523,-0.35374 +4.27277,1.00554,-1.08723,-1.87601,-0.88799,2.01541,-0.35391 +4.27383,1.00530,-1.08770,-1.87549,-0.88811,2.01558,-0.35408 +4.27490,1.00508,-1.08817,-1.87497,-0.88823,2.01575,-0.35424 +4.27597,1.00485,-1.08862,-1.87446,-0.88835,2.01591,-0.35440 +4.27703,1.00463,-1.08907,-1.87396,-0.88847,2.01608,-0.35456 +4.27810,1.00441,-1.08951,-1.87347,-0.88859,2.01624,-0.35472 +4.27916,1.00419,-1.08995,-1.87299,-0.88871,2.01640,-0.35487 +4.28023,1.00398,-1.09037,-1.87251,-0.88882,2.01656,-0.35502 +4.28130,1.00377,-1.09079,-1.87204,-0.88894,2.01672,-0.35517 +4.28236,1.00373,-1.09084,-1.87199,-0.88895,2.01674,-0.35520 +4.28343,1.00338,-1.09137,-1.87146,-0.88905,2.01700,-0.35545 +4.28450,1.00303,-1.09190,-1.87094,-0.88916,2.01726,-0.35570 +4.28556,1.00268,-1.09241,-1.87042,-0.88927,2.01752,-0.35595 +4.28663,1.00234,-1.09291,-1.86992,-0.88937,2.01777,-0.35619 +4.28769,1.00201,-1.09341,-1.86942,-0.88947,2.01802,-0.35643 +4.28876,1.00168,-1.09390,-1.86893,-0.88958,2.01827,-0.35667 +4.28983,1.00135,-1.09438,-1.86845,-0.88968,2.01851,-0.35690 +4.29089,1.00103,-1.09485,-1.86797,-0.88978,2.01875,-0.35713 +4.29196,1.00072,-1.09531,-1.86751,-0.88988,2.01898,-0.35736 +4.29303,1.00040,-1.09576,-1.86705,-0.88998,2.01921,-0.35758 +4.29409,1.00010,-1.09621,-1.86660,-0.89008,2.01944,-0.35780 +4.29516,0.99980,-1.09665,-1.86615,-0.89017,2.01966,-0.35802 +4.29623,0.99950,-1.09708,-1.86572,-0.89027,2.01989,-0.35823 +4.29729,0.99920,-1.09751,-1.86529,-0.89037,2.02011,-0.35844 +4.29836,0.99910,-1.09764,-1.86516,-0.89039,2.02018,-0.35852 +4.29942,0.99869,-1.09815,-1.86468,-0.89048,2.02049,-0.35881 +4.30049,0.99828,-1.09866,-1.86422,-0.89057,2.02079,-0.35911 +4.30156,0.99787,-1.09915,-1.86377,-0.89065,2.02109,-0.35940 +4.30262,0.99748,-1.09964,-1.86332,-0.89074,2.02139,-0.35969 +4.30369,0.99708,-1.10011,-1.86288,-0.89082,2.02168,-0.35997 +4.30476,0.99670,-1.10058,-1.86244,-0.89091,2.02197,-0.36025 +4.30582,0.99632,-1.10105,-1.86201,-0.89099,2.02225,-0.36052 +4.30689,0.99594,-1.10150,-1.86159,-0.89107,2.02253,-0.36079 +4.30795,0.99557,-1.10195,-1.86118,-0.89116,2.02281,-0.36106 +4.30902,0.99521,-1.10238,-1.86077,-0.89124,2.02308,-0.36132 +4.31009,0.99485,-1.10282,-1.86037,-0.89132,2.02335,-0.36158 +4.31115,0.99450,-1.10324,-1.85998,-0.89140,2.02361,-0.36183 +4.31222,0.99421,-1.10358,-1.85966,-0.89146,2.02383,-0.36204 +4.31329,0.99373,-1.10410,-1.85923,-0.89153,2.02419,-0.36239 +4.31435,0.99326,-1.10460,-1.85880,-0.89161,2.02454,-0.36273 +4.31542,0.99279,-1.10510,-1.85837,-0.89168,2.02488,-0.36306 +4.31649,0.99234,-1.10559,-1.85796,-0.89175,2.02522,-0.36339 +4.31755,0.99189,-1.10607,-1.85755,-0.89182,2.02556,-0.36372 +4.31862,0.99144,-1.10654,-1.85714,-0.89189,2.02589,-0.36404 +4.31968,0.99101,-1.10700,-1.85675,-0.89196,2.02622,-0.36436 +4.32075,0.99058,-1.10746,-1.85635,-0.89203,2.02654,-0.36467 +4.32182,0.99015,-1.10791,-1.85597,-0.89210,2.02685,-0.36497 +4.32288,0.98974,-1.10835,-1.85559,-0.89217,2.02716,-0.36528 +4.32395,0.98933,-1.10878,-1.85522,-0.89224,2.02747,-0.36557 +4.32502,0.98892,-1.10921,-1.85485,-0.89231,2.02777,-0.36587 +4.32608,0.98852,-1.10963,-1.85449,-0.89238,2.02807,-0.36616 +4.32715,0.98813,-1.11004,-1.85413,-0.89245,2.02837,-0.36644 +4.32821,0.98791,-1.11026,-1.85395,-0.89248,2.02853,-0.36660 +4.32928,0.98724,-1.11085,-1.85353,-0.89252,2.02903,-0.36709 +4.33035,0.98658,-1.11143,-1.85312,-0.89256,2.02952,-0.36757 +4.33141,0.98593,-1.11200,-1.85272,-0.89260,2.03000,-0.36804 +4.33248,0.98530,-1.11256,-1.85232,-0.89264,2.03048,-0.36850 +4.33355,0.98467,-1.11311,-1.85193,-0.89268,2.03094,-0.36895 +4.33461,0.98405,-1.11365,-1.85154,-0.89272,2.03140,-0.36940 +4.33568,0.98344,-1.11418,-1.85116,-0.89277,2.03186,-0.36985 +4.33675,0.98284,-1.11470,-1.85078,-0.89281,2.03230,-0.37028 +4.33781,0.98225,-1.11522,-1.85041,-0.89286,2.03274,-0.37071 +4.33888,0.98167,-1.11572,-1.85005,-0.89290,2.03318,-0.37113 +4.33994,0.98110,-1.11622,-1.84969,-0.89294,2.03360,-0.37155 +4.34101,0.98054,-1.11671,-1.84933,-0.89299,2.03402,-0.37196 +4.34208,0.97999,-1.11719,-1.84898,-0.89303,2.03444,-0.37236 +4.34314,0.97944,-1.11767,-1.84864,-0.89308,2.03484,-0.37276 +4.34421,0.97890,-1.11813,-1.84830,-0.89313,2.03524,-0.37316 +4.34528,0.97838,-1.11859,-1.84797,-0.89317,2.03564,-0.37354 +4.34634,0.97786,-1.11904,-1.84764,-0.89322,2.03603,-0.37392 +4.34741,0.97734,-1.11948,-1.84732,-0.89326,2.03641,-0.37430 +4.34848,0.97684,-1.11992,-1.84700,-0.89331,2.03679,-0.37467 +4.34954,0.97634,-1.12035,-1.84669,-0.89336,2.03716,-0.37503 +4.35061,0.97585,-1.12077,-1.84638,-0.89341,2.03752,-0.37539 +4.35167,0.97537,-1.12118,-1.84608,-0.89345,2.03788,-0.37574 +4.35274,0.97490,-1.12159,-1.84578,-0.89350,2.03824,-0.37609 +4.35381,0.97443,-1.12199,-1.84548,-0.89355,2.03858,-0.37644 +4.35487,0.97397,-1.12238,-1.84519,-0.89359,2.03893,-0.37677 +4.35594,0.97352,-1.12277,-1.84491,-0.89364,2.03927,-0.37711 +4.35701,0.97306,-1.12316,-1.84463,-0.89369,2.03961,-0.37744 +4.35807,0.97249,-1.12359,-1.84435,-0.89371,2.04004,-0.37786 +4.35914,0.97193,-1.12402,-1.84409,-0.89373,2.04045,-0.37827 +4.36020,0.97138,-1.12444,-1.84382,-0.89376,2.04087,-0.37868 +4.36127,0.97084,-1.12485,-1.84356,-0.89378,2.04127,-0.37908 +4.36234,0.97030,-1.12526,-1.84331,-0.89381,2.04167,-0.37947 +4.36340,0.96978,-1.12566,-1.84306,-0.89383,2.04206,-0.37986 +4.36447,0.96926,-1.12606,-1.84281,-0.89386,2.04245,-0.38025 +4.36554,0.96875,-1.12644,-1.84256,-0.89388,2.04283,-0.38062 +4.36660,0.96825,-1.12683,-1.84232,-0.89391,2.04321,-0.38099 +4.36767,0.96775,-1.12720,-1.84208,-0.89394,2.04358,-0.38136 +4.36874,0.96726,-1.12757,-1.84185,-0.89397,2.04394,-0.38172 +4.36980,0.96679,-1.12793,-1.84162,-0.89400,2.04430,-0.38207 +4.37087,0.96638,-1.12823,-1.84143,-0.89401,2.04460,-0.38237 +4.37193,0.96568,-1.12870,-1.84120,-0.89401,2.04512,-0.38289 +4.37300,0.96500,-1.12917,-1.84097,-0.89400,2.04563,-0.38340 +4.37407,0.96432,-1.12963,-1.84074,-0.89400,2.04613,-0.38390 +4.37513,0.96365,-1.13008,-1.84052,-0.89399,2.04663,-0.38439 +4.37620,0.96300,-1.13053,-1.84030,-0.89399,2.04712,-0.38487 +4.37727,0.96235,-1.13096,-1.84008,-0.89399,2.04760,-0.38535 +4.37833,0.96171,-1.13139,-1.83986,-0.89399,2.04807,-0.38582 +4.37940,0.96109,-1.13182,-1.83965,-0.89399,2.04854,-0.38629 +4.38046,0.96047,-1.13223,-1.83944,-0.89399,2.04900,-0.38674 +4.38153,0.95987,-1.13264,-1.83923,-0.89399,2.04945,-0.38719 +4.38260,0.95927,-1.13305,-1.83903,-0.89400,2.04989,-0.38764 +4.38366,0.95868,-1.13344,-1.83882,-0.89400,2.05033,-0.38807 +4.38473,0.95811,-1.13383,-1.83862,-0.89401,2.05076,-0.38850 +4.38580,0.95754,-1.13422,-1.83843,-0.89401,2.05118,-0.38893 +4.38686,0.95698,-1.13459,-1.83823,-0.89402,2.05160,-0.38934 +4.38793,0.95643,-1.13496,-1.83804,-0.89403,2.05201,-0.38975 +4.38900,0.95589,-1.13533,-1.83785,-0.89404,2.05241,-0.39016 +4.39006,0.95535,-1.13569,-1.83767,-0.89405,2.05281,-0.39056 +4.39113,0.95483,-1.13604,-1.83748,-0.89406,2.05320,-0.39095 +4.39219,0.95431,-1.13639,-1.83730,-0.89407,2.05359,-0.39133 +4.39326,0.95380,-1.13673,-1.83712,-0.89408,2.05397,-0.39172 +4.39433,0.95330,-1.13707,-1.83695,-0.89409,2.05434,-0.39209 +4.39539,0.95281,-1.13740,-1.83677,-0.89410,2.05471,-0.39246 +4.39646,0.95268,-1.13748,-1.83673,-0.89410,2.05481,-0.39255 +4.39753,0.95190,-1.13799,-1.83652,-0.89408,2.05538,-0.39314 +4.39859,0.95113,-1.13848,-1.83631,-0.89406,2.05595,-0.39371 +4.39966,0.95037,-1.13897,-1.83610,-0.89404,2.05651,-0.39427 +4.40073,0.94963,-1.13945,-1.83590,-0.89402,2.05707,-0.39483 +4.40179,0.94890,-1.13992,-1.83569,-0.89401,2.05761,-0.39538 +4.40286,0.94818,-1.14038,-1.83549,-0.89399,2.05814,-0.39592 +4.40392,0.94747,-1.14084,-1.83529,-0.89398,2.05867,-0.39645 +4.40499,0.94677,-1.14129,-1.83510,-0.89397,2.05918,-0.39697 +4.40606,0.94609,-1.14173,-1.83491,-0.89396,2.05969,-0.39748 +4.40712,0.94541,-1.14217,-1.83471,-0.89395,2.06019,-0.39799 +4.40819,0.94475,-1.14259,-1.83453,-0.89394,2.06069,-0.39849 +4.40926,0.94409,-1.14302,-1.83434,-0.89393,2.06117,-0.39898 +4.41032,0.94345,-1.14343,-1.83416,-0.89393,2.06165,-0.39947 +4.41139,0.94282,-1.14384,-1.83397,-0.89392,2.06212,-0.39994 +4.41245,0.94219,-1.14424,-1.83379,-0.89392,2.06258,-0.40041 +4.41352,0.94158,-1.14463,-1.83362,-0.89392,2.06304,-0.40087 +4.41459,0.94098,-1.14502,-1.83344,-0.89392,2.06348,-0.40133 +4.41565,0.94038,-1.14540,-1.83327,-0.89392,2.06393,-0.40178 +4.41672,0.93980,-1.14578,-1.83310,-0.89392,2.06436,-0.40222 +4.41779,0.93923,-1.14615,-1.83293,-0.89392,2.06479,-0.40265 +4.41885,0.93866,-1.14651,-1.83276,-0.89393,2.06521,-0.40308 +4.41992,0.93810,-1.14687,-1.83260,-0.89393,2.06562,-0.40350 +4.42099,0.93756,-1.14722,-1.83244,-0.89394,2.06603,-0.40392 +4.42205,0.93702,-1.14756,-1.83228,-0.89394,2.06643,-0.40432 +4.42312,0.93649,-1.14791,-1.83212,-0.89395,2.06682,-0.40473 +4.42418,0.93596,-1.14824,-1.83196,-0.89396,2.06721,-0.40512 +4.42525,0.93545,-1.14857,-1.83181,-0.89397,2.06759,-0.40551 +4.42632,0.93494,-1.14889,-1.83166,-0.89397,2.06797,-0.40590 +4.42738,0.93445,-1.14921,-1.83151,-0.89398,2.06834,-0.40628 +4.42845,0.93408,-1.14945,-1.83140,-0.89399,2.06861,-0.40655 +4.42952,0.93337,-1.14991,-1.83119,-0.89398,2.06913,-0.40709 +4.43058,0.93268,-1.15037,-1.83099,-0.89398,2.06965,-0.40762 +4.43165,0.93200,-1.15082,-1.83078,-0.89397,2.07015,-0.40813 +4.43271,0.93132,-1.15126,-1.83058,-0.89397,2.07065,-0.40864 +4.43378,0.93066,-1.15170,-1.83039,-0.89397,2.07114,-0.40915 +4.43485,0.93001,-1.15213,-1.83019,-0.89397,2.07162,-0.40964 +4.43591,0.92937,-1.15255,-1.83000,-0.89397,2.07209,-0.41013 +4.43698,0.92874,-1.15297,-1.82981,-0.89397,2.07256,-0.41061 +4.43805,0.92812,-1.15337,-1.82963,-0.89397,2.07302,-0.41108 +4.43911,0.92751,-1.15378,-1.82944,-0.89398,2.07347,-0.41155 +4.44018,0.92691,-1.15417,-1.82926,-0.89398,2.07391,-0.41201 +4.44125,0.92632,-1.15456,-1.82908,-0.89399,2.07435,-0.41246 +4.44231,0.92574,-1.15494,-1.82890,-0.89400,2.07478,-0.41290 +4.44338,0.92517,-1.15532,-1.82873,-0.89400,2.07521,-0.41334 +4.44444,0.92460,-1.15569,-1.82855,-0.89401,2.07562,-0.41377 +4.44551,0.92405,-1.15605,-1.82838,-0.89402,2.07603,-0.41419 +4.44658,0.92350,-1.15641,-1.82821,-0.89403,2.07644,-0.41461 +4.44764,0.92297,-1.15676,-1.82805,-0.89404,2.07683,-0.41502 +4.44871,0.92244,-1.15711,-1.82788,-0.89405,2.07722,-0.41543 +4.44978,0.92192,-1.15745,-1.82772,-0.89407,2.07761,-0.41583 +4.45084,0.92141,-1.15778,-1.82756,-0.89408,2.07799,-0.41622 +4.45191,0.92091,-1.15811,-1.82740,-0.89409,2.07836,-0.41660 +4.45298,0.92041,-1.15844,-1.82724,-0.89411,2.07873,-0.41698 +4.45404,0.91993,-1.15875,-1.82709,-0.89412,2.07909,-0.41736 +4.45511,0.91975,-1.15887,-1.82704,-0.89413,2.07922,-0.41749 +4.45617,0.91900,-1.15939,-1.82679,-0.89413,2.07977,-0.41807 +4.45724,0.91826,-1.15990,-1.82655,-0.89413,2.08031,-0.41863 +4.45831,0.91754,-1.16040,-1.82632,-0.89413,2.08085,-0.41919 +4.45937,0.91682,-1.16089,-1.82608,-0.89413,2.08137,-0.41974 +4.46044,0.91612,-1.16138,-1.82585,-0.89414,2.08189,-0.42028 +4.46151,0.91542,-1.16186,-1.82563,-0.89415,2.08240,-0.42081 +4.46257,0.91474,-1.16233,-1.82540,-0.89415,2.08290,-0.42134 +4.46364,0.91407,-1.16279,-1.82518,-0.89416,2.08339,-0.42185 +4.46470,0.91341,-1.16324,-1.82496,-0.89417,2.08388,-0.42236 +4.46577,0.91277,-1.16369,-1.82474,-0.89418,2.08436,-0.42286 +4.46684,0.91213,-1.16413,-1.82453,-0.89420,2.08483,-0.42335 +4.46790,0.91150,-1.16456,-1.82432,-0.89421,2.08529,-0.42384 +4.46897,0.91088,-1.16499,-1.82411,-0.89422,2.08574,-0.42432 +4.47004,0.91028,-1.16540,-1.82391,-0.89424,2.08619,-0.42479 +4.47110,0.90968,-1.16581,-1.82371,-0.89425,2.08663,-0.42525 +4.47217,0.90909,-1.16622,-1.82351,-0.89427,2.08706,-0.42570 +4.47324,0.90851,-1.16662,-1.82331,-0.89429,2.08749,-0.42615 +4.47430,0.90794,-1.16701,-1.82311,-0.89431,2.08791,-0.42659 +4.47537,0.90738,-1.16739,-1.82292,-0.89433,2.08832,-0.42703 +4.47643,0.90683,-1.16777,-1.82273,-0.89435,2.08873,-0.42746 +4.47750,0.90629,-1.16814,-1.82255,-0.89437,2.08913,-0.42788 +4.47857,0.90576,-1.16851,-1.82236,-0.89439,2.08952,-0.42829 +4.47963,0.90523,-1.16887,-1.82218,-0.89441,2.08991,-0.42870 +4.48070,0.90472,-1.16922,-1.82200,-0.89443,2.09029,-0.42910 +4.48177,0.90421,-1.16957,-1.82182,-0.89445,2.09066,-0.42950 +4.48283,0.90371,-1.16992,-1.82165,-0.89448,2.09103,-0.42989 +4.48390,0.90322,-1.17025,-1.82147,-0.89450,2.09139,-0.43027 +4.48496,0.90273,-1.17058,-1.82130,-0.89452,2.09175,-0.43065 +4.48603,0.90226,-1.17091,-1.82114,-0.89455,2.09210,-0.43102 +4.48710,0.90200,-1.17109,-1.82104,-0.89456,2.09229,-0.43123 +4.48816,0.90128,-1.17160,-1.82079,-0.89457,2.09282,-0.43179 +4.48923,0.90057,-1.17211,-1.82054,-0.89459,2.09334,-0.43234 +4.49030,0.89987,-1.17261,-1.82030,-0.89460,2.09385,-0.43288 +4.49136,0.89919,-1.17309,-1.82006,-0.89462,2.09435,-0.43341 +4.49243,0.89852,-1.17357,-1.81982,-0.89463,2.09484,-0.43393 +4.49350,0.89786,-1.17405,-1.81958,-0.89465,2.09532,-0.43445 +4.49456,0.89720,-1.17451,-1.81935,-0.89467,2.09580,-0.43496 +4.49563,0.89656,-1.17497,-1.81912,-0.89469,2.09627,-0.43546 +4.49669,0.89593,-1.17542,-1.81889,-0.89471,2.09673,-0.43595 +4.49776,0.89531,-1.17586,-1.81867,-0.89473,2.09718,-0.43644 +4.49883,0.89471,-1.17630,-1.81845,-0.89476,2.09763,-0.43692 +4.49989,0.89411,-1.17672,-1.81823,-0.89478,2.09807,-0.43739 +4.50096,0.89352,-1.17714,-1.81801,-0.89480,2.09850,-0.43785 +4.50203,0.89294,-1.17756,-1.81780,-0.89483,2.09893,-0.43831 +4.50309,0.89236,-1.17796,-1.81759,-0.89485,2.09935,-0.43875 +4.50416,0.89180,-1.17836,-1.81739,-0.89488,2.09976,-0.43920 +4.50522,0.89125,-1.17876,-1.81718,-0.89491,2.10016,-0.43963 +4.50629,0.89071,-1.17914,-1.81698,-0.89493,2.10056,-0.44006 +4.50736,0.89017,-1.17952,-1.81678,-0.89496,2.10095,-0.44048 +4.50842,0.88965,-1.17990,-1.81659,-0.89499,2.10134,-0.44090 +4.50949,0.88913,-1.18027,-1.81639,-0.89502,2.10172,-0.44130 +4.51056,0.88862,-1.18063,-1.81620,-0.89505,2.10209,-0.44171 +4.51162,0.88812,-1.18098,-1.81602,-0.89508,2.10246,-0.44210 +4.51269,0.88763,-1.18133,-1.81583,-0.89511,2.10282,-0.44249 +4.51376,0.88714,-1.18168,-1.81565,-0.89514,2.10318,-0.44288 +4.51482,0.88666,-1.18202,-1.81547,-0.89517,2.10353,-0.44325 +4.51589,0.88619,-1.18235,-1.81529,-0.89520,2.10387,-0.44362 +4.51695,0.88570,-1.18271,-1.81510,-0.89523,2.10423,-0.44402 +4.51802,0.88492,-1.18333,-1.81474,-0.89527,2.10480,-0.44463 +4.51909,0.88416,-1.18394,-1.81439,-0.89531,2.10536,-0.44523 +4.52015,0.88340,-1.18454,-1.81404,-0.89535,2.10590,-0.44583 +4.52122,0.88266,-1.18513,-1.81370,-0.89540,2.10644,-0.44641 +4.52229,0.88194,-1.18572,-1.81337,-0.89544,2.10697,-0.44699 +4.52335,0.88122,-1.18629,-1.81303,-0.89548,2.10749,-0.44755 +4.52442,0.88052,-1.18685,-1.81271,-0.89553,2.10800,-0.44811 +4.52549,0.87982,-1.18741,-1.81238,-0.89557,2.10850,-0.44866 +4.52655,0.87914,-1.18795,-1.81207,-0.89562,2.10900,-0.44920 +4.52762,0.87847,-1.18848,-1.81175,-0.89567,2.10949,-0.44973 +4.52868,0.87781,-1.18901,-1.81144,-0.89572,2.10997,-0.45025 +4.52975,0.87717,-1.18953,-1.81114,-0.89576,2.11044,-0.45077 +4.53082,0.87653,-1.19004,-1.81084,-0.89581,2.11090,-0.45127 +4.53188,0.87590,-1.19054,-1.81054,-0.89586,2.11136,-0.45177 +4.53295,0.87529,-1.19103,-1.81025,-0.89591,2.11180,-0.45226 +4.53402,0.87468,-1.19151,-1.80996,-0.89596,2.11225,-0.45275 +4.53508,0.87408,-1.19199,-1.80967,-0.89601,2.11268,-0.45322 +4.53615,0.87350,-1.19245,-1.80939,-0.89606,2.11311,-0.45369 +4.53721,0.87292,-1.19291,-1.80912,-0.89611,2.11353,-0.45415 +4.53828,0.87235,-1.19336,-1.80884,-0.89617,2.11394,-0.45461 +4.53935,0.87180,-1.19381,-1.80858,-0.89622,2.11435,-0.45505 +4.54041,0.87125,-1.19424,-1.80831,-0.89627,2.11474,-0.45549 +4.54148,0.87071,-1.19467,-1.80805,-0.89632,2.11514,-0.45592 +4.54255,0.87018,-1.19510,-1.80779,-0.89638,2.11552,-0.45635 +4.54361,0.86965,-1.19551,-1.80754,-0.89643,2.11591,-0.45677 +4.54468,0.86914,-1.19592,-1.80729,-0.89648,2.11628,-0.45718 +4.54575,0.86863,-1.19632,-1.80704,-0.89653,2.11665,-0.45759 +4.54681,0.86814,-1.19671,-1.80680,-0.89659,2.11701,-0.45799 +4.54788,0.86765,-1.19710,-1.80656,-0.89664,2.11737,-0.45838 +4.54894,0.86717,-1.19748,-1.80632,-0.89670,2.11772,-0.45877 +4.55001,0.86669,-1.19786,-1.80609,-0.89675,2.11806,-0.45915 +4.55108,0.86623,-1.19823,-1.80586,-0.89680,2.11840,-0.45953 +4.55214,0.86577,-1.19859,-1.80563,-0.89686,2.11874,-0.45990 +4.55321,0.86532,-1.19894,-1.80541,-0.89691,2.11907,-0.46026 +4.55428,0.86487,-1.19929,-1.80519,-0.89696,2.11939,-0.46062 +4.55534,0.86443,-1.19965,-1.80497,-0.89701,2.11971,-0.46098 +4.55641,0.86349,-1.20045,-1.80450,-0.89707,2.12039,-0.46173 +4.55747,0.86256,-1.20124,-1.80403,-0.89713,2.12106,-0.46248 +4.55854,0.86165,-1.20202,-1.80357,-0.89719,2.12171,-0.46321 +4.55961,0.86075,-1.20278,-1.80311,-0.89725,2.12236,-0.46393 +4.56067,0.85987,-1.20353,-1.80267,-0.89732,2.12299,-0.46464 +4.56174,0.85900,-1.20427,-1.80222,-0.89738,2.12361,-0.46533 +4.56281,0.85815,-1.20500,-1.80179,-0.89745,2.12422,-0.46602 +4.56387,0.85732,-1.20571,-1.80136,-0.89751,2.12483,-0.46669 +4.56494,0.85649,-1.20641,-1.80093,-0.89758,2.12542,-0.46736 +4.56601,0.85569,-1.20710,-1.80051,-0.89765,2.12600,-0.46801 +4.56707,0.85489,-1.20778,-1.80010,-0.89771,2.12657,-0.46865 +4.56814,0.85411,-1.20844,-1.79969,-0.89778,2.12713,-0.46929 +4.56920,0.85334,-1.20910,-1.79929,-0.89785,2.12768,-0.46991 +4.57027,0.85259,-1.20974,-1.79890,-0.89792,2.12823,-0.47052 +4.57134,0.85184,-1.21038,-1.79851,-0.89800,2.12876,-0.47112 +4.57240,0.85111,-1.21100,-1.79812,-0.89807,2.12929,-0.47172 +4.57347,0.85040,-1.21161,-1.79774,-0.89814,2.12980,-0.47230 +4.57454,0.84969,-1.21221,-1.79737,-0.89821,2.13031,-0.47288 +4.57560,0.84900,-1.21280,-1.79700,-0.89829,2.13081,-0.47344 +4.57667,0.84831,-1.21338,-1.79664,-0.89836,2.13130,-0.47400 +4.57774,0.84764,-1.21396,-1.79628,-0.89843,2.13178,-0.47454 +4.57880,0.84698,-1.21452,-1.79592,-0.89851,2.13226,-0.47508 +4.57987,0.84634,-1.21507,-1.79558,-0.89858,2.13273,-0.47561 +4.58093,0.84570,-1.21561,-1.79523,-0.89865,2.13318,-0.47614 +4.58200,0.84507,-1.21615,-1.79489,-0.89873,2.13364,-0.47665 +4.58307,0.84445,-1.21667,-1.79456,-0.89880,2.13408,-0.47715 +4.58413,0.84385,-1.21719,-1.79423,-0.89888,2.13452,-0.47765 +4.58520,0.84325,-1.21769,-1.79391,-0.89895,2.13495,-0.47814 +4.58627,0.84267,-1.21819,-1.79359,-0.89903,2.13537,-0.47862 +4.58733,0.84209,-1.21868,-1.79327,-0.89910,2.13578,-0.47910 +4.58840,0.84152,-1.21916,-1.79296,-0.89918,2.13619,-0.47956 +4.58946,0.84096,-1.21964,-1.79266,-0.89926,2.13659,-0.48002 +4.59053,0.84042,-1.22010,-1.79235,-0.89933,2.13699,-0.48048 +4.59160,0.83988,-1.22056,-1.79206,-0.89941,2.13738,-0.48092 +4.59266,0.83935,-1.22101,-1.79176,-0.89948,2.13776,-0.48136 +4.59373,0.83882,-1.22145,-1.79148,-0.89956,2.13813,-0.48179 +4.59480,0.83831,-1.22189,-1.79119,-0.89963,2.13850,-0.48221 +4.59586,0.83781,-1.22231,-1.79091,-0.89970,2.13887,-0.48263 +4.59693,0.83731,-1.22273,-1.79063,-0.89978,2.13923,-0.48304 +4.59800,0.83682,-1.22315,-1.79036,-0.89985,2.13958,-0.48345 +4.59906,0.83634,-1.22355,-1.79009,-0.89993,2.13992,-0.48384 +4.60013,0.83587,-1.22395,-1.78983,-0.90000,2.14026,-0.48423 +4.60119,0.83541,-1.22434,-1.78957,-0.90007,2.14060,-0.48462 +4.60226,0.83495,-1.22473,-1.78931,-0.90015,2.14093,-0.48500 +4.60333,0.83450,-1.22511,-1.78906,-0.90022,2.14125,-0.48537 +4.60439,0.83406,-1.22548,-1.78881,-0.90029,2.14157,-0.48574 +4.60546,0.83363,-1.22585,-1.78856,-0.90037,2.14188,-0.48610 +4.60653,0.83320,-1.22621,-1.78832,-0.90044,2.14219,-0.48646 +4.60759,0.83278,-1.22656,-1.78808,-0.90051,2.14250,-0.48681 +4.60866,0.83239,-1.22690,-1.78786,-0.90057,2.14278,-0.48713 +4.60972,0.83141,-1.22781,-1.78727,-0.90067,2.14347,-0.48794 +4.61079,0.83045,-1.22871,-1.78670,-0.90077,2.14415,-0.48873 +4.61186,0.82950,-1.22959,-1.78613,-0.90088,2.14483,-0.48951 +4.61292,0.82857,-1.23045,-1.78557,-0.90098,2.14549,-0.49028 +4.61399,0.82766,-1.23130,-1.78502,-0.90108,2.14613,-0.49104 +4.61506,0.82676,-1.23214,-1.78448,-0.90119,2.14677,-0.49178 +4.61612,0.82588,-1.23296,-1.78395,-0.90129,2.14740,-0.49251 +4.61719,0.82501,-1.23377,-1.78342,-0.90140,2.14801,-0.49323 +4.61826,0.82416,-1.23457,-1.78290,-0.90150,2.14862,-0.49394 +4.61932,0.82332,-1.23535,-1.78238,-0.90161,2.14921,-0.49464 +4.62039,0.82250,-1.23611,-1.78188,-0.90172,2.14979,-0.49532 +4.62145,0.82169,-1.23687,-1.78138,-0.90183,2.15037,-0.49600 +4.62252,0.82089,-1.23761,-1.78089,-0.90193,2.15093,-0.49666 +4.62359,0.82011,-1.23834,-1.78040,-0.90204,2.15149,-0.49731 +4.62465,0.81934,-1.23906,-1.77992,-0.90215,2.15203,-0.49795 +4.62572,0.81859,-1.23976,-1.77945,-0.90226,2.15257,-0.49859 +4.62679,0.81785,-1.24045,-1.77899,-0.90237,2.15309,-0.49921 +4.62785,0.81712,-1.24113,-1.77853,-0.90247,2.15361,-0.49982 +4.62892,0.81640,-1.24180,-1.77808,-0.90258,2.15412,-0.50042 +4.62999,0.81570,-1.24246,-1.77764,-0.90269,2.15462,-0.50101 +4.63105,0.81501,-1.24311,-1.77720,-0.90280,2.15511,-0.50159 +4.63212,0.81433,-1.24374,-1.77676,-0.90291,2.15559,-0.50217 +4.63318,0.81366,-1.24437,-1.77634,-0.90302,2.15607,-0.50273 +4.63425,0.81300,-1.24498,-1.77592,-0.90312,2.15653,-0.50328 +4.63532,0.81235,-1.24558,-1.77551,-0.90323,2.15699,-0.50383 +4.63638,0.81172,-1.24618,-1.77510,-0.90334,2.15744,-0.50437 +4.63745,0.81109,-1.24676,-1.77470,-0.90345,2.15789,-0.50490 +4.63852,0.81048,-1.24733,-1.77430,-0.90355,2.15832,-0.50542 +4.63958,0.80988,-1.24789,-1.77391,-0.90366,2.15875,-0.50593 +4.64065,0.80928,-1.24845,-1.77353,-0.90377,2.15917,-0.50643 +4.64171,0.80870,-1.24899,-1.77315,-0.90387,2.15959,-0.50692 +4.64278,0.80813,-1.24953,-1.77277,-0.90398,2.15999,-0.50741 +4.64385,0.80756,-1.25005,-1.77241,-0.90408,2.16040,-0.50789 +4.64491,0.80701,-1.25057,-1.77204,-0.90419,2.16079,-0.50836 +4.64598,0.80646,-1.25108,-1.77169,-0.90429,2.16118,-0.50883 +4.64705,0.80593,-1.25157,-1.77133,-0.90440,2.16156,-0.50928 +4.64811,0.80540,-1.25206,-1.77099,-0.90450,2.16193,-0.50973 +4.64918,0.80488,-1.25255,-1.77064,-0.90460,2.16230,-0.51017 +4.65025,0.80437,-1.25302,-1.77031,-0.90471,2.16266,-0.51061 +4.65131,0.80387,-1.25349,-1.76998,-0.90481,2.16302,-0.51104 +4.65238,0.80338,-1.25394,-1.76965,-0.90491,2.16337,-0.51146 +4.65344,0.80289,-1.25439,-1.76933,-0.90501,2.16371,-0.51187 +4.65451,0.80242,-1.25483,-1.76901,-0.90511,2.16405,-0.51228 +4.65558,0.80195,-1.25527,-1.76870,-0.90521,2.16438,-0.51268 +4.65664,0.80149,-1.25570,-1.76839,-0.90531,2.16471,-0.51308 +4.65771,0.80104,-1.25612,-1.76809,-0.90541,2.16503,-0.51347 +4.65878,0.80059,-1.25653,-1.76779,-0.90551,2.16535,-0.51385 +4.65984,0.80015,-1.25693,-1.76749,-0.90561,2.16566,-0.51423 +4.66091,0.79972,-1.25733,-1.76720,-0.90570,2.16597,-0.51460 +4.66197,0.79930,-1.25772,-1.76692,-0.90580,2.16627,-0.51496 +4.66304,0.79888,-1.25811,-1.76664,-0.90589,2.16656,-0.51532 +4.66411,0.79847,-1.25849,-1.76636,-0.90599,2.16686,-0.51567 +4.66517,0.79807,-1.25886,-1.76609,-0.90608,2.16714,-0.51602 +4.66624,0.79767,-1.25922,-1.76582,-0.90618,2.16742,-0.51636 +4.66731,0.79729,-1.25958,-1.76555,-0.90627,2.16770,-0.51670 +4.66837,0.79708,-1.25978,-1.76541,-0.90631,2.16785,-0.51687 +4.66944,0.79622,-1.26067,-1.76478,-0.90646,2.16845,-0.51761 +4.67051,0.79537,-1.26154,-1.76417,-0.90660,2.16904,-0.51833 +4.67157,0.79454,-1.26240,-1.76356,-0.90675,2.16962,-0.51904 +4.67264,0.79372,-1.26324,-1.76296,-0.90689,2.17020,-0.51974 +4.67370,0.79292,-1.26407,-1.76237,-0.90704,2.17076,-0.52043 +4.67477,0.79213,-1.26488,-1.76179,-0.90718,2.17131,-0.52111 +4.67584,0.79135,-1.26568,-1.76121,-0.90732,2.17186,-0.52177 +4.67690,0.79059,-1.26647,-1.76065,-0.90747,2.17239,-0.52243 +4.67797,0.78984,-1.26724,-1.76009,-0.90761,2.17291,-0.52307 +4.67904,0.78910,-1.26800,-1.75954,-0.90775,2.17343,-0.52370 +4.68010,0.78838,-1.26874,-1.75900,-0.90790,2.17394,-0.52433 +4.68117,0.78767,-1.26948,-1.75847,-0.90804,2.17443,-0.52494 +4.68224,0.78697,-1.27020,-1.75794,-0.90818,2.17492,-0.52554 +4.68330,0.78628,-1.27091,-1.75743,-0.90832,2.17540,-0.52614 +4.68437,0.78560,-1.27160,-1.75692,-0.90846,2.17587,-0.52672 +4.68543,0.78494,-1.27229,-1.75641,-0.90860,2.17634,-0.52729 +4.68650,0.78429,-1.27296,-1.75592,-0.90874,2.17680,-0.52786 +4.68757,0.78365,-1.27362,-1.75543,-0.90888,2.17724,-0.52841 +4.68863,0.78302,-1.27427,-1.75495,-0.90902,2.17768,-0.52896 +4.68970,0.78240,-1.27491,-1.75448,-0.90916,2.17812,-0.52950 +4.69077,0.78179,-1.27553,-1.75401,-0.90930,2.17854,-0.53003 +4.69183,0.78119,-1.27615,-1.75355,-0.90943,2.17896,-0.53055 +4.69290,0.78061,-1.27675,-1.75310,-0.90957,2.17937,-0.53106 +4.69396,0.78003,-1.27735,-1.75265,-0.90971,2.17978,-0.53156 +4.69503,0.77946,-1.27793,-1.75221,-0.90984,2.18017,-0.53206 +4.69610,0.77890,-1.27851,-1.75178,-0.90997,2.18057,-0.53254 +4.69716,0.77835,-1.27907,-1.75135,-0.91011,2.18095,-0.53302 +4.69823,0.77781,-1.27963,-1.75093,-0.91024,2.18133,-0.53350 +4.69930,0.77728,-1.28017,-1.75052,-0.91037,2.18170,-0.53396 +4.70036,0.77676,-1.28071,-1.75011,-0.91050,2.18206,-0.53442 +4.70143,0.77625,-1.28124,-1.74971,-0.91063,2.18242,-0.53487 +4.70250,0.77575,-1.28175,-1.74931,-0.91076,2.18277,-0.53531 +4.70356,0.77525,-1.28226,-1.74892,-0.91089,2.18312,-0.53574 +4.70463,0.77477,-1.28276,-1.74854,-0.91102,2.18346,-0.53617 +4.70569,0.77429,-1.28325,-1.74816,-0.91114,2.18380,-0.53659 +4.70676,0.77382,-1.28374,-1.74779,-0.91127,2.18413,-0.53700 +4.70783,0.77335,-1.28421,-1.74742,-0.91139,2.18445,-0.53741 +4.70889,0.77290,-1.28468,-1.74706,-0.91152,2.18477,-0.53781 +4.70996,0.77245,-1.28513,-1.74670,-0.91164,2.18508,-0.53821 +4.71103,0.77201,-1.28558,-1.74635,-0.91176,2.18539,-0.53859 +4.71209,0.77158,-1.28603,-1.74601,-0.91188,2.18569,-0.53898 +4.71316,0.77116,-1.28646,-1.74567,-0.91200,2.18599,-0.53935 +4.71422,0.77074,-1.28689,-1.74533,-0.91212,2.18628,-0.53972 +4.71529,0.77033,-1.28731,-1.74500,-0.91224,2.18657,-0.54009 +4.71636,0.76992,-1.28772,-1.74468,-0.91235,2.18686,-0.54044 +4.71742,0.76953,-1.28813,-1.74436,-0.91247,2.18713,-0.54080 +4.71849,0.76914,-1.28852,-1.74404,-0.91259,2.18741,-0.54114 +4.71956,0.76875,-1.28892,-1.74373,-0.91270,2.18768,-0.54148 +4.72062,0.76838,-1.28930,-1.74343,-0.91281,2.18794,-0.54182 +4.72169,0.76800,-1.28968,-1.74312,-0.91292,2.18820,-0.54215 +4.72276,0.76764,-1.29005,-1.74283,-0.91304,2.18846,-0.54247 +4.72382,0.76728,-1.29042,-1.74254,-0.91315,2.18871,-0.54279 +4.72489,0.76718,-1.29052,-1.74246,-0.91316,2.18878,-0.54288 +4.72595,0.76618,-1.29157,-1.74175,-0.91332,2.18947,-0.54376 +4.72702,0.76520,-1.29260,-1.74105,-0.91349,2.19014,-0.54462 +4.72809,0.76423,-1.29361,-1.74036,-0.91365,2.19081,-0.54546 +4.72915,0.76328,-1.29461,-1.73968,-0.91381,2.19146,-0.54630 +4.73022,0.76235,-1.29558,-1.73901,-0.91398,2.19210,-0.54712 +4.73129,0.76144,-1.29654,-1.73835,-0.91414,2.19272,-0.54792 +4.73235,0.76054,-1.29749,-1.73770,-0.91430,2.19334,-0.54871 +4.73342,0.75966,-1.29841,-1.73705,-0.91447,2.19395,-0.54949 +4.73448,0.75879,-1.29933,-1.73642,-0.91463,2.19454,-0.55025 +4.73555,0.75794,-1.30022,-1.73579,-0.91479,2.19513,-0.55101 +4.73662,0.75711,-1.30110,-1.73518,-0.91496,2.19570,-0.55175 +4.73768,0.75629,-1.30197,-1.73457,-0.91512,2.19626,-0.55247 +4.73875,0.75548,-1.30282,-1.73397,-0.91528,2.19682,-0.55319 +4.73982,0.75469,-1.30365,-1.73338,-0.91544,2.19736,-0.55389 +4.74088,0.75391,-1.30447,-1.73280,-0.91560,2.19789,-0.55458 +4.74195,0.75315,-1.30528,-1.73222,-0.91577,2.19842,-0.55526 +4.74302,0.75240,-1.30607,-1.73166,-0.91593,2.19893,-0.55593 +4.74408,0.75166,-1.30685,-1.73110,-0.91609,2.19944,-0.55659 +4.74515,0.75094,-1.30762,-1.73055,-0.91625,2.19994,-0.55724 +4.74621,0.75023,-1.30837,-1.73001,-0.91640,2.20042,-0.55787 +4.74728,0.74953,-1.30911,-1.72948,-0.91656,2.20090,-0.55850 +4.74835,0.74884,-1.30983,-1.72895,-0.91672,2.20137,-0.55912 +4.74941,0.74817,-1.31055,-1.72843,-0.91688,2.20184,-0.55972 +4.75048,0.74751,-1.31125,-1.72792,-0.91703,2.20229,-0.56032 +4.75155,0.74685,-1.31194,-1.72742,-0.91719,2.20274,-0.56090 +4.75261,0.74621,-1.31262,-1.72692,-0.91734,2.20318,-0.56148 +4.75368,0.74559,-1.31328,-1.72643,-0.91750,2.20361,-0.56204 +4.75475,0.74497,-1.31393,-1.72595,-0.91765,2.20403,-0.56260 +4.75581,0.74436,-1.31458,-1.72548,-0.91780,2.20445,-0.56315 +4.75688,0.74377,-1.31521,-1.72501,-0.91795,2.20486,-0.56369 +4.75794,0.74318,-1.31583,-1.72455,-0.91811,2.20526,-0.56422 +4.75901,0.74260,-1.31644,-1.72409,-0.91826,2.20566,-0.56474 +4.76008,0.74204,-1.31704,-1.72365,-0.91840,2.20605,-0.56525 +4.76114,0.74148,-1.31763,-1.72321,-0.91855,2.20643,-0.56575 +4.76221,0.74094,-1.31821,-1.72277,-0.91870,2.20680,-0.56625 +4.76328,0.74040,-1.31878,-1.72234,-0.91884,2.20717,-0.56674 +4.76434,0.73987,-1.31933,-1.72192,-0.91899,2.20753,-0.56722 +4.76541,0.73935,-1.31988,-1.72151,-0.91913,2.20789,-0.56769 +4.76647,0.73884,-1.32042,-1.72110,-0.91928,2.20824,-0.56815 +4.76754,0.73834,-1.32095,-1.72069,-0.91942,2.20858,-0.56861 +4.76861,0.73785,-1.32147,-1.72030,-0.91956,2.20892,-0.56906 +4.76967,0.73737,-1.32199,-1.71990,-0.91970,2.20926,-0.56950 +4.77074,0.73689,-1.32249,-1.71952,-0.91984,2.20958,-0.56993 +4.77181,0.73642,-1.32298,-1.71914,-0.91998,2.20990,-0.57036 +4.77287,0.73596,-1.32347,-1.71877,-0.92011,2.21022,-0.57078 +4.77394,0.73551,-1.32395,-1.71840,-0.92025,2.21053,-0.57120 +4.77501,0.73507,-1.32441,-1.71803,-0.92038,2.21083,-0.57160 +4.77607,0.73463,-1.32488,-1.71768,-0.92052,2.21113,-0.57200 +4.77714,0.73420,-1.32533,-1.71732,-0.92065,2.21143,-0.57240 +4.77820,0.73378,-1.32577,-1.71698,-0.92078,2.21172,-0.57278 +4.77927,0.73337,-1.32621,-1.71664,-0.92091,2.21200,-0.57316 +4.78034,0.73296,-1.32664,-1.71630,-0.92104,2.21228,-0.57354 +4.78140,0.73256,-1.32706,-1.71597,-0.92117,2.21256,-0.57391 +4.78247,0.73217,-1.32748,-1.71564,-0.92129,2.21283,-0.57427 +4.78354,0.73178,-1.32789,-1.71532,-0.92142,2.21309,-0.57463 +4.78460,0.73140,-1.32829,-1.71500,-0.92155,2.21336,-0.57498 +4.78567,0.73103,-1.32868,-1.71469,-0.92167,2.21361,-0.57532 +4.78673,0.73066,-1.32907,-1.71438,-0.92179,2.21387,-0.57566 +4.78780,0.73030,-1.32945,-1.71408,-0.92191,2.21411,-0.57600 +4.78887,0.72994,-1.32982,-1.71378,-0.92203,2.21436,-0.57633 +4.78993,0.72959,-1.33019,-1.71349,-0.92215,2.21460,-0.57665 +4.79100,0.72925,-1.33055,-1.71320,-0.92227,2.21483,-0.57697 +4.79207,0.72919,-1.33062,-1.71315,-0.92229,2.21488,-0.57703 +4.79313,0.72855,-1.33131,-1.71265,-0.92244,2.21531,-0.57761 +4.79420,0.72793,-1.33199,-1.71215,-0.92259,2.21573,-0.57818 +4.79527,0.72731,-1.33266,-1.71167,-0.92274,2.21615,-0.57874 +4.79633,0.72671,-1.33332,-1.71119,-0.92289,2.21655,-0.57929 +4.79740,0.72612,-1.33397,-1.71072,-0.92304,2.21696,-0.57983 +4.79846,0.72554,-1.33460,-1.71025,-0.92318,2.21735,-0.58037 +4.79953,0.72497,-1.33522,-1.70980,-0.92333,2.21774,-0.58089 +4.80060,0.72440,-1.33584,-1.70934,-0.92348,2.21812,-0.58141 +4.80166,0.72385,-1.33644,-1.70890,-0.92362,2.21849,-0.58192 +4.80273,0.72331,-1.33703,-1.70846,-0.92377,2.21886,-0.58242 +4.80380,0.72278,-1.33761,-1.70803,-0.92391,2.21922,-0.58291 +4.80486,0.72226,-1.33818,-1.70760,-0.92405,2.21957,-0.58339 +4.80593,0.72174,-1.33875,-1.70718,-0.92420,2.21992,-0.58387 +4.80700,0.72124,-1.33930,-1.70677,-0.92434,2.22027,-0.58433 +4.80806,0.72074,-1.33984,-1.70636,-0.92448,2.22060,-0.58479 +4.80913,0.72025,-1.34037,-1.70596,-0.92462,2.22093,-0.58524 +4.81019,0.71977,-1.34090,-1.70557,-0.92475,2.22126,-0.58569 +4.81126,0.71930,-1.34141,-1.70518,-0.92489,2.22158,-0.58613 +4.81233,0.71884,-1.34192,-1.70480,-0.92503,2.22189,-0.58656 +4.81339,0.71838,-1.34241,-1.70442,-0.92516,2.22220,-0.58698 +4.81446,0.71794,-1.34290,-1.70405,-0.92530,2.22250,-0.58740 +4.81553,0.71750,-1.34338,-1.70368,-0.92543,2.22280,-0.58780 +4.81659,0.71706,-1.34385,-1.70332,-0.92556,2.22309,-0.58821 +4.81766,0.71664,-1.34431,-1.70296,-0.92569,2.22338,-0.58860 +4.81872,0.71622,-1.34477,-1.70261,-0.92582,2.22366,-0.58899 +4.81979,0.71581,-1.34521,-1.70227,-0.92595,2.22394,-0.58938 +4.82086,0.71541,-1.34565,-1.70193,-0.92608,2.22422,-0.58975 +4.82192,0.71501,-1.34609,-1.70159,-0.92620,2.22448,-0.59012 +4.82299,0.71462,-1.34651,-1.70126,-0.92633,2.22475,-0.59049 +4.82406,0.71424,-1.34693,-1.70094,-0.92645,2.22501,-0.59085 +4.82512,0.71387,-1.34733,-1.70062,-0.92658,2.22526,-0.59120 +4.82619,0.71350,-1.34774,-1.70030,-0.92670,2.22552,-0.59155 +4.82726,0.71313,-1.34813,-1.69999,-0.92682,2.22576,-0.59189 +4.82832,0.71277,-1.34852,-1.69969,-0.92694,2.22600,-0.59222 +4.82939,0.71242,-1.34890,-1.69939,-0.92706,2.22624,-0.59255 +4.83045,0.71208,-1.34928,-1.69909,-0.92718,2.22648,-0.59288 +4.83152,0.71174,-1.34965,-1.69880,-0.92730,2.22671,-0.59320 +4.83259,0.71141,-1.35001,-1.69851,-0.92741,2.22693,-0.59351 +4.83365,0.71130,-1.35012,-1.69842,-0.92745,2.22700,-0.59361 +4.83472,0.71094,-1.35051,-1.69812,-0.92756,2.22725,-0.59395 +4.83579,0.71059,-1.35089,-1.69783,-0.92768,2.22749,-0.59428 +4.83685,0.71024,-1.35126,-1.69754,-0.92779,2.22772,-0.59461 +4.83792,0.70990,-1.35163,-1.69725,-0.92791,2.22796,-0.59493 +4.83898,0.70956,-1.35200,-1.69697,-0.92802,2.22819,-0.59525 +4.84005,0.70935,-1.35222,-1.69680,-0.92809,2.22832,-0.59544 +4.84112,0.70897,-1.35262,-1.69650,-0.92820,2.22858,-0.59580 +4.84218,0.70859,-1.35301,-1.69621,-0.92831,2.22884,-0.59616 +4.84325,0.70822,-1.35340,-1.69593,-0.92842,2.22909,-0.59651 +4.84432,0.70786,-1.35379,-1.69565,-0.92852,2.22933,-0.59685 +4.84538,0.70750,-1.35416,-1.69537,-0.92863,2.22957,-0.59719 +4.84645,0.70715,-1.35453,-1.69509,-0.92874,2.22981,-0.59752 +4.84752,0.70680,-1.35489,-1.69482,-0.92884,2.23004,-0.59785 +4.84858,0.70647,-1.35525,-1.69456,-0.92895,2.23027,-0.59817 +4.84965,0.70633,-1.35539,-1.69445,-0.92899,2.23037,-0.59829 +4.85071,0.70598,-1.35576,-1.69418,-0.92910,2.23060,-0.59862 +4.85178,0.70564,-1.35612,-1.69391,-0.92920,2.23083,-0.59894 +4.85285,0.70534,-1.35644,-1.69366,-0.92930,2.23103,-0.59923 +4.85391,0.70503,-1.35678,-1.69340,-0.92940,2.23124,-0.59952 +4.85498,0.70461,-1.35736,-1.69288,-0.92958,2.23152,-0.59991 +4.85605,0.70420,-1.35792,-1.69237,-0.92975,2.23180,-0.60030 +4.85711,0.70380,-1.35848,-1.69187,-0.92993,2.23207,-0.60068 +4.85818,0.70340,-1.35902,-1.69138,-0.93010,2.23234,-0.60106 +4.85925,0.70301,-1.35956,-1.69090,-0.93028,2.23260,-0.60143 +4.86031,0.70262,-1.36008,-1.69042,-0.93045,2.23286,-0.60179 +4.86138,0.70224,-1.36060,-1.68995,-0.93062,2.23311,-0.60215 +4.86244,0.70187,-1.36111,-1.68949,-0.93079,2.23336,-0.60250 +4.86351,0.70150,-1.36160,-1.68904,-0.93095,2.23361,-0.60285 +4.86458,0.70114,-1.36209,-1.68859,-0.93112,2.23385,-0.60319 +4.86564,0.70079,-1.36258,-1.68815,-0.93128,2.23409,-0.60352 +4.86671,0.70044,-1.36305,-1.68771,-0.93144,2.23432,-0.60385 +4.86778,0.70010,-1.36351,-1.68729,-0.93160,2.23455,-0.60417 +4.86884,0.69977,-1.36397,-1.68686,-0.93176,2.23477,-0.60449 +4.86991,0.69944,-1.36442,-1.68645,-0.93191,2.23500,-0.60481 +4.87097,0.69911,-1.36486,-1.68604,-0.93207,2.23521,-0.60511 +4.87204,0.69879,-1.36529,-1.68564,-0.93222,2.23543,-0.60542 +4.87311,0.69848,-1.36572,-1.68525,-0.93237,2.23564,-0.60572 +4.87417,0.69817,-1.36614,-1.68486,-0.93253,2.23585,-0.60601 +4.87524,0.69787,-1.36655,-1.68447,-0.93267,2.23605,-0.60630 +4.87631,0.69757,-1.36695,-1.68410,-0.93282,2.23625,-0.60658 +4.87737,0.69728,-1.36735,-1.68373,-0.93297,2.23645,-0.60686 +4.87844,0.69699,-1.36773,-1.68336,-0.93311,2.23664,-0.60714 +4.87951,0.69676,-1.36805,-1.68306,-0.93323,2.23680,-0.60736 +4.88057,0.69642,-1.36854,-1.68260,-0.93340,2.23702,-0.60768 +4.88164,0.69608,-1.36902,-1.68215,-0.93357,2.23725,-0.60800 +4.88270,0.69576,-1.36949,-1.68170,-0.93373,2.23747,-0.60831 +4.88377,0.69543,-1.36996,-1.68126,-0.93390,2.23769,-0.60862 +4.88484,0.69511,-1.37041,-1.68083,-0.93406,2.23790,-0.60893 +4.88590,0.69480,-1.37086,-1.68040,-0.93422,2.23811,-0.60922 +4.88697,0.69449,-1.37130,-1.67998,-0.93438,2.23831,-0.60952 +4.88804,0.69419,-1.37173,-1.67957,-0.93454,2.23852,-0.60981 +4.88910,0.69390,-1.37215,-1.67916,-0.93470,2.23871,-0.61009 +4.89017,0.69360,-1.37257,-1.67876,-0.93485,2.23891,-0.61037 +4.89123,0.69332,-1.37298,-1.67836,-0.93501,2.23910,-0.61064 +4.89230,0.69303,-1.37338,-1.67798,-0.93516,2.23929,-0.61092 +4.89337,0.69276,-1.37378,-1.67759,-0.93531,2.23948,-0.61118 +4.89443,0.69248,-1.37416,-1.67722,-0.93546,2.23966,-0.61144 +4.89550,0.69244,-1.37423,-1.67715,-0.93548,2.23969,-0.61148 +4.89657,0.69202,-1.37491,-1.67649,-0.93571,2.23997,-0.61188 +4.89763,0.69161,-1.37557,-1.67584,-0.93594,2.24024,-0.61228 +4.89870,0.69120,-1.37622,-1.67520,-0.93616,2.24051,-0.61267 +4.89977,0.69080,-1.37686,-1.67457,-0.93638,2.24078,-0.61305 +4.90083,0.69040,-1.37749,-1.67395,-0.93660,2.24104,-0.61342 +4.90190,0.69002,-1.37811,-1.67334,-0.93682,2.24130,-0.61379 +4.90296,0.68964,-1.37872,-1.67274,-0.93703,2.24155,-0.61415 +4.90403,0.68926,-1.37931,-1.67215,-0.93725,2.24180,-0.61451 +4.90510,0.68890,-1.37990,-1.67157,-0.93746,2.24204,-0.61486 +4.90616,0.68854,-1.38047,-1.67100,-0.93766,2.24228,-0.61521 +4.90723,0.68818,-1.38104,-1.67044,-0.93787,2.24252,-0.61554 +4.90830,0.68783,-1.38159,-1.66988,-0.93807,2.24275,-0.61588 +4.90936,0.68749,-1.38214,-1.66933,-0.93828,2.24298,-0.61621 +4.91043,0.68715,-1.38268,-1.66880,-0.93848,2.24320,-0.61653 +4.91149,0.68682,-1.38320,-1.66827,-0.93867,2.24342,-0.61685 +4.91256,0.68650,-1.38372,-1.66775,-0.93887,2.24364,-0.61716 +4.91363,0.68618,-1.38423,-1.66723,-0.93906,2.24385,-0.61747 +4.91469,0.68586,-1.38473,-1.66673,-0.93925,2.24406,-0.61777 +4.91576,0.68555,-1.38522,-1.66623,-0.93944,2.24427,-0.61807 +4.91683,0.68525,-1.38570,-1.66574,-0.93963,2.24447,-0.61836 +4.91789,0.68495,-1.38618,-1.66526,-0.93982,2.24467,-0.61865 +4.91896,0.68465,-1.38664,-1.66479,-0.94000,2.24486,-0.61894 +4.92003,0.68437,-1.38710,-1.66432,-0.94018,2.24506,-0.61922 +4.92109,0.68408,-1.38755,-1.66386,-0.94036,2.24524,-0.61949 +4.92216,0.68380,-1.38799,-1.66341,-0.94054,2.24543,-0.61976 +4.92322,0.68353,-1.38842,-1.66297,-0.94071,2.24561,-0.62003 +4.92429,0.68326,-1.38885,-1.66253,-0.94088,2.24579,-0.62029 +4.92536,0.68299,-1.38927,-1.66210,-0.94106,2.24597,-0.62055 +4.92642,0.68273,-1.38968,-1.66168,-0.94122,2.24614,-0.62080 +4.92749,0.68248,-1.39008,-1.66126,-0.94139,2.24631,-0.62105 +4.92856,0.68222,-1.39048,-1.66085,-0.94156,2.24648,-0.62129 +4.92962,0.68205,-1.39076,-1.66056,-0.94167,2.24660,-0.62146 +4.93069,0.68177,-1.39121,-1.66009,-0.94186,2.24678,-0.62173 +4.93176,0.68151,-1.39166,-1.65962,-0.94204,2.24696,-0.62199 +4.93282,0.68124,-1.39209,-1.65917,-0.94222,2.24713,-0.62225 +4.93389,0.68098,-1.39252,-1.65872,-0.94240,2.24731,-0.62250 +4.93495,0.68073,-1.39294,-1.65828,-0.94257,2.24748,-0.62274 +4.93602,0.68048,-1.39335,-1.65784,-0.94275,2.24764,-0.62299 +4.93709,0.68023,-1.39376,-1.65741,-0.94292,2.24781,-0.62323 +4.93815,0.67999,-1.39415,-1.65699,-0.94309,2.24797,-0.62346 +4.93922,0.67981,-1.39445,-1.65668,-0.94321,2.24808,-0.62363 +4.94029,0.67950,-1.39501,-1.65608,-0.94343,2.24829,-0.62393 +4.94135,0.67920,-1.39556,-1.65549,-0.94366,2.24849,-0.62423 +4.94242,0.67890,-1.39610,-1.65491,-0.94387,2.24869,-0.62452 +4.94348,0.67860,-1.39663,-1.65434,-0.94409,2.24888,-0.62481 +4.94455,0.67831,-1.39715,-1.65378,-0.94430,2.24908,-0.62509 +4.94562,0.67803,-1.39766,-1.65323,-0.94451,2.24927,-0.62536 +4.94668,0.67775,-1.39817,-1.65268,-0.94472,2.24945,-0.62564 +4.94775,0.67747,-1.39866,-1.65215,-0.94493,2.24963,-0.62590 +4.94882,0.67720,-1.39915,-1.65162,-0.94513,2.24981,-0.62617 +4.94988,0.67694,-1.39963,-1.65110,-0.94533,2.24999,-0.62643 +4.95095,0.67667,-1.40010,-1.65059,-0.94553,2.25016,-0.62668 +4.95202,0.67642,-1.40056,-1.65009,-0.94573,2.25033,-0.62693 +4.95308,0.67616,-1.40101,-1.64960,-0.94592,2.25050,-0.62718 +4.95415,0.67592,-1.40146,-1.64911,-0.94612,2.25066,-0.62742 +4.95521,0.67567,-1.40189,-1.64863,-0.94631,2.25083,-0.62766 +4.95628,0.67543,-1.40232,-1.64816,-0.94649,2.25099,-0.62790 +4.95735,0.67519,-1.40275,-1.64770,-0.94668,2.25114,-0.62813 +4.95841,0.67496,-1.40316,-1.64724,-0.94686,2.25130,-0.62836 +4.95948,0.67473,-1.40357,-1.64679,-0.94704,2.25145,-0.62858 +4.96055,0.67451,-1.40397,-1.64635,-0.94722,2.25160,-0.62880 +4.96161,0.67435,-1.40425,-1.64603,-0.94735,2.25170,-0.62896 +4.96268,0.67411,-1.40474,-1.64548,-0.94757,2.25186,-0.62919 +4.96374,0.67387,-1.40521,-1.64493,-0.94778,2.25202,-0.62942 +4.96481,0.67364,-1.40568,-1.64439,-0.94800,2.25217,-0.62965 +4.96588,0.67341,-1.40614,-1.64386,-0.94821,2.25232,-0.62988 +4.96694,0.67319,-1.40659,-1.64334,-0.94841,2.25247,-0.63010 +4.96801,0.67297,-1.40704,-1.64283,-0.94862,2.25262,-0.63031 +4.96908,0.67275,-1.40747,-1.64232,-0.94882,2.25276,-0.63053 +4.97014,0.67254,-1.40790,-1.64183,-0.94902,2.25290,-0.63074 +4.97121,0.67233,-1.40832,-1.64134,-0.94922,2.25304,-0.63094 +4.97228,0.67212,-1.40873,-1.64086,-0.94941,2.25318,-0.63115 +4.97334,0.67192,-1.40914,-1.64038,-0.94960,2.25332,-0.63135 +4.97441,0.67172,-1.40954,-1.63992,-0.94979,2.25345,-0.63154 +4.97547,0.67165,-1.40966,-1.63977,-0.94985,2.25349,-0.63160 +4.97654,0.67144,-1.41013,-1.63921,-0.95007,2.25363,-0.63182 +4.97761,0.67123,-1.41059,-1.63866,-0.95029,2.25377,-0.63202 +4.97867,0.67102,-1.41105,-1.63812,-0.95051,2.25391,-0.63223 +4.97974,0.67082,-1.41149,-1.63758,-0.95072,2.25404,-0.63243 +4.98081,0.67062,-1.41193,-1.63706,-0.95093,2.25418,-0.63263 +4.98187,0.67042,-1.41236,-1.63654,-0.95114,2.25431,-0.63282 +4.98294,0.67023,-1.41278,-1.63604,-0.95134,2.25444,-0.63301 +4.98401,0.67003,-1.41319,-1.63554,-0.95155,2.25456,-0.63320 +4.98507,0.66985,-1.41360,-1.63505,-0.95175,2.25469,-0.63339 +4.98614,0.66966,-1.41400,-1.63456,-0.95194,2.25481,-0.63357 +4.98720,0.66957,-1.41420,-1.63432,-0.95205,2.25487,-0.63366 +4.98827,0.66938,-1.41465,-1.63377,-0.95226,2.25500,-0.63385 +4.98934,0.66919,-1.41509,-1.63323,-0.95248,2.25512,-0.63404 +4.99040,0.66900,-1.41552,-1.63270,-0.95269,2.25525,-0.63422 +4.99147,0.66882,-1.41594,-1.63218,-0.95291,2.25537,-0.63440 +4.99254,0.66864,-1.41636,-1.63167,-0.95311,2.25549,-0.63458 +4.99360,0.66846,-1.41676,-1.63116,-0.95332,2.25560,-0.63476 +4.99467,0.66829,-1.41717,-1.63067,-0.95352,2.25572,-0.63493 +4.99573,0.66815,-1.41748,-1.63027,-0.95368,2.25581,-0.63506 +4.99680,0.66798,-1.41789,-1.62977,-0.95389,2.25592,-0.63523 +4.99787,0.66781,-1.41829,-1.62927,-0.95409,2.25604,-0.63540 +4.99893,0.66774,-1.41844,-1.62908,-0.95418,2.25608,-0.63547 +5.00000,0.66759,-1.41880,-1.62863,-0.95436,2.25618,-0.63562 diff --git a/python/examples/path_in_pixels.csv b/python/examples/path_in_pixels.csv index fec0422..1fc24d9 100644 --- a/python/examples/path_in_pixels.csv +++ b/python/examples/path_in_pixels.csv @@ -1,211 +1,342 @@ -0.22388,0.54695 -0.23129,0.57481 -0.24166,0.58940 -0.26832,0.61195 -0.28314,0.61991 -0.29943,0.62787 -0.34091,0.64247 -0.36165,0.64645 -0.38239,0.65175 -0.41054,0.65440 -0.42832,0.65440 -0.44017,0.65440 -0.46239,0.65308 -0.49646,0.64777 -0.50535,0.64379 -0.51720,0.63716 -0.53054,0.62257 -0.54535,0.59206 -0.54831,0.57879 -0.54979,0.53767 -0.54387,0.49787 -0.53202,0.43685 -0.52461,0.42491 -0.50980,0.35991 -0.50387,0.34266 -0.49646,0.31879 -0.48461,0.28960 -0.45795,0.26174 -0.43869,0.24582 -0.37499,0.20868 -0.35425,0.20337 -0.31277,0.20337 -0.27277,0.21133 -0.25499,0.22062 -0.21203,0.24317 -0.19870,0.25511 -0.16314,0.29889 -0.15129,0.32144 -0.13796,0.36919 -0.13796,0.39042 -0.14388,0.42491 -0.15129,0.44614 -0.16166,0.46471 -0.18833,0.49654 -0.26388,0.55359 -0.29054,0.57083 -0.37795,0.60134 -0.44313,0.62124 -0.47572,0.62920 -0.53202,0.63716 -0.55128,0.63849 -0.57202,0.63849 -0.59424,0.63451 -0.60461,0.63185 -0.61498,0.62522 -0.62387,0.61859 -0.63572,0.60400 -0.66090,0.56685 -0.66683,0.54695 -0.67127,0.52042 -0.66979,0.45542 -0.66386,0.44216 -0.64164,0.35991 -0.63127,0.33603 -0.60609,0.28960 -0.55720,0.24980 -0.49943,0.21664 -0.46239,0.19940 -0.44165,0.19276 -0.37647,0.19011 -0.35721,0.19409 -0.30091,0.22062 -0.28906,0.22991 -0.25055,0.26572 -0.21055,0.34399 -0.19573,0.38777 -0.19277,0.43420 -0.20166,0.46869 -0.21203,0.49389 -0.23129,0.52042 -0.25351,0.54961 -0.28462,0.57746 -0.35869,0.61328 -0.40461,0.63053 -0.44461,0.64512 -0.50535,0.66104 -0.53350,0.66502 -0.57498,0.66767 -0.61498,0.66369 -0.63424,0.65440 -0.64461,0.64777 -0.65498,0.63716 -0.66683,0.62655 -0.68164,0.58542 -0.68312,0.56553 -0.67868,0.53103 -0.66238,0.47001 -0.65053,0.44746 -0.61646,0.37848 -0.60757,0.36389 -0.57350,0.30685 -0.56461,0.29889 -0.53794,0.27766 -0.49202,0.24715 -0.42239,0.22593 -0.40461,0.22593 -0.34536,0.23654 -0.33351,0.24450 -0.29203,0.27634 -0.25055,0.33338 -0.23277,0.38379 -0.22684,0.46073 -0.22684,0.50716 -0.23277,0.55093 -0.24314,0.57879 -0.27721,0.62257 -0.30832,0.65043 -0.38684,0.69420 -0.46683,0.71941 -0.48165,0.72073 -0.53646,0.72737 -0.55276,0.72737 -0.58831,0.72737 -0.61201,0.72604 -0.63127,0.72206 -0.63868,0.71941 -0.64905,0.71012 -0.66090,0.69022 -0.66535,0.67430 -0.66386,0.60798 -0.65349,0.57879 -0.62979,0.50848 -0.61201,0.48063 -0.57794,0.43552 -0.56905,0.42756 -0.54831,0.41032 -0.50091,0.38379 -0.48757,0.37715 -0.44165,0.36654 -0.42239,0.37052 -0.40461,0.37848 -0.38387,0.39838 -0.33499,0.47665 -0.32017,0.51910 -0.31573,0.57348 -0.31869,0.60002 -0.33202,0.65308 -0.33795,0.65971 -0.34980,0.67430 -0.35869,0.68359 -0.40165,0.71675 -0.42684,0.72737 -0.45498,0.73798 -0.52313,0.75522 -0.53350,0.75522 -0.59127,0.75920 -0.60016,0.75788 -0.61794,0.75655 -0.64016,0.75257 -0.64609,0.74992 -0.65349,0.74461 -0.66238,0.73532 -0.67275,0.71675 -0.67720,0.70349 -0.68016,0.67032 -0.67720,0.63716 -0.67127,0.62124 -0.64757,0.54563 -0.63720,0.52838 -0.60609,0.46471 -0.59868,0.45144 -0.58979,0.44083 -0.53498,0.40369 -0.51276,0.39042 -0.45943,0.36787 -0.37202,0.36521 -0.35276,0.36787 -0.33351,0.37848 -0.30832,0.39971 -0.27721,0.45011 -0.27573,0.49787 -0.28906,0.55491 -0.30536,0.58144 -0.33795,0.63318 -0.35721,0.65175 -0.41498,0.68624 -0.43128,0.69288 -0.48609,0.70481 -0.51276,0.70481 -0.53498,0.70216 -0.54831,0.70083 -0.55572,0.69818 -0.56461,0.69288 -0.57646,0.67961 -0.59127,0.65308 -0.59424,0.63451 -0.59276,0.60930 -0.58239,0.56685 -0.56461,0.53369 -0.53646,0.50052 -0.52313,0.48858 -0.50387,0.47267 -0.45498,0.44348 -0.42684,0.43287 -0.40906,0.42756 -0.38387,0.42889 -0.37202,0.43287 -0.36017,0.44216 -0.34832,0.46471 -0.34684,0.51512 -0.34684,0.51512 +0.07124,0.91051 +0.07056,0.91163 +0.06989,0.87900 +0.06989,0.86774 +0.06855,0.82610 +0.06720,0.81373 +0.06519,0.76871 +0.06452,0.75858 +0.06317,0.74733 +0.06183,0.72820 +0.06116,0.70906 +0.06116,0.69556 +0.06116,0.68656 +0.05981,0.66630 +0.05981,0.65279 +0.05981,0.63929 +0.05847,0.61228 +0.05847,0.59540 +0.05847,0.58189 +0.05847,0.57289 +0.05847,0.55939 +0.05981,0.54588 +0.06116,0.53350 +0.06183,0.52112 +0.06384,0.50649 +0.06519,0.48399 +0.06586,0.46936 +0.06653,0.46035 +0.06720,0.44010 +0.06720,0.42321 +0.06653,0.40971 +0.06586,0.40408 +0.06519,0.40071 +0.06519,0.39846 +0.06720,0.36920 +0.06788,0.35457 +0.06855,0.33656 +0.06922,0.32305 +0.06922,0.29830 +0.06989,0.28817 +0.06989,0.27916 +0.06989,0.26341 +0.07056,0.23753 +0.07056,0.22965 +0.07056,0.22515 +0.07056,0.22177 +0.07056,0.21839 +0.07056,0.21614 +0.07056,0.21502 +0.07056,0.21389 +0.07056,0.21164 +0.07056,0.21502 +0.07056,0.21727 +0.07056,0.22289 +0.07056,0.23302 +0.07056,0.25666 +0.07056,0.27804 +0.07392,0.31630 +0.07796,0.33543 +0.08535,0.36357 +0.09140,0.38720 +0.09476,0.39621 +0.09946,0.40858 +0.10349,0.41984 +0.10753,0.42884 +0.11022,0.43559 +0.11290,0.44010 +0.11761,0.44460 +0.12164,0.44797 +0.12702,0.45022 +0.13306,0.45247 +0.13911,0.45473 +0.14315,0.45585 +0.14583,0.45698 +0.14718,0.45698 +0.14785,0.45698 +0.14919,0.45698 +0.15255,0.45473 +0.15793,0.44797 +0.16196,0.43672 +0.16398,0.42884 +0.16599,0.42209 +0.16734,0.41309 +0.17876,0.38833 +0.18414,0.37370 +0.18884,0.36132 +0.19019,0.35569 +0.19355,0.35006 +0.19691,0.34331 +0.20228,0.33206 +0.20901,0.31855 +0.21573,0.30617 +0.22177,0.29605 +0.22782,0.28817 +0.23118,0.28367 +0.23589,0.27579 +0.24059,0.27016 +0.24597,0.26341 +0.25134,0.26003 +0.25806,0.25553 +0.26411,0.25328 +0.27419,0.25328 +0.28226,0.25441 +0.29032,0.25891 +0.29637,0.26228 +0.30511,0.27016 +0.31720,0.28142 +0.32594,0.29154 +0.34274,0.32418 +0.35148,0.33994 +0.35954,0.35682 +0.36895,0.38383 +0.37366,0.39846 +0.37903,0.41646 +0.38306,0.42772 +0.38911,0.44122 +0.39516,0.45585 +0.40121,0.47161 +0.40255,0.47611 +0.40255,0.47723 +0.40255,0.47836 +0.40255,0.47836 +0.39987,0.47836 +0.39516,0.47836 +0.38508,0.47723 +0.38172,0.47723 +0.37366,0.47723 +0.36559,0.47723 +0.35753,0.47498 +0.35148,0.47273 +0.34610,0.47161 +0.34073,0.46936 +0.33804,0.46936 +0.33669,0.46823 +0.33535,0.46823 +0.33468,0.46823 +0.33401,0.46823 +0.33266,0.46598 +0.32997,0.46260 +0.32594,0.45585 +0.31653,0.42659 +0.31452,0.41759 +0.31250,0.40633 +0.31116,0.39058 +0.31116,0.37595 +0.31116,0.36695 +0.31250,0.35119 +0.31586,0.33994 +0.31989,0.32756 +0.32460,0.31630 +0.32863,0.30617 +0.33132,0.29942 +0.33804,0.28479 +0.34677,0.26453 +0.35282,0.24878 +0.35618,0.24090 +0.36156,0.23302 +0.36425,0.22627 +0.36559,0.22402 +0.36626,0.22177 +0.37836,0.22515 +0.38642,0.22515 +0.39651,0.22515 +0.40323,0.22627 +0.41398,0.22852 +0.43548,0.23527 +0.44556,0.23978 +0.46035,0.24878 +0.47043,0.25328 +0.47917,0.25778 +0.49328,0.26566 +0.50000,0.27016 +0.51344,0.28142 +0.52016,0.28817 +0.52285,0.29154 +0.52419,0.29267 +0.52487,0.29379 +0.52554,0.29379 +0.52554,0.29379 +0.53427,0.31743 +0.54368,0.34106 +0.54906,0.36132 +0.55175,0.37370 +0.55376,0.38495 +0.55578,0.39733 +0.55847,0.41421 +0.56048,0.43447 +0.56183,0.44910 +0.56317,0.46148 +0.56519,0.47948 +0.56519,0.48173 +0.56519,0.48286 +0.56519,0.48399 +0.56519,0.48399 +0.56384,0.48173 +0.56250,0.47273 +0.56250,0.46823 +0.56183,0.45698 +0.56048,0.44347 +0.55981,0.43222 +0.55780,0.39621 +0.55712,0.38383 +0.55645,0.35344 +0.55645,0.33768 +0.55645,0.32531 +0.55712,0.31743 +0.55847,0.30505 +0.56116,0.29154 +0.56384,0.27916 +0.56720,0.27241 +0.57460,0.25891 +0.57796,0.25441 +0.58132,0.25103 +0.58804,0.24765 +0.59677,0.24540 +0.60417,0.24540 +0.62164,0.25666 +0.63306,0.27354 +0.64583,0.29267 +0.65927,0.31743 +0.69624,0.39170 +0.70766,0.41534 +0.71707,0.43672 +0.71841,0.44122 +0.72177,0.45022 +0.72379,0.45360 +0.72446,0.45585 +0.72513,0.45810 +0.72581,0.45923 +0.72648,0.46148 +0.72715,0.46260 +0.72715,0.46373 +0.72715,0.46485 +0.72715,0.46598 +0.72715,0.46598 +0.72715,0.46710 +0.72715,0.46710 +0.72513,0.46260 +0.72177,0.44797 +0.71976,0.42997 +0.71774,0.41196 +0.71371,0.35344 +0.70228,0.26228 +0.70094,0.25328 +0.69758,0.23415 +0.69355,0.21502 +0.69086,0.20264 +0.68884,0.19476 +0.68414,0.18351 +0.67742,0.16888 +0.66935,0.15312 +0.65927,0.13737 +0.65323,0.13061 +0.64516,0.12048 +0.63441,0.10923 +0.62500,0.10135 +0.59207,0.07884 +0.58468,0.07547 +0.56720,0.07097 +0.55376,0.06759 +0.54099,0.06647 +0.51546,0.06534 +0.50538,0.06421 +0.46909,0.06421 +0.44825,0.06421 +0.42272,0.06421 +0.41667,0.06534 +0.40524,0.06647 +0.40255,0.06647 +0.40121,0.06647 +0.38642,0.06534 +0.36425,0.06759 +0.31586,0.07659 +0.30444,0.07772 +0.27487,0.07997 +0.26613,0.07884 +0.24194,0.07884 +0.23790,0.07884 +0.22245,0.07884 +0.20565,0.08222 +0.18884,0.08785 +0.17742,0.09235 +0.16868,0.09685 +0.15188,0.10811 +0.14382,0.11486 +0.13710,0.11936 +0.11962,0.13174 +0.11290,0.13624 +0.10820,0.13962 +0.10349,0.14524 +0.09812,0.15200 +0.09341,0.15762 +0.08938,0.16325 +0.08669,0.16663 +0.08468,0.16888 +0.08333,0.17113 +0.08199,0.17225 +0.08132,0.17225 +0.08065,0.17338 +0.07997,0.17563 +0.07997,0.17675 +0.08199,0.18576 +0.08669,0.19363 +0.09341,0.20151 +0.10551,0.21277 +0.12433,0.22515 +0.13239,0.23077 +0.14987,0.23978 +0.15726,0.24203 +0.17003,0.24315 +0.18078,0.24315 +0.19220,0.24315 +0.21505,0.23978 +0.22446,0.23527 +0.24194,0.22852 +0.26546,0.22177 +0.28427,0.21839 +0.30847,0.21502 +0.33132,0.21164 +0.36358,0.21164 +0.41465,0.20826 +0.47581,0.20601 +0.53226,0.20601 +0.60753,0.19814 +0.64449,0.19363 +0.64852,0.19251 +0.65457,0.19026 +0.65659,0.19026 +0.65726,0.19026 +0.67742,0.19926 +0.68817,0.20151 +0.71640,0.20826 +0.72245,0.21052 +0.73858,0.21614 +0.74664,0.22177 +0.75336,0.22627 +0.75806,0.22965 +0.75941,0.23077 +0.76008,0.23077 +0.76008,0.23077 +0.76075,0.23077 +0.76075,0.23077 diff --git a/python/examples/planar_dragging_via_top_contact_force.py b/python/examples/planar_dragging_via_top_contact_force.py index 171b444..9724481 100644 --- a/python/examples/planar_dragging_via_top_contact_force.py +++ b/python/examples/planar_dragging_via_top_contact_force.py @@ -65,7 +65,7 @@ def getArgs(): default=1e-3) # TODO: test the interaction of this and the overall demo parser.add_argument('--tikhonov-damp', type=float, \ - help="damping scalar in tiknohov regularization.\ + help="damping scalar in tikhonov regularization.\ This is used when generating the joint trajectory from the drawing.", \ default=1e-2) # TODO add the rest diff --git a/python/examples/point_impedance_control.py b/python/examples/point_impedance_control.py index d1d06e4..919ba5a 100644 --- a/python/examples/point_impedance_control.py +++ b/python/examples/point_impedance_control.py @@ -64,7 +64,7 @@ def getArgs(): default=1e-3) # TODO: test the interaction of this and the overall demo parser.add_argument('--tikhonov-damp', type=float, \ - help="damping scalar in tiknohov regularization.\ + help="damping scalar in tikhonov regularization.\ This is used when generating the joint trajectory from the drawing.", \ default=1e-2) # TODO add the rest diff --git a/python/examples/test_gripper.py b/python/examples/test_gripper.py index 6613fdd..2b1102d 100644 --- a/python/examples/test_gripper.py +++ b/python/examples/test_gripper.py @@ -42,7 +42,7 @@ def get_args(): to something between 0 and 1, 0.5 by default \ BE CAREFUL WITH THIS.", default=0.5) parser.add_argument('--tikhonov-damp', type=float, \ - help="damping scalar in tiknohov regularization", default=1e-3) + help="damping scalar in tikhonov regularization", default=1e-3) # TODO add the rest parser.add_argument('--clik-controller', type=str, \ help="select which click algorithm you want", \ diff --git a/python/joint_trajectory.csv b/python/joint_trajectory.csv index fd2eaa6..215c720 100644 --- a/python/joint_trajectory.csv +++ b/python/joint_trajectory.csv @@ -1,608 +1,1908 @@ -0.00000,0.97256,-1.20668,-1.71645,-0.93893,2.04046,-0.37847 -0.00824,0.97202,-1.20742,-1.71570,-0.93910,2.04086,-0.37886 -0.01647,0.97150,-1.20815,-1.71497,-0.93927,2.04125,-0.37925 -0.02471,0.97098,-1.20887,-1.71424,-0.93944,2.04163,-0.37963 -0.03295,0.97047,-1.20957,-1.71353,-0.93961,2.04201,-0.38000 -0.04119,0.96996,-1.21026,-1.71283,-0.93978,2.04238,-0.38036 -0.04942,0.96947,-1.21094,-1.71214,-0.93995,2.04274,-0.38072 -0.05766,0.96898,-1.21161,-1.71146,-0.94011,2.04310,-0.38108 -0.06590,0.96850,-1.21227,-1.71079,-0.94028,2.04346,-0.38143 -0.07414,0.96803,-1.21291,-1.71013,-0.94044,2.04381,-0.38177 -0.08237,0.96757,-1.21355,-1.70949,-0.94060,2.04415,-0.38211 -0.09061,0.96711,-1.21417,-1.70885,-0.94076,2.04448,-0.38245 -0.09885,0.96666,-1.21479,-1.70822,-0.94091,2.04482,-0.38278 -0.10708,0.96622,-1.21539,-1.70761,-0.94107,2.04514,-0.38310 -0.11532,0.96579,-1.21598,-1.70700,-0.94123,2.04546,-0.38342 -0.12356,0.96536,-1.21656,-1.70640,-0.94138,2.04578,-0.38373 -0.13180,0.96494,-1.21713,-1.70581,-0.94153,2.04609,-0.38404 -0.14003,0.96453,-1.21770,-1.70524,-0.94168,2.04640,-0.38434 -0.14827,0.96412,-1.21825,-1.70467,-0.94183,2.04670,-0.38464 -0.15651,0.96372,-1.21879,-1.70411,-0.94198,2.04700,-0.38494 -0.16474,0.96333,-1.21932,-1.70355,-0.94213,2.04729,-0.38523 -0.17298,0.96294,-1.21985,-1.70301,-0.94227,2.04758,-0.38551 -0.18122,0.96256,-1.22036,-1.70248,-0.94241,2.04786,-0.38580 -0.18946,0.96218,-1.22087,-1.70195,-0.94256,2.04814,-0.38607 -0.19769,0.96181,-1.22137,-1.70143,-0.94270,2.04841,-0.38635 -0.20593,0.96145,-1.22186,-1.70093,-0.94284,2.04868,-0.38661 -0.21417,0.96109,-1.22234,-1.70042,-0.94297,2.04895,-0.38688 -0.22241,0.96074,-1.22281,-1.69993,-0.94311,2.04921,-0.38714 -0.23064,0.96039,-1.22327,-1.69945,-0.94324,2.04947,-0.38740 -0.23888,0.96005,-1.22373,-1.69897,-0.94338,2.04972,-0.38765 -0.24712,0.95972,-1.22418,-1.69850,-0.94351,2.04997,-0.38790 -0.25535,0.95938,-1.22462,-1.69804,-0.94364,2.05021,-0.38814 -0.26359,0.95906,-1.22505,-1.69758,-0.94377,2.05046,-0.38838 -0.27183,0.95874,-1.22548,-1.69713,-0.94390,2.05069,-0.38862 -0.28007,0.95843,-1.22590,-1.69669,-0.94403,2.05093,-0.38886 -0.28830,0.95812,-1.22631,-1.69626,-0.94415,2.05116,-0.38909 -0.29654,0.95781,-1.22671,-1.69583,-0.94428,2.05139,-0.38931 -0.30478,0.95770,-1.22686,-1.69568,-0.94432,2.05147,-0.38939 -0.31301,0.95723,-1.22751,-1.69500,-0.94451,2.05182,-0.38974 -0.32125,0.95677,-1.22815,-1.69432,-0.94470,2.05216,-0.39009 -0.32949,0.95631,-1.22878,-1.69366,-0.94488,2.05250,-0.39042 -0.33773,0.95586,-1.22940,-1.69300,-0.94507,2.05283,-0.39076 -0.34596,0.95542,-1.23001,-1.69236,-0.94525,2.05316,-0.39108 -0.35420,0.95499,-1.23060,-1.69173,-0.94543,2.05348,-0.39141 -0.36244,0.95456,-1.23119,-1.69110,-0.94561,2.05380,-0.39172 -0.37068,0.95414,-1.23177,-1.69049,-0.94578,2.05411,-0.39204 -0.37891,0.95373,-1.23234,-1.68989,-0.94596,2.05441,-0.39235 -0.38715,0.95332,-1.23289,-1.68929,-0.94613,2.05472,-0.39265 -0.39539,0.95292,-1.23344,-1.68871,-0.94630,2.05501,-0.39295 -0.40362,0.95253,-1.23398,-1.68813,-0.94647,2.05531,-0.39324 -0.41186,0.95214,-1.23451,-1.68757,-0.94664,2.05559,-0.39353 -0.42010,0.95176,-1.23503,-1.68701,-0.94681,2.05588,-0.39382 -0.42834,0.95139,-1.23554,-1.68646,-0.94697,2.05616,-0.39410 -0.43657,0.95102,-1.23604,-1.68592,-0.94713,2.05643,-0.39437 -0.44481,0.95065,-1.23654,-1.68539,-0.94729,2.05670,-0.39464 -0.45305,0.95030,-1.23702,-1.68487,-0.94745,2.05697,-0.39491 -0.46129,0.94995,-1.23750,-1.68435,-0.94761,2.05723,-0.39518 -0.46952,0.94960,-1.23797,-1.68385,-0.94777,2.05749,-0.39543 -0.47776,0.94926,-1.23843,-1.68335,-0.94792,2.05774,-0.39569 -0.48600,0.94892,-1.23888,-1.68286,-0.94807,2.05799,-0.39594 -0.49423,0.94859,-1.23933,-1.68238,-0.94822,2.05823,-0.39619 -0.50247,0.94827,-1.23976,-1.68190,-0.94837,2.05848,-0.39643 -0.51071,0.94795,-1.24019,-1.68144,-0.94852,2.05871,-0.39667 -0.51895,0.94764,-1.24062,-1.68098,-0.94866,2.05895,-0.39691 -0.52718,0.94733,-1.24103,-1.68053,-0.94881,2.05918,-0.39714 -0.53542,0.94702,-1.24144,-1.68008,-0.94895,2.05941,-0.39737 -0.54366,0.94673,-1.24184,-1.67964,-0.94909,2.05963,-0.39760 -0.55189,0.94650,-1.24219,-1.67925,-0.94921,2.05979,-0.39777 -0.56013,0.94547,-1.24408,-1.67704,-0.94986,2.06055,-0.39853 -0.56837,0.94446,-1.24594,-1.67487,-0.95051,2.06130,-0.39928 -0.57661,0.94347,-1.24777,-1.67273,-0.95115,2.06203,-0.40002 -0.58484,0.94249,-1.24956,-1.67063,-0.95179,2.06275,-0.40075 -0.59308,0.94154,-1.25132,-1.66855,-0.95242,2.06345,-0.40147 -0.60132,0.94060,-1.25306,-1.66651,-0.95305,2.06415,-0.40217 -0.60956,0.93967,-1.25476,-1.66450,-0.95367,2.06483,-0.40286 -0.61779,0.93877,-1.25643,-1.66252,-0.95428,2.06550,-0.40354 -0.62603,0.93787,-1.25807,-1.66057,-0.95489,2.06615,-0.40421 -0.63427,0.93700,-1.25969,-1.65865,-0.95549,2.06680,-0.40487 -0.64250,0.93614,-1.26127,-1.65676,-0.95609,2.06743,-0.40552 -0.65074,0.93530,-1.26283,-1.65490,-0.95668,2.06805,-0.40616 -0.65898,0.93447,-1.26436,-1.65307,-0.95727,2.06867,-0.40678 -0.66722,0.93365,-1.26587,-1.65127,-0.95785,2.06927,-0.40740 -0.67545,0.93285,-1.26734,-1.64949,-0.95842,2.06986,-0.40800 -0.68369,0.93206,-1.26880,-1.64774,-0.95899,2.07044,-0.40860 -0.69193,0.93129,-1.27022,-1.64602,-0.95955,2.07101,-0.40918 -0.70016,0.93053,-1.27163,-1.64433,-0.96011,2.07157,-0.40976 -0.70840,0.92979,-1.27300,-1.64266,-0.96066,2.07212,-0.41033 -0.71664,0.92905,-1.27436,-1.64102,-0.96121,2.07266,-0.41088 -0.72488,0.92833,-1.27569,-1.63940,-0.96175,2.07320,-0.41143 -0.73311,0.92763,-1.27700,-1.63781,-0.96228,2.07372,-0.41197 -0.74135,0.92693,-1.27828,-1.63624,-0.96281,2.07423,-0.41250 -0.74959,0.92625,-1.27954,-1.63470,-0.96333,2.07474,-0.41302 -0.75783,0.92557,-1.28079,-1.63318,-0.96385,2.07524,-0.41354 -0.76606,0.92491,-1.28200,-1.63169,-0.96436,2.07573,-0.41404 -0.77430,0.92427,-1.28320,-1.63021,-0.96486,2.07621,-0.41454 -0.78254,0.92363,-1.28438,-1.62877,-0.96536,2.07668,-0.41503 -0.79077,0.92300,-1.28554,-1.62734,-0.96586,2.07714,-0.41551 -0.79901,0.92238,-1.28667,-1.62594,-0.96635,2.07760,-0.41598 -0.80725,0.92178,-1.28779,-1.62456,-0.96683,2.07805,-0.41645 -0.81549,0.92118,-1.28889,-1.62320,-0.96731,2.07849,-0.41691 -0.82372,0.92060,-1.28997,-1.62186,-0.96778,2.07892,-0.41736 -0.83196,0.92002,-1.29103,-1.62054,-0.96825,2.07935,-0.41780 -0.84020,0.91946,-1.29207,-1.61924,-0.96871,2.07977,-0.41824 -0.84843,0.91890,-1.29310,-1.61797,-0.96916,2.08018,-0.41867 -0.85667,0.91835,-1.29410,-1.61671,-0.96961,2.08059,-0.41909 -0.86491,0.91782,-1.29509,-1.61547,-0.97006,2.08099,-0.41951 -0.87315,0.91729,-1.29606,-1.61425,-0.97050,2.08138,-0.41992 -0.88138,0.91677,-1.29702,-1.61306,-0.97093,2.08176,-0.42032 -0.88962,0.91626,-1.29796,-1.61188,-0.97136,2.08214,-0.42072 -0.89786,0.91575,-1.29888,-1.61072,-0.97179,2.08252,-0.42111 -0.90610,0.91526,-1.29979,-1.60957,-0.97221,2.08288,-0.42149 -0.91433,0.91477,-1.30068,-1.60845,-0.97262,2.08324,-0.42187 -0.92257,0.91430,-1.30156,-1.60734,-0.97303,2.08360,-0.42224 -0.93081,0.91383,-1.30242,-1.60625,-0.97344,2.08395,-0.42261 -0.93904,0.91336,-1.30326,-1.60518,-0.97384,2.08429,-0.42297 -0.94728,0.91291,-1.30410,-1.60413,-0.97423,2.08463,-0.42332 -0.95552,0.91246,-1.30491,-1.60309,-0.97462,2.08496,-0.42367 -0.96376,0.91202,-1.30572,-1.60206,-0.97501,2.08529,-0.42401 -0.97199,0.91159,-1.30651,-1.60106,-0.97539,2.08561,-0.42435 -0.98023,0.91117,-1.30728,-1.60007,-0.97576,2.08593,-0.42469 -0.98847,0.91075,-1.30804,-1.59909,-0.97613,2.08624,-0.42501 -0.99671,0.91034,-1.30879,-1.59813,-0.97650,2.08654,-0.42534 -1.00494,0.90993,-1.30953,-1.59719,-0.97686,2.08684,-0.42565 -1.01318,0.90953,-1.31026,-1.59626,-0.97722,2.08714,-0.42597 -1.02142,0.90914,-1.31097,-1.59535,-0.97757,2.08743,-0.42627 -1.02965,0.90876,-1.31167,-1.59445,-0.97792,2.08772,-0.42658 -1.03789,0.90838,-1.31235,-1.59356,-0.97826,2.08800,-0.42688 -1.04613,0.90801,-1.31303,-1.59269,-0.97860,2.08828,-0.42717 -1.05437,0.90764,-1.31369,-1.59183,-0.97894,2.08855,-0.42746 -1.06260,0.90728,-1.31435,-1.59099,-0.97927,2.08882,-0.42774 -1.07084,0.90693,-1.31499,-1.59016,-0.97960,2.08908,-0.42802 -1.07908,0.90658,-1.31562,-1.58934,-0.97992,2.08934,-0.42830 -1.08731,0.90623,-1.31624,-1.58853,-0.98024,2.08960,-0.42857 -1.09555,0.90590,-1.31685,-1.58774,-0.98055,2.08985,-0.42884 -1.10379,0.90556,-1.31745,-1.58696,-0.98086,2.09010,-0.42910 -1.11203,0.90524,-1.31804,-1.58620,-0.98117,2.09034,-0.42936 -1.12026,0.90492,-1.31862,-1.58544,-0.98147,2.09058,-0.42962 -1.12850,0.90460,-1.31918,-1.58470,-0.98177,2.09082,-0.42987 -1.13674,0.90429,-1.31974,-1.58397,-0.98207,2.09105,-0.43011 -1.14498,0.90398,-1.32029,-1.58325,-0.98236,2.09128,-0.43036 -1.15321,0.90368,-1.32083,-1.58254,-0.98264,2.09150,-0.43060 -1.16145,0.90339,-1.32136,-1.58184,-0.98293,2.09173,-0.43083 -1.16969,0.90309,-1.32189,-1.58116,-0.98321,2.09194,-0.43107 -1.17792,0.90281,-1.32240,-1.58048,-0.98348,2.09216,-0.43129 -1.18616,0.90253,-1.32290,-1.57982,-0.98375,2.09237,-0.43152 -1.19440,0.90225,-1.32340,-1.57917,-0.98402,2.09258,-0.43174 -1.20264,0.90198,-1.32389,-1.57852,-0.98429,2.09278,-0.43196 -1.21087,0.90171,-1.32437,-1.57789,-0.98455,2.09298,-0.43218 -1.21911,0.90144,-1.32484,-1.57727,-0.98481,2.09318,-0.43239 -1.22735,0.90118,-1.32530,-1.57666,-0.98506,2.09338,-0.43260 -1.23558,0.90093,-1.32575,-1.57605,-0.98531,2.09357,-0.43280 -1.24382,0.90067,-1.32620,-1.57546,-0.98556,2.09376,-0.43300 -1.25206,0.90043,-1.32664,-1.57488,-0.98581,2.09394,-0.43320 -1.26030,0.90018,-1.32707,-1.57430,-0.98605,2.09412,-0.43340 -1.26853,0.89994,-1.32750,-1.57374,-0.98629,2.09430,-0.43359 -1.27677,0.89971,-1.32791,-1.57318,-0.98652,2.09448,-0.43378 -1.28501,0.89947,-1.32832,-1.57263,-0.98675,2.09466,-0.43397 -1.29325,0.89924,-1.32873,-1.57209,-0.98698,2.09483,-0.43415 -1.30148,0.89902,-1.32912,-1.57156,-0.98721,2.09500,-0.43433 -1.30972,0.89880,-1.32951,-1.57104,-0.98743,2.09516,-0.43451 -1.31796,0.89860,-1.32989,-1.57054,-0.98764,2.09531,-0.43467 -1.32619,0.89814,-1.33093,-1.56917,-0.98814,2.09565,-0.43503 -1.33443,0.89768,-1.33195,-1.56783,-0.98864,2.09598,-0.43539 -1.34267,0.89724,-1.33295,-1.56650,-0.98913,2.09631,-0.43574 -1.35091,0.89680,-1.33394,-1.56519,-0.98962,2.09663,-0.43608 -1.35914,0.89637,-1.33490,-1.56391,-0.99010,2.09695,-0.43642 -1.36738,0.89595,-1.33586,-1.56264,-0.99057,2.09726,-0.43676 -1.37562,0.89553,-1.33679,-1.56140,-0.99104,2.09757,-0.43709 -1.38386,0.89512,-1.33771,-1.56017,-0.99151,2.09787,-0.43741 -1.39209,0.89472,-1.33862,-1.55897,-0.99196,2.09817,-0.43773 -1.40033,0.89432,-1.33951,-1.55778,-0.99242,2.09846,-0.43804 -1.40857,0.89393,-1.34038,-1.55661,-0.99286,2.09875,-0.43835 -1.41680,0.89355,-1.34124,-1.55546,-0.99330,2.09903,-0.43865 -1.42504,0.89317,-1.34208,-1.55433,-0.99374,2.09931,-0.43895 -1.43328,0.89280,-1.34291,-1.55321,-0.99417,2.09958,-0.43925 -1.44152,0.89244,-1.34373,-1.55212,-0.99459,2.09985,-0.43954 -1.44975,0.89208,-1.34453,-1.55104,-0.99501,2.10011,-0.43982 -1.45799,0.89173,-1.34531,-1.54997,-0.99542,2.10037,-0.44010 -1.46623,0.89138,-1.34609,-1.54893,-0.99583,2.10063,-0.44038 -1.47446,0.89104,-1.34685,-1.54790,-0.99623,2.10088,-0.44065 -1.48270,0.89070,-1.34760,-1.54689,-0.99663,2.10113,-0.44092 -1.49094,0.89037,-1.34833,-1.54589,-0.99703,2.10137,-0.44118 -1.49918,0.89005,-1.34905,-1.54491,-0.99741,2.10161,-0.44144 -1.50741,0.88973,-1.34977,-1.54394,-0.99780,2.10185,-0.44170 -1.51565,0.88941,-1.35046,-1.54299,-0.99817,2.10208,-0.44195 -1.52389,0.88910,-1.35115,-1.54206,-0.99855,2.10231,-0.44220 -1.53213,0.88880,-1.35182,-1.54113,-0.99892,2.10254,-0.44244 -1.54036,0.88850,-1.35249,-1.54023,-0.99928,2.10276,-0.44268 -1.54860,0.88821,-1.35314,-1.53934,-0.99964,2.10298,-0.44292 -1.55684,0.88792,-1.35378,-1.53846,-0.99999,2.10319,-0.44315 -1.56507,0.88763,-1.35441,-1.53760,-1.00034,2.10340,-0.44338 -1.57331,0.88735,-1.35503,-1.53675,-1.00069,2.10361,-0.44361 -1.58155,0.88707,-1.35564,-1.53591,-1.00103,2.10382,-0.44383 -1.58979,0.88680,-1.35623,-1.53509,-1.00136,2.10402,-0.44405 -1.59802,0.88653,-1.35682,-1.53427,-1.00169,2.10422,-0.44427 -1.60626,0.88627,-1.35740,-1.53348,-1.00202,2.10441,-0.44448 -1.61450,0.88601,-1.35797,-1.53269,-1.00234,2.10460,-0.44469 -1.62273,0.88576,-1.35853,-1.53192,-1.00266,2.10479,-0.44490 -1.63097,0.88551,-1.35908,-1.53116,-1.00298,2.10498,-0.44510 -1.63921,0.88526,-1.35962,-1.53041,-1.00329,2.10516,-0.44530 -1.64745,0.88502,-1.36015,-1.52968,-1.00359,2.10534,-0.44549 -1.65568,0.88478,-1.36067,-1.52895,-1.00390,2.10552,-0.44569 -1.66392,0.88454,-1.36118,-1.52824,-1.00419,2.10569,-0.44588 -1.67216,0.88431,-1.36168,-1.52754,-1.00449,2.10586,-0.44607 -1.68040,0.88409,-1.36218,-1.52685,-1.00478,2.10603,-0.44625 -1.68863,0.88386,-1.36267,-1.52617,-1.00506,2.10620,-0.44644 -1.69687,0.88364,-1.36314,-1.52550,-1.00535,2.10636,-0.44662 -1.70511,0.88342,-1.36362,-1.52484,-1.00563,2.10652,-0.44679 -1.71334,0.88321,-1.36408,-1.52419,-1.00590,2.10668,-0.44697 -1.72158,0.88300,-1.36453,-1.52355,-1.00617,2.10684,-0.44714 -1.72982,0.88279,-1.36498,-1.52293,-1.00644,2.10699,-0.44731 -1.73806,0.88259,-1.36542,-1.52231,-1.00670,2.10714,-0.44747 -1.74629,0.88239,-1.36585,-1.52170,-1.00696,2.10729,-0.44764 -1.75453,0.88219,-1.36628,-1.52110,-1.00722,2.10744,-0.44780 -1.76277,0.88200,-1.36669,-1.52051,-1.00747,2.10759,-0.44796 -1.77100,0.88181,-1.36710,-1.51994,-1.00772,2.10773,-0.44811 -1.77924,0.88162,-1.36751,-1.51937,-1.00797,2.10787,-0.44827 -1.78748,0.88144,-1.36790,-1.51881,-1.00821,2.10801,-0.44842 -1.79572,0.88125,-1.36829,-1.51825,-1.00845,2.10814,-0.44857 -1.80395,0.88107,-1.36870,-1.51769,-1.00869,2.10828,-0.44872 -1.81219,0.88064,-1.36968,-1.51637,-1.00919,2.10859,-0.44906 -1.82043,0.88022,-1.37065,-1.51508,-1.00968,2.10890,-0.44940 -1.82867,0.87981,-1.37160,-1.51380,-1.01016,2.10920,-0.44973 -1.83690,0.87940,-1.37254,-1.51255,-1.01064,2.10949,-0.45005 -1.84514,0.87900,-1.37346,-1.51132,-1.01111,2.10979,-0.45037 -1.85338,0.87861,-1.37436,-1.51010,-1.01158,2.11007,-0.45068 -1.86161,0.87823,-1.37525,-1.50891,-1.01204,2.11035,-0.45099 -1.86985,0.87785,-1.37612,-1.50773,-1.01250,2.11063,-0.45129 -1.87809,0.87747,-1.37698,-1.50657,-1.01295,2.11090,-0.45159 -1.88633,0.87711,-1.37782,-1.50543,-1.01339,2.11117,-0.45189 -1.89456,0.87675,-1.37865,-1.50431,-1.01383,2.11144,-0.45218 -1.90280,0.87639,-1.37947,-1.50320,-1.01426,2.11169,-0.45246 -1.91104,0.87604,-1.38027,-1.50211,-1.01469,2.11195,-0.45274 -1.91928,0.87570,-1.38106,-1.50104,-1.01512,2.11220,-0.45302 -1.92751,0.87536,-1.38183,-1.49999,-1.01553,2.11245,-0.45329 -1.93575,0.87503,-1.38259,-1.49895,-1.01594,2.11269,-0.45356 -1.94399,0.87470,-1.38334,-1.49793,-1.01635,2.11293,-0.45382 -1.95222,0.87438,-1.38408,-1.49692,-1.01675,2.11317,-0.45408 -1.96046,0.87407,-1.38480,-1.49593,-1.01715,2.11340,-0.45434 -1.96870,0.87376,-1.38551,-1.49496,-1.01754,2.11362,-0.45459 -1.97694,0.87345,-1.38621,-1.49400,-1.01793,2.11385,-0.45484 -1.98517,0.87315,-1.38689,-1.49305,-1.01831,2.11407,-0.45508 -1.99341,0.87285,-1.38757,-1.49213,-1.01868,2.11429,-0.45532 -2.00165,0.87256,-1.38823,-1.49121,-1.01906,2.11450,-0.45556 -2.00988,0.87228,-1.38888,-1.49031,-1.01942,2.11471,-0.45579 -2.01812,0.87200,-1.38953,-1.48942,-1.01979,2.11491,-0.45602 -2.02636,0.87172,-1.39016,-1.48855,-1.02014,2.11512,-0.45625 -2.03460,0.87145,-1.39078,-1.48769,-1.02050,2.11532,-0.45647 -2.04283,0.87118,-1.39139,-1.48685,-1.02084,2.11551,-0.45669 -2.05107,0.87092,-1.39198,-1.48601,-1.02119,2.11571,-0.45690 -2.05931,0.87066,-1.39257,-1.48520,-1.02153,2.11590,-0.45711 -2.06755,0.87040,-1.39315,-1.48439,-1.02186,2.11609,-0.45732 -2.07578,0.87015,-1.39372,-1.48360,-1.02219,2.11627,-0.45753 -2.08402,0.86990,-1.39428,-1.48282,-1.02252,2.11645,-0.45773 -2.09226,0.86966,-1.39483,-1.48205,-1.02284,2.11663,-0.45793 -2.10049,0.86942,-1.39537,-1.48129,-1.02316,2.11681,-0.45813 -2.10873,0.86919,-1.39590,-1.48055,-1.02347,2.11698,-0.45832 -2.11697,0.86896,-1.39643,-1.47981,-1.02378,2.11715,-0.45851 -2.12521,0.86873,-1.39694,-1.47909,-1.02409,2.11732,-0.45870 -2.13344,0.86850,-1.39744,-1.47838,-1.02439,2.11748,-0.45888 -2.14168,0.86828,-1.39794,-1.47768,-1.02468,2.11764,-0.45906 -2.14992,0.86807,-1.39843,-1.47699,-1.02498,2.11780,-0.45924 -2.15815,0.86785,-1.39891,-1.47632,-1.02527,2.11796,-0.45942 -2.16639,0.86764,-1.39938,-1.47565,-1.02555,2.11812,-0.45959 -2.17463,0.86744,-1.39984,-1.47499,-1.02583,2.11827,-0.45976 -2.18287,0.86723,-1.40030,-1.47435,-1.02611,2.11842,-0.45993 -2.19110,0.86703,-1.40075,-1.47371,-1.02639,2.11857,-0.46010 -2.19934,0.86684,-1.40119,-1.47309,-1.02666,2.11871,-0.46026 -2.20758,0.86664,-1.40162,-1.47247,-1.02692,2.11885,-0.46042 -2.21582,0.86645,-1.40205,-1.47187,-1.02719,2.11899,-0.46058 -2.22405,0.86627,-1.40247,-1.47127,-1.02745,2.11913,-0.46073 -2.23229,0.86608,-1.40288,-1.47068,-1.02770,2.11927,-0.46089 -2.24053,0.86590,-1.40328,-1.47010,-1.02796,2.11940,-0.46104 -2.24876,0.86572,-1.40368,-1.46954,-1.02820,2.11954,-0.46119 -2.25700,0.86554,-1.40407,-1.46898,-1.02845,2.11967,-0.46133 -2.26524,0.86536,-1.40454,-1.46832,-1.02872,2.11980,-0.46149 -2.27348,0.86469,-1.40647,-1.46565,-1.02972,2.12028,-0.46202 -2.28171,0.86404,-1.40836,-1.46302,-1.03071,2.12076,-0.46254 -2.28995,0.86339,-1.41023,-1.46043,-1.03168,2.12122,-0.46305 -2.29819,0.86276,-1.41206,-1.45787,-1.03265,2.12167,-0.46356 -2.30643,0.86214,-1.41386,-1.45536,-1.03360,2.12212,-0.46405 -2.31466,0.86154,-1.41563,-1.45288,-1.03455,2.12256,-0.46454 -2.32290,0.86094,-1.41738,-1.45044,-1.03548,2.12299,-0.46502 -2.33114,0.86035,-1.41909,-1.44804,-1.03641,2.12341,-0.46549 -2.33937,0.85978,-1.42077,-1.44567,-1.03732,2.12383,-0.46596 -2.34761,0.85921,-1.42243,-1.44334,-1.03822,2.12424,-0.46641 -2.35585,0.85865,-1.42405,-1.44104,-1.03912,2.12464,-0.46686 -2.36409,0.85811,-1.42565,-1.43878,-1.04000,2.12504,-0.46730 -2.37232,0.85757,-1.42722,-1.43655,-1.04087,2.12542,-0.46774 -2.38056,0.85704,-1.42877,-1.43435,-1.04173,2.12580,-0.46816 -2.38880,0.85653,-1.43029,-1.43219,-1.04259,2.12618,-0.46858 -2.39703,0.85602,-1.43178,-1.43006,-1.04343,2.12655,-0.46900 -2.40527,0.85552,-1.43325,-1.42796,-1.04426,2.12691,-0.46940 -2.41351,0.85503,-1.43470,-1.42589,-1.04508,2.12726,-0.46980 -2.42175,0.85454,-1.43612,-1.42386,-1.04590,2.12761,-0.47020 -2.42998,0.85407,-1.43752,-1.42185,-1.04670,2.12796,-0.47058 -2.43822,0.85360,-1.43889,-1.41988,-1.04749,2.12830,-0.47097 -2.44646,0.85314,-1.44024,-1.41793,-1.04828,2.12863,-0.47134 -2.45470,0.85269,-1.44157,-1.41601,-1.04905,2.12895,-0.47171 -2.46293,0.85225,-1.44287,-1.41413,-1.04982,2.12927,-0.47207 -2.47117,0.85182,-1.44416,-1.41227,-1.05057,2.12959,-0.47243 -2.47941,0.85139,-1.44542,-1.41044,-1.05132,2.12990,-0.47278 -2.48764,0.85097,-1.44666,-1.40864,-1.05206,2.13020,-0.47313 -2.49588,0.85056,-1.44788,-1.40686,-1.05279,2.13050,-0.47347 -2.50412,0.85015,-1.44908,-1.40511,-1.05351,2.13080,-0.47380 -2.51236,0.84975,-1.45026,-1.40339,-1.05422,2.13109,-0.47413 -2.52059,0.84936,-1.45142,-1.40169,-1.05492,2.13137,-0.47446 -2.52883,0.84897,-1.45256,-1.40002,-1.05562,2.13165,-0.47478 -2.53707,0.84859,-1.45369,-1.39838,-1.05630,2.13193,-0.47509 -2.54530,0.84822,-1.45479,-1.39676,-1.05698,2.13220,-0.47540 -2.55354,0.84785,-1.45588,-1.39516,-1.05765,2.13247,-0.47571 -2.56178,0.84749,-1.45694,-1.39359,-1.05831,2.13273,-0.47601 -2.57002,0.84714,-1.45799,-1.39204,-1.05896,2.13299,-0.47630 -2.57825,0.84679,-1.45902,-1.39052,-1.05960,2.13324,-0.47659 -2.58649,0.84645,-1.46004,-1.38902,-1.06024,2.13349,-0.47688 -2.59473,0.84611,-1.46104,-1.38754,-1.06087,2.13374,-0.47716 -2.60297,0.84578,-1.46202,-1.38609,-1.06149,2.13398,-0.47744 -2.61120,0.84545,-1.46298,-1.38465,-1.06210,2.13421,-0.47771 -2.61944,0.84513,-1.46393,-1.38324,-1.06270,2.13445,-0.47798 -2.62768,0.84482,-1.46487,-1.38185,-1.06330,2.13468,-0.47824 -2.63591,0.84451,-1.46578,-1.38048,-1.06389,2.13490,-0.47851 -2.64415,0.84420,-1.46669,-1.37913,-1.06447,2.13513,-0.47876 -2.65239,0.84390,-1.46757,-1.37781,-1.06504,2.13535,-0.47901 -2.66063,0.84361,-1.46845,-1.37650,-1.06561,2.13556,-0.47926 -2.66886,0.84332,-1.46931,-1.37521,-1.06617,2.13577,-0.47951 -2.67710,0.84303,-1.47015,-1.37394,-1.06672,2.13598,-0.47975 -2.68534,0.84275,-1.47098,-1.37269,-1.06726,2.13619,-0.47999 -2.69357,0.84247,-1.47180,-1.37146,-1.06780,2.13639,-0.48022 -2.70181,0.84220,-1.47260,-1.37025,-1.06833,2.13659,-0.48045 -2.71005,0.84193,-1.47339,-1.36906,-1.06886,2.13678,-0.48068 -2.71829,0.84167,-1.47417,-1.36789,-1.06937,2.13697,-0.48090 -2.72652,0.84141,-1.47493,-1.36673,-1.06988,2.13716,-0.48112 -2.73476,0.84116,-1.47568,-1.36559,-1.07039,2.13735,-0.48134 -2.74300,0.84091,-1.47642,-1.36447,-1.07089,2.13753,-0.48155 -2.75124,0.84066,-1.47715,-1.36337,-1.07138,2.13771,-0.48176 -2.75947,0.84042,-1.47786,-1.36228,-1.07186,2.13789,-0.48197 -2.76771,0.84018,-1.47857,-1.36121,-1.07234,2.13806,-0.48217 -2.77595,0.83995,-1.47926,-1.36015,-1.07281,2.13823,-0.48237 -2.78418,0.83971,-1.47994,-1.35911,-1.07328,2.13840,-0.48257 -2.79242,0.83949,-1.48061,-1.35809,-1.07374,2.13857,-0.48277 -2.80066,0.83926,-1.48127,-1.35709,-1.07419,2.13873,-0.48296 -2.80890,0.83904,-1.48191,-1.35609,-1.07464,2.13889,-0.48315 -2.81713,0.83883,-1.48255,-1.35512,-1.07508,2.13905,-0.48333 -2.82537,0.83861,-1.48318,-1.35416,-1.07551,2.13921,-0.48352 -2.83361,0.83841,-1.48379,-1.35321,-1.07594,2.13936,-0.48370 -2.84185,0.83820,-1.48440,-1.35228,-1.07637,2.13951,-0.48388 -2.85008,0.83800,-1.48499,-1.35136,-1.07679,2.13966,-0.48405 -2.85832,0.83780,-1.48558,-1.35046,-1.07720,2.13981,-0.48422 -2.86656,0.83760,-1.48616,-1.34957,-1.07761,2.13995,-0.48439 -2.87479,0.83741,-1.48672,-1.34869,-1.07801,2.14009,-0.48456 -2.88303,0.83722,-1.48728,-1.34783,-1.07841,2.14023,-0.48473 -2.89127,0.83703,-1.48783,-1.34698,-1.07880,2.14037,-0.48489 -2.89951,0.83684,-1.48837,-1.34614,-1.07918,2.14051,-0.48505 -2.90774,0.83666,-1.48890,-1.34532,-1.07957,2.14064,-0.48521 -2.91598,0.83648,-1.48942,-1.34451,-1.07994,2.14077,-0.48536 -2.92422,0.83631,-1.48993,-1.34371,-1.08031,2.14090,-0.48551 -2.93245,0.83614,-1.49044,-1.34292,-1.08068,2.14103,-0.48566 -2.94069,0.83597,-1.49093,-1.34215,-1.08104,2.14115,-0.48581 -2.94893,0.83580,-1.49142,-1.34138,-1.08140,2.14128,-0.48596 -2.95717,0.83563,-1.49190,-1.34063,-1.08175,2.14140,-0.48610 -2.96540,0.83547,-1.49238,-1.33989,-1.08209,2.14152,-0.48625 -2.97364,0.83531,-1.49284,-1.33916,-1.08243,2.14163,-0.48639 -2.98188,0.83515,-1.49330,-1.33845,-1.08277,2.14175,-0.48652 -2.99012,0.83500,-1.49375,-1.33774,-1.08310,2.14186,-0.48666 -2.99835,0.83485,-1.49419,-1.33705,-1.08343,2.14198,-0.48679 -3.00659,0.83470,-1.49463,-1.33636,-1.08376,2.14209,-0.48692 -3.01483,0.83455,-1.49505,-1.33569,-1.08408,2.14219,-0.48705 -3.02306,0.83440,-1.49547,-1.33502,-1.08439,2.14230,-0.48718 -3.03130,0.83426,-1.49589,-1.33437,-1.08470,2.14241,-0.48731 -3.03954,0.83412,-1.49630,-1.33373,-1.08501,2.14251,-0.48743 -3.04778,0.83398,-1.49670,-1.33309,-1.08531,2.14261,-0.48755 -3.05601,0.83385,-1.49709,-1.33247,-1.08561,2.14271,-0.48768 -3.06425,0.83371,-1.49748,-1.33186,-1.08590,2.14281,-0.48779 -3.07249,0.83358,-1.49787,-1.33124,-1.08619,2.14291,-0.48791 -3.08072,0.83331,-1.49876,-1.32991,-1.08676,2.14310,-0.48813 -3.08896,0.83305,-1.49963,-1.32859,-1.08732,2.14329,-0.48835 -3.09720,0.83279,-1.50048,-1.32730,-1.08787,2.14348,-0.48857 -3.10544,0.83254,-1.50132,-1.32603,-1.08841,2.14366,-0.48879 -3.11367,0.83229,-1.50215,-1.32478,-1.08895,2.14384,-0.48900 -3.12191,0.83205,-1.50296,-1.32354,-1.08948,2.14402,-0.48920 -3.13015,0.83180,-1.50376,-1.32233,-1.09000,2.14419,-0.48941 -3.13839,0.83157,-1.50455,-1.32113,-1.09052,2.14436,-0.48961 -3.14662,0.83133,-1.50532,-1.31995,-1.09103,2.14453,-0.48981 -3.15486,0.83110,-1.50608,-1.31879,-1.09153,2.14470,-0.49000 -3.16310,0.83088,-1.50683,-1.31765,-1.09203,2.14486,-0.49020 -3.17133,0.83066,-1.50756,-1.31652,-1.09252,2.14502,-0.49039 -3.17957,0.83044,-1.50829,-1.31541,-1.09301,2.14518,-0.49057 -3.18781,0.83022,-1.50900,-1.31432,-1.09349,2.14534,-0.49076 -3.19605,0.83001,-1.50970,-1.31325,-1.09396,2.14549,-0.49094 -3.20428,0.82980,-1.51039,-1.31219,-1.09442,2.14564,-0.49112 -3.21252,0.82960,-1.51107,-1.31114,-1.09488,2.14579,-0.49129 -3.22076,0.82940,-1.51174,-1.31012,-1.09534,2.14593,-0.49146 -3.22900,0.82920,-1.51239,-1.30910,-1.09579,2.14608,-0.49164 -3.23723,0.82900,-1.51304,-1.30811,-1.09623,2.14622,-0.49180 -3.24547,0.82881,-1.51367,-1.30712,-1.09667,2.14636,-0.49197 -3.25371,0.82862,-1.51430,-1.30616,-1.09710,2.14650,-0.49213 -3.26194,0.82843,-1.51491,-1.30520,-1.09752,2.14663,-0.49229 -3.27018,0.82825,-1.51551,-1.30427,-1.09794,2.14677,-0.49245 -3.27842,0.82807,-1.51611,-1.30334,-1.09836,2.14690,-0.49261 -3.28666,0.82789,-1.51669,-1.30243,-1.09877,2.14703,-0.49276 -3.29489,0.82772,-1.51727,-1.30154,-1.09917,2.14715,-0.49291 -3.30313,0.82755,-1.51783,-1.30065,-1.09957,2.14728,-0.49306 -3.31137,0.82738,-1.51839,-1.29979,-1.09996,2.14740,-0.49321 -3.31960,0.82721,-1.51894,-1.29893,-1.10035,2.14752,-0.49335 -3.32784,0.82705,-1.51948,-1.29809,-1.10074,2.14764,-0.49350 -3.33608,0.82688,-1.52001,-1.29726,-1.10111,2.14776,-0.49364 -3.34432,0.82673,-1.52053,-1.29644,-1.10149,2.14788,-0.49378 -3.35255,0.82657,-1.52104,-1.29563,-1.10185,2.14799,-0.49391 -3.36079,0.82641,-1.52155,-1.29484,-1.10222,2.14810,-0.49405 -3.36903,0.82626,-1.52204,-1.29406,-1.10258,2.14821,-0.49418 -3.37727,0.82611,-1.52253,-1.29329,-1.10293,2.14832,-0.49431 -3.38550,0.82597,-1.52301,-1.29253,-1.10328,2.14843,-0.49444 -3.39374,0.82582,-1.52348,-1.29179,-1.10362,2.14853,-0.49457 -3.40198,0.82568,-1.52395,-1.29105,-1.10396,2.14864,-0.49469 -3.41021,0.82554,-1.52441,-1.29033,-1.10430,2.14874,-0.49481 -3.41845,0.82540,-1.52486,-1.28962,-1.10463,2.14884,-0.49494 -3.42669,0.82527,-1.52530,-1.28891,-1.10496,2.14894,-0.49506 -3.43493,0.82513,-1.52573,-1.28822,-1.10528,2.14904,-0.49517 -3.44316,0.82500,-1.52616,-1.28754,-1.10560,2.14913,-0.49529 -3.45140,0.82487,-1.52658,-1.28687,-1.10591,2.14923,-0.49540 -3.45964,0.82474,-1.52700,-1.28621,-1.10622,2.14932,-0.49552 -3.46787,0.82462,-1.52741,-1.28556,-1.10653,2.14941,-0.49563 -3.47611,0.82449,-1.52781,-1.28492,-1.10683,2.14950,-0.49574 -3.48435,0.82437,-1.52820,-1.28429,-1.10712,2.14959,-0.49585 -3.49259,0.82425,-1.52859,-1.28367,-1.10742,2.14968,-0.49595 -3.50082,0.82423,-1.52866,-1.28356,-1.10746,2.14969,-0.49597 -3.50906,0.82402,-1.52937,-1.28249,-1.10793,2.14985,-0.49615 -3.51730,0.82381,-1.53006,-1.28143,-1.10839,2.15000,-0.49633 -3.52554,0.82361,-1.53074,-1.28039,-1.10884,2.15014,-0.49650 -3.53377,0.82341,-1.53141,-1.27936,-1.10929,2.15029,-0.49668 -3.54201,0.82321,-1.53207,-1.27835,-1.10973,2.15043,-0.49684 -3.55025,0.82301,-1.53272,-1.27736,-1.11017,2.15057,-0.49701 -3.55848,0.82282,-1.53335,-1.27638,-1.11060,2.15071,-0.49718 -3.56672,0.82263,-1.53398,-1.27541,-1.11103,2.15084,-0.49734 -3.57496,0.82245,-1.53460,-1.27446,-1.11145,2.15098,-0.49750 -3.58320,0.82227,-1.53520,-1.27353,-1.11186,2.15111,-0.49766 -3.59143,0.82209,-1.53580,-1.27260,-1.11227,2.15124,-0.49781 -3.59967,0.82191,-1.53639,-1.27169,-1.11267,2.15137,-0.49796 -3.60791,0.82173,-1.53697,-1.27080,-1.11307,2.15149,-0.49811 -3.61614,0.82156,-1.53754,-1.26992,-1.11347,2.15162,-0.49826 -3.62438,0.82139,-1.53810,-1.26905,-1.11386,2.15174,-0.49841 -3.63262,0.82123,-1.53865,-1.26819,-1.11424,2.15186,-0.49855 -3.64086,0.82107,-1.53919,-1.26735,-1.11462,2.15198,-0.49869 -3.64909,0.82090,-1.53972,-1.26652,-1.11499,2.15209,-0.49883 -3.65733,0.82075,-1.54025,-1.26570,-1.11536,2.15221,-0.49897 -3.66557,0.82059,-1.54076,-1.26490,-1.11573,2.15232,-0.49911 -3.67381,0.82044,-1.54127,-1.26411,-1.11609,2.15243,-0.49924 -3.68204,0.82029,-1.54177,-1.26332,-1.11644,2.15254,-0.49937 -3.69028,0.82014,-1.54226,-1.26256,-1.11679,2.15265,-0.49950 -3.69852,0.81999,-1.54274,-1.26180,-1.11714,2.15275,-0.49963 -3.70675,0.81985,-1.54322,-1.26105,-1.11748,2.15286,-0.49976 -3.71499,0.81971,-1.54368,-1.26032,-1.11781,2.15296,-0.49988 -3.72323,0.81957,-1.54414,-1.25959,-1.11815,2.15306,-0.50000 -3.73147,0.81943,-1.54460,-1.25888,-1.11847,2.15316,-0.50012 -3.73970,0.81930,-1.54504,-1.25818,-1.11880,2.15326,-0.50024 -3.74794,0.81916,-1.54548,-1.25748,-1.11912,2.15335,-0.50036 -3.75618,0.81903,-1.54591,-1.25680,-1.11943,2.15345,-0.50047 -3.76442,0.81890,-1.54634,-1.25613,-1.11974,2.15354,-0.50059 -3.77265,0.81878,-1.54675,-1.25547,-1.12005,2.15363,-0.50070 -3.78089,0.81865,-1.54716,-1.25482,-1.12035,2.15372,-0.50081 -3.78913,0.81853,-1.54757,-1.25418,-1.12065,2.15381,-0.50092 -3.79736,0.81841,-1.54797,-1.25354,-1.12095,2.15390,-0.50103 -3.80560,0.81829,-1.54835,-1.25294,-1.12123,2.15398,-0.50113 -3.81384,0.81813,-1.54903,-1.25187,-1.12170,2.15410,-0.50127 -3.82208,0.81796,-1.54970,-1.25081,-1.12216,2.15422,-0.50141 -3.83031,0.81780,-1.55035,-1.24978,-1.12261,2.15434,-0.50155 -3.83855,0.81764,-1.55100,-1.24875,-1.12306,2.15446,-0.50169 -3.84679,0.81748,-1.55164,-1.24775,-1.12350,2.15457,-0.50183 -3.85502,0.81732,-1.55226,-1.24676,-1.12394,2.15468,-0.50197 -3.86326,0.81717,-1.55288,-1.24578,-1.12438,2.15479,-0.50210 -3.87150,0.81702,-1.55348,-1.24482,-1.12480,2.15490,-0.50223 -3.87974,0.81687,-1.55408,-1.24387,-1.12522,2.15501,-0.50236 -3.88797,0.81672,-1.55467,-1.24293,-1.12564,2.15512,-0.50249 -3.89621,0.81658,-1.55525,-1.24201,-1.12605,2.15522,-0.50261 -3.90445,0.81643,-1.55581,-1.24111,-1.12646,2.15532,-0.50274 -3.91269,0.81629,-1.55637,-1.24021,-1.12686,2.15542,-0.50286 -3.92092,0.81616,-1.55692,-1.23934,-1.12725,2.15552,-0.50298 -3.92916,0.81602,-1.55746,-1.23847,-1.12764,2.15562,-0.50310 -3.93740,0.81589,-1.55800,-1.23762,-1.12803,2.15572,-0.50322 -3.94563,0.81575,-1.55852,-1.23677,-1.12841,2.15581,-0.50333 -3.95387,0.81562,-1.55904,-1.23595,-1.12878,2.15591,-0.50345 -3.96211,0.81550,-1.55954,-1.23513,-1.12915,2.15600,-0.50356 -3.97035,0.81537,-1.56004,-1.23433,-1.12952,2.15609,-0.50367 -3.97858,0.81525,-1.56054,-1.23353,-1.12988,2.15618,-0.50378 -3.98682,0.81513,-1.56102,-1.23276,-1.13023,2.15627,-0.50389 -3.99506,0.81501,-1.56149,-1.23199,-1.13059,2.15636,-0.50399 -4.00329,0.81489,-1.56196,-1.23123,-1.13093,2.15644,-0.50410 -4.01153,0.81477,-1.56242,-1.23048,-1.13128,2.15653,-0.50420 -4.01977,0.81466,-1.56288,-1.22975,-1.13161,2.15661,-0.50430 -4.02801,0.81454,-1.56332,-1.22903,-1.13195,2.15669,-0.50440 -4.03624,0.81443,-1.56376,-1.22831,-1.13228,2.15677,-0.50450 -4.04448,0.81432,-1.56419,-1.22761,-1.13260,2.15685,-0.50460 -4.05272,0.81421,-1.56462,-1.22692,-1.13292,2.15693,-0.50470 -4.06096,0.81411,-1.56504,-1.22624,-1.13324,2.15701,-0.50479 -4.06919,0.81400,-1.56545,-1.22557,-1.13355,2.15708,-0.50488 -4.07743,0.81390,-1.56585,-1.22491,-1.13386,2.15716,-0.50498 -4.08567,0.81380,-1.56625,-1.22426,-1.13416,2.15723,-0.50507 -4.09390,0.81370,-1.56664,-1.22362,-1.13446,2.15730,-0.50516 -4.10214,0.81368,-1.56669,-1.22354,-1.13450,2.15731,-0.50517 -4.11038,0.81355,-1.56719,-1.22275,-1.13485,2.15741,-0.50529 -4.11862,0.81342,-1.56768,-1.22198,-1.13520,2.15750,-0.50540 -4.12685,0.81329,-1.56816,-1.22121,-1.13555,2.15760,-0.50551 -4.13509,0.81316,-1.56863,-1.22046,-1.13589,2.15769,-0.50563 -4.14333,0.81304,-1.56909,-1.21972,-1.13623,2.15778,-0.50574 -4.15157,0.81291,-1.56955,-1.21899,-1.13656,2.15787,-0.50585 -4.15980,0.81279,-1.57000,-1.21827,-1.13689,2.15796,-0.50595 -4.16804,0.81267,-1.57044,-1.21756,-1.13722,2.15804,-0.50606 -4.17628,0.81256,-1.57088,-1.21687,-1.13754,2.15813,-0.50616 -4.18451,0.81244,-1.57130,-1.21618,-1.13785,2.15821,-0.50627 -4.19275,0.81233,-1.57173,-1.21550,-1.13817,2.15829,-0.50637 -4.20099,0.81221,-1.57214,-1.21484,-1.13847,2.15837,-0.50647 -4.20923,0.81210,-1.57255,-1.21418,-1.13878,2.15845,-0.50656 -4.21746,0.81199,-1.57295,-1.21353,-1.13908,2.15853,-0.50666 -4.22570,0.81187,-1.57339,-1.21282,-1.13940,2.15862,-0.50677 -4.23394,0.81166,-1.57426,-1.21149,-1.13997,2.15877,-0.50695 -4.24217,0.81145,-1.57510,-1.21017,-1.14054,2.15892,-0.50713 -4.25041,0.81124,-1.57594,-1.20887,-1.14110,2.15907,-0.50731 -4.25865,0.81103,-1.57676,-1.20759,-1.14165,2.15922,-0.50749 -4.26689,0.81083,-1.57757,-1.20633,-1.14219,2.15936,-0.50766 -4.27512,0.81063,-1.57836,-1.20508,-1.14273,2.15951,-0.50783 -4.28336,0.81043,-1.57915,-1.20386,-1.14326,2.15965,-0.50800 -4.29160,0.81024,-1.57992,-1.20265,-1.14378,2.15978,-0.50817 -4.29984,0.81005,-1.58068,-1.20146,-1.14430,2.15992,-0.50833 -4.30807,0.80986,-1.58142,-1.20029,-1.14481,2.16005,-0.50849 -4.31631,0.80967,-1.58216,-1.19914,-1.14532,2.16019,-0.50865 -4.32455,0.80949,-1.58288,-1.19800,-1.14581,2.16032,-0.50881 -4.33278,0.80931,-1.58359,-1.19688,-1.14631,2.16044,-0.50896 -4.34102,0.80914,-1.58429,-1.19577,-1.14679,2.16057,-0.50911 -4.34926,0.80896,-1.58498,-1.19468,-1.14727,2.16069,-0.50926 -4.35750,0.80879,-1.58566,-1.19361,-1.14775,2.16081,-0.50941 -4.36573,0.80863,-1.58632,-1.19255,-1.14822,2.16093,-0.50956 -4.37397,0.80846,-1.58698,-1.19151,-1.14868,2.16105,-0.50970 -4.38221,0.80830,-1.58762,-1.19048,-1.14914,2.16117,-0.50984 -4.39044,0.80814,-1.58826,-1.18947,-1.14959,2.16128,-0.50998 -4.39868,0.80798,-1.58889,-1.18848,-1.15004,2.16139,-0.51012 -4.40692,0.80783,-1.58950,-1.18749,-1.15048,2.16151,-0.51025 -4.41516,0.80767,-1.59011,-1.18653,-1.15091,2.16161,-0.51039 -4.42339,0.80752,-1.59070,-1.18557,-1.15134,2.16172,-0.51052 -4.43163,0.80738,-1.59129,-1.18463,-1.15176,2.16183,-0.51065 -4.43987,0.80723,-1.59187,-1.18371,-1.15218,2.16193,-0.51078 -4.44811,0.80709,-1.59244,-1.18279,-1.15260,2.16204,-0.51090 -4.45634,0.80695,-1.59300,-1.18189,-1.15300,2.16214,-0.51103 -4.46458,0.80681,-1.59355,-1.18101,-1.15341,2.16224,-0.51115 -4.47282,0.80667,-1.59409,-1.18013,-1.15381,2.16233,-0.51127 -4.48105,0.80654,-1.59462,-1.17927,-1.15420,2.16243,-0.51139 -4.48929,0.80640,-1.59515,-1.17843,-1.15459,2.16253,-0.51151 -4.49753,0.80627,-1.59567,-1.17759,-1.15497,2.16262,-0.51162 -4.50577,0.80614,-1.59618,-1.17677,-1.15535,2.16271,-0.51174 -4.51400,0.80602,-1.59668,-1.17596,-1.15572,2.16280,-0.51185 -4.52224,0.80589,-1.59717,-1.17516,-1.15609,2.16289,-0.51196 -4.53048,0.80577,-1.59765,-1.17437,-1.15645,2.16298,-0.51207 -4.53871,0.80565,-1.59813,-1.17359,-1.15681,2.16307,-0.51218 -4.54695,0.80553,-1.59860,-1.17283,-1.15717,2.16315,-0.51228 -4.55519,0.80541,-1.59906,-1.17208,-1.15752,2.16324,-0.51239 -4.56343,0.80530,-1.59952,-1.17133,-1.15786,2.16332,-0.51249 -4.57166,0.80519,-1.59997,-1.17060,-1.15821,2.16340,-0.51259 -4.57990,0.80507,-1.60041,-1.16988,-1.15854,2.16348,-0.51269 -4.58814,0.80496,-1.60084,-1.16917,-1.15887,2.16356,-0.51279 -4.59638,0.80486,-1.60127,-1.16847,-1.15920,2.16364,-0.51289 -4.60461,0.80475,-1.60169,-1.16778,-1.15953,2.16372,-0.51299 -4.61285,0.80464,-1.60210,-1.16710,-1.15985,2.16379,-0.51308 -4.62109,0.80454,-1.60251,-1.16643,-1.16016,2.16387,-0.51318 -4.62932,0.80444,-1.60291,-1.16577,-1.16048,2.16394,-0.51327 -4.63756,0.80438,-1.60316,-1.16536,-1.16067,2.16399,-0.51332 -4.64580,0.80426,-1.60364,-1.16459,-1.16103,2.16407,-0.51342 -4.65404,0.80415,-1.60410,-1.16382,-1.16138,2.16415,-0.51352 -4.66227,0.80404,-1.60457,-1.16306,-1.16173,2.16422,-0.51362 -4.67051,0.80394,-1.60502,-1.16231,-1.16208,2.16430,-0.51372 -4.67875,0.80383,-1.60547,-1.16158,-1.16242,2.16438,-0.51381 -4.68699,0.80373,-1.60591,-1.16085,-1.16276,2.16445,-0.51391 -4.69522,0.80362,-1.60634,-1.16014,-1.16309,2.16453,-0.51400 -4.70346,0.80352,-1.60677,-1.15944,-1.16342,2.16460,-0.51409 -4.71170,0.80342,-1.60719,-1.15874,-1.16374,2.16467,-0.51418 -4.71993,0.80333,-1.60760,-1.15806,-1.16406,2.16474,-0.51427 -4.72817,0.80323,-1.60801,-1.15739,-1.16438,2.16481,-0.51436 -4.73641,0.80313,-1.60841,-1.15672,-1.16469,2.16488,-0.51444 -4.74465,0.80308,-1.60863,-1.15637,-1.16486,2.16492,-0.51449 -4.75288,0.80291,-1.60922,-1.15544,-1.16527,2.16504,-0.51464 -4.76112,0.80274,-1.60981,-1.15453,-1.16568,2.16516,-0.51479 -4.76936,0.80257,-1.61039,-1.15363,-1.16608,2.16528,-0.51493 -4.77759,0.80241,-1.61095,-1.15274,-1.16648,2.16540,-0.51508 -4.78583,0.80224,-1.61151,-1.15187,-1.16687,2.16551,-0.51522 -4.79407,0.80208,-1.61206,-1.15100,-1.16726,2.16563,-0.51536 -4.80231,0.80193,-1.61260,-1.15015,-1.16765,2.16574,-0.51550 -4.81054,0.80177,-1.61314,-1.14932,-1.16802,2.16585,-0.51563 -4.81878,0.80162,-1.61366,-1.14849,-1.16840,2.16596,-0.51576 -4.82702,0.80147,-1.61418,-1.14768,-1.16877,2.16606,-0.51590 -4.83526,0.80133,-1.61469,-1.14688,-1.16913,2.16617,-0.51603 -4.84349,0.80118,-1.61519,-1.14609,-1.16949,2.16627,-0.51615 -4.85173,0.80104,-1.61568,-1.14531,-1.16985,2.16637,-0.51628 -4.85997,0.80090,-1.61616,-1.14454,-1.17020,2.16647,-0.51640 -4.86820,0.80076,-1.61664,-1.14379,-1.17055,2.16657,-0.51652 -4.87644,0.80063,-1.61711,-1.14304,-1.17089,2.16666,-0.51664 -4.88468,0.80049,-1.61757,-1.14231,-1.17123,2.16676,-0.51676 -4.89292,0.80036,-1.61803,-1.14158,-1.17156,2.16685,-0.51688 -4.90115,0.80023,-1.61848,-1.14087,-1.17189,2.16695,-0.51699 -4.90939,0.80011,-1.61892,-1.14017,-1.17222,2.16704,-0.51711 -4.91763,0.79998,-1.61935,-1.13947,-1.17254,2.16713,-0.51722 -4.92586,0.79986,-1.61978,-1.13879,-1.17286,2.16721,-0.51733 -4.93410,0.79974,-1.62020,-1.13812,-1.17317,2.16730,-0.51744 -4.94234,0.79962,-1.62061,-1.13746,-1.17348,2.16739,-0.51754 -4.95058,0.79950,-1.62102,-1.13680,-1.17379,2.16747,-0.51765 -4.95881,0.79943,-1.62126,-1.13641,-1.17397,2.16752,-0.51771 -4.96705,0.79931,-1.62168,-1.13574,-1.17429,2.16760,-0.51782 -4.97529,0.79920,-1.62210,-1.13507,-1.17460,2.16769,-0.51792 -4.98353,0.79908,-1.62250,-1.13442,-1.17490,2.16777,-0.51802 -4.99176,0.79905,-1.62262,-1.13422,-1.17499,2.16779,-0.51805 -5.00000,0.79895,-1.62303,-1.13356,-1.17531,2.16787,-0.51815 +0.00000,0.98910,-1.24522,-1.64192,-0.96971,2.02814,-0.36664 +0.00262,0.98962,-1.24514,-1.64167,-0.96988,2.02775,-0.36626 +0.00524,0.99014,-1.24507,-1.64142,-0.97004,2.02737,-0.36589 +0.00787,0.99065,-1.24499,-1.64117,-0.97020,2.02699,-0.36553 +0.01049,0.99115,-1.24492,-1.64093,-0.97036,2.02662,-0.36517 +0.01311,0.99164,-1.24485,-1.64069,-0.97052,2.02626,-0.36481 +0.01573,0.99212,-1.24478,-1.64045,-0.97067,2.02590,-0.36447 +0.01835,0.99260,-1.24471,-1.64022,-0.97082,2.02555,-0.36412 +0.02098,0.99306,-1.24464,-1.64000,-0.97097,2.02520,-0.36379 +0.02360,0.99352,-1.24457,-1.63977,-0.97111,2.02486,-0.36346 +0.02622,0.99398,-1.24450,-1.63956,-0.97125,2.02452,-0.36313 +0.02884,0.99442,-1.24444,-1.63934,-0.97139,2.02419,-0.36281 +0.03146,0.99448,-1.24444,-1.63931,-0.97141,2.02415,-0.36277 +0.03408,0.99503,-1.24440,-1.63898,-0.97160,2.02374,-0.36238 +0.03671,0.99557,-1.24436,-1.63866,-0.97179,2.02334,-0.36199 +0.03933,0.99610,-1.24432,-1.63835,-0.97198,2.02294,-0.36161 +0.04195,0.99662,-1.24428,-1.63804,-0.97217,2.02255,-0.36123 +0.04457,0.99714,-1.24424,-1.63773,-0.97235,2.02217,-0.36086 +0.04719,0.99764,-1.24421,-1.63743,-0.97252,2.02179,-0.36050 +0.04982,0.99814,-1.24417,-1.63714,-0.97270,2.02142,-0.36014 +0.05244,0.99863,-1.24414,-1.63685,-0.97287,2.02105,-0.35979 +0.05506,0.99911,-1.24410,-1.63657,-0.97303,2.02070,-0.35945 +0.05768,0.99959,-1.24407,-1.63629,-0.97320,2.02034,-0.35911 +0.06030,1.00005,-1.24404,-1.63602,-0.97336,2.01999,-0.35877 +0.06293,1.00051,-1.24401,-1.63575,-0.97352,2.01965,-0.35845 +0.06555,1.00096,-1.24398,-1.63548,-0.97367,2.01931,-0.35812 +0.06817,1.00140,-1.24395,-1.63522,-0.97383,2.01898,-0.35781 +0.07079,1.00184,-1.24392,-1.63497,-0.97398,2.01866,-0.35749 +0.07341,1.00206,-1.24390,-1.63484,-0.97405,2.01849,-0.35733 +0.07604,1.00257,-1.24389,-1.63451,-0.97424,2.01811,-0.35697 +0.07866,1.00306,-1.24387,-1.63419,-0.97442,2.01774,-0.35662 +0.08128,1.00355,-1.24385,-1.63388,-0.97460,2.01737,-0.35627 +0.08390,1.00403,-1.24384,-1.63357,-0.97477,2.01701,-0.35592 +0.08652,1.00450,-1.24382,-1.63327,-0.97495,2.01666,-0.35559 +0.08915,1.00497,-1.24381,-1.63298,-0.97511,2.01631,-0.35525 +0.09177,1.00543,-1.24380,-1.63268,-0.97528,2.01597,-0.35493 +0.09439,1.00588,-1.24378,-1.63240,-0.97544,2.01563,-0.35461 +0.09701,1.00632,-1.24377,-1.63212,-0.97560,2.01530,-0.35429 +0.09963,1.00675,-1.24375,-1.63184,-0.97576,2.01497,-0.35398 +0.10225,1.00718,-1.24374,-1.63157,-0.97591,2.01465,-0.35367 +0.10488,1.00727,-1.24374,-1.63151,-0.97595,2.01458,-0.35361 +0.10750,1.00776,-1.24375,-1.63116,-0.97614,2.01422,-0.35326 +0.11012,1.00823,-1.24376,-1.63082,-0.97632,2.01386,-0.35292 +0.11274,1.00870,-1.24378,-1.63048,-0.97651,2.01351,-0.35259 +0.11536,1.00916,-1.24379,-1.63015,-0.97669,2.01316,-0.35226 +0.11799,1.00962,-1.24380,-1.62982,-0.97686,2.01282,-0.35194 +0.12061,1.01006,-1.24381,-1.62950,-0.97704,2.01249,-0.35162 +0.12323,1.01050,-1.24382,-1.62919,-0.97721,2.01216,-0.35131 +0.12585,1.01093,-1.24383,-1.62888,-0.97737,2.01183,-0.35100 +0.12847,1.01135,-1.24384,-1.62858,-0.97754,2.01151,-0.35070 +0.13110,1.01177,-1.24385,-1.62828,-0.97770,2.01120,-0.35040 +0.13372,1.01190,-1.24386,-1.62818,-0.97775,2.01110,-0.35031 +0.13634,1.01237,-1.24395,-1.62772,-0.97798,2.01075,-0.34998 +0.13896,1.01283,-1.24403,-1.62728,-0.97820,2.01040,-0.34965 +0.14158,1.01328,-1.24412,-1.62684,-0.97842,2.01006,-0.34933 +0.14421,1.01372,-1.24420,-1.62641,-0.97863,2.00973,-0.34901 +0.14683,1.01416,-1.24428,-1.62598,-0.97884,2.00940,-0.34870 +0.14945,1.01459,-1.24436,-1.62557,-0.97905,2.00907,-0.34839 +0.15207,1.01501,-1.24444,-1.62516,-0.97925,2.00876,-0.34809 +0.15469,1.01543,-1.24452,-1.62476,-0.97945,2.00844,-0.34780 +0.15732,1.01583,-1.24460,-1.62436,-0.97964,2.00813,-0.34751 +0.15994,1.01624,-1.24467,-1.62398,-0.97984,2.00783,-0.34722 +0.16256,1.01663,-1.24475,-1.62360,-0.98002,2.00753,-0.34694 +0.16518,1.01702,-1.24482,-1.62322,-0.98021,2.00724,-0.34667 +0.16780,1.01740,-1.24489,-1.62285,-0.98039,2.00695,-0.34640 +0.17042,1.01778,-1.24498,-1.62246,-0.98058,2.00667,-0.34613 +0.17305,1.01817,-1.24523,-1.62181,-0.98087,2.00637,-0.34585 +0.17567,1.01855,-1.24547,-1.62117,-0.98115,2.00608,-0.34558 +0.17829,1.01892,-1.24571,-1.62054,-0.98142,2.00580,-0.34531 +0.18091,1.01929,-1.24595,-1.61992,-0.98170,2.00552,-0.34505 +0.18353,1.01966,-1.24618,-1.61931,-0.98196,2.00524,-0.34479 +0.18616,1.02001,-1.24641,-1.61872,-0.98223,2.00497,-0.34454 +0.18878,1.02036,-1.24663,-1.61813,-0.98249,2.00471,-0.34429 +0.19140,1.02071,-1.24685,-1.61755,-0.98274,2.00445,-0.34405 +0.19402,1.02105,-1.24707,-1.61698,-0.98299,2.00419,-0.34381 +0.19664,1.02138,-1.24728,-1.61642,-0.98324,2.00394,-0.34357 +0.19927,1.02170,-1.24749,-1.61588,-0.98348,2.00369,-0.34334 +0.20189,1.02202,-1.24769,-1.61534,-0.98372,2.00345,-0.34312 +0.20451,1.02234,-1.24790,-1.61481,-0.98395,2.00321,-0.34289 +0.20713,1.02265,-1.24810,-1.61428,-0.98418,2.00297,-0.34267 +0.20975,1.02295,-1.24829,-1.61377,-0.98441,2.00274,-0.34246 +0.21238,1.02325,-1.24848,-1.61327,-0.98463,2.00251,-0.34225 +0.21500,1.02354,-1.24867,-1.61277,-0.98485,2.00229,-0.34204 +0.21762,1.02383,-1.24886,-1.61229,-0.98507,2.00207,-0.34184 +0.22024,1.02411,-1.24904,-1.61181,-0.98528,2.00186,-0.34164 +0.22286,1.02439,-1.24922,-1.61134,-0.98549,2.00164,-0.34144 +0.22549,1.02459,-1.24936,-1.61099,-0.98564,2.00150,-0.34130 +0.22811,1.02486,-1.24966,-1.61033,-0.98592,2.00129,-0.34111 +0.23073,1.02513,-1.24996,-1.60967,-0.98619,2.00108,-0.34092 +0.23335,1.02540,-1.25025,-1.60903,-0.98646,2.00088,-0.34073 +0.23597,1.02566,-1.25054,-1.60840,-0.98673,2.00068,-0.34055 +0.23859,1.02591,-1.25082,-1.60778,-0.98699,2.00049,-0.34037 +0.24122,1.02616,-1.25110,-1.60716,-0.98725,2.00029,-0.34019 +0.24384,1.02641,-1.25138,-1.60656,-0.98750,2.00011,-0.34001 +0.24646,1.02665,-1.25165,-1.60597,-0.98775,1.99992,-0.33984 +0.24908,1.02689,-1.25191,-1.60539,-0.98800,1.99974,-0.33968 +0.25170,1.02712,-1.25217,-1.60482,-0.98824,1.99956,-0.33951 +0.25433,1.02735,-1.25243,-1.60426,-0.98848,1.99939,-0.33935 +0.25695,1.02758,-1.25268,-1.60371,-0.98871,1.99922,-0.33919 +0.25957,1.02780,-1.25293,-1.60317,-0.98894,1.99905,-0.33904 +0.26219,1.02801,-1.25317,-1.60263,-0.98917,1.99888,-0.33888 +0.26481,1.02823,-1.25341,-1.60211,-0.98939,1.99872,-0.33873 +0.26744,1.02844,-1.25364,-1.60159,-0.98961,1.99856,-0.33859 +0.27006,1.02853,-1.25379,-1.60130,-0.98974,1.99848,-0.33852 +0.27268,1.02868,-1.25428,-1.60041,-0.99008,1.99837,-0.33841 +0.27530,1.02883,-1.25477,-1.59953,-0.99043,1.99825,-0.33830 +0.27792,1.02898,-1.25525,-1.59867,-0.99076,1.99814,-0.33820 +0.28055,1.02912,-1.25572,-1.59782,-0.99110,1.99803,-0.33810 +0.28317,1.02926,-1.25619,-1.59698,-0.99142,1.99792,-0.33800 +0.28579,1.02939,-1.25664,-1.59616,-0.99175,1.99782,-0.33791 +0.28841,1.02953,-1.25709,-1.59536,-0.99207,1.99772,-0.33781 +0.29103,1.02966,-1.25753,-1.59456,-0.99238,1.99762,-0.33772 +0.29365,1.02979,-1.25796,-1.59378,-0.99269,1.99752,-0.33763 +0.29628,1.02991,-1.25839,-1.59302,-0.99299,1.99742,-0.33754 +0.29890,1.03003,-1.25881,-1.59226,-0.99329,1.99733,-0.33746 +0.30152,1.03015,-1.25922,-1.59152,-0.99359,1.99723,-0.33737 +0.30414,1.03027,-1.25962,-1.59079,-0.99388,1.99714,-0.33729 +0.30676,1.03038,-1.26002,-1.59007,-0.99416,1.99705,-0.33721 +0.30939,1.03050,-1.26041,-1.58937,-0.99444,1.99697,-0.33713 +0.31201,1.03061,-1.26079,-1.58867,-0.99472,1.99688,-0.33705 +0.31463,1.03071,-1.26117,-1.58799,-0.99499,1.99680,-0.33698 +0.31725,1.03082,-1.26154,-1.58732,-0.99526,1.99672,-0.33690 +0.31987,1.03092,-1.26190,-1.58666,-0.99553,1.99664,-0.33683 +0.32250,1.03102,-1.26226,-1.58601,-0.99579,1.99656,-0.33676 +0.32512,1.03112,-1.26261,-1.58537,-0.99605,1.99648,-0.33669 +0.32774,1.03122,-1.26296,-1.58474,-0.99630,1.99641,-0.33662 +0.33036,1.03132,-1.26330,-1.58412,-0.99655,1.99633,-0.33656 +0.33298,1.03141,-1.26364,-1.58352,-0.99680,1.99626,-0.33649 +0.33561,1.03150,-1.26396,-1.58292,-0.99704,1.99619,-0.33643 +0.33823,1.03159,-1.26429,-1.58233,-0.99728,1.99612,-0.33637 +0.34085,1.03168,-1.26461,-1.58175,-0.99751,1.99606,-0.33631 +0.34347,1.03176,-1.26492,-1.58119,-0.99774,1.99599,-0.33625 +0.34609,1.03182,-1.26514,-1.58078,-0.99791,1.99595,-0.33621 +0.34872,1.03185,-1.26554,-1.58011,-0.99817,1.99592,-0.33618 +0.35134,1.03189,-1.26593,-1.57945,-0.99843,1.99589,-0.33616 +0.35396,1.03192,-1.26631,-1.57881,-0.99868,1.99586,-0.33613 +0.35658,1.03196,-1.26669,-1.57817,-0.99893,1.99583,-0.33611 +0.35920,1.03199,-1.26706,-1.57754,-0.99918,1.99580,-0.33609 +0.36182,1.03202,-1.26742,-1.57693,-0.99942,1.99578,-0.33607 +0.36445,1.03206,-1.26778,-1.57632,-0.99966,1.99575,-0.33604 +0.36707,1.03209,-1.26813,-1.57572,-0.99990,1.99573,-0.33602 +0.36969,1.03212,-1.26847,-1.57514,-1.00013,1.99570,-0.33600 +0.37231,1.03215,-1.26881,-1.57456,-1.00036,1.99568,-0.33598 +0.37493,1.03215,-1.26903,-1.57420,-1.00050,1.99567,-0.33598 +0.37756,1.03210,-1.26953,-1.57342,-1.00079,1.99571,-0.33602 +0.38018,1.03205,-1.27002,-1.57266,-1.00108,1.99575,-0.33605 +0.38280,1.03200,-1.27050,-1.57191,-1.00136,1.99579,-0.33609 +0.38542,1.03194,-1.27097,-1.57118,-1.00164,1.99582,-0.33613 +0.38804,1.03189,-1.27143,-1.57045,-1.00191,1.99586,-0.33616 +0.39067,1.03184,-1.27189,-1.56974,-1.00218,1.99590,-0.33620 +0.39329,1.03179,-1.27234,-1.56904,-1.00245,1.99594,-0.33624 +0.39591,1.03174,-1.27278,-1.56835,-1.00271,1.99597,-0.33627 +0.39853,1.03169,-1.27321,-1.56767,-1.00297,1.99601,-0.33631 +0.40115,1.03164,-1.27364,-1.56700,-1.00323,1.99604,-0.33634 +0.40378,1.03159,-1.27406,-1.56635,-1.00348,1.99608,-0.33638 +0.40640,1.03154,-1.27447,-1.56570,-1.00373,1.99612,-0.33641 +0.40902,1.03150,-1.27487,-1.56506,-1.00397,1.99615,-0.33645 +0.41164,1.03145,-1.27527,-1.56444,-1.00421,1.99619,-0.33648 +0.41426,1.03140,-1.27566,-1.56382,-1.00445,1.99622,-0.33652 +0.41689,1.03135,-1.27605,-1.56322,-1.00468,1.99625,-0.33655 +0.41951,1.03131,-1.27642,-1.56262,-1.00491,1.99629,-0.33658 +0.42213,1.03126,-1.27680,-1.56204,-1.00514,1.99632,-0.33662 +0.42475,1.03122,-1.27716,-1.56146,-1.00537,1.99636,-0.33665 +0.42737,1.03119,-1.27726,-1.56132,-1.00542,1.99637,-0.33667 +0.42999,1.03100,-1.27784,-1.56049,-1.00572,1.99652,-0.33680 +0.43262,1.03081,-1.27842,-1.55968,-1.00601,1.99666,-0.33694 +0.43524,1.03062,-1.27898,-1.55887,-1.00630,1.99680,-0.33707 +0.43786,1.03044,-1.27954,-1.55808,-1.00659,1.99694,-0.33720 +0.44048,1.03026,-1.28008,-1.55731,-1.00687,1.99707,-0.33733 +0.44310,1.03008,-1.28062,-1.55654,-1.00715,1.99721,-0.33745 +0.44573,1.02990,-1.28115,-1.55579,-1.00742,1.99734,-0.33758 +0.44835,1.02973,-1.28167,-1.55505,-1.00769,1.99747,-0.33770 +0.45097,1.02956,-1.28218,-1.55432,-1.00796,1.99760,-0.33782 +0.45359,1.02939,-1.28268,-1.55360,-1.00822,1.99772,-0.33794 +0.45621,1.02922,-1.28317,-1.55290,-1.00848,1.99785,-0.33806 +0.45884,1.02906,-1.28366,-1.55220,-1.00874,1.99797,-0.33818 +0.46146,1.02890,-1.28413,-1.55152,-1.00899,1.99809,-0.33829 +0.46408,1.02874,-1.28460,-1.55085,-1.00924,1.99821,-0.33840 +0.46670,1.02858,-1.28506,-1.55019,-1.00948,1.99833,-0.33852 +0.46932,1.02843,-1.28551,-1.54954,-1.00973,1.99844,-0.33863 +0.47195,1.02828,-1.28596,-1.54890,-1.00997,1.99856,-0.33873 +0.47457,1.02813,-1.28639,-1.54827,-1.01020,1.99867,-0.33884 +0.47719,1.02798,-1.28682,-1.54765,-1.01044,1.99878,-0.33895 +0.47981,1.02783,-1.28725,-1.54704,-1.01067,1.99889,-0.33905 +0.48243,1.02769,-1.28766,-1.54644,-1.01089,1.99900,-0.33915 +0.48506,1.02755,-1.28807,-1.54585,-1.01112,1.99911,-0.33926 +0.48768,1.02741,-1.28847,-1.54527,-1.01134,1.99921,-0.33936 +0.49030,1.02727,-1.28887,-1.54470,-1.01155,1.99932,-0.33945 +0.49292,1.02714,-1.28925,-1.54414,-1.01177,1.99942,-0.33955 +0.49554,1.02710,-1.28935,-1.54400,-1.01182,1.99945,-0.33958 +0.49816,1.02682,-1.28993,-1.54323,-1.01209,1.99966,-0.33977 +0.50079,1.02655,-1.29050,-1.54246,-1.01236,1.99986,-0.33997 +0.50341,1.02628,-1.29106,-1.54171,-1.01263,2.00006,-0.34016 +0.50603,1.02602,-1.29161,-1.54097,-1.01290,2.00026,-0.34034 +0.50865,1.02576,-1.29216,-1.54024,-1.01316,2.00045,-0.34053 +0.51127,1.02551,-1.29269,-1.53952,-1.01342,2.00064,-0.34071 +0.51390,1.02526,-1.29321,-1.53881,-1.01367,2.00083,-0.34088 +0.51652,1.02501,-1.29373,-1.53812,-1.01392,2.00102,-0.34106 +0.51914,1.02477,-1.29423,-1.53743,-1.01417,2.00120,-0.34123 +0.52176,1.02453,-1.29473,-1.53676,-1.01441,2.00138,-0.34140 +0.52438,1.02430,-1.29522,-1.53610,-1.01466,2.00156,-0.34157 +0.52701,1.02407,-1.29570,-1.53545,-1.01489,2.00173,-0.34173 +0.52963,1.02384,-1.29618,-1.53481,-1.01513,2.00190,-0.34190 +0.53225,1.02361,-1.29664,-1.53417,-1.01536,2.00207,-0.34206 +0.53487,1.02339,-1.29710,-1.53355,-1.01559,2.00224,-0.34222 +0.53749,1.02318,-1.29755,-1.53294,-1.01582,2.00240,-0.34237 +0.54012,1.02296,-1.29799,-1.53234,-1.01604,2.00257,-0.34252 +0.54274,1.02275,-1.29842,-1.53175,-1.01626,2.00273,-0.34268 +0.54536,1.02254,-1.29885,-1.53117,-1.01648,2.00288,-0.34282 +0.54798,1.02234,-1.29927,-1.53059,-1.01669,2.00304,-0.34297 +0.55060,1.02214,-1.29968,-1.53003,-1.01690,2.00319,-0.34312 +0.55322,1.02194,-1.30009,-1.52947,-1.01711,2.00334,-0.34326 +0.55585,1.02174,-1.30049,-1.52893,-1.01732,2.00349,-0.34340 +0.55847,1.02158,-1.30082,-1.52848,-1.01749,2.00361,-0.34352 +0.56109,1.02126,-1.30136,-1.52779,-1.01773,2.00385,-0.34374 +0.56371,1.02095,-1.30189,-1.52710,-1.01797,2.00409,-0.34397 +0.56633,1.02064,-1.30242,-1.52643,-1.01821,2.00432,-0.34419 +0.56896,1.02034,-1.30293,-1.52577,-1.01845,2.00455,-0.34440 +0.57158,1.02004,-1.30344,-1.52512,-1.01868,2.00478,-0.34462 +0.57420,1.01975,-1.30393,-1.52448,-1.01891,2.00500,-0.34482 +0.57682,1.01946,-1.30442,-1.52385,-1.01914,2.00521,-0.34503 +0.57944,1.01918,-1.30491,-1.52323,-1.01936,2.00543,-0.34523 +0.58207,1.01890,-1.30538,-1.52261,-1.01958,2.00564,-0.34543 +0.58469,1.01862,-1.30584,-1.52201,-1.01980,2.00585,-0.34563 +0.58731,1.01835,-1.30630,-1.52142,-1.02001,2.00605,-0.34582 +0.58993,1.01809,-1.30675,-1.52084,-1.02023,2.00625,-0.34602 +0.59255,1.01782,-1.30719,-1.52026,-1.02044,2.00645,-0.34620 +0.59518,1.01757,-1.30763,-1.51970,-1.02064,2.00665,-0.34639 +0.59780,1.01731,-1.30805,-1.51914,-1.02085,2.00684,-0.34657 +0.60042,1.01706,-1.30847,-1.51860,-1.02105,2.00703,-0.34675 +0.60304,1.01682,-1.30889,-1.51806,-1.02125,2.00721,-0.34693 +0.60566,1.01658,-1.30929,-1.51753,-1.02145,2.00740,-0.34710 +0.60829,1.01634,-1.30969,-1.51701,-1.02164,2.00758,-0.34727 +0.61091,1.01615,-1.31000,-1.51662,-1.02178,2.00772,-0.34741 +0.61353,1.01567,-1.31067,-1.51582,-1.02205,2.00808,-0.34775 +0.61615,1.01519,-1.31133,-1.51504,-1.02231,2.00844,-0.34809 +0.61877,1.01473,-1.31198,-1.51427,-1.02257,2.00879,-0.34842 +0.62139,1.01427,-1.31262,-1.51351,-1.02282,2.00914,-0.34875 +0.62402,1.01382,-1.31325,-1.51276,-1.02308,2.00948,-0.34907 +0.62664,1.01338,-1.31386,-1.51203,-1.02333,2.00981,-0.34939 +0.62926,1.01294,-1.31447,-1.51130,-1.02357,2.01014,-0.34970 +0.63188,1.01251,-1.31507,-1.51059,-1.02382,2.01046,-0.35001 +0.63450,1.01209,-1.31566,-1.50989,-1.02406,2.01078,-0.35031 +0.63713,1.01168,-1.31623,-1.50919,-1.02430,2.01109,-0.35061 +0.63975,1.01127,-1.31680,-1.50851,-1.02453,2.01140,-0.35090 +0.64237,1.01087,-1.31736,-1.50784,-1.02477,2.01170,-0.35119 +0.64499,1.01048,-1.31791,-1.50718,-1.02500,2.01200,-0.35147 +0.64761,1.01009,-1.31845,-1.50653,-1.02522,2.01229,-0.35175 +0.65024,1.00971,-1.31898,-1.50589,-1.02545,2.01258,-0.35202 +0.65286,1.00934,-1.31950,-1.50526,-1.02567,2.01286,-0.35229 +0.65548,1.00897,-1.32001,-1.50464,-1.02589,2.01314,-0.35256 +0.65810,1.00860,-1.32051,-1.50403,-1.02611,2.01341,-0.35282 +0.66072,1.00825,-1.32101,-1.50343,-1.02632,2.01368,-0.35308 +0.66335,1.00790,-1.32149,-1.50284,-1.02653,2.01395,-0.35333 +0.66597,1.00755,-1.32197,-1.50226,-1.02674,2.01421,-0.35358 +0.66859,1.00721,-1.32244,-1.50169,-1.02695,2.01447,-0.35382 +0.67121,1.00688,-1.32291,-1.50112,-1.02715,2.01472,-0.35406 +0.67383,1.00655,-1.32336,-1.50057,-1.02735,2.01497,-0.35430 +0.67646,1.00623,-1.32381,-1.50002,-1.02755,2.01521,-0.35454 +0.67908,1.00591,-1.32425,-1.49948,-1.02775,2.01545,-0.35477 +0.68170,1.00560,-1.32468,-1.49895,-1.02794,2.01569,-0.35499 +0.68432,1.00529,-1.32510,-1.49843,-1.02814,2.01592,-0.35522 +0.68694,1.00499,-1.32552,-1.49792,-1.02832,2.01615,-0.35544 +0.68956,1.00469,-1.32593,-1.49741,-1.02851,2.01638,-0.35565 +0.69219,1.00440,-1.32634,-1.49692,-1.02870,2.01660,-0.35586 +0.69481,1.00411,-1.32673,-1.49643,-1.02888,2.01682,-0.35607 +0.69743,1.00383,-1.32712,-1.49594,-1.02906,2.01703,-0.35628 +0.70005,1.00371,-1.32727,-1.49578,-1.02912,2.01713,-0.35637 +0.70267,1.00304,-1.32798,-1.49505,-1.02934,2.01763,-0.35685 +0.70530,1.00239,-1.32867,-1.49434,-1.02956,2.01812,-0.35732 +0.70792,1.00175,-1.32935,-1.49364,-1.02977,2.01860,-0.35778 +0.71054,1.00112,-1.33002,-1.49295,-1.02999,2.01907,-0.35823 +0.71316,1.00050,-1.33068,-1.49227,-1.03020,2.01954,-0.35868 +0.71578,0.99989,-1.33133,-1.49160,-1.03041,2.02000,-0.35912 +0.71841,0.99929,-1.33196,-1.49093,-1.03062,2.02045,-0.35955 +0.72103,0.99870,-1.33259,-1.49028,-1.03083,2.02089,-0.35998 +0.72365,0.99812,-1.33320,-1.48964,-1.03103,2.02132,-0.36039 +0.72627,0.99755,-1.33381,-1.48901,-1.03123,2.02175,-0.36081 +0.72889,0.99699,-1.33440,-1.48839,-1.03144,2.02217,-0.36121 +0.73152,0.99644,-1.33499,-1.48778,-1.03163,2.02259,-0.36161 +0.73414,0.99590,-1.33556,-1.48717,-1.03183,2.02299,-0.36200 +0.73676,0.99537,-1.33613,-1.48658,-1.03203,2.02339,-0.36239 +0.73938,0.99485,-1.33669,-1.48599,-1.03222,2.02378,-0.36276 +0.74200,0.99434,-1.33723,-1.48542,-1.03241,2.02417,-0.36314 +0.74463,0.99383,-1.33777,-1.48485,-1.03260,2.02455,-0.36350 +0.74725,0.99334,-1.33830,-1.48429,-1.03279,2.02492,-0.36386 +0.74987,0.99285,-1.33882,-1.48374,-1.03297,2.02529,-0.36422 +0.75249,0.99237,-1.33933,-1.48320,-1.03315,2.02565,-0.36457 +0.75511,0.99190,-1.33983,-1.48266,-1.03334,2.02601,-0.36491 +0.75773,0.99144,-1.34032,-1.48214,-1.03351,2.02636,-0.36525 +0.76036,0.99098,-1.34081,-1.48162,-1.03369,2.02670,-0.36558 +0.76298,0.99054,-1.34129,-1.48111,-1.03387,2.02704,-0.36591 +0.76560,0.99010,-1.34176,-1.48060,-1.03404,2.02737,-0.36623 +0.76822,0.98966,-1.34222,-1.48011,-1.03421,2.02770,-0.36655 +0.77084,0.98924,-1.34267,-1.47962,-1.03438,2.02802,-0.36686 +0.77347,0.98882,-1.34312,-1.47914,-1.03455,2.02833,-0.36716 +0.77609,0.98841,-1.34356,-1.47867,-1.03472,2.02864,-0.36747 +0.77871,0.98800,-1.34399,-1.47820,-1.03488,2.02895,-0.36776 +0.78133,0.98761,-1.34441,-1.47774,-1.03505,2.02925,-0.36805 +0.78395,0.98722,-1.34483,-1.47729,-1.03521,2.02954,-0.36834 +0.78658,0.98683,-1.34524,-1.47685,-1.03537,2.02984,-0.36862 +0.78920,0.98646,-1.34564,-1.47641,-1.03552,2.03012,-0.36890 +0.79182,0.98608,-1.34604,-1.47598,-1.03568,2.03040,-0.36917 +0.79444,0.98572,-1.34643,-1.47555,-1.03583,2.03068,-0.36944 +0.79706,0.98536,-1.34681,-1.47513,-1.03598,2.03095,-0.36971 +0.79969,0.98501,-1.34719,-1.47472,-1.03614,2.03122,-0.36997 +0.80231,0.98466,-1.34756,-1.47431,-1.03628,2.03148,-0.37022 +0.80493,0.98442,-1.34781,-1.47405,-1.03638,2.03166,-0.37040 +0.80755,0.98375,-1.34843,-1.47346,-1.03655,2.03216,-0.37089 +0.81017,0.98309,-1.34905,-1.47288,-1.03673,2.03266,-0.37137 +0.81279,0.98244,-1.34966,-1.47231,-1.03690,2.03314,-0.37184 +0.81542,0.98181,-1.35025,-1.47175,-1.03707,2.03362,-0.37231 +0.81804,0.98118,-1.35084,-1.47119,-1.03725,2.03409,-0.37277 +0.82066,0.98057,-1.35142,-1.47064,-1.03741,2.03455,-0.37322 +0.82328,0.97996,-1.35198,-1.47010,-1.03758,2.03500,-0.37366 +0.82590,0.97937,-1.35254,-1.46957,-1.03775,2.03545,-0.37410 +0.82853,0.97879,-1.35309,-1.46905,-1.03792,2.03588,-0.37453 +0.83115,0.97821,-1.35363,-1.46853,-1.03808,2.03632,-0.37495 +0.83377,0.97765,-1.35416,-1.46802,-1.03824,2.03674,-0.37536 +0.83639,0.97709,-1.35468,-1.46752,-1.03840,2.03715,-0.37577 +0.83901,0.97655,-1.35519,-1.46702,-1.03856,2.03756,-0.37617 +0.84164,0.97602,-1.35570,-1.46654,-1.03872,2.03796,-0.37656 +0.84426,0.97549,-1.35619,-1.46606,-1.03888,2.03836,-0.37695 +0.84688,0.97497,-1.35668,-1.46559,-1.03903,2.03875,-0.37733 +0.84950,0.97447,-1.35716,-1.46512,-1.03919,2.03913,-0.37771 +0.85212,0.97397,-1.35763,-1.46466,-1.03934,2.03950,-0.37808 +0.85475,0.97348,-1.35809,-1.46421,-1.03949,2.03987,-0.37844 +0.85737,0.97299,-1.35855,-1.46376,-1.03964,2.04023,-0.37880 +0.85999,0.97252,-1.35899,-1.46332,-1.03979,2.04059,-0.37915 +0.86261,0.97205,-1.35943,-1.46289,-1.03994,2.04094,-0.37949 +0.86523,0.97160,-1.35987,-1.46247,-1.04008,2.04129,-0.37983 +0.86786,0.97115,-1.36029,-1.46205,-1.04023,2.04162,-0.38017 +0.87048,0.97070,-1.36071,-1.46163,-1.04037,2.04196,-0.38050 +0.87310,0.97027,-1.36112,-1.46123,-1.04051,2.04229,-0.38082 +0.87572,0.96984,-1.36153,-1.46083,-1.04065,2.04261,-0.38114 +0.87834,0.96942,-1.36193,-1.46043,-1.04079,2.04292,-0.38145 +0.88096,0.96901,-1.36232,-1.46004,-1.04092,2.04323,-0.38176 +0.88359,0.96860,-1.36270,-1.45966,-1.04106,2.04354,-0.38206 +0.88621,0.96820,-1.36308,-1.45928,-1.04119,2.04384,-0.38236 +0.88883,0.96781,-1.36345,-1.45891,-1.04133,2.04414,-0.38265 +0.89145,0.96742,-1.36382,-1.45854,-1.04146,2.04443,-0.38294 +0.89407,0.96704,-1.36418,-1.45818,-1.04159,2.04471,-0.38322 +0.89670,0.96667,-1.36453,-1.45782,-1.04172,2.04500,-0.38350 +0.89932,0.96636,-1.36483,-1.45753,-1.04182,2.04523,-0.38374 +0.90194,0.96579,-1.36534,-1.45706,-1.04197,2.04566,-0.38416 +0.90456,0.96523,-1.36585,-1.45659,-1.04212,2.04608,-0.38457 +0.90718,0.96468,-1.36635,-1.45613,-1.04227,2.04649,-0.38498 +0.90981,0.96414,-1.36684,-1.45567,-1.04241,2.04689,-0.38538 +0.91243,0.96361,-1.36732,-1.45523,-1.04256,2.04729,-0.38578 +0.91505,0.96309,-1.36779,-1.45479,-1.04270,2.04768,-0.38617 +0.91767,0.96258,-1.36826,-1.45435,-1.04284,2.04806,-0.38655 +0.92029,0.96207,-1.36872,-1.45392,-1.04298,2.04844,-0.38692 +0.92292,0.96158,-1.36917,-1.45350,-1.04312,2.04881,-0.38729 +0.92554,0.96109,-1.36961,-1.45309,-1.04326,2.04917,-0.38765 +0.92816,0.96061,-1.37004,-1.45268,-1.04339,2.04953,-0.38801 +0.93078,0.96014,-1.37047,-1.45227,-1.04353,2.04988,-0.38836 +0.93340,0.95968,-1.37089,-1.45188,-1.04366,2.05023,-0.38871 +0.93603,0.95923,-1.37131,-1.45148,-1.04380,2.05057,-0.38905 +0.93865,0.95878,-1.37171,-1.45110,-1.04393,2.05090,-0.38938 +0.94127,0.95834,-1.37211,-1.45072,-1.04406,2.05123,-0.38971 +0.94389,0.95791,-1.37251,-1.45034,-1.04419,2.05156,-0.39003 +0.94651,0.95749,-1.37289,-1.44997,-1.04432,2.05187,-0.39035 +0.94913,0.95707,-1.37327,-1.44961,-1.04445,2.05219,-0.39066 +0.95176,0.95667,-1.37365,-1.44925,-1.04457,2.05249,-0.39097 +0.95438,0.95626,-1.37402,-1.44890,-1.04470,2.05280,-0.39127 +0.95700,0.95587,-1.37438,-1.44855,-1.04482,2.05309,-0.39157 +0.95962,0.95548,-1.37473,-1.44821,-1.04494,2.05338,-0.39186 +0.96224,0.95510,-1.37508,-1.44787,-1.04506,2.05367,-0.39215 +0.96487,0.95472,-1.37543,-1.44754,-1.04518,2.05395,-0.39243 +0.96749,0.95455,-1.37558,-1.44739,-1.04523,2.05409,-0.39257 +0.97011,0.95391,-1.37612,-1.44694,-1.04536,2.05456,-0.39304 +0.97273,0.95329,-1.37665,-1.44649,-1.04550,2.05502,-0.39350 +0.97535,0.95268,-1.37717,-1.44605,-1.04563,2.05547,-0.39396 +0.97798,0.95208,-1.37768,-1.44561,-1.04576,2.05592,-0.39441 +0.98060,0.95149,-1.37818,-1.44518,-1.04589,2.05636,-0.39485 +0.98322,0.95092,-1.37867,-1.44476,-1.04602,2.05679,-0.39529 +0.98584,0.95035,-1.37916,-1.44434,-1.04615,2.05721,-0.39571 +0.98846,0.94979,-1.37964,-1.44393,-1.04628,2.05763,-0.39613 +0.99109,0.94924,-1.38010,-1.44352,-1.04641,2.05804,-0.39655 +0.99371,0.94870,-1.38057,-1.44312,-1.04653,2.05844,-0.39695 +0.99633,0.94817,-1.38102,-1.44273,-1.04666,2.05884,-0.39735 +0.99895,0.94765,-1.38147,-1.44234,-1.04678,2.05922,-0.39774 +1.00157,0.94714,-1.38190,-1.44196,-1.04691,2.05961,-0.39813 +1.00420,0.94663,-1.38234,-1.44158,-1.04703,2.05998,-0.39851 +1.00682,0.94614,-1.38276,-1.44121,-1.04715,2.06035,-0.39888 +1.00944,0.94565,-1.38318,-1.44084,-1.04727,2.06071,-0.39925 +1.01206,0.94518,-1.38359,-1.44048,-1.04739,2.06107,-0.39961 +1.01468,0.94471,-1.38399,-1.44012,-1.04751,2.06142,-0.39997 +1.01730,0.94424,-1.38439,-1.43977,-1.04763,2.06177,-0.40032 +1.01993,0.94379,-1.38478,-1.43943,-1.04774,2.06210,-0.40066 +1.02255,0.94335,-1.38516,-1.43909,-1.04786,2.06244,-0.40100 +1.02517,0.94291,-1.38554,-1.43875,-1.04797,2.06276,-0.40133 +1.02779,0.94248,-1.38591,-1.43842,-1.04809,2.06308,-0.40166 +1.03041,0.94206,-1.38627,-1.43809,-1.04820,2.06340,-0.40198 +1.03304,0.94164,-1.38663,-1.43777,-1.04831,2.06371,-0.40229 +1.03566,0.94123,-1.38698,-1.43745,-1.04842,2.06402,-0.40260 +1.03828,0.94083,-1.38733,-1.43714,-1.04853,2.06432,-0.40291 +1.04090,0.94044,-1.38767,-1.43683,-1.04864,2.06461,-0.40321 +1.04352,0.94005,-1.38800,-1.43653,-1.04875,2.06490,-0.40350 +1.04615,0.93967,-1.38833,-1.43623,-1.04885,2.06519,-0.40380 +1.04877,0.93956,-1.38842,-1.43616,-1.04888,2.06526,-0.40387 +1.05139,0.93893,-1.38895,-1.43573,-1.04900,2.06573,-0.40435 +1.05401,0.93831,-1.38946,-1.43531,-1.04912,2.06619,-0.40482 +1.05663,0.93770,-1.38997,-1.43490,-1.04925,2.06665,-0.40528 +1.05926,0.93710,-1.39047,-1.43449,-1.04937,2.06709,-0.40574 +1.06188,0.93651,-1.39096,-1.43408,-1.04949,2.06753,-0.40619 +1.06450,0.93593,-1.39145,-1.43369,-1.04961,2.06796,-0.40663 +1.06712,0.93536,-1.39192,-1.43329,-1.04973,2.06838,-0.40706 +1.06974,0.93480,-1.39239,-1.43291,-1.04985,2.06880,-0.40748 +1.07236,0.93425,-1.39285,-1.43253,-1.04997,2.06920,-0.40790 +1.07499,0.93371,-1.39330,-1.43215,-1.05009,2.06960,-0.40831 +1.07761,0.93318,-1.39375,-1.43178,-1.05021,2.07000,-0.40872 +1.08023,0.93266,-1.39418,-1.43141,-1.05032,2.07039,-0.40911 +1.08285,0.93215,-1.39461,-1.43105,-1.05044,2.07077,-0.40951 +1.08547,0.93164,-1.39503,-1.43070,-1.05055,2.07114,-0.40989 +1.08810,0.93115,-1.39545,-1.43035,-1.05067,2.07151,-0.41027 +1.09072,0.93066,-1.39586,-1.43000,-1.05078,2.07187,-0.41064 +1.09334,0.93019,-1.39626,-1.42966,-1.05089,2.07222,-0.41100 +1.09596,0.92972,-1.39666,-1.42933,-1.05100,2.07257,-0.41136 +1.09858,0.92926,-1.39704,-1.42900,-1.05112,2.07291,-0.41172 +1.10121,0.92880,-1.39743,-1.42867,-1.05122,2.07325,-0.41206 +1.10383,0.92836,-1.39780,-1.42835,-1.05133,2.07358,-0.41241 +1.10645,0.92792,-1.39817,-1.42803,-1.05144,2.07391,-0.41274 +1.10907,0.92749,-1.39853,-1.42772,-1.05155,2.07423,-0.41307 +1.11169,0.92707,-1.39889,-1.42741,-1.05165,2.07454,-0.41340 +1.11432,0.92665,-1.39924,-1.42711,-1.05176,2.07485,-0.41372 +1.11694,0.92625,-1.39959,-1.42681,-1.05186,2.07515,-0.41403 +1.11956,0.92584,-1.39992,-1.42652,-1.05197,2.07545,-0.41434 +1.12218,0.92545,-1.40026,-1.42623,-1.05207,2.07575,-0.41464 +1.12480,0.92506,-1.40059,-1.42594,-1.05217,2.07603,-0.41494 +1.12743,0.92468,-1.40091,-1.42566,-1.05227,2.07632,-0.41524 +1.13005,0.92463,-1.40095,-1.42562,-1.05228,2.07635,-0.41527 +1.13267,0.92416,-1.40135,-1.42529,-1.05239,2.07671,-0.41564 +1.13529,0.92369,-1.40174,-1.42497,-1.05250,2.07705,-0.41600 +1.13791,0.92323,-1.40212,-1.42465,-1.05260,2.07739,-0.41635 +1.14053,0.92278,-1.40250,-1.42433,-1.05271,2.07773,-0.41670 +1.14316,0.92233,-1.40287,-1.42402,-1.05281,2.07806,-0.41704 +1.14578,0.92190,-1.40323,-1.42372,-1.05292,2.07838,-0.41738 +1.14840,0.92147,-1.40359,-1.42342,-1.05302,2.07870,-0.41771 +1.15102,0.92105,-1.40394,-1.42312,-1.05312,2.07901,-0.41803 +1.15364,0.92063,-1.40429,-1.42282,-1.05322,2.07932,-0.41835 +1.15627,0.92023,-1.40463,-1.42253,-1.05332,2.07962,-0.41867 +1.15889,0.91983,-1.40497,-1.42225,-1.05342,2.07992,-0.41898 +1.16151,0.91944,-1.40530,-1.42197,-1.05352,2.08021,-0.41928 +1.16413,0.91905,-1.40562,-1.42169,-1.05362,2.08050,-0.41958 +1.16675,0.91866,-1.40595,-1.42141,-1.05371,2.08079,-0.41988 +1.16938,0.91815,-1.40635,-1.42111,-1.05380,2.08117,-0.42028 +1.17200,0.91764,-1.40674,-1.42081,-1.05390,2.08154,-0.42067 +1.17462,0.91715,-1.40713,-1.42051,-1.05399,2.08190,-0.42105 +1.17724,0.91667,-1.40751,-1.42022,-1.05408,2.08226,-0.42142 +1.17986,0.91619,-1.40789,-1.41994,-1.05417,2.08261,-0.42179 +1.18249,0.91572,-1.40826,-1.41965,-1.05426,2.08296,-0.42215 +1.18511,0.91526,-1.40862,-1.41937,-1.05435,2.08330,-0.42251 +1.18773,0.91481,-1.40898,-1.41910,-1.05444,2.08363,-0.42285 +1.19035,0.91437,-1.40933,-1.41882,-1.05453,2.08396,-0.42320 +1.19297,0.91393,-1.40967,-1.41855,-1.05462,2.08428,-0.42354 +1.19560,0.91351,-1.41001,-1.41829,-1.05470,2.08460,-0.42387 +1.19822,0.91308,-1.41035,-1.41803,-1.05479,2.08491,-0.42420 +1.20084,0.91267,-1.41067,-1.41777,-1.05488,2.08521,-0.42452 +1.20346,0.91227,-1.41100,-1.41752,-1.05496,2.08551,-0.42483 +1.20608,0.91187,-1.41131,-1.41727,-1.05505,2.08581,-0.42514 +1.20870,0.91147,-1.41163,-1.41702,-1.05513,2.08610,-0.42545 +1.21133,0.91107,-1.41194,-1.41677,-1.05521,2.08640,-0.42576 +1.21395,0.91055,-1.41234,-1.41649,-1.05530,2.08678,-0.42617 +1.21657,0.91003,-1.41274,-1.41621,-1.05538,2.08717,-0.42657 +1.21919,0.90952,-1.41312,-1.41593,-1.05546,2.08754,-0.42697 +1.22181,0.90902,-1.41351,-1.41566,-1.05554,2.08791,-0.42735 +1.22444,0.90853,-1.41388,-1.41539,-1.05562,2.08827,-0.42774 +1.22706,0.90805,-1.41425,-1.41512,-1.05571,2.08862,-0.42811 +1.22968,0.90757,-1.41461,-1.41486,-1.05579,2.08897,-0.42848 +1.23230,0.90711,-1.41497,-1.41460,-1.05587,2.08932,-0.42884 +1.23492,0.90665,-1.41532,-1.41435,-1.05595,2.08965,-0.42920 +1.23755,0.90620,-1.41566,-1.41409,-1.05603,2.08998,-0.42955 +1.24017,0.90576,-1.41600,-1.41385,-1.05610,2.09031,-0.42989 +1.24279,0.90533,-1.41633,-1.41360,-1.05618,2.09063,-0.43023 +1.24541,0.90490,-1.41666,-1.41336,-1.05626,2.09094,-0.43057 +1.24803,0.90448,-1.41698,-1.41312,-1.05634,2.09125,-0.43089 +1.25066,0.90407,-1.41730,-1.41289,-1.05642,2.09156,-0.43122 +1.25328,0.90366,-1.41761,-1.41266,-1.05649,2.09186,-0.43153 +1.25590,0.90327,-1.41792,-1.41243,-1.05657,2.09215,-0.43184 +1.25852,0.90288,-1.41822,-1.41220,-1.05664,2.09244,-0.43215 +1.26114,0.90262,-1.41841,-1.41207,-1.05669,2.09263,-0.43235 +1.26377,0.90198,-1.41884,-1.41184,-1.05673,2.09310,-0.43285 +1.26639,0.90134,-1.41926,-1.41162,-1.05678,2.09356,-0.43334 +1.26901,0.90072,-1.41967,-1.41140,-1.05682,2.09401,-0.43383 +1.27163,0.90011,-1.42008,-1.41118,-1.05687,2.09446,-0.43431 +1.27425,0.89951,-1.42048,-1.41097,-1.05692,2.09490,-0.43477 +1.27687,0.89892,-1.42087,-1.41075,-1.05696,2.09533,-0.43523 +1.27950,0.89835,-1.42126,-1.41054,-1.05701,2.09575,-0.43569 +1.28212,0.89778,-1.42164,-1.41034,-1.05706,2.09617,-0.43613 +1.28474,0.89722,-1.42201,-1.41013,-1.05711,2.09658,-0.43657 +1.28736,0.89667,-1.42238,-1.40993,-1.05716,2.09698,-0.43700 +1.28998,0.89613,-1.42274,-1.40973,-1.05721,2.09737,-0.43742 +1.29261,0.89561,-1.42310,-1.40953,-1.05726,2.09776,-0.43783 +1.29523,0.89509,-1.42345,-1.40934,-1.05730,2.09814,-0.43824 +1.29785,0.89458,-1.42379,-1.40914,-1.05735,2.09851,-0.43864 +1.30047,0.89408,-1.42413,-1.40895,-1.05740,2.09888,-0.43904 +1.30309,0.89358,-1.42446,-1.40876,-1.05745,2.09924,-0.43942 +1.30572,0.89310,-1.42479,-1.40858,-1.05750,2.09960,-0.43981 +1.30834,0.89262,-1.42511,-1.40839,-1.05755,2.09995,-0.44018 +1.31096,0.89216,-1.42542,-1.40821,-1.05760,2.10029,-0.44055 +1.31358,0.89170,-1.42573,-1.40803,-1.05765,2.10062,-0.44091 +1.31620,0.89125,-1.42604,-1.40786,-1.05770,2.10096,-0.44127 +1.31883,0.89080,-1.42634,-1.40768,-1.05775,2.10128,-0.44162 +1.32145,0.89037,-1.42663,-1.40751,-1.05780,2.10160,-0.44196 +1.32407,0.88994,-1.42692,-1.40734,-1.05785,2.10191,-0.44230 +1.32669,0.88952,-1.42721,-1.40717,-1.05790,2.10222,-0.44263 +1.32931,0.88911,-1.42749,-1.40701,-1.05795,2.10252,-0.44296 +1.33193,0.88870,-1.42777,-1.40684,-1.05800,2.10282,-0.44328 +1.33456,0.88831,-1.42804,-1.40668,-1.05805,2.10311,-0.44360 +1.33718,0.88806,-1.42820,-1.40658,-1.05808,2.10329,-0.44379 +1.33980,0.88760,-1.42850,-1.40643,-1.05812,2.10363,-0.44415 +1.34242,0.88715,-1.42879,-1.40628,-1.05816,2.10396,-0.44451 +1.34504,0.88670,-1.42908,-1.40613,-1.05820,2.10429,-0.44487 +1.34767,0.88626,-1.42937,-1.40599,-1.05824,2.10461,-0.44522 +1.35029,0.88583,-1.42964,-1.40584,-1.05827,2.10493,-0.44556 +1.35291,0.88541,-1.42992,-1.40570,-1.05831,2.10524,-0.44589 +1.35553,0.88499,-1.43019,-1.40556,-1.05835,2.10554,-0.44622 +1.35815,0.88458,-1.43045,-1.40542,-1.05839,2.10584,-0.44655 +1.36078,0.88418,-1.43071,-1.40528,-1.05843,2.10613,-0.44687 +1.36340,0.88390,-1.43090,-1.40518,-1.05846,2.10634,-0.44710 +1.36602,0.88341,-1.43118,-1.40508,-1.05847,2.10670,-0.44748 +1.36864,0.88293,-1.43146,-1.40498,-1.05849,2.10705,-0.44786 +1.37126,0.88246,-1.43174,-1.40487,-1.05851,2.10739,-0.44824 +1.37389,0.88200,-1.43201,-1.40477,-1.05852,2.10773,-0.44860 +1.37651,0.88154,-1.43228,-1.40467,-1.05854,2.10806,-0.44897 +1.37913,0.88110,-1.43254,-1.40457,-1.05856,2.10839,-0.44932 +1.38175,0.88066,-1.43279,-1.40447,-1.05858,2.10871,-0.44967 +1.38437,0.88023,-1.43305,-1.40437,-1.05860,2.10902,-0.45001 +1.38700,0.87981,-1.43330,-1.40428,-1.05862,2.10933,-0.45035 +1.38962,0.87939,-1.43354,-1.40418,-1.05864,2.10963,-0.45068 +1.39224,0.87898,-1.43378,-1.40409,-1.05866,2.10993,-0.45101 +1.39486,0.87858,-1.43402,-1.40399,-1.05868,2.11022,-0.45133 +1.39748,0.87845,-1.43409,-1.40397,-1.05868,2.11032,-0.45143 +1.40010,0.87796,-1.43436,-1.40391,-1.05868,2.11067,-0.45182 +1.40273,0.87748,-1.43462,-1.40384,-1.05868,2.11102,-0.45221 +1.40535,0.87701,-1.43487,-1.40378,-1.05868,2.11137,-0.45258 +1.40797,0.87655,-1.43512,-1.40372,-1.05868,2.11171,-0.45295 +1.41059,0.87609,-1.43537,-1.40366,-1.05868,2.11204,-0.45332 +1.41321,0.87564,-1.43561,-1.40360,-1.05868,2.11236,-0.45368 +1.41584,0.87520,-1.43585,-1.40354,-1.05868,2.11268,-0.45403 +1.41846,0.87477,-1.43608,-1.40348,-1.05869,2.11300,-0.45437 +1.42108,0.87435,-1.43631,-1.40342,-1.05869,2.11331,-0.45471 +1.42370,0.87393,-1.43654,-1.40336,-1.05869,2.11361,-0.45505 +1.42632,0.87352,-1.43676,-1.40330,-1.05870,2.11391,-0.45538 +1.42895,0.87312,-1.43698,-1.40324,-1.05870,2.11420,-0.45570 +1.43157,0.87295,-1.43707,-1.40322,-1.05870,2.11433,-0.45583 +1.43419,0.87246,-1.43732,-1.40319,-1.05869,2.11468,-0.45623 +1.43681,0.87198,-1.43756,-1.40317,-1.05867,2.11503,-0.45661 +1.43943,0.87150,-1.43780,-1.40314,-1.05866,2.11538,-0.45699 +1.44206,0.87104,-1.43803,-1.40311,-1.05864,2.11571,-0.45736 +1.44468,0.87058,-1.43826,-1.40308,-1.05863,2.11604,-0.45773 +1.44730,0.87014,-1.43849,-1.40305,-1.05862,2.11637,-0.45809 +1.44992,0.86970,-1.43871,-1.40302,-1.05861,2.11669,-0.45844 +1.45254,0.86926,-1.43893,-1.40299,-1.05860,2.11700,-0.45879 +1.45517,0.86884,-1.43915,-1.40296,-1.05859,2.11731,-0.45913 +1.45779,0.86842,-1.43936,-1.40293,-1.05858,2.11761,-0.45947 +1.46041,0.86801,-1.43957,-1.40290,-1.05857,2.11791,-0.45980 +1.46303,0.86761,-1.43977,-1.40287,-1.05857,2.11821,-0.46012 +1.46565,0.86740,-1.43987,-1.40286,-1.05856,2.11836,-0.46029 +1.46827,0.86689,-1.44011,-1.40287,-1.05853,2.11872,-0.46070 +1.47090,0.86640,-1.44034,-1.40287,-1.05849,2.11908,-0.46110 +1.47352,0.86591,-1.44057,-1.40288,-1.05846,2.11944,-0.46149 +1.47614,0.86543,-1.44080,-1.40288,-1.05843,2.11978,-0.46188 +1.47876,0.86496,-1.44102,-1.40289,-1.05841,2.12012,-0.46225 +1.48138,0.86450,-1.44124,-1.40289,-1.05838,2.12046,-0.46263 +1.48401,0.86404,-1.44145,-1.40289,-1.05835,2.12079,-0.46299 +1.48663,0.86360,-1.44166,-1.40289,-1.05833,2.12111,-0.46335 +1.48925,0.86316,-1.44187,-1.40289,-1.05830,2.12143,-0.46371 +1.49187,0.86273,-1.44207,-1.40289,-1.05828,2.12174,-0.46406 +1.49449,0.86231,-1.44227,-1.40289,-1.05826,2.12205,-0.46440 +1.49712,0.86189,-1.44247,-1.40289,-1.05824,2.12235,-0.46473 +1.49974,0.86148,-1.44266,-1.40289,-1.05822,2.12264,-0.46506 +1.50236,0.86108,-1.44285,-1.40289,-1.05820,2.12294,-0.46539 +1.50498,0.86081,-1.44297,-1.40291,-1.05818,2.12313,-0.46561 +1.50760,0.86011,-1.44319,-1.40313,-1.05804,2.12363,-0.46617 +1.51023,0.85943,-1.44340,-1.40335,-1.05790,2.12412,-0.46672 +1.51285,0.85875,-1.44361,-1.40356,-1.05776,2.12461,-0.46727 +1.51547,0.85809,-1.44381,-1.40377,-1.05763,2.12508,-0.46780 +1.51809,0.85744,-1.44401,-1.40397,-1.05750,2.12555,-0.46833 +1.52071,0.85680,-1.44421,-1.40417,-1.05738,2.12601,-0.46884 +1.52334,0.85618,-1.44441,-1.40436,-1.05726,2.12646,-0.46935 +1.52596,0.85556,-1.44460,-1.40455,-1.05714,2.12690,-0.46985 +1.52858,0.85496,-1.44479,-1.40474,-1.05702,2.12734,-0.47034 +1.53120,0.85436,-1.44497,-1.40492,-1.05691,2.12776,-0.47082 +1.53382,0.85378,-1.44516,-1.40509,-1.05680,2.12818,-0.47129 +1.53644,0.85321,-1.44534,-1.40527,-1.05669,2.12860,-0.47176 +1.53907,0.85265,-1.44551,-1.40544,-1.05658,2.12900,-0.47222 +1.54169,0.85209,-1.44569,-1.40560,-1.05648,2.12940,-0.47267 +1.54431,0.85155,-1.44586,-1.40577,-1.05638,2.12979,-0.47311 +1.54693,0.85102,-1.44603,-1.40593,-1.05628,2.13017,-0.47354 +1.54955,0.85050,-1.44619,-1.40608,-1.05618,2.13055,-0.47397 +1.55218,0.84998,-1.44635,-1.40624,-1.05609,2.13092,-0.47439 +1.55480,0.84948,-1.44651,-1.40638,-1.05600,2.13128,-0.47480 +1.55742,0.84898,-1.44667,-1.40653,-1.05591,2.13164,-0.47520 +1.56004,0.84849,-1.44683,-1.40667,-1.05582,2.13199,-0.47560 +1.56266,0.84802,-1.44698,-1.40681,-1.05574,2.13233,-0.47599 +1.56529,0.84755,-1.44713,-1.40695,-1.05565,2.13267,-0.47638 +1.56791,0.84708,-1.44728,-1.40708,-1.05557,2.13300,-0.47675 +1.57053,0.84663,-1.44742,-1.40722,-1.05549,2.13333,-0.47712 +1.57315,0.84619,-1.44756,-1.40734,-1.05542,2.13365,-0.47749 +1.57577,0.84575,-1.44770,-1.40747,-1.05534,2.13396,-0.47785 +1.57840,0.84532,-1.44784,-1.40759,-1.05527,2.13427,-0.47820 +1.58102,0.84490,-1.44797,-1.40771,-1.05519,2.13458,-0.47855 +1.58364,0.84448,-1.44811,-1.40783,-1.05512,2.13487,-0.47889 +1.58626,0.84408,-1.44824,-1.40795,-1.05506,2.13517,-0.47922 +1.58888,0.84368,-1.44837,-1.40806,-1.05499,2.13545,-0.47955 +1.59150,0.84329,-1.44849,-1.40817,-1.05492,2.13574,-0.47987 +1.59413,0.84290,-1.44862,-1.40828,-1.05486,2.13602,-0.48019 +1.59675,0.84285,-1.44863,-1.40830,-1.05485,2.13605,-0.48023 +1.59937,0.84238,-1.44874,-1.40850,-1.05474,2.13639,-0.48061 +1.60199,0.84192,-1.44885,-1.40870,-1.05463,2.13672,-0.48099 +1.60461,0.84147,-1.44897,-1.40889,-1.05453,2.13704,-0.48137 +1.60724,0.84102,-1.44907,-1.40908,-1.05442,2.13736,-0.48173 +1.60986,0.84059,-1.44918,-1.40927,-1.05432,2.13768,-0.48209 +1.61248,0.84016,-1.44929,-1.40945,-1.05422,2.13798,-0.48245 +1.61510,0.83973,-1.44939,-1.40963,-1.05413,2.13829,-0.48279 +1.61772,0.83932,-1.44949,-1.40981,-1.05403,2.13859,-0.48314 +1.62035,0.83891,-1.44959,-1.40998,-1.05394,2.13888,-0.48347 +1.62297,0.83851,-1.44969,-1.41015,-1.05385,2.13916,-0.48380 +1.62559,0.83812,-1.44978,-1.41031,-1.05376,2.13945,-0.48413 +1.62821,0.83774,-1.44988,-1.41048,-1.05367,2.13972,-0.48445 +1.63083,0.83736,-1.44997,-1.41064,-1.05359,2.14000,-0.48476 +1.63346,0.83724,-1.45000,-1.41070,-1.05356,2.14008,-0.48486 +1.63608,0.83680,-1.45006,-1.41097,-1.05342,2.14040,-0.48522 +1.63870,0.83636,-1.45012,-1.41123,-1.05329,2.14071,-0.48558 +1.64132,0.83594,-1.45018,-1.41149,-1.05316,2.14101,-0.48593 +1.64394,0.83552,-1.45023,-1.41175,-1.05303,2.14131,-0.48628 +1.64657,0.83511,-1.45029,-1.41200,-1.05291,2.14160,-0.48661 +1.64919,0.83471,-1.45035,-1.41224,-1.05279,2.14189,-0.48695 +1.65181,0.83431,-1.45040,-1.41249,-1.05267,2.14218,-0.48728 +1.65443,0.83393,-1.45046,-1.41272,-1.05255,2.14245,-0.48760 +1.65705,0.83355,-1.45051,-1.41295,-1.05243,2.14273,-0.48791 +1.65967,0.83317,-1.45056,-1.41318,-1.05232,2.14300,-0.48822 +1.66230,0.83280,-1.45061,-1.41341,-1.05221,2.14326,-0.48853 +1.66492,0.83251,-1.45065,-1.41360,-1.05212,2.14347,-0.48878 +1.66754,0.83208,-1.45065,-1.41396,-1.05195,2.14377,-0.48913 +1.67016,0.83167,-1.45065,-1.41431,-1.05178,2.14407,-0.48947 +1.67278,0.83126,-1.45065,-1.41465,-1.05162,2.14436,-0.48981 +1.67541,0.83086,-1.45066,-1.41499,-1.05146,2.14465,-0.49014 +1.67803,0.83047,-1.45066,-1.41532,-1.05130,2.14493,-0.49047 +1.68065,0.83008,-1.45066,-1.41565,-1.05115,2.14520,-0.49079 +1.68327,0.82970,-1.45066,-1.41597,-1.05099,2.14548,-0.49110 +1.68589,0.82933,-1.45066,-1.41628,-1.05085,2.14574,-0.49141 +1.68852,0.82897,-1.45066,-1.41659,-1.05070,2.14600,-0.49172 +1.69114,0.82861,-1.45067,-1.41690,-1.05056,2.14626,-0.49202 +1.69376,0.82825,-1.45067,-1.41720,-1.05042,2.14651,-0.49231 +1.69638,0.82791,-1.45067,-1.41749,-1.05028,2.14676,-0.49260 +1.69900,0.82769,-1.45066,-1.41769,-1.05019,2.14691,-0.49278 +1.70163,0.82727,-1.45052,-1.41828,-1.04992,2.14721,-0.49313 +1.70425,0.82686,-1.45039,-1.41886,-1.04967,2.14751,-0.49348 +1.70687,0.82645,-1.45026,-1.41943,-1.04941,2.14780,-0.49381 +1.70949,0.82605,-1.45014,-1.41998,-1.04917,2.14808,-0.49415 +1.71211,0.82566,-1.45001,-1.42053,-1.04892,2.14836,-0.49447 +1.71474,0.82528,-1.44989,-1.42107,-1.04868,2.14863,-0.49480 +1.71736,0.82490,-1.44977,-1.42160,-1.04845,2.14890,-0.49511 +1.71998,0.82453,-1.44966,-1.42212,-1.04822,2.14917,-0.49542 +1.72260,0.82417,-1.44954,-1.42263,-1.04799,2.14943,-0.49573 +1.72522,0.82381,-1.44943,-1.42313,-1.04776,2.14968,-0.49603 +1.72784,0.82346,-1.44931,-1.42362,-1.04754,2.14993,-0.49632 +1.73047,0.82311,-1.44920,-1.42411,-1.04733,2.15018,-0.49661 +1.73309,0.82277,-1.44910,-1.42458,-1.04712,2.15042,-0.49689 +1.73571,0.82244,-1.44899,-1.42505,-1.04691,2.15066,-0.49717 +1.73833,0.82211,-1.44889,-1.42551,-1.04670,2.15089,-0.49744 +1.74095,0.82179,-1.44878,-1.42596,-1.04650,2.15112,-0.49771 +1.74358,0.82148,-1.44868,-1.42641,-1.04630,2.15134,-0.49798 +1.74620,0.82117,-1.44858,-1.42684,-1.04611,2.15156,-0.49824 +1.74882,0.82087,-1.44849,-1.42727,-1.04592,2.15178,-0.49849 +1.75144,0.82057,-1.44839,-1.42769,-1.04573,2.15199,-0.49874 +1.75406,0.82027,-1.44830,-1.42811,-1.04554,2.15220,-0.49899 +1.75669,0.82007,-1.44821,-1.42843,-1.04540,2.15235,-0.49916 +1.75931,0.81977,-1.44790,-1.42922,-1.04507,2.15256,-0.49941 +1.76193,0.81947,-1.44759,-1.42999,-1.04474,2.15278,-0.49966 +1.76455,0.81918,-1.44729,-1.43075,-1.04442,2.15298,-0.49991 +1.76717,0.81889,-1.44699,-1.43150,-1.04411,2.15319,-0.50015 +1.76980,0.81861,-1.44670,-1.43224,-1.04380,2.15339,-0.50039 +1.77242,0.81833,-1.44641,-1.43296,-1.04349,2.15359,-0.50062 +1.77504,0.81806,-1.44613,-1.43367,-1.04319,2.15378,-0.50085 +1.77766,0.81780,-1.44585,-1.43437,-1.04289,2.15397,-0.50108 +1.78028,0.81753,-1.44558,-1.43506,-1.04260,2.15415,-0.50130 +1.78291,0.81728,-1.44531,-1.43573,-1.04232,2.15434,-0.50151 +1.78553,0.81703,-1.44505,-1.43639,-1.04204,2.15452,-0.50172 +1.78815,0.81678,-1.44479,-1.43705,-1.04176,2.15469,-0.50193 +1.79077,0.81654,-1.44453,-1.43769,-1.04149,2.15487,-0.50214 +1.79339,0.81630,-1.44428,-1.43832,-1.04122,2.15504,-0.50234 +1.79601,0.81606,-1.44404,-1.43894,-1.04095,2.15520,-0.50254 +1.79864,0.81583,-1.44380,-1.43955,-1.04069,2.15537,-0.50273 +1.80126,0.81561,-1.44356,-1.44015,-1.04044,2.15553,-0.50292 +1.80388,0.81539,-1.44333,-1.44073,-1.04019,2.15568,-0.50311 +1.80650,0.81517,-1.44310,-1.44131,-1.03994,2.15584,-0.50329 +1.80912,0.81496,-1.44287,-1.44188,-1.03970,2.15599,-0.50347 +1.81175,0.81475,-1.44265,-1.44244,-1.03946,2.15614,-0.50364 +1.81437,0.81455,-1.44243,-1.44299,-1.03922,2.15629,-0.50382 +1.81699,0.81434,-1.44222,-1.44353,-1.03899,2.15643,-0.50399 +1.81961,0.81415,-1.44200,-1.44406,-1.03876,2.15657,-0.50415 +1.82223,0.81403,-1.44187,-1.44440,-1.03862,2.15665,-0.50425 +1.82486,0.81386,-1.44152,-1.44513,-1.03831,2.15678,-0.50440 +1.82748,0.81368,-1.44118,-1.44585,-1.03802,2.15690,-0.50455 +1.83010,0.81351,-1.44085,-1.44656,-1.03772,2.15702,-0.50469 +1.83272,0.81335,-1.44052,-1.44726,-1.03743,2.15714,-0.50483 +1.83534,0.81318,-1.44020,-1.44794,-1.03715,2.15726,-0.50497 +1.83797,0.81302,-1.43988,-1.44861,-1.03687,2.15737,-0.50511 +1.84059,0.81287,-1.43957,-1.44928,-1.03659,2.15749,-0.50524 +1.84321,0.81271,-1.43927,-1.44993,-1.03632,2.15760,-0.50537 +1.84583,0.81256,-1.43897,-1.45057,-1.03605,2.15770,-0.50550 +1.84845,0.81241,-1.43867,-1.45120,-1.03579,2.15781,-0.50562 +1.85107,0.81227,-1.43838,-1.45181,-1.03553,2.15791,-0.50574 +1.85370,0.81213,-1.43810,-1.45242,-1.03527,2.15802,-0.50586 +1.85632,0.81199,-1.43781,-1.45302,-1.03502,2.15812,-0.50598 +1.85894,0.81185,-1.43754,-1.45361,-1.03477,2.15821,-0.50610 +1.86156,0.81172,-1.43727,-1.45419,-1.03453,2.15831,-0.50621 +1.86418,0.81159,-1.43699,-1.45478,-1.03428,2.15840,-0.50632 +1.86681,0.81149,-1.43658,-1.45554,-1.03397,2.15847,-0.50640 +1.86943,0.81140,-1.43618,-1.45630,-1.03366,2.15854,-0.50648 +1.87205,0.81130,-1.43579,-1.45704,-1.03336,2.15861,-0.50656 +1.87467,0.81121,-1.43540,-1.45777,-1.03306,2.15867,-0.50664 +1.87729,0.81112,-1.43502,-1.45849,-1.03276,2.15874,-0.50672 +1.87992,0.81104,-1.43465,-1.45919,-1.03247,2.15880,-0.50679 +1.88254,0.81095,-1.43428,-1.45989,-1.03219,2.15886,-0.50686 +1.88516,0.81087,-1.43392,-1.46057,-1.03191,2.15892,-0.50693 +1.88778,0.81079,-1.43356,-1.46124,-1.03163,2.15898,-0.50700 +1.89040,0.81071,-1.43321,-1.46190,-1.03136,2.15904,-0.50707 +1.89303,0.81063,-1.43287,-1.46255,-1.03109,2.15910,-0.50714 +1.89565,0.81055,-1.43253,-1.46318,-1.03083,2.15915,-0.50720 +1.89827,0.81048,-1.43220,-1.46381,-1.03057,2.15921,-0.50727 +1.90089,0.81040,-1.43188,-1.46443,-1.03031,2.15926,-0.50733 +1.90351,0.81033,-1.43156,-1.46503,-1.03006,2.15931,-0.50739 +1.90614,0.81026,-1.43124,-1.46563,-1.02981,2.15936,-0.50745 +1.90876,0.81023,-1.43102,-1.46603,-1.02965,2.15938,-0.50747 +1.91138,0.81031,-1.43035,-1.46708,-1.02924,2.15933,-0.50741 +1.91400,0.81038,-1.42969,-1.46811,-1.02885,2.15928,-0.50735 +1.91662,0.81046,-1.42904,-1.46912,-1.02845,2.15923,-0.50729 +1.91924,0.81053,-1.42840,-1.47012,-1.02807,2.15918,-0.50723 +1.92187,0.81060,-1.42777,-1.47109,-1.02769,2.15913,-0.50717 +1.92449,0.81068,-1.42716,-1.47206,-1.02731,2.15908,-0.50711 +1.92711,0.81075,-1.42655,-1.47300,-1.02694,2.15904,-0.50705 +1.92973,0.81082,-1.42595,-1.47394,-1.02658,2.15899,-0.50699 +1.93235,0.81089,-1.42537,-1.47485,-1.02622,2.15894,-0.50694 +1.93498,0.81096,-1.42479,-1.47575,-1.02586,2.15889,-0.50688 +1.93760,0.81103,-1.42423,-1.47664,-1.02552,2.15885,-0.50682 +1.94022,0.81109,-1.42367,-1.47751,-1.02517,2.15880,-0.50677 +1.94284,0.81116,-1.42312,-1.47836,-1.02483,2.15875,-0.50671 +1.94546,0.81123,-1.42259,-1.47921,-1.02450,2.15871,-0.50665 +1.94809,0.81130,-1.42206,-1.48003,-1.02417,2.15866,-0.50660 +1.95071,0.81136,-1.42154,-1.48085,-1.02385,2.15862,-0.50654 +1.95333,0.81143,-1.42103,-1.48165,-1.02353,2.15857,-0.50649 +1.95595,0.81149,-1.42053,-1.48244,-1.02322,2.15853,-0.50643 +1.95857,0.81155,-1.42003,-1.48321,-1.02291,2.15849,-0.50638 +1.96120,0.81162,-1.41955,-1.48397,-1.02260,2.15844,-0.50632 +1.96382,0.81168,-1.41907,-1.48472,-1.02230,2.15840,-0.50627 +1.96644,0.81174,-1.41860,-1.48546,-1.02201,2.15836,-0.50622 +1.96906,0.81180,-1.41814,-1.48618,-1.02171,2.15831,-0.50617 +1.97168,0.81187,-1.41769,-1.48689,-1.02143,2.15827,-0.50611 +1.97431,0.81193,-1.41724,-1.48759,-1.02114,2.15823,-0.50606 +1.97693,0.81199,-1.41681,-1.48828,-1.02087,2.15819,-0.50601 +1.97955,0.81205,-1.41638,-1.48896,-1.02059,2.15815,-0.50596 +1.98217,0.81210,-1.41595,-1.48962,-1.02032,2.15811,-0.50591 +1.98479,0.81216,-1.41554,-1.49028,-1.02005,2.15807,-0.50586 +1.98741,0.81222,-1.41513,-1.49092,-1.01979,2.15803,-0.50581 +1.99004,0.81228,-1.41473,-1.49156,-1.01953,2.15799,-0.50576 +1.99266,0.81233,-1.41433,-1.49218,-1.01928,2.15795,-0.50571 +1.99528,0.81239,-1.41394,-1.49279,-1.01903,2.15791,-0.50566 +1.99790,0.81244,-1.41356,-1.49339,-1.01878,2.15787,-0.50562 +2.00052,0.81250,-1.41319,-1.49399,-1.01853,2.15783,-0.50557 +2.00315,0.81255,-1.41290,-1.49443,-1.01835,2.15780,-0.50552 +2.00577,0.81274,-1.41225,-1.49535,-1.01800,2.15766,-0.50536 +2.00839,0.81293,-1.41161,-1.49625,-1.01765,2.15753,-0.50521 +2.01101,0.81311,-1.41098,-1.49714,-1.01731,2.15741,-0.50505 +2.01363,0.81329,-1.41036,-1.49801,-1.01698,2.15728,-0.50490 +2.01626,0.81347,-1.40975,-1.49887,-1.01664,2.15715,-0.50475 +2.01888,0.81365,-1.40915,-1.49972,-1.01632,2.15703,-0.50460 +2.02150,0.81383,-1.40857,-1.50055,-1.01599,2.15691,-0.50445 +2.02412,0.81400,-1.40799,-1.50136,-1.01568,2.15679,-0.50431 +2.02674,0.81417,-1.40742,-1.50217,-1.01536,2.15667,-0.50416 +2.02937,0.81434,-1.40686,-1.50296,-1.01506,2.15655,-0.50402 +2.03199,0.81450,-1.40632,-1.50373,-1.01475,2.15643,-0.50388 +2.03461,0.81466,-1.40578,-1.50450,-1.01445,2.15632,-0.50374 +2.03723,0.81483,-1.40525,-1.50525,-1.01416,2.15621,-0.50361 +2.03985,0.81498,-1.40473,-1.50599,-1.01386,2.15609,-0.50347 +2.04248,0.81514,-1.40421,-1.50672,-1.01358,2.15598,-0.50334 +2.04510,0.81530,-1.40371,-1.50743,-1.01329,2.15588,-0.50321 +2.04772,0.81545,-1.40322,-1.50813,-1.01302,2.15577,-0.50308 +2.05034,0.81560,-1.40273,-1.50882,-1.01274,2.15566,-0.50295 +2.05296,0.81575,-1.40225,-1.50950,-1.01247,2.15556,-0.50283 +2.05558,0.81589,-1.40178,-1.51017,-1.01220,2.15546,-0.50270 +2.05821,0.81604,-1.40132,-1.51083,-1.01194,2.15535,-0.50258 +2.06083,0.81618,-1.40087,-1.51148,-1.01168,2.15525,-0.50246 +2.06345,0.81632,-1.40042,-1.51211,-1.01142,2.15515,-0.50234 +2.06607,0.81646,-1.39998,-1.51274,-1.01117,2.15506,-0.50222 +2.06869,0.81660,-1.39955,-1.51335,-1.01092,2.15496,-0.50210 +2.07132,0.81673,-1.39913,-1.51396,-1.01068,2.15486,-0.50199 +2.07394,0.81687,-1.39871,-1.51455,-1.01044,2.15477,-0.50187 +2.07656,0.81700,-1.39830,-1.51514,-1.01020,2.15468,-0.50176 +2.07918,0.81713,-1.39790,-1.51571,-1.00997,2.15459,-0.50165 +2.08180,0.81725,-1.39750,-1.51628,-1.00973,2.15450,-0.50154 +2.08443,0.81738,-1.39711,-1.51684,-1.00951,2.15441,-0.50143 +2.08705,0.81740,-1.39706,-1.51691,-1.00948,2.15439,-0.50141 +2.08967,0.81763,-1.39648,-1.51768,-1.00918,2.15423,-0.50122 +2.09229,0.81785,-1.39592,-1.51843,-1.00889,2.15408,-0.50104 +2.09491,0.81807,-1.39537,-1.51917,-1.00861,2.15392,-0.50085 +2.09754,0.81828,-1.39482,-1.51990,-1.00833,2.15377,-0.50067 +2.10016,0.81849,-1.39429,-1.52062,-1.00805,2.15362,-0.50049 +2.10278,0.81870,-1.39376,-1.52132,-1.00777,2.15348,-0.50032 +2.10540,0.81891,-1.39324,-1.52201,-1.00750,2.15333,-0.50014 +2.10802,0.81911,-1.39274,-1.52269,-1.00724,2.15319,-0.49997 +2.11064,0.81931,-1.39224,-1.52336,-1.00698,2.15305,-0.49980 +2.11327,0.81951,-1.39175,-1.52402,-1.00672,2.15291,-0.49964 +2.11589,0.81970,-1.39126,-1.52467,-1.00646,2.15277,-0.49947 +2.11851,0.81989,-1.39079,-1.52530,-1.00621,2.15263,-0.49931 +2.12113,0.82008,-1.39032,-1.52593,-1.00596,2.15250,-0.49915 +2.12375,0.82027,-1.38987,-1.52655,-1.00572,2.15237,-0.49899 +2.12638,0.82045,-1.38942,-1.52715,-1.00548,2.15224,-0.49884 +2.12900,0.82063,-1.38897,-1.52775,-1.00524,2.15211,-0.49868 +2.13162,0.82081,-1.38854,-1.52833,-1.00501,2.15198,-0.49853 +2.13424,0.82099,-1.38811,-1.52891,-1.00478,2.15186,-0.49838 +2.13686,0.82116,-1.38769,-1.52948,-1.00455,2.15173,-0.49824 +2.13949,0.82133,-1.38728,-1.53003,-1.00432,2.15161,-0.49809 +2.14211,0.82150,-1.38687,-1.53058,-1.00410,2.15149,-0.49795 +2.14473,0.82167,-1.38647,-1.53112,-1.00389,2.15138,-0.49781 +2.14735,0.82182,-1.38613,-1.53158,-1.00370,2.15127,-0.49768 +2.14997,0.82221,-1.38542,-1.53240,-1.00341,2.15099,-0.49735 +2.15260,0.82259,-1.38473,-1.53322,-1.00311,2.15072,-0.49703 +2.15522,0.82297,-1.38405,-1.53402,-1.00282,2.15045,-0.49671 +2.15784,0.82334,-1.38338,-1.53480,-1.00254,2.15019,-0.49640 +2.16046,0.82371,-1.38273,-1.53558,-1.00226,2.14993,-0.49610 +2.16308,0.82407,-1.38208,-1.53634,-1.00198,2.14968,-0.49579 +2.16571,0.82443,-1.38145,-1.53708,-1.00170,2.14943,-0.49550 +2.16833,0.82478,-1.38083,-1.53782,-1.00143,2.14918,-0.49520 +2.17095,0.82513,-1.38021,-1.53854,-1.00117,2.14893,-0.49491 +2.17357,0.82547,-1.37961,-1.53925,-1.00090,2.14869,-0.49463 +2.17619,0.82581,-1.37902,-1.53995,-1.00064,2.14845,-0.49435 +2.17881,0.82614,-1.37844,-1.54064,-1.00039,2.14822,-0.49407 +2.18144,0.82646,-1.37787,-1.54132,-1.00013,2.14799,-0.49380 +2.18406,0.82678,-1.37731,-1.54198,-0.99989,2.14776,-0.49353 +2.18668,0.82710,-1.37676,-1.54264,-0.99964,2.14753,-0.49327 +2.18930,0.82741,-1.37621,-1.54328,-0.99940,2.14731,-0.49300 +2.19192,0.82772,-1.37568,-1.54391,-0.99916,2.14709,-0.49275 +2.19455,0.82802,-1.37516,-1.54454,-0.99892,2.14688,-0.49249 +2.19717,0.82832,-1.37464,-1.54515,-0.99869,2.14667,-0.49224 +2.19979,0.82862,-1.37413,-1.54575,-0.99846,2.14646,-0.49200 +2.20241,0.82890,-1.37364,-1.54634,-0.99823,2.14625,-0.49175 +2.20503,0.82919,-1.37315,-1.54692,-0.99801,2.14605,-0.49152 +2.20766,0.82947,-1.37267,-1.54750,-0.99779,2.14585,-0.49128 +2.21028,0.82975,-1.37220,-1.54806,-0.99757,2.14565,-0.49105 +2.21290,0.83002,-1.37173,-1.54862,-0.99736,2.14546,-0.49082 +2.21552,0.83029,-1.37128,-1.54916,-0.99715,2.14527,-0.49059 +2.21814,0.83055,-1.37083,-1.54970,-0.99694,2.14508,-0.49037 +2.22077,0.83081,-1.37039,-1.55023,-0.99674,2.14489,-0.49015 +2.22339,0.83107,-1.36995,-1.55074,-0.99653,2.14471,-0.48994 +2.22601,0.83132,-1.36953,-1.55125,-0.99633,2.14453,-0.48973 +2.22863,0.83157,-1.36911,-1.55176,-0.99614,2.14435,-0.48952 +2.23125,0.83182,-1.36870,-1.55225,-0.99594,2.14417,-0.48931 +2.23388,0.83206,-1.36829,-1.55274,-0.99575,2.14400,-0.48911 +2.23650,0.83230,-1.36790,-1.55321,-0.99556,2.14383,-0.48891 +2.23912,0.83243,-1.36769,-1.55346,-0.99546,2.14374,-0.48880 +2.24174,0.83280,-1.36716,-1.55404,-0.99525,2.14348,-0.48849 +2.24436,0.83316,-1.36664,-1.55460,-0.99505,2.14322,-0.48819 +2.24698,0.83351,-1.36613,-1.55516,-0.99484,2.14297,-0.48790 +2.24961,0.83386,-1.36562,-1.55571,-0.99464,2.14272,-0.48761 +2.25223,0.83421,-1.36513,-1.55624,-0.99444,2.14247,-0.48732 +2.25485,0.83455,-1.36464,-1.55677,-0.99425,2.14223,-0.48704 +2.25747,0.83488,-1.36417,-1.55729,-0.99406,2.14199,-0.48676 +2.26009,0.83521,-1.36370,-1.55781,-0.99387,2.14176,-0.48649 +2.26272,0.83553,-1.36324,-1.55831,-0.99368,2.14152,-0.48622 +2.26534,0.83585,-1.36278,-1.55881,-0.99349,2.14130,-0.48595 +2.26796,0.83617,-1.36234,-1.55929,-0.99331,2.14107,-0.48569 +2.27058,0.83648,-1.36190,-1.55977,-0.99313,2.14085,-0.48543 +2.27320,0.83678,-1.36147,-1.56025,-0.99295,2.14063,-0.48518 +2.27583,0.83708,-1.36105,-1.56071,-0.99277,2.14042,-0.48493 +2.27845,0.83738,-1.36063,-1.56117,-0.99260,2.14020,-0.48468 +2.28107,0.83767,-1.36022,-1.56162,-0.99243,2.14000,-0.48444 +2.28369,0.83796,-1.35982,-1.56206,-0.99226,2.13979,-0.48420 +2.28631,0.83824,-1.35943,-1.56249,-0.99209,2.13959,-0.48396 +2.28894,0.83853,-1.35903,-1.56293,-0.99192,2.13938,-0.48372 +2.29156,0.83894,-1.35853,-1.56342,-0.99175,2.13909,-0.48338 +2.29418,0.83935,-1.35804,-1.56390,-0.99159,2.13880,-0.48305 +2.29680,0.83975,-1.35756,-1.56437,-0.99142,2.13851,-0.48272 +2.29942,0.84014,-1.35708,-1.56483,-0.99126,2.13823,-0.48239 +2.30205,0.84053,-1.35662,-1.56529,-0.99109,2.13796,-0.48207 +2.30467,0.84091,-1.35616,-1.56574,-0.99093,2.13768,-0.48176 +2.30729,0.84128,-1.35571,-1.56618,-0.99078,2.13742,-0.48145 +2.30991,0.84165,-1.35527,-1.56661,-0.99062,2.13715,-0.48114 +2.31253,0.84201,-1.35483,-1.56704,-0.99047,2.13689,-0.48084 +2.31515,0.84237,-1.35441,-1.56746,-0.99031,2.13664,-0.48055 +2.31778,0.84272,-1.35399,-1.56788,-0.99016,2.13638,-0.48026 +2.32040,0.84307,-1.35358,-1.56828,-0.99002,2.13613,-0.47997 +2.32302,0.84341,-1.35317,-1.56869,-0.98987,2.13589,-0.47969 +2.32564,0.84375,-1.35277,-1.56908,-0.98972,2.13565,-0.47941 +2.32826,0.84408,-1.35238,-1.56947,-0.98958,2.13541,-0.47914 +2.33089,0.84441,-1.35200,-1.56985,-0.98944,2.13518,-0.47887 +2.33351,0.84473,-1.35162,-1.57022,-0.98930,2.13495,-0.47860 +2.33613,0.84490,-1.35142,-1.57042,-0.98923,2.13482,-0.47846 +2.33875,0.84538,-1.35092,-1.57085,-0.98909,2.13448,-0.47806 +2.34137,0.84586,-1.35042,-1.57128,-0.98895,2.13414,-0.47767 +2.34400,0.84633,-1.34994,-1.57170,-0.98881,2.13380,-0.47729 +2.34662,0.84679,-1.34946,-1.57211,-0.98868,2.13347,-0.47691 +2.34924,0.84724,-1.34899,-1.57252,-0.98854,2.13315,-0.47654 +2.35186,0.84768,-1.34853,-1.57292,-0.98841,2.13283,-0.47618 +2.35448,0.84812,-1.34807,-1.57331,-0.98828,2.13252,-0.47582 +2.35711,0.84856,-1.34763,-1.57370,-0.98815,2.13221,-0.47546 +2.35973,0.84898,-1.34719,-1.57408,-0.98802,2.13190,-0.47511 +2.36235,0.84940,-1.34676,-1.57446,-0.98789,2.13160,-0.47477 +2.36497,0.84981,-1.34634,-1.57483,-0.98777,2.13130,-0.47443 +2.36759,0.85022,-1.34592,-1.57519,-0.98764,2.13101,-0.47410 +2.37021,0.85062,-1.34552,-1.57555,-0.98752,2.13073,-0.47377 +2.37284,0.85101,-1.34511,-1.57590,-0.98740,2.13044,-0.47345 +2.37546,0.85140,-1.34472,-1.57625,-0.98728,2.13016,-0.47313 +2.37808,0.85178,-1.34433,-1.57659,-0.98716,2.12989,-0.47282 +2.38070,0.85215,-1.34395,-1.57692,-0.98705,2.12962,-0.47251 +2.38332,0.85252,-1.34358,-1.57725,-0.98693,2.12935,-0.47221 +2.38595,0.85289,-1.34321,-1.57757,-0.98682,2.12909,-0.47191 +2.38857,0.85325,-1.34285,-1.57789,-0.98670,2.12883,-0.47162 +2.39119,0.85355,-1.34256,-1.57815,-0.98662,2.12862,-0.47137 +2.39381,0.85409,-1.34210,-1.57846,-0.98653,2.12823,-0.47093 +2.39643,0.85463,-1.34165,-1.57877,-0.98644,2.12784,-0.47049 +2.39906,0.85516,-1.34120,-1.57907,-0.98636,2.12746,-0.47006 +2.40168,0.85568,-1.34077,-1.57937,-0.98627,2.12709,-0.46964 +2.40430,0.85619,-1.34034,-1.57966,-0.98619,2.12672,-0.46923 +2.40692,0.85669,-1.33992,-1.57995,-0.98611,2.12636,-0.46882 +2.40954,0.85719,-1.33950,-1.58023,-0.98602,2.12600,-0.46841 +2.41217,0.85768,-1.33910,-1.58051,-0.98594,2.12565,-0.46802 +2.41479,0.85816,-1.33870,-1.58079,-0.98586,2.12531,-0.46763 +2.41741,0.85863,-1.33831,-1.58106,-0.98578,2.12497,-0.46724 +2.42003,0.85909,-1.33792,-1.58133,-0.98570,2.12463,-0.46687 +2.42265,0.85955,-1.33755,-1.58159,-0.98562,2.12430,-0.46649 +2.42528,0.86000,-1.33717,-1.58185,-0.98554,2.12398,-0.46613 +2.42790,0.86045,-1.33681,-1.58210,-0.98547,2.12366,-0.46577 +2.43052,0.86088,-1.33645,-1.58235,-0.98539,2.12334,-0.46541 +2.43314,0.86131,-1.33610,-1.58260,-0.98531,2.12303,-0.46507 +2.43576,0.86174,-1.33575,-1.58284,-0.98524,2.12272,-0.46472 +2.43838,0.86215,-1.33541,-1.58308,-0.98516,2.12242,-0.46438 +2.44101,0.86256,-1.33508,-1.58331,-0.98509,2.12213,-0.46405 +2.44363,0.86297,-1.33475,-1.58355,-0.98501,2.12184,-0.46373 +2.44625,0.86336,-1.33443,-1.58377,-0.98494,2.12155,-0.46340 +2.44887,0.86354,-1.33429,-1.58386,-0.98491,2.12142,-0.46326 +2.45149,0.86409,-1.33388,-1.58410,-0.98486,2.12103,-0.46282 +2.45412,0.86463,-1.33347,-1.58434,-0.98480,2.12063,-0.46238 +2.45674,0.86516,-1.33307,-1.58457,-0.98474,2.12025,-0.46195 +2.45936,0.86569,-1.33268,-1.58480,-0.98469,2.11987,-0.46153 +2.46198,0.86620,-1.33230,-1.58502,-0.98463,2.11950,-0.46111 +2.46460,0.86671,-1.33192,-1.58524,-0.98458,2.11913,-0.46070 +2.46723,0.86721,-1.33155,-1.58546,-0.98452,2.11877,-0.46030 +2.46985,0.86771,-1.33119,-1.58567,-0.98447,2.11841,-0.45990 +2.47247,0.86819,-1.33083,-1.58588,-0.98441,2.11806,-0.45951 +2.47509,0.86867,-1.33048,-1.58609,-0.98436,2.11772,-0.45913 +2.47771,0.86914,-1.33013,-1.58629,-0.98430,2.11738,-0.45875 +2.48034,0.86960,-1.32979,-1.58649,-0.98425,2.11704,-0.45838 +2.48296,0.87006,-1.32946,-1.58669,-0.98420,2.11671,-0.45801 +2.48558,0.87050,-1.32913,-1.58688,-0.98414,2.11639,-0.45765 +2.48820,0.87095,-1.32881,-1.58708,-0.98409,2.11607,-0.45730 +2.49082,0.87138,-1.32849,-1.58726,-0.98404,2.11575,-0.45695 +2.49345,0.87181,-1.32818,-1.58745,-0.98399,2.11544,-0.45660 +2.49607,0.87223,-1.32788,-1.58763,-0.98393,2.11514,-0.45627 +2.49869,0.87264,-1.32758,-1.58781,-0.98388,2.11484,-0.45593 +2.50131,0.87273,-1.32751,-1.58785,-0.98388,2.11477,-0.45586 +2.50393,0.87327,-1.32716,-1.58801,-0.98384,2.11438,-0.45543 +2.50655,0.87379,-1.32681,-1.58818,-0.98381,2.11400,-0.45501 +2.50918,0.87431,-1.32647,-1.58834,-0.98378,2.11362,-0.45460 +2.51180,0.87482,-1.32613,-1.58849,-0.98375,2.11325,-0.45419 +2.51442,0.87532,-1.32580,-1.58865,-0.98372,2.11289,-0.45379 +2.51704,0.87582,-1.32547,-1.58880,-0.98369,2.11253,-0.45339 +2.51966,0.87630,-1.32516,-1.58895,-0.98366,2.11218,-0.45301 +2.52229,0.87678,-1.32484,-1.58910,-0.98363,2.11183,-0.45262 +2.52491,0.87725,-1.32453,-1.58925,-0.98360,2.11149,-0.45225 +2.52753,0.87771,-1.32423,-1.58939,-0.98357,2.11116,-0.45188 +2.53015,0.87817,-1.32393,-1.58954,-0.98354,2.11083,-0.45152 +2.53277,0.87861,-1.32364,-1.58968,-0.98351,2.11050,-0.45116 +2.53540,0.87905,-1.32336,-1.58981,-0.98347,2.11018,-0.45081 +2.53802,0.87949,-1.32307,-1.58995,-0.98344,2.10986,-0.45046 +2.54064,0.87991,-1.32280,-1.59008,-0.98341,2.10955,-0.45012 +2.54326,0.88001,-1.32274,-1.59011,-0.98341,2.10948,-0.45004 +2.54588,0.88055,-1.32242,-1.59020,-0.98341,2.10909,-0.44961 +2.54851,0.88109,-1.32212,-1.59030,-0.98341,2.10870,-0.44919 +2.55113,0.88161,-1.32181,-1.59039,-0.98340,2.10832,-0.44877 +2.55375,0.88213,-1.32152,-1.59048,-0.98340,2.10794,-0.44836 +2.55637,0.88264,-1.32123,-1.59057,-0.98340,2.10757,-0.44795 +2.55899,0.88314,-1.32094,-1.59066,-0.98339,2.10721,-0.44756 +2.56162,0.88363,-1.32066,-1.59075,-0.98339,2.10685,-0.44716 +2.56424,0.88412,-1.32038,-1.59083,-0.98338,2.10650,-0.44678 +2.56686,0.88459,-1.32011,-1.59092,-0.98338,2.10615,-0.44640 +2.56948,0.88506,-1.31984,-1.59100,-0.98337,2.10581,-0.44603 +2.57210,0.88552,-1.31958,-1.59108,-0.98336,2.10547,-0.44566 +2.57472,0.88598,-1.31932,-1.59117,-0.98336,2.10514,-0.44530 +2.57735,0.88642,-1.31907,-1.59125,-0.98335,2.10481,-0.44495 +2.57997,0.88686,-1.31882,-1.59133,-0.98334,2.10449,-0.44460 +2.58259,0.88710,-1.31869,-1.59135,-0.98335,2.10431,-0.44441 +2.58521,0.88778,-1.31841,-1.59129,-0.98342,2.10383,-0.44388 +2.58783,0.88844,-1.31813,-1.59123,-0.98349,2.10334,-0.44335 +2.59046,0.88909,-1.31786,-1.59117,-0.98356,2.10287,-0.44284 +2.59308,0.88973,-1.31759,-1.59111,-0.98363,2.10240,-0.44234 +2.59570,0.89037,-1.31733,-1.59106,-0.98370,2.10194,-0.44184 +2.59832,0.89099,-1.31708,-1.59100,-0.98377,2.10149,-0.44135 +2.60094,0.89160,-1.31682,-1.59095,-0.98383,2.10105,-0.44087 +2.60357,0.89220,-1.31657,-1.59090,-0.98389,2.10061,-0.44040 +2.60619,0.89279,-1.31633,-1.59085,-0.98395,2.10018,-0.43993 +2.60881,0.89337,-1.31609,-1.59080,-0.98401,2.09976,-0.43948 +2.61143,0.89394,-1.31586,-1.59075,-0.98407,2.09934,-0.43903 +2.61405,0.89450,-1.31563,-1.59070,-0.98413,2.09893,-0.43858 +2.61668,0.89506,-1.31540,-1.59065,-0.98418,2.09852,-0.43815 +2.61930,0.89560,-1.31518,-1.59061,-0.98424,2.09812,-0.43772 +2.62192,0.89614,-1.31496,-1.59056,-0.98429,2.09773,-0.43730 +2.62454,0.89666,-1.31475,-1.59052,-0.98434,2.09735,-0.43689 +2.62716,0.89718,-1.31454,-1.59047,-0.98439,2.09697,-0.43648 +2.62979,0.89769,-1.31433,-1.59043,-0.98444,2.09659,-0.43608 +2.63241,0.89819,-1.31413,-1.59039,-0.98449,2.09623,-0.43569 +2.63503,0.89869,-1.31393,-1.59035,-0.98453,2.09586,-0.43530 +2.63765,0.89917,-1.31373,-1.59031,-0.98458,2.09551,-0.43492 +2.64027,0.89965,-1.31354,-1.59028,-0.98462,2.09516,-0.43455 +2.64289,0.90012,-1.31335,-1.59024,-0.98466,2.09481,-0.43418 +2.64552,0.90058,-1.31317,-1.59020,-0.98470,2.09447,-0.43382 +2.64814,0.90104,-1.31299,-1.59017,-0.98474,2.09414,-0.43346 +2.65076,0.90148,-1.31281,-1.59013,-0.98478,2.09381,-0.43311 +2.65338,0.90159,-1.31277,-1.59011,-0.98480,2.09373,-0.43302 +2.65600,0.90225,-1.31261,-1.58987,-0.98494,2.09325,-0.43251 +2.65863,0.90290,-1.31245,-1.58965,-0.98507,2.09277,-0.43200 +2.66125,0.90354,-1.31229,-1.58942,-0.98521,2.09231,-0.43151 +2.66387,0.90417,-1.31214,-1.58920,-0.98534,2.09185,-0.43102 +2.66649,0.90479,-1.31199,-1.58899,-0.98547,2.09140,-0.43054 +2.66911,0.90539,-1.31184,-1.58877,-0.98559,2.09095,-0.43007 +2.67174,0.90599,-1.31169,-1.58857,-0.98572,2.09051,-0.42960 +2.67436,0.90658,-1.31155,-1.58836,-0.98584,2.09008,-0.42914 +2.67698,0.90716,-1.31141,-1.58816,-0.98596,2.08966,-0.42870 +2.67960,0.90773,-1.31127,-1.58796,-0.98607,2.08924,-0.42825 +2.68222,0.90828,-1.31114,-1.58777,-0.98619,2.08883,-0.42782 +2.68485,0.90883,-1.31101,-1.58758,-0.98630,2.08843,-0.42739 +2.68747,0.90937,-1.31088,-1.58739,-0.98641,2.08803,-0.42697 +2.69009,0.90991,-1.31075,-1.58721,-0.98652,2.08764,-0.42656 +2.69271,0.91043,-1.31063,-1.58703,-0.98662,2.08725,-0.42616 +2.69533,0.91094,-1.31050,-1.58685,-0.98672,2.08688,-0.42576 +2.69795,0.91145,-1.31038,-1.58668,-0.98683,2.08650,-0.42537 +2.70058,0.91194,-1.31027,-1.58651,-0.98692,2.08614,-0.42498 +2.70320,0.91243,-1.31015,-1.58634,-0.98702,2.08578,-0.42460 +2.70582,0.91291,-1.31004,-1.58618,-0.98712,2.08542,-0.42423 +2.70844,0.91339,-1.30993,-1.58602,-0.98721,2.08507,-0.42386 +2.71106,0.91385,-1.30982,-1.58586,-0.98730,2.08473,-0.42350 +2.71369,0.91431,-1.30971,-1.58570,-0.98739,2.08439,-0.42315 +2.71631,0.91476,-1.30961,-1.58555,-0.98748,2.08406,-0.42280 +2.71893,0.91520,-1.30950,-1.58540,-0.98756,2.08373,-0.42246 +2.72155,0.91561,-1.30942,-1.58525,-0.98765,2.08343,-0.42215 +2.72417,0.91620,-1.30937,-1.58490,-0.98782,2.08300,-0.42169 +2.72680,0.91677,-1.30931,-1.58456,-0.98800,2.08258,-0.42125 +2.72942,0.91734,-1.30926,-1.58423,-0.98817,2.08216,-0.42081 +2.73204,0.91790,-1.30921,-1.58390,-0.98834,2.08175,-0.42038 +2.73466,0.91845,-1.30917,-1.58358,-0.98850,2.08134,-0.41996 +2.73728,0.91899,-1.30912,-1.58326,-0.98866,2.08094,-0.41954 +2.73991,0.91952,-1.30907,-1.58295,-0.98882,2.08055,-0.41914 +2.74253,0.92004,-1.30903,-1.58265,-0.98898,2.08017,-0.41873 +2.74515,0.92055,-1.30898,-1.58234,-0.98913,2.07979,-0.41834 +2.74777,0.92106,-1.30894,-1.58205,-0.98928,2.07942,-0.41795 +2.75039,0.92155,-1.30890,-1.58176,-0.98943,2.07905,-0.41757 +2.75302,0.92204,-1.30886,-1.58147,-0.98957,2.07869,-0.41720 +2.75564,0.92252,-1.30882,-1.58119,-0.98971,2.07834,-0.41683 +2.75826,0.92299,-1.30878,-1.58092,-0.98985,2.07799,-0.41647 +2.76088,0.92345,-1.30874,-1.58065,-0.98999,2.07765,-0.41611 +2.76350,0.92391,-1.30871,-1.58038,-0.99012,2.07731,-0.41576 +2.76612,0.92435,-1.30867,-1.58012,-0.99025,2.07698,-0.41542 +2.76875,0.92479,-1.30863,-1.57987,-0.99038,2.07665,-0.41508 +2.77137,0.92523,-1.30860,-1.57962,-0.99051,2.07633,-0.41475 +2.77399,0.92565,-1.30857,-1.57937,-0.99063,2.07601,-0.41443 +2.77661,0.92607,-1.30853,-1.57913,-0.99075,2.07570,-0.41411 +2.77923,0.92647,-1.30852,-1.57885,-0.99089,2.07541,-0.41380 +2.78186,0.92719,-1.30868,-1.57807,-0.99125,2.07488,-0.41325 +2.78448,0.92789,-1.30884,-1.57729,-0.99160,2.07436,-0.41272 +2.78710,0.92858,-1.30900,-1.57653,-0.99195,2.07386,-0.41219 +2.78972,0.92926,-1.30915,-1.57578,-0.99230,2.07336,-0.41168 +2.79234,0.92992,-1.30930,-1.57505,-0.99264,2.07287,-0.41117 +2.79497,0.93058,-1.30945,-1.57432,-0.99297,2.07238,-0.41067 +2.79759,0.93122,-1.30960,-1.57361,-0.99330,2.07191,-0.41018 +2.80021,0.93185,-1.30974,-1.57291,-0.99362,2.07144,-0.40970 +2.80283,0.93247,-1.30989,-1.57223,-0.99393,2.07098,-0.40923 +2.80545,0.93308,-1.31003,-1.57155,-0.99425,2.07053,-0.40877 +2.80808,0.93368,-1.31017,-1.57089,-0.99455,2.07009,-0.40832 +2.81070,0.93427,-1.31031,-1.57023,-0.99485,2.06965,-0.40787 +2.81332,0.93485,-1.31044,-1.56959,-0.99515,2.06923,-0.40743 +2.81594,0.93542,-1.31058,-1.56896,-0.99544,2.06881,-0.40700 +2.81856,0.93597,-1.31071,-1.56834,-0.99572,2.06839,-0.40658 +2.82119,0.93652,-1.31084,-1.56773,-0.99601,2.06798,-0.40616 +2.82381,0.93706,-1.31097,-1.56713,-0.99628,2.06758,-0.40575 +2.82643,0.93759,-1.31110,-1.56654,-0.99655,2.06719,-0.40535 +2.82905,0.93811,-1.31122,-1.56596,-0.99682,2.06681,-0.40496 +2.83167,0.93862,-1.31135,-1.56539,-0.99708,2.06643,-0.40457 +2.83429,0.93913,-1.31147,-1.56483,-0.99734,2.06605,-0.40419 +2.83692,0.93962,-1.31159,-1.56428,-0.99760,2.06569,-0.40382 +2.83954,0.94010,-1.31171,-1.56374,-0.99785,2.06532,-0.40345 +2.84216,0.94058,-1.31182,-1.56320,-0.99809,2.06497,-0.40309 +2.84478,0.94105,-1.31194,-1.56268,-0.99833,2.06462,-0.40274 +2.84740,0.94151,-1.31205,-1.56217,-0.99857,2.06428,-0.40239 +2.85003,0.94196,-1.31216,-1.56166,-0.99880,2.06394,-0.40205 +2.85265,0.94241,-1.31227,-1.56116,-0.99903,2.06361,-0.40171 +2.85527,0.94284,-1.31238,-1.56067,-0.99926,2.06329,-0.40139 +2.85789,0.94327,-1.31249,-1.56019,-0.99948,2.06297,-0.40106 +2.86051,0.94369,-1.31259,-1.55972,-0.99970,2.06265,-0.40074 +2.86314,0.94411,-1.31270,-1.55926,-0.99991,2.06234,-0.40043 +2.86576,0.94451,-1.31280,-1.55880,-1.00012,2.06204,-0.40013 +2.86838,0.94491,-1.31290,-1.55835,-1.00033,2.06174,-0.39982 +2.87100,0.94531,-1.31300,-1.55791,-1.00053,2.06145,-0.39953 +2.87362,0.94569,-1.31310,-1.55748,-1.00073,2.06116,-0.39924 +2.87625,0.94607,-1.31319,-1.55705,-1.00093,2.06087,-0.39895 +2.87887,0.94644,-1.31329,-1.55663,-1.00112,2.06059,-0.39867 +2.88149,0.94681,-1.31338,-1.55622,-1.00131,2.06032,-0.39840 +2.88411,0.94717,-1.31347,-1.55582,-1.00150,2.06005,-0.39813 +2.88673,0.94752,-1.31356,-1.55542,-1.00169,2.05979,-0.39786 +2.88936,0.94787,-1.31365,-1.55503,-1.00187,2.05953,-0.39760 +2.89198,0.94821,-1.31374,-1.55465,-1.00204,2.05927,-0.39734 +2.89460,0.94825,-1.31376,-1.55459,-1.00207,2.05924,-0.39731 +2.89722,0.94865,-1.31394,-1.55400,-1.00233,2.05895,-0.39702 +2.89984,0.94904,-1.31412,-1.55343,-1.00258,2.05866,-0.39673 +2.90246,0.94942,-1.31430,-1.55287,-1.00283,2.05837,-0.39644 +2.90509,0.94979,-1.31448,-1.55232,-1.00308,2.05809,-0.39616 +2.90771,0.95016,-1.31465,-1.55177,-1.00332,2.05782,-0.39588 +2.91033,0.95052,-1.31482,-1.55124,-1.00356,2.05754,-0.39561 +2.91295,0.95087,-1.31499,-1.55071,-1.00379,2.05728,-0.39535 +2.91557,0.95122,-1.31516,-1.55019,-1.00403,2.05702,-0.39509 +2.91820,0.95157,-1.31532,-1.54968,-1.00425,2.05676,-0.39483 +2.92082,0.95190,-1.31548,-1.54918,-1.00448,2.05651,-0.39458 +2.92344,0.95223,-1.31564,-1.54869,-1.00469,2.05626,-0.39433 +2.92606,0.95256,-1.31579,-1.54821,-1.00491,2.05602,-0.39409 +2.92868,0.95287,-1.31594,-1.54774,-1.00512,2.05578,-0.39385 +2.93131,0.95319,-1.31609,-1.54727,-1.00533,2.05554,-0.39362 +2.93393,0.95350,-1.31624,-1.54681,-1.00554,2.05531,-0.39339 +2.93655,0.95380,-1.31639,-1.54636,-1.00574,2.05509,-0.39316 +2.93917,0.95409,-1.31653,-1.54591,-1.00594,2.05486,-0.39294 +2.94179,0.95421,-1.31660,-1.54572,-1.00603,2.05477,-0.39285 +2.94442,0.95454,-1.31687,-1.54504,-1.00631,2.05453,-0.39260 +2.94704,0.95487,-1.31713,-1.54438,-1.00660,2.05428,-0.39236 +2.94966,0.95518,-1.31739,-1.54373,-1.00688,2.05405,-0.39212 +2.95228,0.95549,-1.31765,-1.54309,-1.00715,2.05381,-0.39189 +2.95490,0.95580,-1.31790,-1.54247,-1.00742,2.05358,-0.39166 +2.95752,0.95610,-1.31815,-1.54185,-1.00769,2.05336,-0.39144 +2.96015,0.95639,-1.31839,-1.54124,-1.00795,2.05314,-0.39122 +2.96277,0.95668,-1.31863,-1.54064,-1.00821,2.05292,-0.39101 +2.96539,0.95697,-1.31887,-1.54006,-1.00846,2.05271,-0.39079 +2.96801,0.95724,-1.31910,-1.53948,-1.00871,2.05250,-0.39059 +2.97063,0.95752,-1.31933,-1.53891,-1.00896,2.05229,-0.39038 +2.97326,0.95779,-1.31955,-1.53835,-1.00920,2.05209,-0.39018 +2.97588,0.95805,-1.31977,-1.53780,-1.00944,2.05189,-0.38999 +2.97850,0.95831,-1.31999,-1.53727,-1.00967,2.05170,-0.38979 +2.98112,0.95856,-1.32020,-1.53673,-1.00990,2.05151,-0.38961 +2.98374,0.95881,-1.32041,-1.53621,-1.01013,2.05132,-0.38942 +2.98637,0.95906,-1.32062,-1.53570,-1.01035,2.05114,-0.38924 +2.98899,0.95930,-1.32082,-1.53520,-1.01057,2.05095,-0.38906 +2.99161,0.95953,-1.32104,-1.53467,-1.01080,2.05078,-0.38888 +2.99423,0.95976,-1.32140,-1.53392,-1.01111,2.05060,-0.38871 +2.99685,0.95999,-1.32175,-1.53318,-1.01142,2.05043,-0.38854 +2.99948,0.96021,-1.32210,-1.53246,-1.01172,2.05027,-0.38838 +3.00210,0.96043,-1.32244,-1.53174,-1.01201,2.05010,-0.38822 +3.00472,0.96064,-1.32277,-1.53104,-1.01231,2.04994,-0.38806 +3.00734,0.96085,-1.32311,-1.53035,-1.01259,2.04978,-0.38790 +3.00996,0.96105,-1.32343,-1.52967,-1.01288,2.04963,-0.38775 +3.01259,0.96126,-1.32375,-1.52900,-1.01316,2.04948,-0.38760 +3.01521,0.96145,-1.32406,-1.52834,-1.01343,2.04933,-0.38746 +3.01783,0.96165,-1.32437,-1.52770,-1.01370,2.04918,-0.38731 +3.02045,0.96184,-1.32468,-1.52706,-1.01397,2.04904,-0.38717 +3.02307,0.96202,-1.32498,-1.52644,-1.01423,2.04890,-0.38703 +3.02569,0.96221,-1.32527,-1.52582,-1.01449,2.04876,-0.38690 +3.02832,0.96238,-1.32556,-1.52522,-1.01475,2.04862,-0.38676 +3.03094,0.96256,-1.32584,-1.52462,-1.01500,2.04849,-0.38663 +3.03356,0.96273,-1.32612,-1.52404,-1.01524,2.04836,-0.38651 +3.03618,0.96290,-1.32640,-1.52346,-1.01549,2.04823,-0.38638 +3.03880,0.96307,-1.32667,-1.52290,-1.01573,2.04810,-0.38626 +3.04143,0.96323,-1.32693,-1.52234,-1.01596,2.04798,-0.38614 +3.04405,0.96339,-1.32720,-1.52179,-1.01619,2.04786,-0.38602 +3.04667,0.96340,-1.32724,-1.52172,-1.01622,2.04785,-0.38601 +3.04929,0.96354,-1.32763,-1.52097,-1.01653,2.04775,-0.38591 +3.05191,0.96367,-1.32802,-1.52023,-1.01683,2.04764,-0.38581 +3.05454,0.96380,-1.32841,-1.51950,-1.01713,2.04754,-0.38571 +3.05716,0.96393,-1.32879,-1.51879,-1.01742,2.04745,-0.38562 +3.05978,0.96406,-1.32916,-1.51808,-1.01771,2.04735,-0.38552 +3.06240,0.96418,-1.32952,-1.51739,-1.01799,2.04726,-0.38543 +3.06502,0.96430,-1.32988,-1.51671,-1.01827,2.04717,-0.38534 +3.06765,0.96442,-1.33023,-1.51604,-1.01855,2.04708,-0.38526 +3.07027,0.96454,-1.33058,-1.51538,-1.01882,2.04699,-0.38517 +3.07289,0.96465,-1.33092,-1.51474,-1.01909,2.04690,-0.38509 +3.07551,0.96476,-1.33126,-1.51410,-1.01935,2.04682,-0.38501 +3.07813,0.96487,-1.33159,-1.51347,-1.01961,2.04673,-0.38493 +3.08076,0.96497,-1.33191,-1.51286,-1.01987,2.04665,-0.38485 +3.08338,0.96508,-1.33223,-1.51225,-1.02012,2.04657,-0.38477 +3.08600,0.96518,-1.33255,-1.51165,-1.02037,2.04650,-0.38470 +3.08862,0.96528,-1.33285,-1.51107,-1.02061,2.04642,-0.38462 +3.09124,0.96538,-1.33316,-1.51049,-1.02085,2.04635,-0.38455 +3.09386,0.96541,-1.33329,-1.51025,-1.02095,2.04632,-0.38452 +3.09649,0.96550,-1.33368,-1.50954,-1.02124,2.04625,-0.38446 +3.09911,0.96558,-1.33407,-1.50884,-1.02153,2.04619,-0.38440 +3.10173,0.96566,-1.33445,-1.50815,-1.02181,2.04613,-0.38434 +3.10435,0.96574,-1.33482,-1.50747,-1.02209,2.04607,-0.38429 +3.10697,0.96581,-1.33519,-1.50680,-1.02236,2.04601,-0.38423 +3.10960,0.96589,-1.33555,-1.50615,-1.02263,2.04595,-0.38417 +3.11222,0.96596,-1.33590,-1.50550,-1.02290,2.04590,-0.38412 +3.11484,0.96603,-1.33625,-1.50486,-1.02316,2.04584,-0.38407 +3.11746,0.96610,-1.33660,-1.50424,-1.02342,2.04579,-0.38402 +3.12008,0.96617,-1.33693,-1.50363,-1.02367,2.04574,-0.38397 +3.12271,0.96624,-1.33726,-1.50302,-1.02392,2.04569,-0.38392 +3.12533,0.96630,-1.33759,-1.50243,-1.02417,2.04564,-0.38387 +3.12795,0.96637,-1.33791,-1.50184,-1.02441,2.04559,-0.38383 +3.13057,0.96637,-1.33799,-1.50171,-1.02447,2.04558,-0.38382 +3.13319,0.96636,-1.33846,-1.50093,-1.02478,2.04559,-0.38383 +3.13582,0.96635,-1.33893,-1.50016,-1.02508,2.04559,-0.38384 +3.13844,0.96634,-1.33939,-1.49941,-1.02538,2.04560,-0.38384 +3.14106,0.96633,-1.33984,-1.49867,-1.02567,2.04560,-0.38385 +3.14368,0.96632,-1.34028,-1.49794,-1.02596,2.04561,-0.38386 +3.14630,0.96631,-1.34071,-1.49722,-1.02625,2.04562,-0.38387 +3.14893,0.96630,-1.34114,-1.49651,-1.02653,2.04562,-0.38388 +3.15155,0.96629,-1.34156,-1.49582,-1.02681,2.04563,-0.38389 +3.15417,0.96628,-1.34197,-1.49513,-1.02708,2.04564,-0.38389 +3.15679,0.96627,-1.34238,-1.49446,-1.02735,2.04564,-0.38390 +3.15941,0.96625,-1.34278,-1.49380,-1.02762,2.04565,-0.38391 +3.16203,0.96624,-1.34317,-1.49315,-1.02788,2.04566,-0.38392 +3.16466,0.96623,-1.34355,-1.49251,-1.02814,2.04567,-0.38393 +3.16728,0.96622,-1.34393,-1.49188,-1.02840,2.04567,-0.38394 +3.16990,0.96620,-1.34431,-1.49126,-1.02865,2.04568,-0.38395 +3.17252,0.96619,-1.34467,-1.49065,-1.02890,2.04569,-0.38396 +3.17514,0.96618,-1.34503,-1.49005,-1.02914,2.04570,-0.38397 +3.17777,0.96615,-1.34538,-1.48949,-1.02937,2.04572,-0.38399 +3.18039,0.96598,-1.34597,-1.48863,-1.02969,2.04584,-0.38412 +3.18301,0.96581,-1.34655,-1.48778,-1.03001,2.04596,-0.38424 +3.18563,0.96565,-1.34712,-1.48695,-1.03032,2.04609,-0.38436 +3.18825,0.96549,-1.34768,-1.48613,-1.03063,2.04620,-0.38448 +3.19088,0.96533,-1.34823,-1.48532,-1.03094,2.04632,-0.38460 +3.19350,0.96517,-1.34878,-1.48453,-1.03124,2.04644,-0.38472 +3.19612,0.96501,-1.34931,-1.48374,-1.03154,2.04655,-0.38483 +3.19874,0.96486,-1.34984,-1.48297,-1.03184,2.04666,-0.38495 +3.20136,0.96471,-1.35035,-1.48222,-1.03213,2.04677,-0.38506 +3.20399,0.96456,-1.35086,-1.48147,-1.03241,2.04688,-0.38517 +3.20661,0.96442,-1.35136,-1.48074,-1.03270,2.04699,-0.38528 +3.20923,0.96427,-1.35185,-1.48002,-1.03298,2.04710,-0.38539 +3.21185,0.96413,-1.35233,-1.47931,-1.03325,2.04720,-0.38549 +3.21447,0.96399,-1.35280,-1.47861,-1.03352,2.04730,-0.38560 +3.21709,0.96385,-1.35327,-1.47792,-1.03379,2.04741,-0.38570 +3.21972,0.96371,-1.35373,-1.47725,-1.03405,2.04751,-0.38580 +3.22234,0.96358,-1.35418,-1.47658,-1.03432,2.04761,-0.38590 +3.22496,0.96345,-1.35462,-1.47593,-1.03457,2.04770,-0.38600 +3.22758,0.96332,-1.35505,-1.47528,-1.03483,2.04780,-0.38610 +3.23020,0.96319,-1.35548,-1.47465,-1.03508,2.04789,-0.38619 +3.23283,0.96306,-1.35590,-1.47402,-1.03532,2.04799,-0.38629 +3.23545,0.96294,-1.35631,-1.47341,-1.03557,2.04808,-0.38638 +3.23807,0.96282,-1.35672,-1.47280,-1.03581,2.04817,-0.38647 +3.24069,0.96270,-1.35712,-1.47221,-1.03604,2.04826,-0.38656 +3.24331,0.96258,-1.35751,-1.47162,-1.03628,2.04835,-0.38665 +3.24594,0.96245,-1.35788,-1.47108,-1.03649,2.04844,-0.38675 +3.24856,0.96216,-1.35847,-1.47030,-1.03678,2.04866,-0.38696 +3.25118,0.96187,-1.35906,-1.46953,-1.03706,2.04887,-0.38718 +3.25380,0.96159,-1.35963,-1.46878,-1.03734,2.04908,-0.38739 +3.25642,0.96131,-1.36019,-1.46803,-1.03762,2.04929,-0.38760 +3.25905,0.96103,-1.36074,-1.46730,-1.03789,2.04949,-0.38780 +3.26167,0.96076,-1.36129,-1.46658,-1.03816,2.04969,-0.38800 +3.26429,0.96050,-1.36182,-1.46587,-1.03842,2.04989,-0.38820 +3.26691,0.96023,-1.36235,-1.46517,-1.03869,2.05008,-0.38840 +3.26953,0.95998,-1.36286,-1.46448,-1.03895,2.05027,-0.38859 +3.27216,0.95972,-1.36337,-1.46380,-1.03920,2.05046,-0.38878 +3.27478,0.95947,-1.36387,-1.46313,-1.03945,2.05064,-0.38896 +3.27740,0.95923,-1.36436,-1.46248,-1.03970,2.05082,-0.38915 +3.28002,0.95899,-1.36484,-1.46183,-1.03995,2.05100,-0.38933 +3.28264,0.95875,-1.36532,-1.46119,-1.04019,2.05118,-0.38950 +3.28526,0.95851,-1.36578,-1.46057,-1.04043,2.05135,-0.38968 +3.28789,0.95828,-1.36624,-1.45995,-1.04067,2.05152,-0.38985 +3.29051,0.95806,-1.36669,-1.45935,-1.04090,2.05169,-0.39002 +3.29313,0.95784,-1.36713,-1.45875,-1.04113,2.05186,-0.39019 +3.29575,0.95762,-1.36757,-1.45816,-1.04136,2.05202,-0.39035 +3.29837,0.95740,-1.36800,-1.45758,-1.04159,2.05218,-0.39052 +3.30100,0.95719,-1.36842,-1.45701,-1.04181,2.05234,-0.39067 +3.30362,0.95698,-1.36883,-1.45645,-1.04203,2.05249,-0.39083 +3.30624,0.95677,-1.36924,-1.45590,-1.04224,2.05264,-0.39099 +3.30886,0.95657,-1.36964,-1.45536,-1.04246,2.05280,-0.39114 +3.31148,0.95644,-1.36989,-1.45502,-1.04259,2.05289,-0.39124 +3.31411,0.95612,-1.37042,-1.45435,-1.04283,2.05313,-0.39148 +3.31673,0.95581,-1.37095,-1.45369,-1.04308,2.05336,-0.39171 +3.31935,0.95550,-1.37146,-1.45304,-1.04332,2.05359,-0.39194 +3.32197,0.95519,-1.37196,-1.45240,-1.04356,2.05382,-0.39217 +3.32459,0.95489,-1.37246,-1.45177,-1.04379,2.05404,-0.39240 +3.32722,0.95460,-1.37295,-1.45115,-1.04403,2.05426,-0.39262 +3.32984,0.95431,-1.37343,-1.45054,-1.04426,2.05447,-0.39283 +3.33246,0.95403,-1.37390,-1.44994,-1.04448,2.05468,-0.39305 +3.33508,0.95375,-1.37436,-1.44935,-1.04471,2.05489,-0.39326 +3.33770,0.95347,-1.37482,-1.44877,-1.04493,2.05510,-0.39346 +3.34033,0.95320,-1.37527,-1.44820,-1.04515,2.05530,-0.39367 +3.34295,0.95293,-1.37571,-1.44763,-1.04536,2.05550,-0.39387 +3.34557,0.95267,-1.37614,-1.44708,-1.04558,2.05569,-0.39407 +3.34819,0.95241,-1.37657,-1.44653,-1.04579,2.05588,-0.39426 +3.35081,0.95216,-1.37699,-1.44599,-1.04600,2.05607,-0.39445 +3.35343,0.95191,-1.37740,-1.44546,-1.04620,2.05626,-0.39464 +3.35606,0.95167,-1.37780,-1.44494,-1.04640,2.05644,-0.39482 +3.35868,0.95143,-1.37820,-1.44443,-1.04660,2.05662,-0.39501 +3.36130,0.95125,-1.37847,-1.44410,-1.04673,2.05674,-0.39514 +3.36392,0.95073,-1.37914,-1.44335,-1.04699,2.05713,-0.39552 +3.36654,0.95022,-1.37980,-1.44261,-1.04724,2.05751,-0.39591 +3.36917,0.94972,-1.38045,-1.44188,-1.04749,2.05788,-0.39628 +3.37179,0.94923,-1.38108,-1.44117,-1.04774,2.05824,-0.39665 +3.37441,0.94874,-1.38171,-1.44046,-1.04798,2.05860,-0.39702 +3.37703,0.94826,-1.38233,-1.43977,-1.04823,2.05895,-0.39737 +3.37965,0.94780,-1.38293,-1.43908,-1.04847,2.05930,-0.39772 +3.38228,0.94734,-1.38353,-1.43841,-1.04871,2.05964,-0.39807 +3.38490,0.94688,-1.38411,-1.43775,-1.04894,2.05998,-0.39841 +3.38752,0.94644,-1.38469,-1.43709,-1.04917,2.06031,-0.39875 +3.39014,0.94600,-1.38525,-1.43645,-1.04940,2.06063,-0.39908 +3.39276,0.94557,-1.38581,-1.43582,-1.04963,2.06095,-0.39940 +3.39539,0.94515,-1.38636,-1.43519,-1.04986,2.06126,-0.39972 +3.39801,0.94473,-1.38689,-1.43458,-1.05008,2.06157,-0.40003 +3.40063,0.94432,-1.38742,-1.43397,-1.05030,2.06187,-0.40034 +3.40325,0.94392,-1.38794,-1.43338,-1.05052,2.06217,-0.40064 +3.40587,0.94353,-1.38845,-1.43279,-1.05073,2.06246,-0.40094 +3.40850,0.94314,-1.38896,-1.43221,-1.05095,2.06275,-0.40123 +3.41112,0.94276,-1.38945,-1.43164,-1.05116,2.06303,-0.40152 +3.41374,0.94239,-1.38994,-1.43108,-1.05136,2.06331,-0.40181 +3.41636,0.94202,-1.39041,-1.43053,-1.05157,2.06359,-0.40209 +3.41898,0.94165,-1.39088,-1.42998,-1.05177,2.06385,-0.40236 +3.42160,0.94130,-1.39135,-1.42945,-1.05197,2.06412,-0.40263 +3.42423,0.94095,-1.39180,-1.42892,-1.05217,2.06438,-0.40290 +3.42685,0.94060,-1.39225,-1.42840,-1.05237,2.06463,-0.40316 +3.42947,0.94027,-1.39268,-1.42789,-1.05256,2.06489,-0.40342 +3.43209,0.93993,-1.39312,-1.42738,-1.05276,2.06513,-0.40367 +3.43471,0.93961,-1.39354,-1.42689,-1.05295,2.06538,-0.40392 +3.43734,0.93929,-1.39396,-1.42640,-1.05313,2.06561,-0.40416 +3.43996,0.93897,-1.39437,-1.42592,-1.05332,2.06585,-0.40440 +3.44258,0.93866,-1.39477,-1.42544,-1.05350,2.06608,-0.40464 +3.44520,0.93835,-1.39517,-1.42498,-1.05368,2.06631,-0.40487 +3.44782,0.93805,-1.39556,-1.42452,-1.05386,2.06653,-0.40510 +3.45045,0.93776,-1.39594,-1.42407,-1.05404,2.06675,-0.40533 +3.45307,0.93763,-1.39611,-1.42388,-1.05411,2.06685,-0.40543 +3.45569,0.93718,-1.39662,-1.42332,-1.05431,2.06718,-0.40577 +3.45831,0.93674,-1.39713,-1.42278,-1.05450,2.06751,-0.40611 +3.46093,0.93630,-1.39763,-1.42224,-1.05469,2.06783,-0.40643 +3.46356,0.93588,-1.39812,-1.42171,-1.05488,2.06814,-0.40676 +3.46618,0.93546,-1.39860,-1.42119,-1.05507,2.06845,-0.40708 +3.46880,0.93505,-1.39907,-1.42068,-1.05526,2.06876,-0.40739 +3.47142,0.93465,-1.39954,-1.42018,-1.05544,2.06906,-0.40770 +3.47404,0.93425,-1.40000,-1.41968,-1.05562,2.06935,-0.40800 +3.47666,0.93386,-1.40045,-1.41919,-1.05580,2.06964,-0.40830 +3.47929,0.93348,-1.40089,-1.41871,-1.05598,2.06992,-0.40859 +3.48191,0.93310,-1.40133,-1.41823,-1.05616,2.07020,-0.40888 +3.48453,0.93273,-1.40176,-1.41777,-1.05633,2.07048,-0.40916 +3.48715,0.93236,-1.40218,-1.41730,-1.05651,2.07075,-0.40944 +3.48977,0.93201,-1.40259,-1.41685,-1.05668,2.07101,-0.40971 +3.49240,0.93165,-1.40300,-1.41640,-1.05685,2.07128,-0.40998 +3.49502,0.93131,-1.40340,-1.41596,-1.05701,2.07153,-0.41025 +3.49764,0.93097,-1.40379,-1.41553,-1.05718,2.07178,-0.41051 +3.50026,0.93063,-1.40418,-1.41510,-1.05734,2.07203,-0.41077 +3.50288,0.93030,-1.40456,-1.41468,-1.05750,2.07228,-0.41102 +3.50551,0.92998,-1.40493,-1.41427,-1.05766,2.07252,-0.41127 +3.50813,0.92972,-1.40524,-1.41393,-1.05779,2.07272,-0.41147 +3.51075,0.92928,-1.40571,-1.41344,-1.05796,2.07304,-0.41180 +3.51337,0.92885,-1.40618,-1.41296,-1.05814,2.07335,-0.41213 +3.51599,0.92843,-1.40663,-1.41248,-1.05831,2.07366,-0.41245 +3.51862,0.92802,-1.40708,-1.41202,-1.05848,2.07397,-0.41277 +3.52124,0.92762,-1.40752,-1.41156,-1.05865,2.07427,-0.41308 +3.52386,0.92722,-1.40796,-1.41110,-1.05881,2.07456,-0.41338 +3.52648,0.92683,-1.40838,-1.41066,-1.05898,2.07485,-0.41369 +3.52910,0.92644,-1.40880,-1.41022,-1.05914,2.07514,-0.41398 +3.53173,0.92606,-1.40922,-1.40978,-1.05930,2.07542,-0.41427 +3.53435,0.92569,-1.40962,-1.40935,-1.05946,2.07569,-0.41456 +3.53697,0.92533,-1.41002,-1.40893,-1.05962,2.07596,-0.41484 +3.53959,0.92497,-1.41041,-1.40852,-1.05977,2.07623,-0.41512 +3.54221,0.92462,-1.41080,-1.40811,-1.05993,2.07649,-0.41539 +3.54483,0.92427,-1.41118,-1.40771,-1.06008,2.07675,-0.41565 +3.54746,0.92393,-1.41155,-1.40731,-1.06023,2.07700,-0.41592 +3.55008,0.92359,-1.41191,-1.40692,-1.06038,2.07725,-0.41618 +3.55270,0.92328,-1.41226,-1.40656,-1.06051,2.07748,-0.41642 +3.55532,0.92274,-1.41278,-1.40607,-1.06068,2.07788,-0.41684 +3.55794,0.92220,-1.41330,-1.40559,-1.06084,2.07827,-0.41724 +3.56057,0.92168,-1.41381,-1.40511,-1.06100,2.07866,-0.41764 +3.56319,0.92117,-1.41431,-1.40464,-1.06116,2.07903,-0.41804 +3.56581,0.92067,-1.41480,-1.40417,-1.06132,2.07940,-0.41842 +3.56843,0.92017,-1.41529,-1.40372,-1.06147,2.07977,-0.41880 +3.57105,0.91969,-1.41576,-1.40327,-1.06163,2.08013,-0.41918 +3.57368,0.91921,-1.41623,-1.40282,-1.06178,2.08048,-0.41954 +3.57630,0.91874,-1.41669,-1.40238,-1.06194,2.08082,-0.41990 +3.57892,0.91828,-1.41714,-1.40195,-1.06209,2.08116,-0.42026 +3.58154,0.91783,-1.41759,-1.40153,-1.06224,2.08150,-0.42061 +3.58416,0.91739,-1.41802,-1.40111,-1.06239,2.08182,-0.42095 +3.58679,0.91695,-1.41845,-1.40070,-1.06253,2.08215,-0.42129 +3.58941,0.91652,-1.41887,-1.40029,-1.06268,2.08246,-0.42162 +3.59203,0.91610,-1.41929,-1.39989,-1.06282,2.08277,-0.42195 +3.59465,0.91568,-1.41970,-1.39949,-1.06297,2.08308,-0.42227 +3.59727,0.91528,-1.42010,-1.39910,-1.06311,2.08338,-0.42259 +3.59990,0.91487,-1.42049,-1.39872,-1.06325,2.08368,-0.42290 +3.60252,0.91448,-1.42088,-1.39834,-1.06339,2.08397,-0.42320 +3.60514,0.91409,-1.42126,-1.39797,-1.06352,2.08425,-0.42350 +3.60776,0.91371,-1.42164,-1.39760,-1.06366,2.08453,-0.42380 +3.61038,0.91334,-1.42201,-1.39724,-1.06379,2.08481,-0.42409 +3.61300,0.91297,-1.42237,-1.39688,-1.06393,2.08508,-0.42437 +3.61563,0.91261,-1.42273,-1.39653,-1.06406,2.08535,-0.42466 +3.61825,0.91226,-1.42308,-1.39618,-1.06419,2.08561,-0.42493 +3.62087,0.91191,-1.42342,-1.39584,-1.06432,2.08587,-0.42520 +3.62349,0.91186,-1.42347,-1.39580,-1.06433,2.08591,-0.42525 +3.62611,0.91131,-1.42397,-1.39538,-1.06447,2.08631,-0.42567 +3.62874,0.91077,-1.42445,-1.39496,-1.06461,2.08670,-0.42609 +3.63136,0.91024,-1.42493,-1.39454,-1.06475,2.08709,-0.42650 +3.63398,0.90972,-1.42540,-1.39414,-1.06488,2.08747,-0.42690 +3.63660,0.90921,-1.42586,-1.39374,-1.06501,2.08785,-0.42729 +3.63922,0.90871,-1.42631,-1.39334,-1.06515,2.08822,-0.42768 +3.64185,0.90822,-1.42676,-1.39295,-1.06528,2.08858,-0.42807 +3.64447,0.90774,-1.42719,-1.39257,-1.06541,2.08893,-0.42844 +3.64709,0.90726,-1.42762,-1.39219,-1.06554,2.08928,-0.42881 +3.64971,0.90679,-1.42805,-1.39181,-1.06567,2.08963,-0.42918 +3.65233,0.90634,-1.42846,-1.39145,-1.06580,2.08996,-0.42953 +3.65496,0.90589,-1.42887,-1.39108,-1.06592,2.09029,-0.42988 +3.65758,0.90544,-1.42928,-1.39072,-1.06605,2.09062,-0.43023 +3.66020,0.90501,-1.42967,-1.39037,-1.06617,2.09094,-0.43057 +3.66282,0.90458,-1.43006,-1.39002,-1.06630,2.09125,-0.43090 +3.66544,0.90416,-1.43044,-1.38968,-1.06642,2.09156,-0.43123 +3.66807,0.90375,-1.43082,-1.38934,-1.06654,2.09187,-0.43156 +3.67069,0.90334,-1.43119,-1.38901,-1.06666,2.09217,-0.43187 +3.67331,0.90294,-1.43155,-1.38868,-1.06678,2.09246,-0.43219 +3.67593,0.90255,-1.43191,-1.38836,-1.06690,2.09275,-0.43249 +3.67855,0.90217,-1.43226,-1.38804,-1.06702,2.09303,-0.43279 +3.68117,0.90179,-1.43261,-1.38772,-1.06713,2.09331,-0.43309 +3.68380,0.90142,-1.43295,-1.38741,-1.06725,2.09358,-0.43338 +3.68642,0.90105,-1.43328,-1.38711,-1.06736,2.09385,-0.43367 +3.68904,0.90072,-1.43358,-1.38683,-1.06746,2.09410,-0.43393 +3.69166,0.90025,-1.43399,-1.38649,-1.06758,2.09444,-0.43430 +3.69428,0.89979,-1.43440,-1.38615,-1.06770,2.09478,-0.43466 +3.69691,0.89934,-1.43479,-1.38582,-1.06781,2.09511,-0.43502 +3.69953,0.89889,-1.43518,-1.38549,-1.06792,2.09544,-0.43536 +3.70215,0.89846,-1.43556,-1.38516,-1.06804,2.09576,-0.43571 +3.70477,0.89803,-1.43594,-1.38484,-1.06815,2.09607,-0.43604 +3.70739,0.89760,-1.43631,-1.38453,-1.06826,2.09638,-0.43638 +3.71002,0.89719,-1.43667,-1.38422,-1.06837,2.09669,-0.43670 +3.71264,0.89678,-1.43703,-1.38391,-1.06848,2.09699,-0.43702 +3.71526,0.89638,-1.43738,-1.38361,-1.06859,2.09728,-0.43734 +3.71788,0.89599,-1.43772,-1.38331,-1.06869,2.09757,-0.43765 +3.72050,0.89560,-1.43806,-1.38302,-1.06880,2.09785,-0.43795 +3.72313,0.89523,-1.43839,-1.38273,-1.06891,2.09813,-0.43825 +3.72575,0.89485,-1.43872,-1.38244,-1.06901,2.09841,-0.43855 +3.72837,0.89449,-1.43905,-1.38216,-1.06912,2.09867,-0.43884 +3.73099,0.89433,-1.43918,-1.38205,-1.06916,2.09879,-0.43896 +3.73361,0.89388,-1.43956,-1.38174,-1.06926,2.09912,-0.43931 +3.73623,0.89344,-1.43993,-1.38144,-1.06936,2.09944,-0.43966 +3.73886,0.89301,-1.44030,-1.38115,-1.06946,2.09976,-0.44000 +3.74148,0.89258,-1.44065,-1.38085,-1.06956,2.10007,-0.44034 +3.74410,0.89216,-1.44101,-1.38057,-1.06966,2.10038,-0.44067 +3.74672,0.89175,-1.44136,-1.38028,-1.06976,2.10068,-0.44099 +3.74934,0.89135,-1.44170,-1.38000,-1.06986,2.10097,-0.44131 +3.75197,0.89095,-1.44203,-1.37973,-1.06996,2.10126,-0.44163 +3.75459,0.89056,-1.44236,-1.37945,-1.07006,2.10155,-0.44193 +3.75721,0.89018,-1.44269,-1.37919,-1.07015,2.10183,-0.44224 +3.75983,0.88980,-1.44301,-1.37892,-1.07025,2.10211,-0.44254 +3.76245,0.88943,-1.44332,-1.37866,-1.07034,2.10238,-0.44283 +3.76508,0.88928,-1.44345,-1.37855,-1.07038,2.10249,-0.44295 +3.76770,0.88881,-1.44384,-1.37826,-1.07048,2.10283,-0.44332 +3.77032,0.88836,-1.44421,-1.37797,-1.07057,2.10316,-0.44368 +3.77294,0.88791,-1.44458,-1.37768,-1.07067,2.10349,-0.44403 +3.77556,0.88747,-1.44494,-1.37740,-1.07077,2.10381,-0.44438 +3.77819,0.88704,-1.44530,-1.37712,-1.07086,2.10413,-0.44472 +3.78081,0.88662,-1.44565,-1.37685,-1.07095,2.10444,-0.44506 +3.78343,0.88620,-1.44599,-1.37657,-1.07105,2.10474,-0.44539 +3.78605,0.88579,-1.44633,-1.37631,-1.07114,2.10504,-0.44572 +3.78867,0.88539,-1.44667,-1.37604,-1.07123,2.10534,-0.44603 +3.79130,0.88499,-1.44699,-1.37578,-1.07132,2.10562,-0.44635 +3.79392,0.88461,-1.44732,-1.37553,-1.07141,2.10591,-0.44666 +3.79654,0.88422,-1.44763,-1.37528,-1.07150,2.10619,-0.44696 +3.79916,0.88385,-1.44794,-1.37503,-1.07159,2.10646,-0.44726 +3.80178,0.88351,-1.44823,-1.37480,-1.07167,2.10671,-0.44753 +3.80440,0.88302,-1.44860,-1.37455,-1.07175,2.10707,-0.44792 +3.80703,0.88254,-1.44897,-1.37429,-1.07183,2.10742,-0.44830 +3.80965,0.88207,-1.44933,-1.37404,-1.07191,2.10776,-0.44867 +3.81227,0.88161,-1.44968,-1.37380,-1.07198,2.10810,-0.44904 +3.81489,0.88116,-1.45003,-1.37355,-1.07206,2.10843,-0.44940 +3.81751,0.88071,-1.45037,-1.37331,-1.07214,2.10875,-0.44976 +3.82014,0.88027,-1.45071,-1.37308,-1.07222,2.10907,-0.45010 +3.82276,0.87984,-1.45104,-1.37284,-1.07229,2.10938,-0.45045 +3.82538,0.87942,-1.45137,-1.37261,-1.07237,2.10969,-0.45078 +3.82800,0.87901,-1.45169,-1.37239,-1.07244,2.10999,-0.45112 +3.83062,0.87860,-1.45200,-1.37216,-1.07252,2.11029,-0.45144 +3.83325,0.87820,-1.45231,-1.37194,-1.07259,2.11058,-0.45176 +3.83587,0.87780,-1.45262,-1.37172,-1.07267,2.11087,-0.45208 +3.83849,0.87742,-1.45292,-1.37151,-1.07274,2.11115,-0.45239 +3.84111,0.87704,-1.45321,-1.37129,-1.07282,2.11143,-0.45269 +3.84373,0.87673,-1.45345,-1.37113,-1.07287,2.11165,-0.45294 +3.84636,0.87626,-1.45377,-1.37095,-1.07292,2.11199,-0.45331 +3.84898,0.87581,-1.45408,-1.37078,-1.07297,2.11232,-0.45367 +3.85160,0.87536,-1.45438,-1.37061,-1.07302,2.11265,-0.45403 +3.85422,0.87492,-1.45469,-1.37044,-1.07307,2.11297,-0.45438 +3.85684,0.87449,-1.45498,-1.37027,-1.07312,2.11328,-0.45473 +3.85947,0.87406,-1.45527,-1.37010,-1.07317,2.11359,-0.45507 +3.86209,0.87365,-1.45556,-1.36994,-1.07322,2.11390,-0.45540 +3.86471,0.87324,-1.45584,-1.36977,-1.07327,2.11420,-0.45573 +3.86733,0.87283,-1.45612,-1.36961,-1.07332,2.11449,-0.45606 +3.86995,0.87244,-1.45639,-1.36946,-1.07337,2.11478,-0.45637 +3.87257,0.87205,-1.45666,-1.36930,-1.07342,2.11506,-0.45669 +3.87520,0.87173,-1.45687,-1.36918,-1.07345,2.11529,-0.45694 +3.87782,0.87123,-1.45715,-1.36910,-1.07346,2.11565,-0.45734 +3.88044,0.87074,-1.45743,-1.36902,-1.07347,2.11601,-0.45774 +3.88306,0.87026,-1.45770,-1.36894,-1.07347,2.11636,-0.45813 +3.88568,0.86978,-1.45797,-1.36887,-1.07348,2.11671,-0.45851 +3.88831,0.86931,-1.45823,-1.36879,-1.07349,2.11704,-0.45888 +3.89093,0.86886,-1.45849,-1.36871,-1.07350,2.11738,-0.45925 +3.89355,0.86841,-1.45874,-1.36863,-1.07351,2.11770,-0.45961 +3.89617,0.86796,-1.45899,-1.36856,-1.07352,2.11802,-0.45997 +3.89879,0.86753,-1.45924,-1.36848,-1.07353,2.11834,-0.46032 +3.90142,0.86710,-1.45948,-1.36841,-1.07354,2.11865,-0.46066 +3.90404,0.86668,-1.45972,-1.36833,-1.07356,2.11895,-0.46100 +3.90666,0.86627,-1.45995,-1.36826,-1.07357,2.11925,-0.46133 +3.90928,0.86587,-1.46018,-1.36819,-1.07358,2.11954,-0.46166 +3.91190,0.86547,-1.46041,-1.36811,-1.07360,2.11983,-0.46198 +3.91453,0.86510,-1.46061,-1.36806,-1.07360,2.12010,-0.46228 +3.91715,0.86457,-1.46082,-1.36813,-1.07354,2.12048,-0.46271 +3.91977,0.86405,-1.46103,-1.36820,-1.07349,2.12086,-0.46313 +3.92239,0.86354,-1.46124,-1.36826,-1.07343,2.12123,-0.46354 +3.92501,0.86303,-1.46144,-1.36833,-1.07338,2.12159,-0.46395 +3.92764,0.86254,-1.46164,-1.36839,-1.07333,2.12195,-0.46435 +3.93026,0.86205,-1.46183,-1.36845,-1.07328,2.12230,-0.46474 +3.93288,0.86157,-1.46203,-1.36851,-1.07323,2.12265,-0.46513 +3.93550,0.86110,-1.46221,-1.36856,-1.07318,2.12299,-0.46551 +3.93812,0.86064,-1.46240,-1.36862,-1.07314,2.12332,-0.46588 +3.94074,0.86019,-1.46258,-1.36867,-1.07310,2.12365,-0.46625 +3.94337,0.85974,-1.46276,-1.36873,-1.07305,2.12397,-0.46661 +3.94599,0.85931,-1.46294,-1.36878,-1.07301,2.12428,-0.46696 +3.94861,0.85888,-1.46311,-1.36882,-1.07297,2.12460,-0.46731 +3.95123,0.85846,-1.46328,-1.36887,-1.07293,2.12490,-0.46765 +3.95385,0.85804,-1.46345,-1.36892,-1.07290,2.12520,-0.46799 +3.95648,0.85764,-1.46362,-1.36896,-1.07286,2.12549,-0.46832 +3.95910,0.85724,-1.46378,-1.36901,-1.07282,2.12578,-0.46865 +3.96172,0.85685,-1.46394,-1.36905,-1.07279,2.12607,-0.46896 +3.96434,0.85672,-1.46399,-1.36907,-1.07278,2.12616,-0.46907 +3.96696,0.85626,-1.46415,-1.36917,-1.07271,2.12649,-0.46944 +3.96959,0.85581,-1.46430,-1.36928,-1.07264,2.12682,-0.46981 +3.97221,0.85536,-1.46446,-1.36938,-1.07258,2.12714,-0.47017 +3.97483,0.85492,-1.46461,-1.36948,-1.07252,2.12745,-0.47053 +3.97745,0.85449,-1.46476,-1.36957,-1.07246,2.12776,-0.47088 +3.98007,0.85407,-1.46491,-1.36967,-1.07240,2.12807,-0.47122 +3.98270,0.85365,-1.46505,-1.36976,-1.07234,2.12837,-0.47156 +3.98532,0.85325,-1.46519,-1.36985,-1.07228,2.12866,-0.47190 +3.98794,0.85285,-1.46533,-1.36994,-1.07223,2.12895,-0.47222 +3.99056,0.85245,-1.46547,-1.37002,-1.07218,2.12924,-0.47254 +3.99318,0.85207,-1.46560,-1.37011,-1.07213,2.12951,-0.47286 +3.99580,0.85202,-1.46561,-1.37013,-1.07211,2.12955,-0.47290 +3.99843,0.85151,-1.46572,-1.37037,-1.07199,2.12991,-0.47331 +4.00105,0.85102,-1.46582,-1.37061,-1.07186,2.13027,-0.47372 +4.00367,0.85053,-1.46592,-1.37084,-1.07174,2.13062,-0.47411 +4.00629,0.85005,-1.46603,-1.37107,-1.07162,2.13096,-0.47450 +4.00891,0.84958,-1.46612,-1.37129,-1.07150,2.13130,-0.47489 +4.01154,0.84912,-1.46622,-1.37151,-1.07139,2.13163,-0.47526 +4.01416,0.84867,-1.46632,-1.37172,-1.07128,2.13196,-0.47563 +4.01678,0.84822,-1.46641,-1.37193,-1.07117,2.13228,-0.47600 +4.01940,0.84779,-1.46650,-1.37213,-1.07106,2.13259,-0.47636 +4.02202,0.84736,-1.46659,-1.37233,-1.07096,2.13290,-0.47671 +4.02465,0.84694,-1.46668,-1.37253,-1.07085,2.13320,-0.47705 +4.02727,0.84652,-1.46677,-1.37273,-1.07075,2.13350,-0.47739 +4.02989,0.84612,-1.46686,-1.37292,-1.07066,2.13379,-0.47773 +4.03251,0.84572,-1.46694,-1.37310,-1.07056,2.13408,-0.47805 +4.03513,0.84532,-1.46703,-1.37328,-1.07046,2.13436,-0.47837 +4.03776,0.84494,-1.46711,-1.37346,-1.07037,2.13464,-0.47869 +4.04038,0.84456,-1.46719,-1.37364,-1.07028,2.13491,-0.47900 +4.04300,0.84422,-1.46726,-1.37380,-1.07020,2.13516,-0.47928 +4.04562,0.84380,-1.46733,-1.37404,-1.07008,2.13546,-0.47962 +4.04824,0.84340,-1.46739,-1.37427,-1.06996,2.13575,-0.47996 +4.05087,0.84299,-1.46746,-1.37449,-1.06985,2.13604,-0.48029 +4.05349,0.84260,-1.46752,-1.37472,-1.06974,2.13632,-0.48062 +4.05611,0.84221,-1.46758,-1.37494,-1.06963,2.13660,-0.48094 +4.05873,0.84183,-1.46764,-1.37515,-1.06952,2.13687,-0.48125 +4.06135,0.84146,-1.46770,-1.37536,-1.06942,2.13714,-0.48156 +4.06397,0.84109,-1.46776,-1.37557,-1.06931,2.13741,-0.48186 +4.06660,0.84098,-1.46778,-1.37563,-1.06928,2.13749,-0.48195 +4.06922,0.84059,-1.46783,-1.37587,-1.06916,2.13777,-0.48227 +4.07184,0.84021,-1.46787,-1.37611,-1.06904,2.13804,-0.48259 +4.07446,0.83983,-1.46792,-1.37635,-1.06893,2.13831,-0.48289 +4.07708,0.83947,-1.46797,-1.37658,-1.06882,2.13857,-0.48320 +4.07971,0.83911,-1.46801,-1.37680,-1.06871,2.13883,-0.48350 +4.08233,0.83907,-1.46802,-1.37683,-1.06869,2.13886,-0.48353 +4.08495,0.83870,-1.46805,-1.37708,-1.06857,2.13912,-0.48383 +4.08757,0.83834,-1.46808,-1.37733,-1.06845,2.13938,-0.48413 +4.09019,0.83810,-1.46809,-1.37752,-1.06836,2.13956,-0.48433 +4.09282,0.83774,-1.46802,-1.37794,-1.06817,2.13981,-0.48463 +4.09544,0.83739,-1.46795,-1.37835,-1.06799,2.14006,-0.48491 +4.09806,0.83705,-1.46788,-1.37875,-1.06781,2.14031,-0.48520 +4.10068,0.83671,-1.46781,-1.37915,-1.06763,2.14055,-0.48548 +4.10330,0.83638,-1.46774,-1.37954,-1.06746,2.14079,-0.48575 +4.10593,0.83606,-1.46768,-1.37992,-1.06729,2.14102,-0.48602 +4.10855,0.83574,-1.46762,-1.38030,-1.06712,2.14125,-0.48629 +4.11117,0.83542,-1.46755,-1.38067,-1.06695,2.14147,-0.48655 +4.11379,0.83540,-1.46752,-1.38074,-1.06692,2.14149,-0.48657 +4.11641,0.83515,-1.46723,-1.38143,-1.06664,2.14167,-0.48677 +4.11904,0.83491,-1.46694,-1.38211,-1.06636,2.14184,-0.48697 +4.12166,0.83468,-1.46666,-1.38278,-1.06608,2.14201,-0.48717 +4.12428,0.83445,-1.46638,-1.38344,-1.06581,2.14218,-0.48736 +4.12690,0.83422,-1.46611,-1.38409,-1.06554,2.14234,-0.48756 +4.12952,0.83400,-1.46584,-1.38473,-1.06528,2.14250,-0.48774 +4.13214,0.83378,-1.46557,-1.38536,-1.06502,2.14266,-0.48793 +4.13477,0.83356,-1.46531,-1.38597,-1.06476,2.14282,-0.48811 +4.13739,0.83335,-1.46505,-1.38658,-1.06451,2.14297,-0.48828 +4.14001,0.83315,-1.46480,-1.38717,-1.06427,2.14312,-0.48846 +4.14263,0.83294,-1.46456,-1.38776,-1.06402,2.14326,-0.48863 +4.14525,0.83274,-1.46431,-1.38833,-1.06378,2.14341,-0.48879 +4.14788,0.83255,-1.46407,-1.38890,-1.06355,2.14355,-0.48896 +4.15050,0.83236,-1.46384,-1.38946,-1.06331,2.14369,-0.48912 +4.15312,0.83217,-1.46361,-1.39000,-1.06309,2.14382,-0.48927 +4.15574,0.83208,-1.46347,-1.39030,-1.06297,2.14388,-0.48935 +4.15836,0.83198,-1.46306,-1.39107,-1.06266,2.14396,-0.48943 +4.16099,0.83188,-1.46266,-1.39182,-1.06236,2.14403,-0.48952 +4.16361,0.83179,-1.46226,-1.39257,-1.06206,2.14410,-0.48960 +4.16623,0.83169,-1.46187,-1.39330,-1.06177,2.14417,-0.48968 +4.16885,0.83160,-1.46148,-1.39402,-1.06148,2.14424,-0.48976 +4.17147,0.83151,-1.46111,-1.39472,-1.06120,2.14431,-0.48984 +4.17410,0.83142,-1.46074,-1.39542,-1.06092,2.14437,-0.48992 +4.17672,0.83133,-1.46037,-1.39610,-1.06064,2.14444,-0.48999 +4.17934,0.83125,-1.46001,-1.39678,-1.06037,2.14450,-0.49006 +4.18196,0.83116,-1.45966,-1.39744,-1.06010,2.14456,-0.49014 +4.18458,0.83108,-1.45931,-1.39809,-1.05984,2.14462,-0.49021 +4.18721,0.83100,-1.45897,-1.39873,-1.05958,2.14468,-0.49027 +4.18983,0.83092,-1.45863,-1.39936,-1.05933,2.14474,-0.49034 +4.19245,0.83085,-1.45830,-1.39998,-1.05907,2.14480,-0.49041 +4.19507,0.83077,-1.45798,-1.40059,-1.05883,2.14485,-0.49047 +4.19769,0.83073,-1.45769,-1.40110,-1.05862,2.14488,-0.49050 +4.20031,0.83086,-1.45704,-1.40208,-1.05825,2.14480,-0.49041 +4.20294,0.83098,-1.45639,-1.40304,-1.05788,2.14472,-0.49031 +4.20556,0.83110,-1.45576,-1.40398,-1.05753,2.14463,-0.49021 +4.20818,0.83122,-1.45514,-1.40491,-1.05717,2.14455,-0.49012 +4.21080,0.83133,-1.45453,-1.40582,-1.05682,2.14447,-0.49003 +4.21342,0.83145,-1.45393,-1.40672,-1.05648,2.14439,-0.48993 +4.21605,0.83156,-1.45334,-1.40761,-1.05614,2.14432,-0.48984 +4.21867,0.83168,-1.45276,-1.40847,-1.05581,2.14424,-0.48975 +4.22129,0.83179,-1.45219,-1.40933,-1.05548,2.14416,-0.48966 +4.22391,0.83190,-1.45163,-1.41017,-1.05515,2.14409,-0.48957 +4.22653,0.83201,-1.45108,-1.41100,-1.05483,2.14401,-0.48949 +4.22916,0.83211,-1.45054,-1.41181,-1.05452,2.14394,-0.48940 +4.23178,0.83222,-1.45001,-1.41261,-1.05421,2.14387,-0.48931 +4.23440,0.83232,-1.44949,-1.41340,-1.05390,2.14379,-0.48923 +4.23702,0.83243,-1.44897,-1.41417,-1.05360,2.14372,-0.48915 +4.23964,0.83253,-1.44847,-1.41493,-1.05330,2.14365,-0.48906 +4.24227,0.83263,-1.44797,-1.41568,-1.05301,2.14358,-0.48898 +4.24489,0.83273,-1.44748,-1.41642,-1.05272,2.14351,-0.48890 +4.24751,0.83283,-1.44700,-1.41714,-1.05244,2.14344,-0.48882 +4.25013,0.83293,-1.44653,-1.41785,-1.05215,2.14338,-0.48874 +4.25275,0.83302,-1.44606,-1.41855,-1.05188,2.14331,-0.48866 +4.25537,0.83312,-1.44561,-1.41924,-1.05161,2.14325,-0.48858 +4.25800,0.83321,-1.44516,-1.41992,-1.05134,2.14318,-0.48851 +4.26062,0.83330,-1.44472,-1.42059,-1.05107,2.14312,-0.48843 +4.26324,0.83340,-1.44428,-1.42125,-1.05081,2.14305,-0.48836 +4.26586,0.83349,-1.44386,-1.42189,-1.05055,2.14299,-0.48828 +4.26848,0.83357,-1.44344,-1.42253,-1.05030,2.14293,-0.48821 +4.27111,0.83366,-1.44303,-1.42315,-1.05005,2.14287,-0.48814 +4.27373,0.83375,-1.44262,-1.42377,-1.04980,2.14281,-0.48807 +4.27635,0.83384,-1.44222,-1.42437,-1.04956,2.14275,-0.48799 +4.27897,0.83392,-1.44183,-1.42496,-1.04932,2.14269,-0.48792 +4.28159,0.83401,-1.44152,-1.42542,-1.04914,2.14262,-0.48785 +4.28422,0.83444,-1.44070,-1.42641,-1.04878,2.14233,-0.48750 +4.28684,0.83485,-1.43989,-1.42739,-1.04843,2.14203,-0.48716 +4.28946,0.83526,-1.43910,-1.42836,-1.04808,2.14174,-0.48683 +4.29208,0.83567,-1.43832,-1.42931,-1.04774,2.14146,-0.48650 +4.29470,0.83607,-1.43755,-1.43024,-1.04740,2.14118,-0.48617 +4.29733,0.83646,-1.43680,-1.43116,-1.04707,2.14090,-0.48585 +4.29995,0.83685,-1.43606,-1.43206,-1.04674,2.14063,-0.48553 +4.30257,0.83723,-1.43533,-1.43295,-1.04642,2.14036,-0.48522 +4.30519,0.83760,-1.43462,-1.43382,-1.04610,2.14010,-0.48491 +4.30781,0.83797,-1.43392,-1.43468,-1.04578,2.13983,-0.48461 +4.31044,0.83834,-1.43322,-1.43553,-1.04547,2.13958,-0.48431 +4.31306,0.83870,-1.43255,-1.43636,-1.04516,2.13932,-0.48402 +4.31568,0.83905,-1.43188,-1.43717,-1.04486,2.13907,-0.48373 +4.31830,0.83940,-1.43122,-1.43798,-1.04456,2.13883,-0.48344 +4.32092,0.83974,-1.43058,-1.43877,-1.04426,2.13858,-0.48316 +4.32354,0.84008,-1.42995,-1.43955,-1.04397,2.13834,-0.48288 +4.32617,0.84042,-1.42932,-1.44031,-1.04369,2.13811,-0.48261 +4.32879,0.84074,-1.42871,-1.44107,-1.04340,2.13787,-0.48234 +4.33141,0.84107,-1.42811,-1.44181,-1.04312,2.13764,-0.48208 +4.33403,0.84139,-1.42752,-1.44254,-1.04285,2.13742,-0.48181 +4.33665,0.84170,-1.42694,-1.44325,-1.04258,2.13720,-0.48156 +4.33928,0.84201,-1.42636,-1.44396,-1.04231,2.13698,-0.48130 +4.34190,0.84231,-1.42580,-1.44465,-1.04205,2.13676,-0.48105 +4.34452,0.84261,-1.42525,-1.44533,-1.04178,2.13655,-0.48081 +4.34714,0.84291,-1.42471,-1.44601,-1.04153,2.13633,-0.48056 +4.34976,0.84320,-1.42417,-1.44667,-1.04127,2.13613,-0.48032 +4.35239,0.84349,-1.42365,-1.44732,-1.04102,2.13592,-0.48009 +4.35501,0.84377,-1.42314,-1.44796,-1.04078,2.13572,-0.47986 +4.35763,0.84405,-1.42263,-1.44858,-1.04053,2.13552,-0.47963 +4.36025,0.84432,-1.42213,-1.44920,-1.04029,2.13533,-0.47940 +4.36287,0.84459,-1.42164,-1.44981,-1.04006,2.13514,-0.47918 +4.36550,0.84486,-1.42116,-1.45041,-1.03982,2.13495,-0.47896 +4.36812,0.84512,-1.42069,-1.45100,-1.03959,2.13476,-0.47874 +4.37074,0.84538,-1.42022,-1.45158,-1.03936,2.13457,-0.47853 +4.37336,0.84563,-1.41977,-1.45215,-1.03914,2.13439,-0.47832 +4.37598,0.84588,-1.41932,-1.45271,-1.03892,2.13421,-0.47812 +4.37861,0.84613,-1.41887,-1.45326,-1.03870,2.13404,-0.47791 +4.38123,0.84637,-1.41844,-1.45381,-1.03848,2.13386,-0.47771 +4.38385,0.84661,-1.41801,-1.45434,-1.03827,2.13369,-0.47751 +4.38647,0.84685,-1.41759,-1.45486,-1.03806,2.13352,-0.47732 +4.38909,0.84708,-1.41718,-1.45538,-1.03786,2.13336,-0.47713 +4.39171,0.84731,-1.41678,-1.45589,-1.03765,2.13319,-0.47694 +4.39434,0.84753,-1.41638,-1.45639,-1.03745,2.13303,-0.47675 +4.39696,0.84765,-1.41617,-1.45665,-1.03735,2.13294,-0.47665 +4.39958,0.84798,-1.41567,-1.45723,-1.03713,2.13271,-0.47638 +4.40220,0.84831,-1.41517,-1.45780,-1.03691,2.13248,-0.47612 +4.40482,0.84863,-1.41468,-1.45836,-1.03670,2.13225,-0.47586 +4.40745,0.84894,-1.41421,-1.45892,-1.03649,2.13202,-0.47560 +4.41007,0.84925,-1.41373,-1.45946,-1.03628,2.13180,-0.47534 +4.41269,0.84956,-1.41327,-1.46000,-1.03607,2.13158,-0.47509 +4.41531,0.84986,-1.41282,-1.46052,-1.03587,2.13137,-0.47485 +4.41793,0.85015,-1.41237,-1.46104,-1.03567,2.13116,-0.47460 +4.42056,0.85044,-1.41193,-1.46155,-1.03547,2.13095,-0.47437 +4.42318,0.85073,-1.41150,-1.46206,-1.03528,2.13074,-0.47413 +4.42580,0.85101,-1.41108,-1.46255,-1.03509,2.13054,-0.47390 +4.42842,0.85129,-1.41066,-1.46304,-1.03490,2.13034,-0.47367 +4.43104,0.85156,-1.41025,-1.46351,-1.03471,2.13014,-0.47345 +4.43367,0.85183,-1.40985,-1.46398,-1.03452,2.12995,-0.47322 +4.43629,0.85210,-1.40945,-1.46445,-1.03434,2.12976,-0.47301 +4.43891,0.85236,-1.40906,-1.46490,-1.03416,2.12957,-0.47279 +4.44153,0.85242,-1.40899,-1.46497,-1.03414,2.12953,-0.47275 +4.44415,0.85299,-1.40831,-1.46563,-1.03392,2.12912,-0.47228 +4.44678,0.85355,-1.40764,-1.46628,-1.03370,2.12872,-0.47183 +4.44940,0.85410,-1.40698,-1.46693,-1.03348,2.12833,-0.47138 +4.45202,0.85464,-1.40634,-1.46756,-1.03326,2.12794,-0.47094 +4.45464,0.85518,-1.40570,-1.46818,-1.03305,2.12756,-0.47051 +4.45726,0.85570,-1.40508,-1.46879,-1.03284,2.12718,-0.47008 +4.45988,0.85622,-1.40447,-1.46939,-1.03264,2.12681,-0.46966 +4.46251,0.85673,-1.40386,-1.46998,-1.03243,2.12645,-0.46925 +4.46513,0.85723,-1.40327,-1.47056,-1.03223,2.12609,-0.46884 +4.46775,0.85773,-1.40269,-1.47113,-1.03203,2.12573,-0.46844 +4.47037,0.85822,-1.40212,-1.47170,-1.03184,2.12538,-0.46805 +4.47299,0.85870,-1.40155,-1.47225,-1.03164,2.12504,-0.46766 +4.47562,0.85917,-1.40100,-1.47279,-1.03145,2.12470,-0.46727 +4.47824,0.85963,-1.40046,-1.47333,-1.03126,2.12436,-0.46690 +4.48086,0.86009,-1.39993,-1.47386,-1.03107,2.12403,-0.46653 +4.48348,0.86054,-1.39940,-1.47438,-1.03089,2.12371,-0.46616 +4.48610,0.86099,-1.39889,-1.47489,-1.03071,2.12339,-0.46580 +4.48873,0.86142,-1.39838,-1.47539,-1.03053,2.12308,-0.46545 +4.49135,0.86185,-1.39788,-1.47588,-1.03035,2.12277,-0.46510 +4.49397,0.86228,-1.39739,-1.47637,-1.03017,2.12246,-0.46476 +4.49659,0.86269,-1.39691,-1.47685,-1.03000,2.12216,-0.46442 +4.49921,0.86310,-1.39644,-1.47732,-1.02983,2.12186,-0.46409 +4.50184,0.86351,-1.39598,-1.47778,-1.02966,2.12157,-0.46376 +4.50446,0.86391,-1.39552,-1.47824,-1.02949,2.12128,-0.46344 +4.50708,0.86430,-1.39507,-1.47869,-1.02932,2.12100,-0.46312 +4.50970,0.86468,-1.39463,-1.47913,-1.02916,2.12072,-0.46281 +4.51232,0.86506,-1.39420,-1.47956,-1.02900,2.12045,-0.46250 +4.51494,0.86543,-1.39377,-1.47999,-1.02884,2.12018,-0.46220 +4.51757,0.86580,-1.39336,-1.48041,-1.02868,2.11991,-0.46190 +4.52019,0.86616,-1.39294,-1.48082,-1.02853,2.11965,-0.46161 +4.52281,0.86652,-1.39254,-1.48123,-1.02837,2.11939,-0.46132 +4.52543,0.86687,-1.39214,-1.48163,-1.02822,2.11914,-0.46103 +4.52805,0.86722,-1.39175,-1.48203,-1.02807,2.11889,-0.46075 +4.53068,0.86756,-1.39137,-1.48242,-1.02793,2.11864,-0.46048 +4.53330,0.86789,-1.39099,-1.48280,-1.02778,2.11840,-0.46021 +4.53592,0.86822,-1.39062,-1.48317,-1.02764,2.11816,-0.45994 +4.53854,0.86852,-1.39029,-1.48351,-1.02751,2.11794,-0.45970 +4.54116,0.86895,-1.38986,-1.48389,-1.02737,2.11763,-0.45935 +4.54379,0.86938,-1.38943,-1.48427,-1.02724,2.11732,-0.45901 +4.54641,0.86979,-1.38902,-1.48465,-1.02711,2.11702,-0.45867 +4.54903,0.87020,-1.38861,-1.48502,-1.02698,2.11672,-0.45834 +4.55165,0.87060,-1.38821,-1.48538,-1.02685,2.11643,-0.45802 +4.55427,0.87100,-1.38782,-1.48574,-1.02672,2.11614,-0.45770 +4.55690,0.87139,-1.38743,-1.48609,-1.02659,2.11586,-0.45738 +4.55952,0.87178,-1.38705,-1.48643,-1.02647,2.11558,-0.45707 +4.56214,0.87216,-1.38667,-1.48677,-1.02634,2.11531,-0.45677 +4.56476,0.87253,-1.38631,-1.48711,-1.02622,2.11504,-0.45647 +4.56738,0.87289,-1.38594,-1.48744,-1.02610,2.11477,-0.45617 +4.57001,0.87326,-1.38559,-1.48776,-1.02598,2.11451,-0.45588 +4.57263,0.87361,-1.38524,-1.48808,-1.02586,2.11425,-0.45560 +4.57525,0.87376,-1.38510,-1.48821,-1.02582,2.11414,-0.45547 +4.57787,0.87422,-1.38468,-1.48854,-1.02571,2.11381,-0.45511 +4.58049,0.87467,-1.38428,-1.48887,-1.02560,2.11348,-0.45475 +4.58311,0.87512,-1.38388,-1.48919,-1.02549,2.11316,-0.45439 +4.58574,0.87555,-1.38349,-1.48951,-1.02538,2.11284,-0.45404 +4.58836,0.87598,-1.38311,-1.48982,-1.02528,2.11253,-0.45369 +4.59098,0.87641,-1.38273,-1.49013,-1.02517,2.11222,-0.45336 +4.59360,0.87682,-1.38236,-1.49044,-1.02507,2.11192,-0.45302 +4.59622,0.87723,-1.38199,-1.49073,-1.02497,2.11162,-0.45269 +4.59885,0.87764,-1.38164,-1.49103,-1.02486,2.11133,-0.45237 +4.60147,0.87803,-1.38128,-1.49132,-1.02476,2.11104,-0.45205 +4.60409,0.87842,-1.38094,-1.49160,-1.02467,2.11075,-0.45174 +4.60671,0.87881,-1.38060,-1.49188,-1.02457,2.11047,-0.45143 +4.60933,0.87919,-1.38026,-1.49216,-1.02447,2.11020,-0.45113 +4.61196,0.87953,-1.37997,-1.49240,-1.02438,2.10995,-0.45086 +4.61458,0.87996,-1.37962,-1.49265,-1.02430,2.10963,-0.45051 +4.61720,0.88039,-1.37928,-1.49290,-1.02422,2.10933,-0.45017 +4.61982,0.88081,-1.37894,-1.49315,-1.02414,2.10902,-0.44984 +4.62244,0.88122,-1.37861,-1.49339,-1.02406,2.10872,-0.44951 +4.62507,0.88162,-1.37828,-1.49363,-1.02398,2.10843,-0.44918 +4.62769,0.88202,-1.37797,-1.49386,-1.02391,2.10813,-0.44887 +4.63031,0.88241,-1.37765,-1.49409,-1.02383,2.10785,-0.44855 +4.63293,0.88265,-1.37746,-1.49423,-1.02378,2.10767,-0.44836 +4.63555,0.88312,-1.37713,-1.49443,-1.02373,2.10733,-0.44799 +4.63818,0.88358,-1.37680,-1.49463,-1.02367,2.10700,-0.44762 +4.64080,0.88403,-1.37648,-1.49483,-1.02361,2.10667,-0.44727 +4.64342,0.88448,-1.37616,-1.49502,-1.02356,2.10635,-0.44691 +4.64604,0.88491,-1.37585,-1.49521,-1.02350,2.10603,-0.44657 +4.64866,0.88534,-1.37554,-1.49540,-1.02345,2.10572,-0.44622 +4.65128,0.88576,-1.37524,-1.49558,-1.02339,2.10541,-0.44589 +4.65391,0.88618,-1.37495,-1.49576,-1.02334,2.10510,-0.44556 +4.65653,0.88659,-1.37466,-1.49594,-1.02328,2.10481,-0.44523 +4.65915,0.88692,-1.37443,-1.49608,-1.02324,2.10456,-0.44497 +4.66177,0.88740,-1.37414,-1.49621,-1.02322,2.10422,-0.44459 +4.66439,0.88786,-1.37385,-1.49633,-1.02319,2.10388,-0.44422 +4.66702,0.88833,-1.37357,-1.49645,-1.02317,2.10354,-0.44386 +4.66964,0.88878,-1.37329,-1.49657,-1.02314,2.10321,-0.44350 +4.67226,0.88922,-1.37302,-1.49669,-1.02311,2.10288,-0.44314 +4.67488,0.88966,-1.37275,-1.49681,-1.02309,2.10256,-0.44280 +4.67750,0.89009,-1.37249,-1.49693,-1.02306,2.10225,-0.44246 +4.68013,0.89052,-1.37223,-1.49704,-1.02303,2.10194,-0.44212 +4.68275,0.89095,-1.37198,-1.49714,-1.02301,2.10163,-0.44178 +4.68537,0.89146,-1.37174,-1.49714,-1.02304,2.10125,-0.44138 +4.68799,0.89197,-1.37152,-1.49714,-1.02307,2.10088,-0.44098 +4.69061,0.89246,-1.37129,-1.49713,-1.02310,2.10052,-0.44058 +4.69324,0.89295,-1.37107,-1.49713,-1.02313,2.10016,-0.44020 +4.69586,0.89343,-1.37086,-1.49713,-1.02315,2.09981,-0.43982 +4.69848,0.89391,-1.37065,-1.49713,-1.02318,2.09947,-0.43945 +4.70110,0.89437,-1.37044,-1.49713,-1.02320,2.09913,-0.43908 +4.70372,0.89483,-1.37023,-1.49713,-1.02322,2.09879,-0.43872 +4.70635,0.89528,-1.37003,-1.49712,-1.02325,2.09846,-0.43836 +4.70897,0.89572,-1.36984,-1.49712,-1.02327,2.09814,-0.43802 +4.71159,0.89616,-1.36964,-1.49712,-1.02329,2.09782,-0.43767 +4.71421,0.89659,-1.36945,-1.49712,-1.02331,2.09751,-0.43734 +4.71683,0.89664,-1.36944,-1.49711,-1.02332,2.09747,-0.43730 +4.71945,0.89713,-1.36930,-1.49697,-1.02340,2.09711,-0.43691 +4.72208,0.89761,-1.36917,-1.49683,-1.02348,2.09676,-0.43654 +4.72470,0.89808,-1.36904,-1.49670,-1.02356,2.09642,-0.43617 +4.72732,0.89854,-1.36892,-1.49656,-1.02363,2.09608,-0.43580 +4.72994,0.89900,-1.36879,-1.49643,-1.02371,2.09574,-0.43544 +4.73256,0.89945,-1.36867,-1.49631,-1.02378,2.09541,-0.43509 +4.73519,0.89989,-1.36855,-1.49618,-1.02385,2.09509,-0.43475 +4.73781,0.90032,-1.36843,-1.49606,-1.02392,2.09477,-0.43441 +4.74043,0.90075,-1.36832,-1.49594,-1.02399,2.09446,-0.43407 +4.74305,0.90109,-1.36823,-1.49582,-1.02405,2.09421,-0.43380 +4.74567,0.90155,-1.36820,-1.49553,-1.02419,2.09387,-0.43344 +4.74830,0.90201,-1.36817,-1.49524,-1.02432,2.09354,-0.43308 +4.75092,0.90245,-1.36815,-1.49496,-1.02446,2.09321,-0.43273 +4.75354,0.90289,-1.36812,-1.49469,-1.02459,2.09289,-0.43239 +4.75616,0.90333,-1.36809,-1.49441,-1.02472,2.09257,-0.43205 +4.75878,0.90375,-1.36807,-1.49415,-1.02484,2.09226,-0.43172 +4.76141,0.90417,-1.36804,-1.49388,-1.02497,2.09195,-0.43139 +4.76403,0.90458,-1.36802,-1.49363,-1.02509,2.09165,-0.43107 +4.76665,0.90498,-1.36799,-1.49337,-1.02521,2.09135,-0.43076 +4.76927,0.90538,-1.36797,-1.49312,-1.02532,2.09106,-0.43045 +4.77189,0.90562,-1.36796,-1.49296,-1.02540,2.09088,-0.43026 +4.77451,0.90603,-1.36803,-1.49255,-1.02558,2.09058,-0.42993 +4.77714,0.90644,-1.36809,-1.49215,-1.02576,2.09028,-0.42961 +4.77976,0.90685,-1.36815,-1.49175,-1.02593,2.08998,-0.42930 +4.78238,0.90724,-1.36821,-1.49136,-1.02611,2.08969,-0.42899 +4.78500,0.90763,-1.36827,-1.49098,-1.02628,2.08940,-0.42869 +4.78762,0.90801,-1.36833,-1.49061,-1.02644,2.08912,-0.42839 +4.79025,0.90839,-1.36839,-1.49024,-1.02661,2.08885,-0.42810 +4.79287,0.90875,-1.36845,-1.48987,-1.02677,2.08858,-0.42781 +4.79549,0.90912,-1.36851,-1.48952,-1.02692,2.08831,-0.42753 +4.79811,0.90947,-1.36857,-1.48917,-1.02708,2.08805,-0.42725 +4.80073,0.90972,-1.36862,-1.48891,-1.02719,2.08787,-0.42706 +4.80336,0.91007,-1.36878,-1.48838,-1.02742,2.08761,-0.42679 +4.80598,0.91041,-1.36894,-1.48786,-1.02763,2.08735,-0.42652 +4.80860,0.91075,-1.36910,-1.48736,-1.02785,2.08710,-0.42625 +4.81122,0.91109,-1.36926,-1.48686,-1.02806,2.08686,-0.42599 +4.81384,0.91141,-1.36942,-1.48637,-1.02827,2.08661,-0.42574 +4.81647,0.91173,-1.36957,-1.48588,-1.02847,2.08638,-0.42549 +4.81909,0.91205,-1.36972,-1.48541,-1.02867,2.08614,-0.42524 +4.82171,0.91236,-1.36987,-1.48494,-1.02887,2.08591,-0.42500 +4.82433,0.91266,-1.37001,-1.48448,-1.02907,2.08569,-0.42477 +4.82695,0.91296,-1.37016,-1.48403,-1.02926,2.08547,-0.42453 +4.82958,0.91325,-1.37030,-1.48359,-1.02945,2.08525,-0.42431 +4.83220,0.91340,-1.37037,-1.48336,-1.02954,2.08514,-0.42419 +4.83482,0.91368,-1.37059,-1.48280,-1.02978,2.08493,-0.42397 +4.83744,0.91396,-1.37080,-1.48225,-1.03000,2.08473,-0.42375 +4.84006,0.91424,-1.37101,-1.48171,-1.03023,2.08452,-0.42354 +4.84268,0.91451,-1.37121,-1.48118,-1.03045,2.08432,-0.42333 +4.84531,0.91477,-1.37141,-1.48066,-1.03067,2.08413,-0.42312 +4.84793,0.91503,-1.37161,-1.48014,-1.03088,2.08393,-0.42292 +4.85055,0.91529,-1.37180,-1.47964,-1.03109,2.08374,-0.42272 +4.85317,0.91554,-1.37200,-1.47914,-1.03130,2.08356,-0.42253 +4.85579,0.91578,-1.37220,-1.47863,-1.03151,2.08338,-0.42234 +4.85842,0.91597,-1.37253,-1.47795,-1.03178,2.08323,-0.42219 +4.86104,0.91616,-1.37286,-1.47728,-1.03205,2.08309,-0.42204 +4.86366,0.91635,-1.37318,-1.47662,-1.03232,2.08295,-0.42190 +4.86628,0.91653,-1.37350,-1.47597,-1.03258,2.08282,-0.42176 +4.86890,0.91671,-1.37381,-1.47533,-1.03283,2.08269,-0.42162 +4.87153,0.91688,-1.37411,-1.47470,-1.03309,2.08256,-0.42148 +4.87415,0.91705,-1.37441,-1.47409,-1.03334,2.08243,-0.42135 +4.87677,0.91722,-1.37471,-1.47348,-1.03358,2.08230,-0.42122 +4.87939,0.91738,-1.37500,-1.47288,-1.03382,2.08218,-0.42109 +4.88201,0.91754,-1.37529,-1.47229,-1.03406,2.08206,-0.42096 +4.88464,0.91770,-1.37557,-1.47171,-1.03429,2.08194,-0.42084 +4.88726,0.91786,-1.37585,-1.47114,-1.03453,2.08182,-0.42072 +4.88988,0.91801,-1.37612,-1.47059,-1.03475,2.08171,-0.42060 +4.89250,0.91805,-1.37622,-1.47040,-1.03483,2.08168,-0.42057 +4.89512,0.91813,-1.37663,-1.46966,-1.03512,2.08162,-0.42051 +4.89775,0.91821,-1.37704,-1.46893,-1.03540,2.08156,-0.42045 +4.90037,0.91828,-1.37745,-1.46821,-1.03568,2.08150,-0.42038 +4.90299,0.91836,-1.37784,-1.46750,-1.03596,2.08144,-0.42032 +4.90561,0.91843,-1.37823,-1.46681,-1.03623,2.08138,-0.42027 +4.90823,0.91850,-1.37862,-1.46612,-1.03650,2.08133,-0.42021 +4.91085,0.91857,-1.37900,-1.46545,-1.03676,2.08127,-0.42015 +4.91348,0.91864,-1.37937,-1.46479,-1.03703,2.08122,-0.42010 +4.91610,0.91871,-1.37973,-1.46414,-1.03728,2.08117,-0.42005 +4.91872,0.91878,-1.38009,-1.46350,-1.03754,2.08112,-0.42000 +4.92134,0.91884,-1.38044,-1.46287,-1.03779,2.08107,-0.41994 +4.92396,0.91890,-1.38079,-1.46225,-1.03803,2.08102,-0.41990 +4.92659,0.91896,-1.38113,-1.46164,-1.03828,2.08098,-0.41985 +4.92921,0.91902,-1.38147,-1.46104,-1.03852,2.08093,-0.41980 +4.93183,0.91908,-1.38180,-1.46045,-1.03875,2.08088,-0.41976 +4.93445,0.91907,-1.38186,-1.46036,-1.03879,2.08089,-0.41976 +4.93707,0.91899,-1.38243,-1.45947,-1.03912,2.08094,-0.41982 +4.93970,0.91892,-1.38300,-1.45860,-1.03945,2.08100,-0.41987 +4.94232,0.91884,-1.38355,-1.45775,-1.03977,2.08105,-0.41993 +4.94494,0.91877,-1.38410,-1.45690,-1.04009,2.08110,-0.41999 +4.94756,0.91869,-1.38463,-1.45607,-1.04041,2.08115,-0.42004 +4.95018,0.91862,-1.38516,-1.45526,-1.04072,2.08121,-0.42010 +4.95281,0.91855,-1.38568,-1.45445,-1.04103,2.08126,-0.42015 +4.95543,0.91847,-1.38619,-1.45366,-1.04133,2.08131,-0.42020 +4.95805,0.91840,-1.38669,-1.45288,-1.04163,2.08136,-0.42026 +4.96067,0.91833,-1.38719,-1.45212,-1.04192,2.08141,-0.42031 +4.96329,0.91826,-1.38767,-1.45137,-1.04221,2.08145,-0.42036 +4.96592,0.91819,-1.38815,-1.45062,-1.04250,2.08150,-0.42041 +4.96854,0.91813,-1.38862,-1.44989,-1.04278,2.08155,-0.42046 +4.97116,0.91806,-1.38908,-1.44918,-1.04306,2.08160,-0.42051 +4.97378,0.91799,-1.38953,-1.44847,-1.04334,2.08164,-0.42056 +4.97640,0.91793,-1.38998,-1.44777,-1.04361,2.08169,-0.42061 +4.97902,0.91786,-1.39042,-1.44709,-1.04388,2.08174,-0.42066 +4.98165,0.91780,-1.39085,-1.44642,-1.04414,2.08178,-0.42071 +4.98427,0.91774,-1.39127,-1.44575,-1.04440,2.08183,-0.42076 +4.98689,0.91767,-1.39169,-1.44510,-1.04466,2.08187,-0.42081 +4.98951,0.91761,-1.39210,-1.44446,-1.04491,2.08191,-0.42085 +4.99213,0.91755,-1.39250,-1.44383,-1.04516,2.08196,-0.42090 +4.99476,0.91749,-1.39289,-1.44321,-1.04541,2.08200,-0.42095 +4.99738,0.91743,-1.39328,-1.44259,-1.04566,2.08204,-0.42099 +5.00000,0.91737,-1.39367,-1.44199,-1.04590,2.08208,-0.42104 diff --git a/python/path_in_pixels.csv b/python/path_in_pixels.csv index aa2da6b..ba1cb6c 100644 --- a/python/path_in_pixels.csv +++ b/python/path_in_pixels.csv @@ -1,24 +1,104 @@ -0.24166,0.39084 -0.24166,0.39084 -0.24314,0.39084 -0.24462,0.39084 -0.24610,0.39235 -0.24758,0.39235 -0.25055,0.39235 -0.25943,0.39537 -0.30684,0.42410 -0.32906,0.43619 -0.44609,0.52842 -0.49646,0.57226 -0.54535,0.60855 -0.66386,0.71135 -0.70238,0.74461 -0.72757,0.76427 -0.74831,0.78543 -0.75719,0.79148 -0.79275,0.82172 -0.79867,0.82777 -0.81645,0.83684 -0.81793,0.83835 -0.81793,0.83986 -0.81793,0.83986 +0.25625,0.48783 +0.25086,0.48912 +0.24682,0.49298 +0.24008,0.49941 +0.23200,0.50971 +0.22257,0.52258 +0.21719,0.53417 +0.21315,0.54189 +0.21045,0.54961 +0.21045,0.56248 +0.21719,0.58308 +0.22257,0.59724 +0.23739,0.62169 +0.24412,0.62813 +0.25625,0.63971 +0.27510,0.65258 +0.29261,0.66288 +0.30743,0.66931 +0.33571,0.67961 +0.37477,0.68219 +0.40845,0.68219 +0.43000,0.68219 +0.45693,0.67961 +0.48387,0.67704 +0.49465,0.67575 +0.50812,0.67189 +0.52293,0.66803 +0.54717,0.65644 +0.55391,0.65258 +0.56199,0.64615 +0.57007,0.63971 +0.57815,0.63327 +0.58758,0.62555 +0.60913,0.59724 +0.61452,0.58694 +0.61721,0.57664 +0.61856,0.56506 +0.61587,0.54318 +0.60374,0.52001 +0.59432,0.50842 +0.58354,0.49813 +0.55256,0.47882 +0.52697,0.46595 +0.50946,0.45823 +0.47714,0.45179 +0.46097,0.45179 +0.44616,0.45437 +0.42865,0.45823 +0.41114,0.46724 +0.39632,0.47367 +0.38555,0.48011 +0.37612,0.48783 +0.35996,0.50714 +0.34783,0.52902 +0.34110,0.54832 +0.33302,0.59595 +0.33437,0.61139 +0.33841,0.62813 +0.34649,0.64486 +0.35457,0.65773 +0.35996,0.66674 +0.37208,0.67704 +0.39363,0.68862 +0.41518,0.69506 +0.43000,0.69892 +0.46232,0.70278 +0.47983,0.70278 +0.49330,0.70278 +0.51620,0.70020 +0.53775,0.69634 +0.54987,0.69377 +0.55930,0.69119 +0.57007,0.68862 +0.58219,0.68347 +0.59028,0.67704 +0.59970,0.66674 +0.60913,0.65129 +0.61452,0.64357 +0.62125,0.62813 +0.62395,0.62169 +0.62529,0.61783 +0.62529,0.61525 +0.61991,0.60496 +0.60240,0.58951 +0.58623,0.58050 +0.55391,0.56892 +0.50677,0.56248 +0.49330,0.56248 +0.45693,0.56506 +0.44616,0.56892 +0.43538,0.57278 +0.43000,0.57664 +0.42326,0.58179 +0.41787,0.58823 +0.41249,0.59981 +0.41114,0.61139 +0.41249,0.62426 +0.41518,0.63585 +0.42057,0.64743 +0.42461,0.65516 +0.43538,0.66545 +0.44750,0.67446 +0.46906,0.68733 +0.46906,0.68733 diff --git a/python/ur_simple_control/__pycache__/managers.cpython-311.pyc b/python/ur_simple_control/__pycache__/managers.cpython-311.pyc index 278ae766df43c7922059b8626aa229b37a25a8ea..3a5ef00af9c245c0f18a6e26d57945373702bf53 100644 GIT binary patch delta 2333 zcmbQcobmK>M!w~|yj%<n3=A@dnbJPiZse0?Vw|^Ghv^I>^Rp7=$q$*NHjA?KGU^JK zXo6Hha0>e}Mh1q}j1V3J10zEULogg`a%}$0%E`#2DZQDQU6zqwlj9akacWLlkt72H zLy^>E8;)~~KPPi@eqrI~jAxw8#Pv+>f<W8_fw&LyAb}4IU{Z#WH=gkW1Bl$r%&p7D z^pbJ1k>DIXX^<hZAVPwHf#DWQNoH<pkraq81LCt6<QL?mrj-=QgM^eO{}xoJ2ibdz zxh%8l7JEu&aY0UE<t@g-B4v;Q6_6g*!s5)T)LUEyr6uus`Q?e3B}J+rNi~opQ%cD# z*5aJh)Pf>)5T7M0KQr$ZQ(nO>*2JQs#7a%hB5jajeGs7mQo)&2l$x0BmXnx%OE@R7 zBz5u(AptgBkhI?9bwaX?29wVSDKO67{8osKnbBzT7ttNejAoP9N_s0>fD~CWFfeF} z7lAA<0{hbyWGHJ@YEgc1k>q4)sepPVkUBRI!3iQjL2^qVH7~`jC^a>uD6=fpH$Np6 z;z6)SK)x(;1Sti1p~wYf0~^@cx7dm^)ALGmZ?UEoCFZ6UfqZd`y(~2+J~=m~NRNSm zp_q+<fk6QbiVQ$Th%-!nC8fmpeKW805=KU&$(v-fy$wMU-XKDpfq`KqLy-}P4OY$% zVu6S>kYT|L3=9o$_<>1_6%@%xWW;1uSu;kX%`vjR?2KlUSE=k_w3(c)s?BISd9tb^ zn-$13=gGTNH5r{IKT-7)u?GbXQ(oCE=Cb(0Tg-{^g+*$U-PB@j!I2^Yl4VIx&Ck8X zSX|5k^$EluAU9Wu2IVK^m-r^;C8nnq>BYxq=4F<|$Lnr>pr*tu4e~@XJdranFt9Q( zFfcPPFnrFNEUT3~d7ibwWKDg($*0T(L|hnRn`)U#IAK|Wfgy`!@&+wwM%Kx%xOJFn zStc(umY6(OOo$Idjre3wZ2@@>n9gi4qeuot9p~haOk$JxMFe`9OGLp6z(f}J<cZGG zyvQOvlW%FuOY(xH85kH!klbIxki|RM&_ir;y*TUS7<c)}2dw!fN9i;w@Iz8tASkqW zKncyQBsev%IKK#z0Iep!(2?N=XDBB~`19+^$SZ(S5j!Lmai^8U7o{eqWagz8gVRuv z#$+#DIYxuYnYv2sD;OCViiH^`Ptr9Ly}`kAg+uZ>huS3$wTm1YS2#2-aA-_Ep?jLq zX!8`kwTu>^2ra4xxr902H?yb+WFg3^TdX1R<?*Svm{U>;i)uirj1g>iG01}oMFx{A z4P+QEO`c}Z%4jrM#_)&;C;{AJElbQPO)X{u$9$2&<S&M*jE^Tv83i&LO@3!Dxw+Ly zjL8M;Gf*xo0_Q1^3pAO)h8Ka@aNQuM^fE9oR0*P_n)K9?z)zF!n_Ocw+PuxwmAQTv zNa1V{kqinW@mtJ^IXU1UzQyNQQc{$eR9ceiT2z!@R1^SGRSP2KfCx}}EdphfqPZaM zJP-kP9mpL;pkOFc1c@OWI{_3@f@%3h<%vZp-kEu+xrvjjEcs0)fs}y*Z!*XYEMV{4 zVlRwO&n!#LyTwwHT3iD09U@mu-fOACD7yKPWihiS*j9u!pa=om4-J@GOob^Z;nD{R z7a@#rNpYS$&vqLmuqWr)U6XAGxmVaPzr-`QASX39HLoN!1soJ0gC{523o{x_F16QT zOqsmM-kZ^A^E-PLMz$W17q}+t+lv~3^cOXNJhuj95?fJXUP^v$Q6WeK96nP)#SAn} zfCT#|$2&?hW>2nm%wsg#{K_$jiP34YuZsjEJ%b~B!sG%M5nfObYchkwsc7Zoi7q1Y z;PT5K<S}6sj}@opr39u_O+MoCl+kGOD%S!wJy5bJ0>wqqB9NsSAOe(;ix5GGh!M5P z9zFq*AlKev&CDw(1ywKwIhiGp+_ri0MjvHsQ0fK8PZ22oijIRk%aWd-m~)FU^%f_H z5ucM;TmsH)#h|hSTtX`-fN}!AuLa}W%^tqyOpHB~8~jBBKt)|qJ;+VdKtv;m0K0f8 zhy{weqO~AaKZpQ%xac&96$2tbg&?HBj015&gy!U@{yO|ZtePJf;Dp9xg@A*aV8vi1 zvbQ)3GV}72lQS~&!2xrNHLo<cpb`=wR+G5`{n<bvP$W7zK5&yLSR*LBe{tC4=BJeA zq}ml-*{l}C#8{fm#Ax(^0Xz8-EdB*dLe<2uiZHT#(28PX6#c+}o%{$E{{kj4)qv|R E07Pv$kpKVy delta 2350 zcmX@ToN?}QM!w~|yj%<n3=E&%Fs3QgZRC?>Vm!22hv^I>^RE)+$q$*NHjA?KGENp? z<&$S$#>l|1nh~TLgc%u1%t15+XUR-{BO%3=!Vt^=!kV0$&$DtevcCi=*Oc9Si%phM z<`zpyW^U>&*5aJh)B;V8TP($?IcY^w3=9lK(v#UZ&M|(Se3j!1vmmF`<g=X5q@VH# z^mt7u?DXyN?Eu3M%7UCy9~cBVr8ZyW(q&^R5}hPCM^^@<Uk*e_f(RWDAq^sA85kID zu@~eQ<fNvR6e)m&lqa7ORHz5pc#F9#v+5RmN@j6EPGaRP#=;^MkOEbZ9@fI*%&OE| zTm_{i@p<{>iJ2uuY9L8<kR($|Ns%syrvc)zWaVe(-D1isxW$@SRFqh$$yuZak~9Jl znjjUNNkyrN*={+B>9>S)5=&BxOD1Ov@v#|z6c|pf7m{T(o;+7bfpPBUeL`%^jHa89 zitb=$6rEfr>8)%9Qe@4*z@RB!1hTvc>`hmYv8+|8Mft@=Qj_0E2GlEq)VYBOP7nbK zky`?(c`0s1si`SNnPsWI`6;Oo4}v`c@@0_|NGZq@MJ^y4*uW0I#a5h|o>!WCi#4q% zF*mgc<d0kIWvMyw$+;;-h71f0#cT`=3<_XSWDGJwf?@J*DJ90Ao9{_2VPrI&+$^K* zVFHry1`!er3=At7icCRluyTG73q+)W3=3djU}%8D4@^3&QXd%LM9k!$GG>gXn+;@r z*+D^~vWL-jvbCx<quu0mRYf*%RO?ReQ`Ka2p1ecVPs9NfGE8}8x0uV~3vV$e#upZ; zPnJ@PwFSqC2uPMCJvBe~7GrTS3)CABPk<a;B^s2UlwabTn3tHITBH{rpP83g5+AR> zd5fA7voy#D$)MB>N$(5{tPBhc%nS?+pKT_8)J&cnVa7B0hq(ZU3qx#EEmH~WWJNcT z$uEug8JQ=?I~cIlveYmxV4WOjEIK(~Ob|(avcI-~JSa@T=4OM*BAF79>0mYkLl*nw z1&Sh*CuvJgRxwfMD-nc>GcYh@aZP@pEzih3Nk^QKd$NO#Br`)6_vAokxycT^e3KJ& z8hLq<5{}MfMqL?ha7J(j#e(i+4P6;KMNsUsLt>vhtt7rEH8CYKFTEHX_eJ0|%#>DA z<O$N@1&T9vXvirjC=?k_Zqij^U&YA4Q2dW!@@ieP$=`HOGn#Hbq_>ta6cimr)u2#k z&iBnMDgv1Rvh5aYNPKyG>MiD!l)|DKPy%5DTVD(cUIlQ3++ry%NiC=nM2QiQ(B;WT z3|bjYCwmzl5dp>OE!MKcoYK@{Ca|N5j3+A@sWLv9>|qqhXgXQOL2~nEBQYiyu%AKs zrU;x%Kn~Mn0^3;xV#9TVT-d|Fz<_3PdTL4F=gGXL*BDJVKQVP>7M}@HI15B1gF;XI z7IR`wPLcX#2TM7N*&tz1S}Ovj@S-^&?pzQ7b_B?}B2XX{DS^ZgZt9;r%~H{1B1jM% zP?JCgvw+=ri@h*DJ+mw|?-mQF{D3$ak$xw?wp3vh+bm#J%<Kua17RpA@WHl0eS3?k zFa^c4y&%sDp@cHXvnei<&)9B*gy7^kcGnEsK(Q$7mtW$UTac5Qo0?aWn&MhilwSlh zn611hH7_{>ZusQI_BxEIlP}nNGn#IeaZq7o?4IoCC}jjPsHg$t%hezw*@_bLQu1?) z3PB>^V3`6+Vu*xL)Hk`;QJOJl@=C`%M$^p_PDxDlpu~HNIVUym7JE@@aYkZ6>MfR> z%wlL6502q}kl~z}c_pdoMTsS;MHwLTL1C}S3=Yzw6(9v{g(;wNtr(Pz!KoRf${!RY z!YDyfoSK&sm{QHez)*aLfnoAbmwSw+n{T)lu<3ykOA*MjqJ<#6U~52mxCjvkh$vN` zT;>xX3G(GF*37(u(vn-O#RWN;C6Ho$)8zX;%GRJX4UXU<Py#4A2684#dVXTgEymPa zoFGO#*sGv|xtIf-=)q+%C@b3fS}@MrT;^-eRNoCsJ$yxxAV)=kh-eT2D&>mmL9D4D zq7g)ZeXs<?0;PqbH6T_WhyaB{(J2rs21J0$KXBG8iUV;$gf=MKe?~3AIr14<tv^iG z2@vKNWYzq@04LNY`vn|iG@UFEC?*67uv@HorMU%_kbu&eY!T?s1`3%XvB|xGn?&KZ z{o=66%}*)KNwq7wyg4L@iLo@7iP7i-19tKwSo{l^gsMqk6=7ugpcTo+DEff`JNXeT M{sl~8ssYzs09~O(q5uE@ diff --git a/python/ur_simple_control/clik/__pycache__/clik_point_to_point.cpython-311.pyc b/python/ur_simple_control/clik/__pycache__/clik_point_to_point.cpython-311.pyc index 6d54d607bb2c5e41063b9c43b89277f3124eb954..8bf99c3102d5fbe368170837804af1a43e43888b 100644 GIT binary patch delta 3729 zcmccOc{_`5IWI340|Ntt{(h!351Wa65{zXN)!V%|8B%y!7@|Zt8B%y#7@|Z|#ZvgP znLrAQGMN}sd6qFSFsue~!8l5si6NCMReTvE1H)=Yun+?SLzG0S!~)652bo1C%M0^` zL`g9*r1E1Zl4fE^Wlt4Il}MFd#>~L5ni;NLhKV7SGgTs0CRIF>A(LSlD+9x7R=BKe zs_X(enBkKf7+HDcqZCpYgBd_rlYjCgMsFq!md*DW{h22pU=|bBC;|HuqCZ75MQe@F z<U(dmVQmy~ofJW^xbS2>RzGoFR1Y;V)-VP$XzFdA%o@tVoROb5`8DT*Bz9fh#GHbR z#47c){G#Mkg|yVvl%&MuY=wfN{DS<VlFa<P#2kg>{M59x%;e0}ypr@;GeKabeHELo zZc=JVVwGG@ez|TzVsWuTT4qj3YLNm+RG}cTC^0v+B(-SsDXuGwjMq2M=W${RdceYU zokjc-i}(!AwX8P;tsaO-d|+o_mH5cO%qsN-M0@}f91N`7P=y>zOK%7o-Vl-azzSB# z1X9SvD)oT@L~v|=%ooSVm@(N&z=Sb!a=E}E#@NYLf=4GW7nGbVA;hQ5dW%0fCo?-f zIX|zYC_g7BwWtUbNkx1N3=Bn@AcB8#gpeky0Rsa=_U1Mr9~M?$1_p+{&DX^YnMF-N z3QR$S8Hg|k5f+nWr6ld_85kIDu@)3%=9LsVf`qL=gcAb;gC^H4*5ZQH)RZDOkdQuz za0d|{Ai@(wcuy{oa%T-@U|`t2`GAx+lLg3jh`T_7MJyo0nTtyEZn2bP=BD0aEzU_z zEhq{Ana)up2QmU|cHm@Z*<{vO1_p*Jn^((DXJRt~Nf}S}Q1E0lojgfFyWR#QfG{28 zwIUUe>8w?$Mft@=U>~`F6oKq43InmiK|}<I09(k3u<#aFdVXR~d_g|Q*I<uDf|PlI zh$s*d4I*L~7#NB<85kH86eJZOphzBUXKsF3s!vfW0|UeJ$)Sq(nUYy18}N$=Jz-^F zn9h*GSj&>hP|KRhP|G%1Q9_-OeX_o=_~Zl$2}btGl@jKx95sv!*r1t)Uy`!~6om{B zki`L^85kCDf>dbKaH6LE6sByjiXxE`elP<}WN}TFQ;=Y(<t!1O%qSvKkFKkRErkUX zf;9|TykHFs3=B1#RjdpQDXhq1Ra^`VHOwh2k}yRKDQpNfNPQIp14At*s@*WfDeO?U z)<Z>VxoSAF;J&NjO5sRhYGs0uX-r@Tp~^F*Ft;+LfJvx4R~FoxHJnu}7?uk_tztlS zl1-K%OgNn(g>w-j)Ll?PR9-E24L8i_8jb}*pkPm{VayVSs%Ah_&Qk))cTmYJ5h#P9 zh6hz$mMBc7mKR?PJJj%^YOG<*5`$^Y5{I#%vCfpjRm+0n0Ex-r5{j(sHH=x3lP8LZ ztMb+GA%YBt#Zn+Y`qiK)1%)kg7-mVstghk9l7X>PI1tGJRebUVeksl@S*XIvFZpFG zc|m5@@*_J48qfkY{51?&p!^S3Un2lcTD%Mlwfr@V3*<r06RY7z4Hrg+8ukSWASu2Y z#w>UoWGPM-6qV-W2B#**1xg?Vpqh>ew^|;sT28P6QEBwxXN6`J0kFIX7R&1Szy`3? zu+^}pF$Xhf^82~H1Ucv>8>rX_Vqjo+395fz{{R2~za~>r21pc4fa-2dw&!3^GkmZw z0>vseBBTgX0D{U%MzH={%q5AXn#x6>g1o*6y(9+}N*w8_CB7y3`8h@YAp1atW05L| z1uEf-l0mFQ5Rn8@%mS+0ZgCXlmn4F!#v)~~U`l3U`YqPPqN2pgB5ROZkUxuTK`c8E z0gA992ZnkE2BfM&4J4xuA~Zk*s4BX}3a*QbK($DbGe{I%GP{DjBZw%4i_mHlQ1N?< zuQ;(RHNGIRxFkL$Gr6S58{{%ph{r%7dy74{KCz%6GcWxXV^on3$Z%~Cp#>szKtv9x z*aj5<kRlt2gp}SA&??j?Kfk~^Ker$!Gcm8kIVUr_sGNa;;Xg=sKNAB(1H%mg(FV^O z{DKW0H$=r7{2p-d_H%V{b@EKUAthJOBiQfP<#&-s<_eEYgX;}mq5k-;_=~)9S9s+b z+@7*?wp6y)HPuZ>yT~qkg<W<5<0W>*3+#$_1%;<b%ut*tJw>{M?XJA?oZ1y(7v)W^ z$eT3yO|ZDgB6EXRuqSec*hOCX1%?YsmQ*gZ-Qc++<BEy<38pJ1-WQd;FY<afxZUNe z7wE~DP}-T_li%QeLqc{AUxRyxV@G0#^8~>Oh7*K4JT9_`;uPl<f!fjF_LPIGhkYv3 z6pjm$<`8sIz~YL4#YGOwD;$;$jyHJuCWv)LHMo6XW8fF*&*{pUVLHe9A|H$T6+ZRJ z`r_e?+>=`bbWK^Vctl-PkGd!ub&)^%3V-xP&gctq85cP-8k}x$arY=sVC&RraDKqT z)}hj)HKF(-m()cTsmYVYqa1HY%FmaZCAWg*qNMH>N!<pIj);paVmHJjr)N*fUSPV! zdWqcyCF6@?CRfBv8az5e8~s19G4O~^$Xk$cfm`nai{4~=IccUWrpYmKTbUVZ7$=L! zCorWjP7aXwm>ef>&CWE3rIs~?d2*b*m|Y55O_0f0%T^)_$&MhhhOvgFh5?kXQQNt- z>^1BQ_+drM<OW6-nOcro&JsnCCJ07UIVmiYxfEnQSka5G6oz01O*TJpcGhHp<Zw`m zE&?UkB4bd}1#@{A7#OM?l3^)xa*%?3JvhV1gOntI2zW*=0_RXfy9ktm!R;bQh9{y` z#D$a}Q$S{;HHV5pVs>baB2Xh9k*^@xiVyB$UvTTFl7WH2iIIV!n2m9Aw4zJ>RVkwl zE<02&3OQU6a%k}W%EllfHpOCw>m2VneiwzcuLx`36_=b+v4C-6^_1$nB4SfKW`xd( zo)dRbMCXc#4u-%7PF4Y~4-BjVTn!!{_!xLarzTCwm{B+}drI~PW+pMd20xGuY70_V zMDI{Jz;}ToAmXBM<Q3t_$xL#(_C6O`e6O(hUVxz@P)y$9h>y=r%*>0A*Hpa4S&*5R zpPZbLnGY^)Z?Wc;<`z^!!ZvYooRWP#xOu4n3LZWX0cxidfnx&PI0d(VK`mNvGZ9?0 z6oG;SWJz9PZfblyBH(WcrKF~1=B2vlC*}lz+N91to{*SDL<Tqpz|C4{+jO#!vLsg% z0|Nu7swqA^*;F})U!PIn0|T7Mn7l!`M~97(<pZB3qy7g5I8nmL&dBmXNSM)&@dE=A KsWsU~Wd;Dw<unce delta 919 zcmcbeb;Xl!IWI340|NuYmqUzcUD^}*BpA~ss<&IEilp#lGl3+EGMN}sd6qFSFsue~ z!8l5ki6NCMRdg961H)=Yun+?SLzGym*aGp%iDF72Q4&lHsr(oUB$*ge*;55l#Zo1g zF*7i%W`=8(Vq!?;OchI&N)^py$YfZ?%D}Li6)r2CD!o7kWbot(jI6w}QF1Aa!3-d* z$vb%wqc_tA=FRUJ{h23kWAzi)Ky_3TV+~_4gQn(YX|_-n=Dhrj$;Dg`HgDs;%*fcj zxr^6{iRlB|W;ua4M#j9!wSp#$L6bKL9%2leTq<;wk#(}Qu$mFuE&k-3%<TB&{JfH) z{G6QBq9TyHi})BA7;f>FWM*gN=jE5hrzGYU6!9}KFcfJ{ZV}dGHDq95NZGte*oTGH zkAZ=qeKWI!A#;u?NP!uMFb5G9Ai@%45NCR7NqA9eUUEi}3P?~DL^yzCSPP0W^Gb@G zKmyhv!kK}AL6hqiYjHtpYD$qiNJt+<cz_5`5a9(Pd?qiDc4rM?U|`s?`Hi$UlLg2{ z5T}C#i&#L0GZ&TS-C`-p%uT(;TAY)bT2K@SGM%GH4rBz_?4Zf{a>=Z53=9lsH(!^V z&ctR6k}{cGqUgzJHhG_-cD*e~0AV`FyI@b;Vy#Lo$}cVg`_dJp2xMnbIEWPiA|gQq z*g{T(g}1oU^AmI83-Up}274?Dq|6&cM1zPJ5E0A3z);M|z`&rOFgZg>gf)$Uf#JdA zMy2~&w>aYCa}zW3;^Q^tZ*dl6=H(|RXJqCVfkOQjYhGz?K_%FAMM;y_8`*1u9ijj- z5)`437zFzT><w^8f&5;SHd)bF*a8$Hw}ets(=zi?-SZQ30zj^G_VFwNhXKO1V26S| q3UTe^9Ahc2d<F&vP;M!nK6!$14!;JYzy}665jC0Hq-XMBlNkVqnb9Ty diff --git a/python/ur_simple_control/clik/clik_point_to_point.py b/python/ur_simple_control/clik/clik_point_to_point.py index ca9cc34..5a66bab 100644 --- a/python/ur_simple_control/clik/clik_point_to_point.py +++ b/python/ur_simple_control/clik/clik_point_to_point.py @@ -48,7 +48,7 @@ def get_args(): to something between 0 and 1, 0.5 by default \ BE CAREFUL WITH THIS.", default=0.5) parser.add_argument('--tikhonov-damp', type=float, \ - help="damping scalar in tiknohov regularization", default=1e-3) + help="damping scalar in tikhonov regularization", default=1e-3) # TODO add the rest parser.add_argument('--clik-controller', type=str, \ help="select which click algorithm you want", \ @@ -56,6 +56,13 @@ def get_args(): # maybe you want to scale the control signal parser.add_argument('--controller-speed-scaling', type=float, \ default='1.0', help='not actually_used atm') + parser.add_argument('--alpha', type=float, \ + help="force feedback proportional coefficient", \ + #default=0.01) + default=0.05) + parser.add_argument('--beta', type=float, \ + help="low-pass filter beta parameter", \ + default=0.01) args = parser.parse_args() if args.gripper and args.simulation: @@ -79,8 +86,8 @@ the actual control loop after you've put it in getClikController, which constructs the controller from an argument to the file. """ -def dampedPseudoinverse(tiknonov_damp, J, err_vector): - qd = J.T @ np.linalg.inv(J @ J.T + np.eye(J.shape[0], J.shape[0]) * tiknonov_damp) @ err_vector +def dampedPseudoinverse(tikhonov_damp, J, err_vector): + qd = J.T @ np.linalg.inv(J @ J.T + np.eye(J.shape[0], J.shape[0]) * tikhonov_damp) @ err_vector return qd def jacobianTranspose(J, err_vector): @@ -119,7 +126,7 @@ def getClikController(args): # return invKinmQPSingAvoidManipMax # default - return partial(dampedPseudoinverse, args.tiknonov_damp) + return partial(dampedPseudoinverse, args.tikhonov_damp) # modularity yo @@ -238,6 +245,101 @@ def moveL(args, robot, goal_point): print("MoveL done: convergence achieved, reached destionation!") +""" +controlLoopClik +--------------- +generic control loop for clik (handling error to final point etc). +in some version of the universe this could be extended to a generic +point-to-point motion control loop. +""" +def controlLoopCompliantClik(args, robot, i, past_data): + breakFlag = False + log_item = {} + save_past_dict = {} + # know where you are, i.e. do forward kinematics + q = robot.getQ() + pin.forwardKinematics(robot.model, robot.data, q) + # this has forward kinematics in it + Mtool = robot.getMtool() + wrench = robot.getWrench() + # we need to overcome noise if we want to converge + if np.linalg.norm(wrench) < 3: + wrench = np.zeros(6) + save_past_dict['wrench'] = copy.deepcopy(wrench) + wrench = args.beta * wrench + (1 - args.beta) * past_data['wrench'][-1] + mapping = np.zeros((6,6)) + mapping[0:3, 0:3] = Mtool.rotation + mapping[3:6, 3:6] = Mtool.rotation + wrench = mapping.T @ wrench + #Z = np.diag(np.array([1.0, 1.0, 2.0, 1.0, 1.0, 1.0])) + Z = np.diag(np.array([1.0, 1.0, 1.0, 1.0, 1.0, 1.0])) + wrench = Z @ wrench + #pin.forwardKinematics(robot.model, robot.data, q) + # first check whether we're at the goal + SEerror = Mtool.actInv(robot.Mgoal) + err_vector = pin.log6(SEerror).vector + if np.linalg.norm(err_vector) < robot.args.goal_error: +# print("Convergence achieved, reached destionation!") + breakFlag = True + # pin.computeJointJacobian is much different than the C++ version lel + J = pin.computeJointJacobian(robot.model, robot.data, q, robot.JOINT_ID) + # compute the joint velocities. + # just plug and play different ones + qd = J.T @ np.linalg.inv(J @ J.T + np.eye(J.shape[0], J.shape[0]) * args.tikhonov_damp) @ err_vector + tau = J.T @ wrench + #tau = tau[:6].reshape((6,1)) + qd += args.alpha * tau + robot.sendQd(qd) + + # TODO: only print under a debug flag, it's just clutter otherwise + # we do the printing here because controlLoopManager should be general. + # and these prints are click specific (although i'm not 100% happy with the arrangement) +# if not i % 1000: +# print("pos", robot.data.oMi[robot.JOINT_ID]) +# print("linear error = ", pin.log6(SEerror).linear) +# print("angular error = ", pin.log6(SEerror).angular) +# print(" error = ", err_vector.transpose()) + + log_item['qs'] = q.reshape((robot.model.nq,)) + # get actual velocity, not the commanded one. + # although that would be fun to compare i guess + # TODO: have both, but call the compute control signal like it should be + log_item['dqs'] = robot.getQd().reshape((robot.model.nq,)) + log_item['wrench'] = wrench.reshape((6,)) + log_item['tau'] = tau.reshape((robot.model.nq,)) + # we're not saving here, but need to respect the API, + # hence the empty dict + return breakFlag, save_past_dict, log_item +""" +compliantMoveL +----- +does compliantMoveL - a moveL, but with compliance achieved +through f/t feedback +send a SE3 object as goal point. +if you don't care about rotation, make it np.zeros((3,3)) +""" +# add a threshold for the wrench +def compliantMoveL(args, robot, goal_point): + assert type(goal_point) == pin.pinocchio_pywrap.SE3 + robot.Mgoal = copy.deepcopy(goal_point) + clik_controller = getClikController(args) + controlLoop = partial(controlLoopCompliantClik, args, robot) + # we're not using any past data or logging, hence the empty arguments + log_item = { + 'qs' : np.zeros(robot.model.nq), + 'wrench' : np.zeros(6), + 'tau' : np.zeros(robot.model.nq), + 'dqs' : np.zeros(robot.model.nq), + } + save_past_dict = { + 'wrench': np.zeros(6), + } + loop_manager = ControlLoopManager(robot, controlLoop, args, save_past_dict, log_item) + log_dict, final_iteration = loop_manager.run() + # TODO: remove, this isn't doing anything + time.sleep(0.01) + print("compliantMoveL done: convergence achieved, reached destionation!") + if __name__ == "__main__": args = get_args() robot = RobotManager(args) diff --git a/python/ur_simple_control/managers.py b/python/ur_simple_control/managers.py index 7d0f8e9..d3dba35 100644 --- a/python/ur_simple_control/managers.py +++ b/python/ur_simple_control/managers.py @@ -143,8 +143,6 @@ class ControlLoopManager: self.plotter_queue.put(log_item) if args.debug_prints: print("CONTROL_LOOP_MANAGER: i managed to put initializing log_item to queue") - # let it boot up, hope you're not in a hurry lmao - time.sleep(1) """ run @@ -428,6 +426,7 @@ class RobotManager: print("Will read from f/t sensors for a some number of seconds") print("and give you the average.") print("Use this as offset.") + self.rtde_control.zeroFtSensor() for i in range(2000): start = time.time() ft = self.rtde_receive.getActualTCPForce() diff --git a/python/ur_simple_control/visualize/__pycache__/visualize.cpython-311.pyc b/python/ur_simple_control/visualize/__pycache__/visualize.cpython-311.pyc index ceacac05da4b5625053574aeb600448166a3a142..a7d7e06be1d8ddae19d0d223035431c46835e963 100644 GIT binary patch delta 203 zcmexsKih$KIWI340|NuYne|L*?HhTsIT@d9uH-aeV(i$wiu(tPOp44J*=39j467MI zsz8{LVFFW6R}J$5`N<QxgeRXBsNj^(W&+6+NlZ@Ql4excoF({~iBWNLoQOS>a1~c+ zK|yMfLQZO0i6-MM=A8WG&2z;P7#Ra6{}ZoejGSB}5zUp$z`)?lz`#)4w)vq18zYAY z<3|Q1Ru9I_ZzcPg1b66M;4r<&;eLg~{Q`&kMGp7P9WwPyjJcCJ<YgJlC#%U{2LP@P BI;Q{t delta 183 zcmbR3@YkMqIWI340|NuY&Nqx{<r{gkIT;^puH-aeVr<*Iiu(u4WCamHcBY<=8s-J^ zlP7WsPnH)EoXjDjF_}xyo>6wPm!LAE+~z#N&rFQ+o0CNBnKo|`OJHOSm@Fz$%NQ|v zvP3jj4g&*&GXn!dasB2W5^RiY79SauSS>cQN%b@FT;wpn!eM@a!~7zL`Q~LZ^-S_0 i)kSs;3=BmQAVQ3Rf#Da2O>TZlX-=wLQQ2e{`Rf3t?=tfM diff --git a/python/ur_simple_control/visualize/vedo_manipulator.py b/python/ur_simple_control/visualize/vedo_manipulator.py index d4a2a38..c2ce0f3 100644 --- a/python/ur_simple_control/visualize/vedo_manipulator.py +++ b/python/ur_simple_control/visualize/vedo_manipulator.py @@ -44,7 +44,7 @@ def get_args(): to something between 0 and 1, 0.5 by default \ BE CAREFUL WITH THIS.", default=0.5) parser.add_argument('--tikhonov-damp', type=float, \ - help="damping scalar in tiknohov regularization", default=1e-3) + help="damping scalar in tikhonov regularization", default=1e-3) # TODO add the rest parser.add_argument('--clik-controller', type=str, \ help="select which click algorithm you want", \ diff --git a/python/ur_simple_control/visualize/visualize.py b/python/ur_simple_control/visualize/visualize.py index 6d8491e..4679a62 100644 --- a/python/ur_simple_control/visualize/visualize.py +++ b/python/ur_simple_control/visualize/visualize.py @@ -122,7 +122,7 @@ def realTimePlotter(args, queue): axes_and_updating_artists[data_key].artists[str(data_key) + str(j)], = \ axes_and_updating_artists[data_key].ax.plot(t, logs_ndarrays[data_key][:,j], color=colors[j], label=data_key + "_" + str(j)) - axes_and_updating_artists[data_key].ax.legend() + axes_and_updating_artists[data_key].ax.legend(loc='upper left') # need to call it once canvas.draw() -- GitLab