diff --git a/README.md b/README.md index bb9551d..d083f27 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ - [x] Impulse Maneuvers - [x] Phase Maneuvers - [x] Plane Change Maneuvers +- [x] Orientation Determination #### Astronomical @@ -80,6 +81,8 @@ exe.root_module.addImport("astroz", astroz_mod); - #### [Orbit Phase Change](examples/orbit_phase_change.zig) +- #### [Orbit Orientation Determination](examples/simple_spacecraft_orientation.zig) + - #### [Parse Vita49](examples/parse_vita49.zig) - #### [Parse Vita49 with Callback](examples/parse_vita49_callback.zig) diff --git a/examples/simple_spacecraft_orientation.zig b/examples/simple_spacecraft_orientation.zig new file mode 100644 index 0000000..770a6ff --- /dev/null +++ b/examples/simple_spacecraft_orientation.zig @@ -0,0 +1,65 @@ +const std = @import("std"); +const astroz = @import("astroz"); +const constants = astroz.constants; +const TLE = astroz.tle.TLE; +const spacecraft = astroz.spacecraft; +const Spacecraft = spacecraft.Spacecraft; + +pub fn main() !void { + var gpa = std.heap.GeneralPurposeAllocator(.{}){}; + defer _ = gpa.deinit(); + const allocator = gpa.allocator(); + + const raw_tle = + \\1 55909U 23035B 24187.51050877 .00023579 00000+0 16099-2 0 9998 + \\2 55909 43.9978 311.8012 0011446 278.6226 81.3336 15.05761711 71371 + ; + var test_tle = try TLE.parse(raw_tle, allocator); + defer test_tle.deinit(); + var sc = Spacecraft.init("dummy_sc", test_tle, 300.000, spacecraft.SatelliteSize.Cube, constants.earth, allocator); + defer sc.deinit(); + + sc.angular_velocity = .{ 0.0, 0.0, 0.0 }; + + const dt = 120.0; // 2 mins time step + const simulation_time = 3 * 24 * 60 * 60.0; // 3 days in seconds + const orbital_period = 90 * 60.0; // 90 minutes orbital period + var t: f64 = 0; + + while (t < simulation_time) : (t += dt) { + // Simulate a dramatic torque effect + const torque_x = 0.001 * @sin(2 * std.math.pi * t / (orbital_period * 2)); + const torque_y = 0.0005 * @cos(2 * std.math.pi * t / (orbital_period * 3)); + const torque_z = 0.0002 * @sin(2 * std.math.pi * t / orbital_period); + + // Update angular velocity based on torque (simplified) + sc.angular_velocity[0] += torque_x * dt; + sc.angular_velocity[1] += torque_y * dt; + sc.angular_velocity[2] += torque_z * dt; + + // Update attitude + sc.updateAttitude(); + sc.propagateAttitude(dt); + + // Simulate simple circular orbit + const orbit_radius = 7000.0; + const x = orbit_radius * @cos(2 * std.math.pi * t / orbital_period); + const y = orbit_radius * @sin(2 * std.math.pi * t / orbital_period); + const z = 0.0; + + std.log.debug("Showing orbiting info: {d},{d},{d},{d},{d},{d},{d},{d},{d},{d},{d}\n", .{ + t, + sc.quaternion[0], + sc.quaternion[1], + sc.quaternion[2], + sc.quaternion[3], + sc.angular_velocity[0], + sc.angular_velocity[1], + sc.angular_velocity[2], + x, + y, + z, + }); + } +} + diff --git a/src/spacecraft.zig b/src/spacecraft.zig index c0bf1b1..d480d18 100644 --- a/src/spacecraft.zig +++ b/src/spacecraft.zig @@ -14,10 +14,20 @@ const StateTime = struct { state: StateV, }; +// an easy win would be to combine this with StateTime to form a *spacecraftState* struct to deal with all of this +/// Responsible for spacecraft orientation +const AttitudeState = struct { + quaternion: [4]f64, + angular_velocity: [3]f64, +}; + /// Satellite details used in calculations pub const SatelliteParameters = struct { drag: f64, cross_section: f64, + width: f64, + height: f64, + depth: f64, }; /// The impulse maneuver type @@ -53,14 +63,23 @@ pub const SatelliteSize = enum { .Cube => .{ .drag = 2.2, .cross_section = 0.05, + .width = 0.1, + .height = 0.1, + .depth = 0.3, }, .Medium => .{ .drag = 2.2, .cross_section = 5.0, + .width = 1.4, + .height = 1.4, + .depth = 1.6, }, .Large => .{ .drag = 2.2, .cross_section = 50.0, + .width = 3.2, + .height = 3.2, + .depth = 4.0, }, }; } @@ -72,6 +91,11 @@ pub const Spacecraft = struct { tle: TLE, mass: f64, size: SatelliteParameters, + quaternion: [4]f64, + angular_velocity: [3]f64, + inertia_tensor: [3][3]f64, + body_vectors: [2][3]f64, + reference_vectors: [2][3]f64, orbiting_object: CelestialBody = constants.earth, orbit_predictions: std.ArrayList(StateTime), allocator: std.mem.Allocator, @@ -82,6 +106,21 @@ pub const Spacecraft = struct { .tle = tle, .mass = mass, .size = size.getDragAndCrossSectional(), + .quaternion = .{ 1.0, 0.0, 0.0, 0.0 }, + .angular_velocity = .{ 0.0, 0.0, 0.0 }, + .inertia_tensor = .{ + .{ 1.0, 0.0, 0.0 }, + .{ 0.0, 1.0, 0.0 }, + .{ 0.0, 0.0, 1.0 }, + }, + .body_vectors = .{ + .{ 1.0, 0.0, 0.0 }, + .{ 0.0, 1.0, 0.0 }, + }, + .reference_vectors = .{ + .{ 1.0, 0.0, 0.0 }, + .{ 0.0, 1.0, 0.0 }, + }, .orbiting_object = orbiting_object.?, .orbit_predictions = std.ArrayList(StateTime).init(allocator), .allocator = allocator, @@ -92,6 +131,18 @@ pub const Spacecraft = struct { self.orbit_predictions.deinit(); } + pub fn updateAttitude(self: *Spacecraft) void { + const attitude_matrix = triad(self.body_vectors[0], self.body_vectors[1], self.reference_vectors[0], self.reference_vectors[1]); + self.quaternion = matrixToQuaternion(attitude_matrix); + } + + pub fn propagateAttitude(self: *Spacecraft, dt: f64) void { + const state = AttitudeState{ .quaternion = self.quaternion, .angular_velocity = self.angular_velocity }; + const new_state = rk4Attitude(self, state, dt); + self.quaternion = new_state.quaternion; + self.angular_velocity = new_state.angular_velocity; + } + /// This will call the proper propagation methods based on a TLE epoch and recalculation time /// Most of the functions this calls are private and will need code inspection to see pub fn propagate(self: *Spacecraft, t0: f64, days: f64, h: f64, impulse_list: ?[]const Impulse) !void { @@ -206,6 +257,168 @@ pub const Spacecraft = struct { ); } + fn triad(v1_body: [3]f64, v2_body: [3]f64, v1_ref: [3]f64, v2_ref: [3]f64) [3][3]f64 { + const t1_body = normalize(v1_body); + const t2_body = normalize(cross(v1_body, v2_body)); + const t3_body = cross(t1_body, t2_body); + + const t1_ref = normalize(v1_ref); + const t2_ref = normalize(cross(v1_ref, v2_ref)); + const t3_ref = cross(t1_ref, t2_ref); + + const body_matrix = [3][3]f64{ + .{ t1_body[0], t2_body[0], t3_body[0] }, + .{ t1_body[1], t2_body[1], t3_body[1] }, + .{ t1_body[2], t2_body[2], t3_body[2] }, + }; + + const ref_matrix = [3][3]f64{ + .{ t1_ref[0], t2_ref[0], t3_ref[0] }, + .{ t1_ref[1], t2_ref[1], t3_ref[1] }, + .{ t1_ref[2], t2_ref[2], t3_ref[2] }, + }; + + return multiplyMatrices(body_matrix, transposeMatrix(ref_matrix)); + } + + fn normalize(v: [3]f64) [3]f64 { + const magni = @sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]); + return .{ v[0] / magni, v[1] / magni, v[2] / magni }; + } + + fn cross(a: [3]f64, b: [3]f64) [3]f64 { + return .{ + a[1] * b[2] - a[2] * b[1], + a[2] * b[0] - a[0] * b[2], + a[0] * b[1] - a[1] * b[0], + }; + } + + fn multiplyMatrices(a: [3][3]f64, b: [3][3]f64) [3][3]f64 { + var result: [3][3]f64 = undefined; + for (0..3) |i| { + for (0..3) |j| { + result[i][j] = 0; + for (0..3) |k| { + result[i][j] += a[i][k] * b[k][j]; + } + } + } + return result; + } + + fn transposeMatrix(m: [3][3]f64) [3][3]f64 { + return .{ + .{ m[0][0], m[1][0], m[2][0] }, + .{ m[0][1], m[1][1], m[2][1] }, + .{ m[0][2], m[1][2], m[2][2] }, + }; + } + + fn matrixToQuaternion(m: [3][3]f64) [4]f64 { + var q: [4]f64 = undefined; + const trace = m[0][0] + m[1][1] + m[2][2]; + + if (trace > 0) { + const s = 0.5 / @sqrt(trace + 1.0); + q[0] = 0.25 / s; + q[1] = (m[2][1] - m[1][2]) * s; + q[2] = (m[0][2] - m[2][0]) * s; + q[3] = (m[1][0] - m[0][1]) * s; + } else { + if (m[0][0] > m[1][1] and m[0][0] > m[2][2]) { + const s = 2.0 * @sqrt(1.0 + m[0][0] - m[1][1] - m[2][2]); + q[0] = (m[2][1] - m[1][2]) / s; + q[1] = 0.25 * s; + q[2] = (m[0][1] + m[1][0]) / s; + q[3] = (m[0][2] + m[2][0]) / s; + } else if (m[1][1] > m[2][2]) { + const s = 2.0 * @sqrt(1.0 + m[1][1] - m[0][0] - m[2][2]); + q[0] = (m[0][2] - m[2][0]) / s; + q[1] = (m[0][1] + m[1][0]) / s; + q[2] = 0.25 * s; + q[3] = (m[1][2] + m[2][1]) / s; + } else { + const s = 2.0 * @sqrt(1.0 + m[2][2] - m[0][0] - m[1][1]); + q[0] = (m[1][0] - m[0][1]) / s; + q[1] = (m[0][2] + m[2][0]) / s; + q[2] = (m[1][2] + m[2][1]) / s; + q[3] = 0.25 * s; + } + } + + return q; + } + + fn rk4Attitude(spacecraft: *Spacecraft, state: AttitudeState, dt: f64) AttitudeState { + const k1 = attitudeDerivative(spacecraft, state); + const k2 = attitudeDerivative(spacecraft, addScaledAttitudeState(state, k1, 0.5 * dt)); + const k3 = attitudeDerivative(spacecraft, addScaledAttitudeState(state, k2, 0.5 * dt)); + const k4 = attitudeDerivative(spacecraft, addScaledAttitudeState(state, k3, dt)); + + return addScaledAttitudeState(state, addAttitudeStates(addAttitudeStates(k1, scaleAttitudeState(k2, 2)), addAttitudeStates(scaleAttitudeState(k3, 2), k4)), dt / 6.0); + } + + fn attitudeDerivative(spacecraft: *Spacecraft, state: AttitudeState) AttitudeState { + const q = state.quaternion; + const w = state.angular_velocity; + + const q_dot = [4]f64{ + 0.5 * (-q[1] * w[0] - q[2] * w[1] - q[3] * w[2]), + 0.5 * (q[0] * w[0] + q[2] * w[2] - q[3] * w[1]), + 0.5 * (q[0] * w[1] - q[1] * w[2] + q[3] * w[0]), + 0.5 * (q[0] * w[2] + q[1] * w[1] - q[2] * w[0]), + }; + + const I = spacecraft.inertia_tensor; + const w_dot = [3]f64{ + (I[1][1] - I[2][2]) / I[0][0] * w[1] * w[2], + (I[2][2] - I[0][0]) / I[1][1] * w[2] * w[0], + (I[0][0] - I[1][1]) / I[2][2] * w[0] * w[1], + }; + + return AttitudeState{ + .quaternion = q_dot, + .angular_velocity = w_dot, + }; + } + + fn addAttitudeStates(a: AttitudeState, b: AttitudeState) AttitudeState { + return AttitudeState{ + .quaternion = .{ + a.quaternion[0] + b.quaternion[0], + a.quaternion[1] + b.quaternion[1], + a.quaternion[2] + b.quaternion[2], + a.quaternion[3] + b.quaternion[3], + }, + .angular_velocity = .{ + a.angular_velocity[0] + b.angular_velocity[0], + a.angular_velocity[1] + b.angular_velocity[1], + a.angular_velocity[2] + b.angular_velocity[2], + }, + }; + } + + fn scaleAttitudeState(state: AttitudeState, scalar: f64) AttitudeState { + return AttitudeState{ + .quaternion = .{ + state.quaternion[0] * scalar, + state.quaternion[1] * scalar, + state.quaternion[2] * scalar, + state.quaternion[3] * scalar, + }, + .angular_velocity = .{ + state.angular_velocity[0] * scalar, + state.angular_velocity[1] * scalar, + state.angular_velocity[2] * scalar, + }, + }; + } + + fn addScaledAttitudeState(state: AttitudeState, delta: AttitudeState, scalar: f64) AttitudeState { + return addAttitudeStates(state, scaleAttitudeState(delta, scalar)); + } + fn vectorAdd(a: StateV, b: StateV) StateV { var result: StateV = undefined; for (0..6) |i| { @@ -587,3 +800,120 @@ test "prop spacecraft w/ plane change" { // // std.debug.print("Orbit data written to orbit_data.csv\n", .{}); } + +test "orientation determination testing" { + const raw_tle = + \\1 55909U 23035B 24187.51050877 .00023579 00000+0 16099-2 0 9998 + \\2 55909 43.9978 311.8012 0011446 278.6226 81.3336 15.05761711 71371 + ; + var test_tle = try TLE.parse(raw_tle, std.testing.allocator); + defer test_tle.deinit(); + var spacecraft = Spacecraft.init("dummy_sc", test_tle, 300.000, SatelliteSize.Cube, constants.earth, std.testing.allocator); + + spacecraft.angular_velocity = .{ 0.1, 0.05, 0.02 }; + + // const file = try std.fs.cwd().createFile("test/attitude_data.csv", .{}); + // defer file.close(); + // const writer = file.writer(); + // + // try writer.writeAll("Time,qw,qx,qy,qz,wx,wy,wz\n"); + + const dt = 60.0; // 1 minute time step + const simulation_time = 3 * 24 * 60 * 60.0; // 3 days in seconds + const orbital_period = 90 * 60.0; // 90 minutes orbital period + var t: f64 = 0; + while (t < simulation_time) : (t += dt) { + const angle = 0.5 * @sin(2 * std.math.pi * t / orbital_period); + + spacecraft.body_vectors[0] = .{ @cos(angle), 0, @sin(angle) }; + spacecraft.body_vectors[1] = .{ 0, 1, 0 }; + + spacecraft.updateAttitude(); + spacecraft.propagateAttitude(dt); + + // Simulate simple circular orbit + const orbit_radius = 7000.0; + // const x = orbit_radius * @cos(2 * std.math.pi * t / orbital_period); + // const y = orbit_radius * @sin(2 * std.math.pi * t / orbital_period); + // const z = 0.0; + + try std.testing.expect(orbit_radius > spacecraft.orbiting_object.m_radius.?); + + // try writer.print("{d},{d},{d},{d},{d},{d},{d},{d},{d},{d},{d}\n", .{ + // t, + // spacecraft.quaternion[0], + // spacecraft.quaternion[1], + // spacecraft.quaternion[2], + // spacecraft.quaternion[3], + // spacecraft.angular_velocity[0], + // spacecraft.angular_velocity[1], + // spacecraft.angular_velocity[2], + // x, + // y, + // z, + // }); + } +} + +test "orientation determination with dramatic changes" { + const raw_tle = + \\1 55909U 23035B 24187.51050877 .00023579 00000+0 16099-2 0 9998 + \\2 55909 43.9978 311.8012 0011446 278.6226 81.3336 15.05761711 71371 + ; + var test_tle = try TLE.parse(raw_tle, std.testing.allocator); + defer test_tle.deinit(); + var spacecraft = Spacecraft.init("dummy_sc", test_tle, 300.000, SatelliteSize.Cube, constants.earth, std.testing.allocator); + defer spacecraft.deinit(); + + // Initial angular velocity + spacecraft.angular_velocity = .{ 0.0, 0.0, 0.0 }; + + // const file = try std.fs.cwd().createFile("test/dramatic_attitude_data.csv", .{}); + // defer file.close(); + // const writer = file.writer(); + + // try writer.writeAll("Time,qw,qx,qy,qz,wx,wy,wz,x,y,z\n"); + + const dt = 120.0; // 2 mins time step + const simulation_time = 3 * 24 * 60 * 60.0; // 3 days in seconds + const orbital_period = 90 * 60.0; // 90 minutes orbital period + var t: f64 = 0; + + while (t < simulation_time) : (t += dt) { + // Simulate a dramatic torque effect + const torque_x = 0.001 * @sin(2 * std.math.pi * t / (orbital_period * 2)); + const torque_y = 0.0005 * @cos(2 * std.math.pi * t / (orbital_period * 3)); + const torque_z = 0.0002 * @sin(2 * std.math.pi * t / orbital_period); + + // Update angular velocity based on torque (simplified) + spacecraft.angular_velocity[0] += torque_x * dt; + spacecraft.angular_velocity[1] += torque_y * dt; + spacecraft.angular_velocity[2] += torque_z * dt; + + // Update attitude + spacecraft.updateAttitude(); + spacecraft.propagateAttitude(dt); + + // Simulate simple circular orbit + const orbit_radius = 7000.0; + // const x = orbit_radius * @cos(2 * std.math.pi * t / orbital_period); + // const y = orbit_radius * @sin(2 * std.math.pi * t / orbital_period); + // const z = 0.0; + + try std.testing.expect(orbit_radius > spacecraft.orbiting_object.m_radius.?); + + // try writer.print("{d},{d},{d},{d},{d},{d},{d},{d},{d},{d},{d}\n", .{ + // t, + // spacecraft.quaternion[0], + // spacecraft.quaternion[1], + // spacecraft.quaternion[2], + // spacecraft.quaternion[3], + // spacecraft.angular_velocity[0], + // spacecraft.angular_velocity[1], + // spacecraft.angular_velocity[2], + // x, + // y, + // z, + // }); + } +} diff --git a/test/attitude_data.csv b/test/attitude_data.csv new file mode 100644 index 0000000..2656fc9 --- /dev/null +++ b/test/attitude_data.csv @@ -0,0 +1 @@ +Time,qw,qx,qy,qz,wx,wy,wz diff --git a/test/dramatic_attitude_data.csv b/test/dramatic_attitude_data.csv new file mode 100644 index 0000000..26430ae --- /dev/null +++ b/test/dramatic_attitude_data.csv @@ -0,0 +1,2161 @@ +Time,qw,qx,qy,qz,wx,wy,wz,x,y,z +0,1.5183999999999993,0,-4.175999999999999,0,0,0.06,0,7000,0,0 +120,87.95936869204752,-3.85694373284776,-55.26161523975087,-1.539019364705543,0.008370776849295037,0.11993502668031147,0.0033401544230415707,6931.876481190992,974.2117067204581,0 +240,530.0288423387694,-28.29054323292697,-202.7441989147494,-11.23365438094327,0.02507154896450289,0.17967527411929973,0.009955450962649551,6728.831871568233,1929.4614907189941,0 +360,1840.500587560266,-105.14401000006893,-502.5698877372735,-41.44539594672569,0.050020951862634014,0.23909135824379396,0.019717130396468757,6394.8182034982065,2847.1565015306014,0 +480,4886.049338742165,-284.5734513428811,-1020.7105167381828,-111.07677139783993,0.08309743456067391,0.29805459704617876,0.03243519273806567,5936.336673094982,3709.434849632434,0 +600,11054.68295367426,-639.4400153434729,-1835.9959553351039,-246.53597184359396,0.12413985175975416,0.3564372892809682,0.04786209537054262,5362.311101832846,4499.513267805774,0 +720,22483.194889830684,-1270.4443075786685,-3041.993749090281,-482.60162127604525,0.1729482489288502,0.41411299103726734,0.06569757118200008,4683.914244512008,5202.0137783417595,0 +840,42345.05063885547,-2311.4518293082715,-4747.779877687418,-862.889600852774,0.2292848364631571,0.4709567895881271,0.08559447292332108,3914.3503242952274,5803.263007885292,0 +960,75193.58604475291,-3934.4133470140337,-7077.515012128642,-1439.6356069829203,0.2928751481711417,0.5268455739236957,0.10716553003450108,3068.5980275235424,6291.55832409417,0 +1080,127347.91450371224,-6353.2877101213135,-10168.814446841769,-2272.559681003444,0.36340937844623844,0.5816583013822517,0.12999088642558476,2163.118960624632,6657.395614066075,0 +1200,207300.5272350076,-9826.424729745133,-14169.971411340766,-3426.66651828836,0.4405438916086232,0.6352762598016565,0.15362627249787775,1215.537243668513,6893.6542710854565,0 +1320,326117.4802844467,-14656.956267197309,-19236.157682615318,-4968.947949217623,0.5239028960637029,0.6875833246234622,0.17761165234633605,244.29647691750756,6995.735789133671,0 +1440,497795.5587471926,-21190.865323555365,-25524.77814971764,-6964.078746504397,0.6130802751209902,0.7384662103928478,0.2014801778351746,-731.6992428735749,6961.653267577913,0 +1560,739536.9460436318,-29812.544185904124,-33190.19427009627,-9469.319852859127,0.7076415655537968,0.7878147161096876,0.22476727526579854,-1693.4532691976729,6792.070083931975,0 +1680,1071901.3731523294,-40937.80125271622,-42378.053678583754,-12528.95081220597,0.8071260742604017,0.8355219638993784,0.24701968777540143,-2622.2461539113847,6490.286981967512,0 +1800,1518798.674402909,-55004.420219890824,-53219.469536603545,-16168.63432197243,0.9110491227145343,0.881484630486517,0.26780429746622797,-3499.9999999999986,6062.177826491071,0 +1920,2107290.8572947937,-72460.50476806394,-65825.28492271763,-20390.16238626541,1.0189044082704344,0.9256031709701068,0.2867165555527893,-4309.630327279608,5516.075275247054,0 +2040,2867181.548791171,-93750.94931231272,-80280.63723051574,-25167.041459221233,1.130166470818449,0.9677820344156465,0.30338835644380524,-5035.378602370559,4862.60859321298,0 +2160,3830381.128167979,-119302.45752959585,-96640.00856351545,-30441.343170129217,1.2442932527738673,1.007929870797178,0.3174952024988246,-5663.118960624632,4114.496766047313,0 +2280,5030047.068961189,-149507.5843745093,-114922.91433518236,-36122.18126704983,1.3607287399269867,1.0459597288411007,0.328762520005686,-6180.633150012489,3286.300939501235,0 +2400,6499510.184293101,-184708.3062632272,-135110.34751624725,-42086.08064508818,1.4789056702884518,1.0817892443432677,0.33697100344550207,-6577.848345501358,2394.141003279682,0 +2520,8271008.04106494,-225179.63251909777,-157142.06360255543,-48179.38884084785,1.5982482977326447,1.1153408185515126,0.3419608840251283,-6847.0332051366395,1455.3818357243151,0 +2640,10374256.520924378,-271113.764873533,-180914.76398691957,-54222.752974707764,1.7181751969749361,1.1465417862272655,0.3436350393949873,-6982.948351818769,488.29531620887866,0 +2760,12834899.382796641,-322605.29691048583,-206281.21453446875,-60017.55438380259,1.8381020962172276,1.1753245730222803,0.3419608840251283,-6982.948351818769,-488.2953162088769,0 +2880,15672883.938745044,-379637.9271126754,-233050.3221270303,-65354.066809019096,1.9574447236614205,1.201626841829625,0.33697100344550207,-6847.0332051366395,-1455.3818357243165,0 +3000,18900818.86142579,-442073.1411369584,-260988.18393564274,-70020.98847125118,2.0756216540228856,1.2253916277919743,0.328762520005686,-6577.848345501359,-2394.1410032796807,0 +3120,22522377.860772092,-509641.3022472794,-289820.1203670285,-73815.8989650968,2.1920571411760053,1.2465674616748064,0.3174952024988246,-6180.63315001249,-3286.300939501233,0 +3240,26530820.407962453,-581935.5719564076,-319233.70043889194,-76556.11287598973,2.3061839231314236,1.2651084813373032,0.3033883564438053,-5663.118960624634,-4114.4967660473085,0 +3360,30907707.39162438,-658409.0618954787,-348882.76482829684,-78089.34697598264,2.417445985679438,1.2809745310595353,0.28671655555278935,-5035.378602370558,-4862.608593212982,0 +3480,35621894.70631115,-738375.5868863879,-378392.4441061806,-78303.58997744153,2.525301271235338,1.2941312485108094,0.267804297466228,-4309.630327279607,-5516.075275247055,0 +3600,40628890.07605147,-821014.3413278975,-407365.15527402796,-77135.56608129207,2.6292243196894707,1.3045501391708252,0.2470196877754015,-3500.000000000003,-6062.177826491069,0 +3720,45870656.45155552,-905378.7497155175,-435387.5370334455,-74577.21855092286,2.728708828396076,1.312208638042461,0.22476727526579862,-2622.246153911386,-6490.286981967512,0 +3840,51275937.60530933,-990409.6422226315,-462038.2527260092,-70679.70914786849,2.8232701188288827,1.3170901585225325,0.2014801778351747,-1693.4532691976744,-6792.070083931975,0 +3960,56761166.833626054,-1074952.7751743705,-486896.5503199005,-65554.53402389755,2.91244749788617,1.3191841283246826,0.17761165234633614,-731.6992428735736,-6961.6532675779135,0 +4080,62231997.22273136,-1157780.5548134563,-509551.4232077984,-59371.495077374355,2.9958065023412495,1.3184860123765987,0.15362627249787783,244.29647691750898,-6995.735789133671,0 +4200,67585461.78644398,-1237617.6358422237,-529611.1670793908,-52353.43364139393,3.072941015503634,1.3149973226419702,0.12999088642558485,1215.5372436685097,-6893.654271085457,0 +4320,72712734.94335105,-1313169.8627155814,-546713.08078134,-44767.82330391755,3.1434752457787307,1.308725614845911,0.10716553003450116,2163.1189606246307,-6657.395614066076,0 +4440,77502425.32871628,-1383155.814023955,-560533.0174184787,-36915.52004474323,3.2070655574867155,1.299684472110942,0.08559447292332115,3068.598027523542,-6291.55832409417,0 +4560,81844286.87578762,-1446340.013657574,-570794.4605731505,-29117.16723163099,3.2634021450210224,1.2878934755389722,0.06569757118200015,3914.3503242952293,-5803.263007885292,0 +4680,85633194.26619624,-1501566.7032164182,-577276.7835893659,-21697.934910578315,3.3122105421901185,1.273378161802992,0.04786209537054267,4683.914244512004,-5202.013778341762,0 +4800,88773194.45380527,-1547792.9444867242,-579822.3506685664,-14971.421208320255,3.3532529593891987,1.2561699678403266,0.03243519273806572,5362.3111018328445,-4499.513267805777,0 +4920,91181422.14438415,-1584119.7529611574,-578342.1390743485,-9223.643554750535,3.3863294420872387,1.2363061627672292,0.0197171303964688,5936.336673094981,-3709.434849632435,0 +5040,92791657.38300478,-1609819.9640232092,-572819.602529987,-4698.086682090714,3.41127884498537,1.2138297671622744,0.009955450962649598,6394.8182034982065,-2847.156501530601,0 +5160,93557310.1503626,-1624361.6084026909,-563312.5557373746,-1582.7452951667924,3.427979617100578,1.1887894598933653,0.003340154423041624,6728.831871568233,-1929.4614907189925,0 +5280,93453640.94351164,-1627425.7229898982,-549952.9360377368,-0.000000004666560046370782,3.4363503939498727,1.1612394726901445,0.000000000000000042500725161431774,6931.876481190991,-974.2117067204612,0 +5400,92479066.77773613,-1618917.7411886523,-532944.3863161779,-0.00000000001364184113956794,3.4363503939498727,1.1312394726901445,0.00000000000000005793870259832749,7000,0.0000000000045027434190945825,0 +5520,90655456.15616694,-1598971.8820395707,-512557.697950469,-1558.0060562357473,3.427979617100578,1.0988544332130536,0.0033401544230416275,6931.876481190992,974.2117067204576,0 +5640,88027379.99759509,-1567948.2727739539,-489124.2478708979,-4575.888647897376,3.41127884498537,1.0641544930429745,0.009955450962649612,6728.831871568232,1929.4614907189953,0 +5760,84660352.84451939,-1526422.875104231,-463027.6534181043,-8887.699612017455,3.3863294420872387,1.027214804523435,0.019717130396468822,6394.818203498206,2847.1565015306032,0 +5880,80638163.92489436,-1475170.619393389,-434693.94680920313,-14268.963284614842,3.3532529593891987,0.9881153707941477,0.032435192738065735,5936.336673094983,3709.434849632433,0 +6000,76059455.01347724,-1415142.460894994,-404580.63266014156,-20449.087569620453,3.3122105421901185,0.9469408725220236,0.04786209537054267,5362.311101832847,4499.513267805774,0 +6120,71033746.57552496,-1347437.338497051,-373165.0334545901,-27126.096179793916,3.2634021450210224,0.9037804845017046,0.06569757118200012,4683.914244512012,5202.013778341756,0 +6240,65677141.821761325,-1273270.2224871707,-340932.3469641121,-33982.74579337989,3.2070655574867155,0.8587276825228146,0.08559447292332112,3914.3503242952315,5803.263007885289,0 +6360,60107948.272819355,-1193937.5724447197,-308363.83600496815,-40703.02540188939,3.143475245778731,0.8118800409222151,0.10716553003450112,3068.5980275235447,6291.558324094168,0 +6480,54442448.33512999,-1110781.583965423,-275925.54587271204,-46988.042398594276,3.0729410155036345,0.7633390212597183,0.1299908864255848,2163.11896062464,6657.395614066072,0 +6600,48791026.11882863,-1025154.5841422153,-244057.90118144738,-52570.37708303025,2.99580650234125,0.7132097525749421,0.15362627249787777,1215.5372436685132,6893.6542710854565,0 +6720,43254820.61467326,-938384.8469270989,-213166.47574200438,-57226.12452943847,2.9124474978861703,0.6616008037012202,0.17761165234633608,244.29647691750614,6995.735789133671,0 +6840,37923029.67361319,-851744.9519183408,-183614.16145724713,-60784.02602649687,2.823270118828883,0.6086239481296846,0.20148017783517463,-731.6992428735763,6961.653267577913,0 +6960,32870939.66162187,-766423.6185450696,-155714.89025337482,-63131.30468412197,2.7287088283960763,0.5543939219327734,0.22476727526579854,-1693.4532691976772,6792.070083931974,0 +7080,28158706.674779825,-683501.72880409,-129728.99191814486,-64216.04363642553,2.629224319689471,0.4990281752714468,0.24701968777540145,-2622.246153911377,6490.286981967515,0 +7200,23830870.61987134,-603933.0226526711,-105860.20489334359,-64046.163794561784,2.5253012712353384,0.44264661802429234,0.26780429746622797,-3499.9999999999945,6062.1778264910745,0 +7320,19916546.127657365,-528529.7265487256,-84254.30010612225,-62685.25692031927,2.4174459856794384,0.3853713600894284,0.2867165555527893,-4309.630327279604,5516.075275247056,0 +7440,16430205.84838451,-457953.17044730624,-64999.232123465656,-60245.69780262082,2.306183923131424,0.3273264469216566,0.30338835644380524,-5035.378602370555,4862.608593212984,0 +7560,13372952.712830493,-392709.27117226983,-48126.69822394772,-56879.58914570784,2.1920571411760057,0.26863759087762823,0.3174952024988246,-5663.118960624631,4114.496766047314,0 +7680,10734167.763355628,-333148.6157505159,-33614.96402499785,-52768.18067409604,2.075621654022886,0.2094318989508735,0.328762520005686,-6180.633150012488,3286.3009395012364,0 +7800,8493417.966727745,-279470.76823119563,-21392.802551840075,-48110.449335396086,1.957444723661421,0.14983759748635692,0.33697100344550207,-6577.848345501359,2394.141003279681,0 +7920,6622512.385065047,-231732.3453714076,-11344.389689641712,-43111.53218502065,1.838102096217228,0.08998375447076745,0.3419608840251283,-6847.0332051366395,1455.3818357243138,0 +8040,5087603.456789861,-189858.35534965672,-3314.9999316237613,-37971.67106993133,1.7181751969749366,0.029999999999999742,0.3436350393949873,-6982.94835181877,488.2953162088741,0 +8160,3851241.327426475,-153656.2628414308,2882.6507523697937,-32876.26306362742,1.598248297732645,-0.029983754470767968,0.34196088402512825,-6982.948351818769,-488.2953162088814,0 +8280,2874301.906909329,-122832.22653404316,7461.5659047180125,-27987.51770459349,1.4789056702884522,-0.08983759748635742,0.33697100344550207,-6847.03320513664,-1455.3818357243088,0 +8400,2117722.7792256502,-97008.94550453758,10653.28490286951,-23438.106693386468,1.3607287399269872,-0.149431898950874,0.32876252000568607,-6577.84834550136,-2394.1410032796757,0 +8520,1543994.8366206181,-75744.54465819792,12700.510337398175,-19327.059349413932,1.2442932527738675,-0.20863759087762876,0.3174952024988247,-6180.633150012491,-3286.300939501232,0 +8640,1118371.4707689518,-58551.924830523625,13849.710135209187,-15718.01384984408,1.1301664708184491,-0.2673264469216571,0.30338835644380535,-5663.1189606246335,-4114.496766047309,0 +8760,809771.4258864654,-44918.00096136214,14343.868714932067,-12639.786827323634,1.0189044082704346,-0.3253713600894289,0.2867165555527894,-5035.378602370559,-4862.60859321298,0 +8880,591366.1081932331,-34322.255048802326,14415.572651296636,-10089.079909779233,0.9110491227145345,-0.38264661802429284,0.2678042974662281,-4309.630327279608,-5516.075275247054,0 +9000,440857.1960658046,-26254.044174711304,14280.625388148163,-8035.009649293606,0.807126074260402,-0.43902817527144733,0.24701968777540156,-3499.9999999999986,-6062.177826491071,0 +9120,340465.4655726428,-20228.133339336837,14132.389421171682,-6425.035831293802,0.707641565553797,-0.49439392193277387,0.22476727526579865,-2622.246153911382,-6490.2869819675125,0 +9240,276666.1612567516,-15797.973429677211,14137.050084879867,-5191.780954653267,0.6130802751209904,-0.5486239481296851,0.20148017783517475,-1693.4532691976701,-6792.070083931976,0 +9360,239719.0248003203,-12566.320269266755,14429.980117228799,-4260.188144992326,0.523902896063703,-0.6016008037012207,0.1776116523463362,-731.6992428735814,-6961.653267577913,0 +9480,223051.08493637448,-10192.892912864803,15113.356885561647,-3554.461142238675,0.4405438916086233,-0.6532097525749426,0.15362627249787789,244.29647691750105,-6995.735789133671,0 +9600,222556.35558276024,-8398.896705692234,16255.14403040359,-3004.270369790068,0.36340937844623855,-0.7033390212597188,0.1299908864255849,1215.5372436685082,-6893.654271085457,0 +9720,235877.75764660485,-6968.384366454253,17889.497129847663,-2549.791639128163,0.29287514817114174,-0.7518800409222156,0.10716553003450122,2163.118960624629,-6657.395614066077,0 +9840,261732.38792585142,-5746.588553362775,20018.590973752085,-2145.262747941554,0.22928483646315714,-0.7987276825228152,0.0855944729233212,3068.59802752354,-6291.55832409417,0 +9960,299331.8269834052,-4635.521513710796,22615.797575181463,-1760.888048875214,0.17294824892885016,-0.8437804845017052,0.06569757118200018,3914.3503242952174,-5803.263007885299,0 +10080,347935.30696468364,-3587.289331910042,25630.0735414987,-1383.0786946474566,0.12413985175975414,-0.8869408725220242,0.047862095370542715,4683.914244512009,-5202.013778341759,0 +10200,406556.6874420253,-2595.6973794092783,28991.347909794054,-1013.1714081902185,0.08309743456067391,-0.9281153707941483,0.03243519273806578,5362.311101832847,-4499.5132678057735,0 +10320,473828.22695352824,-1686.8181536789323,32616.642227392374,-664.9056495876669,0.050020951862634035,-0.9672148045234357,0.019717130396468868,5936.336673094984,-3709.434849632432,0 +10440,548007.2233990353,-909.2433361067771,36416.60842390268,-361.043805412381,0.02507154896450285,-1.004154493042975,0.009955450962649638,6394.818203498203,-2847.1565015306082,0 +10560,627097.7652111863,-324.74254137235334,40302.14098778152,-129.58059394523266,0.008370776849294947,-1.0388544332130543,0.003340154423041637,6728.831871568231,-1929.4614907190003,0 +10680,709050.7112888045,0.00000000000536705371325097,44190.71104071485,-0.0000000000020394804110353834,-0.00000000000000013010426069826053,-1.071239472690145,0.000000000000000049439619065339,6931.876481190991,-974.2117067204629,0 +10800,792001.5507350276,0.0000000000023069725792942125,48012.082502892576,-0.000000000003501616185998897,-0.00000000000000005291437351378197,-1.101239472690145,0.00000000000000008031557393913042,7000,0.000000000009005486838189165,0 +10920,874508.1037053983,-383.4894569702668,51713.10438704718,-153.0221183708865,0.008370776849294964,-1.1287894598933659,0.003340154423041644,6931.876481190992,974.2117067204562,0 +11040,955757.3849533868,-1200.7724965665136,55261.32637795236,-476.8046730495775,0.025071548964502813,-1.153829767162275,0.009955450962649623,6728.831871568233,1929.4614907189937,0 +11160,1035721.911946163,-2493.9012887751173,58647.253722309404,-983.0396079174407,0.05002095186263383,-1.1763061627672298,0.01971713039646879,6394.818203498212,2847.1565015305905,0 +11280,1115258.372204167,-4299.134975742105,61885.1372832678,-1678.0695130045347,0.08309743456067376,-1.1961699678403273,0.03243519273806572,5936.336673094981,3709.4348496324365,0 +11400,1196153.7860350853,-6651.35983672021,65012.27976160923,-2564.4304736644635,0.12413985175975392,-1.2133781618029926,0.047862095370542646,5362.311101832853,4499.513267805769,0 +11520,1281134.2093372697,-9590.012844350911,68086.9235441512,-3642.9426454455424,0.17294824892884997,-1.2278934755389728,0.06569757118200012,4683.914244512004,5202.013778341763,0 +11640,1373857.1912172635,-13165.938726093449,71184.86355779947,-4914.985234890509,0.2292848364631568,-1.2396844721109426,0.08559447292332112,3914.350324295233,5803.263007885288,0 +11760,1478910.8832399403,-17448.54500837441,74394.99469247153,-6384.572353884609,0.29287514817114135,-1.2487256148459116,0.10716553003450112,3068.5980275235465,6291.558324094167,0 +11880,1601839.8913707624,-22532.603363180817,77814.05370948311,-8059.872029662861,0.36340937844623816,-1.2549973226419708,0.12999088642558482,2163.1189606246235,6657.3956140660775,0 +12000,1749211.3605532516,-28544.07747351937,81540.84739536289,-9953.878166680237,0.44054389160862284,-1.2584860123765995,0.1536262724978778,1215.5372436685147,6893.6542710854565,0 +12120,1928725.6010361544,-35644.432028699805,85670.27098134124,-12084.045568616722,0.5239028960637026,-1.2591841283246834,0.1776116523463361,244.2964769175079,6995.735789133671,0 +12240,2149365.302302233,-44032.985457488656,90287.41408790377,-14470.819076405027,0.6130802751209898,-1.2570901585225334,0.20148017783517466,-731.6992428735622,6961.653267577914,0 +12360,2421567.5497218594,-53946.99949355283,95462.02774201469,-17135.115678856313,0.7076415655537964,-1.252208638042462,0.22476727526579857,-1693.4532691976756,6792.070083931974,0 +12480,2757394.757092539,-65659.33961960638,101243.58866280626,-20094.939427197016,0.8071260742604014,-1.2445501391708262,0.24701968777540148,-2622.2461539113756,6490.286981967515,0 +12600,3170675.1635862044,-79473.680255294,107657.15019292933,-23361.411121728885,0.9110491227145341,-1.2341312485108105,0.267804297466228,-3500.000000000004,6062.177826491069,0 +12720,3677081.1587276575,-95717.35726858502,114700.11755435428,-26934.568895672506,1.0189044082704342,-1.2209745310595363,0.28671655555278935,-4309.630327279602,5516.075275247058,0 +12840,4294114.385292795,-114732.08059115648,122340.03305880114,-30799.336434677312,1.1301664708184487,-1.2051084813373043,0.3033883564438053,-5035.378602370554,4862.6085932129845,0 +12960,5040969.961295127,-136862.80711180068,130513.40853155905,-34922.06082581379,1.244293252773867,-1.1865674616748074,0.3174952024988247,-5663.118960624622,4114.496766047325,0 +13080,5938257.677717874,-162445.13755788055,139125.60066573438,-39247.993534012865,1.3607287399269867,-1.1653916277919754,0.32876252000568607,-6180.633150012487,3286.300939501238,0 +13200,7007565.030118376,-191791.6426403923,148051.6923260978,-43700.03007723106,1.4789056702884518,-1.1416268418296258,0.3369710034455021,-6577.848345501358,2394.1410032796825,0 +13320,8270854.871530322,-225177.54747596028,157138.3197148511,-48178.94272543802,1.5982482977326447,-1.1153245730222812,0.3419608840251284,-6847.033205136637,1455.3818357243276,0 +13440,9749698.944289623,-262826.2146504917,166206.37129233446,-52565.24293009941,1.7181751969749361,-1.0865417862272664,0.3436350393949874,-6982.94835181877,488.2953162088759,0 +13560,11464357.373573948,-304894.87089899695,175054.477816492,-56722.70316317992,1.8381020962172276,-1.0553408185515134,0.3419608840251284,-6982.94835181877,-488.2953162088673,0 +13680,13432723.367085217,-351461.02501118474,183463.21141092162,-60503.45781845558,1.9574447236614205,-1.0217892443432686,0.3369710034455022,-6847.033205136639,-1455.3818357243192,0 +13800,15669161.925838843,-402510.02820679964,191199.91232382107,-63754.49540351212,2.0756216540228856,-0.9859597288411014,0.3287625200056862,-6577.848345501361,-2394.1410032796744,0 +13920,18183281.354082398,-457924.2334179499,198024.06208530493,-66325.25424960125,2.1920571411760053,-0.9479298707971788,0.3174952024988248,-6180.633150012486,-3286.3009395012414,0 +14040,20978686.61959195,-517474.2145783249,203693.11855651997,-68075.9456729684,2.3061839231314236,-0.9077820344156473,0.30338835644380546,-5663.118960624634,-4114.4967660473085,0 +14160,24051773.7433444,-580812.5066030702,207968.72005949405,-68886.15600997767,2.4174459856794384,-0.8656031709701076,0.2867165555527896,-5035.378602370569,-4862.60859321297,0 +14280,27390633.63870737,-647470.3148434537,210623.15154182503,-68663.22635321313,2.5253012712353384,-0.8214846304865179,0.26780429746622825,-4309.630327279609,-5516.075275247053,0 +14400,30974141.090503924,-716857.612098995,211445.94586622875,-67349.88041683195,2.629224319689471,-0.7755219638993792,0.24701968777540173,-3500.000000000011,-6062.177826491064,0 +14520,34771308.52352439,-788266.9847014315,210250.46927646647,-64930.57100470302,2.7287088283960763,-0.7278147161096884,0.22476727526579884,-2622.2461539113833,-6490.286981967512,0 +14640,38740983.41450696,-860881.5011799678,206880.3143587135,-61436.047792942154,2.823270118828883,-0.6784662103928487,0.20148017783517494,-1693.453269197684,-6792.070083931973,0 +14760,42831961.31751612,-933786.7546532846,201215.29964059315,-56945.71612139496,2.9124474978861703,-0.6275833246234631,0.17761165234633638,-731.6992428735707,-6961.6532675779135,0 +14880,46983572.52606756,-1005987.0740000847,193176.85601099615,-51587.45874905529,2.99580650234125,-0.5752762598016574,0.15362627249787808,244.2964769174993,-6995.735789133671,0 +15000,51126779.02211978,-1076425.7137411626,182732.57005629945,-45534.72780458871,3.0729410155036345,-0.5216583013822527,0.1299908864255851,1215.5372436685188,-6893.654271085456,0 +15120,55185790.01531578,-1144008.627254684,169899.6564014831,-39000.87683795944,3.143475245778731,-0.46684557392369663,0.10716553003450141,2163.1189606246276,-6657.395614066077,0 +15240,59080170.44804933,-1207631.2149496581,154747.1475734489,-32230.883802192224,3.207065557486716,-0.4109567895881281,0.08559447292332137,3068.598027523528,-6291.558324094176,0 +15360,62727379.665355906,-1266207.2335873272,137396.62194030453,-25490.802592835953,3.263402145021023,-0.35411299103726834,0.06569757118200037,3914.350324295226,-5803.263007885293,0 +15480,66045640.15336595,-1318698.871721878,118021.337693293,-19055.458691236996,3.312210542190119,-0.29643728928096924,0.04786209537054288,4683.914244511998,-5202.013778341769,0 +15600,68957002.4792296,-1364146.8557008982,96843.7019153015,-13195.057671922146,3.353252959389199,-0.23805459704617982,0.032435192738065936,5362.311101832847,-4499.513267805774,0 +15720,71390446.07239203,-1401699.3654220393,74131.07540067603,-8161.488608042765,3.386329442087239,-0.17909135824379502,0.019717130396468985,5936.3366730949765,-3709.4348496324437,0 +15840,73284839.66274852,-1430638.520223277,50189.99174606787,-4175.16488114045,3.4112788449853704,-0.11967527411930079,0.00995545096264979,6394.818203498207,-2847.1565015305982,0 +15960,74591582.58754882,-1450403.249250195,25358.948170919604,-1413.2437672648268,3.4279796171005783,-0.059935026680312524,0.0033401544230417836,6728.83187156823,-1929.4614907190019,0 +16080,75276760.10306315,-1460607.4880924649,0.0000000004453518658511862,-0.00000000009898756289821109,3.436350393949873,-0.0000000000000010477729794899915,0.00000000000000023288662664988635,6931.876481190993,-974.2117067204522,0 +16200,75322672.08513178,-1461052.8391035206,-25510.54470479837,0.000000000245281504901514,3.436350393949873,0.05999999999999895,0.00000000000000021525171274216446,7000,-0.000000000005143516556418883,0 +16320,74728633.28559892,-1451735.0855437517,-50791.98410307354,-1414.5414817730284,3.427979617100578,0.11993502668031042,0.0033401544230418152,6931.876481190991,974.2117067204666,0 +16440,73510991.39549594,-1432844.243518949,-75469.25769582762,-4181.602047700766,3.41127884498537,0.17967527411929868,0.009955450962649787,6728.831871568233,1929.4614907189919,0 +16560,71702362.21735206,-1404758.151023269,-99182.77003940128,-8179.2985924470495,3.3863294420872387,0.2390913582437929,0.01971713039646895,6394.818203498212,2847.156501530589,0 +16680,69350134.33982548,-1368029.9087428532,-121597.62718042666,-13232.617490807399,3.3532529593891987,0.2980545970461777,0.032435192738065874,5936.336673094982,3709.434849632435,0 +16800,66514343.90654362,-1323369.7811354534,-142411.942567023,-19122.954253178934,3.3122105421901185,0.35643728928096713,0.04786209537054279,5362.311101832853,4499.513267805767,0 +16920,63265059.03539768,-1271622.4190736942,-161363.92023768174,-25599.819048099875,3.2634021450210224,0.4141129910372663,0.06569757118200026,4683.914244512005,5202.013778341761,0 +17040,59679439.92686011,-1213740.4610248825,-178237.48865472223,-32393.93556661487,3.2070655574867155,0.47095678958812603,0.08559447292332124,3914.3503242952347,5803.263007885287,0 +17160,55838652.89338791,-1150755.697269132,-192866.3337138907,-39230.894025225396,3.1434752457787307,0.5268455739236946,0.10716553003450126,3068.598027523537,6291.558324094171,0 +17280,51824814.22309984,-1083749.0357192797,-205136.25873740186,-45844.51738750005,3.072941015503634,0.5816583013822506,0.12999088642558493,2163.118960624637,6657.395614066073,0 +17400,47718124.24679714,-1013820.489196935,-214985.8770865135,-51989.159718953386,2.9958065023412495,0.6352762598016554,0.1536262724978779,1215.5372436685043,6893.654271085457,0 +17520,43594325.741531,-942060.3188977933,-222405.7142776689,-57450.26819222885,2.91244749788617,0.6875833246234612,0.17761165234633622,244.2964769175096,6995.735789133671,0 +17640,39522587.251747206,-869522.3283822164,-227435.8568845449,-62052.692792562084,2.8232701188288827,0.7384662103928468,0.20148017783517477,-731.6992428735605,6961.653267577914,0 +17760,35563874.78280032,-797200.1213519428,-230162.3319973832,-65666.4050239355,2.728708828396076,0.7878147161096865,0.2247672752657987,-1693.453269197674,6792.070083931975,0 +17880,31769838.258418992,-726006.9311891169,-230712.43195534346,-68209.47308379516,2.629224319689471,0.8355219638993774,0.24701968777540162,-2622.246153911374,6490.286981967516,0 +18000,28182205.262929168,-656759.4173930108,-229249.21432285808,-69648.32132414423,2.5253012712353384,0.881484630486516,0.26780429746622814,-3500.0000000000023,6062.177826491069,0 +18120,24832646.24737787,-590165.6188976993,-225965.40790784796,-69995.46399729689,2.4174459856794384,0.9256031709701058,0.28671655555278946,-4309.630327279601,5516.075275247059,0 +18240,21743053.967227813,-526817.0692953824,-221076.94445952435,-69305.03816150264,2.3061839231314236,0.9677820344156455,0.3033883564438054,-5035.378602370562,4862.608593212978,0 +18360,18926165.902831182,-467184.92305554246,-214816.31581973226,-67666.56259258642,2.1920571411760053,1.007929870797177,0.3174952024988248,-5663.118960624628,4114.496766047317,0 +18480,16386451.441541001,-411619.81962208636,-207425.9314471349,-65197.41636003835,2.0756216540228856,1.0459597288410998,0.3287625200056861,-6180.6331500124925,3286.300939501228,0 +18600,14121184.711388752,-360355.1244163167,-199151.6250882288,-62034.56291943877,1.9574447236614205,1.081789244343267,0.3369710034455022,-6577.8483455013575,2394.141003279684,0 +18720,12121627.82869377,-313513.1293485359,-190236.43519794857,-58326.04570015159,1.8381020962172276,1.115340818551512,0.3419608840251285,-6847.033205136637,1455.3818357243292,0 +18840,10374256.520924374,-271113.764873533,-180914.7639869189,-54222.75297470778,1.7181751969749361,1.1465417862272649,0.3436350393949876,-6982.948351818768,488.29531620890236,0 +18960,8861969.276707824,-233085.36384843563,-171407.00611509872,-49870.89752449828,1.5982482977326447,1.1753245730222797,0.3419608840251286,-6982.94835181877,-488.29531620886553,0 +19080,7565231.273757175,-199277.01714531824,-161914.73031194208,-45405.584534670255,1.4789056702884518,1.2016268418296243,0.33697100344550235,-6847.0332051366395,-1455.3818357243176,0 +19200,6463114.588369889,-169472.06572938839,-152616.49467368983,-40945.75337826123,1.3607287399269867,1.2253916277919736,0.32876252000568634,-6577.848345501361,-2394.141003279673,0 +19320,5534206.174683252,-143402.27918713924,-143664.37716043877,-36590.67954263671,1.2442932527738673,1.2465674616748057,0.31749520249882496,-6180.633150012487,-3286.30093950124,0 +19440,4757364.666353946,-120762.27438677785,-135181.30425658094,-32418.116173706567,1.130166470818449,1.2651084813373026,0.30338835644380563,-5663.118960624635,-4114.496766047308,0 +19560,4112316.2107649646,-101223.73063449324,-127259.2598767137,-28484.045364952366,1.0189044082704344,1.2809745310595346,0.2867165555527897,-5035.3786023705525,-4862.608593212986,0 +19680,3580088.3482219414,-84448.96232788582,-119958.4504589586,-24823.902975271354,0.9110491227145343,1.294131248510809,0.26780429746622836,-4309.63032727961,-5516.075275247052,0 +19800,3143289.3686083504,-70103.42146880284,-113307.4883217964,-21455.04380970393,0.8071260742604016,1.3045501391708247,0.24701968777540184,-3500.0000000000123,-6062.177826491064,0 +19920,2786248.42387756,-57866.72612647377,-107304.63213953699,-18380.133379842995,0.7076415655537964,1.3122086380424605,0.22476727526579898,-2622.2461539114083,-6490.286981967502,0 +20040,2495038.557813295,-47441.85247977625,-101920.09030279062,-15591.095101810675,0.6130802751209897,1.317090158522532,0.20148017783517508,-1693.4532691976856,-6792.0700839319725,0 +20160,2257410.1792535265,-38562.19155773879,-97099.35073578902,-13073.213780885653,0.5239028960637024,1.3191841283246821,0.17761165234633652,-731.6992428735724,-6961.6532675779135,0 +20280,2062665.7205376048,-30996.25912771807,-92767.451494263,-10809.001876707689,0.44054389160862273,1.3184860123765982,0.15362627249787822,244.2964769174976,-6995.735789133671,0 +20400,1901506.7199505982,-24549.95730155086,-88834.05337677586,-8781.475934889693,0.36340937844623805,1.3149973226419698,0.12999088642558523,1215.537243668517,-6893.654271085456,0 +20520,1765881.9938866205,-19066.415049301148,-85199.12295092663,-6976.56488566981,0.29287514817114124,1.3087256148459105,0.10716553003450154,2163.1189606246257,-6657.395614066077,0 +20640,1648859.9292166927,-14423.574519179816,-81758.9864383608,-5384.47407898171,0.2292848364631567,1.2996844721109415,0.08559447292332154,3068.5980275235484,-6291.558324094166,0 +20760,1544539.6880179755,-10529.830891743552,-78412.47649511801,-3999.9498048074634,0.17294824892884977,1.2878934755389717,0.06569757118200054,3914.3503242952243,-5803.2630078852935,0 +20880,1448006.1991349598,-7318.163849290358,-75066.8693258712,-2821.516629243719,0.12413985175975363,1.2733781618029916,0.04786209537054304,4683.914244511997,-5202.0137783417695,0 +21000,1355323.5222889734,-4739.306595565683,-71643.30216945944,-1849.88048890633,0.08309743456067317,1.2561699678403262,0.03243519273806603,5362.31110183283,-4499.513267805795,0 +21120,1263552.0331601943,-2754.572605172395,-68081.37311973854,-1085.7903582458223,0.05002095186263317,1.2363061627672287,0.019717130396469072,5936.336673094976,-3709.434849632445,0 +21240,1170768.391409647,-1328.9920231700241,-64342.657102240584,-527.7182887724656,0.025071548964502057,1.213829767162274,0.009955450962649872,6394.8182034982065,-2847.1565015306,0 +21360,1076064.6297985017,-425.39331866146017,-60412.92255645866,-169.74283276698898,0.008370776849294121,1.1887894598933648,0.00334015442304186,6728.831871568229,-1929.4614907190035,0 +21480,979504.6242139395,0.00000000005290416671631092,-56302.90028772078,-0.000000000010618682111183228,-0.0000000000000010911410663894117,1.161239472690144,0.0000000000000002190088388420719,6931.87648119099,-974.2117067204784,0 +21600,882022.6568713093,0.00000000004309973019315404,-52047.53491856114,-0.000000000012917605174464836,-0.0000000000000009367612920204546,1.131239472690144,0.00000000000000028076074858965477,7000,0.00000000001801097367637833,0 +21720,785258.9998739833,-363.3941945738808,-47703.7351372073,-145.00359383203758,0.008370776849294157,1.0988544332130532,0.0033401544230418755,6931.876481190991,974.211706720465,0 +21840,691339.9770501206,-1021.2516697464291,-43346.725582333376,-405.5202545754176,0.025071548964501977,1.064154493042974,0.009955450962649843,6728.831871568233,1929.4614907189903,0 +21960,602622.8850107796,-1902.3068114087848,-39065.18462085932,-749.8464155108866,0.05002095186263297,1.0272148045234346,0.019717130396469,6394.818203498212,2847.1565015305873,0 +22080,521437.3654393798,-2939.6425140981733,-34955.42272968135,-1147.4225652077134,0.08309743456067287,0.9881153707941472,0.032435192738065916,5936.336673094983,3709.4348496324337,0 +22200,449862.37480812875,-4079.030197135325,-31114.91079749528,-1572.6692882833756,0.12413985175975302,0.9469408725220232,0.047862095370542826,5362.311101832855,4499.513267805765,0 +22320,389580.3321558804,-5288.354750199519,-27635.502804763888,-2008.8787529721462,0.17294824892884886,0.9037804845017041,0.06569757118200023,4683.914244512025,5202.013778341744,0 +22440,341846.6058325203,-6567.45201917276,-24596.71097094225,-2451.699827609941,0.2292848364631555,0.8587276825228142,0.08559447292332117,3914.350324295256,5803.263007885273,0 +22560,307603.34534797055,-7957.635132310669,-22059.383246437832,-2911.7669836463033,0.29287514817114013,0.8118800409222147,0.10716553003450119,3068.5980275235383,6291.5583240941705,0 +22680,287752.7293290164,-9550.186546247662,-20060.10434356171,-3416.084692101831,0.3634093784462369,0.7633390212597179,0.12999088642558487,2163.118960624639,6657.395614066073,0 +22800,283587.6196088082,-11493.143288221016,-18606.59524972529,-4007.8838823669366,0.4405438916086215,0.7132097525749417,0.15362627249787786,1215.5372436685304,6893.654271085453,0 +22920,297359.4368305416,-13995.797426996449,-17674.326474832924,-4744.804286424838,0.5239028960637011,0.6616008037012198,0.17761165234633616,244.2964769175113,6995.735789133671,0 +23040,332945.9557760431,-17330.462884300345,-17204.492089516785,-5695.411980438689,0.6130802751209885,0.6086239481296841,0.20148017783517472,-731.6992428735836,6961.653267577913,0 +23160,396567.5922390149,-21831.211622353003,-17103.420179097044,-6934.219513048543,0.7076415655537951,0.5543939219327729,0.22476727526579865,-1693.4532691976724,6792.070083931976,0 +23280,497491.0732708754,-27889.444412352368,-17243.425777297376,-8535.521364839507,0.8071260742604001,0.4990281752714464,0.24701968777540156,-2622.2461539113724,6490.286981967517,0 +23400,648654.965224145,-35946.32163476023,-17465.049145352976,-10566.476792391857,0.9110491227145328,0.4426466180242919,0.2678042974662281,-3500.000000000001,6062.17782649107,0 +23520,867152.5126113198,-46482.22736535246,-17580.568927146614,-13079.955309289606,1.0189044082704328,0.38537136008942796,0.2867165555527894,-4309.630327279599,5516.075275247061,0 +23640,1174513.1379839724,-60003.56743730055,-17378.638491772013,-16107.701100338229,1.1301664708184473,0.32732644692165613,0.3033883564438054,-5035.3786023705425,4862.608593212996,0 +23760,1596733.8438540287,-77027.3044810865,-16629.865557389672,-19654.369723248517,1.2442932527738657,0.2686375908776278,0.31749520249882474,-5663.118960624643,4114.496766047298,0 +23880,2164024.485321073,-98063.70867694961,-15093.139524252889,-23692.945581106258,1.3607287399269854,0.20943189895087305,0.3287625200056861,-6180.633150012492,3286.30093950123,0 +24000,2910245.2810100457,-123597.8536645676,-12522.506214988842,-28161.96706104749,1.4789056702884504,0.14983759748635647,0.3369710034455022,-6577.848345501357,2394.1410032796857,0 +24120,3872030.0139537686,-154070.41663404024,-8674.393435159207,-32964.87532571712,1.5982482977326433,0.08998375447076702,0.3419608840251285,-6847.033205136636,1455.381835724331,0 +24240,5087603.456789842,-189858.35534965617,-3314.9999316234434,-37971.67106993129,1.7181751969749348,0.029999999999999312,0.34363503939498746,-6982.948351818769,488.2953162088792,0 +24360,6595316.285971397,-231256.03830733406,3772.3281458413912,-43022.91992293077,1.8381020962172263,-0.029983754470768398,0.3419608840251285,-6982.948351818771,-488.2953162088639,0 +24480,8431935.061351802,-278457.40218828456,12779.898054079393,-47935.999978942025,1.9574447236614192,-0.08983759748635786,0.33697100344550235,-6847.033205136645,-1455.3818357242915,0 +24600,10630738.83752016,-331539.70633581246,23868.80470212552,-52513.341786376106,2.0756216540228842,-0.14943189895087444,0.3287625200056864,-6577.84834550137,-2394.141003279648,0 +24720,13219487.736175697,-390449.447916048,37162.54957158685,-56552.27877187287,2.192057141176004,-0.2086375908776292,0.317495202498825,-6180.633150012487,-3286.300939501238,0 +24840,16218342.26093755,-454990.99192907533,52741.29441012026,-59856.01055212585,2.3061839231314223,-0.2673264469216575,0.3033883564438057,-5663.118960624637,-4114.496766047306,0 +24960,19637824.865853243,-524818.4531355107,70636.90146886118,-62245.08843835344,2.417445985679437,-0.3253713600894294,0.2867165555527898,-5035.378602370571,-4862.608593212967,0 +25080,23476926.466940895,-599431.3362870977,90828.91462523832,-63568.76691194902,2.525301271235337,-0.38264661802429334,0.2678042974662284,-4309.630327279592,-5516.075275247066,0 +25200,27721468.958343007,-678174.3899727019,113241.6365982451,-63715.5319208813,2.62922431968947,-0.4390281752714479,0.24701968777540187,-3499.9999999999927,-6062.1778264910745,0 +25320,32342838.77315561,-760242.0513839407,137742.4536801359,-62622.12100236885,2.728708828396075,-0.4943939219327744,0.22476727526579898,-2622.2461539113865,-6490.286981967512,0 +25440,37297204.37781563,-844687.7493622726,164141.54809393047,-60280.3950007079,2.823270118828882,-0.5486239481296857,0.20148017783517508,-1693.4532691976874,-6792.0700839319725,0 +25560,42525320.68788237,-930438.1888677588,192193.1168281725,-56741.50838800673,2.912447497886169,-0.6016008037012214,0.17761165234633652,-731.6992428735741,-6961.653267577913,0 +25680,47953004.54641801,-1016312.5627151537,221598.18303056475,-52116.95434290362,2.9958065023412486,-0.6532097525749433,0.15362627249787822,244.2964769174959,-6995.735789133671,0 +25800,53492337.15150033,-1101046.4313204861,252009.0413253624,-46576.22807628879,3.0729410155036336,-0.7033390212597195,0.1299908864255852,1215.5372436684906,-6893.65427108546,0 +25920,59043612.184254825,-1183319.7876522713,283035.3226286183,-40341.05005737409,3.1434752457787307,-0.7518800409222164,0.10716553003450148,2163.1189606246003,-6657.395614066086,0 +26040,64498004.04392353,-1261788.5955762619,314251.5993867464,-33676.30871369961,3.207065557486715,-0.7987276825228159,0.08559447292332148,3068.598027523547,-6291.558324094166,0 +26160,69740881.86303048,-1335118.8709930815,345206.38210423687,-26878.10547570268,3.263402145021022,-0.8437804845017058,0.06569757118200047,3914.350324295223,-5803.263007885295,0 +26280,74655645.66208729,-1402022.1836050134,375432.2869824648,-20259.496975984068,3.312210542190118,-0.8869408725220249,0.047862095370542965,4683.914244511995,-5202.01377834177,0 +26400,79127915.57228951,-1461291.3095583653,404457.08750110905,-14134.712127597448,3.353252959389198,-0.9281153707941489,0.03243519273806601,5362.3111018328445,-4499.513267805778,0 +26520,83049868.14957154,-1511834.676380813,431815.3050360389,-8802.75884609166,3.3863294420872383,-0.9672148045234361,0.01971713039646905,5936.336673094975,-3709.434849632447,0 +26640,86324489.68899299,-1552708.2228054365,457059.9499970047,-4531.412198734084,3.4112788449853695,-1.0041544930429755,0.009955450962649768,6394.8182034981955,-2847.1565015306246,0 +26760,88869508.44300911,-1583143.3536093389,479773.9995606834,-1542.5830563489603,3.427979617100578,-1.0388544332130547,0.0033401544230416682,6728.831871568223,-1929.4614907190291,0 +26880,90620777.6307909,-1602569.804102745,499581.1937335332,0.00000000463188704839107,3.4363503939498727,-1.0712394726901455,0.00000000000000010625181290357943,6931.876481190992,-974.2117067204556,0 +27000,91534909.20500134,-1610632.4348929347,516155.7495481103,-0.000000000017904908338257285,3.4363503939498727,-1.1012394726901455,0.00000000000000007686028972404295,7000,-0.000000000008572527594031473,0 +27120,91591002.7324509,-1607201.2436789013,529230.6333276032,-1566.0245807773206,3.427979617100578,-1.1287894598933663,0.003340154423041581,6931.876481190995,974.2117067204387,0 +27240,90791370.89829648,-1592374.19075902,538604.0910902364,-4647.173066373769,3.41127884498537,-1.1538297671622753,0.009955450962649624,6728.831871568227,1929.4614907190123,0 +27360,89161228.11651301,-1566472.7686365098,544144.2136883213,-9120.892804415173,3.3863294420872387,-1.17630616276723,0.019717130396468857,6394.818203498203,2847.1565015306087,0 +27480,86747375.74120243,-1530030.581609745,545791.4012941679,-14799.610232422197,3.3532529593891987,-1.1961699678403275,0.03243519273806576,5936.336673094983,3709.434849632432,0 +27600,83615980.47690682,-1483775.516512862,543558.685603423,-21440.848754997576,3.3122105421901185,-1.2133781618029928,0.04786209537054267,5362.3111018328555,4499.513267805764,0 +27720,79849596.3574434,-1428606.3606672366,537529.9615014119,-28760.160072271094,3.2634021450210224,-1.227893475538973,0.06569757118200019,4683.914244511989,5202.013778341776,0 +27840,75543620.80883276,-1365564.9410378225,527856.2669577398,-36446.031200653044,3.2070655574867155,-1.2396844721109428,0.08559447292332122,3914.3503242952165,5803.263007885299,0 +27960,70802399.11358245,-1295805.0079086847,514750.32526312536,-44175.830772124544,3.1434752457787307,-1.2487256148459118,0.10716553003450123,3068.5980275235397,6291.55832409417,0 +28080,65735198.128156304,-1220559.161219169,498479.62317790824,-51631.829736159554,3.072941015503634,-1.254997322641971,0.1299908864255849,2163.1189606246403,6657.395614066072,0 +28200,60452260.228194386,-1141105.118189545,479358.3393221793,-58516.37136734721,2.9958065023412495,-1.2584860123765995,0.15362627249787789,1215.537243668532,6893.654271085453,0 +28320,55061124.5595071,-1058732.5528705223,457738.45800922334,-64565.36581163533,2.91244749788617,-1.2591841283246834,0.1776116523463362,244.29647691753786,6995.735789133669,0 +28440,49663368.27352031,-974711.612464316,434000.40515244275,-69559.43312246185,2.8232701188288827,-1.2570901585225334,0.20148017783517477,-731.6992428735323,6961.653267577918,0 +28560,44351879.65024931,-890264.045903878,408543.5268206098,-73332.20084993138,2.728708828396076,-1.2522086380424617,0.2247672752657987,-1693.4532691976706,6792.070083931976,0 +28680,39208732.062382996,-806537.6834063889,381776.7006842877,-75775.46169878694,2.629224319689471,-1.244550139170826,0.24701968777540162,-2622.2461539113706,6490.286981967517,0 +28800,34303686.40933874,-724584.7979712582,354109.3300661034,-76841.09812389823,2.5253012712353384,-1.2341312485108102,0.2678042974662282,-3499.9999999999777,6062.177826491084,0 +28920,29693312.978926487,-645344.676187636,325942.9240808905,-76539.87050670022,2.4174459856794384,-1.2209745310595361,0.2867165555527896,-4309.630327279579,5516.075275247076,0 +29040,25420693.717487216,-569630.5387211203,297663.41988433007,-74937.33313695788,2.306183923131424,-1.205108481337304,0.3033883564438055,-5035.378602370559,4862.608593212979,0 +29160,21515643.600018535,-498120.78935346566,269634.35830577975,-72147.28024827363,2.1920571411760057,-1.1865674616748072,0.3174952024988249,-5663.118960624627,4114.496766047319,0 +29280,17995375.217893433,-431354.44030696945,242190.98522619967,-68323.2286270023,2.075621654022886,-1.1653916277919751,0.32876252000568634,-6180.633150012479,3286.3009395012537,0 +29400,14865523.10010942,-369730.4616646329,215635.31995369587,-63648.5123515817,1.957444723661421,-1.1416268418296258,0.3369710034455025,-6577.848345501348,2394.1410032797107,0 +29520,12121442.401259232,-313510.7313968741,190232.20927321003,-58325.59958474236,1.838102096217228,-1.1153245730222812,0.3419608840251287,-6847.03320513664,1455.3818357243083,0 +29640,9749698.944289628,-262826.21465049195,166206.37129233446,-52565.242930098284,1.7181751969749366,-1.0865417862272664,0.34363503939498774,-6982.948351818769,488.295316208881,0 +29760,7729672.749738706,-217685.96993923205,143740.42508211,-46576.04630387622,1.598248297732645,-1.0553408185515134,0.3419608840251288,-6982.948351818771,-488.2953162088622,0 +29880,6035203.903711213,-177988.55888882608,122973.89802643008,-40554.97554410501,1.4789056702884522,-1.0217892443432686,0.3369710034455025,-6847.033205136634,-1455.3818357243385,0 +30000,4636217.066399373,-143535.41937541377,104003.19991335715,-34679.26031052012,1.3607287399269872,-0.9859597288411014,0.3287625200056864,-6577.848345501355,-2394.141003279693,0 +30120,3500268.65736329,-114045.74527714598,86882.54826145865,-29100.034827142023,1.2442932527738675,-0.9479298707971788,0.317495202498825,-6180.633150012488,-3286.300939501237,0 +30240,2593968.6903375066,-89172.39812346858,71625.82068429473,-23937.94897068537,1.1301664708184491,-0.9077820344156474,0.3033883564438057,-5663.118960624638,-4114.496766047304,0 +30360,1884237.5388426934,-68518.35780614628,58209.295499409454,-19280.854398951276,1.0189044082704346,-0.8656031709701077,0.2867165555527898,-5035.3786023705725,-4862.608593212966,0 +30480,1339366.8666183145,-51653.20473325723,46575.22052961776,-15183.53935104271,0.9110491227145344,-0.8214846304865181,0.2678042974662285,-4309.630327279633,-5516.0752752470335,0 +30600,929863.7681582256,-38129.11964116088,36636.122520219,-11669.358145245442,0.8071260742604016,-0.7755219638993794,0.24701968777540206,-3500.0000000000373,-6062.177826491049,0 +30720,629067.852118348,-27495.895835999476,28279.737364492288,-8733.48583362718,0.7076415655537966,-0.7278147161096886,0.22476727526579918,-2622.246153911388,-6490.286981967511,0 +30840,413542.29650664754,-19314.487755890998,21374.40698256417,-6347.433746884624,0.61308027512099,-0.6784662103928489,0.20148017783517527,-1693.4532691976888,-6792.070083931972,0 +30960,263251.237410525,-13168.673895888112,15774.755601768584,-4464.395878381159,0.5239028960637024,-0.6275833246234634,0.17761165234633672,-731.6992428736005,-6961.653267577911,0 +31080,161546.40331990665,-8674.49345090258,11327.430122541598,-3024.9655483892548,0.4405438916086225,-0.5752762598016578,0.1536262724978784,244.29647691746933,-6995.7357891336715,0 +31200,94994.73334807073,-5487.223612306774,7876.669999929604,-1962.7700980883785,0.3634093784462378,-0.521658301382253,0.12999088642558543,1215.5372436685134,-6893.6542710854565,0 +31320,53084.92623134381,-3305.794071943774,5269.464959479339,-1209.618419715671,0.2928751481711409,-0.46684557392369697,0.10716553003450173,2163.1189606246226,-6657.3956140660775,0 +31440,27853.793781031934,-1874.6795020319703,3360.06637658975,-699.8378364300024,0.22928483646315617,-0.4109567895881285,0.08559447292332169,3068.5980275235233,-6291.558324094179,0 +31560,13472.657189545622,-983.459496674762,2013.6415724843757,-373.58516601105094,0.17294824892884902,-0.3541129910372688,0.06569757118200062,3914.350324295201,-5803.26300788531,0 +31680,5830.022419001112,-464.3768679986271,1108.89950328529,-179.0404099002652,0.12413985175975305,-0.29643728928096963,0.04786209537054317,4683.914244512012,-5202.013778341755,0 +31800,2140.0766533374863,-188.34696620819506,539.5697398194071,-73.51695251352643,0.08309743456067276,-0.2380545970461802,0.032435192738066214,5362.311101832843,-4499.513267805779,0 +31920,598.2253939863866,-59.961351332652015,214.68123760995672,-23.635411541570317,0.05002095186263272,-0.1790913582437954,0.019717130396469246,5936.336673094973,-3709.4348496324483,0 +32040,96.21939592849904,-12.079350269062681,57.65896461682207,-4.796487821099317,0.025071548964501797,-0.11967527411930118,0.009955450962650112,6394.818203498216,-2847.1565015305805,0 +32160,1.674642083147008,-0.6047352431741955,4.329923445185098,-0.24130485540635627,0.008370776849294045,-0.05993502668031291,0.0033401544230421704,6728.831871568235,-1929.461490718983,0 +32280,1,-0.00000000000005901529265273098,-0.00000000000008618106228652778,0.000000000000036142963621976776,-0.0000000000000009835882108788496,-0.0000000000000014363510381087963,0.0000000000000006023827270329463,6931.876481190992,-974.2117067204573,0 +32400,1.5183999999996394,0.00000000000007459468951704851,-4.175999999999527,-0.000000000000039471057785534613,-0.000000000000001071762780417459,0.05999999999999856,0.0000000000000005671128992175025,7000,-0.000000000010287033112837766,0 +32520,87.95936869204257,-3.856943732847269,-55.26161523974865,-1.539019364705806,0.008370776849294206,0.11993502668031003,0.0033401544230422346,6931.876481190988,974.2117067204863,0 +32640,530.0288423387512,-28.290543232925707,-202.74419891474426,-11.233654380943893,0.025071548964502206,0.1796752741192983,0.009955450962650273,6728.831871568227,1929.461490719011,0 +32760,1840.50058756022,-105.14401000006632,-502.56988773726414,-41.44539594672682,0.050020951862633375,0.23909135824379252,0.0197171303964695,6394.818203498204,2847.1565015306073,0 +32880,4886.04933874207,-284.5734513428761,-1020.7105167381679,-111.07677139784118,0.08309743456067323,0.2980545970461773,0.0324351927380664,5936.336673094984,3709.4348496324305,0 +33000,11054.682953674086,-639.4400153434635,-1835.9959553350816,-246.5359718435947,0.12413985175975334,0.35643728928096674,0.047862095370543305,5362.311101832856,4499.5132678057635,0 +33120,22483.19488983036,-1270.4443075786505,-3041.9937490902494,-482.6016212760492,0.17294824892884914,0.4141129910372659,0.0656975711820007,4683.914244512028,5202.013778341742,0 +33240,42345.05063885491,-2311.4518293082447,-4747.779877687373,-862.8896008527762,0.22928483646315573,0.4709567895881257,0.08559447292332163,3914.3503242952593,5803.263007885271,0 +33360,75193.58604475202,-3934.4133470139914,-7077.515012128581,-1439.6356069829246,0.29287514817114035,0.5268455739236942,0.10716553003450163,3068.5980275235415,6291.55832409417,0 +33480,127347.91450371088,-6353.287710121251,-10168.81444684169,-2272.559681003443,0.36340937844623705,0.5816583013822503,0.12999088642558532,2163.118960624642,6657.395614066071,0 +33600,207300.52723500566,-9826.424729745064,-14169.971411340663,-3426.666518288303,0.4405438916086216,0.635276259801655,0.1536262724978783,1215.5372436685338,6893.654271085452,0 +33720,326117.4802844439,-14656.956267197198,-19236.1576826152,-4968.947949217583,0.5239028960637011,0.6875833246234608,0.1776116523463366,244.29647691753956,6995.735789133669,0 +33840,497795.55874718865,-21190.865323555183,-25524.778149717513,-6964.0787465044305,0.6130802751209885,0.7384662103928464,0.20148017783517516,-731.6992428735801,6961.653267577913,0 +33960,739536.9460436262,-29812.544185903942,-33190.19427009611,-9469.31985285912,0.7076415655537951,0.7878147161096862,0.2247672752657991,-1693.4532691976688,6792.070083931977,0 +34080,1071901.3731523226,-40937.80125271599,-42378.053678583594,-12528.950812205967,0.8071260742604001,0.8355219638993772,0.247019687775402,-2622.2461539113688,6490.286981967518,0 +34200,1518798.6744029005,-55004.42021989063,-53219.46953660333,-16168.634321972424,0.9110491227145325,0.8814846304865159,0.2678042974662286,-3499.9999999999764,6062.1778264910845,0 +34320,2107290.857294782,-72460.50476806355,-65825.28492271747,-20390.162386265114,1.0189044082704326,0.9256031709701057,0.2867165555527899,-4309.630327279617,5516.075275247047,0 +34440,2867181.548791156,-93750.94931231235,-80280.63723051552,-25167.041459220345,1.1301664708184471,0.9677820344156454,0.30338835644380585,-5035.378602370558,4862.608593212981,0 +34560,3830381.128167961,-119302.45752959534,-96640.00856351513,-30441.34317012979,1.2442932527738655,1.0079298707971769,0.31749520249882524,-5663.118960624626,4114.49676604732,0 +34680,5030047.068961169,-149507.58437450865,-114922.91433518202,-36122.18126705012,1.3607287399269852,1.0459597288410996,0.3287625200056865,-6180.633150012502,3286.3009395012114,0 +34800,6499510.184293076,-184708.30626322678,-135110.34751624675,-42086.08064508816,1.4789056702884502,1.0817892443432668,0.3369710034455025,-6577.848345501365,2394.1410032796653,0 +34920,8271008.041064911,-225179.63251909718,-157142.0636025546,-48179.38884084958,1.598248297732643,1.1153408185515117,0.3419608840251287,-6847.03320513664,1455.38183572431,0 +35040,10374256.520924348,-271113.7648735325,-180914.76398691878,-54222.7529747066,1.7181751969749346,1.1465417862272647,0.34363503939498774,-6982.948351818769,488.29531620888264,0 +35160,12834899.3827966,-322605.29691048525,-206281.21453446848,-60017.55438380259,1.838102096217226,1.1753245730222794,0.3419608840251288,-6982.948351818771,-488.2953162088605,0 +35280,15672883.938745,-379637.9271126747,-233050.32212702977,-65354.06680901561,1.957444723661419,1.201626841829624,0.3369710034455027,-6847.033205136645,-1455.3818357242883,0 +35400,18900818.861425735,-442073.1411369571,-260988.18393564216,-70020.98847125354,2.075621654022884,1.2253916277919736,0.32876252000568673,-6577.848345501372,-2394.1410032796443,0 +35520,22522377.860772032,-509641.3022472783,-289820.1203670283,-73815.89896509683,2.1920571411760035,1.2465674616748057,0.31749520249882535,-6180.633150012489,-3286.3009395012355,0 +35640,26530820.407962374,-581935.5719564066,-319233.70043889165,-76556.11287598975,2.306183923131422,1.2651084813373026,0.303388356443806,-5663.118960624638,-4114.496766047303,0 +35760,30907707.39162432,-658409.0618954779,-348882.7648282973,-78089.34697598273,2.4174459856794366,1.2809745310595348,0.28671655555279013,-5035.378602370573,-4862.608593212965,0 +35880,35621894.70631109,-738375.5868863871,-378392.4441061799,-78303.58997744162,2.5253012712353367,1.2941312485108092,0.26780429746622886,-4309.630327279635,-5516.0752752470335,0 +36000,40628890.07605139,-821014.3413278963,-407365.155274027,-77135.56608129448,2.6292243196894693,1.304550139170825,0.2470196877754023,-3499.999999999996,-6062.177826491074,0 +36120,45870656.45155544,-905378.7497155163,-435387.5370334447,-74577.21855091596,2.7287088283960745,1.3122086380424607,0.22476727526579943,-2622.24615391139,-6490.28698196751,0 +36240,51275937.60530925,-990409.6422226308,-462038.252726009,-70679.70914786628,2.8232701188288813,1.3170901585225323,0.20148017783517552,-1693.4532691976906,-6792.070083931972,0 +36360,56761166.833626,-1074952.7751743698,-486896.5503198998,-65554.5340238977,2.912447497886169,1.3191841283246826,0.17761165234633697,-731.6992428736023,-6961.653267577911,0 +36480,62231997.222731315,-1157780.5548134553,-509551.4232077982,-59371.4950773745,2.9958065023412486,1.3184860123765987,0.15362627249787866,244.29647691751734,-6995.73578913367,0 +36600,67585461.78644392,-1237617.6358422223,-529611.167079391,-52353.43364138943,3.072941015503633,1.3149973226419702,0.12999088642558568,1215.537243668512,-6893.6542710854565,0 +36720,72712734.94335099,-1313169.8627155805,-546713.0807813397,-44767.82330391304,3.14347524577873,1.3087256148459112,0.10716553003450198,2163.1189606246207,-6657.395614066078,0 +36840,77502425.32871619,-1383155.8140239536,-560533.0174184786,-36915.52004474806,3.207065557486714,1.2996844721109422,0.08559447292332201,3068.598027523566,-6291.558324094157,0 +36960,81844286.8757875,-1446340.0136575727,-570794.4605731501,-29117.16723163583,3.263402145021021,1.2878934755389724,0.06569757118200104,3914.3503242952406,-5803.263007885283,0 +37080,85633194.26619612,-1501566.7032164163,-577276.7835893655,-21697.934910578515,3.312210542190117,1.2733781618029925,0.04786209537054359,4683.914244512011,-5202.013778341757,0 +37200,88773194.45380512,-1547792.9444867224,-579822.3506685663,-14971.421208311147,3.3532529593891973,1.256169967840327,0.03243519273806663,5362.311101832842,-4499.51326780578,0 +37320,91181422.14438403,-1584119.7529611555,-578342.1390743486,-9223.643554750735,3.3863294420872374,1.2363061627672296,0.019717130396469662,5936.336673094972,-3709.434849632449,0 +37440,92791657.3830047,-1609819.9640232078,-572819.602529987,-4698.086682086238,3.4112788449853686,1.2138297671622749,0.009955450962650367,6394.818203498195,-2847.1565015306273,0 +37560,93557310.15036254,-1624361.6084026897,-563312.5557373745,-1582.7452951715982,3.427979617100577,1.1887894598933657,0.0033401544230422563,6728.831871568222,-1929.4614907190323,0 +37680,93453640.94351164,-1627425.7229898977,-549952.9360377371,-0.00000000012163977724383157,3.4363503939498723,1.161239472690145,0.0000000000000005139118297581291,6931.876481190986,-974.2117067205082,0 +37800,92479066.77773608,-1618917.7411886519,-532944.386316178,-0.000000004768021246407604,3.4363503939498723,1.131239472690145,0.000000000000000472763697306778,7000,-0.000000000012001538631644061,0 +37920,90655456.15616693,-1598971.8820395707,-512557.6979504691,-1558.0060562451386,3.4279796171005774,1.098854433213054,0.0033401544230419653,6931.876481190996,974.2117067204354,0 +38040,88027379.9975951,-1567948.272773954,-489124.2478708981,-4575.888647892772,3.41127884498537,1.064154493042975,0.009955450962649834,6728.831871568242,1929.4614907189616,0 +38160,84660352.84451944,-1526422.875104231,-463027.65341810463,-8887.699612012853,3.3863294420872387,1.0272148045234355,0.019717130396469055,6394.818203498205,2847.1565015306055,0 +38280,80638163.92489442,-1475170.6193933894,-434693.94680920313,-14268.96328461955,3.353252959389199,0.9881153707941481,0.03243519273806596,5936.336673094986,3709.4348496324287,0 +38400,76059455.01347728,-1415142.4608949942,-404580.63266014186,-20449.08756962282,3.312210542190119,0.9469408725220241,0.047862095370542854,5362.311101832858,4499.513267805762,0 +38520,71033746.575525,-1347437.3384970517,-373165.0334545903,-27126.096179793938,3.263402145021023,0.903780484501705,0.06569757118200024,4683.914244512029,5202.01377834174,0 +38640,65677141.821761355,-1273270.2224871714,-340932.34696411283,-33982.74579337992,3.207065557486716,0.8587276825228151,0.08559447292332126,3914.3503242952197,5803.263007885297,0 +38760,60107948.27281937,-1193937.57244472,-308363.83600496827,-40703.025401891755,3.143475245778731,0.8118800409222156,0.10716553003450127,3068.598027523543,6291.558324094169,0 +38880,54442448.335130006,-1110781.583965423,-275925.5458727118,-46988.042398598955,3.0729410155036345,0.7633390212597188,0.12999088642558493,2163.118960624644,6657.395614066071,0 +39000,48791026.1188286,-1025154.5841422149,-244057.9011814471,-52570.37708303027,2.9958065023412495,0.7132097525749426,0.15362627249787794,1215.5372436684866,6893.654271085461,0 +39120,43254820.61467324,-938384.8469270986,-213166.475742005,-57226.12452944083,2.91244749788617,0.6616008037012207,0.17761165234633625,244.2964769174916,6995.735789133671,0 +39240,37923029.673613176,-851744.9519183404,-183614.1614572481,-60784.02602649573,2.8232701188288827,0.608623948129685,0.2014801778351748,-731.6992428735783,6961.653267577913,0 +39360,32870939.661621854,-766423.6185450696,-155714.8902533746,-63131.304684123155,2.728708828396076,0.5543939219327738,0.22476727526579873,-1693.4532691976674,6792.070083931977,0 +39480,28158706.674779832,-683501.72880409,-129728.99191814463,-64216.04363642672,2.629224319689471,0.49902817527144727,0.24701968777540165,-2622.2461539113674,6490.286981967518,0 +39600,23830870.619871344,-603933.022652671,-105860.20489334333,-64046.16379456122,2.5253012712353384,0.4426466180242928,0.26780429746622825,-3499.9999999999745,6062.1778264910845,0 +39720,19916546.127657376,-528529.7265487259,-84254.30010612201,-62685.256920319305,2.4174459856794384,0.38537136008942885,0.28671655555278963,-4309.630327279576,5516.075275247078,0 +39840,16430205.848384513,-457953.1704473064,-64999.23212346599,-60245.6978026203,2.306183923131424,0.327326446921657,0.3033883564438057,-5035.378602370522,4862.608593213018,0 +39960,13372952.712830495,-392709.27117226983,-48126.698223947475,-56879.589145707585,2.1920571411760057,0.2686375908776287,0.31749520249882507,-5663.118960624624,4114.496766047322,0 +40080,10734167.763355635,-333148.61575051607,-33614.96402499731,-52768.18067409622,2.075621654022886,0.20943189895087394,0.3287625200056865,-6180.633150012477,3286.300939501257,0 +40200,8493417.966727747,-279470.76823119575,-21392.80255183982,-48110.449335396195,1.9574447236614212,0.14983759748635736,0.3369710034455027,-6577.848345501347,2394.141003279714,0 +40320,6622512.385065049,-231732.34537140775,-11344.389689641886,-43111.53218502073,1.8381020962172283,0.0899837544707679,0.3419608840251289,-6847.03320513664,1455.3818357243117,0 +40440,5087603.456789865,-189858.3553496568,-3314.999931623932,-37971.671069931435,1.7181751969749368,0.030000000000000186,0.34363503939498796,-6982.948351818769,488.2953162088844,0 +40560,3851241.327426481,-153656.26284143096,2882.6507523699192,-32876.26306362753,1.5982482977326453,-0.029983754470767524,0.34196088402512903,-6982.948351818771,-488.29531620885876,0 +40680,2874301.906909332,-122832.22653404328,7461.565904717996,-27987.517704593534,1.4789056702884524,-0.08983759748635699,0.3369710034455029,-6847.033205136645,-1455.3818357242865,0 +40800,2117722.779225652,-97008.94550453767,10653.284902869495,-23438.106693386573,1.3607287399269874,-0.14943189895087358,0.32876252000568684,-6577.848345501356,-2394.1410032796894,0 +40920,1543994.836620621,-75744.544658198,12700.51033739817,-19327.059349413998,1.244293252773868,-0.20863759087762834,0.31749520249882546,-6180.63315001249,-3286.3009395012336,0 +41040,1118371.4707689537,-58551.92483052368,13849.710135209145,-15718.013849844177,1.1301664708184496,-0.2673264469216567,0.30338835644380613,-5663.118960624639,-4114.496766047301,0 +41160,809771.4258864669,-44918.000961362224,14343.86871493214,-12639.78682732366,1.018904408270435,-0.3253713600894286,0.28671655555279024,-5035.378602370574,-4862.608593212964,0 +41280,591366.1081932344,-34322.255048802406,14415.572651296603,-10089.079909779328,0.9110491227145351,-0.3826466180242925,0.2678042974662289,-4309.630327279597,-5516.075275247063,0 +41400,440857.19606580556,-26254.04417471134,14280.625388148164,-8035.009649293659,0.8071260742604025,-0.43902817527144705,0.24701968777540237,-3499.999999999997,-6062.177826491073,0 +41520,340465.4655726437,-20228.133339336888,14132.38942117168,-6425.035831293872,0.7076415655537975,-0.49439392193277365,0.22476727526579948,-2622.2461539113915,-6490.286981967509,0 +41640,276666.1612567522,-15797.97342967723,14137.050084879882,-5191.780954653315,0.6130802751209908,-0.5486239481296848,0.20148017783517558,-1693.4532691976922,-6792.070083931971,0 +41760,239719.02480032053,-12566.32026926677,14429.980117228813,-4260.188144992355,0.5239028960637033,-0.6016008037012205,0.17761165234633702,-731.699242873604,-6961.65326757791,0 +41880,223051.08493637448,-10192.892912864823,15113.356885561634,-3554.461142238704,0.4405438916086234,-0.6532097525749424,0.15362627249787872,244.2964769174659,-6995.7357891336715,0 +42000,222556.3555827601,-8398.896705692225,16255.144030403573,-3004.2703697900765,0.36340937844623833,-0.7033390212597186,0.1299908864255857,1215.5372436684613,-6893.654271085466,0 +42120,235877.75764660464,-6968.38436645423,17889.497129847656,-2549.791639128189,0.29287514817114113,-0.7518800409222155,0.10716553003450195,2163.118960624572,-6657.395614066094,0 +42240,261732.38792585113,-5746.588553362741,20018.590973752074,-2145.262747941553,0.22928483646315634,-0.7987276825228151,0.08559447292332191,3068.59802752352,-6291.55832409418,0 +42360,299331.8269834049,-4635.5215137107725,22615.797575181445,-1760.8880488752511,0.17294824892884955,-0.843780484501705,0.06569757118200094,3914.3503242952393,-5803.2630078852835,0 +42480,347935.30696468306,-3587.2893319100276,25630.073541498663,-1383.0786946474764,0.12413985175975355,-0.8869408725220239,0.047862095370543485,4683.91424451201,-5202.013778341758,0 +42600,406556.6874420244,-2595.6973794092573,28991.347909794007,-1013.1714081902387,0.08309743456067323,-0.9281153707941479,0.03243519273806652,5362.311101832842,-4499.513267805782,0 +42720,473828.22695352713,-1686.8181536788982,32616.642227392324,-664.905649587696,0.05002095186263317,-0.9672148045234351,0.019717130396469544,5936.336673094972,-3709.4348496324506,0 +42840,548007.2233990341,-909.2433361067366,36416.608423902624,-361.0438054124009,0.025071548964501793,-1.0041544930429747,0.009955450962650244,6394.818203498195,-2847.156501530629,0 +42960,627097.7652111852,-324.74254137229946,40302.14098778146,-129.5805939452529,0.00837077684929359,-1.0388544332130538,0.003340154423042127,6728.831871568221,-1929.4614907190337,0 +43080,709050.7112888034,0.00000000007814430206493421,44190.7110407148,-0.000000000015618126305560613,-0.0000000000000018943180357666733,-1.0712394726901446,0.00000000000000037860339863193815,6931.876481190985,-974.2117067205099,0 +43200,792001.5507350258,0.00000000006912753018780118,48012.0825028925,-0.000000000021890981734542018,-0.000000000000001585558487028759,-1.1012394726901444,0.0000000000000005021072181271039,7000,0.00000000003602194735275666,0 +43320,874508.1037053955,-383.48945697020713,51713.104387047046,-153.0221183709072,0.008370776849293665,-1.128789459893365,0.0033401544230421574,6931.876481190989,974.2117067204828,0 +43440,955757.3849533829,-1200.7724965664538,55261.326377952195,-476.80467304959956,0.025071548964501637,-1.153829767162274,0.009955450962650183,6728.831871568228,1929.4614907190078,0 +43560,1035721.9119461589,-2493.9012887750637,58647.25372230924,-983.0396079174639,0.05002095186263278,-1.1763061627672287,0.0197171303964694,6394.818203498206,2847.1565015306037,0 +43680,1115258.3722041626,-4299.134975742044,61885.13728326762,-1678.069513004539,0.08309743456067262,-1.1961699678403261,0.03243519273806629,5936.3366730949865,3709.4348496324274,0 +43800,1196153.7860350804,-6651.359836720127,65012.27976160904,-2564.4304736644203,0.1241398517597527,-1.2133781618029915,0.04786209537054319,5362.311101832858,4499.513267805761,0 +43920,1281134.209337264,-9590.012844350804,68086.923544151,-3642.942645445551,0.1729482489288485,-1.2278934755389717,0.06569757118200058,4683.914244512031,5202.0137783417385,0 +44040,1373857.1912172576,-13165.938726093325,71184.86355779925,-4914.985234890626,0.22928483646315545,-1.2396844721109415,0.08559447292332159,3914.3503242952215,5803.263007885296,0 +44160,1478910.883239934,-17448.54500837428,74394.99469247131,-6384.572353884506,0.29287514817114,-1.2487256148459105,0.10716553003450159,3068.5980275235447,6291.558324094168,0 +44280,1601839.8913707554,-22532.60336318071,77814.05370948283,-8059.872029662865,0.3634093784462367,-1.2549973226419697,0.12999088642558526,2163.1189606246453,6657.395614066071,0 +44400,1749211.3605532432,-28544.07747351914,81540.84739536264,-9953.878166680166,0.4405438916086213,-1.2584860123765982,0.15362627249787825,1215.5372436685373,6893.654271085452,0 +44520,1928725.601036144,-35644.432028699695,85670.2709813409,-12084.045568616577,0.5239028960637008,-1.259184128324682,0.17761165234633655,244.29647691754303,6995.735789133669,0 +44640,2149365.302302221,-44032.98545748826,90287.41408790344,-14470.819076405165,0.6130802751209878,-1.257090158522532,0.20148017783517513,-731.6992428735272,6961.653267577918,0 +44760,2421567.5497218445,-53946.99949355244,95462.02774201425,-17135.115678856597,0.7076415655537942,-1.2522086380424606,0.2247672752657991,-1693.4532691976174,6792.070083931989,0 +44880,2757394.7570925243,-65659.33961960596,101243.58866280591,-20094.939427197012,0.8071260742603988,-1.2445501391708251,0.2470196877754021,-2622.24615391132,6490.286981967538,0 +45000,3170675.1635861853,-79473.68025529377,107657.15019292884,-23361.41112172888,0.9110491227145315,-1.2341312485108094,0.2678042974662286,-3500.0000000000164,6062.177826491061,0 +45120,3677081.1587276375,-95717.35726858434,114700.11755435423,-26934.56889567278,1.0189044082704317,-1.2209745310595352,0.2867165555527899,-4309.630327279614,5516.075275247049,0 +45240,4294114.385292772,-114732.08059115584,122340.03305880078,-30799.33643467701,1.1301664708184462,-1.2051084813373032,0.30338835644380585,-5035.378602370556,4862.608593212983,0 +45360,5040969.9612951,-136862.80711180012,130513.40853155845,-34922.060825814064,1.2442932527738646,-1.1865674616748063,0.31749520249882524,-5663.1189606246235,4114.496766047324,0 +45480,5938257.67771784,-162445.1375578796,139125.60066573383,-39247.99353401227,1.360728739926984,-1.1653916277919742,0.3287625200056867,-6180.633150012476,3286.3009395012577,0 +45600,7007565.030118338,-191791.64264039107,148051.69232609757,-43700.03007723221,1.4789056702884489,-1.141626841829625,0.33697100344550285,-6577.848345501347,2394.1410032797157,0 +45720,8270854.871530276,-225177.54747595917,157138.3197148507,-48178.942725438,1.5982482977326415,-1.1153245730222805,0.34196088402512925,-6847.0332051366295,1455.381835724362,0 +45840,9749698.944289569,-262826.21465049067,166206.37129233358,-52565.24293009883,1.718175196974933,-1.0865417862272657,0.3436350393949883,-6982.948351818769,488.29531620888616,0 +45960,11464357.373573886,-304894.8708989954,175054.47781649113,-56722.703163180486,1.8381020962172245,-1.0553408185515127,0.3419608840251292,-6982.948351818768,-488.2953162089066,0 +46080,13432723.367085146,-351461.025011183,183463.21141092162,-60503.45781845324,1.9574447236614174,-1.021789244343268,0.3369710034455029,-6847.033205136636,-1455.3818357243335,0 +46200,15669161.925838757,-402510.02820679813,191199.91232382075,-63754.495403510926,2.0756216540228825,-0.9859597288411007,0.32876252000568684,-6577.848345501356,-2394.141003279688,0 +46320,18183281.354082305,-457924.233417948,198024.06208530552,-66325.25424960005,2.192057141176002,-0.9479298707971782,0.31749520249882546,-6180.633150012491,-3286.3009395012323,0 +46440,20978686.61959185,-517474.2145783228,203693.11855652026,-68075.94567296839,2.3061839231314205,-0.9077820344156468,0.30338835644380613,-5663.118960624641,-4114.4967660473,0 +46560,24051773.743344285,-580812.5066030679,207968.72005949315,-68886.15600997998,2.4174459856794352,-0.8656031709701072,0.28671655555279024,-5035.378602370576,-4862.608593212962,0 +46680,27390633.638707243,-647470.314843451,210623.15154182498,-68663.22635321313,2.5253012712353353,-0.8214846304865174,0.2678042974662289,-4309.630327279598,-5516.075275247062,0 +46800,30974141.090503786,-716857.6120989926,211445.94586622788,-67349.88041683313,2.629224319689468,-0.7755219638993788,0.24701968777540237,-3499.9999999999986,-6062.177826491072,0 +46920,34771308.523524255,-788266.9847014291,210250.4692764656,-64930.571004701895,2.728708828396073,-0.727814716109688,0.22476727526579948,-2622.246153911393,-6490.286981967508,0 +47040,38740983.41450678,-860881.5011799651,206880.31435871203,-61436.047792941026,2.82327011882888,-0.6784662103928483,0.20148017783517558,-1693.453269197694,-6792.070083931971,0 +47160,42831961.31751596,-933786.7546532816,201215.2996405929,-56945.71612139734,2.9124474978861676,-0.6275833246234628,0.17761165234633702,-731.6992428736057,-6961.65326757791,0 +47280,46983572.526067436,-1005987.0740000827,193176.8560109963,-51587.458749056525,2.9958065023412477,-0.5752762598016571,0.15362627249787872,244.2964769174642,-6995.7357891336715,0 +47400,51126779.022119656,-1076425.7137411607,182732.570056299,-45534.72780458645,3.0729410155036327,-0.5216583013822524,0.1299908864255857,1215.5372436684595,-6893.654271085466,0 +47520,55185790.01531565,-1144008.627254682,169899.65640148238,-39000.876837959535,3.1434752457787294,-0.46684557392369636,0.10716553003450205,2163.118960624665,-6657.395614066065,0 +47640,59080170.44804918,-1207631.2149496558,154747.14757344846,-32230.883802192344,3.2070655574867137,-0.4109567895881278,0.08559447292332208,3068.5980275235634,-6291.558324094159,0 +47760,62727379.66535575,-1266207.2335873244,137396.62194030464,-25490.80259283491,3.2634021450210207,-0.35411299103726807,0.06569757118200109,3914.3503242952384,-5803.263007885285,0 +47880,66045640.153365776,-1318698.8717218754,118021.33769329297,-19055.458691234802,3.3122105421901167,-0.29643728928096896,0.04786209537054363,4683.914244512009,-5202.013778341759,0 +48000,68957002.47922942,-1364146.8557008952,96843.70191530137,-13195.057671922284,3.353252959389197,-0.23805459704617954,0.032435192738066665,5362.31110183284,-4499.513267805783,0 +48120,71390446.07239184,-1401699.3654220365,74131.07540067591,-8161.48860804174,3.386329442087237,-0.17909135824379477,0.019717130396469683,5936.336673094971,-3709.4348496324524,0 +48240,73284839.66274832,-1430638.5202232744,50189.99174606768,-4175.164881141153,3.411278844985368,-0.11967527411930057,0.009955450962650379,6394.818203498194,-2847.1565015306305,0 +48360,74591582.58754867,-1450403.2492501927,25358.948170919517,-1413.2437672647804,3.4279796171005765,-0.059935026680312316,0.0033401544230422563,6728.83187156822,-1929.4614907190357,0 +48480,75276760.10306299,-1460607.4880924623,0.00000000035687136270194276,-0.0000000002851652882747458,3.4363503939498714,-0.0000000000000008396061623727746,0.0000000000000006709043043340301,6931.876481190991,-974.2117067204623,0 +48600,75322672.08513162,-1461052.8391035183,-25510.544704798427,-0.00000000013135540827802242,3.4363503939498714,0.05999999999999916,0.0000000000000006179995626108645,7000,-0.00000000001543054966925665,0 +48720,74728633.2855988,-1451735.08554375,-50791.98410307355,-1414.541481774252,3.4279796171005765,0.11993502668031064,0.003340154423042099,6931.876481190996,974.2117067204318,0 +48840,73510991.39549585,-1432844.2435189476,-75469.2576958277,-4181.6020477002185,3.411278844985369,0.17967527411929893,0.009955450962649956,6728.831871568243,1929.461490718958,0 +48960,71702362.21735202,-1404758.151023268,-99182.77003940145,-8179.298592447061,3.3863294420872383,0.23909135824379318,0.01971713039646901,6394.8182034982265,2847.156501530557,0 +49080,69350134.3398255,-1368029.9087428532,-121597.62718042695,-13232.617490805045,3.353252959389199,0.298054597046178,0.032435192738065756,5936.336673095014,3709.4348496323837,0 +49200,66514343.90654369,-1323369.7811354545,-142411.9425670234,-19122.954253178883,3.3122105421901193,0.35643728928096746,0.047862095370542514,5362.311101832892,4499.513267805721,0 +49320,63265059.03539775,-1271622.419073695,-161363.92023768186,-25599.819048099824,3.2634021450210233,0.4141129910372666,0.06569757118200001,4683.914244511994,5202.013778341771,0 +49440,59679439.926860176,-1213740.4610248837,-178237.48865472293,-32393.93556661717,3.2070655574867164,0.47095678958812637,0.08559447292332102,3914.350324295222,5803.263007885295,0 +49560,55838652.89338803,-1150755.6972691333,-192866.3337138909,-39230.894025226546,3.143475245778732,0.5268455739236949,0.10716553003450102,3068.598027523546,6291.558324094167,0 +49680,51824814.223099925,-1083749.0357192813,-205136.25873740204,-45844.51738750118,3.0729410155036354,0.581658301382251,0.12999088642558468,2163.118960624647,6657.39561406607,0 +49800,47718124.246797234,-1013820.4891969366,-214985.87708651373,-51989.15971895338,2.995806502341251,0.6352762598016558,0.15362627249787766,1215.5372436685388,6893.654271085452,0 +49920,43594325.741531074,-942060.3188977945,-222405.71427766932,-57450.26819223349,2.912447497886171,0.6875833246234616,0.17761165234633597,244.2964769175447,6995.735789133669,0 +50040,39522587.25174729,-869522.3283822177,-227435.85688454597,-62052.69279256092,2.823270118828884,0.7384662103928473,0.20148017783517455,-731.6992428735256,6961.653267577918,0 +50160,35563874.78280038,-797200.1213519439,-230162.33199738368,-65666.40502393548,2.728708828396077,0.7878147161096871,0.22476727526579843,-1693.4532691977122,6792.070083931966,0 +50280,31769838.258419044,-726006.9311891176,-230712.43195534367,-68209.47308379282,2.629224319689472,0.835521963899378,0.2470196877754013,-2622.2461539114106,6490.286981967501,0 +50400,28182205.262929216,-656759.4173930114,-229249.21432285974,-69648.32132414538,2.5253012712353393,0.8814846304865168,0.2678042974662278,-3500.0000000000146,6062.177826491062,0 +50520,24832646.24737791,-590165.6188976996,-225965.40790784874,-69995.46399729571,2.4174459856794392,0.9256031709701066,0.28671655555278913,-4309.630327279613,5516.07527524705,0 +50640,21743053.96722787,-526817.0692953835,-221076.94445952427,-69305.03816150264,2.306183923131425,0.9677820344156464,0.3033883564438051,-5035.378602370554,4862.6085932129845,0 +50760,18926165.902831227,-467184.9230555436,-214816.31581973244,-67666.56259258642,2.1920571411760066,1.007929870797178,0.31749520249882446,-5663.118960624623,4114.496766047325,0 +50880,16386451.441541048,-411619.8196220868,-207425.93144713517,-65197.41636003953,2.075621654022887,1.0459597288411009,0.3287625200056859,-6180.633150012476,3286.3009395012596,0 +51000,14121184.711388793,-360355.12441631727,-199151.62508822963,-62034.56291943764,1.9574447236614219,1.0817892443432682,0.3369710034455019,-6577.848345501363,2394.1410032796707,0 +51120,12121627.828693807,-313513.12934853695,-190236.43519794912,-58326.04570015043,1.838102096217229,1.115340818551513,0.34196088402512814,-6847.0332051366395,1455.381835724315,0 +51240,10374256.520924406,-271113.7648735334,-180914.76398692015,-54222.7529747078,1.7181751969749375,1.146541786227266,0.3436350393949872,-6982.948351818769,488.2953162088878,0 +51360,8861969.276707856,-233085.36384843654,-171407.00611509895,-49870.89752449771,1.598248297732646,1.175324573022281,0.34196088402512825,-6982.948351818771,-488.29531620885535,0 +51480,7565231.273757206,-199277.0171453187,-161914.73031194255,-45405.584534670284,1.478905670288453,1.2016268418296259,0.3369710034455021,-6847.033205136646,-1455.381835724283,0 +51600,6463114.588369921,-169472.06572938897,-152616.49467369055,-40945.75337826244,1.360728739926988,1.2253916277919754,0.32876252000568623,-6577.848345501374,-2394.14100327964,0 +51720,5534206.1746832775,-143402.27918713976,-143664.37716043927,-36590.67954263675,1.2442932527738684,1.2465674616748075,0.317495202498825,-6180.633150012514,-3286.300939501187,0 +51840,4757364.666353966,-120762.27438677802,-135181.30425658156,-32418.116173706327,1.1301664708184498,1.2651084813373044,0.30338835644380585,-5663.118960624671,-4114.4967660472585,0 +51960,4112316.2107649837,-101223.7306344934,-127259.25987671422,-28484.045364952697,1.0189044082704353,1.2809745310595364,0.28671655555278985,-5035.3786023705425,-4862.608593212997,0 +52080,3580088.3482219577,-84448.96232788618,-119958.45045895904,-24823.90297527081,0.9110491227145353,1.2941312485108105,0.2678042974662285,-4309.630327279599,-5516.075275247061,0 +52200,3143289.3686083658,-70103.4214688032,-113307.48832179693,-21455.043809703384,0.8071260742604027,1.3045501391708263,0.247019687775402,-3500,-6062.17782649107,0 +52320,2786248.423877574,-57866.726126473965,-107304.63213953735,-18380.13337984317,0.7076415655537976,1.312208638042462,0.22476727526579912,-2622.2461539113947,-6490.286981967507,0 +52440,2495038.557813307,-47441.852479776455,-101920.090302791,-15591.095101810406,0.613080275120991,1.3170901585225334,0.20148017783517522,-1693.4532691976956,-6792.07008393197,0 +52560,2257410.179253537,-38562.19155773902,-97099.35073578934,-13073.213780885675,0.5239028960637034,1.3191841283246835,0.17761165234633666,-731.6992428736074,-6961.65326757791,0 +52680,2062665.720537615,-30996.25912771824,-92767.45149426334,-10809.001876707634,0.4405438916086235,1.3184860123765998,0.15362627249787836,244.29647691746248,-6995.7357891336715,0 +52800,1901506.719950606,-24549.957301550952,-88834.05337677612,-8781.475934889706,0.3634093784462388,1.3149973226419711,0.12999088642558537,1215.5372436685068,-6893.654271085457,0 +52920,1765881.9938866282,-19066.415049301133,-85199.1229509269,-6976.564885669969,0.29287514817114185,1.3087256148459119,0.10716553003450166,2163.1189606246157,-6657.39561406608,0 +53040,1648859.9292166997,-14423.574519179805,-81758.98643836104,-5384.474078981753,0.22928483646315706,1.2996844721109428,0.08559447292332162,3068.598027523517,-6291.5583240941805,0 +53160,1544539.688017982,-10529.830891743577,-78412.47649511826,-3999.9498048075043,0.17294824892884986,1.287893475538973,0.06569757118200054,3914.3503242951956,-5803.2630078853135,0 +53280,1448006.1991349657,-7318.1638492903585,-75066.86932587143,-2821.5166292437016,0.12413985175975344,1.273378161802993,0.04786209537054296,4683.9142445119705,-5202.013778341793,0 +53400,1355323.5222889788,-4739.306595565656,-71643.30216945964,-1849.8804889063272,0.0830974345606727,1.2561699678403275,0.03243519273806585,5362.311101832806,-4499.513267805823,0 +53520,1263552.0331601999,-2754.5726051723436,-68081.37311973877,-1085.7903582458048,0.050020951862632196,1.23630616276723,0.019717130396468725,5936.336673094944,-3709.4348496324956,0 +53640,1170768.391409652,-1328.992023169984,-64342.6571022408,-527.7182887724491,0.02507154896450121,1.2138297671622753,0.00995545096264957,6394.818203498213,-2847.156501530587,0 +53760,1076064.6297985062,-425.39331866142425,-60412.92255645884,-169.74283276697815,0.008370776849293403,1.1887894598933662,0.0033401544230416066,6728.8318715682335,-1929.4614907189896,0 +53880,979504.6242139442,0.0000000000816692303363085,-56302.900287720986,-0.0000000000007359482651317908,-0.0000000000000016844164951734797,1.1612394726901454,0.000000000000000015178830414797062,6931.876481190991,-974.2117067204641,0 +54000,882022.6568713135,0.00000000008426023869928548,-52047.53491856132,0.0000000000020061994005201954,-0.000000000000001831374111071162,1.1312394726901454,-0.0000000000000000436042159442759,7000,-0.000000000017145055188062946,0 +54120,785258.9998739872,-363.39419457382996,-47703.735137207485,-145.00359383201675,0.008370776849292962,1.0988544332130545,0.003340154423041431,6931.876481190997,974.2117067204301,0 +54240,691339.9770501237,-1021.2516697463693,-43346.725582333536,-405.5202545753977,0.025071548964500482,1.0641544930429754,0.009955450962649283,6728.8318715682435,1929.4614907189564,0 +54360,602622.8850107826,-1902.3068114087237,-39065.184620859465,-749.8464155108657,0.05002095186263118,1.027214804523436,0.01971713039646833,6394.818203498227,2847.156501530555,0 +54480,521437.3654393824,-2939.6425140981273,-34955.422729681486,-1147.4225652076777,0.0830974345606714,0.9881153707941486,0.03243519273806536,5936.336673094961,3709.434849632467,0 +54600,449862.3748081309,-4079.0301971352974,-31114.910797495402,-1572.6692882833795,0.12413985175975187,0.9469408725220245,0.047862095370542375,5362.311101832829,4499.513267805795,0 +54720,389580.33215588226,-5288.3547501995035,-27635.502804763993,-2008.8787529721435,0.17294824892884803,0.9037804845017055,0.06569757118199987,4683.914244511996,5202.01377834177,0 +54840,341846.60583252204,-6567.452019172762,-24596.71097094235,-2451.6998276099034,0.22928483646315495,0.8587276825228155,0.08559447292332088,3914.350324295224,5803.263007885294,0 +54960,307603.34534797195,-7957.635132310683,-22059.383246437934,-2911.7669836462483,0.29287514817113947,0.811880040922216,0.10716553003450088,3068.5980275235474,6291.558324094166,0 +55080,287752.72932901734,-9550.186546247645,-20060.104343561776,-3416.0846921018106,0.3634093784462358,0.7633390212597192,0.12999088642558448,2163.118960624696,6657.395614066055,0 +55200,283587.61960880866,-11493.143288221003,-18606.59524972534,-4007.8838823669325,0.4405438916086203,0.713209752574943,0.15362627249787747,1215.5372436685407,6893.654271085452,0 +55320,297359.4368305414,-13995.797426996416,-17674.326474832946,-4744.80428642485,0.5239028960636994,0.6616008037012211,0.17761165234633575,244.29647691759615,6995.735789133667,0 +55440,332945.9557760429,-17330.462884300294,-17204.492089516836,-5695.411980438684,0.6130802751209871,0.6086239481296855,0.2014801778351743,-731.6992428736228,6961.653267577908,0 +55560,396567.5922390141,-21831.211622352912,-17103.420179097076,-6934.219513048534,0.7076415655537936,0.5543939219327743,0.22476727526579823,-1693.4532691976622,6792.070083931979,0 +55680,497491.0732708742,-27889.444412352274,-17243.425777297445,-8535.521364839497,0.8071260742603987,0.4990281752714477,0.2470196877754011,-2622.246153911409,6490.286981967502,0 +55800,648654.9652241429,-35946.32163476012,-17465.049145353045,-10566.476792391768,0.9110491227145312,0.4426466180242932,0.2678042974662277,-3499.9999999999704,6062.177826491087,0 +55920,867152.5126113164,-46482.22736535227,-17580.56892714666,-13079.955309289657,1.0189044082704313,0.3853713600894293,0.286716555552789,-4309.630327279611,5516.075275247051,0 +56040,1174513.1379839676,-60003.56743730037,-17378.638491772,-16107.701100338092,1.1301664708184456,0.32732644692165747,0.3033883564438051,-5035.378602370519,4862.608593213021,0 +56160,1596733.843854021,-77027.30448108619,-16629.865557389836,-19654.369723248485,1.244293252773864,0.2686375908776292,0.31749520249882446,-5663.118960624622,4114.496766047326,0 +56280,2164024.485321063,-98063.7086769493,-15093.139524252774,-23692.945581106218,1.3607287399269836,0.2094318989508744,0.3287625200056858,-6180.633150012498,3286.300939501217,0 +56400,2910245.2810100312,-123597.85366456717,-12522.506214988736,-28161.967061047442,1.4789056702884484,0.14983759748635783,0.33697100344550196,-6577.848345501345,2394.1410032797185,0 +56520,3872030.013953749,-154070.41663403966,-8674.393435159405,-32964.87532571706,1.5982482977326413,0.08998375447076838,0.3419608840251282,-6847.0332051366395,1455.3818357243167,0 +56640,5087603.456789818,-189858.3553496555,-3314.999931623806,-37971.6710699312,1.7181751969749328,0.030000000000000672,0.3436350393949874,-6982.948351818765,488.2953162089392,0 +56760,6595316.285971369,-231256.0383073333,3772.328145841156,-43022.919922930676,1.8381020962172243,-0.029983754470767038,0.3419608840251285,-6982.948351818772,-488.2953162088536,0 +56880,8431935.061351769,-278457.4021882837,12779.898054078994,-47935.99997894199,1.9574447236614172,-0.0898375974863565,0.3369710034455025,-6847.033205136657,-1455.3818357242328,0 +57000,10630738.837520115,-331539.70633581135,23868.804702125384,-52513.34178637591,2.075621654022882,-0.1494318989508731,0.3287625200056866,-6577.848345501375,-2394.1410032796384,0 +57120,13219487.736175641,-390449.4479160467,37162.549571586984,-56552.27877187282,2.1920571411760017,-0.20863759087762784,0.31749520249882524,-6180.6331500124925,-3286.300939501229,0 +57240,16218342.26093748,-454990.9919290739,52741.294410120376,-59856.010552126674,2.30618392313142,-0.2673264469216562,0.3033883564438058,-5663.1189606246135,-4114.496766047338,0 +57360,19637824.865853168,-524818.4531355093,70636.90146886007,-62245.08843835282,2.417445985679435,-0.325371360089428,0.2867165555527899,-5035.378602370579,-4862.60859321296,0 +57480,23476926.466940813,-599431.3362870959,90828.91462523809,-63568.76691194896,2.525301271235335,-0.38264661802429195,0.2678042974662286,-4309.6303272796,-5516.07527524706,0 +57600,27721468.958342914,-678174.3899727005,113241.63659824451,-63715.53192087954,2.6292243196894676,-0.4390281752714465,0.24701968777540215,-3500.000000000044,-6062.1778264910445,0 +57720,32342838.7731555,-760242.051383939,137742.45368013502,-62622.12100236768,2.7287088283960728,-0.4943939219327731,0.22476727526579926,-2622.246153911396,-6490.286981967507,0 +57840,37297204.37781553,-844687.7493622708,164141.5480939296,-60280.39500070907,2.82327011882888,-0.5486239481296844,0.2014801778351754,-1693.4532691977454,-6792.070083931957,0 +57960,42525320.68788222,-930438.1888677571,192193.11682817034,-56741.50838800441,2.9124474978861667,-0.60160080370122,0.17761165234633683,-731.6992428735102,-6961.65326757792,0 +58080,47953004.54641786,-1016312.5627151513,221598.1830305638,-52116.954342905956,2.9958065023412463,-0.653209752574942,0.15362627249787852,244.2964769175105,-6995.735789133671,0 +58200,53492337.15150013,-1101046.4313204829,252009.04132536193,-46576.22807628882,3.072941015503631,-0.7033390212597181,0.12999088642558557,1215.537243668554,-6893.654271085449,0 +58320,59043612.18425462,-1183319.787652268,283035.32262861717,-40341.050057374116,3.143475245778728,-0.751880040922215,0.10716553003450185,2163.1189606246144,-6657.395614066081,0 +58440,64498004.04392332,-1261788.5955762588,314251.5993867453,-33676.30871370199,3.2070655574867124,-0.7987276825228147,0.08559447292332187,3068.59802752356,-6291.55832409416,0 +58560,69740881.8630303,-1335118.8709930787,345206.3821042361,-26878.105475700395,3.2634021450210198,-0.8437804845017047,0.06569757118200079,3914.3503242951942,-5803.263007885314,0 +58680,74655645.66208707,-1402022.1836050106,375432.2869824633,-20259.49697598413,3.312210542190116,-0.8869408725220239,0.04786209537054332,4683.914244512006,-5202.013778341761,0 +58800,79127915.57228932,-1461291.3095583625,404457.08750110806,-14134.71212759981,3.3532529593891964,-0.9281153707941481,0.03243519273806621,5362.311101832805,-4499.5132678058235,0 +58920,83049868.14957136,-1511834.6763808108,431815.30503603833,-8802.758846091692,3.3863294420872365,-0.9672148045234354,0.019717130396469218,5936.336673094968,-3709.434849632455,0 +59040,86324489.6889928,-1552708.2228054344,457059.9499970039,-4531.412198738804,3.4112788449853677,-1.0041544930429749,0.009955450962650058,6394.818203498212,-2847.1565015305882,0 +59160,88869508.44300894,-1583143.3536093365,479773.99956068257,-1542.5830563583324,3.427979617100576,-1.038854433213054,0.003340154423041925,6728.831871568219,-1929.461490719039,0 +59280,90620777.63079071,-1602569.804102743,499581.1937335325,-0.00000000007645111974041718,3.4363503939498714,-1.0712394726901449,0.00000000000000032786273695961654,6931.876481190991,-974.2117067204658,0 +59400,91534909.20500122,-1610632.4348929336,516155.7495481097,-0.000000000021599572455813224,3.436350393949872,-1.1012394726901449,0.00000000000000009267112938221224,7000,-0.00000000006859755221007625,0 +59520,91591002.73245081,-1607201.2436789,529230.6333276026,-1566.0245807819724,3.427979617100577,-1.1287894598933657,0.0033401544230415624,6931.876481190997,974.2117067204285,0 +59640,90791370.89829646,-1592374.19075902,538604.0910902361,-4647.173066369025,3.41127884498537,-1.1538297671622748,0.009955450962649244,6728.831871568257,1929.461490718907,0 +59760,89161228.11651294,-1566472.7686365088,544144.2136883207,-9120.892804424424,3.3863294420872383,-1.1763061627672295,0.0197171303964686,6394.818203498186,2847.1565015306446,0 +59880,86747375.74120243,-1530030.5816097453,545791.4012941675,-14799.610232417479,3.3532529593891987,-1.196169967840327,0.032435192738065485,5936.336673094988,3709.4348496324233,0 +60000,83615980.47690678,-1483775.5165128615,543558.6856034226,-21440.848754988223,3.312210542190118,-1.2133781618029924,0.04786209537054249,5362.31110183283,4499.513267805795,0 +60120,79849596.35744338,-1428606.3606672364,537529.9615014116,-28760.160072275678,3.2634021450210224,-1.2278934755389725,0.06569757118199987,4683.914244512034,5202.013778341736,0 +60240,75543620.80883276,-1365564.941037822,527856.266957741,-36446.031200652964,3.2070655574867155,-1.2396844721109426,0.08559447292332087,3914.350324295225,5803.2630078852935,0 +60360,70802399.1135825,-1295805.0079086851,514750.3252631249,-44175.83077212912,3.143475245778731,-1.2487256148459118,0.10716553003450079,3068.598027523594,6291.558324094143,0 +60480,65735198.12815632,-1220559.1612191699,498479.62317790743,-51631.82973616413,3.0729410155036345,-1.2549973226419713,0.12999088642558446,2163.11896062465,6657.395614066069,0 +60600,60452260.228194386,-1141105.1181895446,479358.3393221793,-58516.37136734247,2.9958065023412495,-1.2584860123765997,0.15362627249787747,1215.5372436684934,6893.65427108546,0 +60720,55061124.5595071,-1058732.5528705223,457738.45800922276,-64565.3658116306,2.91244749788617,-1.2591841283246836,0.17761165234633577,244.29647691754818,6995.735789133669,0 +60840,49663368.27352031,-974711.612464316,434000.4051524423,-69559.43312246178,2.8232701188288827,-1.2570901585225336,0.20148017783517433,-731.6992428735716,6961.6532675779135,0 +60960,44351879.65024935,-890264.0459038783,408543.5268206089,-73332.20084993832,2.7287088283960763,-1.2522086380424622,0.2247672752657983,-1693.4532691976124,6792.070083931991,0 +61080,39208732.06238304,-806537.6834063897,381776.7006842896,-75775.46169878224,2.6292243196894716,-1.2445501391708267,0.24701968777540123,-2622.246153911361,6490.286981967522,0 +61200,34303686.40933879,-724584.7979712592,354109.3300661025,-76841.09812389823,2.5253012712353393,-1.2341312485108111,0.2678042974662279,-3499.999999999926,6062.177826491114,0 +61320,29693312.978926532,-645344.6761876369,325942.92408089136,-76539.87050670254,2.4174459856794392,-1.2209745310595372,0.28671655555278935,-4309.63032727957,5516.075275247083,0 +61440,25420693.71748726,-569630.5387211213,297663.4198843301,-74937.33313696024,2.306183923131425,-1.2051084813373054,0.3033883564438053,-5035.3786023705525,4862.608593212987,0 +61560,21515643.600018583,-498120.7893534662,269634.3583057798,-72147.28024827363,2.1920571411760066,-1.1865674616748085,0.31749520249882457,-5663.11896062465,4114.496766047287,0 +61680,17995375.217893466,-431354.4403069704,242190.9852261996,-68323.2286270023,2.075621654022887,-1.1653916277919765,0.32876252000568607,-6180.633150012474,3286.3009395012623,0 +61800,14865523.100109458,-369730.46166463353,215635.3199536964,-63648.51235158054,1.9574447236614219,-1.1416268418296271,0.33697100344550207,-6577.848345501361,2394.1410032796734,0 +61920,12121442.401259268,-313510.73139687476,190232.20927321058,-58325.59958474121,1.8381020962172292,-1.1153245730222827,0.3419608840251285,-6847.033205136629,1455.3818357243672,0 +62040,9749698.944289666,-262826.2146504926,166206.37129233562,-52565.24293009714,1.7181751969749377,-1.0865417862272682,0.3436350393949875,-6982.948351818769,488.2953162088912,0 +62160,7729672.749738736,-217685.96993923257,143740.42508211042,-46576.04630387627,1.5982482977326462,-1.0553408185515154,0.34196088402512875,-6982.948351818774,-488.2953162088023,0 +62280,6035203.903711243,-177988.5588888268,122973.89802643037,-40554.975544105655,1.4789056702884533,-1.0217892443432708,0.3369710034455026,-6847.033205136647,-1455.3818357242799,0 +62400,4636217.066399397,-143535.41937541432,104003.19991335754,-34679.26031052047,1.3607287399269883,-0.9859597288411037,0.32876252000568656,-6577.848345501358,-2394.1410032796834,0 +62520,3500268.657363312,-114045.74527714637,86882.5482614591,-29100.034827141775,1.2442932527738688,-0.9479298707971812,0.31749520249882507,-6180.63315001247,-3286.300939501272,0 +62640,2593968.6903375243,-89172.39812346897,71625.8206842951,-23937.94897068586,1.1301664708184505,-0.9077820344156498,0.3033883564438058,-5663.1189606246435,-4114.496766047296,0 +62760,1884237.5388427079,-68518.35780614664,58209.29549940991,-19280.854398951313,1.018904408270436,-0.8656031709701102,0.2867165555527898,-5035.378602370545,-4862.6085932129945,0 +62880,1339366.8666183262,-51653.204733257524,46575.22052961813,-15183.539351043035,0.9110491227145358,-0.8214846304865207,0.2678042974662286,-4309.630327279641,-5516.075275247028,0 +63000,929863.7681582347,-38129.1196411612,36636.12252021935,-11669.358145245256,0.8071260742604031,-0.7755219638993821,0.24701968777540206,-3500.000000000003,-6062.177826491069,0 +63120,629067.8521183546,-27495.895835999672,28279.737364492543,-8733.485833627241,0.7076415655537978,-0.7278147161096914,0.22476727526579926,-2622.246153911444,-6490.286981967488,0 +63240,413542.2965066521,-19314.48775589115,21374.40698256434,-6347.433746884608,0.613080275120991,-0.6784662103928516,0.20148017783517536,-1693.453269197699,-6792.070083931969,0 +63360,263251.2374105286,-13168.673895888225,15774.755601768757,-4464.395878381248,0.5239028960637038,-0.627583324623466,0.1776116523463368,-731.6992428735614,-6961.653267577914,0 +63480,161546.40331990898,-8674.493450902663,11327.430122541728,-3024.965548389311,0.4405438916086238,-0.5752762598016602,0.1536262724978785,244.29647691745905,-6995.7357891336715,0 +63600,94994.73334807229,-5487.223612306839,7876.669999929704,-1962.7700980884051,0.363409378446239,-0.5216583013822554,0.12999088642558548,1215.5372436685034,-6893.654271085457,0 +63720,53084.926231344754,-3305.7940719438125,5269.464959479411,-1209.618419715681,0.29287514817114174,-0.4668455739236994,0.10716553003450172,2163.1189606245653,-6657.395614066097,0 +63840,27853.793781032495,-1874.6795020319985,3360.0663765898025,-699.8378364300083,0.2292848364631569,-0.41095678958813087,0.08559447292332166,3068.598027523514,-6291.558324094182,0 +63960,13472.65718954592,-983.4594966747737,2013.6415724844105,-373.5851660110542,0.1729482489288493,-0.3541129910372711,0.06569757118200048,3914.3503242951515,-5803.2630078853435,0 +64080,5830.022419001285,-464.3768679986362,1108.899503285315,-179.0404099002687,0.12413985175975364,-0.29643728928097196,0.047862095370543124,4683.9142445120415,-5202.0137783417285,0 +64200,2140.076653337566,-188.34696620819983,539.5697398194224,-73.51695251352746,0.08309743456067328,-0.2380545970461825,0.03243519273806614,5362.311101832836,-4499.513267805786,0 +64320,598.2253939864192,-59.96135133265467,214.68123760996525,-23.635411541571052,0.05002095186263358,-0.17909135824379768,0.019717130396469287,5936.336673094994,-3709.434849632415,0 +64440,96.21939592850714,-12.079350269063358,57.65896461682557,-4.7964878210994435,0.025071548964502144,-0.11967527411930345,0.009955450962649966,6394.818203498191,-2847.156501530635,0 +64560,1.6746420831476052,-0.6047352431742976,4.329923445185858,-0.24130485540637628,0.008370776849294305,-0.05993502668031519,0.0033401544230419918,6728.831871568233,-1929.4614907189925,0 +64680,1,-0.00000000000007431555371084642,-0.00000000000022273849431542203,0.000000000000013192572034803618,-0.0000000000000012385925618474403,-0.000000000000003712308238590367,0.0000000000000002198762005800603,6931.876481190984,-974.2117067205168,0 +64800,1.5183999999990703,0.00000000000009847994238433359,-4.17599999999878,-0.00000000000001039382352846004,-0.0000000000000014149417009246591,0.059999999999996285,0.00000000000000014933654494917276,7000,-0.000000000020574066225675532,0 +64920,87.95936869203467,-3.8569437328465095,-55.26161523974515,-1.5390193647053727,0.008370776849292926,0.11993502668030775,0.0033401544230414436,6931.876481191003,974.2117067203774,0 +65040,530.0288423387216,-28.290543232923852,-202.74419891473605,-11.23365438094281,0.025071548964501263,0.179675274119296,0.009955450962649612,6728.831871568217,1929.461490719049,0 +65160,1840.500587560143,-105.14401000006188,-502.56988773724885,-41.445395946724624,0.05002095186263235,0.23909135824379024,0.019717130396468805,6394.818203498207,2847.156501530598,0 +65280,4886.049338741916,-284.57345134286936,-1020.7105167381441,-111.0767713978372,0.08309743456067253,0.29805459704617504,0.032435192738065825,5936.336673094964,3709.4348496324637,0 +65400,11054.682953673797,-639.4400153434508,-1835.9959553350463,-246.53597184358705,0.12413985175975258,0.35643728928096446,0.0478620953705427,5362.311101832864,4499.513267805755,0 +65520,22483.194889829894,-1270.4443075786342,-3041.993749090201,-482.6016212760403,0.1729482489288487,0.4141129910372636,0.06569757118200019,4683.914244511999,5202.013778341769,0 +65640,42345.05063885417,-2311.4518293082183,-4747.779877687308,-862.8896008527607,0.22928483646315523,0.4709567895881234,0.08559447292332109,3914.350324295268,5803.263007885265,0 +65760,75193.5860447509,-3934.4133470139536,-7077.515012128497,-1439.6356069829017,0.29287514817113974,0.526845573923692,0.10716553003450109,3068.5980275235506,6291.558324094164,0 +65880,127347.91450370933,-6353.287710121208,-10168.81444684159,-2272.5596810034135,0.3634093784462367,0.581658301382248,0.12999088642558482,2163.1189606246044,6657.395614066084,0 +66000,207300.52723500342,-9826.424729744991,-14169.971411340539,-3426.6665182882707,0.44054389160862123,0.6352762598016528,0.1536262724978778,1215.537243668544,6893.654271085451,0 +66120,326117.4802844408,-14656.956267197122,-19236.157682615034,-4968.947949217582,0.5239028960637009,0.6875833246234585,0.1776116523463361,244.29647691750017,6995.735789133671,0 +66240,497795.55874718406,-21190.8653235551,-25524.778149717276,-6964.078746504406,0.6130802751209878,0.7384662103928441,0.2014801778351747,-731.6992428735203,6961.653267577919,0 +66360,739536.9460436201,-29812.544185903793,-33190.19427009588,-9469.319852859018,0.7076415655537944,0.7878147161096839,0.22476727526579862,-1693.453269197659,6792.070083931979,0 +66480,1071901.3731523138,-40937.80125271577,-42378.0536785833,-12528.950812205712,0.8071260742603991,0.8355219638993748,0.24701968777540162,-2622.2461539113133,6490.286981967541,0 +66600,1518798.6744028893,-55004.420219890315,-53219.46953660302,-16168.634321972238,0.9110491227145315,0.8814846304865136,0.2678042974662282,-3499.9999999999673,6062.17782649109,0 +66720,2107290.857294767,-72460.50476806324,-65825.2849227171,-20390.162386265212,1.0189044082704315,0.9256031709701033,0.2867165555527895,-4309.6303272796085,5516.0752752470535,0 +66840,2867181.5487911375,-93750.949312312,-80280.63723051507,-25167.041459220578,1.130166470818446,0.9677820344156429,0.30338835644380535,-5035.378602370585,4862.608593212953,0 +66960,3830381.1281679375,-119302.45752959496,-96640.00856351465,-30441.343170129432,1.2442932527738644,1.0079298707971744,0.3174952024988248,-5663.11896062462,4114.496766047329,0 +67080,5030047.068961142,-149507.58437450827,-114922.91433518147,-36122.18126704917,1.360728739926984,1.0459597288410971,0.3287625200056861,-6180.633150012497,3286.30093950122,0 +67200,6499510.184293041,-184708.30626322574,-135110.3475162464,-42086.08064508869,1.4789056702884489,1.0817892443432644,0.3369710034455023,-6577.848345501344,2394.1410032797216,0 +67320,8271008.041064869,-225179.63251909634,-157142.06360255426,-48179.388840847765,1.5982482977326418,1.1153408185515092,0.34196088402512853,-6847.033205136639,1455.3818357243201,0 +67440,10374256.520924298,-271113.76487353124,-180914.76398691852,-54222.7529747077,1.7181751969749333,1.1465417862272622,0.34363503939498774,-6982.948351818765,488.2953162089426,0 +67560,12834899.382796545,-322605.2969104844,-206281.21453446746,-60017.55438380368,1.8381020962172248,1.175324573022277,0.3419608840251288,-6982.948351818772,-488.2953162088502,0 +67680,15672883.938744938,-379637.92711267335,-233050.32212702837,-65354.066809020194,1.9574447236614176,1.2016268418296217,0.33697100344550257,-6847.033205136637,-1455.381835724327,0 +67800,18900818.861425668,-442073.1411369565,-260988.18393564137,-70020.98847125348,2.075621654022883,1.225391627791971,0.3287625200056867,-6577.848345501376,-2394.141003279635,0 +67920,22522377.860771954,-509641.3022472774,-289820.12036702654,-73815.89896509674,2.1920571411760026,1.246567461674803,0.31749520249882535,-6180.633150012493,-3286.3009395012264,0 +68040,26530820.407962315,-581935.5719564056,-319233.70043889055,-76556.11287598974,2.3061839231314214,1.2651084813373,0.3033883564438062,-5663.118960624674,-4114.496766047255,0 +68160,30907707.391624257,-658409.0618954783,-348882.76482829446,-78089.34697598037,2.417445985679436,1.2809745310595322,0.28671655555279035,-5035.378602370581,-4862.608593212957,0 +68280,35621894.70631104,-738375.5868863869,-378392.4441061781,-78303.58997743932,2.5253012712353367,1.2941312485108065,0.26780429746622925,-4309.630327279682,-5516.075275246996,0 +68400,40628890.07605134,-821014.3413278963,-407365.15527402604,-77135.56608129221,2.6292243196894693,1.3045501391708225,0.2470196877754028,-3500.0000000000473,-6062.177826491043,0 +68520,45870656.45155537,-905378.7497155154,-435387.5370334435,-74577.218550923,2.7287088283960745,1.3122086380424582,0.22476727526579993,-2622.2461539113992,-6490.286981967506,0 +68640,51275937.60530914,-990409.6422226297,-462038.2527260083,-70679.70914786399,2.823270118828881,1.3170901585225296,0.201480177835176,-1693.4532691976524,-6792.070083931981,0 +68760,56761166.8336259,-1074952.775174369,-486896.5503198986,-65554.53402389774,2.9124474978861685,1.3191841283246797,0.17761165234633744,-731.6992428736124,-6961.653267577909,0 +68880,62231997.2227312,-1157780.5548134542,-509551.42320779664,-59371.495077374566,2.995806502341248,1.318486012376596,0.15362627249787913,244.29647691750702,-6995.735789133671,0 +69000,67585461.78644383,-1237617.6358422218,-529611.1670793891,-52353.43364138949,3.072941015503633,1.3149973226419676,0.1299908864255861,1215.537243668453,-6893.654271085467,0 +69120,72712734.94335094,-1313169.8627155798,-546713.0807813382,-44767.82330391313,3.1434752457787303,1.3087256148459085,0.10716553003450238,2163.118960624611,-6657.395614066082,0 +69240,77502425.32871622,-1383155.8140239543,-560533.0174184776,-36915.520044743454,3.2070655574867155,1.2996844721109397,0.08559447292332226,3068.5980275234674,-6291.558324094205,0 +69360,81844286.87578753,-1446340.013657573,-570794.4605731491,-29117.16723163125,3.263402145021022,1.28789347553897,0.06569757118200137,3914.3503242952734,-5803.263007885261,0 +69480,85633194.26619612,-1501566.7032164168,-577276.7835893647,-21697.93491057393,3.312210542190118,1.2733781618029898,0.047862095370543895,4683.914244512004,-5202.013778341764,0 +69600,88773194.45380512,-1547792.944486723,-579822.350668565,-14971.421208320553,3.353252959389198,1.2561699678403244,0.03243519273806704,5362.311101832868,-4499.51326780575,0 +69720,91181422.14438401,-1584119.752961156,-578342.139074347,-9223.64355475082,3.3863294420872383,1.236306162767227,0.019717130396470037,5936.3366730949665,-3709.4348496324583,0 +69840,92791657.3830047,-1609819.9640232082,-572819.6025299858,-4698.086682091011,3.4112788449853695,1.2138297671622724,0.009955450962650865,6394.818203498211,-2847.1565015305914,0 +69960,93557310.15036254,-1624361.6084026904,-563312.5557373734,-1582.745295181021,3.427979617100578,1.1887894598933635,0.0033401544230427195,6728.831871568218,-1929.4614907190423,0 +70080,93453640.94351164,-1627425.7229898984,-549952.9360377362,-0.00000000026374235261028556,3.436350393949873,1.161239472690143,0.000000000000001111090386363145,6931.876481190991,-974.2117067204691,0 +70200,92479066.77773607,-1618917.7411886516,-532944.386316177,-0.0000000002839208251829092,3.4363503939498727,1.131239472690143,0.000000000000001205202682678774,7000,0.000000000027449419758725184,0 +70320,90655456.15616691,-1598971.8820395702,-512557.69795046805,-1558.0060562359881,3.427979617100578,1.098854433213052,0.0033401544230426627,6931.876481190997,974.211706720425,0 +70440,88027379.99759501,-1567948.2727739532,-489124.2478708969,-4575.8886478976165,3.41127884498537,1.064154493042973,0.00995545096265066,6728.831871568231,1929.4614907189991,0 +70560,84660352.8445194,-1526422.8751042313,-463027.6534181036,-8887.699612012995,3.386329442087239,1.0272148045234335,0.01971713039646969,6394.818203498228,2847.1565015305505,0 +70680,80638163.9248944,-1475170.6193933894,-434693.9468092028,-14268.963284615029,3.3532529593891995,0.9881153707941462,0.03243519273806656,5936.336673094991,3709.4348496324205,0 +70800,76059455.01347733,-1415142.460894995,-404580.6326601413,-20449.087569613606,3.31221054219012,0.9469408725220223,0.0478620953705433,5362.3111018328955,4499.513267805715,0 +70920,71033746.57552509,-1347437.338497053,-373165.03345459024,-27126.09617979404,3.263402145021024,0.9037804845017033,0.06569757118200067,4683.914244512036,5202.013778341733,0 +71040,65677141.821761414,-1273270.2224871726,-340932.3469641126,-33982.7457933707,3.2070655574867173,0.8587276825228134,0.08559447292332167,3914.3503242952283,5803.263007885292,0 +71160,60107948.272819415,-1193937.5724447211,-308363.8360049671,-40703.02540189184,3.1434752457787325,0.8118800409222139,0.10716553003450174,3068.5980275235074,6291.558324094186,0 +71280,54442448.335130066,-1110781.5839654242,-275925.5458727116,-46988.04239859905,3.072941015503636,0.7633390212597171,0.1299908864255854,2163.1189606246535,6657.3956140660675,0 +71400,48791026.11882871,-1025154.5841422165,-244057.90118144694,-52570.37708303271,2.9958065023412512,0.713209752574941,0.1536262724978784,1215.5372436684966,6893.654271085459,0 +71520,43254820.61467332,-938384.8469271001,-213166.47574200484,-57226.1245294386,2.9124474978861716,0.6616008037012191,0.17761165234633672,244.29647691755156,6995.735789133669,0 +71640,37923029.67361325,-851744.9519183419,-183614.16145724768,-60784.026026495834,2.8232701188288845,0.6086239481296836,0.20148017783517527,-731.6992428735682,6961.6532675779135,0 +71760,32870939.661621954,-766423.6185450712,-155714.8902533742,-63131.30468412327,2.728708828396078,0.5543939219327724,0.22476727526579926,-1693.453269197609,6792.070083931992,0 +71880,28158706.674779918,-683501.7288040917,-129728.99191814457,-64216.04363642626,2.6292243196894733,0.49902817527144594,0.2470196877754022,-2622.246153911358,6490.2869819675225,0 +72000,23830870.61987141,-603933.0226526725,-105860.20489334354,-64046.16379456307,2.5253012712353406,0.44264661802429145,0.2678042974662287,-3500.0000000000095,6062.177826491065,0 +72120,19916546.12765745,-528529.7265487274,-84254.30010612168,-62685.25692031825,2.417445985679441,0.3853713600894276,0.28671655555279013,-4309.6303272795685,5516.075275247084,0 +72240,16430205.848384582,-457953.17044730793,-64999.232123465925,-60245.69780262039,2.3061839231314267,0.32732644692165574,0.3033883564438061,-5035.37860237055,4862.608593212989,0 +72360,13372952.712830558,-392709.27117227134,-48126.698223947715,-56879.58914570858,2.1920571411760084,0.26863759087762745,0.3174952024988256,-5663.11896062459,4114.496766047371,0 +72480,10734167.763355684,-333148.61575051723,-33614.96402499783,-52768.180674096206,2.0756216540228887,0.20943189895087272,0.3287625200056871,-6180.6331500124725,3286.3009395012655,0 +72600,8493417.966727793,-279470.7682311969,-21392.80255183947,-48110.449335396544,1.9574447236614239,0.14983759748635617,0.33697100344550346,-6577.848345501327,2394.1410032797703,0 +72720,6622512.385065094,-231732.34537140885,-11344.389689641977,-43111.53218502091,1.8381020962172312,0.08998375447076673,0.34196088402512986,-6847.033205136628,1455.3818357243704,0 +72840,5087603.4567899,-189858.3553496578,-3314.9999316238736,-37971.671069931646,1.7181751969749397,0.02999999999999902,0.3436350393949889,-6982.948351818769,488.2953162088947,0 +72960,3851241.3274265076,-153656.26284143177,2882.6507523702708,-32876.26306362772,1.5982482977326482,-0.02998375447076869,0.3419608840251298,-6982.948351818769,-488.2953162088981,0 +73080,2874301.9069093554,-122832.22653404396,7461.56590471835,-27987.51770459371,1.4789056702884553,-0.08983759748635815,0.33697100344550374,-6847.033205136648,-1455.3818357242765,0 +73200,2117722.7792256707,-97008.94550453831,10653.284902869489,-23438.10669338673,1.3607287399269903,-0.14943189895087475,0.3287625200056877,-6577.848345501359,-2394.1410032796803,0 +73320,1543994.8366206351,-75744.5446581985,12700.510337398307,-19327.059349414147,1.2442932527738706,-0.20863759087762954,0.31749520249882646,-6180.633150012518,-3286.300939501181,0 +73440,1118371.4707689644,-58551.92483052409,13849.710135209287,-15718.013849844352,1.130166470818452,-0.2673264469216579,0.3033883564438072,-5663.118960624645,-4114.496766047293,0 +73560,809771.4258864748,-44918.00096136255,14343.868714932167,-12639.786827323791,1.0189044082704373,-0.3253713600894298,0.28671655555279146,-5035.378602370617,-4862.60859321292,0 +73680,591366.1081932411,-34322.255048802675,14415.572651296772,-10089.07990977934,0.9110491227145374,-0.3826466180242937,0.26780429746623,-4309.630327279565,-5516.075275247087,0 +73800,440857.1960658106,-26254.044174711566,14280.625388148317,-8035.009649293665,0.8071260742604047,-0.4390281752714483,0.2470196877754035,-3500.0000000000064,-6062.177826491067,0 +73920,340465.465572648,-20228.13333933708,14132.38942117182,-6425.035831293943,0.7076415655537999,-0.49439392193277487,0.22476727526580056,-2622.246153911355,-6490.286981967523,0 +74040,276666.1612567557,-15797.973429677395,14137.050084880007,-5191.78095465331,0.6130802751209931,-0.5486239481296862,0.2014801778351767,-1693.4532691977022,-6792.070083931968,0 +74160,239719.02480032394,-12566.320269266924,14429.980117228944,-4260.188144992365,0.5239028960637058,-0.6016008037012219,0.17761165234633813,-731.6992428735648,-6961.653267577914,0 +74280,223051.08493637768,-10192.892912864943,15113.356885561772,-3554.461142238802,0.4405438916086258,-0.653209752574944,0.15362627249787983,244.29647691745564,-6995.7357891336715,0 +74400,222556.35558276315,-8398.896705692343,16255.144030403731,-3004.2703697901356,0.363409378446241,-0.7033390212597203,0.12999088642558682,1215.5372436685,-6893.654271085458,0 +74520,235877.75764660793,-6968.384366454357,17889.497129847823,-2549.7916391282215,0.2928751481711444,-0.7518800409222172,0.10716553003450316,2163.1189606246567,-6657.395614066067,0 +74640,261732.3879258542,-5746.588553362857,20018.590973752234,-2145.262747941592,0.22928483646315956,-0.7987276825228167,0.0855944729233231,3068.5980275235106,-6291.558324094184,0 +74760,299331.8269834082,-4635.5215137108835,22615.79757518161,-1760.8880488752625,0.1729482489288527,-0.8437804845017066,0.06569757118200212,3914.3503242952306,-5803.26300788529,0 +74880,347935.3069646864,-3587.2893319101195,25630.073541498838,-1383.078694647513,0.12413985175975623,-0.8869408725220257,0.047862095370544526,4683.914244511966,-5202.013778341798,0 +75000,406556.6874420281,-2595.697379409344,28991.3479097942,-1013.1714081902841,0.08309743456067584,-0.9281153707941497,0.03243519273806753,5362.3111018328345,-4499.51326780579,0 +75120,473828.2269535314,-1686.8181536789791,32616.64222739253,-664.9056495877387,0.050020951862635284,-0.9672148045234371,0.019717130396470384,5936.33667309494,-3709.434849632502,0 +75240,548007.2233990387,-909.2433361068156,36416.60842390285,-361.04380541243233,0.025071548964503823,-1.0041544930429767,0.009955450962651052,6394.81820349819,-2847.1565015306383,0 +75360,627097.7652111901,-324.7425413723603,40302.14098778169,-129.58059394527692,0.00837077684929511,-1.0388544332130558,0.0033401544230427377,6728.831871568204,-1929.4614907190917,0 +75480,709050.711288808,-0.000000000016029600423576383,44190.71104071502,-0.000000000053276953193538176,0.0000000000000003885780586188048,-1.0712394726901464,0.0000000000000012915016278647329,6931.876481190997,-974.2117067204217,0 +75600,792001.5507350313,-0.000000000007971385313046224,48012.08250289275,-0.0000000000527192033061174,0.00000000000000018283739636204944,-1.1012394726901464,0.0000000000000012092053629620307,7000,-0.000000000024003077263288122,0 +75720,874508.1037054021,-383.48945697028614,51713.104387047344,-153.0221183709388,0.008370776849295342,-1.1287894598933672,0.00334015442304283,6931.8764811909905,974.2117067204726,0 +75840,955757.3849533915,-1200.772496566516,55261.326377952566,-476.8046730496348,0.025071548964502807,-1.1538297671622764,0.009955450962650658,6728.831871568244,1929.4614907189498,0 +75960,1035721.9119461676,-2493.9012887751346,58647.2537223096,-983.0396079174863,0.05002095186263386,-1.176306162767231,0.01971713039646984,6394.818203498209,2847.1565015305946,0 +76080,1115258.3722041717,-4299.134975742086,61885.137283268006,-1678.0695130045765,0.0830974345606732,-1.1961699678403286,0.03243519273806656,5936.336673095018,3709.434849632377,0 +76200,1196153.7860350912,-6651.359836720183,65012.27976160949,-2564.4304736644694,0.1241398517597532,-1.2133781618029942,0.04786209537054342,5362.3111018328655,4499.513267805753,0 +76320,1281134.209337274,-9590.01284435092,68086.92354415142,-3642.9426454456043,0.1729482489288493,-1.227893475538974,0.06569757118200091,4683.914244512001,5202.013778341766,0 +76440,1373857.1912172684,-13165.938726093413,71184.86355779968,-4914.9852348906425,0.2292848364631558,-1.239684472110944,0.08559447292332181,3914.350324295271,5803.263007885263,0 +76560,1478910.883239945,-17448.545008374393,74394.99469247172,-6384.572353884524,0.2928751481711403,-1.248725614845913,0.1071655300345018,3068.598027523554,6291.558324094163,0 +76680,1601839.8913707677,-22532.60336318082,77814.05370948328,-8059.872029662815,0.3634093784462372,-1.2549973226419722,0.1299908864255855,2163.1189606246076,6657.395614066082,0 +76800,1749211.3605532574,-28544.07747351921,81540.84739536309,-9953.878166680337,0.44054389160862173,-1.2584860123766008,0.15362627249787847,1215.5372436685473,6893.65427108545,0 +76920,1928725.6010361598,-35644.43202869979,85670.27098134145,-12084.045568616752,0.5239028960637014,-1.2591841283246847,0.17761165234633677,244.29647691750358,6995.735789133671,0 +77040,2149365.3023022367,-44032.98545748855,90287.4140879039,-14470.819076405203,0.6130802751209884,-1.2570901585225347,0.20148017783517536,-731.6992428735169,6961.653267577919,0 +77160,2421567.5497218603,-53946.99949355278,95462.02774201482,-17135.115678856197,0.7076415655537949,-1.252208638042463,0.2247672752657993,-1693.4532691976556,6792.07008393198,0 +77280,2757394.757092542,-65659.33961960633,101243.5886628063,-20094.939427197634,0.8071260742604,-1.2445501391708274,0.24701968777540217,-2622.2461539114024,6490.286981967504,0 +77400,3170675.163586205,-79473.68025529415,107657.15019292942,-23361.411121728343,0.9110491227145324,-1.2341312485108116,0.2678042974662288,-3499.999999999964,6062.177826491091,0 +77520,3677081.158727656,-95717.35726858486,114700.11755435463,-26934.568895672244,1.0189044082704324,-1.2209745310595375,0.28671655555279013,-4309.630327279606,5516.075275247055,0 +77640,4294114.385292791,-114732.08059115635,122340.03305880111,-30799.336434677356,1.1301664708184467,-1.2051084813373054,0.30338835644380624,-5035.378602370514,4862.608593213026,0 +77760,5040969.961295121,-136862.8071118004,130513.40853155899,-34922.06082581383,1.244293252773865,-1.1865674616748085,0.3174952024988257,-5663.118960624617,4114.496766047332,0 +77880,5938257.6777178645,-162445.13755788002,139125.60066573427,-39247.99353401292,1.3607287399269845,-1.1653916277919765,0.32876252000568734,-6180.633150012449,3286.300939501311,0 +78000,7007565.030118363,-191791.6426403917,148051.69232609795,-43700.030077231684,1.4789056702884495,-1.141626841829627,0.33697100344550324,-6577.848345501377,2394.1410032796316,0 +78120,8270854.871530305,-225177.5474759594,157138.31971485136,-48178.94272543922,1.5982482977326424,-1.1153245730222823,0.3419608840251295,-6847.033205136638,1455.3818357243233,0 +78240,9749698.944289602,-262826.21465049096,166206.37129233475,-52565.242930098284,1.718175196974934,-1.0865417862272675,0.34363503939498835,-6982.948351818772,488.2953162088467,0 +78360,11464357.373573922,-304894.87089899625,175054.47781649113,-56722.703163179394,1.8381020962172254,-1.0553408185515145,0.3419608840251295,-6982.948351818772,-488.2953162088468,0 +78480,13432723.367085189,-351461.0250111838,183463.2114109222,-60503.45781845332,1.9574447236614183,-1.0217892443432697,0.33697100344550324,-6847.033205136638,-1455.3818357243233,0 +78600,15669161.925838806,-402510.02820679906,191199.91232382137,-63754.49540351103,2.0756216540228833,-0.9859597288411026,0.32876252000568734,-6577.848345501377,-2394.1410032796316,0 +78720,18183281.354082353,-457924.2334179493,198024.06208530522,-66325.25424960017,2.192057141176003,-0.94792987079718,0.317495202498826,-6180.633150012495,-3286.300939501223,0 +78840,20978686.619591918,-517474.2145783239,203693.1185565209,-68075.9456729685,2.306183923131422,-0.9077820344156486,0.30338835644380685,-5663.118960624675,-4114.496766047251,0 +78960,24051773.74334436,-580812.5066030691,207968.7200594932,-68886.15600998014,2.4174459856794366,-0.8656031709701089,0.286716555552791,-5035.378602370583,-4862.608593212955,0 +79080,27390633.638707317,-647470.3148434528,210623.15154182506,-68663.22635321096,2.5253012712353367,-0.8214846304865191,0.2678042974662297,-4309.630327279606,-5516.075275247055,0 +79200,30974141.09050387,-716857.6120989942,211445.94586622826,-67349.88041683446,2.6292243196894693,-0.7755219638993804,0.24701968777540326,-3500.0000000000505,-6062.177826491042,0 +79320,34771308.523524344,-788266.9847014303,210250.4692764677,-64930.5710047009,2.7287088283960745,-0.7278147161096896,0.22476727526580037,-2622.2461539114024,-6490.286981967504,0 +79440,38740983.414506905,-860881.5011799672,206880.31435871247,-61436.04779294123,2.823270118828882,-0.6784662103928499,0.20148017783517652,-1693.4532691977522,-6792.070083931956,0 +79560,42831961.31751609,-933786.7546532839,201215.29964059388,-56945.7161213952,2.9124474978861694,-0.6275833246234644,0.17761165234633797,-731.6992428736158,-6961.653267577909,0 +79680,46983572.526067585,-1005987.0740000848,193176.85601099703,-51587.45874905788,2.99580650234125,-0.5752762598016588,0.15362627249787966,244.2964769174042,-6995.735789133673,0 +79800,51126779.02211979,-1076425.7137411628,182732.5700562997,-45534.72780458666,3.0729410155036345,-0.521658301382254,0.1299908864255867,1215.5372436685473,-6893.65427108545,0 +79920,55185790.01531584,-1144008.6272546845,169899.65640148282,-39000.8768379609,3.1434752457787316,-0.46684557392369797,0.10716553003450299,2163.1189606246076,-6657.395614066082,0 +80040,59080170.44804935,-1207631.2149496581,154747.14757344945,-32230.883802192533,3.207065557486716,-0.4109567895881294,0.085594472923323,3068.598027523554,-6291.558324094163,0 +80160,62727379.66535596,-1266207.2335873276,137396.62194030551,-25490.802592836255,3.2634021450210233,-0.3541129910372697,0.06569757118200191,3914.350324295189,-5803.263007885319,0 +80280,66045640.153366,-1318698.8717218786,118021.33769329397,-19055.458691234973,3.3122105421901193,-0.2964372892809706,0.04786209537054442,4683.914244512001,-5202.013778341765,0 +80400,68957002.47922967,-1364146.855700899,96843.70191530224,-13195.057671923587,3.3532529593892,-0.23805459704618118,0.032435192738067296,5362.311101832802,-4499.513267805828,0 +80520,71390446.07239212,-1401699.3654220407,74131.0754006767,-8161.488608041874,3.38632944208724,-0.1790913582437964,0.019717130396470287,5936.336673094966,-3709.4348496324606,0 +80640,73284839.6627486,-1430638.520223278,50189.9917460684,-4175.16488114102,3.4112788449853713,-0.11967527411930218,0.009955450962651106,6394.818203498209,-2847.1565015305946,0 +80760,74591582.58754885,-1450403.2492501955,25358.948170920194,-1413.243767264852,3.4279796171005787,-0.05993502668031391,0.003340154423043277,6728.831871568244,-1929.4614907189498,0 +80880,75276760.10306321,-1460607.4880924658,0.0000000010352218868461402,-0.0000000007039730031811529,3.436350393949874,-0.000000000000002435551760271437,0.0000000000000016562272386888566,6931.8764811909905,-974.2117067204726,0 +81000,75322672.08513187,-1461052.8391035218,-25510.54470479779,-0.0000000006605741956069079,3.436350393949874,0.05999999999999756,0.0000000000000017385829257326711,7000,0.000000000024020408721112598,0 +81120,74728633.28559904,-1451735.0855437536,-50791.98410307296,-1414.5414817744827,3.427979617100579,0.11993502668030903,0.003340154423043185,6931.876481190997,974.2117067204217,0 +81240,73510991.39549607,-1432844.2435189509,-75469.25769582714,-4181.602047701641,3.4112788449853713,0.17967527411929732,0.009955450962651172,6728.831871568232,1929.4614907189962,0 +81360,71702362.21735221,-1404758.151023271,-99182.7700394008,-8179.29859244964,3.3863294420872405,0.23909135824379157,0.01971713039647019,6394.81820349823,2847.1565015305473,0 +81480,69350134.33982563,-1368029.9087428553,-121597.62718042644,-13232.617490807645,3.353252959389201,0.29805459704617643,0.03243519273806705,5936.336673094993,3709.4348496324174,0 +81600,66514343.9065438,-1323369.781135456,-142411.94256702287,-19122.954253179196,3.3122105421901207,0.35643728928096585,0.04786209537054404,5362.3111018328345,4499.51326780579,0 +81720,63265059.03539789,-1271622.4190736974,-161363.92023768133,-25599.81904810011,3.263402145021025,0.414112991037265,0.0656975711820014,4683.914244512039,5202.013778341731,0 +81840,59679439.92686029,-1213740.4610248853,-178237.48865472272,-32393.93556661744,3.207065557486718,0.4709567895881248,0.0855944729233224,3914.3503242952306,5803.26300788529,0 +81960,55838652.89338817,-1150755.6972691356,-192866.33371389098,-39230.894025227964,3.1434752457787343,0.5268455739236934,0.1071655300345023,3068.5980275236,6291.5583240941405,0 +82080,51824814.223100044,-1083749.0357192832,-205136.25873740303,-45844.51738750028,3.0729410155036376,0.5816583013822495,0.12999088642558596,2163.1189606246567,6657.395614066067,0 +82200,47718124.24679737,-1013820.4891969389,-214985.87708651356,-51989.15971895594,2.9958065023412535,0.6352762598016544,0.1536262724978789,1215.537243668598,6893.654271085441,0 +82320,43594325.7415312,-942060.3188977967,-222405.7142776693,-57450.26819223374,2.912447497886174,0.6875833246234602,0.17761165234633722,244.29647691755503,6995.735789133669,0 +82440,39522587.251747414,-869522.3283822197,-227435.85688454536,-62052.69279256115,2.8232701188288867,0.7384662103928458,0.20148017783517577,-731.6992428735648,6961.653267577914,0 +82560,35563874.7828005,-797200.1213519457,-230162.3319973831,-65666.40502393921,2.72870882839608,0.7878147161096856,0.22476727526579965,-1693.4532691977022,6792.070083931968,0 +82680,31769838.258419156,-726006.9311891198,-230712.43195534367,-68209.47308379073,2.629224319689475,0.8355219638993765,0.2470196877754026,-2622.246153911355,6490.286981967523,0 +82800,28182205.26292932,-656759.4173930134,-229249.2143228592,-69648.32132414213,2.5253012712353424,0.8814846304865153,0.26780429746622914,-3500.0000000000064,6062.177826491067,0 +82920,24832646.24737802,-590165.6188977017,-225965.4079078494,-69995.46399729597,2.417445985679443,0.9256031709701051,0.2867165555527906,-4309.630327279565,5516.075275247087,0 +83040,21743053.967227966,-526817.0692953854,-221076.94445952494,-69305.03816150407,2.3061839231314285,0.9677820344156449,0.3033883564438066,-5035.378602370547,4862.608593212992,0 +83160,18926165.90283132,-467184.9230555452,-214816.3158197317,-67666.56259259133,2.19205714117601,1.0079298707971767,0.3174952024988261,-5663.118960624587,4114.496766047373,0 +83280,16386451.441541122,-411619.819622089,-207425.93144713526,-65197.41636003978,2.0756216540228904,1.0459597288410991,0.3287625200056876,-6180.633150012471,3286.3009395012687,0 +83400,14121184.711388852,-360355.12441631884,-199151.62508822966,-62034.56291943669,1.9574447236614254,1.0817892443432662,0.3369710034455037,-6577.848345501359,2394.1410032796803,0 +83520,12121627.82869386,-313513.1293485379,-190236.43519794912,-58326.04570015067,1.8381020962172328,1.1153408185515108,0.3419608840251301,-6847.033205136628,1455.3818357243738,0 +83640,10374256.520924453,-271113.76487353456,-180914.76398691986,-54222.752974709205,1.7181751969749413,1.146541786227264,0.3436350393949895,-6982.948351818762,488.2953162089973,0 +83760,8861969.276707891,-233085.36384843723,-171407.0061150991,-49870.89752450029,1.5982482977326498,1.1753245730222788,0.3419608840251308,-6982.948351818775,-488.29531620879544,0 +83880,7565231.273757232,-199277.01714531987,-161914.73031194252,-45405.5845346699,1.478905670288457,1.2016268418296234,0.3369710034455044,-6847.033205136628,-1455.3818357243704,0 +84000,6463114.588369941,-169472.0657293899,-152616.49467369038,-40945.753378262045,1.360728739926992,1.2253916277919727,0.3287625200056887,-6577.848345501394,-2394.1410032795834,0 +84120,5534206.174683297,-143402.2791871403,-143664.37716043938,-36590.67954263691,1.2442932527738726,1.246567461674805,0.3174952024988272,-6180.6331500124725,-3286.3009395012655,0 +84240,4757364.666353978,-120762.27438677868,-135181.30425658173,-32418.116173706476,1.1301664708184538,1.265108481337302,0.3033883564438082,-5663.118960624706,-4114.496766047209,0 +84360,4112316.210764995,-101223.73063449416,-127259.25987671397,-28484.04536495283,1.0189044082704393,1.2809745310595342,0.28671655555279224,-5035.37860237055,-4862.608593212989,0 +84480,3580088.3482219665,-84448.96232788655,-119958.4504589591,-24823.90297527123,0.9110491227145391,1.2941312485108085,0.267804297466231,-4309.630327279646,-5516.0752752470235,0 +84600,3143289.3686083723,-70103.4214688036,-113307.48832179679,-21455.04380970408,0.8071260742604064,1.3045501391708245,0.2470196877754045,-3500.0000000000086,-6062.177826491065,0 +84720,2786248.4238775773,-57866.72612647443,-107304.63213953728,-18380.133379842984,0.7076415655538015,1.31220863804246,0.22476727526580156,-2622.246153911358,-6490.2869819675225,0 +84840,2495038.5578133087,-47441.85247977661,-101920.09030279094,-15591.095101810652,0.6130802751209947,1.3170901585225316,0.2014801778351777,-1693.4532691977056,-6792.070083931968,0 +84960,2257410.1792535363,-38562.19155773927,-97099.3507357892,-13073.213780885764,0.5239028960637074,1.3191841283246815,0.17761165234633913,-731.6992428735682,-6961.6532675779135,0 +85080,2062665.7205376134,-30996.259127718513,-92767.45149426316,-10809.00187670779,0.4405438916086274,1.318486012376598,0.15362627249788083,244.2964769174522,-6995.7357891336715,0 +85200,1901506.7199506033,-24549.95730155118,-88834.05337677593,-8781.475934889932,0.36340937844624255,1.3149973226419693,0.12999088642558781,1215.5372436684968,-6893.654271085459,0 +85320,1765881.993886626,-19066.4150493014,-85199.12295092676,-6976.5648856700445,0.29287514817114524,1.3087256148459105,0.10716553003450405,2163.118960624559,-6657.3956140660985,0 +85440,1648859.9292166966,-14423.57451918007,-81758.98643836088,-5384.474078981934,0.22928483646316036,1.2996844721109415,0.08559447292332398,3068.5980275235074,-6291.558324094186,0 +85560,1544539.6880179786,-10529.830891743808,-78412.47649511808,-3999.949804807685,0.17294824892885347,1.2878934755389717,0.06569757118200298,3914.3503242952283,-5803.263007885292,0 +85680,1448006.1991349617,-7318.1638492905495,-75066.86932587124,-2821.516629243843,0.12413985175975698,1.2733781618029916,0.04786209537054538,4683.914244511962,-5202.0137783418,0 +85800,1355323.5222889748,-4739.306595565879,-71643.30216945946,-1849.88048890647,0.08309743456067654,1.2561699678403262,0.03243519273806838,5362.311101832832,-4499.513267805792,0 +85920,1263552.033160195,-2754.5726051725396,-68081.37311973855,-1085.790358245936,0.050020951862635964,1.2363061627672287,0.019717130396471216,5936.336673094938,-3709.434849632505,0 +86040,1170768.3914096477,-1328.9920231701533,-64342.6571022406,-527.7182887725733,0.025071548964504475,1.2138297671622742,0.009955450962651874,6394.818203498188,-2847.1565015306414,0 +86160,1076064.6297985031,-425.3933186615417,-60412.92255645872,-169.74283276707854,0.008370776849295734,1.1887894598933653,0.0033401544230435495,6728.8318715682035,-1929.4614907190949,0 +86280,979504.624213942,-0.000000000006476344733157428,-56302.9002877209,-0.00000000008505459235591334,0.00000000000000013357370765021415,1.1612394726901447,0.0000000000000017542391150815462,6931.876481190983,-974.2117067205236,0 +86400,882022.6568713107,-0.00000000003455725330103098,-52047.5349185612,-0.00000000009207595988983279,0.0000000000000007510928051260426,1.1312394726901445,0.0000000000000020012467540718777,7000,0.00000000007204389470551332,0 +86520,785258.9998739853,-363.39419457391926,-47703.7351372074,-145.0035938320975,0.008370776849295034,1.0988544332130539,0.003340154423043272,6931.876481191004,974.2117067203707,0 +86640,691339.9770501216,-1021.2516697464815,-43346.72558233343,-405.5202545754818,0.02507154896450331,1.0641544930429745,0.009955450962651418,6728.831871568218,1929.4614907190423,0 +86760,602622.8850107815,-1902.3068114088053,-39065.18462085941,-749.8464155109433,0.0500209518626335,1.0272148045234353,0.01971713039647028,6394.818203498251,2847.1565015305005,0 +86880,521437.36543938145,-2939.6425140982,-34955.422729681435,-1147.4225652077657,0.08309743456067363,0.9881153707941479,0.03243519273806728,5936.3366730949665,3709.4348496324583,0 +87000,449862.3748081308,-4079.030197135326,-31114.910797495388,-1572.6692882834132,0.12413985175975281,0.9469408725220242,0.04786209537054388,5362.311101832932,4499.513267805673,0 +87120,389580.33215588215,-5288.354750199531,-27635.502804763983,-2008.878752972175,0.17294824892884889,0.9037804845017051,0.06569757118200135,4683.914244512004,5202.013778341764,0 +87240,341846.6058325222,-6567.452019172795,-24596.71097094235,-2451.6998276099807,0.22928483646315612,0.8587276825228152,0.08559447292332244,3914.350324295191,5803.263007885316,0 +87360,307603.3453479723,-7957.635132310715,-22059.383246437923,-2911.766983646361,0.2928751481711406,0.8118800409222157,0.10716553003450242,3068.598027523557,6291.558324094161,0 +87480,287752.72932901816,-9550.186546247713,-20060.104343561794,-3416.0846921018715,0.3634093784462375,0.7633390212597189,0.12999088642558615,2163.118960624611,6657.395614066082,0 +87600,283587.61960880994,-11493.143288221074,-18606.595249725375,-4007.8838823669766,0.44054389160862195,0.7132097525749428,0.15362627249787913,1215.537243668551,6893.65427108545,0 +87720,297359.4368305437,-13995.797426996525,-17674.326474833015,-4744.8042864249,0.5239028960637017,0.661600803701221,0.17761165234633744,244.29647691750702,6995.735789133671,0 +87840,332945.95577604516,-17330.462884300403,-17204.492089516894,-5695.411980438717,0.6130802751209886,0.6086239481296855,0.20148017783517602,-731.6992428735135,6961.65326757792,0 +87960,396567.5922390168,-21831.211622353047,-17103.42017909713,-6934.2195130485725,0.7076415655537951,0.5543939219327743,0.22476727526579995,-1693.4532691976524,6792.070083931981,0 +88080,497491.0732708775,-27889.44441235242,-17243.42577729749,-8535.521364839577,0.8071260742604002,0.49902817527144766,0.24701968777540284,-2622.2461539113992,6490.286981967506,0 +88200,648654.9652241471,-35946.32163476026,-17465.04914535309,-10566.476792391895,0.9110491227145326,0.4426466180242932,0.26780429746622947,-3499.9999999999613,6062.177826491093,0 +88320,867152.5126113215,-46482.227365352475,-17580.568927146724,-13079.955309289753,1.0189044082704326,0.3853713600894293,0.2867165555527908,-4309.630327279603,5516.075275247057,0 +88440,1174513.137983974,-60003.567437300626,-17378.63849177206,-16107.701100338236,1.130166470818447,0.3273264469216575,0.3033883564438069,-5035.3786023705115,4862.608593213029,0 +88560,1596733.8438540297,-77027.30448108647,-16629.86555738993,-19654.36972324879,1.2442932527738653,0.2686375908776292,0.31749520249882635,-5663.118960624615,4114.496766047335,0 +88680,2164024.485321073,-98063.70867694955,-15093.13952425294,-23692.945581106473,1.3607287399269847,0.2094318989508745,0.328762520005688,-6180.633150012447,3286.300939501314,0 +88800,2910245.2810100447,-123597.85366456753,-12522.506214988536,-28161.96706104778,1.4789056702884495,0.14983759748635792,0.33697100344550424,-6577.848345501341,2394.1410032797285,0 +88920,3872030.013953764,-154070.41663404007,-8674.393435159274,-32964.87532571726,1.5982482977326424,0.08998375447076847,0.34196088402513014,-6847.033205136658,1455.3818357242296,0 +89040,5087603.456789835,-189858.35534965593,-3314.9999316238136,-37971.67106993148,1.718175196974934,0.03000000000000077,0.3436350393949894,-6982.948351818764,488.2953162089494,0 +89160,6595316.285971388,-231256.03830733377,3772.328145840863,-43022.91992293097,1.8381020962172254,-0.02998375447076694,0.3419608840251302,-6982.948351818765,-488.2953162089426,0 +89280,8431935.061351791,-278457.4021882842,12779.898054079284,-47935.999978942375,1.9574447236614183,-0.0898375974863564,0.3369710034455043,-6847.0332051366595,-1455.3818357242228,0 +89400,10630738.837520147,-331539.7063358121,23868.80470212597,-52513.34178637608,2.0756216540228833,-0.149431898950873,0.3287625200056881,-6577.848345501344,-2394.1410032797216,0 +89520,13219487.736175679,-390449.44791604765,37162.549571586715,-56552.27877187303,2.192057141176003,-0.2086375908776278,0.31749520249882707,-6180.633150012543,-3286.3009395011322,0 +89640,16218342.260937523,-454990.9919290748,52741.294410120114,-59856.01055212718,2.3061839231314214,-0.2673264469216562,0.3033883564438076,-5663.11896062462,-4114.496766047329,0 +89760,19637824.86585322,-524818.4531355103,70636.901468861,-62245.08843835279,2.417445985679436,-0.3253713600894281,0.286716555552792,-5035.378602370654,-4862.608593212882,0 +89880,23476926.466940865,-599431.336287097,90828.91462523845,-63568.766911949824,2.525301271235336,-0.38264661802429206,0.2678042974662307,-4309.6303272796085,-5516.0752752470535,0 +90000,27721468.958342955,-678174.389972701,113241.63659824371,-63715.53192088273,2.6292243196894685,-0.43902817527144655,0.2470196877754041,-3499.9999999999673,-6062.17782649109,0 +90120,32342838.77315554,-760242.0513839398,137742.45368013624,-62622.121002369124,2.7287088283960736,-0.4943939219327732,0.22476727526580123,-2622.2461539114056,-6490.286981967503,0 +90240,37297204.37781554,-844687.7493622712,164141.54809392992,-60280.39500071052,2.82327011882888,-0.5486239481296844,0.2014801778351773,-1693.453269197659,-6792.070083931979,0 +90360,42525320.68788228,-930438.1888677574,192193.11682817133,-56741.508388005896,2.9124474978861676,-0.6016008037012203,0.17761165234633874,-731.6992428736194,-6961.653267577908,0 +90480,47953004.54641792,-1016312.5627151525,221598.18303056416,-52116.95434290398,2.9958065023412472,-0.6532097525749422,0.15362627249788044,244.29647691750017,-6995.735789133671,0 +90600,53492337.151500225,-1101046.4313204843,252009.0413253624,-46576.22807628915,3.0729410155036323,-0.7033390212597186,0.1299908864255874,1215.537243668446,-6893.654271085467,0 +90720,59043612.18425473,-1183319.78765227,283035.3226286171,-40341.05005737449,3.1434752457787294,-0.7518800409222155,0.10716553003450369,2163.1189606246044,-6657.395614066084,0 +90840,64498004.043923415,-1261788.5955762602,314251.59938674525,-33676.30871370469,3.2070655574867137,-0.7987276825228151,0.08559447292332369,3068.5980275235506,-6291.558324094164,0 +90960,69740881.86303042,-1335118.8709930799,345206.3821042365,-26878.105475700777,3.263402145021021,-0.8437804845017052,0.06569757118200259,3914.3503242951856,-5803.26300788532,0 +91080,74655645.6620872,-1402022.1836050123,375432.2869824641,-20259.496975989172,3.312210542190117,-0.8869408725220244,0.0478620953705451,4683.914244511999,-5202.013778341769,0 +91200,79127915.57228947,-1461291.3095583646,404457.0875011085,-14134.7121276002,3.3532529593891978,-0.9281153707941485,0.03243519273806796,5362.311101832799,-4499.513267805832,0 +91320,83049868.14957151,-1511834.6763808127,431815.30503603886,-8802.758846087425,3.386329442087238,-0.967214804523436,0.019717130396470946,5936.336673094964,-3709.4348496324637,0 +91440,86324489.68899304,-1552708.2228054374,457059.9499970048,-4531.4121987298095,3.41127884498537,-1.0041544930429758,0.009955450962651442,6394.818203498167,-2847.1565015306883,0 +91560,88869508.44300918,-1583143.3536093398,479773.99956068373,-1542.583056353988,3.4279796171005783,-1.0388544332130552,0.0033401544230432737,6728.831871568217,-1929.461490719049,0 +91680,90620777.63079098,-1602569.804102746,499581.1937335336,-0.00000000038282400686984186,3.4363503939498736,-1.0712394726901457,0.000000000000001641915770012048,6931.87648119099,-974.211706720476,0 +91800,91534909.20500152,-1610632.4348929373,516155.74954811105,-0.0000000003214358191145231,3.4363503939498745,-1.101239472690146,0.0000000000000013714543346191997,7000,-0.00000000007888458532291402,0 +91920,91591002.73245105,-1607201.2436789032,529230.6333276038,-1566.0245807823444,3.427979617100579,-1.1287894598933668,0.003340154423043143,6931.876481190984,974.2117067205168,0 +92040,90791370.89829671,-1592374.1907590227,538604.0910902374,-4647.173066369387,3.411278844985372,-1.153829767162276,0.00995545096265079,6728.83187156826,1929.461490718897,0 +92160,89161228.1165132,-1566472.768636512,544144.2136883221,-9120.89280442478,3.3863294420872405,-1.1763061627672307,0.019717130396470113,6394.818203498191,2847.156501530635,0 +92280,86747375.74120274,-1530030.581609749,545791.4012941694,-14799.610232413106,3.3532529593892018,-1.1961699678403281,0.03243519273806668,5936.3366730950465,3709.43484963233,0 +92400,83615980.47690712,-1483775.5165128654,543558.6856034244,-21440.848755007133,3.3122105421901216,-1.2133781618029937,0.04786209537054366,5362.311101832836,4499.513267805786,0 +92520,79849596.35744368,-1428606.3606672399,537529.9615014135,-28760.16007227134,3.263402145021025,-1.2278934755389734,0.06569757118200124,4683.914244511968,5202.013778341796,0 +92640,75543620.80883299,-1365564.9410378255,527856.2669577416,-36446.03120064863,3.207065557486718,-1.2396844721109435,0.08559447292332223,3914.350324295234,5803.263007885287,0 +92760,70802399.11358269,-1295805.007908688,514750.3252631258,-44175.8307721248,3.1434752457787334,-1.2487256148459123,0.10716553003450228,3068.598027523514,6291.558324094182,0 +92880,65735198.128156506,-1220559.1612191722,498479.62317790865,-51631.82973616445,3.0729410155036367,-1.2549973226419717,0.12999088642558593,2163.1189606246603,6657.395614066066,0 +93000,60452260.22819461,-1141105.1181895481,479358.33932218165,-58516.37136735211,2.995806502341252,-1.2584860123766002,0.1536262724978789,1215.5372436685034,6893.654271085457,0 +93120,55061124.55950734,-1058732.5528705262,457738.45800922456,-64565.36581163325,2.912447497886173,-1.2591841283246843,0.1776116523463372,244.29647691755846,6995.735789133668,0 +93240,49663368.273520514,-974711.6124643186,434000.40515244385,-69559.43312246208,2.823270118828886,-1.257090158522534,0.20148017783517574,-731.6992428735614,6961.653267577914,0 +93360,44351879.65024948,-890264.0459038806,408543.52682061034,-73332.20084993394,2.728708828396079,-1.2522086380424624,0.22476727526579965,-1693.453269197699,6792.070083931969,0 +93480,39208732.062383175,-806537.6834063913,381776.7006842894,-75775.46169878717,2.6292243196894742,-1.2445501391708267,0.2470196877754026,-2622.2461539113515,6490.286981967525,0 +93600,34303686.40933889,-724584.7979712604,354109.3300661038,-76841.09812389845,2.5253012712353415,-1.234131248510811,0.26780429746622914,-3500.000000000003,6062.177826491069,0 +93720,29693312.978926636,-645344.6761876387,325942.9240808916,-76539.8705067051,2.417445985679442,-1.2209745310595368,0.2867165555527906,-4309.630327279563,5516.075275247089,0 +93840,25420693.717487346,-569630.5387211222,297663.4198843308,-74937.33313696044,2.3061839231314276,-1.2051084813373047,0.3033883564438066,-5035.378602370545,4862.6085932129945,0 +93960,21515643.60001866,-498120.7893534686,269634.3583057799,-72147.28024827271,2.1920571411760092,-1.186567461674808,0.3174952024988261,-5663.118960624585,4114.496766047377,0 +94080,17995375.217893537,-431354.44030697213,242190.9852262001,-68323.22862700137,2.0756216540228896,-1.165391627791976,0.3287625200056876,-6180.63315001247,3286.300939501272,0 +94200,14865523.100109512,-369730.46166463516,215635.3199536968,-63648.51235158075,1.9574447236614245,-1.1416268418296263,0.3369710034455037,-6577.848345501358,2394.1410032796834,0 +94320,12121442.401259318,-313510.73139687587,190232.20927321067,-58325.599584740834,1.8381020962172319,-1.1153245730222818,0.34196088402513014,-6847.033205136627,1455.3818357243772,0 +94440,9749698.9442897,-262826.2146504931,166206.3712923348,-52565.24293010023,1.7181751969749404,-1.0865417862272668,0.34363503939498924,-6982.948351818768,488.2953162089015,0 +94560,7729672.749738766,-217685.96993923333,143740.42508211077,-46576.04630387759,1.5982482977326489,-1.055340818551514,0.34196088402513053,-6982.948351818775,-488.29531620879203,0 +94680,6035203.903711263,-177988.5588888274,122973.89802643037,-40554.97554410638,1.478905670288456,-1.0217892443432692,0.33697100344550446,-6847.0332051366495,-1455.3818357242696,0 +94800,4636217.066399414,-143535.41937541484,104003.19991335756,-34679.2603105209,1.360728739926991,-0.9859597288411023,0.32876252000568873,-6577.848345501396,-2394.1410032795798,0 +94920,3500268.657363326,-114045.7452771469,86882.54826145899,-29100.03482714192,1.2442932527738713,-0.9479298707971796,0.31749520249882757,-6180.633150012521,-3286.3009395011745,0 +95040,2593968.6903375355,-89172.39812346945,71625.82068429503,-23937.948970685826,1.1301664708184531,-0.9077820344156481,0.303388356443808,-5663.118960624591,-4114.496766047368,0 +95160,1884237.5388427144,-68518.35780614692,58209.29549940986,-19280.854398951706,1.0189044082704384,-0.8656031709701084,0.2867165555527923,-5035.378602370622,-4862.608593212915,0 +95280,1339366.866618331,-51653.20473325774,46575.22052961805,-15183.539351043186,0.9110491227145385,-0.8214846304865187,0.26780429746623086,-4309.63032727957,-5516.075275247083,0 +95400,929863.768158237,-38129.11964116128,36636.122520219295,-11669.35814524568,0.8071260742604054,-0.77552196389938,0.2470196877754045,-3500.0000000000978,-6062.1778264910145,0 +95520,629067.8521183566,-27495.895835999836,28279.737364492525,-8733.48583362733,0.7076415655538005,-0.7278147161096892,0.22476727526580156,-2622.246153911361,-6490.286981967522,0 +95640,413542.2965066528,-19314.48775589121,21374.406982564324,-6347.43374688461,0.6130802751209932,-0.6784662103928495,0.20148017783517777,-1693.4532691978054,-6792.0700839319425,0 +95760,263251.237410529,-13168.673895888294,15774.755601768718,-4464.395878381298,0.5239028960637059,-0.627583324623464,0.17761165234633922,-731.6992428735716,-6961.6532675779135,0 +95880,161546.40331990938,-8674.493450902735,11327.430122541698,-3024.965548389346,0.44054389160862645,-0.5752762598016581,0.1536262724978809,244.29647691754818,-6995.735789133669,0 +96000,94994.7333480725,-5487.223612306888,7876.669999929681,-1962.7700980884426,0.3634093784462416,-0.5216583013822534,0.1299908864255879,1215.5372436684934,-6893.65427108546,0 +96120,53084.92623134494,-3305.7940719438534,5269.464959479397,-1209.61841971571,0.29287514817114496,-0.4668455739236973,0.10716553003450423,2163.1189606246503,-6657.395614066069,0 +96240,27853.793781032553,-1874.6795020320249,3360.0663765897907,-699.8378364300256,0.22928483646316006,-0.41095678958812887,0.08559447292332416,3068.5980275235047,-6291.558324094187,0 +96360,13472.657189545951,-983.4594966747975,2013.6415724844014,-373.58516601107,0.17294824892885313,-0.35411299103726906,0.06569757118200314,3914.350324295225,-5803.2630078852935,0 +96480,5830.022419001263,-464.37686799864645,1108.8995032853059,-179.04040990027724,0.1241398517597566,-0.29643728928097,0.04786209537054553,4683.9142445119605,-5202.013778341802,0 +96600,2140.0766533375463,-188.3469662082055,539.5697398194155,-73.51695251353264,0.08309743456067614,-0.23805459704618057,0.032435192738068525,5362.31110183283,-4499.513267805795,0 +96720,598.225393986405,-59.961351332656264,214.68123760996048,-23.635411541573284,0.050020951862635527,-0.17909135824379582,0.019717130396471355,5936.3366730949365,-3709.4348496325074,0 +96840,96.2193959285026,-12.079350269063971,57.658964616823326,-4.7964878211003175,0.025071548964504007,-0.1196752741193016,0.009955450962652001,6394.818203498187,-2847.1565015306446,0 +96960,1.6746420831472153,-0.6047352431743716,4.329923445185334,-0.24130485540649907,0.008370776849296081,-0.05993502668031333,0.003340154423043991,6728.83187156823,-1929.4614907190028,0 +97080,1,0.00000000000002706168622523819,-0.0000000000001111610803405938,0.000000000000131041011375288,0.0000000000000004510281037539698,-0.00000000000000185268467234323,0.0000000000000021840168562548,6931.876481190982,-974.211706720527,0 +97200,1.5183999999995348,-0.000000000000012980705901613111,-4.17599999999939,-0.0000000000001446432331474528,0.00000000000000018650439513814155,0.059999999999998145,0.0000000000000020782073728084687,7000,-0.0000000000308610993385133,0 +97320,87.95936869204138,-3.8569437328473506,-55.261615239748075,-1.5390193647063013,0.008370776849294439,0.11993502668030961,0.003340154423043338,6931.876481191005,974.2117067203674,0 +97440,530.0288423387465,-28.290543232925177,-202.74419891474295,-11.233654380944804,0.02507154896450184,0.1796752741192979,0.009955450962651144,6728.831871568246,1929.4614907189432,0 +97560,1840.5005875602012,-105.14401000006286,-502.5698877372608,-41.44539594672759,0.050020951862632,0.23909135824379213,0.01971713039646999,6394.818203498253,2847.1565015304973,0 +97680,4886.049338742018,-284.57345134286794,-1020.7105167381616,-111.07677139784153,0.08309743456067128,0.298054597046177,0.03243519273806669,5936.336673095021,3709.4348496323705,0 +97800,11054.682953673999,-639.440015343454,-1835.9959553350725,-246.53597184359438,0.12413985175975203,0.35643728928096635,0.047862095370543804,5362.311101832805,4499.5132678058235,0 +97920,22483.19488983017,-1270.4443075786326,-3041.993749090234,-482.6016212760482,0.1729482489288473,0.41411299103726557,0.06569757118200104,4683.91424451208,5202.013778341694,0 +98040,42345.050638854635,-2311.4518293082247,-4747.779877687352,-862.8896008527818,0.2292848364631545,0.47095678958812526,0.08559447292332212,3914.3503242951942,5803.263007885314,0 +98160,75193.5860447514,-3934.4133470139413,-7077.515012128548,-1439.635606982928,0.29287514817113824,0.5268455739236939,0.10716553003450195,3068.5980275236493,6291.558324094117,0 +98280,127347.91450371001,-6353.287710121202,-10168.81444684165,-2272.5596810034417,0.36340937844623517,0.5816583013822499,0.12999088642558565,2163.1189606246144,6657.395614066081,0 +98400,207300.52723500394,-9826.424729744955,-14169.971411340593,-3426.666518288335,0.44054389160861895,0.6352762598016548,0.15362627249787855,1215.537243668652,6893.654271085432,0 +98520,326117.48028444144,-14656.956267197073,-19236.157682615118,-4968.947949217596,0.5239028960636987,0.6875833246234605,0.17761165234633686,244.29647691751043,6995.735789133671,0 +98640,497795.5587471852,-21190.865323555074,-25524.778149717382,-6964.078746504458,0.6130802751209862,0.7384662103928461,0.2014801778351754,-731.699242873609,6961.65326757791,0 +98760,739536.9460436213,-29812.54418590373,-33190.19427009595,-9469.319852859182,0.7076415655537927,0.7878147161096859,0.22476727526579934,-1693.453269197649,6792.070083931982,0 +98880,1071901.373152316,-40937.80125271581,-42378.05367858343,-12528.950812205952,0.8071260742603977,0.8355219638993768,0.24701968777540223,-2622.246153911396,6490.286981967507,0 +99000,1518798.6744028917,-55004.42021989029,-53219.469536603174,-16168.634321972117,0.9110491227145302,0.8814846304865156,0.26780429746622886,-3499.9999999999586,6062.1778264910945,0 +99120,2107290.857294771,-72460.50476806318,-65825.28492271734,-20390.16238626525,1.0189044082704302,0.9256031709701055,0.2867165555527902,-4309.6303272796,5516.07527524706,0 +99240,2867181.548791142,-93750.94931231199,-80280.6372305152,-25167.04145922062,1.1301664708184445,0.9677820344156454,0.3033883564438063,-5035.37860237051,4862.608593213031,0 +99360,3830381.128167944,-119302.4575295947,-96640.00856351503,-30441.34317012978,1.2442932527738628,1.007929870797177,0.31749520249882573,-5663.1189606246135,4114.496766047338,0 +99480,5030047.068961146,-149507.58437450827,-114922.91433518176,-36122.18126704952,1.3607287399269825,1.0459597288410996,0.32876252000568706,-6180.6331500124925,3286.300939501229,0 +99600,6499510.184293048,-184708.30626322582,-135110.3475162469,-42086.08064508818,1.4789056702884473,1.081789244343267,0.3369710034455033,-6577.84834550134,2394.1410032797316,0 +99720,8271008.041064874,-225179.63251909614,-157142.06360255444,-48179.38884084902,1.5982482977326402,1.1153408185515117,0.3419608840251296,-6847.033205136637,1455.3818357243301,0 +99840,10374256.520924304,-271113.76487353136,-180914.7639869189,-54222.752974705465,1.7181751969749317,1.1465417862272649,0.34363503939498885,-6982.948351818764,488.2953162089528,0 +99960,12834899.382796548,-322605.2969104838,-206281.214534468,-60017.55438380379,1.8381020962172232,1.1753245730222797,0.34196088402513,-6982.948351818773,-488.2953162088399,0 +100080,15672883.938744945,-379637.92711267277,-233050.3221270299,-65354.06680901803,1.957444723661416,1.2016268418296248,0.33697100344550407,-6847.03320513666,-1455.3818357242194,0 +100200,18900818.86142568,-442073.14113695594,-260988.18393564265,-70020.98847125133,2.075621654022881,1.2253916277919743,0.32876252000568823,-6577.848345501379,-2394.1410032796252,0 +100320,22522377.86077196,-509641.3022472772,-289820.1203670276,-73815.89896509575,2.1920571411760004,1.2465674616748066,0.3174952024988266,-6180.633150012452,-3286.3009395013046,0 +100440,26530820.407962304,-581935.571956405,-319233.7004388912,-76556.11287598989,2.306183923131419,1.2651084813373035,0.3033883564438075,-5663.118960624681,-4114.496766047246,0 +100560,30907707.39162422,-658409.0618954764,-348882.76482829655,-78089.34697597819,2.4174459856794335,1.2809745310595357,0.28671655555279146,-5035.378602370519,-4862.608593213021,0 +100680,35621894.706311,-738375.5868863852,-378392.4441061786,-78303.58997744409,2.525301271235334,1.29413124851081,0.26780429746623036,-4309.6303272796895,-5516.07527524699,0 +100800,40628890.076051295,-821014.3413278947,-407365.1552740276,-77135.56608129002,2.6292243196894667,1.304550139170826,0.24701968777540378,-3499.9999999999704,-6062.177826491087,0 +100920,45870656.45155536,-905378.7497155146,-435387.53703344584,-74577.21855092085,2.7287088283960723,1.312208638042462,0.22476727526580104,-2622.246153911501,-6490.286981967464,0 +101040,51275937.60530916,-990409.6422226292,-462038.25272601034,-70679.70914786421,2.823270118828879,1.3170901585225339,0.2014801778351771,-1693.4532691976622,-6792.070083931979,0 +101160,56761166.83362588,-1074952.775174368,-486896.55031989975,-65554.5340239026,2.9124474978861663,1.3191841283246837,0.17761165234633852,-731.6992428735238,-6961.653267577918,0 +101280,62231997.22273118,-1157780.554813453,-509551.4232077979,-59371.49507737477,2.995806502341246,1.3184860123766002,0.15362627249788022,244.2964769174968,-6995.735789133671,0 +101400,67585461.78644377,-1237617.6358422197,-529611.1670793906,-52353.43364138971,3.0729410155036305,1.3149973226419716,0.12999088642558723,1215.5372436685407,-6893.654271085452,0 +101520,72712734.94335087,-1313169.8627155782,-546713.08078134,-44767.82330391335,3.1434752457787276,1.3087256148459128,0.10716553003450352,2163.1189606246016,-6657.395614066085,0 +101640,77502425.32871604,-1383155.8140239513,-560533.0174184787,-36915.52004473905,3.207065557486712,1.2996844721109437,0.08559447292332352,3068.5980275235474,-6291.558324094166,0 +101760,81844286.87578742,-1446340.013657571,-570794.4605731514,-29117.167231631473,3.2634021450210193,1.2878934755389744,0.06569757118200241,3914.3503242951824,-5803.263007885323,0 +101880,85633194.26619601,-1501566.7032164144,-577276.7835893664,-21697.934910578806,3.3122105421901153,1.2733781618029945,0.04786209537054491,4683.914244511996,-5202.01377834177,0 +102000,88773194.45380503,-1547792.9444867207,-579822.350668567,-14971.421208316122,3.3532529593891955,1.256169967840329,0.032435192738068025,5362.311101832861,-4499.513267805758,0 +102120,91181422.1443839,-1584119.7529611536,-578342.1390743492,-9223.643554737075,3.3863294420872356,1.2363061627672316,0.019717130396470994,5936.336673094961,-3709.434849632467,0 +102240,92791657.38300458,-1609819.9640232057,-572819.6025299877,-4698.086682095887,3.411278844985367,1.213829767162277,0.009955450962651793,6394.8182034982065,-2847.1565015306005,0 +102360,93557310.15036245,-1624361.6084026883,-563312.5557373754,-1582.7452951765756,3.427979617100575,1.1887894598933682,0.0033401544230436137,6728.831871568215,-1929.461490719052,0 +102480,93453640.94351152,-1627425.722989896,-549952.936037738,-0.00000000046638055396786,3.4363503939498705,1.1612394726901476,0.0000000000000019697785069716645,6931.87648119099,-974.2117067204795,0 +102600,92479066.77773607,-1618917.7411886512,-532944.3863161793,-0.00000000039760283932672894,3.4363503939498714,1.1312394726901478,0.0000000000000016875604623070017,7000,-0.00000000008231359636052661,0 +102720,90655456.15616694,-1598971.8820395702,-512557.6979504706,-1558.0060562360925,3.4279796171005765,1.0988544332130572,0.0033401544230431102,6931.876481190998,974.2117067204149,0 +102840,88027379.99759504,-1567948.272773953,-489124.24787089933,-4575.888647897712,3.4112788449853686,1.0641544930429778,0.009955450962651075,6728.8318715682335,1929.4614907189896,0 +102960,84660352.84451945,-1526422.875104231,-463027.65341810597,-8887.69961201308,3.386329442087238,1.0272148045234386,0.01971713039647007,6394.818203498233,2847.1565015305414,0 +103080,80638163.92489442,-1475170.6193933892,-434693.9468092046,-14268.963284610447,3.353252959389198,0.9881153707941512,0.032435192738066915,5936.3366730949965,3709.434849632412,0 +103200,76059455.01347734,-1415142.4608949947,-404580.6326601436,-20449.087569620664,3.3122105421901185,0.9469408725220275,0.04786209537054363,5362.311101832903,4499.513267805708,0 +103320,71033746.57552503,-1347437.3384970517,-373165.03345459246,-27126.09617980113,3.263402145021022,0.9037804845017084,0.0656975711820012,4683.9142445119705,5202.013778341793,0 +103440,65677141.82176141,-1273270.2224871716,-340932.3469641144,-33982.74579337309,3.207065557486716,0.8587276825228185,0.085594472923322,3914.3503242953193,5803.26300788523,0 +103560,60107948.27281943,-1193937.5724447204,-308363.83600496926,-40703.02540189191,3.143475245778731,0.811880040922219,0.10716553003450205,3068.598027523517,6291.5583240941805,0 +103680,54442448.335130125,-1110781.5839654244,-275925.5458727138,-46988.04239859445,3.0729410155036354,0.7633390212597222,0.1299908864255856,2163.118960624758,6657.395614066034,0 +103800,48791026.11882875,-1025154.5841422171,-244057.9011814491,-52570.377083028085,2.995806502341251,0.7132097525749461,0.15362627249787858,1215.5372436685068,6893.654271085457,0 +103920,43254820.614673324,-938384.8469271,-213166.4757420065,-57226.1245294398,2.9124474978861707,0.6616008037012241,0.17761165234633688,244.29647691746243,6995.7357891336715,0 +104040,37923029.67361326,-851744.9519183416,-183614.16145724928,-60784.0260264947,2.8232701188288836,0.6086239481296886,0.20148017783517547,-731.699242873558,6961.653267577915,0 +104160,32870939.66162194,-766423.6185450703,-155714.89025337604,-63131.304684123286,2.7287088283960768,0.5543939219327773,0.22476727526579937,-1693.4532691976956,6792.07008393197,0 +104280,28158706.674779903,-683501.728804091,-129728.99191814574,-64216.04363642801,2.629224319689472,0.4990281752714508,0.2470196877754023,-2622.2461539113483,6490.286981967526,0 +104400,23830870.619871393,-603933.0226526719,-105860.20489334437,-64046.16379456249,2.5253012712353393,0.4426466180242963,0.26780429746622886,-3500,6062.17782649107,0 +104520,19916546.127657436,-528529.7265487268,-84254.30010612277,-62685.256920318854,2.4174459856794397,0.38537136008943246,0.2867165555527903,-4309.630327279559,5516.075275247092,0 +104640,16430205.848384567,-457953.1704473073,-64999.232123466674,-60245.69780262099,2.3061839231314254,0.3273264469216606,0.3033883564438063,-5035.3786023705425,4862.608593212997,0 +104760,13372952.71283054,-392709.2711722708,-48126.69822394841,-56879.58914570827,2.192057141176007,0.2686375908776322,0.3174952024988256,-5663.118960624642,4114.4967660472985,0 +104880,10734167.763355667,-333148.61575051665,-33614.964024997906,-52768.18067409631,2.0756216540228873,0.20943189895087747,0.3287625200056871,-6180.633150012468,3286.3009395012746,0 +105000,8493417.966727775,-279470.76823119645,-21392.802551839504,-48110.44933539641,1.9574447236614223,0.14983759748636089,0.3369710034455032,-6577.848345501357,2394.1410032796866,0 +105120,6622512.385065073,-231732.34537140827,-11344.389689642556,-43111.53218502078,1.8381020962172296,0.08998375447077143,0.34196088402512964,-6847.033205136626,1455.3818357243804,0 +105240,5087603.456789882,-189858.35534965724,-3314.999931624713,-37971.67106993155,1.7181751969749381,0.03000000000000374,0.34363503939498874,-6982.948351818768,488.2953162089049,0 +105360,3851241.3274264936,-153656.26284143134,2882.6507523697505,-32876.26306362764,1.5982482977326467,-0.02998375447076397,0.34196088402513003,-6982.948351818775,-488.2953162087886,0 +105480,2874301.9069093415,-122832.22653404357,7461.565904717708,-27987.51770459371,1.4789056702884538,-0.08983759748635343,0.33697100344550396,-6847.0332051366495,-1455.3818357242665,0 +105600,2117722.7792256596,-97008.94550453791,10653.284902869374,-23438.10669338656,1.3607287399269887,-0.14943189895086997,0.32876252000568795,-6577.848345501363,-2394.1410032796707,0 +105720,1543994.8366206246,-75744.54465819818,12700.51033739792,-19327.05934941409,1.244293252773869,-0.20863759087762476,0.3174952024988268,-6180.6331500125225,-3286.3009395011713,0 +105840,1118371.4707689555,-58551.92483052378,13849.710135208987,-15718.01384984422,1.1301664708184505,-0.2673264469216531,0.3033883564438075,-5663.118960624652,-4114.496766047285,0 +105960,809771.4258864666,-44918.00096136226,14343.868714931916,-12639.786827323804,1.0189044082704357,-0.32537136008942497,0.2867165555527918,-5035.378602370623,-4862.608593212914,0 +106080,591366.1081932329,-34322.25504880237,14415.572651296452,-10089.079909779317,0.9110491227145354,-0.38264661802428884,0.2678042974662306,-4309.630327279651,-5516.075275247019,0 +106200,440857.19606580294,-26254.044174711267,14280.625388148012,-8035.009649293678,0.8071260742604023,-0.43902817527144344,0.24701968777540426,-3500.000000000101,-6062.177826491013,0 +106320,340465.4655726405,-20228.13333933678,14132.389421171492,-6425.035831293886,0.7076415655537969,-0.49439392193277,0.22476727526580145,-2622.2461539114565,-6490.2869819674825,0 +106440,276666.16125674936,-15797.97342967715,14137.050084879698,-5191.7809546532735,0.6130802751209905,-0.5486239481296812,0.2014801778351775,-1693.4532691976156,-6792.07008393199,0 +106560,239719.02480031736,-12566.320269266686,14429.980117228622,-4260.188144992346,0.5239028960637027,-0.6016008037012168,0.17761165234633897,-731.6992428736738,-6961.653267577903,0 +106680,223051.08493637154,-10192.892912864732,15113.356885561461,-3554.4611422387497,0.44054389160862323,-0.6532097525749387,0.15362627249788066,244.29647691754477,-6995.735789133669,0 +106800,222556.35558275646,-8398.896705692143,16255.144030403362,-3004.2703697901043,0.3634093784462377,-0.7033390212597149,0.1299908864255876,1215.537243668392,-6893.654271085478,0 +106920,235877.75764660092,-6968.3843664541755,17889.497129847434,-2549.791639128203,0.292875148171141,-0.7518800409222118,0.10716553003450392,2163.118960624647,-6657.39561406607,0 +107040,261732.38792584674,-5746.588553362677,20018.59097375181,-2145.2627479415755,0.2292848364631554,-0.7987276825228115,0.0855944729233237,3068.598027523412,-6291.558324094232,0 +107160,299331.8269834001,-4635.5215137107125,22615.797575181172,-1760.8880488752584,0.17294824892884847,-0.8437804845017015,0.06569757118200269,3914.350324295222,-5803.263007885295,0 +107280,347935.30696467776,-3587.2893319099717,25630.073541498365,-1383.0786946475152,0.1241398517597527,-0.8869408725220205,0.047862095370545296,4683.9142445120315,-5202.013778341738,0 +107400,406556.6874420188,-2595.6973794092055,28991.34790979371,-1013.1714081902899,0.08309743456067223,-0.9281153707941446,0.032435192738068275,5362.311101832828,-4499.513267805797,0 +107520,473828.22695352073,-1686.818153678863,32616.64222739199,-664.9056495877519,0.05002095186263241,-0.9672148045234318,0.019717130396471383,5936.336673094987,-3709.4348496324264,0 +107640,548007.2233990275,-909.2433361066975,36416.60842390229,-361.0438054124683,0.025071548964500864,-1.0041544930429716,0.00995545096265202,6394.8182034981855,-2847.156501530648,0 +107760,627097.7652111778,-324.74254137227115,40302.1409877811,-129.58059394532404,0.008370776849292907,-1.0388544332130507,0.0033401544230439997,6728.831871568228,-1929.4614907190057,0 +107880,709050.7112887957,0.00000000011356685657239008,44190.711040714436,-0.00000000008998760059217448,-0.000000000000002753006156375193,-1.0712394726901417,0.000000000000002181414771040835,6931.876481190982,-974.2117067205303,0 +108000,792001.5507350179,0.00000000013284035370736585,48012.08250289214,-0.00000000008998013190996044,-0.0000000000000030469213881705578,-1.1012394726901418,0.000000000000002063848678322689,7000,-0.00000000003429011037612589,0 +108120,874508.1037053878,-383.48945697013045,51713.10438704671,-153.02211837097627,0.008370776849292027,-1.1287894598933625,0.0033401544230436493,6931.876481190991,974.2117067204623,0 +108240,955757.3849533757,-1200.7724965663444,55261.326377951875,-476.8046730496652,0.025071548964499403,-1.1538297671622717,0.009955450962651444,6728.831871568248,1929.4614907189402,0 +108360,1035721.9119461507,-2493.901288774926,58647.25372230889,-983.0396079175277,0.05002095186263038,-1.1763061627672264,0.019717130396470592,6394.818203498214,2847.156501530585,0 +108480,1115258.3722041533,-4299.134975741867,61885.13728326726,-1678.0695130045885,0.08309743456066963,-1.196169967840324,0.03243519273806728,5936.336673095024,3709.4348496323682,0 +108600,1196153.7860350714,-6651.359836719939,65012.27976160869,-2564.4304736644954,0.12413985175974956,-1.2133781618029895,0.047862095370544123,5362.311101832872,4499.513267805744,0 +108720,1281134.209337254,-9590.012844350575,68086.92354415062,-3642.9426454456016,0.1729482489288448,-1.2278934755389697,0.06569757118200135,4683.914244512082,5202.013778341692,0 +108840,1373857.191217247,-13165.938726093053,71184.86355779888,-4914.985234890562,0.22928483646315123,-1.2396844721109397,0.08559447292332224,3914.3503242952797,5803.263007885257,0 +108960,1478910.8832399214,-17448.54500837401,74394.99469247086,-6384.5723538843695,0.29287514817113636,-1.2487256148459085,0.10716553003450237,3068.598027523474,6291.558324094201,0 +109080,1601839.8913707417,-22532.603363180402,77814.05370948238,-8059.872029662943,0.36340937844623256,-1.254997322641968,0.12999088642558596,2163.118960624712,6657.395614066049,0 +109200,1749211.3605532283,-28544.07747351878,81540.84739536216,-9953.87816668017,0.4405438916086176,-1.2584860123765964,0.15362627249787897,1215.5372436684595,6893.654271085466,0 +109320,1928725.6010361281,-35644.43202869915,85670.27098134044,-12084.04556861672,0.5239028960636967,-1.2591841283246805,0.17761165234633725,244.2964769176133,6995.735789133666,0 +109440,2149365.3023022027,-44032.98545748787,90287.41408790293,-14470.819076404869,0.6130802751209842,-1.2570901585225305,0.2014801778351758,-731.6992428736057,6961.65326757791,0 +109560,2421567.5497218235,-53946.999493552066,95462.0277420138,-17135.115678855862,0.7076415655537901,-1.2522086380424593,0.22476727526579982,-1693.4532691975492,6792.070083932006,0 +109680,2757394.757092501,-65659.33961960545,101243.58866280528,-20094.93942719743,0.8071260742603952,-1.2445501391708236,0.2470196877754027,-2622.246153911393,6490.286981967508,0 +109800,3170675.1635861592,-79473.68025529299,107657.15019292844,-23361.411121728284,0.9110491227145272,-1.2341312485108082,0.26780429746622947,-3499.9999999998695,6062.177826491145,0 +109920,3677081.158727605,-95717.3572685837,114700.11755435348,-26934.568895672186,1.0189044082704273,-1.2209745310595341,0.28671655555279085,-4309.630327279598,5516.075275247062,0 +110040,4294114.385292732,-114732.08059115475,122340.0330588001,-30799.3364346767,1.1301664708184416,-1.205108481337302,0.30338835644380696,-5035.378602370506,4862.608593213034,0 +110160,5040969.961295055,-136862.8071117989,130513.40853155777,-34922.06082581377,1.2442932527738597,-1.1865674616748054,0.3174952024988267,-5663.1189606245525,4114.49676604742,0 +110280,5938257.677717791,-162445.13755787868,139125.6006657329,-39247.99353401227,1.3607287399269794,-1.1653916277919734,0.32876252000568806,-6180.633150012491,3286.3009395012323,0 +110400,7007565.030118278,-191791.64264039014,148051.69232609647,-43700.03007723163,1.4789056702884442,-1.141626841829624,0.3369710034455043,-6577.848345501338,2394.141003279735,0 +110520,8270854.871530211,-225177.54747595752,157138.31971485028,-48178.94272543802,1.5982482977326369,-1.1153245730222796,0.3419608840251309,-6847.033205136615,1455.3818357244309,0 +110640,9749698.944289496,-262826.2146504891,166206.3712923332,-52565.24293009773,1.7181751969749284,-1.086541786227265,0.3436350393949905,-6982.948351818757,488.2953162090555,0 +110760,11464357.373573806,-304894.87089899374,175054.47781649051,-56722.70316317943,1.8381020962172199,-1.0553408185515123,0.34196088402513164,-6982.948351818773,-488.29531620883654,0 +110880,13432723.367085047,-351461.0250111812,183463.21141092037,-60503.45781845449,1.9574447236614125,-1.0217892443432675,0.33697100344550507,-6847.033205136619,-1455.3818357244106,0 +111000,15669161.925838647,-402510.0282067958,191199.91232381898,-63754.49540351225,2.0756216540228776,-0.9859597288411005,0.32876252000568956,-6577.848345501414,-2394.141003279529,0 +111120,18183281.35408218,-457924.2334179457,198024.0620853045,-66325.25424959906,2.1920571411759973,-0.9479298707971778,0.31749520249882823,-6180.6331500125,-3286.300939501214,0 +111240,20978686.619591717,-517474.21457832004,203693.11855651962,-68075.94567296744,2.306183923131416,-0.9077820344156466,0.3033883564438091,-5663.118960624682,-4114.496766047243,0 +111360,24051773.743344128,-580812.5066030648,207968.72005949222,-68886.15600998022,2.4174459856794304,-0.865603170970107,0.2867165555527931,-5035.378602370521,-4862.608593213019,0 +111480,27390633.638707068,-647470.3148434479,210623.1515418244,-68663.22635321338,2.5253012712353304,-0.8214846304865175,0.26780429746623174,-4309.630327279614,-5516.075275247049,0 +111600,30974141.090503618,-716857.6120989893,211445.9458662276,-67349.88041683227,2.6292243196894636,-0.7755219638993789,0.24701968777540534,-3500.000000000059,-6062.177826491036,0 +111720,34771308.52352403,-788266.9847014248,210250.46927646588,-64930.571004704536,2.7287088283960683,-0.7278147161096881,0.22476727526580234,-2622.2461539113197,-6490.286981967538,0 +111840,38740983.414506555,-860881.501179961,206880.31435871174,-61436.0477929402,2.823270118828875,-0.6784662103928484,0.2014801778351784,-1693.4532691976656,-6792.070083931978,0 +111960,42831961.31751569,-933786.7546532775,201215.2996405926,-56945.716121398866,2.9124474978861628,-0.6275833246234629,0.17761165234633985,-731.6992428736262,-6961.653267577907,0 +112080,46983572.52606717,-1005987.0740000785,193176.85601099543,-51587.4587490546,2.9958065023412432,-0.5752762598016572,0.15362627249788155,244.2964769173939,-6995.735789133674,0 +112200,51126779.02211934,-1076425.7137411558,182732.57005629872,-45534.727804585724,3.072941015503628,-0.5216583013822526,0.12999088642558856,1215.5372436685373,-6893.654271085452,0 +112320,55185790.01531536,-1144008.6272546772,169899.6564014822,-39000.876837959986,3.143475245778725,-0.4668455739236966,0.10716553003450484,2163.118960624598,-6657.395614066087,0 +112440,59080170.44804893,-1207631.2149496519,154747.14757344892,-32230.883802191624,3.20706555748671,-0.41095678958812815,0.08559447292332469,3068.598027523455,-6291.5583240942115,0 +112560,62727379.66535546,-1266207.23358732,137396.6219403043,-25490.802592837725,3.2634021450210167,-0.35411299103726834,0.06569757118200376,3914.3503242952625,-5803.263007885269,0 +112680,66045640.15336545,-1318698.8717218703,118021.33769329262,-19055.458691238797,3.3122105421901127,-0.2964372892809693,0.047862095370546254,4683.914244511993,-5202.013778341772,0 +112800,68957002.47922918,-1364146.8557008917,96843.70191530137,-13195.057671923933,3.3532529593891938,-0.23805459704617987,0.0324351927380691,5362.3111018327945,-4499.513267805837,0 +112920,71390446.07239164,-1401699.3654220337,74131.07540067579,-8161.488608044496,3.3863294420872347,-0.17909135824379516,0.01971713039647177,5936.336673094907,-3709.434849632554,0 +113040,73284839.66274813,-1430638.5202232713,50189.99174606783,-4175.164881141025,3.411278844985366,-0.11967527411930094,0.009955450962652558,6394.818203498206,-2847.1565015306037,0 +113160,74591582.58754845,-1450403.2492501896,25358.94817091962,-1413.2437672659535,3.4279796171005743,-0.05993502668031271,0.0033401544230443666,6728.831871568214,-1929.4614907190555,0 +113280,75276760.1030629,-1460607.4880924611,0.0000000005249843186854951,-0.0000000010090464046644847,3.4363503939498705,-0.0000000000000012351231148954867,0.0000000000000023739690768742605,6931.876481190975,-974.2117067205812,0 +113400,75322672.08513156,-1461052.8391035171,-25510.544704798245,-0.0000000010967517928015357,3.4363503939498705,0.05999999999999876,0.000000000000002421054936102631,7000,0.00000000001373337560827483,0 +113520,74728633.28559878,-1451735.0855437494,-50791.98410307337,-1414.5414817752003,3.427979617100576,0.11993502668031025,0.003340154423043832,6931.876481190999,974.2117067204115,0 +113640,73510991.39549571,-1432844.2435189455,-75469.25769582749,-4181.602047701252,3.4112788449853673,0.17967527411929854,0.009955450962652114,6728.831871568206,1929.461490719082,0 +113760,71702362.21735196,-1404758.151023267,-99182.77003940128,-8179.298592449177,3.3863294420872374,0.2390913582437928,0.019717130396470793,6394.818203498276,2847.1565015304473,0 +113880,69350134.3398254,-1368029.908742852,-121597.62718042663,-13232.617490807752,3.3532529593891978,0.29805459704617765,0.03243519273806762,5936.336673094998,3709.4348496324087,0 +114000,66514343.90654362,-1323369.7811354534,-142411.94256702287,-19122.95425317924,3.3122105421901185,0.35643728928096713,0.047862095370544325,5362.3111018329055,4499.513267805705,0 +114120,63265059.03539766,-1271622.419073694,-161363.9202376813,-25599.819048102512,3.263402145021022,0.41411299103726634,0.0656975711820019,4683.914244511972,5202.01377834179,0 +114240,59679439.92686009,-1213740.461024882,-178237.4886547228,-32393.93556661634,3.207065557486715,0.4709567895881261,0.08559447292332287,3914.3503242952393,5803.2630078852835,0 +114360,55838652.89338796,-1150755.6972691321,-192866.33371389107,-39230.894025230344,3.143475245778731,0.5268455739236948,0.10716553003450277,3068.5980275236093,6291.558324094136,0 +114480,51824814.22309985,-1083749.03571928,-205136.25873740215,-45844.517387503816,3.072941015503634,0.5816583013822508,0.12999088642558654,2163.118960624572,6657.395614066094,0 +114600,47718124.24679714,-1013820.4891969351,-214985.87708651356,-51989.1597189525,2.9958065023412495,0.6352762598016557,0.15362627249787952,1215.5372436685102,6893.654271085457,0 +114720,43594325.741531014,-942060.3188977938,-222405.714277669,-57450.268192232616,2.9124474978861703,0.6875833246234615,0.1776116523463378,244.29647691756531,6995.735789133668,0 +114840,39522587.251747265,-869522.3283822172,-227435.85688454597,-62052.69279256003,2.8232701188288836,0.7384662103928473,0.2014801778351764,-731.6992428734555,6961.653267577925,0 +114960,35563874.78280037,-797200.1213519437,-230162.33199738312,-65666.4050239346,2.7287088283960768,0.7878147161096871,0.22476727526580031,-1693.4532691976922,6792.070083931971,0 +115080,31769838.258419044,-726006.9311891176,-230712.43195534332,-68209.47308379658,2.629224319689472,0.8355219638993778,0.24701968777540326,-2622.246153911345,6490.286981967528,0 +115200,28182205.26292923,-656759.4173930117,-229249.2143228589,-69648.32132413986,2.5253012712353398,0.8814846304865166,0.26780429746622997,-3499.999999999911,6062.177826491123,0 +115320,24832646.247377925,-590165.6188977001,-225965.40790784874,-69995.46399729367,2.4174459856794397,0.9256031709701061,0.28671655555279124,-4309.630327279636,5516.075275247032,0 +115440,21743053.967227884,-526817.0692953841,-221076.94445952456,-69305.03816150407,2.3061839231314254,0.967782034415646,0.30338835644380724,-5035.378602370541,4862.608593212999,0 +115560,18926165.902831245,-467184.9230555439,-214816.31581973186,-67666.562592589,2.192057141176007,1.0079298707971773,0.31749520249882685,-5663.118960624581,4114.496766047382,0 +115680,16386451.441541066,-411619.8196220874,-207425.93144713636,-65197.41636003752,2.075621654022888,1.0459597288411002,0.3287625200056887,-6180.63315001242,3286.3009395013655,0 +115800,14121184.711388815,-360355.12441631785,-199151.62508822966,-62034.56291943676,1.9574447236614227,1.0817892443432673,0.33697100344550474,-6577.848345501356,2394.1410032796894,0 +115920,12121627.828693826,-313513.1293485374,-190236.43519794912,-58326.04570014951,1.8381020962172299,1.1153408185515121,0.34196088402513053,-6847.033205136666,1455.3818357241892,0 +116040,10374256.52092442,-271113.76487353386,-180914.76398692,-54222.7529747057,1.7181751969749384,1.146541786227265,0.34363503939498996,-6982.948351818761,488.2953162090076,0 +116160,8861969.276707867,-233085.36384843668,-171407.00611509904,-49870.89752449968,1.5982482977326469,1.1753245730222799,0.3419608840251309,-6982.948351818769,-488.2953162088844,0 +116280,7565231.273757209,-199277.01714531865,-161914.73031194293,-45405.58453466932,1.478905670288454,1.2016268418296245,0.33697100344550485,-6847.03320513665,-1455.3818357242628,0 +116400,6463114.5883699255,-169472.06572938917,-152616.4946736902,-40945.75337826258,1.3607287399269892,1.225391627791974,0.3287625200056885,-6577.848345501329,-2394.1410032797608,0 +116520,5534206.174683281,-143402.2791871397,-143664.37716043915,-36590.679542637496,1.2442932527738693,1.2465674616748064,0.3174952024988277,-6180.633150012571,-3286.3009395010804,0 +116640,4757364.666353968,-120762.27438677837,-135181.3042565815,-32418.116173707043,1.1301664708184507,1.2651084813373032,0.3033883564438084,-5663.1189606246535,-4114.496766047281,0 +116760,4112316.210764986,-101223.73063449361,-127259.2598767142,-28484.045364953134,1.018904408270436,1.2809745310595355,0.2867165555527927,-5035.378602370626,-4862.608593212911,0 +116880,3580088.348221962,-84448.96232788617,-119958.45045895907,-24823.90297527152,0.9110491227145361,1.2941312485108099,0.26780429746623124,-4309.630327279576,-5516.075275247078,0 +117000,3143289.3686083653,-70103.42146880322,-113307.48832179671,-21455.04380970408,0.8071260742604034,1.3045501391708254,0.24701968777540476,-3500.0000000000177,-6062.17782649106,0 +117120,2786248.4238775745,-57866.72612647413,-107304.63213953735,-18380.13337984314,0.707641565553798,1.3122086380424614,0.22476727526580195,-2622.2461539114597,-6490.286981967482,0 +117240,2495038.5578133073,-47441.85247977638,-101920.09030279098,-15591.095101810954,0.6130802751209916,1.3170901585225328,0.201480177835178,-1693.453269197619,-6792.070083931989,0 +117360,2257410.179253538,-38562.191557738974,-97099.3507357894,-13073.213780885635,0.5239028960637042,1.319184128324683,0.17761165234633944,-731.6992428735783,-6961.653267577913,0 +117480,2062665.7205376138,-30996.25912771826,-92767.45149426325,-10809.001876707876,0.44054389160862417,1.3184860123765991,0.15362627249788113,244.29647691744188,-6995.735789133672,0 +117600,1901506.7199506056,-24549.95730155095,-88834.05337677612,-8781.47593489016,0.3634093784462386,1.314997322641971,0.12999088642558806,1215.5372436683886,-6893.654271085478,0 +117720,1765881.9938866284,-19066.41504930119,-85199.12295092689,-6976.564885670058,0.2928751481711419,1.3087256148459117,0.1071655300345044,2163.118960624644,-6657.395614066071,0 +117840,1648859.929216699,-14423.574519179785,-81758.98643836101,-5384.474078982021,0.22928483646315695,1.2996844721109426,0.08559447292332431,3068.5980275234983,-6291.5583240941905,0 +117960,1544539.688017981,-10529.830891743557,-78412.47649511823,-3999.9498048076907,0.17294824892884922,1.2878934755389728,0.0656975711820031,3914.3503242951374,-5803.263007885353,0 +118080,1448006.1991349664,-7318.1638492903685,-75066.86932587146,-2821.5166292438917,0.12413985175975342,1.273378161802993,0.04786209537054571,4683.914244512029,-5202.01377834174,0 +118200,1355323.5222889795,-4739.30659556568,-71643.30216945965,-1849.8804889064804,0.08309743456067292,1.2561699678403275,0.032435192738068684,5362.311101832825,-4499.5132678058,0 +118320,1263552.0331602008,-2754.572605172346,-68081.3731197388,-1085.7903582459633,0.05002095186263226,1.2363061627672303,0.019717130396471494,5936.336673094933,-3709.4348496325138,0 +118440,1170768.3914096532,-1328.9920231699127,-64342.65710224084,-527.7182887725676,0.025071548964499847,1.2138297671622758,0.009955450962651807,6394.818203498144,-2847.156501530742,0 +118560,1076064.6297985087,-425.393318661346,-60412.92255645895,-169.74283276708672,0.008370776849291859,1.1887894598933668,0.003340154423043774,6728.831871568227,-1929.4614907190094,0 +118680,979504.6242139455,0.00000000010311686549156929,-56302.90028772105,-0.00000000012702467056169982,-0.0000000000000021267709815475655,1.1612394726901458,0.000000000000002619866129593973,6931.87648119101,-974.2117067203367,0 +118800,882022.6568713152,0.00000000015195624632579693,-52047.534918561396,-0.00000000009889620168581785,-0.000000000000003302729019434587,1.131239472690146,0.0000000000000021494829144391643,7000,-0.0000000001371951044201525,0 +118920,785258.9998739888,-363.3941945737768,-47703.73513720756,-145.0035938321211,0.008370776849291743,1.0988544332130552,0.0033401544230437234,6931.876481190991,974.211706720459,0 +119040,691339.977050126,-1021.2516697463167,-43346.72558233364,-405.5202545754841,0.02507154896449909,1.0641544930429763,0.009955450962651506,6728.831871568249,1929.4614907189366,0 +119160,602622.8850107841,-1902.3068114087098,-39065.184620859545,-749.8464155109707,0.050020951862630864,1.0272148045234366,0.01971713039647096,6394.818203498175,2847.156501530673,0 +119280,521437.3654393843,-2939.6425140980564,-34955.42272968159,-1147.4225652077685,0.08309743456066927,0.9881153707941496,0.03243519273806735,5936.336673095078,3709.4348496322805,0 +119400,449862.3748081323,-4079.0301971352055,-31114.910797495475,-1572.6692882834377,0.12413985175974918,0.9469408725220255,0.047862095370544186,5362.311101832874,4499.5132678057425,0 +119520,389580.3321558836,-5288.35475019945,-27635.502804764074,-2008.8787529722122,0.17294824892884594,0.9037804845017064,0.06569757118200187,4683.914244511937,5202.013778341822,0 +119640,341846.60583252297,-6567.452019172714,-24596.71097094241,-2451.6998276100076,0.2292848364631531,0.8587276825228165,0.08559447292332294,3914.3503242951997,5803.263007885311,0 +119760,307603.34534797264,-7957.635132310642,-22059.38324643797,-2911.7669836463674,0.29287514817113747,0.811880040922217,0.10716553003450291,3068.598027523566,6291.558324094157,0 +119880,287752.7293290176,-9550.186546247605,-20060.104343561805,-3416.084692101874,0.3634093784462336,0.7633390212597202,0.1299908864255865,2163.1189606247153,6657.3956140660475,0 +120000,283587.61960880936,-11493.143288220972,-18606.595249725386,-4007.8838823669976,0.4405438916086187,0.7132097525749441,0.15362627249787952,1215.537243668463,6893.654271085466,0 +120120,297359.43683054246,-13995.797426996403,-17674.326474833015,-4744.8042864249,0.5239028960636983,0.6616008037012223,0.17761165234633783,244.29647691751734,6995.73578913367,0 +120240,332945.95577604306,-17330.462884300272,-17204.492089516858,-5695.411980438695,0.6130802751209852,0.6086239481296868,0.2014801778351764,-731.6992428735034,6961.653267577921,0 +120360,396567.59223901434,-21831.211622352912,-17103.420179097127,-6934.21951304853,0.7076415655537922,0.5543939219327755,0.22476727526580026,-1693.4532691977388,6792.070083931959,0 +120480,497491.073270874,-27889.444412352226,-17243.42577729748,-8535.521364839567,0.8071260742603972,0.49902817527144905,0.24701968777540315,-2622.24615391139,6490.28698196751,0 +120600,648654.9652241422,-35946.32163476002,-17465.04914535308,-10566.476792391879,0.9110491227145296,0.4426466180242945,0.26780429746622975,-3499.9999999999527,6062.177826491098,0 +120720,867152.5126113142,-46482.227365352155,-17580.568927146756,-13079.955309289704,1.0189044082704293,0.3853713600894307,0.2867165555527913,-4309.630327279517,5516.075275247124,0 +120840,1174513.1379839645,-60003.56743730018,-17378.63849177213,-16107.701100338287,1.1301664708184438,0.3273264469216588,0.3033883564438072,-5035.378602370573,4862.608593212965,0 +120960,1596733.843854017,-77027.304481086,-16629.86555738987,-19654.36972324865,1.2442932527738622,0.26863759087763056,0.3174952024988266,-5663.11896062461,4114.496766047343,0 +121080,2164024.4853210566,-98063.708676949,-15093.139524252816,-23692.94558110629,1.3607287399269816,0.2094318989508758,0.3287625200056883,-6180.6331500124425,3286.3009395013232,0 +121200,2910245.2810100224,-123597.85366456685,-12522.506214988933,-28161.967061047515,1.4789056702884467,0.14983759748635922,0.33697100344550424,-6577.848345501372,2394.1410032796443,0 +121320,3872030.01395374,-154070.41663403937,-8674.393435159178,-32964.87532571723,1.5982482977326395,0.08998375447076977,0.34196088402513053,-6847.033205136635,1455.3818357243367,0 +121440,5087603.456789801,-189858.355349655,-3314.9999316241706,-37971.6710699314,1.718175196974931,0.030000000000002074,0.3436350393949898,-6982.9483518187635,488.29531620895966,0 +121560,6595316.28597135,-231256.03830733275,3772.3281458409206,-43022.919922931,1.8381020962172225,-0.029983754470765636,0.34196088402513125,-6982.94835181878,-488.2953162087338,0 +121680,8431935.061351743,-278457.40218828304,12779.898054078594,-47935.99997894229,1.9574447236614154,-0.0898375974863551,0.33697100344550507,-6847.03320513664,-1455.38183572431,0 +121800,10630738.837520096,-331539.70633581077,23868.804702125257,-52513.34178637639,2.0756216540228807,-0.1494318989508717,0.32876252000568923,-6577.848345501381,-2394.141003279619,0 +121920,13219487.736175619,-390449.4479160462,37162.549571586555,-56552.278771873214,2.1920571411760004,-0.20863759087762648,0.31749520249882823,-6180.633150012548,-3286.300939501123,0 +122040,16218342.260937452,-454990.9919290733,52741.29441011905,-59856.010552127256,2.3061839231314187,-0.2673264469216548,0.30338835644380885,-5663.118960624626,-4114.49676604732,0 +122160,19637824.86585313,-524818.4531355085,70636.90146886077,-62245.088438353116,2.4174459856794335,-0.3253713600894267,0.286716555552793,-5035.3786023705925,-4862.608593212945,0 +122280,23476926.466940753,-599431.3362870949,90828.91462523729,-63568.76691194928,2.525301271235333,-0.38264661802429056,0.2678042974662315,-4309.6303272795385,-5516.075275247108,0 +122400,27721468.958342873,-678174.3899726997,113241.63659824405,-63715.53192088283,2.6292243196894667,-0.43902817527144516,0.24701968777540528,-3500.0000000001482,-6062.177826490984,0 +122520,32342838.77315546,-760242.0513839382,137742.45368013505,-62622.121002369255,2.728708828396072,-0.4943939219327717,0.22476727526580242,-2622.246153911415,-6490.2869819675,0 +122640,37297204.377815485,-844687.74936227,164141.54809392878,-60280.395000711855,2.823270118828879,-0.5486239481296831,0.20148017783517858,-1693.4532691977654,-6792.0700839319525,0 +122760,42525320.6878822,-930438.1888677565,192193.11682817014,-56741.50838800956,2.9124474978861663,-0.6016008037012187,0.17761165234634,-731.6992428735306,-6961.653267577918,0 +122880,47953004.54641781,-1016312.5627151509,221598.18303056355,-52116.954342905316,2.995806502341246,-0.6532097525749408,0.1536262724978817,244.29647691748988,-6995.735789133671,0 +123000,53492337.15150011,-1101046.4313204826,252009.04132536115,-46576.22807629169,3.072941015503631,-0.703339021259717,0.12999088642558865,1215.537243668436,-6893.65427108547,0 +123120,59043612.18425454,-1183319.7876522671,283035.3226286166,-40341.05005737238,3.143475245778727,-0.7518800409222139,0.10716553003450502,2163.1189606246894,-6657.395614066056,0 +123240,64498004.043923244,-1261788.595576258,314251.59938674414,-33676.308713707265,3.207065557486712,-0.7987276825228136,0.085594472923325,3068.5980275235415,-6291.55832409417,0 +123360,69740881.86303024,-1335118.8709930775,345206.38210423524,-26878.105475703356,3.2634021450210193,-0.8437804845017036,0.06569757118200388,3914.350324295177,-5803.263007885326,0 +123480,74655645.6620871,-1402022.183605011,375432.286982463,-20259.496975987055,3.3122105421901162,-0.8869408725220228,0.047862095370546136,4683.914244511917,-5202.013778341841,0 +123600,79127915.5722893,-1461291.3095583625,404457.0875011075,-14134.712127607454,3.3532529593891964,-0.928115370794147,0.03243519273806923,5362.311101832856,-4499.5132678057635,0 +123720,83049868.14957134,-1511834.6763808106,431815.30503603746,-8802.758846092354,3.3863294420872365,-0.9672148045234344,0.019717130396472184,5936.336673094958,-3709.4348496324724,0 +123840,86324489.68899286,-1552708.222805435,457059.94999700366,-4531.412198734737,3.4112788449853686,-1.0041544930429742,0.009955450962652648,6394.818203498164,-2847.156501530698,0 +123960,88869508.44300893,-1583143.3536093365,479773.9995606823,-1542.5830563496763,3.427979617100576,-1.0388544332130534,0.0033401544230447743,6728.831871568241,-1929.461490718963,0 +124080,90620777.63079071,-1602569.804102743,499581.1937335322,-0.0000000007244383044835434,3.4363503939498714,-1.0712394726901444,0.0000000000000031068897454744615,6931.876481190988,-974.2117067204863,0 +124200,91534909.20500124,-1610632.434892934,516155.7495481096,-0.0000000006565134762575099,3.4363503939498723,-1.1012394726901444,0.0000000000000028011584822661696,7000,-0.00000000008917161843575178,0 +124320,91591002.73245099,-1607201.2436789023,529230.633327603,-1566.0245807731997,3.4279796171005787,-1.1287894598933654,0.003340154423043863,6931.876481191012,974.2117067203096,0 +124440,90791370.89829654,-1592374.1907590209,538604.0910902361,-4647.17306637428,3.411278844985371,-1.1538297671622746,0.009955450962651805,6728.831871568235,1929.461490718983,0 +124560,89161228.11651318,-1566472.768636512,544144.2136883216,-9120.892804420277,3.3863294420872405,-1.1763061627672298,0.019717130396470783,6394.818203498236,2847.156501530535,0 +124680,86747375.74120273,-1530030.581609749,545791.4012941688,-14799.610232408595,3.3532529593892018,-1.1961699678403273,0.03243519273806732,5936.336673095052,3709.4348496323214,0 +124800,83615980.47690709,-1483775.5165128654,543558.685603424,-21440.848754997955,3.3122105421901216,-1.2133781618029928,0.047862095370544276,5362.311101832843,4499.513267805779,0 +124920,79849596.35744372,-1428606.3606672413,537529.9615014133,-28760.16007226212,3.263402145021026,-1.227893475538973,0.0656975711820016,4683.91424451205,5202.013778341721,0 +125040,75543620.80883302,-1365564.9410378255,527856.2669577422,-36446.03120065339,3.2070655574867186,-1.239684472110943,0.08559447292332276,3914.35032429516,5803.263007885337,0 +125160,70802399.11358283,-1295805.00790869,514750.325263127,-44175.83077212951,3.143475245778735,-1.2487256148459123,0.10716553003450249,3068.598027523702,6291.5583240940905,0 +125280,65735198.12815664,-1220559.1612191743,498479.62317790894,-51631.82973615521,3.0729410155036385,-1.2549973226419717,0.12999088642558615,2163.11896062467,6657.395614066063,0 +125400,60452260.228194766,-1141105.1181895507,479358.3393221814,-58516.37136734287,2.9958065023412543,-1.2584860123766006,0.15362627249787908,1215.5372436686116,6893.654271085439,0 +125520,55061124.55950744,-1058732.552870527,457738.45800922543,-64565.36581163564,2.9124474978861743,-1.2591841283246847,0.17761165234633738,244.29647691746928,6995.7357891336715,0 +125640,49663368.27352062,-974711.61246432,434000.40515244484,-69559.43312246217,2.823270118828887,-1.2570901585225347,0.20148017783517597,-731.699242873551,6961.653267577916,0 +125760,44351879.65024961,-890264.0459038825,408543.5268206114,-73332.20084992939,2.7287088283960808,-1.2522086380424635,0.22476727526579995,-1693.4532691975926,6792.070083931995,0 +125880,39208732.06238325,-806537.6834063936,381776.70068428916,-75775.46169878259,2.6292243196894756,-1.2445501391708278,0.24701968777540279,-2622.2461539114342,6490.286981967492,0 +126000,34303686.40933897,-724584.797971262,354109.3300661043,-76841.09812389854,2.525301271235343,-1.2341312485108125,0.2678042974662293,-3499.999999999994,6062.1778264910745,0 +126120,29693312.97892672,-645344.6761876405,325942.9240808926,-76539.87050670286,2.4174459856794432,-1.2209745310595383,0.28671655555279074,-4309.630327279554,5516.075275247095,0 +126240,25420693.717487436,-569630.538721124,297663.41988433135,-74937.33313695941,2.306183923131429,-1.2051084813373067,0.303388356443807,-5035.378602370469,4862.608593213074,0 +126360,21515643.600018736,-498120.78935346904,269634.35830578103,-72147.28024827629,2.1920571411760106,-1.18656746167481,0.31749520249882635,-5663.118960624638,4114.496766047304,0 +126480,17995375.2178936,-431354.44030697295,242190.9852262005,-68323.22862700379,2.075621654022891,-1.1653916277919776,0.3287625200056879,-6180.633150012465,3286.300939501281,0 +126600,14865523.100109572,-369730.4616646361,215635.31995369747,-63648.512351578545,1.957444723661426,-1.1416268418296283,0.3369710034455043,-6577.84834550132,2394.141003279786,0 +126720,12121442.401259359,-313510.73139687657,190232.20927321154,-58325.59958473974,1.8381020962172332,-1.1153245730222834,0.3419608840251304,-6847.033205136645,1455.3818357242897,0 +126840,9749698.94428974,-262826.2146504943,166206.371292336,-52565.24293009974,1.7181751969749417,-1.0865417862272688,0.34363503939498957,-6982.948351818767,488.2953162089118,0 +126960,7729672.749738801,-217685.96993923403,143740.42508211135,-46576.04630387767,1.5982482977326502,-1.0553408185515158,0.3419608840251309,-6982.948351818776,-488.29531620878174,0 +127080,6035203.903711294,-177988.558888828,122973.8980264308,-40554.97554410648,1.4789056702884573,-1.0217892443432712,0.33697100344550523,-6847.033205136671,-1455.3818357241623,0 +127200,4636217.066399437,-143535.41937541548,104003.19991335791,-34679.26031052068,1.3607287399269923,-0.9859597288411039,0.32876252000568923,-6577.848345501366,-2394.141003279664,0 +127320,3500268.657363346,-114045.74527714743,86882.54826145961,-29100.034827141382,1.244293252773873,-0.9479298707971813,0.3174952024988275,-6180.633150012432,-3286.3009395013414,0 +127440,2593968.690337548,-89172.39812346967,71625.82068429548,-23937.948970685873,1.1301664708184542,-0.9077820344156498,0.30338835644380857,-5663.118960624714,-4114.496766047198,0 +127560,1884237.5388427258,-68518.35780614728,58209.29549941,-19280.85439895175,1.0189044082704397,-0.8656031709701101,0.28671655555279263,-5035.378602370559,-4862.60859321298,0 +127680,1339366.8666183392,-51653.20473325796,46575.22052961831,-15183.539351043222,0.9110491227145394,-0.8214846304865204,0.2678042974662314,-4309.630327279657,-5516.075275247015,0 +127800,929863.7681582451,-38129.11964116151,36636.12252021957,-11669.358145245713,0.8071260742604071,-0.7755219638993818,0.24701968777540476,-3499.9999999999345,-6062.177826491108,0 +127920,629067.852118361,-27495.895835999927,28279.7373644927,-8733.48583362739,0.7076415655538012,-0.727814716109691,0.2247672752658021,-2622.246153911555,-6490.286981967442,0 +128040,413542.2965066565,-19314.487755891347,21374.40698256447,-6347.433746884706,0.6130802751209943,-0.6784662103928513,0.20148017783517821,-1693.4532691977188,-6792.070083931964,0 +128160,263251.23741053184,-13168.673895888405,15774.755601768846,-4464.395878381316,0.5239028960637075,-0.6275833246234656,0.17761165234633963,-731.6992428734828,-6961.6532675779235,0 +128280,161546.40331991148,-8674.493450902826,11327.430122541808,-3024.965548389369,0.44054389160862806,-0.5752762598016599,0.15362627249788133,244.29647691753792,-6995.735789133669,0 +128400,94994.73334807382,-5487.223612306948,7876.66999992976,-1962.7700980884529,0.36340937844624316,-0.521658301382255,0.12999088642558831,1215.5372436684831,-6893.654271085462,0 +128520,53084.92623134563,-3305.7940719438857,5269.464959479455,-1209.618419715729,0.2928751481711458,-0.466845573923699,0.10716553003450453,2163.1189606245457,-6657.395614066103,0 +128640,27853.79378103304,-1874.6795020320517,3360.0663765898325,-699.8378364300419,0.22928483646316153,-0.4109567895881304,0.08559447292332459,3068.5980275235847,-6291.558324094149,0 +128760,13472.657189546255,-983.459496674816,2013.6415724844335,-373.58516601107556,0.17294824892885452,-0.3541129910372708,0.06569757118200356,3914.3503242952165,-5803.263007885299,0 +128880,5830.022419001412,-464.3768679986574,1108.8995032853259,-179.04040990028054,0.12413985175975792,-0.2964372892809716,0.04786209537054593,4683.914244511952,-5202.0137783418095,0 +129000,2140.076653337625,-188.34696620821347,539.5697398194291,-73.51695251353544,0.08309743456067818,-0.2380545970461822,0.03243519273806915,5362.311101832887,-4499.513267805726,0 +129120,598.2253939864366,-59.96135133266121,214.68123760996804,-23.63541154157489,0.05002095186263831,-0.1790913582437974,0.01971713039647224,5936.336673094983,-3709.434849632432,0 +129240,96.21939592851034,-12.079350269065758,57.6589646168264,-4.796487821100913,0.025071548964506706,-0.11967527411930319,0.009955450962652854,6394.818203498183,-2847.1565015306537,0 +129360,1.6746420831477011,-0.6047352431745668,4.329923445185936,-0.2413048554065615,0.008370776849297847,-0.059935026680314925,0.0033401544230444837,6728.8318715682,-1929.461490719108,0 +129480,1,0.00000000000017871121249513067,-0.00000000000020691781621451355,0.00000000000017876325419940997,0.0000000000000029785202082521778,-0.0000000000000034486302702418925,0.000000000000002979387569990166,6931.876481190995,-974.2117067204387,0 +129600,1.5183999999991347,-0.00000000000018275720633476357,-4.175999999998866,-0.00000000000019754625480745377,0.00000000000000262582193009774,0.05999999999999655,0.000000000000002838308258728391,7000,-0.000000000041148132451351065,0 +129720,87.9593686920367,-3.856943732848333,-55.26161523974591,-1.539019364706598,0.00837077684929679,0.11993502668030803,0.003340154423044063,6931.876481191007,974.211706720357,0 +129840,530.0288423387299,-28.29054323292634,-202.744198914738,-11.233654380945076,0.02507154896450326,0.17967527411929632,0.009955450962651508,6728.831871568276,1929.461490718838,0 +129960,1840.5005875601692,-105.14401000006649,-502.56988773725317,-41.44539594672858,0.05002095186263418,0.23909135824379057,0.019717130396470633,6394.8182034982165,2847.156501530579,0 +130080,4886.049338741988,-284.57345134287993,-1020.7105167381526,-111.07677139784506,0.08309743456067502,0.2980545970461753,0.03243519273806788,5936.336673094922,3709.4348496325306,0 +130200,11054.682953673915,-639.4400153434617,-1835.9959553350577,-246.5359718435984,0.12413985175975409,0.3564372892809648,0.047862095370544436,5362.31110183294,4499.5132678056625,0 +130320,22483.1948898301,-1270.4443075786505,-3041.993749090216,-482.60162127605435,0.17294824892885005,0.4141129910372639,0.06569757118200188,4683.914244512014,5202.013778341754,0 +130440,42345.050638854525,-2311.4518293082383,-4747.7798776873315,-862.8896008527892,0.22928483646315642,0.47095678958812376,0.08559447292332276,3914.350324295285,5803.2630078852535,0 +130560,75193.58604475156,-3934.4133470139946,-7077.515012128533,-1439.6356069829303,0.2928751481711415,0.5268455739236922,0.10716553003450287,3068.5980275234797,6291.5583240942,0 +130680,127347.91450370988,-6353.2877101212225,-10168.81444684162,-2272.5596810034567,0.363409378446237,0.5816583013822485,0.12999088642558634,2163.118960624813,6657.395614066017,0 +130800,207300.5272350042,-9826.424729745026,-14169.971411340566,-3426.6665182882716,0.4405438916086214,0.6352762598016533,0.1536262724978793,1215.537243668564,6893.654271085447,0 +130920,326117.4802844425,-14656.956267197169,-19236.157682615114,-4968.947949217629,0.5239028960637016,0.6875833246234591,0.1776116523463376,244.2964769174213,6995.735789133673,0 +131040,497795.5587471869,-21190.86532355519,-25524.778149717393,-6964.078746504441,0.613080275120989,0.7384662103928447,0.20148017783517616,-731.6992428735989,6961.653267577911,0 +131160,739536.9460436238,-29812.54418590395,-33190.19427009593,-9469.319852859278,0.7076415655537954,0.7878147161096845,0.2247672752658001,-1693.453269197639,6792.070083931984,0 +131280,1071901.3731523189,-40937.801252715966,-42378.05367858342,-12528.950812205912,0.8071260742604,0.8355219638993754,0.24701968777540312,-2622.246153911294,6490.286981967549,0 +131400,1518798.6744028963,-55004.42021989049,-53219.4695366032,-16168.63432197259,0.9110491227145328,0.8814846304865142,0.2678042974662296,-3500.000000000036,6062.17782649105,0 +131520,2107290.8572947765,-72460.50476806339,-65825.28492271737,-20390.162386265434,1.0189044082704326,0.925603170970104,0.28671655555279096,-4309.630327279592,5516.075275247066,0 +131640,2867181.5487911496,-93750.94931231221,-80280.63723051519,-25167.04145922067,1.130166470818447,0.9677820344156439,0.3033883564438071,-5035.378602370502,4862.608593213039,0 +131760,3830381.1281679533,-119302.45752959505,-96640.008563515,-30441.343170129534,1.2442932527738655,1.0079298707971753,0.3174952024988263,-5663.118960624665,4114.496766047266,0 +131880,5030047.06896116,-149507.58437450865,-114922.91433518162,-36122.18126705016,1.360728739926985,1.0459597288410982,0.3287625200056877,-6180.633150012487,3286.300939501238,0 +132000,6499510.184293063,-184708.30626322626,-135110.34751624672,-42086.08064508823,1.4789056702884498,1.0817892443432653,0.3369710034455039,-6577.848345501337,2394.141003279741,0 +132120,8271008.041064894,-225179.63251909695,-157142.06360255508,-48179.388840846776,1.5982482977326424,1.1153408185515103,0.34196088402513053,-6847.033205136613,1455.3818357244375,0 +132240,10374256.520924326,-271113.764873532,-180914.76398691858,-54222.75297470613,1.718175196974934,1.1465417862272633,0.3436350393949895,-6982.948351818771,488.2953162088639,0 +132360,12834899.382796582,-322605.2969104849,-206281.21453446834,-60017.55438380272,1.8381020962172254,1.1753245730222786,0.3419608840251307,-6982.9483518187735,-488.2953162088297,0 +132480,15672883.938744975,-379637.92711267376,-233050.3221270293,-65354.06680901696,1.9574447236614183,1.2016268418296232,0.33697100344550485,-6847.033205136662,-1455.3818357242094,0 +132600,18900818.86142572,-442073.14113695745,-260988.18393564204,-70020.98847125024,2.0756216540228833,1.2253916277919727,0.3287625200056887,-6577.848345501349,-2394.141003279709,0 +132720,22522377.860772017,-509641.30224727816,-289820.1203670273,-73815.89896509472,2.192057141176003,1.246567461674805,0.3174952024988274,-6180.6331500125025,-3286.300939501208,0 +132840,26530820.407962374,-581935.5719564066,-319233.7004388907,-76556.11287599003,2.306183923131422,1.265108481337302,0.3033883564438083,-5663.118960624686,-4114.4967660472375,0 +132960,30907707.391624343,-658409.0618954785,-348882.7648282973,-78089.34697598076,2.417445985679437,1.2809745310595342,0.28671655555279274,-5035.378602370664,-4862.608593212871,0 +133080,35621894.70631112,-738375.5868863873,-378392.4441061793,-78303.58997743735,2.525301271235337,1.2941312485108085,0.26780429746623147,-4309.630327279619,-5516.075275247044,0 +133200,40628890.076051444,-821014.341327897,-407365.1552740278,-77135.5660812926,2.6292243196894702,1.3045501391708245,0.24701968777540506,-3500.0000000000655,-6062.177826491033,0 +133320,45870656.45155551,-905378.7497155177,-435387.53703344427,-74577.21855091647,2.728708828396076,1.3122086380424605,0.22476727526580234,-2622.2461539115106,-6490.286981967461,0 +133440,51275937.60530933,-990409.6422226318,-462038.2527260097,-70679.70914786914,2.8232701188288827,1.3170901585225319,0.2014801778351784,-1693.4532691976724,-6792.070083931976,0 +133560,56761166.833626084,-1074952.775174371,-486896.5503199002,-65554.5340239029,2.9124474978861703,1.3191841283246821,0.17761165234633988,-731.699242873633,-6961.653267577907,0 +133680,62231997.22273137,-1157780.554813456,-509551.4232077988,-59371.49507737508,2.9958065023412495,1.3184860123765982,0.1536262724978816,244.29647691758592,-6995.735789133667,0 +133800,67585461.78644408,-1237617.6358422246,-529611.1670793919,-52353.43364138538,3.0729410155036354,1.31499732264197,0.1299908864255885,1215.5372436683344,-6893.654271085488,0 +133920,72712734.9433512,-1313169.8627155828,-546713.0807813405,-44767.82330391367,3.1434752457787325,1.3087256148459108,0.10716553003450478,2163.118960624591,-6657.395614066088,0 +134040,77502425.32871647,-1383155.8140239576,-560533.0174184791,-36915.52004474399,3.2070655574867177,1.2996844721109422,0.08559447292332462,3068.5980275234488,-6291.558324094214,0 +134160,81844286.87578776,-1446340.0136575764,-570794.4605731519,-29117.16723161782,3.263402145021024,1.2878934755389724,0.06569757118200367,3914.350324295256,-5803.263007885273,0 +134280,85633194.2661964,-1501566.70321642,-577276.7835893665,-21697.93491057446,3.3122105421901202,1.2733781618029925,0.04786209537054615,4683.914244511988,-5202.013778341777,0 +134400,88773194.4538055,-1547792.944486727,-579822.3506685677,-14971.421208311709,3.3532529593892013,1.256169967840327,0.03243519273806898,5362.31110183279,-4499.513267805842,0 +134520,91181422.14438438,-1584119.7529611601,-578342.1390743497,-9223.643554746683,3.386329442087241,1.2363061627672298,0.01971713039647221,5936.336673095009,-3709.4348496323914,0 +134640,92791657.38300505,-1609819.9640232124,-572819.6025299884,-4698.086682086859,3.411278844985372,1.2138297671622753,0.009955450962652972,6394.818203498202,-2847.1565015306105,0 +134760,93557310.15036291,-1624361.608402695,-563312.5557373759,-1582.7452951815055,3.4279796171005805,1.1887894598933664,0.0033401544230447586,6728.831871568213,-1929.461490719062,0 +134880,93453640.94351208,-1627425.7229899035,-549952.9360377388,0.0000000040066358000453994,3.4363503939498767,1.1612394726901458,0.000000000000002742164134650338,6931.876481190974,-974.211706720588,0 +135000,92479066.77773653,-1618917.741188658,-532944.3863161798,0.0000000040052149503002856,3.4363503939498767,1.131239472690146,0.0000000000000027657367753350794,7000,0.000000000006875353533049652,0 +135120,90655456.15616745,-1598971.8820395772,-512557.6979504711,-1558.0060562456513,3.4279796171005823,1.0988544332130552,0.003340154423044153,6931.876481191,974.2117067204047,0 +135240,88027379.99759564,-1567948.272773961,-489124.2478709002,-4575.888647897877,3.4112788449853753,1.0641544930429763,0.009955450962651755,6728.8318715682635,1929.4614907188839,0 +135360,84660352.84451997,-1526422.8751042383,-463027.6534181065,-8887.69961201331,3.386329442087244,1.0272148045234366,0.019717130396471032,6394.818203498196,2847.156501530623,0 +135480,80638163.92489493,-1475170.6193933964,-434693.94680920546,-14268.963284615333,3.3532529593892044,0.9881153707941496,0.032435192738067845,5936.336673095002,3709.4348496324033,0 +135600,76059455.01347785,-1415142.4608950026,-404580.63266014436,-20449.087569618565,3.312210542190125,0.9469408725220255,0.04786209537054453,5362.31110183291,4499.5132678057,0 +135720,71033746.57552566,-1347437.338497061,-373165.03345459345,-27126.096179796623,3.2634021450210304,0.9037804845017068,0.06569757118200163,4683.914244512126,5202.013778341653,0 +135840,65677141.82176197,-1273270.2224871805,-340932.3469641154,-33982.74579337561,3.2070655574867235,0.8587276825228168,0.08559447292332259,3914.3503242952456,5803.263007885281,0 +135960,60107948.27281989,-1193937.5724447276,-308363.83600497013,-40703.025401894454,3.1434752457787383,0.8118800409222173,0.10716553003450277,3068.5980275234365,6291.558324094221,0 +136080,54442448.33513059,-1110781.583965432,-275925.54587271437,-46988.04239859934,3.0729410155036425,0.7633390212597205,0.12999088642558632,2163.1189606247676,6657.395614066031,0 +136200,48791026.11882915,-1025154.5841422235,-244057.90118144898,-52570.377083030646,2.995806502341258,0.7132097525749445,0.1536262724978793,1215.537243668517,6893.654271085456,0 +136320,43254820.61467377,-938384.8469271073,-213166.4757420062,-57226.12452944006,2.9124474978861787,0.6616008037012227,0.17761165234633758,244.29647691757216,6995.735789133668,0 +136440,37923029.67361363,-851744.9519183484,-183614.16145724957,-60784.02602649495,2.823270118828891,0.6086239481296871,0.2014801778351761,-731.6992428736467,6961.653267577906,0 +136560,32870939.661622334,-766423.6185450777,-155714.89025337546,-63131.30468412358,2.7287088283960856,0.554393921932776,0.22476727526580018,-1693.4532691974925,6792.070083932021,0 +136680,28158706.674780242,-683501.7288040975,-129728.99191814686,-64216.04363642831,2.629224319689481,0.4990281752714496,0.24701968777540315,-2622.246153911339,6490.28698196753,0 +136800,23830870.619871736,-603933.0226526784,-105860.20489334463,-64046.163794562846,2.5253012712353486,0.4426466180242952,0.26780429746622986,-3499.999999999905,6062.177826491125,0 +136920,19916546.12765771,-528529.7265487325,-84254.30010612412,-62685.25692031974,2.4174459856794486,0.3853713600894314,0.28671655555279113,-4309.63032727963,5516.075275247036,0 +137040,16430205.848384809,-457953.1704473125,-64999.2321234674,-60245.69780262188,2.3061839231314343,0.3273264469216596,0.30338835644380713,-5035.378602370536,4862.6085932130045,0 +137160,13372952.712830747,-392709.2711722753,-48126.698223949104,-56879.589145708305,2.192057141176016,0.26863759087763134,0.31749520249882673,-5663.118960624577,4114.496766047388,0 +137280,10734167.763355847,-333148.61575052096,-33614.96402499827,-52768.18067409689,2.0756216540228962,0.2094318989508766,0.32876252000568795,-6180.63315001251,3286.300939501196,0 +137400,8493417.966727924,-279470.76823120005,-21392.802551840123,-48110.44933539698,1.9574447236614312,0.14983759748636008,0.33697100344550407,-6577.848345501354,2394.141003279696,0 +137520,6622512.385065198,-231732.34537141162,-11344.389689642558,-43111.53218502141,1.8381020962172385,0.08998375447077063,0.34196088402513053,-6847.033205136623,1455.3818357243906,0 +137640,5087603.456789986,-189858.3553496602,-3314.999931624685,-37971.67106993209,1.718175196974947,0.030000000000002934,0.34363503939499,-6982.94835181876,488.2953162090144,0 +137760,3851241.327426576,-153656.2628414338,2882.6507523698046,-32876.263063628096,1.5982482977326555,-0.029983754470764776,0.34196088402513103,-6982.948351818769,-488.2953162088776,0 +137880,2874301.9069094104,-122832.22653404577,7461.565904718076,-27987.51770459408,1.4789056702884626,-0.08983759748635421,0.336971003445505,-6847.033205136652,-1455.3818357242562,0 +138000,2117722.779225712,-97008.94550453975,10653.284902869327,-23438.10669338705,1.3607287399269974,-0.1494318989508708,0.32876252000568934,-6577.8483455014,-2394.141003279567,0 +138120,1543994.836620667,-75744.54465819975,12700.510337398247,-19327.059349414325,1.244293252773878,-0.2086375908776255,0.3174952024988279,-6180.633150012481,-3286.3009395012505,0 +138240,1118371.4707689884,-58551.924830525095,13849.710135209181,-15718.013849844547,1.1301664708184593,-0.2673264469216539,0.3033883564438087,-5663.118960624658,-4114.496766047277,0 +138360,809771.4258864922,-44918.00096136333,14343.868714932192,-12639.786827324038,1.0189044082704446,-0.3253713600894257,0.286716555552793,-5035.378602370631,-4862.608593212905,0 +138480,591366.1081932521,-34322.255048803265,14415.572651296694,-10089.079909779537,0.911049122714544,-0.3826466180242897,0.267804297466232,-4309.630327279739,-5516.075275246952,0 +138600,440857.1960658182,-26254.044174712017,14280.625388148312,-8035.009649293841,0.8071260742604112,-0.43902817527144417,0.24701968777540553,-3500.000000000024,-6062.177826491057,0 +138720,340465.46557265334,-20228.13333933743,14132.389421171792,-6425.035831294089,0.7076415655538066,-0.4943939219327707,0.22476727526580248,-2622.2461539112815,-6490.286981967553,0 +138840,276666.16125675855,-15797.973429677631,14137.05008487996,-5191.7809546534045,0.6130802751209992,-0.548623948129682,0.2014801778351787,-1693.4532691978186,-6792.07008393194,0 +138960,239719.0248003252,-12566.32026926711,14429.98011722889,-4260.188144992431,0.5239028960637118,-0.6016008037012176,0.17761165234634013,-731.6992428735851,-6961.653267577913,0 +139080,223051.0849363776,-10192.892912865076,15113.356885561672,-3554.461142238788,0.4405438916086316,-0.6532097525749395,0.15362627249788183,244.29647691743503,-6995.735789133672,0 +139200,222556.3555827623,-8398.896705692468,16255.144030403599,-3004.2703697901743,0.3634093784462473,-0.7033390212597157,0.12999088642558887,1215.5372436685777,-6893.6542710854455,0 +139320,235877.7576466054,-6968.384366454431,17889.497129847616,-2549.7916391282815,0.2928751481711492,-0.7518800409222126,0.10716553003450498,2163.118960624448,-6657.395614066135,0 +139440,261732.3879258507,-5746.588553362941,20018.590973751987,-2145.262747941608,0.22928483646316417,-0.7987276825228122,0.08559447292332488,3068.598027523492,-6291.558324094193,0 +139560,299331.82698340376,-4635.521513710984,22615.79757518133,-1760.888048875345,0.1729482489288579,-0.8437804845017021,0.06569757118200403,3914.3503242952966,-5803.263007885245,0 +139680,347935.3069646811,-3587.2893319102627,25630.07354149851,-1383.0786946475653,0.12413985175976205,-0.8869408725220213,0.04786209537054662,4683.914244512024,-5202.013778341745,0 +139800,406556.6874420212,-2595.6973794095065,28991.347909793807,-1013.1714081903208,0.0830974345606815,-0.9281153707941452,0.03243519273806957,5362.311101832821,-4499.513267805805,0 +139920,473828.2269535234,-1686.818153679149,32616.642227392116,-664.9056495877876,0.05002095186264077,-0.9672148045234328,0.01971713039647236,5936.336673094929,-3709.434849632519,0 +140040,548007.2233990295,-909.2433361070282,36416.60842390238,-361.04380541251646,0.025071548964509974,-1.0041544930429722,0.009955450962653276,6394.818203498222,-2847.1565015305664,0 +140160,627097.7652111802,-324.7425413726217,40302.14098778121,-129.58059394537057,0.00837077684930193,-1.0388544332130516,0.003340154423045221,6728.831871568226,-1929.461490719016,0 +140280,709050.7112887977,-0.00000000025504239245368506,44190.71104071452,-0.00000000013893513045702373,0.0000000000000061825544683813405,-1.0712394726901424,0.000000000000003367965628608971,6931.8764811909805,-974.2117067205404,0 +140400,792001.5507350201,-0.000000000290064023141532,48012.08250289224,-0.00000000015504356911678394,0.000000000000006653115949959487,-1.1012394726901424,0.00000000000000355619022124023,7000,0.00000000005489883951745037,0 +140520,874508.1037053901,-383.48945697057127,51713.104387046806,-153.0221183710427,0.008370776849301638,-1.1287894598933632,0.003340154423045107,6931.876481190993,974.2117067204522,0 +140640,955757.3849533785,-1200.7724965667994,55261.32637795199,-476.80467304973143,0.025071548964508923,-1.1538297671622724,0.009955450962652868,6728.83187156825,1929.46149071893,0 +140760,1035721.9119461545,-2493.9012887753697,58647.25372230903,-983.039607917574,0.050020951862638975,-1.176306162767227,0.019717130396471674,6394.818203498258,2847.156501530485,0 +140880,1115258.3722041585,-4299.134975742364,61885.137283267424,-1678.069513004652,0.08309743456067897,-1.1961699678403246,0.03243519273806862,5936.3366730949765,3709.4348496324437,0 +141000,1196153.7860350779,-6651.3598367204495,65012.279761608894,-2564.4304736645886,0.1241398517597588,-1.2133781618029902,0.047862095370545435,5362.311101832879,4499.513267805737,0 +141120,1281134.2093372624,-9590.012844351108,68086.92354415086,-3642.9426454456802,0.17294824892885396,-1.2278934755389703,0.06569757118200265,4683.91424451209,5202.013778341685,0 +141240,1373857.1912172555,-13165.938726093664,71184.86355779911,-4914.985234890721,0.22928483646316106,-1.23968447211094,0.0855944729233237,3914.3503242952056,5803.263007885307,0 +141360,1478910.883239935,-17448.545008374625,74394.99469247126,-6384.572353884533,0.2928751481711454,-1.2487256148459092,0.10716553003450366,3068.598027523572,6291.558324094154,0 +141480,1601839.8913707556,-22532.60336318104,77814.05370948275,-8059.872029663002,0.36340937844624155,-1.2549973226419682,0.12999088642558726,2163.1189606247217,6657.395614066046,0 +141600,1749211.3605532455,-28544.077473519348,81540.8473953626,-9953.87816668052,0.4405438916086252,-1.258486012376597,0.15362627249788016,1215.5372436686657,6893.65427108543,0 +141720,1928725.6010361474,-35644.432028699914,85670.27098134087,-12084.045568616937,0.5239028960637048,-1.2591841283246807,0.17761165234633847,244.29647691752416,6995.73578913367,0 +141840,2149365.3023022274,-44032.98545748869,90287.41408790351,-14470.819076405249,0.6130802751209916,-1.2570901585225311,0.20148017783517705,-731.6992428734966,6961.653267577922,0 +141960,2421567.5497218533,-53946.999493553056,95462.02774201432,-17135.11567885654,0.7076415655537985,-1.2522086380424595,0.22476727526580093,-1693.4532691977322,6792.070083931961,0 +142080,2757394.7570925364,-65659.33961960653,101243.58866280598,-20094.939427197543,0.8071260742604035,-1.2445501391708238,0.2470196877754038,-2622.2461539113833,6490.286981967512,0 +142200,3170675.163586201,-79473.6802552942,107657.15019292905,-23361.41112172899,0.9110491227145359,-1.234131248510808,0.26780429746623047,-3499.9999999999463,6062.177826491101,0 +142320,3677081.158727656,-95717.35726858504,114700.11755435423,-26934.568895672895,1.0189044082704362,-1.220974531059534,0.28671655555279163,-4309.630327279668,5516.075275247007,0 +142440,4294114.3852927955,-114732.08059115658,122340.03305880111,-30799.336434677134,1.1301664708184507,-1.2051084813373019,0.3033883564438075,-5035.378602370569,4862.60859321297,0 +142560,5040969.961295132,-136862.80711180088,130513.40853155882,-34922.06082581422,1.244293252773869,-1.1865674616748052,0.317495202498827,-5663.118960624606,4114.4967660473485,0 +142680,5938257.677717879,-162445.137557881,139125.6006657343,-39247.99353401129,1.3607287399269885,-1.1653916277919731,0.32876252000568873,-6180.633150012439,3286.300939501329,0 +142800,7007565.030118388,-191791.64264039282,148051.69232609775,-43700.03007723299,1.4789056702884535,-1.1416268418296238,0.3369710034455047,-6577.84834550137,2394.141003279651,0 +142920,8270854.871530337,-225177.5474759602,157138.31971485162,-48178.94272543879,1.5982482977326464,-1.1153245730222794,0.34196088402513103,-6847.033205136634,1455.3818357243435,0 +143040,9749698.944289647,-262826.2146504923,166206.37129233533,-52565.242930099084,1.718175196974938,-1.0865417862272648,0.34363503939499035,-6982.9483518187635,488.2953162089665,0 +143160,11464357.37357397,-304894.87089899764,175054.4778164914,-56722.70316318018,1.8381020962172294,-1.0553408185515119,0.3419608840251312,-6982.948351818766,-488.2953162089255,0 +143280,13432723.367085248,-351461.0250111851,183463.2114109222,-60503.45781845587,1.9574447236614223,-1.0217892443432672,0.336971003445505,-6847.033205136642,-1455.3818357243033,0 +143400,15669161.925838875,-402510.02820680063,191199.91232382104,-63754.49540351012,2.0756216540228873,-0.9859597288411,0.3287625200056892,-6577.848345501384,-2394.141003279612,0 +143520,18183281.354082443,-457924.2334179507,198024.06208530552,-66325.25424960279,2.192057141176007,-0.9479298707971776,0.3174952024988282,-6180.633150012552,-3286.300939501117,0 +143640,20978686.619592,-517474.214578326,203693.11855651994,-68075.94567296996,2.3061839231314254,-0.9077820344156461,0.3033883564438088,-5663.11896062463,-4114.496766047315,0 +143760,24051773.743344463,-580812.5066030711,207968.72005949405,-68886.15600998045,2.41744598567944,-0.8656031709701068,0.286716555552793,-5035.378602370597,-4862.60859321294,0 +143880,27390633.63870746,-647470.3148434549,210623.15154182457,-68663.226353216,2.5253012712353406,-0.8214846304865171,0.2678042974662319,-4309.6303272797,-5516.075275246981,0 +144000,30974141.09050403,-716857.6120989965,211445.94586622936,-67349.8804168313,2.6292243196894733,-0.7755219638993784,0.24701968777540534,-3499.9999999999823,-6062.177826491081,0 +144120,34771308.52352451,-788266.9847014336,210250.46927646652,-64930.57100470244,2.7287088283960785,-0.7278147161096876,0.22476727526580248,-2622.2461539114215,-6490.286981967496,0 +144240,38740983.414507106,-860881.5011799706,206880.31435871325,-61436.047792940444,2.823270118828886,-0.6784662103928479,0.20148017783517863,-1693.453269197772,-6792.070083931952,0 +144360,42831961.31751632,-933786.7546532878,201215.29964059385,-56945.716121399106,2.912447497886174,-0.6275833246234624,0.17761165234634013,-731.6992428737352,-6961.653267577896,0 +144480,46983572.526067816,-1005987.074000089,193176.85601099662,-51587.458749055986,2.995806502341254,-0.5752762598016568,0.15362627249788183,244.29647691748303,-6995.7357891336715,0 +144600,51126779.02212007,-1076425.7137411672,182732.57005629988,-45534.72780458593,3.072941015503639,-0.5216583013822521,0.1299908864255888,1215.5372436684293,-6893.654271085471,0 +144720,55185790.01531616,-1144008.62725469,169899.65640148308,-39000.876837963646,3.143475245778737,-0.4668455739236962,0.10716553003450495,2163.118960624494,-6657.395614066119,0 +144840,59080170.44804977,-1207631.214949665,154747.14757344936,-32230.88380219179,3.2070655574867217,-0.4109567895881276,0.08559447292332492,3068.598027523535,-6291.558324094172,0 +144960,62727379.66535638,-1266207.233587334,137396.62194030502,-25490.80259283899,3.263402145021029,-0.35411299103726795,0.06569757118200378,3914.3503242951715,-5803.26300788533,0 +145080,66045640.153366394,-1318698.871721885,118021.33769329352,-19055.45869123774,3.3122105421901247,-0.2964372892809688,0.047862095370546476,4683.91424451206,-5202.013778341713,0 +145200,68957002.47923023,-1364146.8557009075,96843.70191530195,-13195.057671925133,3.3532529593892066,-0.23805459704617946,0.03243519273806903,5362.3111018327245,-4499.513267805921,0 +145320,71390446.0723927,-1401699.3654220493,74131.07540067633,-8161.4886080434,3.386329442087247,-0.17909135824379466,0.01971713039647196,5936.336673094955,-3709.4348496324787,0 +145440,73284839.66274926,-1430638.5202232879,50189.99174606794,-4175.164881142174,3.4112788449853793,-0.11967527411930051,0.009955450962652402,6394.81820349816,-2847.156501530704,0 +145560,74591582.58754954,-1450403.2492502055,25358.94817091961,-1413.2437672659878,3.4279796171005867,-0.059935026680312246,0.0033401544230445054,6728.831871568239,-1929.4614907189696,0 +145680,75276760.10306393,-1460607.488092476,0.00000000032737786165218635,-0.0000000011963301363303867,3.436350393949882,-0.00000000000000077021722333370235,0.0000000000000028145888397723695,6931.876481190987,-974.211706720493,0 +145800,75322672.08513264,-1461052.8391035332,-25510.544704798627,-0.0000000014013785842960656,3.436350393949883,0.05999999999999923,0.0000000000000024853443580204485,7000,-0.00000000009602964051097697,0 +145920,74728633.28559977,-1451735.085543764,-50791.98410307392,-1414.541481775283,3.4279796171005876,0.11993502668031071,0.003340154423044199,6931.876481190986,974.2117067204998,0 +146040,73510991.39549682,-1432844.2435189618,-75469.25769582824,-4181.602047701268,3.41127884498538,0.17967527411929898,0.009955450962652119,6728.831871568237,1929.4614907189762,0 +146160,71702362.217353,-1404758.1510232827,-99182.7700394021,-8179.2985924481,3.38632944208725,0.23909135824379324,0.019717130396471078,6394.818203498238,2847.1565015305287,0 +146280,69350134.33982652,-1368029.9087428683,-121597.62718042763,-13232.617490807797,3.353252959389211,0.2980545970461781,0.03243519273806759,5936.3366730950565,3709.4348496323155,0 +146400,66514343.90654461,-1323369.7811354685,-142411.94256702435,-19122.954253180513,3.312210542190131,0.3564372892809676,0.047862095370544526,5362.311101832847,4499.5132678057735,0 +146520,63265059.03539866,-1271622.419073709,-161363.92023768317,-25599.819048101446,3.2634021450210353,0.4141129910372667,0.06569757118200184,4683.914244512054,5202.013778341718,0 +146640,59679439.92686111,-1213740.4610248979,-178237.4886547245,-32393.935566616423,3.2070655574867293,0.47095678958812653,0.0855944729233226,3914.35032429533,5803.263007885223,0 +146760,55838652.89338888,-1150755.6972691468,-192866.3337138931,-39230.894025227,3.1434752457787445,0.526845573923695,0.10716553003450263,3068.598027523529,6291.558324094175,0 +146880,51824814.22310076,-1083749.0357192943,-205136.25873740372,-45844.517387503976,3.072941015503648,0.5816583013822513,0.12999088642558626,2163.1189606246767,6657.395614066061,0 +147000,47718124.246798,-1013820.4891969487,-214985.87708651606,-51989.15971895617,2.9958065023412637,0.635276259801656,0.1536262724978792,1215.5372436686182,6893.654271085437,0 +147120,43594325.74153185,-942060.3188978077,-222405.71427767075,-57450.26819223283,2.912447497886185,0.687583324623462,0.17761165234633747,244.296476917675,6995.735789133664,0 +147240,39522587.25174801,-869522.3283822297,-227435.8568845494,-62052.692792561444,2.823270118828898,0.7384662103928477,0.20148017783517605,-731.6992428735442,6961.653267577916,0 +147360,35563874.78280103,-797200.1213519549,-230162.33199738595,-65666.40502393716,2.7287088283960905,0.7878147161096875,0.22476727526579987,-1693.4532691977788,6792.070083931949,0 +147480,31769838.25841967,-726006.9311891289,-230712.431955346,-68209.4730837957,2.6292243196894862,0.8355219638993784,0.24701968777540295,-2622.2461539112433,6490.286981967569,0 +147600,28182205.262929786,-656759.4173930215,-229249.21432286152,-69648.3213241448,2.5253012712353535,0.8814846304865172,0.2678042974662295,-3499.999999999988,6062.177826491077,0 +147720,24832646.247378442,-590165.6188977098,-225965.40790785174,-69995.46399729516,2.417445985679454,0.925603170970107,0.286716555552791,-4309.630327279549,5516.075275247099,0 +147840,21743053.96722833,-526817.069295392,-221076.94445952727,-69305.03816150321,2.306183923131439,0.9677820344156469,0.3033883564438068,-5035.3786023706025,4862.608593212935,0 +147960,18926165.90283166,-467184.923055552,-214816.31581973404,-67666.56259259168,2.1920571411760212,1.0079298707971787,0.3174952024988267,-5663.118960624516,4114.49676604747,0 +148080,16386451.441541428,-411619.819622095,-207425.93144713796,-65197.41636003782,2.0756216540229016,1.0459597288411016,0.32876252000568823,-6180.633150012461,3286.3009395012864,0 +148200,14121184.71138912,-360355.1244163244,-199151.6250882317,-62034.56291943935,1.9574447236614365,1.0817892443432686,0.336971003445504,-6577.848345501387,2394.141003279606,0 +148320,12121627.8286941,-313513.12934854283,-190236.43519795177,-58326.04570015097,1.8381020962172436,1.1153408185515137,0.3419608840251302,-6847.033205136644,1455.3818357242965,0 +148440,10374256.52092466,-271113.764873539,-180914.76398692204,-54222.75297470829,1.7181751969749521,1.1465417862272667,0.34363503939498935,-6982.948351818767,488.2953162089186,0 +148560,8861969.276708078,-233085.36384844108,-171407.0061151015,-49870.897524500535,1.5982482977326606,1.1753245730222819,0.3419608840251307,-6982.948351818777,-488.2953162087749,0 +148680,7565231.273757391,-199277.0171453231,-161914.73031194505,-45405.584534670714,1.4789056702884678,1.2016268418296265,0.33697100344550435,-6847.033205136632,-1455.3818357243504,0 +148800,6463114.588370084,-169472.0657293931,-152616.49467369245,-40945.75337826167,1.3607287399270027,1.2253916277919763,0.3287625200056884,-6577.8483455013675,-2394.1410032796575,0 +148920,5534206.174683417,-143402.2791871431,-143664.37716044133,-36590.67954263769,1.244293252773883,1.2465674616748086,0.3174952024988273,-6180.63315001253,-3286.3009395011595,0 +149040,4757364.666354086,-120762.27438678127,-135181.30425658333,-32418.116173706927,1.1301664708184647,1.2651084813373055,0.3033883564438078,-5663.118960624601,-4114.496766047354,0 +149160,4112316.210765086,-101223.7306344961,-127259.25987671601,-28484.045364954145,1.0189044082704501,1.2809745310595377,0.2867165555527919,-5035.378602370563,-4862.6085932129745,0 +149280,3580088.3482220434,-84448.96232788851,-119958.4504589606,-24823.902975271347,0.9110491227145499,1.2941312485108116,0.26780429746623075,-4309.630327279662,-5516.075275247012,0 +149400,3143289.368608437,-70103.42146880507,-113307.48832179824,-21455.04380970419,0.8071260742604167,1.3045501391708276,0.24701968777540445,-3500.000000000113,-6062.177826491005,0 +149520,2786248.423877633,-57866.726126475805,-107304.63213953862,-18380.133379843803,0.7076415655538117,1.3122086380424631,0.22476727526580154,-2622.246153911377,-6490.286981967515,0 +149640,2495038.5578133585,-47441.852479777925,-101920.09030279217,-15591.09510181073,0.6130802751210048,1.317090158522535,0.20148017783517766,-1693.4532691977256,-6792.0700839319625,0 +149760,2257410.179253579,-38562.19155774035,-97099.35073579036,-13073.213780886117,0.5239028960637169,1.319184128324685,0.17761165234633913,-731.6992428736876,-6961.653267577902,0 +149880,2062665.7205376497,-30996.25912771932,-92767.45149426424,-10809.001876707913,0.4405438916086361,1.3184860123766016,0.1536262724978808,244.29647691733223,-6995.735789133677,0 +150000,1901506.7199506345,-24549.95730155197,-88834.05337677695,-8781.475934889893,0.36340937844625115,1.3149973226419729,0.1299908864255878,1215.5372436684763,-6893.654271085463,0 +150120,1765881.9938866533,-19066.41504930219,-85199.12295092762,-6976.564885670149,0.29287514817115506,1.3087256148459137,0.10716553003450421,2163.1189606247285,-6657.395614066044,0 +150240,1648859.9292167197,-14423.574519180675,-81758.98643836165,-5384.47407898199,0.22928483646316933,1.2996844721109446,0.08559447292332396,3068.5980275233997,-6291.558324094239,0 +150360,1544539.6880179984,-10529.830891744385,-78412.47649511877,-3999.9498048076603,0.1729482489288623,1.2878934755389748,0.06569757118200292,3914.350324295211,-5803.263007885303,0 +150480,1448006.1991349803,-7318.16384929111,-75066.86932587193,-2821.516629243867,0.12413985175976563,1.273378161802995,0.047862095370545275,4683.914244511947,-5202.013778341814,0 +150600,1355323.5222889918,-4739.306595566442,-71643.30216946009,-1849.880488906515,0.08309743456068586,1.2561699678403295,0.03243519273806848,5362.311101832884,-4499.513267805732,0 +150720,1263552.033160211,-2754.572605173028,-68081.37311973918,-1085.7903582459144,0.05002095186264429,1.2363061627672323,0.019717130396470973,5936.336673094875,-3709.434849632607,0 +150840,1170768.391409662,-1328.9920231705987,-64342.6571022412,-527.7182887725666,0.02507154896451263,1.2138297671622778,0.009955450962651565,6394.81820349818,-2847.1565015306605,0 +150960,1076064.6297985155,-425.39331866203605,-60412.92255645924,-169.74283276708948,0.0083707768493054,1.1887894598933686,0.003340154423043827,6728.831871568253,-1929.4614907189234,0 +151080,979504.6242139527,-0.0000000005078463571273249,-56302.900287721364,-0.00000000011150667571407089,0.000000000000010474260347947961,1.161239472690148,0.000000000000002299809648276252,6931.876481190994,-974.2117067204455,0 +151200,882022.6568713216,-0.000000000462981406893879,-52047.53491856169,-0.00000000009823984241642654,0.000000000000010062779023434451,1.131239472690148,0.0000000000000021352171184708477,7000,-0.000000000048006154526576244,0 +151320,785258.9998739955,-363.3941945743179,-47703.73513720787,-145.00359383210392,0.008370776849304169,1.0988544332130574,0.0033401544230433366,6931.876481191007,974.2117067203504,0 +151440,691339.9770501321,-1021.2516697468564,-43346.72558233391,-405.5202545754832,0.02507154896451227,1.0641544930429783,0.009955450962651415,6728.8318715682235,1929.4614907190225,0 +151560,602622.8850107912,-1902.3068114091916,-39065.184620859865,-749.8464155109555,0.05002095186264313,1.027214804523439,0.019717130396470522,6394.818203498219,2847.1565015305728,0 +151680,521437.36543939094,-2939.6425140985343,-34955.42272968188,-1147.4225652077598,0.08309743456068228,0.9881153707941517,0.03243519273806717,5936.336673095031,3709.4348496323564,0 +151800,449862.37480813963,-4079.0301971356976,-31114.910797495802,-1572.6692882834448,0.12413985175976289,0.9469408725220276,0.047862095370544235,5362.311101832816,4499.513267805811,0 +151920,389580.332155891,-5288.354750199884,-27635.502804764397,-2008.8787529722185,0.1729482489288588,0.9037804845017086,0.06569757118200166,4683.914244512019,5202.0137783417495,0 +152040,341846.60583253077,-6567.4520191731235,-24596.710970942753,-2451.6998276099976,0.2292848364631651,0.8587276825228186,0.08559447292332252,3914.3503242952906,5803.263007885249,0 +152160,307603.34534798074,-7957.635132311038,-22059.383246438323,-2911.7669836463974,0.29287514817114874,0.8118800409222191,0.10716553003450233,3068.598027523665,6291.55832409411,0 +152280,287752.72932902677,-9550.186546248062,-20060.104343562187,-3416.084692101931,0.36340937844624555,0.7633390212597223,0.129990886425586,2163.1189606246307,6657.395614066076,0 +152400,283587.61960881937,-11493.143288221463,-18606.595249725782,-4007.883882367045,0.4405438916086299,0.7132097525749462,0.15362627249787897,1215.537243668571,6893.654271085446,0 +152520,297359.4368305533,-13995.797426996944,-17674.3264748334,-4744.804286424954,0.5239028960637089,0.6616008037012244,0.17761165234633725,244.296476917627,6995.735789133666,0 +152640,332945.9557760564,-17330.462884300912,-17204.492089517265,-5695.411980438835,0.6130802751209963,0.6086239481296887,0.2014801778351758,-731.6992428735921,6961.653267577912,0 +152760,396567.59223903,-21831.211622353654,-17103.420179097517,-6934.2195130487,0.7076415655538026,0.5543939219327776,0.22476727526579976,-1693.4532691976324,6792.070083931985,0 +152880,497491.07327089267,-27889.444412353107,-17243.425777297838,-8535.521364839713,0.8071260742604072,0.499028175271451,0.24701968777540279,-2622.2461539112883,6490.286981967551,0 +153000,648654.9652241644,-35946.321634761014,-17465.049145353474,-10566.47679239204,0.9110491227145391,0.4426466180242966,0.2678042974662296,-3499.999999999857,6062.177826491153,0 +153120,867152.5126113431,-46482.22736535333,-17580.568927147204,-13079.955309289842,1.018904408270439,0.3853713600894327,0.28671655555279096,-4309.630327279587,5516.075275247071,0 +153240,1174513.1379840013,-60003.567437301615,-17378.638491772504,-16107.701100338592,1.1301664708184533,0.32732644692166096,0.30338835644380713,-5035.378602370498,4862.608593213044,0 +153360,1596733.8438540641,-77027.30448108775,-16629.865557390276,-19654.369723248896,1.244293252773872,0.2686375908776326,0.31749520249882635,-5663.118960624662,4114.496766047271,0 +153480,2164024.485321115,-98063.70867695095,-15093.139524253427,-23692.94558110665,1.3607287399269914,0.20943189895087788,0.32876252000568773,-6180.633150012484,3286.300939501244,0 +153600,2910245.2810100946,-123597.85366456915,-12522.506214989315,-28161.9670610479,1.4789056702884562,0.1498375974863613,0.336971003445504,-6577.848345501334,2394.141003279748,0 +153720,3872030.0139538283,-154070.41663404202,-8674.393435159765,-32964.875325717534,1.598248297732649,0.08998375447077185,0.34196088402513003,-6847.033205136654,1455.3818357242496,0 +153840,5087603.45678991,-189858.35534965806,-3314.9999316241588,-37971.67106993168,1.7181751969749406,0.030000000000004155,0.343635039394989,-6982.94835181877,488.2953162088707,0 +153960,6595316.285971478,-231256.03830733616,3772.328145840516,-43022.91992293124,1.838102096217232,-0.029983754470763554,0.3419608840251302,-6982.9483518187735,-488.29531620882284,0 +154080,8431935.0613519,-278457.40218828694,12779.898054078794,-47935.9999789426,1.957444723661425,-0.08983759748635302,0.33697100344550435,-6847.033205136663,-1455.3818357242028,0 +154200,10630738.837520275,-331539.7063358152,23868.804702125486,-52513.341786376535,2.07562165402289,-0.1494318989508696,0.32876252000568823,-6577.848345501351,-2394.1410032797025,0 +154320,13219487.736175828,-390449.4479160509,37162.54957158651,-56552.278771873316,2.1920571411760097,-0.20863759087762435,0.31749520249882696,-6180.633150012506,-3286.300939501202,0 +154440,16218342.260937711,-454990.9919290788,52741.294410119066,-59856.01055212767,2.3061839231314285,-0.26732644692165275,0.30338835644380785,-5663.11896062469,-4114.496766047232,0 +154560,19637824.865853414,-524818.4531355144,70636.90146886022,-62245.08843835321,2.417445985679443,-0.3253713600894246,0.2867165555527918,-5035.378602370531,-4862.60859321301,0 +154680,23476926.46694108,-599431.3362871015,90828.91462523738,-63568.76691195055,2.525301271235343,-0.3826466180242886,0.2678042974662305,-4309.630327279625,-5516.07527524704,0 +154800,27721468.958343234,-678174.3899727064,113241.63659824328,-63715.5319208829,2.629224319689476,-0.4390281752714431,0.24701968777540415,-3500.0000000000714,-6062.177826491029,0 +154920,32342838.77315589,-760242.0513839461,137742.45368013554,-62622.12100236699,2.7287088283960816,-0.4943939219327698,0.22476727526580143,-2622.246153911517,-6490.286981967458,0 +155040,37297204.37781593,-844687.749362278,164141.54809393018,-60280.39500071187,2.8232701188288885,-0.5486239481296811,0.20148017783517752,-1693.453269197679,-6792.070083931973,0 +155160,42525320.68788272,-930438.1888677651,192193.11682817095,-56741.50838800724,2.912447497886176,-0.6016008037012167,0.177611652346339,-731.6992428736397,-6961.653267577907,0 +155280,47953004.546418436,-1016312.5627151609,221598.18303056445,-52116.954342905316,2.9958065023412566,-0.6532097525749386,0.1536262724978807,244.2964769173802,-6995.735789133674,0 +155400,53492337.15150075,-1101046.4313204926,252009.04132536176,-46576.228076289335,3.072941015503641,-0.7033390212597148,0.1299908864255877,1215.5372436685238,-6893.654271085455,0 +155520,59043612.18425529,-1183319.7876522788,283035.32262861764,-40341.0500573723,3.1434752457787383,-0.7518800409222117,0.10716553003450396,2163.1189606245853,-6657.39561406609,0 +155640,64498004.04392411,-1261788.595576271,314251.5993867459,-33676.30871370247,3.2070655574867235,-0.7987276825228113,0.08559447292332378,3068.598027523443,-6291.558324094218,0 +155760,69740881.86303118,-1335118.8709930915,345206.38210423687,-26878.105475700824,3.2634021450210318,-0.8437804845017014,0.06569757118200245,3914.350324295086,-5803.263007885388,0 +155880,74655645.66208805,-1402022.1836050248,375432.2869824648,-20259.496975991515,3.3122105421901282,-0.8869408725220206,0.047862095370544915,4683.914244511982,-5202.013778341781,0 +156000,79127915.57229021,-1461291.3095583757,404457.0875011092,-14134.71212760262,3.3532529593892075,-0.9281153707941445,0.03243519273806825,5362.311101832914,-4499.513267805694,0 +156120,83049868.14957236,-1511834.6763808252,431815.30503603927,-8802.758846092089,3.3863294420872485,-0.9672148045234321,0.019717130396470876,5936.3366730949,-3709.4348496325656,0 +156240,86324489.68899381,-1552708.2228054483,457059.9499970049,-4531.412198743828,3.4112788449853797,-1.0041544930429716,0.00995545096265162,6394.8182034982,-2847.1565015306164,0 +156360,88869508.44300999,-1583143.353609351,479773.999560684,-1542.5830563586728,3.427979617100588,-1.038854433213051,0.003340154423043384,6728.831871568211,-1929.4614907190687,0 +156480,90620777.63079172,-1602569.8041027572,499581.1937335338,-0.0000000004709275287437253,3.4363503939498825,-1.0712394726901417,0.0000000000000020196518069059977,6931.8764811910005,-974.2117067203978,0 +156600,91534909.20500232,-1610632.434892949,516155.74954811163,-0.000000004970090952192722,3.4363503939498843,-1.1012394726901422,0.0000000000000013375902027174139,7000,-0.00000000019893463455500358,0 +156720,91591002.73245198,-1607201.243678916,529230.6333276047,-1566.0245807822437,3.42797961710059,-1.128789459893363,0.0033401544230427017,6931.8764811910005,974.2117067203978,0 +156840,90791370.89829767,-1592374.1907590367,538604.0910902385,-4647.1730663692815,3.4112788449853833,-1.1538297671622726,0.009955450962650282,6728.831871568265,1929.4614907188773,0 +156960,89161228.11651416,-1566472.7686365256,544144.2136883236,-9120.892804420015,3.386329442087252,-1.1763061627672273,0.019717130396469537,6394.8182034982,2847.1565015306164,0 +157080,86747375.74120364,-1530030.5816097618,545791.4012941705,-14799.610232413066,3.3532529593892124,-1.196169967840325,0.03243519273806633,5936.336673095005,3709.434849632397,0 +157200,83615980.47690807,-1483775.5165128794,543558.6856034265,-21440.848754993072,3.312210542190133,-1.2133781618029906,0.047862095370543,5362.311101832914,4499.513267805694,0 +157320,79849596.35744455,-1428606.3606672534,537529.961501415,-28760.160072275925,3.2634021450210366,-1.2278934755389708,0.06569757118200054,4683.914244511982,5202.013778341781,0 +157440,75543620.8088339,-1365564.9410378383,527856.266957744,-36446.031200653226,3.20706555748673,-1.2396844721109408,0.08559447292332148,3914.350324295251,5803.263007885276,0 +157560,70802399.11358362,-1295805.0079087014,514750.3252631289,-44175.830772129404,3.1434752457787463,-1.24872561484591,0.10716553003450136,3068.5980275236216,6291.5583240941305,0 +157680,65735198.12815746,-1220559.1612191868,498479.6231779107,-51631.82973615978,3.0729410155036505,-1.2549973226419695,0.12999088642558487,2163.1189606247744,6657.395614066028,0 +157800,60452260.22819547,-1141105.1181895616,479358.33932218305,-58516.37136734747,2.995806502341266,-1.2584860123765984,0.15362627249787786,1215.5372436685238,6893.654271085455,0 +157920,55061124.559508145,-1058732.552870539,457738.45800922747,-64565.36581162864,2.9124474978861867,-1.259184128324682,0.17761165234633614,244.296476917579,6995.735789133667,0 +158040,49663368.273521304,-974711.6124643317,434000.40515244706,-69559.43312245986,2.8232701188289,-1.2570901585225325,0.20148017783517475,-731.699242873442,6961.653267577927,0 +158160,44351879.6502502,-890264.0459038925,408543.5268206135,-73332.20084993407,2.728708828396093,-1.2522086380424609,0.22476727526579865,-1693.453269197679,6792.070083931973,0 +158280,39208732.06238382,-806537.6834064021,381776.700684292,-75775.46169878733,2.6292243196894884,-1.2445501391708256,0.24701968777540162,-2622.2461539113324,6490.286981967533,0 +158400,34303686.409339495,-724584.7979712717,354109.3300661064,-76841.09812390334,2.525301271235356,-1.2341312485108098,0.26780429746622836,-3499.999999999899,6062.177826491128,0 +158520,29693312.978927203,-645344.6761876489,325942.9240808942,-76539.87050670308,2.417445985679457,-1.2209745310595361,0.2867165555527901,-4309.6303272794685,5516.075275247163,0 +158640,25420693.717487857,-569630.5387211321,297663.41988433345,-74937.33313695845,2.3061839231314427,-1.205108481337304,0.30338835644380613,-5035.378602370531,4862.60859321301,0 +158760,21515643.600019086,-498120.7893534766,269634.35830578237,-72147.28024827414,2.192057141176024,-1.1865674616748074,0.31749520249882524,-5663.118960624691,4114.496766047232,0 +158880,17995375.217893913,-431354.4403069797,242190.98522620244,-68323.22862700051,2.0756216540229047,-1.1653916277919754,0.3287625200056871,-6180.633150012412,3286.3009395013773,0 +159000,14865523.10010984,-369730.461664642,215635.31995369942,-63648.512351581056,1.9574447236614396,-1.141626841829626,0.33697100344550324,-6577.848345501351,2394.1410032797025,0 +159120,12121442.401259597,-313510.73139688186,190232.2092732129,-58325.5995847423,1.838102096217247,-1.1153245730222816,0.34196088402512975,-6847.033205136622,1455.3818357243972,0 +159240,9749698.944289938,-262826.2146504993,166206.37129233728,-52565.24293009759,1.7181751969749555,-1.086541786227267,0.3436350393949886,-6982.9483518187735,488.29531620882284,0 +159360,7729672.749738965,-217685.96993923825,143740.42508211284,-46576.04630387613,1.598248297732664,-1.0553408185515143,0.34196088402513025,-6982.948351818784,-488.29531620867226,0 +159480,6035203.903711428,-177988.55888883173,122973.89802643226,-40554.97554410606,1.478905670288471,-1.0217892443432697,0.33697100344550424,-6847.033205136654,-1455.3818357242496,0 +159600,4636217.066399546,-143535.4193754186,104003.19991335891,-34679.26031052112,1.3607287399270063,-0.9859597288411025,0.32876252000568795,-6577.848345501334,-2394.141003279748,0 +159720,3500268.657363433,-114045.74527715016,86882.54826146062,-29100.034827142095,1.2442932527738868,-0.9479298707971802,0.31749520249882657,-6180.633150012484,-3286.300939501244,0 +159840,2593968.690337617,-89172.39812347178,71625.82068429636,-23937.948970686415,1.1301664708184682,-0.9077820344156486,0.30338835644380735,-5663.118960624662,-4114.496766047271,0 +159960,1884237.538842779,-68518.3578061491,58209.29549941086,-19280.85439895185,1.0189044082704535,-0.8656031709701093,0.2867165555527917,-5035.378602370635,-4862.608593212901,0 +160080,1339366.86661838,-51653.20473325955,46575.220529619,-15183.539351043235,0.9110491227145535,-0.8214846304865197,0.2678042974662303,-4309.630327279587,-5516.075275247071,0 +160200,929863.7681582747,-38129.11964116278,36636.12252022012,-11669.358145245711,0.8071260742604207,-0.7755219638993813,0.24701968777540384,-3500.0000000000296,-6062.177826491053,0 +160320,629067.8521183828,-27495.895836000956,28279.737364493118,-8733.485833627521,0.7076415655538153,-0.7278147161096905,0.22476727526580106,-2622.2461539114724,-6490.286981967476,0 +160440,413542.2965066725,-19314.487755892183,21374.406982564862,-6347.433746884822,0.6130802751210089,-0.6784662103928508,0.2014801778351771,-1693.4532691976324,-6792.070083931985,0 +160560,263251.2374105424,-13168.673895889026,15774.755601769153,-4464.3958783814005,0.5239028960637215,-0.6275833246234653,0.17761165234633855,-731.699242873592,-6961.653267577912,0 +160680,161546.403319918,-8674.493450903263,11327.430122542026,-3024.965548389416,0.4405438916086414,-0.5752762598016595,0.15362627249788025,244.2964769174282,-6995.735789133672,0 +160800,94994.7333480778,-5487.223612307251,7876.66999992992,-1962.7700980884829,0.36340937844625576,-0.5216583013822549,0.12999088642558718,1215.5372436683751,-6893.654271085481,0 +160920,53084.92623134812,-3305.794071944111,5269.464959479574,-1209.6184197157468,0.292875148171159,-0.4668455739236988,0.10716553003450349,2163.1189606246307,-6657.395614066076,0 +161040,27853.79378103438,-1874.6795020321988,3360.0663765899135,-699.8378364300476,0.22928483646317396,-0.41095678958813037,0.0855944729233234,3068.598027523486,-6291.558324094197,0 +161160,13472.65718954688,-983.4594966749048,2013.6415724844792,-373.5851660110776,0.17294824892886615,-0.35411299103727056,0.06569757118200216,3914.3503242951256,-5803.263007885361,0 +161280,5830.022419001726,-464.3768679987161,1108.8995032853547,-179.04040990028074,0.12413985175977024,-0.2964372892809714,0.04786209537054473,4683.914244512019,-5202.0137783417495,0 +161400,2140.0766533377405,-188.3469662082445,539.5697398194432,-73.51695251353406,0.08309743456068963,-0.23805459704618198,0.032435192738067664,5362.311101832816,-4499.513267805811,0 +161520,598.2253939864759,-59.96135133267781,214.68123760997483,-23.63541154157425,0.05002095186265049,-0.17909135824379718,0.019717130396471015,5936.336673095031,-3709.4348496323564,0 +161640,96.21939592851726,-12.079350269071611,57.65896461682836,-4.796487821100323,0.02507154896451796,-0.11967527411930297,0.009955450962651286,6394.818203498138,-2847.156501530754,0 +161760,1.6746420831480657,-0.604735243175485,4.329923445186282,-0.24130485540648972,0.008370776849309858,-0.05993502668031472,0.0033401544230432087,6728.8318715682235,-1929.4614907190225,0 +161880,1,0.0000000000008430756093247282,-0.00000000000019442780718748054,0.00000000000007993605777301127,0.000000000000014051260155412137,-0.0000000000000032404634531246757,0.0000000000000013322676295501878,6931.87648119098,-974.2117067205472,0 +162000,1.518399999999188,-0.0000000000010066274859077297,-4.175999999998934,-0.00000000000010418973865317143,0.00000000000001446303859063121,0.05999999999999676,0.000000000000001496979003637817,7000,0.000000000048040817442225195,0 +162120,87.95936869204017,-3.856943732854213,-55.26161523974707,-1.5390193647061499,0.008370776849309388,0.11993502668030823,0.0033401544230430243,6931.876481190994,974.2117067204455,0 +162240,530.0288423387544,-28.290543232942056,-202.74419891474292,-11.23365438094449,0.02507154896451662,0.1796752741192965,0.009955450962650762,6728.831871568253,1929.4614907189234,0 +162360,1840.500587560262,-105.14401000009882,-502.56988773726613,-41.44539594672861,0.05002095186264828,0.2390913582437907,0.01971713039647017,6394.81820349818,2847.1565015306605,0 +162480,4886.049338742221,-284.5734513429317,-1020.7105167381776,-111.07677139784494,0.08309743456068822,0.29805459704617554,0.032435192738067095,5936.33667309498,3709.4348496324374,0 +162600,11054.682953674454,-639.4400153435495,-1835.9959553351036,-246.53597184360112,0.124139851759768,0.35643728928096496,0.04786209537054389,5362.311101832883,4499.513267805732,0 +162720,22483.19488983112,-1270.4443075787758,-3041.993749090288,-482.6016212760569,0.1729482489288631,0.4141129910372642,0.06569757118200108,4683.914244512095,5202.01377834168,0 +162840,42345.05063885642,-2311.4518293084307,-4747.77987768744,-862.8896008527977,0.22928483646317016,0.4709567895881239,0.08559447292332212,3914.350324295211,5803.263007885303,0 +162960,75193.5860447547,-3934.4133470142474,-7077.515012128686,-1439.635606982954,0.29287514817115445,0.5268455739236926,0.10716553003450206,3068.5980275235784,6291.558324094151,0 +163080,127347.91450371509,-6353.287710121596,-10168.814446841829,-2272.5596810034735,0.36340937844625054,0.5816583013822486,0.12999088642558565,2163.1189606247285,6657.395614066044,0 +163200,207300.52723501239,-9826.424729745522,-14169.971411340857,-3426.6665182883894,0.4405438916086355,0.6352762598016534,0.15362627249787866,1215.5372436684763,6893.654271085463,0 +163320,326117.4802844542,-14656.956267197818,-19236.157682615467,-4968.947949217683,0.523902896063715,0.6875833246234592,0.17761165234633697,244.296476917531,6995.73578913367,0 +163440,497795.55874720326,-21190.86532355599,-25524.778149717808,-6964.0787465045605,0.6130802751210018,0.7384662103928448,0.20148017783517555,-731.6992428734897,6961.653267577923,0 +163560,739536.9460436457,-29812.54418590488,-33190.19427009646,-9469.319852859338,0.7076415655538077,0.7878147161096846,0.2247672752657996,-1693.4532691975326,6792.070083932011,0 +163680,1071901.3731523498,-40937.8012527172,-42378.053678583994,-12528.95081220613,0.8071260742604127,0.8355219638993755,0.2470196877754025,-2622.246153911377,6490.286981967515,0 +163800,1518798.6744029368,-55004.42021989195,-53219.469536603894,-16168.634321972539,0.9110491227145451,0.8814846304865143,0.26780429746622914,-3499.9999999999404,6062.177826491105,0 +163920,2107290.857294829,-72460.5047680652,-65825.28492271811,-20390.16238626526,1.0189044082704446,0.9256031709701041,0.28671655555279074,-4309.630327279507,5516.0752752471335,0 +164040,2867181.5487912176,-93750.94931231432,-80280.63723051602,-25167.041459221677,1.1301664708184591,0.9677820344156437,0.30338835644380663,-5035.378602370563,4862.6085932129745,0 +164160,3830381.128168039,-119302.45752959752,-96640.00856351614,-30441.34317013057,1.2442932527738775,1.0079298707971753,0.3174952024988261,-5663.118960624601,4114.496766047354,0 +164280,5030047.068961263,-149507.58437451147,-114922.91433518293,-36122.18126705036,1.3607287399269967,1.0459597288410978,0.32876252000568784,-6180.633150012435,3286.300939501335,0 +164400,6499510.184293193,-184708.30626322975,-135110.34751624783,-42086.08064508964,1.4789056702884613,1.0817892443432653,0.33697100344550446,-6577.848345501299,2394.1410032798444,0 +164520,8271008.041065052,-225179.6325191008,-157142.06360255636,-48179.38884084878,1.5982482977326542,1.1153408185515101,0.3419608840251308,-6847.033205136632,1455.3818357243501,0 +164640,10374256.520924518,-271113.7648735365,-180914.7639869203,-54222.75297470642,1.7181751969749457,1.1465417862272633,0.3436350393949901,-6982.9483518187635,488.29531620897336,0 +164760,12834899.382796803,-322605.2969104897,-206281.21453446947,-60017.554383803006,1.8381020962172372,1.175324573022278,0.341960884025131,-6982.948351818767,-488.2953162089186,0 +164880,15672883.938745242,-379637.92711267946,-233050.32212703172,-65354.066809016076,1.95744472366143,1.2016268418296228,0.3369710034455048,-6847.033205136644,-1455.3818357242965,0 +165000,18900818.861426026,-442073.1411369635,-260988.18393564486,-70020.98847124708,2.0756216540228953,1.2253916277919723,0.328762520005689,-6577.848345501387,-2394.141003279606,0 +165120,22522377.860772375,-509641.302247285,-289820.12036703015,-73815.89896509852,2.192057141176015,1.2465674616748046,0.31749520249882746,-6180.633150012461,-3286.3009395012864,0 +165240,26530820.40796278,-581935.571956414,-319233.70043889363,-76556.11287599031,2.3061839231314334,1.265108481337302,0.3033883564438081,-5663.1189606246335,-4114.496766047309,0 +165360,30907707.391624775,-658409.0618954867,-348882.7648282991,-78089.34697598098,2.417445985679448,1.2809745310595342,0.28671655555279235,-5035.378602370602,-4862.608593212935,0 +165480,35621894.706311636,-738375.5868863964,-378392.44410618313,-78303.58997743994,2.5253012712353486,1.294131248510809,0.2678042974662313,-4309.630327279706,-5516.075275246977,0 +165600,40628890.076052,-821014.3413279064,-407365.1552740304,-77135.5660812905,2.6292243196894813,1.304550139170825,0.24701968777540476,-3499.999999999988,-6062.177826491077,0 +165720,45870656.45155609,-905378.749715527,-435387.53703344794,-74577.21855091664,2.7287088283960865,1.3122086380424605,0.22476727526580192,-2622.246153911428,-6490.286981967494,0 +165840,51275937.60530999,-990409.642222642,-462038.25272601296,-70679.70914786699,2.823270118828894,1.3170901585225323,0.2014801778351781,-1693.4532691977788,-6792.070083931949,0 +165960,56761166.83362678,-1074952.775174382,-486896.55031990324,-65554.53402390305,2.912447497886181,1.3191841283246823,0.17761165234633952,-731.6992428735442,-6961.653267577916,0 +166080,62231997.22273219,-1157780.5548134688,-509551.42320780177,-59371.495077375206,2.995806502341261,1.318486012376599,0.15362627249788122,244.29647691747618,-6995.7357891336715,0 +166200,67585461.7864449,-1237617.6358422372,-529611.1670793943,-52353.43364139011,3.0729410155036465,1.3149973226419702,0.12999088642558818,1215.5372436684224,-6893.654271085473,0 +166320,72712734.94335216,-1313169.8627155968,-546713.0807813448,-44767.82330391372,3.1434752457787445,1.3087256148459114,0.10716553003450432,2163.118960624487,-6657.395614066122,0 +166440,77502425.32871744,-1383155.814023971,-560533.0174184833,-36915.52004474871,3.2070655574867293,1.2996844721109424,0.0855944729233243,3068.5980275235293,-6291.558324094175,0 +166560,81844286.87578884,-1446340.0136575908,-570794.4605731554,-29117.167231622458,3.2634021450210366,1.2878934755389722,0.06569757118200314,3914.3503242951656,-5803.263007885334,0 +166680,85633194.26619759,-1501566.7032164368,-577276.7835893707,-21697.93491057436,3.3122105421901336,1.2733781618029922,0.047862095370545366,4683.914244511907,-5202.01377834185,0 +166800,88773194.45380664,-1547792.944486743,-579822.3506685712,-14971.421208316282,3.3532529593892137,1.2561699678403266,0.03243519273806843,5362.311101832847,-4499.5132678057735,0 +166920,91181422.14438546,-1584119.752961175,-578342.1390743528,-9223.643554741984,3.3863294420872525,1.2363061627672294,0.019717130396471917,5936.3366730950565,-3709.4348496323155,0 +167040,92791657.3830062,-1609819.9640232283,-572819.6025299915,-4698.086682086722,3.4112788449853846,1.2138297671622744,0.009955450962652337,6394.818203498158,-2847.1565015307106,0 +167160,93557310.15036418,-1624361.6084027118,-563312.5557373794,-1582.745295176619,3.427979617100594,1.1887894598933655,0.003340154423043763,6728.831871568183,-1929.4614907191674,0 +167280,93453640.94351345,-1627425.7229899224,-549952.9360377426,-0.00000000032541483396819615,3.436350393949891,1.1612394726901454,0.0000000000000013739009929736312,6931.876481190959,-974.2117067206968,0 +167400,92479066.77773783,-1618917.7411886756,-532944.3863161833,-0.000000009713386382291682,3.43635039394989,1.1312394726901456,0.0000000000000017032643190077773,7000,0.00000000009606430342662591,0 +167520,90655456.15616879,-1598971.8820395959,-512557.6979504746,-1558.0060562453223,3.4279796171005965,1.0988544332130548,0.003340154423042718,6931.876481191015,974.211706720296,0 +167640,88027379.99759707,-1567948.2727739806,-489124.24787090387,-4575.888647897481,3.4112788449853904,1.0641544930429758,0.009955450962649959,6728.8318715682935,1929.4614907187786,0 +167760,84660352.84452124,-1526422.8751042564,-463027.65341811,-8887.699612013004,3.3863294420872583,1.0272148045234364,0.019717130396469516,6394.81820349816,2847.1565015307046,0 +167880,80638163.92489609,-1475170.6193934127,-434693.94680920814,-14268.963284619764,3.3532529593892177,0.9881153707941494,0.03243519273806659,5936.336673094955,3709.4348496324787,0 +168000,76059455.01347904,-1415142.4608950196,-404580.6326601474,-20449.087569615986,3.3122105421901393,0.9469408725220254,0.04786209537054299,5362.31110183298,4499.513267805616,0 +168120,71033746.57552688,-1347437.3384970785,-373165.03345459636,-27126.09617979404,3.2634021450210455,0.9037804845017067,0.06569757118199984,4683.914244512207,5202.013778341579,0 +168240,65677141.82176309,-1273270.2224871973,-340932.3469641183,-33982.74579337311,3.207065557486738,0.8587276825228167,0.08559447292332098,3914.3503242951715,5803.26300788533,0 +168360,60107948.27282098,-1193937.5724447444,-308363.83600497333,-40703.02540188964,3.1434752457787534,0.8118800409222175,0.107165530034501,3068.598027523535,6291.558324094172,0 +168480,54442448.335131645,-1110781.5839654484,-275925.54587271716,-46988.04239860154,3.0729410155036585,0.7633390212597208,0.1299908864255844,2163.1189606248718,6657.395614065997,0 +168600,48791026.118830085,-1025154.5841422388,-244057.9011814516,-52570.37708303058,2.9958065023412734,0.7132097525749445,0.15362627249787744,1215.5372436684293,6893.654271085471,0 +168720,43254820.614674605,-938384.8469271209,-213166.47574200958,-57226.12452944004,2.912447497886194,0.6616008037012227,0.17761165234633575,244.29647691748303,6995.7357891336715,0 +168840,37923029.67361442,-851744.9519183616,-183614.1614572517,-60784.026026496154,2.8232701188289067,0.6086239481296873,0.20148017783517433,-731.6992428735375,6961.653267577917,0 +168960,32870939.66162302,-766423.6185450901,-155714.89025337776,-63131.30468412248,2.7287088283961007,0.5543939219327763,0.22476727526579832,-1693.4532691975792,6792.070083931999,0 +169080,28158706.674780846,-683501.7288041085,-129728.99191814786,-64216.04363642666,2.6292243196894955,0.49902817527144966,0.24701968777540118,-2622.2461539114215,6490.286981967496,0 +169200,23830870.61987224,-603933.0226526882,-105860.20489334637,-64046.16379456351,2.525301271235363,0.4426466180242953,0.26780429746622775,-3499.9999999999823,6062.177826491081,0 +169320,19916546.12765817,-528529.7265487418,-84254.3001061255,-62685.25692031933,2.4174459856794632,0.3853713600894316,0.28671655555278924,-4309.630327279544,5516.0752752471035,0 +169440,16430205.848385194,-457953.17044732074,-64999.23212346751,-60245.69780262231,2.3061839231314485,0.3273264469216597,0.303388356443805,-5035.378602370597,4862.60859321294,0 +169560,13372952.712831074,-392709.2711722827,-48126.69822394969,-56879.589145708735,2.19205714117603,0.26863759087763134,0.3174952024988244,-5663.11896062463,4114.496766047315,0 +169680,10734167.763356132,-333148.61575052777,-33614.96402499908,-52768.18067409724,2.075621654022911,0.20943189895087666,0.32876252000568595,-6180.633150012458,3286.3009395012928,0 +169800,8493417.966728168,-279470.7682312063,-21392.802551840578,-48110.44933539743,1.957444723661446,0.14983759748636016,0.3369710034455024,-6577.848345501316,2394.141003279799,0 +169920,6622512.385065397,-231732.34537141692,-11344.389689642649,-43111.53218502175,1.8381020962172532,0.0899837544707707,0.3419608840251286,-6847.033205136642,1455.3818357243033,0 +170040,5087603.456790146,-189858.3553496648,-3314.9999316248604,-37971.67106993248,1.7181751969749617,0.030000000000003003,0.34363503939498774,-6982.948351818766,488.2953162089255,0 +170160,3851241.327426708,-153656.26284143789,2882.650752369827,-32876.26306362849,1.5982482977326702,-0.02998375447076472,0.3419608840251291,-6982.948351818777,-488.2953162087681,0 +170280,2874301.906909514,-122832.2265340492,7461.565904718072,-27987.51770459448,1.4789056702884773,-0.0898375974863542,0.3369710034455028,-6847.033205136634,-1455.3818357243435,0 +170400,2117722.7792257955,-97008.94550454272,10653.284902869791,-23438.106693387293,1.3607287399270123,-0.14943189895087075,0.32876252000568684,-6577.84834550137,-2394.141003279651,0 +170520,1543994.8366207313,-75744.54465820221,12700.510337398526,-19327.05934941464,1.2442932527738926,-0.20863759087762554,0.31749520249882573,-6180.6331500125325,-3286.3009395011536,0 +170640,1118371.4707690375,-58551.92483052713,13849.710135209554,-15718.013849844705,1.1301664708184738,-0.267326446921654,0.3033883564438068,-5663.118960624723,-4114.4967660471875,0 +170760,809771.4258865303,-44918.000961365025,14343.868714932545,-12639.78682732425,1.0189044082704592,-0.32537136008942596,0.2867165555527909,-5035.378602370569,-4862.60859321297,0 +170880,591366.1081932817,-34322.2550488047,14415.572651297094,-10089.079909779655,0.911049122714559,-0.38264661802428984,0.26780429746622975,-4309.630327279668,-5516.075275247007,0 +171000,440857.1960658405,-26254.044174713148,14280.625388148677,-8035.009649293945,0.8071260742604257,-0.4390281752714445,0.24701968777540345,-3500.0000000001187,-6062.177826491002,0 +171120,340465.4655726701,-20228.13333933835,14132.389421172142,-6425.035831294177,0.7076415655538207,-0.49439392193277104,0.22476727526580056,-2622.2461539113833,-6490.286981967512,0 +171240,276666.16125677223,-15797.9734296784,14137.050084880317,-5191.780954653479,0.6130802751210138,-0.5486239481296825,0.2014801778351767,-1693.4532691977322,-6792.070083931961,0 +171360,239719.02480033567,-12566.320269267717,14429.980117229197,-4260.188144992472,0.5239028960637258,-0.6016008037012182,0.17761165234633816,-731.6992428736944,-6961.653267577901,0 +171480,223051.08493638612,-10192.892912865584,15113.35688556198,-3554.461142238817,0.44054389160864493,-0.6532097525749403,0.15362627249787983,244.29647691732538,-6995.735789133677,0 +171600,222556.3555827692,-8398.89670569291,16255.144030403862,-3004.2703697901748,0.3634093784462599,-0.7033390212597166,0.12999088642558682,1215.5372436684697,-6893.654271085464,0 +171720,235877.7576466118,-6968.384366454842,17889.497129847885,-2549.7916391282574,0.29287514817116245,-0.7518800409222137,0.10716553003450302,2163.1189606245325,-6657.395614066108,0 +171840,261732.3879258561,-5746.588553363308,20018.590973752223,-2145.26274794161,0.22928483646317666,-0.7987276825228133,0.08559447292332276,3068.5980275233933,-6291.5583240942415,0 +171960,299331.82698340825,-4635.5215137113355,22615.797575181525,-1760.8880488752663,0.17294824892886956,-0.8437804845017032,0.0656975711820017,3914.3503242952056,-5803.263007885307,0 +172080,347935.3069646851,-3587.2893319105883,25630.0735414987,-1383.0786946474952,0.12413985175977285,-0.8869408725220225,0.04786209537054404,4683.914244511942,-5202.013778341818,0 +172200,406556.6874420255,-2595.6973794098294,28991.347909794025,-1013.1714081902423,0.08309743456069141,-0.928115370794147,0.03243519273806671,5362.311101832751,-4499.513267805889,0 +172320,473828.2269535278,-1686.8181536794625,32616.642227392327,-664.9056495876811,0.05002095186264978,-0.9672148045234346,0.019717130396469176,5936.336673094871,-3709.4348496326124,0 +172440,548007.2233990338,-909.2433361073879,36416.60842390259,-361.04380541241,0.025071548964519727,-1.004154493042974,0.00995545096265037,6394.818203498258,-2847.156501530485,0 +172560,627097.7652111849,-324.7425413729656,40302.140987781444,-129.58059394524614,0.00837077684931075,-1.0388544332130536,0.0033401544230419545,6728.831871568195,-1929.4614907191212,0 +172680,709050.7112888029,-0.0000000005801427260443419,44190.71104071478,0.000000000011217142260694932,0.000000000000014063403219743975,-1.0712394726901444,-0.0000000000000002719179048593645,6931.876481190965,-974.2117067206492,0 +172800,792001.5507350246,-0.0000000006669848380695508,48012.082502892445,-0.000000000009683050477593597,0.00000000000001529844141469563,-1.101239472690144,0.00000000000000022209737312129825,7000,0.00000000014408778941102664,0 +172920,874508.103705395,-383.4894569710034,51713.10438704702,-153.0221183709042,0.008370776849311047,-1.1287894598933648,0.003340154423042076,6931.8764811909805,974.2117067205406,0 +173040,955757.3849533859,-1200.7724965672114,55261.3263779523,-476.80467304957847,0.025071548964517403,-1.1538297671622744,0.009955450962649475,6728.831871568281,1929.4614907188247,0 +173160,1035721.9119461623,-2493.901288775756,58647.25372230935,-983.039607917392,0.05002095186264653,-1.176306162767229,0.019717130396467938,6394.818203498303,2847.1565015303845,0 +173280,1115258.3722041668,-4299.1349757428,61885.13728326775,-1678.0695130044924,0.08309743456068726,-1.1961699678403264,0.032435192738065145,5936.336673094929,3709.434849632519,0 +173400,1196153.786035088,-6651.35983672096,65012.27976160928,-2564.43047366438,0.12413985175976783,-1.213378161802992,0.047862095370542194,5362.311101832821,4499.513267805805,0 +173520,1281134.2093372748,-9590.012844351611,68086.92354415134,-3642.942645445519,0.17294824892886212,-1.2278934755389725,0.06569757118199915,4683.9142445121715,5202.013778341612,0 +173640,1373857.1912172695,-13165.938726094226,71184.86355779957,-4914.985234890493,0.22928483646316988,-1.2396844721109417,0.08559447292332037,3914.350324295131,5803.263007885356,0 +173760,1478910.8832399494,-17448.545008375237,74394.9946924717,-6384.572353884525,0.2928751481711549,-1.2487256148459105,0.10716553003450047,3068.598027523492,6291.558324094193,0 +173880,1601839.8913707763,-22532.603363181785,77814.05370948336,-8059.872029662857,0.36340937844625165,-1.25499732264197,0.12999088642558415,2163.118960624637,6657.395614066073,0 +174000,1749211.3605532702,-28544.077473520192,81540.84739536332,-9953.878166680237,0.4405438916086346,-1.2584860123765993,0.153626272497877,1215.5372436687737,6893.65427108541,0 +174120,1928725.6010361756,-35644.43202870086,85670.2709813416,-12084.04556861673,0.5239028960637148,-1.2591841283246825,0.1776116523463353,244.29647691743503,6995.735789133672,0 +174240,2149365.30230226,-44032.985457489856,90287.41408790425,-14470.81907640475,0.6130802751210022,-1.2570901585225325,0.20148017783517386,-731.6992428735853,6961.653267577913,0 +174360,2421567.5497218925,-53946.999493554205,95462.02774201527,-17135.115678856488,0.7076415655538085,-1.2522086380424613,0.22476727526579782,-1693.4532691976258,6792.070083931988,0 +174480,2757394.7570925844,-65659.33961960804,101243.588662807,-20094.939427197063,0.8071260742604139,-1.2445501391708256,0.2470196877754006,-2622.246153911466,6490.286981967479,0 +174600,3170675.163586257,-79473.68025529575,107657.1501929301,-23361.411121729234,0.9110491227145467,-1.2341312485108094,0.2678042974662271,-3500.000000000024,6062.177826491057,0 +174720,3677081.1587277204,-95717.35726858696,114700.11755435524,-26934.56889567258,1.0189044082704466,-1.2209745310595352,0.28671655555278847,-4309.630327279581,5516.075275247074,0 +174840,4294114.385292871,-114732.08059115868,122340.03305880223,-30799.336434676836,1.1301664708184607,-1.2051084813373036,0.30338835644380463,-5035.378602370492,4862.608593213049,0 +174960,5040969.961295223,-136862.80711180324,130513.40853156039,-34922.060825814195,1.2442932527738793,-1.186567461674807,0.31749520249882385,-5663.118960624658,4114.496766047277,0 +175080,5938257.677717984,-162445.13755788357,139125.60066573528,-39247.99353401243,1.3607287399269987,-1.1653916277919747,0.3287625200056853,-6180.633150012481,3286.3009395012505,0 +175200,7007565.030118508,-191791.64264039596,148051.6923260991,-43700.0300772324,1.4789056702884635,-1.1416268418296256,0.33697100344550157,-6577.848345501332,2394.141003279754,0 +175320,8270854.871530475,-225177.54747596406,157138.31971485278,-48178.942725437584,1.5982482977326564,-1.1153245730222807,0.3419608840251276,-6847.033205136652,1455.3818357242562,0 +175440,9749698.944289802,-262826.214650496,166206.37129233603,-52565.24293009901,1.718175196974948,-1.0865417862272662,0.3436350393949866,-6982.948351818769,488.2953162088775,0 +175560,11464357.373574158,-304894.8708990019,175054.47781649308,-56722.703163178965,1.8381020962172394,-1.0553408185515132,0.34196088402512775,-6982.948351818774,-488.295316208816,0 +175680,13432723.367085464,-351461.0250111901,183463.21141092363,-60503.457818454684,1.9574447236614323,-1.0217892443432686,0.33697100344550196,-6847.033205136665,-1455.381835724196,0 +175800,15669161.925839119,-402510.0282068056,191199.9123238231,-63754.4954035112,2.075621654022897,-0.9859597288411014,0.32876252000568584,-6577.848345501354,-2394.141003279696,0 +175920,18183281.35408272,-457924.2334179562,198024.0620853076,-66325.25424960267,2.192057141176017,-0.947929870797179,0.3174952024988246,-6180.63315001251,-3286.300939501196,0 +176040,20978686.619592324,-517474.21457833203,203693.11855652236,-68075.94567296753,2.3061839231314356,-0.9077820344156475,0.3033883564438056,-5663.118960624694,-4114.496766047227,0 +176160,24051773.7433448,-580812.5066030775,207968.72005949548,-68886.15600998027,2.41744598567945,-0.8656031709701075,0.2867165555527896,-5035.378602370536,-4862.6085932130045,0 +176280,27390633.638707813,-647470.3148434618,210623.15154182643,-68663.22635321342,2.52530127123535,-0.8214846304865179,0.2678042974662283,-4309.63032727963,-5516.075275247036,0 +176400,30974141.09050444,-716857.612099004,211445.94586623082,-67349.88041683458,2.629224319689483,-0.7755219638993796,0.24701968777540192,-3500.000000000077,-6062.177826491026,0 +176520,34771308.523525,-788266.9847014417,210250.46927646914,-64930.5710047022,2.7287088283960887,-0.7278147161096887,0.22476727526579923,-2622.2461539115234,-6490.286981967455,0 +176640,38740983.4145076,-860881.5011799791,206880.31435871407,-61436.047792940146,2.8232701188288956,-0.6784662103928488,0.20148017783517533,-1693.4532691976856,-6792.0700839319725,0 +176760,42831961.31751684,-933786.7546532967,201215.2996405949,-56945.71612139527,2.912447497886183,-0.6275833246234633,0.1776116523463368,-731.6992428736465,-6961.653267577906,0 +176880,46983572.52606841,-1005987.0740000985,193176.85601099802,-51587.45874905675,2.9958065023412637,-0.5752762598016579,0.1536262724978785,244.29647691737335,-6995.735789133675,0 +177000,51126779.022120684,-1076425.7137411772,182732.5700563012,-45534.727804586655,3.0729410155036483,-0.5216583013822529,0.1299908864255855,1215.537243668517,-6893.654271085456,0 +177120,55185790.015316755,-1144008.6272546994,169899.6564014845,-39000.87683795969,3.1434752457787454,-0.4668455739236968,0.10716553003450177,2163.1189606245784,-6657.395614066093,0 +177240,59080170.44805041,-1207631.2149496747,154747.1475734508,-32230.88380219009,3.2070655574867306,-0.41095678958812837,0.08559447292332159,3068.598027523437,-6291.558324094221,0 +177360,62727379.66535712,-1266207.2335873453,137396.62194030627,-25490.80259283488,3.263402145021039,-0.35411299103726884,0.06569757118200024,3914.35032429508,-5803.263007885392,0 +177480,66045640.15336725,-1318698.8717218977,118021.33769329463,-19055.458691235883,3.3122105421901353,-0.2964372892809696,0.04786209537054269,4683.914244511978,-5202.013778341786,0 +177600,68957002.47923101,-1364146.8557009192,96843.70191530265,-13195.0576719227,3.3532529593892164,-0.23805459704618015,0.03243519273806548,5362.311101832782,-4499.513267805853,0 +177720,71390446.0723936,-1401699.3654220623,74131.07540067703,-8161.488608042624,3.386329442087258,-0.17909135824379543,0.019717130396468087,5936.3366730948965,-3709.434849632572,0 +177840,73284839.66274999,-1430638.5202232983,50189.99174606844,-4175.164881140979,3.4112788449853877,-0.11967527411930122,0.009955450962649432,6394.818203498277,-2847.156501530441,0 +177960,74591582.58755036,-1450403.249250217,25358.948170920015,-1413.2437672645594,3.427979617100596,-0.059935026680312926,0.003340154423041173,6728.831871568209,-1929.4614907190753,0 +178080,75276760.10306482,-1460607.4880924888,0.0000000006164141719397244,0.0000000003782541509630197,3.4363503939498923,-0.0000000000000014502288259166107,-0.000000000000000889913143176102,6931.876481190972,-974.2117067206017,0 +178200,75322672.08513361,-1461052.8391035474,-25510.544704798507,0.0000000009211849384649168,3.436350393949894,0.05999999999999855,-0.000000000000001595487965908315,7000,-0.00000000020579265663022876,0 +178320,74728633.28560066,-1451735.0855437769,-50791.98410307392,-1414.5414817739052,3.427979617100598,0.11993502668031003,0.003340154423040421,6931.876481190974,974.211706720588,0 +178440,73510991.39549777,-1432844.2435189758,-75469.25769582852,-4181.602047699249,3.4112788449853912,0.1796752741192983,0.00995545096264798,6728.831871568267,1929.461490718871,0 +178560,71702362.21735403,-1404758.1510232976,-99182.77003940237,-8179.298592446616,3.386329442087262,0.23909135824379255,0.01971713039646659,6394.818203498283,2847.1565015304286,0 +178680,69350134.33982728,-1368029.90874288,-121597.62718042824,-13232.617490804765,3.353252959389221,0.2980545970461773,0.032435192738063945,5936.336673094903,3709.43484963256,0 +178800,66514343.9065453,-1323369.7811354785,-142411.942567025,-19122.954253179883,3.3122105421901398,0.35643728928096685,0.04786209537054112,5362.31110183279,4499.513267805842,0 +178920,63265059.0353994,-1271622.4190737202,-161363.92023768378,-25599.819048100813,3.263402145021045,0.41411299103726595,0.06569757118199819,4683.914244512136,5202.013778341644,0 +179040,59679439.92686187,-1213740.4610249095,-178237.48865472557,-32393.93556661231,3.20706555748674,0.4709567895881258,0.08559447292331875,3914.350324295422,5803.263007885162,0 +179160,55838652.89338956,-1150755.6972691577,-192866.33371389416,-39230.894025225265,3.1434752457787547,0.5268455739236944,0.10716553003449891,3068.5980275234488,6291.558324094214,0 +179280,51824814.223101355,-1083749.0357193039,-205136.2587374057,-45844.517387498825,3.0729410155036576,0.5816583013822506,0.12999088642558265,2163.118960624591,6657.395614066088,0 +179400,47718124.246798635,-1013820.4891969592,-214985.87708651694,-51989.15971895223,2.9958065023412743,0.6352762598016554,0.15362627249787553,1215.5372436687264,6893.654271085419,0 +179520,43594325.741532475,-942060.3188978181,-222405.7142776723,-57450.26819223127,2.9124474978861965,0.6875833246234614,0.1776116523463338,244.29647691778467,6995.735789133661,0 +179640,39522587.25174858,-869522.3283822394,-227435.85688454896,-62052.692792562244,2.823270118828909,0.738466210392847,0.20148017783517233,-731.699242873633,6961.653267577907,0 +179760,35563874.78280157,-797200.1213519647,-230162.33199738766,-65666.40502393339,2.728708828396102,0.787814716109687,0.22476727526579626,-1693.4532691976724,6792.070083931976,0 +179880,31769838.25842017,-726006.9311891377,-230712.4319553477,-68209.47308379316,2.629224319689498,0.8355219638993779,0.2470196877753995,-2622.246153911142,6490.28698196761,0 +180000,28182205.262930226,-656759.4173930297,-229249.21432286233,-69648.3213241446,2.525301271235365,0.8814846304865165,0.2678042974662259,-3500.0000000000655,6062.177826491033,0 +180120,24832646.247378815,-590165.6188977169,-225965.40790785308,-69995.46399729612,2.417445985679465,0.9256031709701064,0.2867165555527872,-4309.630327279619,5516.075275247044,0 +180240,21743053.96722868,-526817.0692953994,-221076.94445952814,-69305.03816150424,2.3061839231314507,0.9677820344156466,0.30338835644380324,-5035.378602370526,4862.6085932130145,0 +180360,18926165.90283196,-467184.92305555823,-214816.31581973663,-67666.56259258691,2.192057141176033,1.0079298707971782,0.3174952024988229,-5663.118960624569,4114.4967660473985,0 +180480,16386451.44154168,-411619.81962210045,-207425.93144713977,-65197.41636003767,2.075621654022913,1.0459597288411007,0.3287625200056842,-6180.6331500125025,3286.300939501208,0 +180600,14121184.711389355,-360355.1244163293,-199151.62508823368,-62034.56291943695,1.957444723661448,1.0817892443432682,0.33697100344550035,-6577.848345501349,2394.141003279709,0 +180720,12121627.828694308,-313513.1293485478,-190236.43519795313,-58326.04570015093,1.8381020962172554,1.1153408185515137,0.34196088402512687,-6847.03320513662,1455.381835724404,0 +180840,10374256.52092483,-271113.76487354306,-180914.76398692364,-54222.75297470998,1.718175196974964,1.1465417862272662,0.3436350393949857,-6982.9483518187735,488.2953162088296,0 +180960,8861969.276708221,-233085.36384844524,-171407.0061151023,-49870.897524499276,1.5982482977326724,1.175324573022281,0.3419608840251267,-6982.948351818771,-488.2953162088639,0 +181080,7565231.2737575155,-199277.01714532648,-161914.73031194613,-45405.58453467008,1.4789056702884795,1.201626841829626,0.33697100344550074,-6847.033205136655,-1455.3818357242428,0 +181200,6463114.588370193,-169472.0657293957,-152616.49467369384,-40945.753378261055,1.3607287399270143,1.2253916277919763,0.3287625200056851,-6577.848345501405,-2394.1410032795543,0 +181320,5534206.1746835075,-143402.27918714553,-143664.3771604423,-36590.67954263764,1.2442932527738948,1.2465674616748081,0.31749520249882374,-6180.633150012487,-3286.300939501238,0 +181440,4757364.666354163,-120762.27438678352,-135181.30425658447,-32418.11617370659,1.1301664708184762,1.2651084813373052,0.3033883564438045,-5663.118960624665,-4114.496766047266,0 +181560,4112316.210765151,-101223.73063449797,-127259.2598767171,-28484.045364953232,1.0189044082704612,1.280974531059538,0.28671655555278885,-5035.37860237064,-4862.608593212896,0 +181680,3580088.348222102,-84448.96232789027,-119958.45045896152,-24823.90297527159,0.9110491227145613,1.2941312485108123,0.26780429746622747,-4309.630327279592,-5516.075275247066,0 +181800,3143289.368608484,-70103.42146880671,-113307.48832179912,-21455.04380970441,0.8071260742604285,1.3045501391708278,0.247019687775401,-3500.000000000036,-6062.17782649105,0 +181920,2786248.4238776723,-57866.72612647704,-107304.6321395394,-18380.13337984315,0.707641565553823,1.3122086380424638,0.22476727526579823,-2622.246153911479,-6490.286981967474,0 +182040,2495038.557813392,-47441.852479778936,-101920.09030279297,-15591.095101810952,0.6130802751210155,1.317090158522536,0.20148017783517447,-1693.453269197832,-6792.070083931936,0 +182160,2257410.1792536117,-38562.1915577414,-97099.35073579117,-13073.213780885904,0.523902896063728,1.3191841283246866,0.1776116523463359,-731.6992428735989,-6961.653267577911,0 +182280,2062665.7205376755,-30996.259127720412,-92767.4514942649,-10809.001876707835,0.44054389160864776,1.3184860123766027,0.1536262724978776,244.29647691742136,-6995.735789133673,0 +182400,1901506.7199506573,-24549.95730155282,-88834.05337677758,-8781.475934889957,0.3634093784462621,1.3149973226419744,0.12999088642558454,1215.5372436683683,-6893.654271085482,0 +182520,1765881.9938866713,-19066.415049302937,-85199.12295092815,-6976.564885669913,0.2928751481711653,1.3087256148459152,0.10716553003450084,2163.118960624624,-6657.3956140660775,0 +182640,1648859.9292167379,-14423.574519181455,-81758.98643836225,-5384.4740789817215,0.22928483646318018,1.2996844721109466,0.08559447292332073,3068.59802752348,-6291.5583240942,0 +182760,1544539.6880180135,-10529.830891745067,-78412.47649511928,-3999.9498048075284,0.17294824892887228,1.2878934755389768,0.06569757118199948,3914.35032429512,-5803.2630078853645,0 +182880,1448006.1991349948,-7318.163849291661,-75066.86932587245,-2821.5166292436934,0.12413985175977477,1.2733781618029973,0.04786209537054158,4683.914244511866,-5202.013778341887,0 +183000,1355323.5222890042,-4739.30659556693,-71643.30216946054,-1849.8804889062967,0.0830974345606941,1.256169967840332,0.0324351927380645,5362.311101832813,-4499.513267805815,0 +183120,1263552.033160224,-2754.5726051735346,-68081.3731197397,-1085.790358245724,0.05002095186265326,1.2363061627672352,0.019717130396467254,5936.336673094922,-3709.4348496325306,0 +183240,1170768.391409674,-1328.9920231710275,-64342.657102241676,-527.7182887723377,0.02507154896452068,1.2138297671622806,0.009955450962647503,6394.8182034981355,-2847.1565015307606,0 +183360,1076064.6297985262,-425.3933186623998,-60412.922556459685,-169.74283276686504,0.00837077684931252,1.1887894598933715,0.0033401544230394027,6728.831871568223,-1929.4614907190291,0 +183480,979504.6242139625,-0.0000000008075244906888828,-56302.900287721786,0.00000000012107400316077984,0.000000000000016655080092853325,1.161239472690151,-0.000000000000002497134443668614,6931.876481190979,-974.211706720554,0 +183600,882022.6568713328,-0.0000000007040698516261195,-52047.534918562174,0.0000000001397788867662368,0.000000000000015302772915889086,1.1312394726901516,-0.0000000000000030380573144543102,7000,-0.00000000015776917064582805,0 +183720,785258.999874006,-363.39419457450725,-47703.735137208336,-145.0035938318625,0.00837077684930847,1.098854433213061,0.0033401544230377907,6931.876481191023,974.2117067202416,0 +183840,691339.9770501415,-1021.2516697470697,-43346.72558233436,-405.5202545752709,0.02507154896451733,1.0641544930429818,0.009955450962646162,6728.8318715682,1929.461490719108,0 +183960,602622.8850107999,-1902.306811409359,-39065.18462086029,-749.8464155107473,0.05002095186264727,1.0272148045234426,0.019717130396464923,6394.818203498264,2847.1565015304723,0 +184080,521437.3654393988,-2939.6425140986676,-34955.42272968227,-1147.4225652075504,0.0830974345606855,0.9881153707941553,0.03243519273806125,5936.336673095089,3709.434849632263,0 +184200,449862.3748081465,-4079.030197135851,-31114.910797496155,-1572.6692882832847,0.12413985175976683,0.9469408725220311,0.04786209537053855,5362.31110183276,4499.513267805879,0 +184320,389580.3321558978,-5288.354750200073,-27635.502804764747,-2008.8787529720526,0.17294824892886343,0.9037804845017121,0.06569757118199618,4683.914244511952,5202.0137783418095,0 +184440,341846.6058325373,-6567.452019173296,-24596.710970943095,-2451.699827609873,0.2292848364631689,0.8587276825228225,0.08559447292331682,3914.3503242953816,5803.263007885188,0 +184560,307603.3453479863,-7957.635132311197,-22059.383246438632,-2911.76698364624,0.29287514817115173,0.811880040922223,0.10716553003449646,3068.5980275237634,6291.558324094061,0 +184680,287752.7293290321,-9550.186546248247,-20060.10434356247,-3416.0846921017805,0.3634093784462491,0.763339021259726,0.12999088642558024,2163.1189606245457,6657.395614066103,0 +184800,283587.61960882484,-11493.143288221683,-18606.595249726048,-4007.883882366971,0.440543891608634,0.7132097525749499,0.15362627249787325,1215.5372436684831,6893.654271085462,0 +184920,297359.43683055864,-13995.797426997138,-17674.32647483366,-4744.804286424882,0.5239028960637122,0.6616008037012283,0.17761165234633153,244.29647691773667,6995.7357891336615,0 +185040,332945.95577606227,-17330.462884301167,-17204.49208951752,-5695.411980438706,0.6130802751210002,0.6086239481296924,0.20148017783517005,-731.6992428736808,6961.653267577902,0 +185160,396567.592239037,-21831.211622353963,-17103.4201790978,-6934.219513048606,0.7076415655538071,0.5543939219327811,0.22476727526579393,-1693.453269197719,6792.070083931964,0 +185280,497491.0732709016,-27889.444412353532,-17243.425777298125,-8535.521364839575,0.807126074260412,0.4990281752714547,0.24701968777539685,-2622.2461539113706,6490.286981967517,0 +185400,648654.9652241744,-35946.321634761465,-17465.049145353747,-10566.476792391859,0.9110491227145435,0.4426466180243005,0.26780429746622386,-3499.999999999762,6062.177826491208,0 +185520,867152.5126113556,-46482.22736535387,-17580.568927147426,-13079.955309289715,1.0189044082704437,0.38537136008943645,0.2867165555527851,-4309.630327279657,5516.075275247015,0 +185640,1174513.1379840167,-60003.567437302256,-17378.638491772766,-16107.701100338372,1.1301664708184582,0.3273264469216646,0.303388356443801,-5035.378602370559,4862.608593212979,0 +185760,1596733.8438540823,-77027.30448108843,-16629.86555739051,-19654.36972324877,1.2442932527738766,0.2686375908776364,0.3174952024988205,-5663.118960624597,4114.496766047359,0 +185880,2164024.4853211376,-98063.70867695186,-15093.139524253747,-23692.94558110639,1.3607287399269963,0.20943189895088166,0.3287625200056817,-6180.633150012525,3286.300939501166,0 +186000,2910245.2810101253,-123597.85366457021,-12522.506214989506,-28161.967061047526,1.4789056702884613,0.14983759748636505,0.3369710034454977,-6577.848345501366,2394.141003279664,0 +186120,3872030.0139538655,-154070.41663404324,-8674.393435160111,-32964.87532571718,1.5982482977326542,0.0899837544707756,0.34196088402512403,-6847.03320513663,1455.381835724357,0 +186240,5087603.456789957,-189858.3553496595,-3314.999931624809,-37971.67106993126,1.7181751969749457,0.030000000000007902,0.3436350393949834,-6982.948351818763,488.2953162089802,0 +186360,6595316.285971535,-231256.0383073378,3772.328145840143,-43022.9199229307,1.8381020962172372,-0.029983754470759807,0.34196088402512426,-6982.948351818767,-488.2953162089118,0 +186480,8431935.061351962,-278457.40218828875,12779.898054078261,-47935.99997894204,1.95744472366143,-0.08983759748634924,0.33697100344549813,-6847.033205136645,-1455.3818357242899,0 +186600,10630738.837520355,-331539.70633581735,23868.80470212465,-52513.341786375735,2.0756216540228953,-0.14943189895086584,0.32876252000568235,-6577.848345501388,-2394.1410032795993,0 +186720,13219487.736175919,-390449.4479160532,37162.54957158536,-56552.27877187259,2.192057141176015,-0.20863759087762057,0.3174952024988208,-6180.633150012465,-3286.300939501281,0 +186840,16218342.260937808,-454990.99192908115,52741.29441011876,-59856.01055212597,2.3061839231314334,-0.267326446921649,0.30338835644380147,-5663.118960624638,-4114.496766047304,0 +186960,19637824.865853544,-524818.4531355172,70636.90146885935,-62245.088438352075,2.417445985679448,-0.3253713600894208,0.2867165555527857,-5035.378602370607,-4862.60859321293,0 +187080,23476926.466941256,-599431.3362871048,90828.91462523711,-63568.76691194998,2.5253012712353486,-0.38264661802428485,0.26780429746622464,-4309.630327279711,-5516.0752752469725,0 +187200,27721468.9583434,-678174.3899727098,113241.63659824323,-63715.53192088162,2.6292243196894813,-0.43902817527143934,0.2470196877753981,-3499.999999999994,-6062.1778264910745,0 +187320,32342838.773156054,-760242.0513839495,137742.45368013432,-62622.12100236739,2.7287088283960865,-0.49439392193276605,0.22476727526579526,-2622.2461539114342,-6490.286981967492,0 +187440,37297204.37781614,-844687.7493622819,164141.54809392896,-60280.395000708726,2.823270118828894,-0.5486239481296773,0.20148017783517144,-1693.4532691977854,-6792.070083931947,0 +187560,42525320.68788292,-930438.1888677691,192193.11682816967,-56741.508388004004,2.912447497886181,-0.6016008037012127,0.17761165234633286,-731.699242873551,-6961.653267577916,0 +187680,47953004.54641864,-1016312.5627151644,221598.18303056288,-52116.95434290318,2.995806502341261,-0.6532097525749347,0.15362627249787456,244.29647691746933,-6995.7357891336715,0 +187800,53492337.15150103,-1101046.431320498,252009.04132536118,-46576.22807628596,3.0729410155036465,-0.7033390212597113,0.1299908864255815,1215.5372436684156,-6893.654271085473,0 +187920,59043612.18425566,-1183319.7876522848,283035.3226286168,-40341.050057371176,3.1434752457787445,-0.7518800409222082,0.10716553003449764,2163.1189606244807,-6657.395614066125,0 +188040,64498004.043924436,-1261788.5955762765,314251.599386745,-33676.3087137013,3.2070655574867293,-0.7987276825228076,0.0855944729233176,3068.5980275235233,-6291.558324094179,0 +188160,69740881.86303148,-1335118.8709930968,345206.3821042358,-26878.105475699627,3.2634021450210366,-0.8437804845016976,0.06569757118199644,3914.35032429516,-5803.263007885337,0 +188280,74655645.66208844,-1402022.1836050309,375432.2869824641,-20259.496975983235,3.312210542190134,-0.8869408725220171,0.04786209537053865,4683.914244511901,-5202.013778341855,0 +188400,79127915.57229069,-1461291.3095583827,404457.08750110853,-14134.712127601215,3.353252959389214,-0.9281153707941407,0.03243519273806169,5362.311101832843,-4499.513267805779,0 +188520,83049868.1495728,-1511834.6763808322,431815.30503603857,-8802.758846090695,3.3863294420872547,-0.967214804523428,0.01971713039646458,5936.336673094947,-3709.43484963249,0 +188640,86324489.68899436,-1552708.222805457,457059.9499970047,-4531.412198733012,3.411278844985387,-1.0041544930429678,0.009955450962644979,6394.818203498155,-2847.156501530717,0 +188760,88869508.44301064,-1583143.353609361,479773.9995606842,-1542.583056352403,3.427979617100596,-1.0388544332130476,0.0033401544230363817,6728.83187156818,-1929.461490719174,0 +188880,90620777.63079247,-1602569.8041027677,499581.1937335342,-0.0000000034072480817673445,3.4363503939498914,-1.071239472690138,-0.000000000000005355525051209398,6931.876481190986,-974.2117067205066,0 +189000,91534909.20500298,-1610632.4348929585,516155.7495481114,0.0000000013431526697211927,3.4363503939498923,-1.101239472690138,-0.000000000000005731795970048577,7000,-0.00000000010974568466142733,0 +189120,91591002.73245269,-1607201.2436789272,529230.6333276051,-1566.0245807711904,3.4279796171005987,-1.1287894598933592,0.0033401544230352597,6931.876481191016,974.2117067202893,0 +189240,90791370.89829811,-1592374.1907590437,538604.0910902382,-4647.173066367771,3.4112788449853895,-1.1538297671622684,0.009955450962643789,6728.831871568186,1929.4614907191542,0 +189360,89161228.11651471,-1566472.7686365342,544144.2136883232,-9120.892804413792,3.386329442087259,-1.1763061627672229,0.019717130396462702,6394.818203498244,2847.1565015305164,0 +189480,86747375.74120422,-1530030.5816097707,545791.4012941702,-14799.610232416111,3.3532529593892204,-1.1961699678403206,0.03243519273805917,5936.336673095063,3709.4348496323037,0 +189600,83615980.4769087,-1483775.5165128887,543558.6856034262,-21440.848755000763,3.312210542190142,-1.2133781618029866,0.047862095370535554,5362.311101832985,4499.513267805611,0 +189720,79849596.35744514,-1428606.3606672618,537529.9615014156,-28760.160072279046,3.263402145021045,-1.227893475538967,0.06569757118199329,4683.914244511917,5202.013778341841,0 +189840,75543620.80883448,-1365564.941037848,527856.2669577439,-36446.03120064706,3.207065557486739,-1.2396844721109366,0.08559447292331403,3914.3503242953416,5803.263007885215,0 +189960,70802399.11358424,-1295805.0079087112,514750.3252631295,-44175.83077212793,3.143475245778756,-1.2487256148459058,0.10716553003449374,3068.5980275237202,6291.558324094082,0 +190080,65735198.12815788,-1220559.1612191938,498479.6231779106,-51631.82973615843,3.0729410155036585,-1.2549973226419648,0.12999088642557757,2163.1189606245002,6657.395614066118,0 +190200,60452260.22819584,-1141105.1181895677,479358.33932218346,-58516.37136735082,2.9958065023412734,-1.2584860123765937,0.15362627249787061,1215.5372436684358,6893.65427108547,0 +190320,55061124.55950848,-1058732.5528705448,457738.45800922625,-64565.365811627424,2.9124474978861947,-1.2591841283246774,0.1776116523463289,244.2964769176887,6995.735789133664,0 +190440,49663368.273521684,-974711.6124643381,434000.4051524472,-69559.43312246108,2.823270118828909,-1.2570901585225278,0.20148017783516753,-731.6992428733328,6961.653267577939,0 +190560,44351879.65025052,-890264.0459038985,408543.5268206141,-73332.20084993068,2.7287088283961016,-1.2522086380424564,0.22476727526579138,-1693.4532691977654,6792.0700839319525,0 +190680,39208732.062384084,-806537.6834064072,381776.70068429195,-75775.461698784,2.6292243196894964,-1.2445501391708211,0.24701968777539424,-2622.246153911415,6490.2869819675,0 +190800,34303686.40933973,-724584.7979712766,354109.3300661064,-76841.09812390011,2.5253012712353646,-1.2341312485108054,0.26780429746622114,-3499.9999999998035,6062.177826491184,0 +190920,29693312.978927344,-645344.6761876527,325942.924080895,-76539.87050669747,2.417445985679464,-1.2209745310595308,0.28671655555278225,-4309.630327279695,5516.075275246985,0 +191040,25420693.717487946,-569630.5387211347,297663.41988433275,-74937.33313695867,2.3061839231314494,-1.2051084813372988,0.3033883564437981,-5035.3786023705925,4862.608593212945,0 +191160,21515643.600019187,-498120.78935347893,269634.3583057827,-72147.28024827216,2.192057141176031,-1.1865674616748025,0.31749520249881746,-5663.118960624626,4114.49676604732,0 +191280,17995375.217894018,-431354.4403069824,242190.98522620174,-68323.22862700216,2.075621654022912,-1.1653916277919707,0.3287625200056797,-6180.6331500123615,3286.3009395014747,0 +191400,14865523.100109914,-369730.4616646442,215635.31995369864,-63648.51235157926,1.9574447236614472,-1.1416268418296212,0.3369710034454955,-6577.848345501381,2394.141003279619,0 +191520,12121442.401259646,-313510.73139688396,190232.20927321268,-58325.59958473993,1.8381020962172543,-1.1153245730222767,0.3419608840251217,-6847.03320513664,1455.38183572431,0 +191640,9749698.944289984,-262826.21465050074,166206.37129233713,-52565.24293009824,1.7181751969749628,-1.0865417862272626,0.3436350393949809,-6982.948351818765,488.2953162089323,0 +191760,7729672.749738993,-217685.96993923944,143740.42508211237,-46576.04630387675,1.5982482977326713,-1.0553408185515092,0.34196088402512165,-6982.9483518187635,-488.29531620895966,0 +191880,6035203.903711446,-177988.55888883257,122973.89802643174,-40554.97554410555,1.4789056702884784,-1.0217892443432643,0.33697100344549535,-6847.033205136635,-1455.3818357243367,0 +192000,4636217.066399559,-143535.4193754195,104003.19991335856,-34679.26031052039,1.3607287399270134,-0.9859597288410975,0.3287625200056794,-6577.848345501372,-2394.1410032796443,0 +192120,3500268.657363441,-114045.74527715068,86882.54826146024,-29100.034827142023,1.2442932527738937,-0.9479298707971755,0.31749520249881835,-6180.633150012535,-3286.3009395011472,0 +192240,2593968.690337622,-89172.39812347261,71625.82068429589,-23937.948970685662,1.1301664708184753,-0.9077820344156438,0.3033883564437989,-5663.11896062461,-4114.496766047343,0 +192360,1884237.538842781,-68518.3578061497,58209.29549941048,-19280.854398951276,1.0189044082704608,-0.8656031709701041,0.286716555552783,-5035.378602370573,-4862.608593212965,0 +192480,1339366.86661838,-51653.20473325996,46575.22052961873,-15183.539351042851,0.9110491227145604,-0.8214846304865148,0.26780429746622186,-4309.630327279673,-5516.0752752470025,0 +192600,929863.768158274,-38129.11964116312,36636.122520219855,-11669.358145245214,0.807126074260428,-0.7755219638993761,0.24701968777539524,-3499.9999999999527,-6062.177826491098,0 +192720,629067.8521183821,-27495.895836001284,28279.73736449291,-8733.485833627059,0.7076415655538231,-0.7278147161096851,0.22476727526579235,-2622.24615391139,-6490.28698196751,0 +192840,413542.29650667054,-19314.487755892376,21374.40698256465,-6347.4337468844615,0.613080275121016,-0.6784662103928454,0.2014801778351685,-1693.4532691977388,-6792.070083931959,0 +192960,263251.2374105402,-13168.673895889135,15774.755601768966,-4464.3958783811395,0.523902896063728,-0.6275833246234601,0.17761165234632997,-731.6992428737012,-6961.6532675779,0 +193080,161546.4033199167,-8674.49345090336,11327.43012254189,-3024.965548389225,0.4405438916086484,-0.5752762598016545,0.15362627249787167,244.29647691751734,-6995.73578913367,0 +193200,94994.7333480768,-5487.223612307343,7876.669999929798,-1962.7700980883592,0.3634093784462633,-0.5216583013822498,0.12999088642557866,1215.537243668463,-6893.654271085466,0 +193320,53084.92623134727,-3305.7940719441613,5269.464959479477,-1209.6184197156294,0.2928751481711658,-0.46684557392369386,0.10716553003449485,2163.1189606245266,-6657.395614066109,0 +193440,27853.793781033724,-1874.6795020322245,3360.066376589835,-699.8378364299642,0.22928483646317993,-0.4109567895881256,0.08559447292331458,3068.5980275233874,-6291.558324094244,0 +193560,13472.657189546524,-983.45949667493,2013.641572484427,-373.58516601102343,0.17294824892887278,-0.35411299103726596,0.06569757118199351,3914.3503242951997,-5803.263007885311,0 +193680,5830.022419001485,-464.3768679987278,1108.899503285315,-179.04040990024396,0.12413985175977602,-0.2964372892809668,0.04786209537053583,4683.914244511937,-5202.013778341822,0 +193800,2140.0766533376095,-188.34696620824985,539.5697398194164,-73.51695251351106,0.08309743456069452,-0.23805459704617749,0.03243519273805848,5362.311101832746,-4499.513267805894,0 +193920,598.2253939864189,-59.9613513326797,214.68123760995923,-23.63541154156175,0.05002095186265447,-0.1790913582437927,0.01971713039646151,5936.336673094972,-3709.434849632449,0 +194040,96.21939592850272,-12.079350269072984,57.6589646168219,-4.7964878210955195,0.025071548964522693,-0.11967527411929854,0.009955450962642057,6394.818203498175,-2847.156501530673,0 +194160,1.6746420831469144,-0.6047352431755997,4.329923445184816,-0.24130485540573338,0.008370776849313658,-0.05993502668031029,0.0033401544230336182,6728.8318715681935,-1929.4614907191278,0 +194280,1,0.0000000000010148132334464322,0.00000000000006952771691715043,-0.0000000000005178669992833562,0.00000000000001691355389077387,0.0000000000000011587952819525071,-0.000000000000008631116654722604,6931.876481190964,-974.211706720656,0 +194400,1.5184000000002906,-0.0000000000011403616505586195,-4.17600000000038,0.0000000000006154543992644675,0.000000000000016384506473542213,0.06000000000000116,-0.000000000000008842735621615267,7000,-0.0000000000617221986770266,0 +194520,87.95936869205413,-3.8569437328549716,-55.26161523975346,-1.5390193647013355,0.008370776849310372,0.11993502668031265,0.003340154423032312,6931.87648119101,974.2117067203368,0 +194640,530.028842338801,-28.290543232943357,-202.7441989147568,-11.233654380932483,0.025071548964516667,0.17967527411930095,0.009955450962639688,6728.831871568283,1929.4614907188181,0 +194760,1840.5005875603613,-105.14401000009977,-502.569887737289,-41.4453959467059,0.050020951862647406,0.23909135824379515,0.019717130396458754,6394.818203498225,2847.1565015305605,0 +194880,4886.049338742385,-284.5734513429305,-1020.7105167382101,-111.07677139780668,0.08309743456068644,0.29805459704618,0.03243519273805537,5936.336673095037,3709.434849632345,0 +195000,11054.68295367469,-639.4400153435424,-1835.995955335146,-246.53597184354214,0.12413985175976534,0.35643728928096957,0.047862095370531876,5362.311101832954,4499.513267805647,0 +195120,22483.19488983134,-1270.4443075787563,-3041.993749090336,-482.60162127597005,0.17294824892885957,0.4141129910372688,0.06569757118198882,4683.914244512177,5202.013778341608,0 +195240,42345.050638856716,-2311.4518293084093,-4747.779877687504,-862.8896008526796,0.2292848364631673,0.47095678958812853,0.08559447292331003,3914.3503242951374,5803.263007885353,0 +195360,75193.58604475475,-3934.4133470141987,-7077.515012128752,-1439.6356069827857,0.2928751481711508,0.5268455739236972,0.10716553003448981,3068.598027523677,6291.558324094103,0 +195480,127347.91450371454,-6353.287710121496,-10168.814446841894,-2272.559681003264,0.3634093784462461,0.5816583013822533,0.12999088642557327,2163.118960624833,6657.395614066009,0 +195600,207300.52723501137,-9826.424729745422,-14169.971411340917,-3426.6665182881025,0.44054389160863167,0.6352762598016578,0.15362627249786634,1215.5372436683886,6893.654271085478,0 +195720,326117.4802844528,-14656.956267197693,-19236.15768261555,-4968.947949217325,0.5239028960637118,0.6875833246234636,0.17761165234632464,244.29647691744188,6995.735789133672,0 +195840,497795.55874720035,-21190.86532355581,-25524.778149717895,-6964.078746504084,0.6130802751209979,0.7384662103928494,0.20148017783516328,-731.6992428733806,6961.6532675779345,0 +195960,739536.9460436399,-29812.544185904575,-33190.194270096516,-9469.3198528587,0.7076415655538032,0.7878147161096892,0.2247672752657874,-1693.453269197426,6792.070083932037,0 +196080,1071901.3731523415,-40937.80125271686,-42378.05367858403,-12528.950812205358,0.8071260742604086,0.8355219638993799,0.2470196877753902,-2622.2461539114597,6490.286981967482,0 +196200,1518798.6744029266,-55004.420219891574,-53219.46953660393,-16168.634321972135,0.9110491227145413,0.8814846304865187,0.2678042974662167,-3500.0000000000177,6062.17782649106,0 +196320,2107290.857294815,-72460.50476806465,-65825.28492271813,-20390.162386264936,1.0189044082704404,0.9256031709701089,0.28671655555277853,-4309.630327279419,5516.075275247201,0 +196440,2867181.548791198,-93750.94931231375,-80280.6372305163,-25167.04145921996,1.1301664708184551,0.9677820344156483,0.30338835644379425,-5035.378602370626,4862.608593212911,0 +196560,3830381.128168014,-119302.45752959687,-96640.0085635161,-30441.343170129043,1.2442932527738737,1.0079298707971796,0.3174952024988135,-5663.1189606246535,4114.496766047281,0 +196680,5030047.068961235,-149507.5843745106,-114922.9143351833,-36122.18126704843,1.3607287399269932,1.0459597288411024,0.32876252000567496,-6180.633150012477,3286.3009395012564,0 +196800,6499510.18429316,-184708.3062632286,-135110.34751624812,-42086.08064508764,1.4789056702884578,1.0817892443432702,0.3369710034454919,-6577.848345501262,2394.1410032799477,0 +196920,8271008.041065008,-225179.6325190995,-157142.06360255677,-48179.388840847234,1.5982482977326506,1.1153408185515146,0.341960884025118,-6847.03320513665,1455.3818357242628,0 +197040,10374256.520924462,-271113.76487353485,-180914.76398692036,-54222.75297470532,1.7181751969749421,1.1465417862272675,0.343635039394977,-6982.948351818769,488.2953162088844,0 +197160,12834899.382796748,-322605.2969104884,-206281.21453447052,-60017.5543837995,1.8381020962172336,1.1753245730222828,0.34196088402511826,-6982.948351818774,-488.29531620880914,0 +197280,15672883.938745173,-379637.9271126783,-233050.32212703067,-65354.066809018215,1.9574447236614263,1.2016268418296274,0.3369710034454918,-6847.033205136625,-1455.3818357243838,0 +197400,18900818.861425932,-442073.1411369615,-260988.18393564463,-70020.98847124673,2.0756216540228913,1.2253916277919765,0.32876252000567574,-6577.848345501356,-2394.14100327969,0 +197520,22522377.860772267,-509641.3022472828,-289820.12036703055,-73815.89896509344,2.192057141176011,1.2465674616748088,0.3174952024988145,-6180.633150012513,-3286.30093950119,0 +197640,26530820.407962676,-581935.5719564119,-319233.7004388944,-76556.11287598865,2.30618392313143,1.2651084813373061,0.30338835644379547,-5663.118960624698,-4114.496766047221,0 +197760,30907707.39162464,-658409.0618954841,-348882.7648282993,-78089.34697597915,2.417445985679444,1.2809745310595384,0.2867165555527795,-5035.378602370541,-4862.608593212999,0 +197880,35621894.70631145,-738375.5868863924,-378392.44410618185,-78303.58997744259,2.525301271235344,1.2941312485108125,0.2678042974662182,-4309.630327279636,-5516.075275247033,0 +198000,40628890.07605184,-821014.3413279037,-407365.1552740311,-77135.56608128842,2.6292243196894773,1.3045501391708285,0.24701968777539185,-3500.000000000083,-6062.177826491023,0 +198120,45870656.45155588,-905378.7497155234,-435387.537033448,-74577.21855090973,2.728708828396082,1.312208638042464,0.2247672752657889,-2622.246153911345,-6490.286981967528,0 +198240,51275937.605309755,-990409.6422226379,-462038.2527260119,-70679.70914786228,2.823270118828889,1.3170901585225359,0.201480177835165,-1693.4532691976922,-6792.070083931971,0 +198360,56761166.833626546,-1074952.7751743782,-486896.55031990283,-65554.5340238959,2.9124474978861765,1.319184128324686,0.17761165234632648,-731.6992428736535,-6961.653267577905,0 +198480,62231997.22273198,-1157780.5548134649,-509551.4232078023,-59371.495077367974,2.995806502341257,1.3184860123766025,0.15362627249786817,244.2964769173665,-6995.735789133675,0 +198600,67585461.78644463,-1237617.635842232,-529611.1670793949,-52353.433641382806,3.0729410155036416,1.314997322641974,0.1299908864255752,1215.5372436685102,-6893.654271085457,0 +198720,72712734.9433518,-1313169.8627155912,-546713.0807813444,-44767.82330391096,3.1434752457787387,1.3087256148459152,0.10716553003449143,2163.118960624572,-6657.395614066094,0 +198840,77502425.32871716,-1383155.8140239664,-560533.0174184841,-36915.520044745856,3.2070655574867244,1.2996844721109464,0.08559447292331124,3068.5980275234306,-6291.558324094223,0 +198960,81844286.87578851,-1446340.013657586,-570794.4605731558,-29117.167231619573,3.2634021450210313,1.2878934755389764,0.06569757118199027,3914.3503242952393,-5803.2630078852835,0 +199080,85633194.26619716,-1501566.7032164307,-577276.7835893712,-21697.9349105668,3.312210542190128,1.2733781618029965,0.047862095370532695,4683.914244511972,-5202.01377834179,0 +199200,88773194.45380634,-1547792.9444867382,-579822.3506685727,-14971.421208308624,3.353252959389209,1.2561699678403315,0.032435192738055466,5362.311101832777,-4499.513267805858,0 +199320,91181422.14438541,-1584119.7529611737,-578342.1390743551,-9223.6435547434,3.3863294420872503,1.2363061627672343,0.019717130396458057,5936.336673094892,-3709.4348496325774,0 +199440,92791657.3830061,-1609819.9640232257,-572819.6025299933,-4698.0866820928295,3.4112788449853815,1.2138297671622793,0.009955450962638756,6394.818203498195,-2847.156501530629,0 +199560,93557310.15036398,-1624361.608402709,-563312.5557373811,-1582.7452951641567,3.4279796171005903,1.1887894598933704,0.003340154423030476,6728.831871568206,-1929.4614907190817,0 +199680,93453640.9435132,-1627425.7229899182,-549952.9360377442,0.00000001206177316012691,3.4363503939498865,1.1612394726901503,-0.00000000000001161050422471277,6931.8764811909705,-974.2117067206084,0 +199800,92479066.77773762,-1618917.7411886721,-532944.3863161848,0.0000000074023176464363275,3.4363503939498865,1.1312394726901498,-0.000000000000011657471239658916,7000,-0.000000000013698712692625882,0 +199920,90655456.15616849,-1598971.8820395912,-512557.6979504758,-1558.0060562376186,3.427979617100592,1.098854433213059,0.00334015442302966,6931.876481191002,974.2117067203842,0 +200040,88027379.99759671,-1567948.2727739753,-489124.24787090486,-4575.888647894543,3.4112788449853855,1.06415449304298,0.009955450962637195,6728.83187156827,1929.4614907188643,0 +200160,84660352.84452116,-1526422.8751042543,-463027.65341811196,-8887.699611995937,3.386329442087256,1.0272148045234413,0.019717130396455784,6394.8182034982865,2847.1565015304222,0 +200280,80638163.92489608,-1475170.6193934123,-434693.9468092101,-14268.963284612017,3.3532529593892164,0.9881153707941537,0.03243519273805254,5936.336673095013,3709.4348496323855,0 +200400,76059455.01347893,-1415142.4608950177,-404580.632660149,-20449.087569613028,3.312210542190137,0.9469408725220297,0.04786209537052917,5362.311101832922,4499.513267805684,0 +200520,71033746.5755267,-1347437.3384970757,-373165.03345459723,-27126.096179791206,3.2634021450210424,0.903780484501711,0.06569757118198621,4683.9142445121415,5202.013778341639,0 +200640,65677141.82176284,-1273270.222487193,-340932.34696411947,-33982.74579336575,3.207065557486734,0.8587276825228212,0.08559447292330752,3914.350324295097,5803.26300788538,0 +200760,60107948.2728208,-1193937.5724447411,-308363.8360049738,-40703.02540188935,3.1434752457787503,0.8118800409222214,0.10716553003448737,3068.598027523634,6291.558324094124,0 +200880,54442448.33513141,-1110781.5839654445,-275925.5458727173,-46988.0423985944,3.0729410155036545,0.7633390212597246,0.12999088642557088,2163.118960624787,6657.395614066024,0 +201000,48791026.11882998,-1025154.5841422369,-244057.90118145276,-52570.377083030544,2.995806502341271,0.7132097525749488,0.15362627249786376,1215.537243668733,6893.654271085417,0 +201120,43254820.61467445,-938384.8469271184,-213166.47574201008,-57226.12452943428,2.9124474978861907,0.661600803701227,0.17761165234632206,244.2964769173939,6995.735789133674,0 +201240,37923029.6736143,-851744.9519183596,-183614.16145725216,-60784.026026491716,2.8232701188289044,0.6086239481296913,0.20148017783516067,-731.6992428734283,6961.653267577929,0 +201360,32870939.661622927,-766423.6185450886,-155714.89025337968,-63131.30468411938,2.728708828396099,0.5543939219327803,0.22476727526578477,-1693.4532691974725,6792.070083932026,0 +201480,28158706.674780734,-683501.7288041068,-129728.99191814798,-64216.04363642365,2.6292243196894933,0.4990281752714537,0.24701968777538752,-2622.2461539115043,6490.286981967463,0 +201600,23830870.619872123,-603933.0226526862,-105860.20489334674,-64046.1637945583,2.52530127123536,0.44264661802429933,0.2678042974662139,-3500.000000000059,6062.177826491036,0 +201720,19916546.127658065,-528529.7265487398,-84254.30010612609,-62685.2569203166,2.417445985679461,0.3853713600894354,0.28671655555277564,-4309.630327279458,5516.075275247172,0 +201840,16430205.848385122,-457953.1704473195,-64999.232123469,-60245.69780261893,2.306183923131447,0.3273264469216637,0.3033883564437922,-5035.378602370382,4862.608593213163,0 +201960,13372952.712831,-392709.2711722813,-48126.69822395027,-56879.589145706326,2.1920571411760283,0.26863759087763533,0.3174952024988113,-5663.118960624682,4114.496766047243,0 +202080,10734167.763356052,-333148.61575052614,-33614.96402499963,-52768.18067409491,2.0756216540229087,0.20943189895088066,0.32876252000567263,-6180.6331500125,3286.300939501214,0 +202200,8493417.966728102,-279470.7682312048,-21392.802551841396,-48110.44933539547,1.957444723661444,0.14983759748636408,0.3369710034454894,-6577.848345501278,2394.1410032799026,0 +202320,6622512.385065338,-231732.3453714156,-11344.38968964316,-43111.5321850199,1.8381020962172512,0.08998375447077461,0.3419608840251153,-6847.03320513666,1455.3818357242162,0 +202440,5087603.456790096,-189858.35534966362,-3314.9999316246317,-37971.671069930795,1.7181751969749597,0.030000000000006917,0.3436350393949742,-6982.948351818773,488.29531620883654,0 +202560,3851241.3274266617,-153656.26284143678,2882.6507523696296,-32876.263063626924,1.5982482977326682,-0.029983754470760807,0.34196088402511526,-6982.948351818771,-488.295316208857,0 +202680,2874301.9069094737,-122832.22653404812,7461.5659047175905,-27987.517704593174,1.478905670288475,-0.08983759748635028,0.33697100344548997,-6847.033205136698,-1455.3818357240416,0 +202800,2117722.7792257625,-97008.9455045418,10653.28490286925,-23438.106693386195,1.3607287399270103,-0.14943189895086684,0.32876252000567374,-6577.848345501338,-2394.141003279735,0 +202920,1543994.8366207038,-75744.5446582014,12700.510337398135,-19327.05934941375,1.2442932527738906,-0.20863759087762163,0.31749520249881236,-6180.633150012491,-3286.3009395012323,0 +203040,1118371.4707690147,-58551.92483052645,13849.710135209127,-15718.013849843946,1.130166470818472,-0.26732644692165014,0.3033883564437932,-5663.11896062467,-4114.49676604726,0 +203160,809771.425886512,-44918.00096136446,14343.868714932194,-12639.786827323547,1.0189044082704577,-0.32537136008942186,0.2867165555527771,-5035.378602370506,-4862.608593213034,0 +203280,591366.1081932671,-34322.25504880421,14415.572651296803,-10089.079909779,0.9110491227145577,-0.3826466180242858,0.2678042974662157,-4309.630327279598,-5516.075275247062,0 +203400,440857.19606582884,-26254.044174712777,14280.625388148354,-8035.009649293334,0.8071260742604249,-0.43902817527144045,0.24701968777538924,-3500.000000000042,-6062.177826491047,0 +203520,340465.46557265986,-20228.133339337997,14132.389421171836,-6425.035831293618,0.7076415655538194,-0.4943939219327673,0.2247672752657865,-2622.246153911485,-6490.286981967471,0 +203640,276666.16125676356,-15797.973429678135,14137.050084879997,-5191.780954653003,0.6130802751210129,-0.5486239481296784,0.20148017783516256,-1693.4532691976456,-6792.0700839319825,0 +203760,239719.02480032828,-12566.320269267511,14429.98011722889,-4260.188144992052,0.5239028960637254,-0.601600803701214,0.177611652346324,-731.6992428736057,-6961.65326757791,0 +203880,223051.08493637946,-10192.892912865442,15113.356885561661,-3554.461142238428,0.44054389160864516,-0.6532097525749363,0.1536262724978657,244.2964769174145,-6995.735789133673,0 +204000,222556.35558276312,-8398.896705692798,16255.144030403544,-3004.2703697898096,0.36340937844626076,-0.7033390212597126,0.12999088642557274,1215.5372436685575,-6893.654271085448,0 +204120,235877.7576466055,-6968.384366454793,17889.497129847536,-2549.7916391278836,0.2928751481711639,-0.7518800409222093,0.10716553003448905,2163.1189606246176,-6657.395614066079,0 +204240,261732.38792584982,-5746.588553363297,20018.590973751874,-2145.2627479412063,0.22928483646317876,-0.798727682522809,0.08559447292330892,3068.598027523474,-6291.558324094201,0 +204360,299331.8269834019,-4635.521513711321,22615.797575181183,-1760.8880488748596,0.17294824892887084,-0.8437804845016994,0.06569757118198766,3914.350324295114,-5803.263007885368,0 +204480,347935.3069646786,-3587.2893319106156,25630.073541498346,-1383.078694647071,0.12413985175977482,-0.8869408725220187,0.0478620953705302,4683.914244512009,-5202.013778341759,0 +204600,406556.6874420177,-2595.697379409884,28991.347909793607,-1013.1714081898024,0.0830974345606941,-0.9281153707941426,0.0324351927380531,5362.311101832808,-4499.513267805821,0 +204720,473828.226953519,-1686.8181536795626,32616.642227391865,-664.9056495872301,0.05002095186265321,-0.9672148045234302,0.01971713039645583,5936.336673094918,-3709.434849632537,0 +204840,548007.2233990243,-909.2433361074698,36416.60842390213,-361.04380541191034,0.025071548964522232,-1.0041544930429698,0.00995545096263668,6394.818203498214,-2847.156501530585,0 +204960,627097.7652111747,-324.74254137309015,40302.14098778095,-129.58059394472397,0.008370776849314015,-1.0388544332130494,0.003340154423028557,6728.83187156822,-1929.4614907190357,0 +205080,709050.7112887916,-0.0000000007463067090065835,44190.71104071423,0.0000000005513574279622686,0.00000000000001809143113096212,-1.0712394726901402,-0.000000000000013365610701532304,6931.876481190978,-974.2117067205609,0 +205200,792001.550735015,-0.0000000007272331983138616,48012.08250289201,0.0000000006073252661005691,0.000000000000016680340907638808,-1.1012394726901407,-0.00000000000001393004679086163,7000,-0.00000000016462719272105322,0 +205320,874508.1037053847,-383.4894569710209,51713.10438704656,-153.02211837023933,0.00837077684931149,-1.1287894598933614,0.0033401544230275506,6931.876481190996,974.2117067204318,0 +205440,955757.3849533744,-1200.7724965672628,55261.32637795181,-476.80467304888634,0.025071548964518603,-1.153829767162271,0.009955450962635243,6728.831871568256,1929.4614907189102,0 +205560,1035721.9119461509,-2493.9012887758386,58647.25372230888,-983.039607916687,0.05002095186264848,-1.176306162767226,0.019717130396453987,6394.8182034982665,2847.1565015304664,0 +205680,1115258.3722041543,-4299.1349757428325,61885.13728326724,-1678.0695130037188,0.0830974345606883,-1.1961699678403233,0.03243519273805088,5936.336673094987,3709.4348496324264,0 +205800,1196153.786035074,-6651.359836720935,65012.27976160872,-2564.4304736636554,0.12413985175976798,-1.2133781618029889,0.04786209537052764,5362.311101832892,4499.513267805721,0 +205920,1281134.209337261,-9590.012844351608,68086.92354415079,-3642.942645444639,0.17294824892886296,-1.2278934755389697,0.0656975711819848,4683.914244512105,5202.013778341672,0 +206040,1373857.1912172555,-13165.938726094073,71184.8635577991,-4914.9852348896875,0.22928483646316838,-1.2396844721109397,0.08559447292330544,3914.3503242953875,5803.263007885184,0 +206160,1478910.8832399317,-17448.54500837499,74394.99469247111,-6384.572353883474,0.29287514817115257,-1.2487256148459085,0.10716553003448537,3068.5980275235906,6291.558324094145,0 +206280,1601839.891370755,-22532.603363181435,77814.05370948269,-8059.8720296618485,0.36340937844624854,-1.254997322641968,0.12999088642556894,2163.1189606247417,6657.395614066039,0 +206400,1749211.3605532472,-28544.07747351987,81540.84739536265,-9953.87816667935,0.4405438916086321,-1.2584860123765973,0.15362627249786184,1215.5372436686857,6893.6542710854255,0 +206520,1928725.6010361495,-35644.43202870026,85670.270981341,-12084.045568615737,0.5239028960637103,-1.2591841283246814,0.17761165234632012,244.29647691774352,6995.7357891336615,0 +206640,2149365.30230223,-44032.98545748922,90287.41408790348,-14470.819076404008,0.6130802751209982,-1.2570901585225314,0.20148017783515865,-731.6992428736739,6961.653267577903,0 +206760,2421567.549721858,-53946.99949355339,95462.02774201444,-17135.11567885527,0.707641565553804,-1.2522086380424604,0.2247672752657827,-1693.4532691975191,6792.070083932014,0 +206880,2757394.7570925374,-65659.33961960692,101243.58866280598,-20094.939427195648,0.8071260742604079,-1.2445501391708247,0.24701968777538588,-2622.2461539111796,6490.286981967594,0 +207000,3170675.163586203,-79473.68025529473,107657.15019292913,-23361.41112172761,0.9110491227145411,-1.2341312485108085,0.2678042974662122,-3500.000000000101,6062.177826491012,0 +207120,3677081.1587276584,-95717.35726858594,114700.11755435435,-26934.568895670305,1.0189044082704413,-1.2209745310595344,0.2867165555527734,-4309.630327279652,5516.075275247019,0 +207240,4294114.385292799,-114732.08059115705,122340.03305880104,-30799.336434675664,1.1301664708184551,-1.2051084813373028,0.30338835644378986,-5035.378602370416,4862.608593213127,0 +207360,5040969.961295133,-136862.80711180138,130513.40853155903,-34922.06082581212,1.2442932527738728,-1.186567461674806,0.31749520249880997,-5663.118960624477,4114.496766047527,0 +207480,5938257.677717882,-162445.13755788121,139125.60066573435,-39247.99353401083,1.3607287399269925,-1.1653916277919738,0.32876252000567113,-6180.6331500125225,3286.3009395011713,0 +207600,7007565.030118393,-191791.64264039305,148051.692326098,-43700.03007723069,1.4789056702884575,-1.1416268418296247,0.33697100344548714,-6577.848345501363,2394.1410032796707,0 +207720,8270854.871530351,-225177.54747596115,157138.31971485176,-48178.94272543588,1.5982482977326502,-1.1153245730222807,0.3419608840251142,-6847.033205136588,1455.3818357245582,0 +207840,9749698.944289656,-262826.21465049294,166206.3712923348,-52565.242930097185,1.7181751969749417,-1.0865417862272655,0.3436350393949729,-6982.948351818775,488.2953162087886,0 +207960,11464357.373573989,-304894.87089899794,175054.4778164921,-56722.703163178165,1.8381020962172332,-1.0553408185515125,0.3419608840251138,-6982.948351818768,-488.295316208905,0 +208080,13432723.367085284,-351461.02501118626,183463.211410923,-60503.457818452036,1.957444723661426,-1.0217892443432681,0.3369710034454877,-6847.033205136646,-1455.381835724283,0 +208200,15669161.925838927,-402510.02820680215,191199.91232382195,-63754.495403508554,2.0756216540228913,-0.9859597288411016,0.3287625200056726,-6577.848345501458,-2394.141003279406,0 +208320,18183281.354082502,-457924.2334179529,198024.0620853061,-66325.25424959642,2.192057141176011,-0.9479298707971787,0.3174952024988111,-6180.633150012468,-3286.3009395012746,0 +208440,20978686.619592074,-517474.2145783273,203693.11855652172,-68075.94567296462,2.3061839231314294,-0.9077820344156473,0.30338835644379175,-5663.118960624642,-4114.4967660472985,0 +208560,24051773.74334455,-580812.5066030733,207968.7200594941,-68886.1560099773,2.417445985679444,-0.865603170970108,0.286716555552776,-5035.378602370612,-4862.608593212925,0 +208680,27390633.63870753,-647470.3148434568,210623.15154182597,-68663.22635321032,2.5253012712353438,-0.8214846304865183,0.26780429746621454,-4309.630327279559,-5516.075275247092,0 +208800,30974141.090504106,-716857.6120989985,211445.94586622962,-67349.88041682667,2.6292243196894765,-0.7755219638993794,0.24701968777538802,-3500,-6062.17782649107,0 +208920,34771308.52352461,-788266.9847014359,210250.46927646679,-64930.571004694175,2.7287088283960816,-0.7278147161096886,0.2247672752657852,-2622.2461539114406,-6490.286981967489,0 +209040,38740983.41450721,-860881.5011799727,206880.31435871363,-61436.04779293553,2.823270118828889,-0.6784662103928493,0.20148017783516137,-1693.453269197792,-6792.070083931946,0 +209160,42831961.317516394,-933786.7546532892,201215.29964059446,-56945.716121391706,2.912447497886176,-0.6275833246234639,0.1776116523463228,-731.6992428735579,-6961.653267577915,0 +209280,46983572.5260679,-1005987.0740000906,193176.85601099726,-51587.4587490531,2.995806502341256,-0.5752762598016581,0.1536262724978645,244.29647691746248,-6995.7357891336715,0 +209400,51126779.022120215,-1076425.7137411695,182732.57005629997,-45534.72780458061,3.0729410155036416,-0.5216583013822534,0.12999088642557144,1215.537243668409,-6893.654271085475,0 +209520,55185790.01531623,-1144008.627254691,169899.65640148422,-39000.87683795471,3.1434752457787383,-0.46684557392369735,0.10716553003448778,2163.118960624663,-6657.395614066065,0 +209640,59080170.44804984,-1207631.2149496658,154747.14757344997,-32230.88380218624,3.207065557486723,-0.4109567895881289,0.08559447292330774,3068.598027523517,-6291.5583240941805,0 +209760,62727379.66535647,-1266207.2335873356,137396.62194030572,-25490.802592831005,3.2634021450210304,-0.3541129910372692,0.06569757118198657,3914.3503242951547,-5803.263007885341,0 +209880,66045640.15336665,-1318698.8717218884,118021.33769329434,-19055.45869123191,3.312210542190128,-0.2964372892809702,0.04786209537052877,4683.914244511897,-5202.01377834186,0 +210000,68957002.47923034,-1364146.855700909,96843.70191530253,-13195.057671916393,3.353252959389208,-0.23805459704618076,0.03243519273805179,5362.311101832839,-4499.513267805784,0 +210120,71390446.07239284,-1401699.365422051,74131.07540067709,-8161.488608036912,3.3863294420872485,-0.17909135824379604,0.01971713039645466,5936.336673094944,-3709.4348496324956,0 +210240,73284839.6627494,-1430638.5202232897,50189.991746068496,-4175.164881134751,3.4112788449853806,-0.11967527411930183,0.009955450962635039,6394.818203498153,-2847.1565015307233,0 +210360,74591582.58754969,-1450403.2492502078,25358.948170920175,-1413.243767258518,3.4279796171005885,-0.05993502668031354,0.003340154423027075,6728.8318715682335,-1929.4614907189896,0 +210480,75276760.10306406,-1460607.488092478,0.0000000008759569811774831,0.000000006242115162797513,3.436350393949884,-0.000000000000002060851489460447,-0.000000000000014685735266750655,6931.876481190985,-974.2117067205135,0 +210600,75322672.0851328,-1461052.8391035353,-25510.544704798103,0.000000006117035901943419,3.4363503939498847,0.05999999999999794,-0.000000000000015085519404133465,7000,-0.0000000001166037067366525,0 +210720,74728633.28560008,-1451735.0855437687,-50791.98410307348,-1414.5414817676233,3.427979617100591,0.11993502668030942,0.003340154423025883,6931.876481191017,974.2117067202825,0 +210840,73510991.39549711,-1432844.2435189663,-75469.2576958279,-4181.602047693338,3.4112788449853837,0.17967527411929768,0.009955450962633734,6728.8318715682435,1929.4614907189564,0 +210960,71702362.21735328,-1404758.1510232869,-99182.77003940179,-8179.2985924413715,3.3863294420872534,0.23909135824379196,0.019717130396452627,6394.818203498247,2847.15650153051,0 +211080,69350134.33982675,-1368029.9087428718,-121597.6271804275,-13232.617490798213,3.3532529593892146,0.2980545970461769,0.03243519273804908,5936.336673095067,3709.434849632298,0 +211200,66514343.906544864,-1323369.781135472,-142411.94256702406,-19122.95425317217,3.3122105421901344,0.3564372892809662,0.047862095370525964,5362.311101832861,4499.513267805758,0 +211320,63265059.03539891,-1271622.4190737128,-161363.9202376829,-25599.81904809552,3.263402145021039,0.4141129910372653,0.06569757118198324,4683.91424451207,5202.013778341704,0 +211440,59679439.926861346,-1213740.4610249018,-178237.48865472386,-32393.935566609438,3.2070655574867333,0.4709567895881252,0.08559447292330397,3914.350324295347,5803.263007885212,0 +211560,55838652.893389225,-1150755.6972691524,-192866.33371389352,-39230.89402521893,3.1434752457787503,0.526845573923694,0.10716553003448366,3068.5980275237266,6291.558324094079,0 +211680,51824814.22310109,-1083749.0357193,-205136.25873740384,-45844.51738749489,3.072941015503654,0.5816583013822499,0.12999088642556728,2163.118960624696,6657.395614066055,0 +211800,47718124.24679834,-1013820.4891969549,-214985.8770865159,-51989.159718948395,2.9958065023412703,0.6352762598016547,0.1536262724978602,1215.5372436686387,6893.654271085435,0 +211920,43594325.74153214,-942060.3188978129,-222405.71427767142,-57450.26819222752,2.9124474978861916,0.6875833246234607,0.17761165234631848,244.29647691769554,6995.735789133663,0 +212040,39522587.25174824,-869522.3283822343,-227435.8568845478,-62052.69279255743,2.8232701188289036,0.7384662103928463,0.20148017783515698,-731.6992428737217,6961.653267577897,0 +212160,35563874.782801285,-797200.1213519601,-230162.33199738618,-65666.40502392987,2.7287088283960976,0.7878147161096859,0.224767275265781,-1693.453269197566,6792.0700839320025,0 +212280,31769838.258419886,-726006.9311891333,-230712.4319553471,-68209.47308378856,2.6292243196894933,0.8355219638993769,0.2470196877753841,-2622.2461539112246,6490.286981967576,0 +212400,28182205.26293001,-656759.4173930262,-229249.2143228621,-69648.32132414021,2.5253012712353615,0.881484630486516,0.26780429746621104,-3499.999999999798,6062.177826491186,0 +212520,24832646.247378606,-590165.6188977133,-225965.40790785197,-69995.46399729064,2.417445985679461,0.9256031709701059,0.28671655555277215,-4309.6303272796895,5516.07527524699,0 +212640,21743053.967228487,-526817.069295396,-221076.9444595278,-69305.03816150008,2.306183923131447,0.9677820344156456,0.3033883564437885,-5035.37860237045,4862.608593213094,0 +212760,18926165.902831793,-467184.92305555556,-214816.31581973605,-67666.56259258522,2.1920571411760292,1.0079298707971773,0.3174952024988084,-5663.118960624504,4114.496766047488,0 +212880,16386451.44154153,-411619.819622098,-207425.9314471384,-65197.41636003607,2.0756216540229095,1.0459597288411,0.3287625200056694,-6180.633150012545,3286.300939501129,0 +213000,14121184.711389214,-360355.124416327,-199151.62508823222,-62034.562919435404,1.9574447236614445,1.0817892443432675,0.33697100344548525,-6577.848345501379,2394.1410032796252,0 +213120,12121627.828694178,-313513.1293485455,-190236.43519795223,-58326.04570014836,1.8381020962172518,1.1153408185515123,0.34196088402511216,-6847.033205136598,1455.3818357245113,0 +213240,10374256.520924725,-271113.7648735411,-180914.76398692286,-54222.752974705276,1.7181751969749604,1.1465417862272658,0.34363503939497203,-6982.948351818752,488.2953162091376,0 +213360,8861969.276708122,-233085.36384844297,-171407.0061151021,-49870.897524496395,1.5982482977326689,1.1753245730222805,0.34196088402511277,-6982.948351818764,-488.2953162089529,0 +213480,7565231.27375743,-199277.0171453248,-161914.73031194505,-45405.58453466841,1.478905670288476,1.2016268418296256,0.33697100344548647,-6847.033205136637,-1455.3818357243301,0 +213600,6463114.588370112,-169472.0657293945,-152616.49467369242,-40945.75337826064,1.3607287399270107,1.2253916277919752,0.3287625200056712,-6577.848345501442,-2394.1410032794515,0 +213720,5534206.174683437,-143402.2791871443,-143664.37716044122,-36590.67954263612,1.2442932527738912,1.246567461674807,0.3174952024988095,-6180.633150012445,-3286.300939501317,0 +213840,4757364.6663541,-120762.27438678237,-135181.30425658345,-32418.11617370542,1.1301664708184729,1.2651084813373041,0.3033883564437901,-5663.1189606246135,-4114.496766047338,0 +213960,4112316.210765101,-101223.73063449703,-127259.25987671624,-28484.04536495184,1.0189044082704584,1.2809745310595368,0.2867165555527742,-5035.378602370579,-4862.60859321296,0 +214080,3580088.348222053,-84448.96232788928,-119958.45045896056,-24823.90297526998,0.9110491227145572,1.2941312485108114,0.2678042974662135,-4309.630327279836,-5516.075275246876,0 +214200,3143289.3686084445,-70103.42146880612,-113307.4883217983,-21455.043809703147,0.8071260742604247,1.3045501391708272,0.24701968777538688,-3499.9999999999586,-6062.1778264910945,0 +214320,2786248.4238776416,-57866.72612647653,-107304.63213953873,-18380.13337984208,0.7076415655538196,1.3122086380424631,0.224767275265784,-2622.246153911396,-6490.286981967507,0 +214440,2495038.5578133664,-47441.85247977862,-101920.09030279236,-15591.095101809624,0.6130802751210126,1.3170901585225354,0.20148017783516015,-1693.4532691977454,-6792.070083931957,0 +214560,2257410.1792535847,-38562.191557740945,-97099.35073579053,-13073.213780884755,0.5239028960637256,1.319184128324685,0.17761165234632156,-731.6992428735102,-6961.65326757792,0 +214680,2062665.7205376537,-30996.25912772012,-92767.45149426431,-10809.001876706718,0.440543891608646,1.3184860123766011,0.15362627249786326,244.2964769175105,-6995.735789133671,0 +214800,1901506.719950641,-24549.957301552684,-88834.0533767771,-8781.4759348888,0.36340937844626087,1.314997322641973,0.12999088642557022,1215.537243668456,-6893.6542710854665,0 +214920,1765881.993886661,-19066.41504930272,-85199.12295092786,-6976.564885669068,0.2928751481711633,1.3087256148459148,0.10716553003448641,2163.11896062452,-6657.395614066111,0 +215040,1648859.9292167262,-14423.574519181297,-81758.98643836187,-5384.474078980935,0.22928483646317882,1.2996844721109455,0.08559447292330644,3068.59802752356,-6291.55832409416,0 +215160,1544539.6880180044,-10529.830891744985,-78412.47649511899,-3999.9498048066203,0.17294824892887162,1.2878934755389757,0.06569757118198535,3914.3503242951942,-5803.263007885314,0 +215280,1448006.1991349875,-7318.163849291652,-75066.86932587219,-2821.516629242843,0.1241398517597748,1.2733781618029962,0.04786209537052766,4683.914244511932,-5202.013778341828,0 +215400,1355323.5222889986,-4739.3065955669545,-71643.30216946037,-1849.8804889054686,0.08309743456069485,1.256169967840331,0.03243519273805081,5362.311101832869,-4499.513267805748,0 +215520,1263552.033160216,-2754.5726051736074,-68081.37311973938,-1085.7903582449799,0.05002095186265475,1.2363061627672334,0.01971713039645382,5936.336673094969,-3709.434849632455,0 +215640,1170768.391409667,-1328.9920231711417,-64342.657102241385,-527.718288771643,0.025071548964522912,1.2138297671622789,0.009955450962634348,6394.818203498172,-2847.156501530679,0 +215760,1076064.6297985218,-425.3933186624648,-60412.922556459496,-169.74283276618178,0.00837077684931382,1.1887894598933704,0.0033401544230258874,6728.831871568192,-1929.4614907191344,0 +215880,979504.6242139594,-0.0000000009074452380004506,-56302.900287721655,0.0000000007616854273178327,0.000000000000018715931582313772,1.16123947269015,-0.000000000000015709655798445965,6931.876481190991,-974.2117067204658,0 +216000,882022.6568713279,-0.0000000008340612211313744,-52047.53491856195,0.0000000007336085147264739,0.00000000000001812810111872304,1.13123947269015,-0.000000000000015944787983882258,7000,-0.00000000006858022075225178,0 +216120,785258.9998740021,-363.3941945746617,-47703.73513720816,-145.00359383131502,0.008370776849312058,1.0988544332130596,0.003340154423025187,6931.8764811910105,974.2117067203301,0 +216240,691339.9770501376,-1021.2516697471735,-43346.725582334184,-405.5202545747451,0.025071548964519984,1.0641544930429805,0.009955450962633196,6728.83187156823,1929.4614907190028,0 +216360,602622.8850107966,-1902.3068114094847,-39065.18462086012,-749.8464155102643,0.05002095186265067,1.0272148045234413,0.01971713039645224,6394.818203498227,2847.1565015305537,0 +216480,521437.3654393959,-2939.6425140988094,-34955.422729682134,-1147.422565207102,0.08309743456068963,0.988115370794154,0.03243519273804883,5936.336673095042,3709.4348496323387,0 +216600,449862.3748081444,-4079.0301971358995,-31114.910797496057,-1572.6692882828295,0.12413985175976848,0.9469408725220304,0.04786209537052532,5362.311101832958,4499.513267805642,0 +216720,389580.3321558954,-5288.354750200096,-27635.50280476464,-2008.8787529716435,0.17294824892886423,0.9037804845017114,0.0656975711819827,4683.914244512034,5202.013778341736,0 +216840,341846.60583253484,-6567.452019173328,-24596.710970942993,-2451.6998276094964,0.22928483646317038,0.8587276825228218,0.08559447292330352,3914.3503242953075,5803.263007885238,0 +216960,307603.3453479843,-7957.635132311221,-22059.38324643854,-2911.766983645875,0.29287514817115384,0.8118800409222224,0.1071655300344833,3068.5980275236834,6291.5583240941005,0 +217080,287752.72932902956,-9550.186546248238,-20060.104343562365,-3416.0846921014354,0.3634093784462505,0.7633390212597254,0.12999088642556697,2163.11896062465,6657.395614066069,0 +217200,283587.61960882146,-11493.143288221645,-18606.59524972593,-4007.8838823665315,0.44054389160863466,0.7132097525749493,0.15362627249785993,1215.5372436685911,6893.654271085442,0 +217320,297359.4368305552,-13995.797426997095,-17674.32647483355,-4744.804286424491,0.5239028960637134,0.6616008037012278,0.1776116523463182,244.29647691764754,6995.735789133665,0 +217440,332945.95577605703,-17330.46288430102,-17204.49208951738,-5695.411980438262,0.6130802751209996,0.6086239481296922,0.20148017783515684,-731.6992428733737,6961.6532675779345,0 +217560,396567.5922390298,-21831.21162235373,-17103.420179097622,-6934.2195130481905,0.7076415655538059,0.5543939219327809,0.2247672752657808,-1693.4532691976124,6792.070083931991,0 +217680,497491.0732708918,-27889.444412353172,-17243.425777297965,-8535.521364839056,0.8071260742604103,0.4990281752714545,0.24701968777538386,-2622.246153911269,6490.286981967559,0 +217800,648654.9652241627,-35946.3216347611,-17465.049145353572,-10566.476792391295,0.9110491227145421,0.4426466180243003,0.2678042974662107,-3499.9999999998395,6062.177826491164,0 +217920,867152.5126113418,-46482.22736535347,-17580.568927147204,-13079.955309288995,1.0189044082704426,0.38537136008943623,0.2867165555527717,-4309.630327279728,5516.07527524696,0 +218040,1174513.137984,-60003.56743730179,-17378.638491772734,-16107.70110033741,1.1301664708184573,0.3273264469216644,0.3033883564437874,-5035.378602370622,4862.608593212915,0 +218160,1596733.8438540604,-77027.30448108783,-16629.86555739037,-19654.369723247786,1.2442932527738753,0.26863759087763617,0.31749520249880725,-5663.1189606245325,4114.496766047449,0 +218280,2164024.4853211087,-98063.70867695106,-15093.139524253547,-23692.945581105345,1.3607287399269943,0.20943189895088157,0.3287625200056693,-6180.633150012381,3286.3009395014383,0 +218400,2910245.2810100885,-123597.85366456928,-12522.506214989242,-28161.96706104632,1.4789056702884593,0.14983759748636497,0.33697100344548503,-6577.848345501396,2394.1410032795798,0 +218520,3872030.0139538213,-154070.41663404214,-8674.393435159936,-32964.8753257157,1.5982482977326522,0.08998375447077551,0.3419608840251111,-6847.0332051366495,1455.3818357242696,0 +218640,5087603.456789905,-189858.3553496583,-3314.9999316249414,-37971.67106992969,1.7181751969749437,0.03000000000000782,0.3436350393949708,-6982.948351818754,488.29531620908966,0 +218760,6595316.285971474,-231256.03830733654,3772.3281458401384,-43022.91992292888,1.8381020962172352,-0.029983754470759863,0.3419608840251114,-6982.948351818761,-488.29531620900076,0 +218880,8431935.061351888,-278457.4021882872,12779.898054077657,-47935.99997893997,1.9574447236614279,-0.08983759748634931,0.3369710034454849,-6847.033205136627,-1455.3818357243772,0 +219000,10630738.837520259,-331539.70633581525,23868.80470212489,-52513.3417863735,2.0756216540228927,-0.14943189895086592,0.32876252000566886,-6577.848345501358,-2394.1410032796834,0 +219120,13219487.736175826,-390449.44791605143,37162.5495715859,-56552.27877187006,2.192057141176013,-0.2086375908776208,0.31749520249880825,-6180.63315001261,-3286.300939501008,0 +219240,16218342.260937696,-454990.99192907923,52741.29441011839,-59856.01055212374,2.306183923131431,-0.26732644692164903,0.3033883564437887,-5663.118960624585,-4114.496766047377,0 +219360,19637824.86585341,-524818.4531355147,70636.90146885981,-62245.088438348525,2.4174459856794455,-0.32537136008942086,0.2867165555527727,-5035.378602370545,-4862.6085932129945,0 +219480,23476926.466941096,-599431.3362871021,90828.91462523723,-63568.766911944804,2.5253012712353455,-0.3826466180242849,0.2678042974662115,-4309.630327279641,-5516.075275247028,0 +219600,27721468.958343282,-678174.389972708,113241.63659824347,-63715.53192087702,2.6292243196894796,-0.4390281752714397,0.24701968777538547,-3500.000000000261,-6062.177826490919,0 +219720,32342838.7731559,-760242.0513839468,137742.4536801336,-62622.12100236438,2.7287088283960843,-0.4943939219327661,0.22476727526578252,-2622.2461539113515,-6490.286981967525,0 +219840,37297204.37781596,-844687.7493622793,164141.5480939276,-60280.395000705576,2.823270118828891,-0.5486239481296774,0.20148017783515862,-1693.453269197699,-6792.070083931969,0 +219960,42525320.687882766,-930438.1888677664,192193.11682817017,-56741.50838799958,2.9124474978861787,-0.6016008037012133,0.1776116523463201,-731.6992428736603,-6961.653267577904,0 +220080,47953004.54641849,-1016312.5627151625,221598.1830305628,-52116.9543428998,2.9958065023412592,-0.6532097525749353,0.1536262724978618,244.29647691735966,-6995.735789133675,0 +220200,53492337.15150083,-1101046.4313204945,252009.04132536158,-46576.22807628363,3.072941015503644,-0.7033390212597114,0.12999088642556877,1215.5372436685034,-6893.654271085457,0 +220320,59043612.18425551,-1183319.7876522827,283035.32262861636,-40341.05005736641,3.1434752457787427,-0.7518800409222083,0.1071655300344848,2163.118960624376,-6657.395614066158,0 +220440,64498004.043924354,-1261788.5955762751,314251.599386745,-33676.3087136964,3.2070655574867284,-0.7987276825228082,0.08559447292330459,3068.5980275234247,-6291.558324094226,0 +220560,69740881.86303136,-1335118.870993095,345206.3821042361,-26878.105475690005,3.2634021450210353,-0.8437804845016984,0.0656975711819836,3914.350324295234,-5803.263007885287,0 +220680,74655645.66208836,-1402022.18360503,375432.2869824644,-20259.496975968817,3.312210542190133,-0.8869408725220174,0.04786209537052556,4683.91424451182,-5202.013778341929,0 +220800,79127915.57229072,-1461291.3095583827,404457.08750110876,-14134.71212758899,3.353252959389214,-0.9281153707941416,0.03243519273804832,5362.311101832773,-4499.513267805863,0 +220920,83049868.14957276,-1511834.6763808313,431815.30503603874,-8802.758846087767,3.386329442087254,-0.9672148045234289,0.019717130396451468,5936.336673094994,-3709.434849632414,0 +221040,86324489.68899441,-1552708.2228054572,457059.9499970054,-4531.412198725292,3.411278844985387,-1.0041544930429687,0.009955450962631522,6394.81820349811,-2847.156501530817,0 +221160,88869508.44301063,-1583143.3536093603,479773.9995606842,-1542.5830563447073,3.4279796171005956,-1.0388544332130478,0.0033401544230232203,6728.831871568205,-1929.4614907190883,0 +221280,90620777.63079269,-1602569.804102771,499581.1937335351,0.000000004561772929886909,3.4363503939498936,-1.0712394726901389,-0.00000000000001956507872380442,6931.876481190943,-974.2117067208122,0 +221400,91534909.20500302,-1610632.4348929592,516155.74954811204,0.000000009098168088481621,3.4363503939498923,-1.1012394726901389,-0.000000000000018953437930964498,7000,0.000000000178395231244977,0 +221520,91591002.7324526,-1607201.2436789253,529230.6333276051,-1566.024580768162,3.427979617100598,-1.12878945989336,0.003340154423022341,6931.876481191003,974.2117067203774,0 +221640,90791370.8982985,-1592374.1907590483,538604.0910902396,-4647.173066359714,3.411278844985393,-1.1538297671622693,0.009955450962629196,6728.831871568326,1929.4614907186663,0 +221760,89161228.11651482,-1566472.7686365356,544144.213688324,-9120.892804410629,3.38632944208726,-1.1763061627672238,0.019717130396449012,6394.818203498126,2847.156501530779,0 +221880,86747375.74120426,-1530030.5816097718,545791.4012941711,-14799.610232394425,3.353252959389221,-1.1961699678403215,0.032435192738045744,5936.336673095016,3709.43484963238,0 +222000,83615980.4769088,-1483775.5165128903,543558.6856034271,-21440.848754997696,3.3122105421901433,-1.2133781618029875,0.047862095370521836,5362.311101833056,4499.513267805527,0 +222120,79849596.35744546,-1428606.3606672664,537529.9615014169,-28760.16007227127,3.2634021450210486,-1.2278934755389679,0.06569757118197887,4683.914244512146,5202.013778341635,0 +222240,75543620.80883473,-1365564.9410378512,527856.2669577451,-36446.03120064406,3.207065557486742,-1.2396844721109375,0.08559447292329977,3914.350324295268,5803.263007885265,0 +222360,70802399.11358428,-1295805.007908712,514750.3252631293,-44175.83077212043,3.143475245778757,-1.2487256148459067,0.10716553003447991,3068.5980275234615,6291.558324094208,0 +222480,65735198.12815809,-1220559.1612191966,498479.62317791244,-51631.82973615099,3.072941015503661,-1.2549973226419666,0.12999088642556342,2163.118960624794,6657.395614066023,0 +222600,60452260.228196025,-1141105.1181895707,479358.33932218514,-58516.371367338856,2.9958065023412765,-1.2584860123765946,0.1536262724978564,1215.537243668544,6893.654271085451,0 +222720,55061124.559508555,-1058732.5528705465,457738.4580092272,-64565.36581162254,2.912447497886196,-1.2591841283246785,0.1776116523463147,244.29647691740075,6995.735789133673,0 +222840,49663368.273521684,-974711.6124643385,434000.40515244845,-69559.43312244464,2.8232701188289098,-1.257090158522529,0.20148017783515332,-731.6992428734214,6961.653267577929,0 +222960,44351879.65025059,-890264.0459038991,408543.52682061517,-73332.20084992607,2.7287088283961034,-1.2522086380424584,0.22476727526577725,-1693.453269197659,6792.070083931979,0 +223080,39208732.062384106,-806537.6834064091,381776.7006842921,-75775.46169877717,2.6292243196894978,-1.2445501391708225,0.24701968777538,-2622.246153911498,6490.286981967466,0 +223200,34303686.40933974,-724584.7979712775,354109.33006610716,-76841.0981238934,2.5253012712353655,-1.2341312485108067,0.26780429746620676,-3499.9999999998813,6062.177826491139,0 +223320,29693312.978927366,-645344.6761876533,325942.92408089485,-76539.87050669793,2.4174459856794654,-1.220974531059533,0.2867165555527681,-4309.6303272796085,5516.0752752470535,0 +223440,25420693.71748797,-569630.5387211355,297663.4198843334,-74937.33313695576,2.3061839231314507,-1.205108481337301,0.3033883564437837,-5035.378602370654,4862.608593212882,0 +223560,21515643.600019198,-498120.78935348,269634.3583057829,-72147.28024826941,2.192057141176033,-1.1865674616748039,0.3174952024988034,-5663.118960624562,4114.496766047409,0 +223680,17995375.217893995,-431354.440306982,242190.98522620214,-68323.22862700175,2.075621654022913,-1.165391627791972,0.32876252000566475,-6180.633150012497,3286.30093950122,0 +223800,14865523.100109922,-369730.4616646445,215635.3199536997,-63648.51235157676,1.9574447236614485,-1.1416268418296232,0.3369710034454816,-6577.848345501276,2394.1410032799085,0 +223920,12121442.401259655,-313510.7313968837,190232.2092732129,-58325.59958473996,1.8381020962172558,-1.1153245730222787,0.34196088402510816,-6847.033205136618,1455.3818357244174,0 +224040,9749698.944289977,-262826.2146505009,166206.37129233748,-52565.24293009599,1.7181751969749643,-1.086541786227264,0.34363503939496703,-6982.948351818772,488.2953162088433,0 +224160,7729672.749738996,-217685.96993924,143740.42508211237,-46576.04630387414,1.5982482977326729,-1.0553408185515114,0.3419608840251088,-6982.948351818785,-488.29531620865174,0 +224280,6035203.903711449,-177988.55888883292,122973.89802643217,-40554.97554410365,1.47890567028848,-1.0217892443432666,0.3369710034454829,-6847.033205136658,-1455.3818357242296,0 +224400,4636217.066399561,-143535.41937541985,104003.19991335897,-34679.26031051856,1.3607287399270152,-0.9859597288410997,0.3287625200056667,-6577.848345501341,-2394.1410032797285,0 +224520,3500268.6573634376,-114045.74527715085,86882.54826146035,-29100.034827140866,1.244293252773895,-0.9479298707971772,0.3174952024988059,-6180.633150012587,-3286.300939501051,0 +224640,2593968.6903376197,-89172.39812347261,71625.82068429612,-23937.948970684887,1.1301664708184764,-0.907782034415646,0.30338835644378676,-5663.118960624674,-4114.496766047255,0 +224760,1884237.5388427794,-68518.35780614972,58209.29549941069,-19280.854398950563,1.0189044082704621,-0.8656031709701063,0.28671655555277065,-5035.3786023705115,-4862.608593213029,0 +224880,1339366.8666183779,-51653.20473325996,46575.22052961883,-15183.539351042064,0.9110491227145614,-0.821484630486517,0.2678042974662097,-4309.63032727976,-5516.075275246935,0 +225000,929863.7681582718,-38129.119641163066,36636.12252021993,-11669.358145244778,0.8071260742604285,-0.7755219638993784,0.24701968777538327,-3500.0000000000473,-6062.177826491043,0 +225120,629067.8521183812,-27495.895836001284,28279.73736449298,-8733.485833626566,0.7076415655538238,-0.7278147161096874,0.22476727526578028,-2622.2461539113074,-6490.286981967543,0 +225240,413542.2965066693,-19314.487755892333,21374.406982564695,-6347.433746884086,0.6130802751210163,-0.6784662103928478,0.2014801778351565,-1693.4532691978452,-6792.0700839319325,0 +225360,263251.23741054,-13168.673895889147,15774.755601769026,-4464.395878380823,0.5239028960637288,-0.6275833246234627,0.17761165234631796,-731.6992428736124,-6961.653267577909,0 +225480,161546.4033199157,-8674.493450903306,11327.430122541902,-3024.9655483890115,0.44054389160864726,-0.5752762598016571,0.15362627249785962,244.2964769172088,-6995.735789133681,0 +225600,94994.733348076,-5487.223612307288,7876.669999929807,-1962.770098088154,0.3634093784462615,-0.5216583013822523,0.12999088642556653,1215.5372436683547,-6893.654271085484,0 +225720,53084.92623134696,-3305.7940719441394,5269.464959479484,-1209.618419715501,0.29287514817116456,-0.4668455739236964,0.10716553003448281,2163.118960624611,-6657.395614066082,0 +225840,27853.793781033502,-1874.6795020322018,3360.066376589843,-699.837836429861,0.22928483646317793,-0.41095678958812815,0.08559447292330238,3068.5980275232887,-6291.558324094292,0 +225960,13472.65718954655,-983.4594966749313,2013.6415724844417,-373.58516601095596,0.17294824892887295,-0.35411299103726823,0.06569757118198187,3914.350324295439,-5803.26300788515,0 +226080,5830.0224190015415,-464.3768679987332,1108.8995032853288,-179.04040990020275,0.12413985175977688,-0.29643728928096913,0.047862095370524396,4683.914244512004,-5202.013778341764,0 +226200,2140.0766533376327,-188.34696620825093,539.5697398194247,-73.51695251348472,0.08309743456069449,-0.23805459704617982,0.03243519273804676,5362.311101832676,-4499.513267805978,0 +226320,598.2253939864307,-59.961351332679186,214.68123760996434,-23.635411541547484,0.05002095186265354,-0.17909135824379518,0.01971713039644947,5936.336673094914,-3709.4348496325424,0 +226440,96.21939592850741,-12.07935026907319,57.65896461682444,-4.796487821089971,0.025071548964522513,-0.11967527411930091,0.009955450962630298,6394.818203498211,-2847.1565015305914,0 +226560,1.6746420831473134,-0.6047352431755748,4.329923445185385,-0.24130485540487964,0.008370776849312547,-0.05993502668031266,0.003340154423021497,6728.8318715681635,-1929.4614907192336,0 +226680,1,0.0000000000009938924683261519,-0.0000000000000728583859910259,-0.0000000000012269872617931554,0.00000000000001656487447210253,-0.000000000000001214306433183765,-0.00000000000002044978769655259,6931.876481190977,-974.2117067205677,0 +226800,1.5183999999996944,-0.0000000000011693011422697212,-4.175999999999599,0.0000000000014167508720753637,0.000000000000016800303768244386,0.059999999999998783,-0.00000000000002035561597809585,7000,0.00000000002746675121654966,0 +226920,87.95936869204584,-3.856943732856118,-55.26161523974977,-1.5390193646964079,0.008370776849313253,0.11993502668031025,0.0033401544230217775,6931.87648119097,974.211706720622,0 +227040,530.028842338771,-28.29054323294667,-202.74419891474838,-11.233654380920603,0.02507154896452031,0.17967527411929854,0.009955450962629448,6728.831871568258,1929.4614907189036,0 +227160,1840.5005875602706,-105.14401000009941,-502.56988773727176,-41.44539594668117,0.05002095186264846,0.23909135824379285,0.019717130396447544,6394.818203498351,2847.156501530278,0 +227280,4886.049338742235,-284.573451342938,-1020.7105167381866,-111.07677139776938,0.08309743456068987,0.2980545970461777,0.032435192738044995,5936.336673094886,3709.434849632589,0 +227400,11054.68295367443,-639.4400153435566,-1835.9959553351123,-246.53597184348752,0.12413985175976949,0.35643728928096713,0.04786209537052173,5362.3111018328955,4499.513267805715,0 +227520,22483.194889830844,-1270.4443075787656,-3041.993749090285,-482.6016212758908,0.17294824892886287,0.4141129910372664,0.06569757118197841,4683.914244512258,5202.013778341534,0 +227640,42345.0506388561,-2311.451829308435,-4747.779877687443,-862.8896008525635,0.22928483646317127,0.47095678958812615,0.0855944729232998,3914.350324295063,5803.263007885403,0 +227760,75193.58604475395,-3934.4133470142465,-7077.51501212868,-1439.6356069826368,0.29287514817115545,0.5268455739236948,0.10716553003447972,3068.598027523597,6291.558324094142,0 +227880,127347.91450371424,-6353.2877101216145,-10168.814446841836,-2272.559681003086,0.36340937844625276,0.5816583013822508,0.1299908864255635,2163.118960624559,6657.3956140660985,0 +228000,207300.5272350104,-9826.424729745493,-14169.971411340844,-3426.666518287843,0.4405438916086363,0.6352762598016558,0.15362627249785638,1215.5372436686926,6893.654271085425,0 +228120,326117.48028445087,-14656.956267197746,-19236.157682615423,-4968.947949217087,0.5239028960637157,0.6875833246234616,0.17761165234631468,244.29647691755156,6995.735789133669,0 +228240,497795.5587472,-21190.865323555972,-25524.77814971785,-6964.078746503727,0.6130802751210035,0.7384662103928474,0.2014801778351532,-731.6992428736671,6961.6532675779035,0 +228360,739536.9460436413,-29812.54418590483,-33190.19427009646,-9469.319852858272,0.7076415655538093,0.7878147161096872,0.22476727526577725,-1693.4532691975126,6792.070083932016,0 +228480,1071901.3731523429,-40937.801252717116,-42378.053678583994,-12528.950812204817,0.8071260742604142,0.8355219638993779,0.2470196877753802,-2622.246153911358,6490.2869819675225,0 +228600,1518798.6744029303,-55004.420219891996,-53219.469536603945,-16168.634321971258,0.9110491227145473,0.8814846304865168,0.26780429746620654,-3500.0000000000946,6062.177826491015,0 +228720,2107290.857294823,-72460.50476806531,-65825.28492271822,-20390.162386263713,1.0189044082704468,0.925603170970107,0.2867165555527682,-4309.63032727949,5516.075275247146,0 +228840,2867181.5487912106,-93750.94931231448,-80280.63723051647,-25167.041459219276,1.1301664708184613,0.9677820344156469,0.30338835644378415,-5035.37860237055,4862.608593212989,0 +228960,3830381.1281680334,-119302.45752959776,-96640.00856351639,-30441.34317012829,1.2442932527738801,1.0079298707971784,0.31749520249880314,-5663.118960624706,4114.496766047209,0 +229080,5030047.068961263,-149507.58437451182,-114922.91433518328,-36122.18126704706,1.3607287399269994,1.0459597288411013,0.3287625200056649,-6180.633150012426,3286.3009395013532,0 +229200,6499510.184293199,-184708.3062632303,-135110.34751624812,-42086.08064508643,1.4789056702884644,1.0817892443432693,0.336971003445481,-6577.84834550136,2394.1410032796766,0 +229320,8271008.041065059,-225179.63251910103,-157142.06360255694,-48179.38884084535,1.5982482977326573,1.1153408185515137,0.3419608840251067,-6847.0332051366695,1455.3818357241757,0 +229440,10374256.520924527,-271113.7648735368,-180914.76398692103,-54222.75297470455,1.7181751969749488,1.1465417862272667,0.34363503939496615,-6982.948351818762,488.2953162089939,0 +229560,12834899.382796828,-322605.2969104905,-206281.21453447078,-60017.554383797455,1.8381020962172403,1.1753245730222819,0.34196088402510705,-6982.948351818769,-488.2953162088981,0 +229680,15672883.938745292,-379637.9271126807,-233050.322127032,-65354.06680901621,1.9574447236614334,1.2016268418296274,0.33697100344548164,-6847.033205136689,-1455.3818357240818,0 +229800,18900818.861426078,-442073.1411369645,-260988.18393564603,-70020.988471247,2.0756216540228984,1.2253916277919765,0.3287625200056659,-6577.848345501393,-2394.1410032795866,0 +229920,22522377.860772442,-509641.30224728637,-289820.12036703114,-73815.89896509008,2.192057141176018,1.2465674616748088,0.3174952024988044,-6180.633150012471,-3286.3009395012687,0 +230040,26530820.40796288,-581935.5719564154,-319233.70043889625,-76556.11287598756,2.306183923131437,1.2651084813373064,0.3033883564437857,-5663.118960624763,-4114.496766047132,0 +230160,30907707.391624887,-658409.0618954884,-348882.7648283005,-78089.34697597567,2.4174459856794517,1.280974531059538,0.28671655555277,-5035.378602370617,-4862.60859321292,0 +230280,35621894.70631172,-738375.5868863976,-378392.4441061837,-78303.589977439,2.5253012712353513,1.294131248510812,0.26780429746620854,-4309.630327279565,-5516.075275247087,0 +230400,40628890.07605215,-821014.3413279087,-407365.1552740336,-77135.56608128009,2.629224319689485,1.3045501391708283,0.24701968777538236,-3500.000000000178,-6062.177826490967,0 +230520,45870656.451556295,-905378.74971553,-435387.5370334497,-74577.21855090835,2.72870882839609,1.3122086380424647,0.22476727526577955,-2622.246153911447,-6490.286981967486,0 +230640,51275937.60531015,-990409.6422226446,-462038.25272601395,-70679.70914786076,2.8232701188288964,1.3170901585225356,0.20148017783515557,-1693.4532691976058,-6792.0700839319925,0 +230760,56761166.833627045,-1074952.775174386,-486896.55031990557,-65554.53402389432,2.912447497886185,1.3191841283246857,0.17761165234631707,-731.6992428737626,-6961.6532675778935,0 +230880,62231997.22273248,-1157780.5548134726,-509551.4232078042,-59371.495077361615,2.995806502341265,1.3184860123766022,0.15362627249785876,244.29647691745564,-6995.7357891336715,0 +231000,67585461.78644516,-1237617.6358422402,-529611.1670793968,-52353.43364138568,3.072941015503649,1.3149973226419738,0.12999088642556583,1215.537243668598,-6893.654271085441,0 +231120,72712734.9433524,-1313169.8627156,-546713.0807813456,-44767.82330390907,3.143475245778747,1.3087256148459143,0.10716553003448195,2163.1189606244675,-6657.3956140661285,0 +231240,77502425.32871771,-1383155.814023975,-560533.0174184856,-36915.52004473459,3.207065557486732,1.2996844721109455,0.0855944729233019,3068.5980275235106,-6291.558324094184,0 +231360,81844286.87578934,-1446340.0136575978,-570794.4605731586,-29117.1672316221,3.263402145021041,1.2878934755389762,0.06569757118198033,3914.3503242949837,-5803.263007885456,0 +231480,85633194.26619813,-1501566.7032164433,-577276.783589374,-21697.93491056921,3.3122105421901384,1.2733781618029962,0.04786209537052251,4683.914244511891,-5202.013778341864,0 +231600,88773194.45380722,-1547792.9444867503,-579822.3506685749,-14971.421208306363,3.3532529593892186,1.2561699678403306,0.032435192738045515,5362.3111018328345,-4499.51326780579,0 +231720,91181422.14438637,-1584119.7529611872,-578342.1390743578,-9223.643554741022,3.386329442087261,1.2363061627672334,0.019717130396447787,5936.336673094835,-3709.4348496326706,0 +231840,92791657.38300687,-1609819.964023237,-572819.6025299955,-4698.086682072004,3.41127884498539,1.2138297671622784,0.00995545096262939,6394.818203498311,-2847.1565015303654,0 +231960,93557310.1503647,-1624361.6084027183,-563312.5557373828,-1582.7452951713235,3.427979617100598,1.1887894598933697,0.003340154423021404,6728.831871568232,-1929.4614907189962,0 +232080,93453640.94351394,-1627425.7229899287,-549952.9360377458,0.000000009642138589296967,3.436350393949895,1.161239472690149,-0.000000000000021055206189668496,6931.876481190956,-974.2117067207173,0 +232200,92479066.77773851,-1618917.7411886842,-532944.3863161871,0.000000014371506805542634,3.436350393949896,1.1312394726901491,-0.000000000000021478503545594934,7000,-0.0000000001234617288118777,0 +232320,90655456.15616924,-1598971.8820396017,-512557.69795047765,-1558.0060562260896,3.4279796171006005,1.0988544332130583,0.0033401544230201425,6931.8764811909905,974.2117067204726,0 +232440,88027379.99759756,-1567948.2727739871,-489124.24787090695,-4575.888647878315,3.411278844985395,1.0641544930429794,0.009955450962627316,6728.8318715683,1929.4614907187586,0 +232560,84660352.84452191,-1526422.875104265,-463027.65341811336,-8887.699612003107,3.3863294420872645,1.02721480452344,0.019717130396446188,6394.818203498249,2847.1565015305036,0 +232680,80638163.92489704,-1475170.619393426,-434693.94680921274,-14268.963284605092,3.3532529593892275,0.988115370794153,0.03243519273804204,5936.336673095176,3709.4348496321236,0 +232800,76059455.01347968,-1415142.4608950282,-404580.6326601503,-20449.087569613326,3.312210542190146,0.9469408725220291,0.04786209537051943,5362.311101832737,4499.513267805905,0 +232920,71033746.57552737,-1347437.3384970855,-373165.03345459956,-27126.096179782322,3.263402145021051,0.9037804845017103,0.06569757118197668,4683.914244512074,5202.013778341699,0 +233040,65677141.82176373,-1273270.2224872066,-340932.3469641214,-33982.74579336145,3.2070655574867466,0.8587276825228205,0.08559447292329701,3914.350324295518,5803.263007885096,0 +233160,60107948.272821486,-1193937.5724447523,-308363.8360049757,-40703.02540187824,3.1434752457787605,0.8118800409222208,0.1071655300344773,3068.598027523375,6291.55832409425,0 +233280,54442448.33513202,-1110781.5839654543,-275925.54587271914,-46988.042398590405,3.0729410155036643,0.7633390212597241,0.12999088642556092,2163.1189606247026,6657.395614066052,0 +233400,48791026.11883061,-1025154.584142247,-244057.901181454,-52570.37708302666,2.995806502341282,0.7132097525749482,0.1536262724978537,1215.5372436688413,6893.654271085398,0 +233520,43254820.61467512,-938384.8469271297,-213166.47574201142,-57226.12452943172,2.9124474978862036,0.6616008037012264,0.177611652346312,244.2964769177024,6995.735789133663,0 +233640,37923029.673614874,-851744.9519183697,-183614.16145725336,-60784.02602649043,2.8232701188289164,0.6086239481296908,0.20148017783515057,-731.6992428735169,6961.653267577919,0 +233760,32870939.661623355,-766423.6185450963,-155714.89025337948,-63131.304684119285,2.728708828396109,0.5543939219327797,0.22476727526577442,-1693.4532691977522,6792.070083931956,0 +233880,28158706.67478117,-683501.728804115,-129728.99191815016,-64216.04363642145,2.629224319689505,0.4990281752714535,0.24701968777537756,-2622.2461539112182,6490.286981967579,0 +234000,23830870.619872525,-603933.0226526943,-105860.2048933468,-64046.163794559725,2.5253012712353726,0.44264661802429883,0.26780429746620416,-3499.999999999964,6062.177826491091,0 +234120,19916546.127658382,-528529.7265487465,-84254.3001061255,-62685.256920315114,2.417445985679472,0.3853713600894349,0.28671655555276526,-4309.630327279684,5516.075275246994,0 +234240,16430205.848385395,-457953.17044732533,-64999.232123468915,-60245.69780261784,2.3061839231314583,0.3273264469216632,0.3033883564437816,-5035.378602370445,4862.608593213098,0 +234360,13372952.712831238,-392709.2711722868,-48126.69822395018,-56879.58914570507,2.19205714117604,0.26863759087763506,0.31749520249880103,-5663.118960624617,4114.496766047332,0 +234480,10734167.76335625,-333148.61575053097,-33614.964025000045,-52768.180674093586,2.07562165402292,0.20943189895088024,0.3287625200056621,-6180.633150012542,3286.3009395011354,0 +234600,8493417.966728259,-279470.7682312091,-21392.802551841178,-48110.44933539425,1.9574447236614554,0.1498375974863637,0.3369710034454786,-6577.848345501308,2394.1410032798185,0 +234720,6622512.38506547,-231732.3453714194,-11344.389689643342,-43111.53218501901,1.8381020962172625,0.08998375447077428,0.3419608840251048,-6847.033205136638,1455.3818357243233,0 +234840,5087603.456790198,-189858.35534966682,-3314.999931625067,-37971.671069929915,1.718175196974971,0.030000000000006584,0.34363503939496337,-6982.948351818779,488.2953162087475,0 +234960,3851241.3274267456,-153656.26284143951,2882.6507523695154,-32876.26306362633,1.5982482977326795,-0.029983754470761112,0.3419608840251048,-6982.948351818779,-488.2953162087475,0 +235080,2874301.9069095403,-122832.22653405051,7461.565904717791,-27987.51770459259,1.4789056702884866,-0.08983759748635059,0.3369710034454786,-6847.033205136638,-1455.3818357243233,0 +235200,2117722.7792258128,-97008.94550454375,10653.2849028694,-23438.106693385776,1.3607287399270214,-0.14943189895086725,0.32876252000566336,-6577.848345501445,-2394.1410032794447,0 +235320,1543994.8366207415,-75744.54465820301,12700.510337398371,-19327.059349413306,1.2442932527739015,-0.20863759087762207,0.3174952024988023,-6180.633150012542,-3286.3009395011354,0 +235440,1118371.4707690442,-58551.92483052777,13849.710135209409,-15718.013849843637,1.130166470818483,-0.2673264469216504,0.30338835644378287,-5663.118960624617,-4114.496766047332,0 +235560,809771.425886533,-44918.00096136548,14343.868714932443,-12639.786827323198,1.018904408270468,-0.32537136008942236,0.28671655555276754,-5035.378602370722,-4862.608593212812,0 +235680,591366.1081932822,-34322.25504880502,14415.572651296956,-10089.079909778891,0.9110491227145675,-0.3826466180242863,0.26780429746620643,-4309.630327279684,-5516.075275246994,0 +235800,440857.19606584084,-26254.04417471346,14280.625388148585,-8035.009649293089,0.807126074260435,-0.43902817527144095,0.24701968777537983,-3499.999999999964,-6062.177826491091,0 +235920,340465.4655726681,-20228.1333393385,14132.389421172033,-6425.035831293451,0.707641565553829,-0.49439392193276754,0.22476727526577722,-2622.246153911587,-6490.28698196743,0 +236040,276666.1612567697,-15797.973429678532,14137.050084880193,-5191.78095465284,0.6130802751210219,-0.548623948129679,0.20148017783515337,-1693.4532691977522,-6792.070083931956,0 +236160,239719.02480033354,-12566.320269267882,14429.980117229059,-4260.18814499191,0.523902896063735,-0.6016008037012146,0.1776116523463148,-731.6992428735169,-6961.653267577919,0 +236280,223051.0849363835,-10192.89291286573,15113.356885561807,-3554.4611422382827,0.44054389160865404,-0.6532097525749369,0.15362627249785646,244.29647691730483,-6995.735789133677,0 +236400,222556.35558276612,-8398.896705693058,16255.144030403671,-3004.2703697895668,0.3634093784462689,-0.7033390212597131,0.12999088642556342,1215.5372436684493,-6893.654271085467,0 +236520,235877.75764660834,-6968.384366455031,17889.49712984766,-2549.7916391276817,0.29287514817117266,-0.7518800409222098,0.1071655300344798,2163.1189606247026,-6657.395614066052,0 +236640,261732.38792585203,-5746.588553363517,20018.59097375197,-2145.262747940984,0.2292848364631867,-0.7987276825228096,0.08559447292329951,3068.598027523375,-6291.55832409425,0 +236760,299331.8269834041,-4635.521513711568,22615.79757518128,-1760.8880488746117,0.17294824892887944,-0.8437804845017,0.06569757118197841,3914.350324295189,-5803.263007885319,0 +236880,347935.3069646798,-3587.2893319108043,25630.07354149841,-1383.078694646783,0.12413985175978101,-0.8869408725220193,0.04786209537052025,4683.9142445117795,-5202.013778341965,0 +237000,406556.6874420189,-2595.697379410056,28991.34790979366,-1013.1714081894933,0.0830974345606994,-0.9281153707941432,0.03243519273804286,5362.311101832737,-4499.513267805905,0 +237120,473828.2269535204,-1686.818153679767,32616.642227391945,-664.9056495868853,0.050020951862659244,-0.9672148045234308,0.019717130396445848,5936.336673094966,-3709.4348496324606,0 +237240,548007.2233990268,-909.2433361075971,36416.608423902246,-361.04380541151454,0.025071548964525684,-1.0041544930429709,0.009955450962625732,6394.818203498088,-2847.1565015308674,0 +237360,627097.7652111759,-324.7425413733186,40302.14098778101,-129.58059394433587,0.008370776849319913,-1.0388544332130498,0.003340154423018559,6728.8318715683,-1929.4614907187586,0 +237480,709050.7112887929,-0.0000000010210998591250347,44190.711040714305,0.000000000951346051031821,0.00000000000002475276927871306,-1.0712394726901406,-0.000000000000023061847570504668,6931.8764811909905,-974.2117067204726,0 +237600,792001.550735016,-0.0000000009766373607071921,48012.08250289205,0.0000000010464712828328023,0.000000000000022400853202939017,-1.101239472690141,-0.000000000000024002614000814286,7000,-0.000000000274390208840305,0 +237720,874508.1037053888,-383.48945697124134,51713.10438704674,-153.02211836975945,0.008370776849316272,-1.1287894598933628,0.003340154423017106,6931.876481191011,974.2117067203233,0 +237840,955757.3849533759,-1200.7724965675275,55261.326377951875,-476.8046730484027,0.02507154896452414,-1.1538297671622715,0.009955450962625092,6728.831871568232,1929.4614907189962,0 +237960,1035721.9119461528,-2493.9012887760637,58647.25372230895,-983.0396079161893,0.050020951862653096,-1.1763061627672264,0.01971713039644349,6394.818203498311,2847.156501530366,0 +238080,1115258.372204159,-4299.134975743033,61885.13728326744,-1678.0695130032043,0.08309743456069202,-1.1961699678403246,0.03243519273804006,5936.336673095046,3709.434849632333,0 +238200,1196153.786035079,-6651.35983672118,65012.27976160894,-2564.4304736630475,0.12413985175977241,-1.2133781618029902,0.047862095370517055,5362.3111018328345,4499.51326780579,0 +238320,1281134.2093372643,-9590.01284435201,68086.92354415091,-3642.942645444148,0.17294824892886967,-1.22789347553897,0.06569757118197488,4683.914244511891,5202.013778341865,0 +238440,1373857.1912172604,-13165.93872609457,71184.86355779925,-4914.985234889122,0.22928483646317577,-1.2396844721109401,0.08559447292329568,3914.350324295313,5803.2630078852335,0 +238560,1478910.8832399396,-17448.54500837535,74394.9946924714,-6384.572353882924,0.29287514817115773,-1.2487256148459098,0.10716553003447515,3068.598027523868,6291.55832409401,0 +238680,1601839.8913707666,-22532.60336318197,77814.0537094831,-8059.872029661266,0.3634093784462557,-1.2549973226419693,0.12999088642555903,2163.1189606244675,6657.3956140661285,0 +238800,1749211.3605532567,-28544.077473520483,81540.84739536291,-9953.878166678607,0.4405438916086398,-1.2584860123765977,0.153626272497852,1215.537243668598,6893.654271085441,0 +238920,1928725.6010361607,-35644.43202870092,85670.27098134128,-12084.045568614982,0.5239028960637173,-1.259184128324682,0.17761165234631024,244.29647691785325,6995.735789133658,0 +239040,2149365.3023022446,-44032.98545748986,90287.4140879039,-14470.819076403242,0.6130802751210057,-1.257090158522532,0.20148017783514874,-731.6992428737626,6961.6532675778935,0 +239160,2421567.5497218766,-53946.99949355425,95462.02774201494,-17135.115678854632,0.707641565553812,-1.252208638042461,0.22476727526577273,-1693.4532691976058,6792.0700839319925,0 +239280,2757394.7570925667,-65659.33961960791,101243.58866280665,-20094.939427195284,0.8071260742604173,-1.2445501391708256,0.24701968777537553,-2622.246153911447,6490.286981967486,0 +239400,3170675.1635862393,-79473.6802552959,107657.15019292991,-23361.41112172667,0.9110491227145491,-1.2341312485108102,0.2678042974662024,-3499.9999999998336,6062.177826491166,0 +239520,3677081.158727699,-95717.35726858699,114700.11755435496,-26934.568895670505,1.0189044082704488,-1.2209745310595361,0.2867165555527638,-4309.630327279565,5516.075275247087,0 +239640,4294114.385292851,-114732.08059115862,122340.03305880216,-30799.336434674944,1.1301664708184636,-1.2051084813373045,0.30338835644377954,-5035.378602370617,4862.60859321292,0 +239760,5040969.961295196,-136862.8071118031,130513.40853156001,-34922.06082581105,1.2442932527738815,-1.1865674616748079,0.31749520249879937,-5663.118960624529,4114.496766047454,0 +239880,5938257.677717956,-162445.13755788343,139125.6006657353,-39247.99353401033,1.360728739927001,-1.1653916277919756,0.32876252000566086,-6180.633150012471,3286.3009395012687,0 +240000,7007565.0301184775,-191791.64264039576,148051.69232609883,-43700.03007722898,1.478905670288466,-1.1416268418296265,0.3369710034454766,-6577.848345501393,2394.1410032795866,0 +240120,8270854.871530453,-225177.54747596363,157138.3197148531,-48178.942725434674,1.5982482977326586,-1.1153245730222825,0.34196088402510333,-6847.033205136607,1455.381835724471,0 +240240,9749698.94428978,-262826.214650496,166206.3712923364,-52565.24293009479,1.7181751969749501,-1.086541786227268,0.3436350393949624,-6982.948351818769,488.2953162088981,0 +240360,11464357.373574136,-304894.8708990015,175054.47781649316,-56722.7031631763,1.8381020962172416,-1.055340818551515,0.341960884025103,-6982.948351818762,-488.2953162089939,0 +240480,13432723.367085446,-351461.0250111905,183463.2114109243,-60503.45781844895,1.9574447236614345,-1.0217892443432706,0.33697100344547726,-6847.0332051366695,-1455.381835724176,0 +240600,15669161.925839106,-402510.02820680616,191199.91232382273,-63754.49540350532,2.0756216540228993,-0.985959728841104,0.3287625200056612,-6577.84834550136,-2394.1410032796766,0 +240720,18183281.35408269,-457924.2334179565,198024.06208530685,-66325.25424959537,2.1920571411760186,-0.9479298707971812,0.3174952024987994,-6180.633150012426,-3286.3009395013532,0 +240840,20978686.6195923,-517474.21457833226,203693.11855652314,-68075.94567296354,2.3061839231314374,-0.9077820344156498,0.3033883564437804,-5663.118960624706,-4114.496766047209,0 +240960,24051773.7433448,-580812.506603078,207968.72005949667,-68886.15600997495,2.4174459856794517,-0.8656031709701104,0.2867165555527645,-5035.37860237055,-4862.608593212989,0 +241080,27390633.63870787,-647470.3148434632,210623.1515418273,-68663.22635320682,2.5253012712353526,-0.8214846304865213,0.26780429746620366,-4309.630327279803,-5516.075275246901,0 +241200,30974141.09050451,-716857.6120990058,211445.94586623192,-67349.88041682428,2.629224319689486,-0.7755219638993824,0.2470196877753773,-3500.0000000000946,-6062.177826491015,0 +241320,34771308.523525015,-788266.9847014429,210250.46927646967,-64930.57100469629,2.7287088283960905,-0.7278147161096917,0.22476727526577436,-2622.246153911358,-6490.2869819675225,0 +241440,38740983.41450768,-860881.5011799806,206880.3143587156,-61436.047792936406,2.8232701188288982,-0.6784662103928524,0.20148017783515063,-1693.4532691978984,-6792.07008393192,0 +241560,42831961.31751694,-933786.7546532985,201215.29964059638,-56945.71612138785,2.912447497886186,-0.6275833246234666,0.1776116523463121,-731.6992428736671,-6961.6532675779035,0 +241680,46983572.526068464,-1005987.0740000997,193176.85601099886,-51587.45874904796,2.9958065023412654,-0.5752762598016607,0.1536262724978538,244.29647691755162,-6995.735789133669,0 +241800,51126779.02212083,-1076425.7137411798,182732.57005630218,-45534.727804578855,3.0729410155036514,-0.5216583013822562,0.12999088642556067,1215.5372436683008,-6893.654271085494,0 +241920,55185790.01531698,-1144008.6272547028,169899.65640148617,-39000.876837948206,3.143475245778749,-0.46684557392370046,0.1071655300344769,2163.118960624559,-6657.3956140660985,0 +242040,59080170.44805056,-1207631.214949677,154747.14757345183,-32230.883802183147,3.2070655574867333,-0.41095678958813175,0.08559447292329699,3068.598027523597,-6291.558324094142,0 +242160,62727379.66535734,-1266207.2335873488,137396.62194030808,-25490.8025928278,3.2634021450210415,-0.354112991037272,0.06569757118197561,3914.3503242950637,-5803.263007885403,0 +242280,66045640.153367445,-1318698.8717219005,118021.33769329597,-19055.458691224005,3.312210542190138,-0.296437289280973,0.04786209537051801,4683.914244511962,-5202.0137783418,0 +242400,68957002.47923113,-1364146.8557009208,96843.70191530428,-13195.057671912546,3.3532529593892177,-0.2380545970461836,0.032435192738041276,5362.3111018328955,-4499.513267805715,0 +242520,71390446.07239372,-1401699.3654220642,74131.07540067847,-8161.4886080323695,3.386329442087259,-0.17909135824379874,0.01971713039644383,5936.336673094886,-3709.434849632589,0 +242640,73284839.66275026,-1430638.5202233025,50189.99174607001,-4175.164881130513,3.411278844985391,-0.11967527411930454,0.009955450962624486,6394.818203498188,-2847.1565015306414,0 +242760,74591582.58755083,-1450403.249250224,25358.94817092157,-1413.243767253456,3.4279796171006014,-0.05993502668031632,0.0033401544230155043,6728.831871568148,-1929.4614907192863,0 +242880,75276760.10306531,-1460607.4880924963,0.0000000020645450734824345,0.00000001131849969660383,3.436350393949898,-0.00000000000000485722573273506,-0.000000000000026628872717981977,6931.87648119097,-974.211706720622,0 +243000,75322672.08513398,-1461052.8391035527,-25510.544704797117,0.000000011501199217245072,3.4363503939498985,0.05999999999999514,-0.00000000000002672286617001538,7000,-0.000000000027414756843076237,0 +243120,74728633.28560136,-1451735.085543787,-50791.98410307272,-1414.541481762467,3.427979617100606,0.11993502668030662,0.0033401544230138723,6931.876481191032,974.2117067201737,0 +243240,73510991.39549811,-1432844.2435189807,-75469.25769582715,-4181.602047688701,3.4112788449853957,0.17967527411929488,0.009955450962622674,6728.8318715681635,1929.4614907192336,0 +243360,71702362.21735422,-1404758.1510233006,-99182.77003940116,-8179.298592436252,3.3863294420872645,0.23909135824378913,0.019717130396441844,6394.818203498211,2847.1565015305914,0 +243480,69350134.33982772,-1368029.9087428865,-121597.6271804273,-13232.617490795998,3.3532529593892266,0.29805459704617393,0.03243519273803798,5936.336673095126,3709.434849632205,0 +243600,66514343.90654585,-1323369.7811354871,-142411.94256702406,-19122.954253168802,3.3122105421901473,0.35643728928096347,0.04786209537051457,5362.311101832932,4499.513267805673,0 +243720,63265059.03539981,-1271622.4190737267,-161363.920237683,-25599.81904808877,3.2634021450210513,0.4141129910372626,0.06569757118197204,4683.914244512004,5202.013778341764,0 +243840,59679439.92686225,-1213740.4610249158,-178237.4886547246,-32393.93556660391,3.207065557486746,0.47095678958812254,0.08559447292329256,3914.350324295439,5803.26300788515,0 +243960,55838652.89338998,-1150755.6972691647,-192866.33371389328,-39230.89402521816,3.1434752457787623,0.5268455739236911,0.10716553003447239,3068.5980275236466,6291.558324094118,0 +244080,51824814.22310173,-1083749.0357193104,-205136.25873740428,-45844.5173874919,3.072941015503665,0.5816583013822471,0.12999088642555612,2163.118960624611,6657.395614066082,0 +244200,47718124.246798806,-1013820.4891969627,-214985.87708651595,-51989.159718945484,2.995806502341279,0.6352762598016518,0.15362627249784921,1215.5372436683547,6893.654271085484,0 +244320,43594325.74153255,-942060.31889782,-222405.71427767092,-57450.26819222237,2.9124474978862,0.6875833246234578,0.1776116523463075,244.2964769176064,6995.735789133666,0 +244440,39522587.25174872,-869522.3283822426,-227435.85688454946,-62052.69279255012,2.8232701188289147,0.7384662103928434,0.20148017783514618,-731.6992428732168,6961.653267577951,0 +244560,35563874.78280164,-797200.1213519666,-230162.33199738662,-65666.40502392725,2.728708828396107,0.787814716109683,0.22476727526576995,-1693.4532691978454,6792.0700839319325,0 +244680,31769838.258420184,-726006.9311891389,-230712.4319553469,-68209.47308378601,2.629224319689502,0.835521963899374,0.24701968777537295,-2622.2461539113074,6490.286981967543,0 +244800,28182205.262930296,-656759.4173930323,-229249.21432286204,-69648.32132413895,2.525301271235371,0.8814846304865132,0.26780429746620005,-3499.999999999703,6062.177826491242,0 +244920,24832646.247378826,-590165.6188977179,-225965.40790785177,-69995.46399728827,2.41744598567947,0.9256031709701025,0.286716555552761,-4309.63032727976,5516.075275246935,0 +245040,21743053.967228662,-526817.0692954002,-221076.94445952756,-69305.03816149775,2.3061839231314556,0.9677820344156421,0.3033883564437771,-5035.3786023705115,4862.608593213029,0 +245160,18926165.902831912,-467184.92305555823,-214816.31581973485,-67666.56259258518,2.192057141176037,1.007929870797174,0.31749520249879626,-5663.118960624674,4114.496766047255,0 +245280,16386451.441541651,-411619.8196221008,-207425.93144713846,-65197.416360035066,2.0756216540229175,1.0459597288410973,0.3287625200056582,-6180.633150012401,3286.300939501402,0 +245400,14121184.71138931,-360355.12441632984,-199151.62508823257,-62034.562919433345,1.9574447236614527,1.0817892443432642,0.3369710034454744,-6577.848345501341,2394.1410032797285,0 +245520,12121627.828694243,-313513.1293485478,-190236.43519795133,-58326.04570014743,1.8381020962172598,1.115340818551509,0.34196088402510033,-6847.033205136658,1455.3818357242296,0 +245640,10374256.520924779,-271113.7648735435,-180914.76398692222,-54222.75297470438,1.7181751969749683,1.1465417862272624,0.34363503939495993,-6982.948351818758,488.2953162090487,0 +245760,8861969.276708176,-233085.3638484451,-171407.0061151017,-49870.89752449561,1.5982482977326768,1.175324573022278,0.34196088402510105,-6982.948351818772,-488.2953162088434,0 +245880,7565231.273757466,-199277.01714532648,-161914.73031194488,-45405.58453466707,1.4789056702884842,1.2016268418296225,0.3369710034454745,-6847.033205136618,-1455.3818357244174,0 +246000,6463114.588370139,-169472.0657293958,-152616.49467369207,-40945.75337825991,1.360728739927019,1.225391627791972,0.3287625200056589,-6577.848345501412,-2394.1410032795347,0 +246120,5534206.174683461,-143402.27918714564,-143664.3771604413,-36590.67954263489,1.2442932527738992,1.2465674616748048,0.3174952024987976,-6180.633150012497,-3286.30093950122,0 +246240,4757364.666354119,-120762.27438678345,-135181.30425658348,-32418.11617370393,1.130166470818481,1.265108481337302,0.3033883564437779,-5663.118960624562,-4114.496766047409,0 +246360,4112316.2107651047,-101223.73063449803,-127259.25987671575,-28484.045364950958,1.0189044082704661,1.280974531059534,0.28671655555276226,-5035.378602370654,-4862.608593212882,0 +246480,3580088.3482220583,-84448.9623278901,-119958.4504589605,-24823.90297526912,0.9110491227145661,1.2941312485108085,0.26780429746620094,-4309.6303272796085,-5516.0752752470535,0 +246600,3143289.368608445,-70103.42146880666,-113307.48832179824,-21455.043809701754,0.8071260742604323,1.304550139170825,0.24701968777537486,-3500.0000000002256,-6062.177826490941,0 +246720,2786248.423877638,-57866.72612647693,-107304.63213953856,-18380.13337984115,0.7076415655538266,1.312208638042461,0.22476727526577212,-2622.246153911498,-6490.286981967466,0 +246840,2495038.5578133576,-47441.8524797791,-101920.09030279193,-15591.095101808716,0.61308027512102,1.3170901585225323,0.20148017783514818,-1693.453269197659,-6792.070083931979,0 +246960,2257410.1792535763,-38562.19155774123,-97099.35073579018,-13073.213780884018,0.5239028960637313,1.3191841283246828,0.1776116523463097,-731.6992428738172,-6961.653267577888,0 +247080,2062665.7205376436,-30996.259127720405,-92767.45149426392,-10809.00187670578,0.440543891608651,1.318486012376599,0.1536262724978514,244.2964769174008,-6995.735789133673,0 +247200,1901506.7199506303,-24549.957301552953,-88834.0533767767,-8781.475934888098,0.3634093784462665,1.314997322641971,0.12999088642555842,1215.537243668544,-6893.654271085451,0 +247320,1765881.9938866457,-19066.415049303014,-85199.12295092728,-6976.564885668156,0.2928751481711681,1.3087256148459117,0.10716553003447449,2163.118960624415,-6657.395614066146,0 +247440,1648859.9292167153,-14423.574519181493,-81758.98643836146,-5384.474078980147,0.22928483646318287,1.2996844721109433,0.08559447292329435,3068.5980275234615,-6291.558324094208,0 +247560,1544539.688017995,-10529.83089174524,-78412.47649511864,-3999.949804805888,0.17294824892887634,1.2878934755389737,0.06569757118197345,3914.350324295268,-5803.263007885265,0 +247680,1448006.1991349785,-7318.163849291882,-75066.86932587183,-2821.51662924208,0.12413985175977865,1.2733781618029942,0.0478620953705155,4683.9142445118505,-5202.013778341901,0 +247800,1355323.5222889895,-4739.306595567118,-71643.30216946002,-1849.8804889047647,0.08309743456069782,1.256169967840329,0.03243519273803836,5362.311101832799,-4499.513267805832,0 +247920,1263552.033160208,-2754.572605173796,-68081.37311973904,-1085.790358244306,0.050020951862658446,1.2363061627672314,0.01971713039644163,5936.336673095016,-3709.43484963238,0 +248040,1170768.3914096593,-1328.9920231712847,-64342.65710224107,-527.7182887709782,0.025071548964525694,1.2138297671622769,0.009955450962621813,6394.818203498126,-2847.156501530779,0 +248160,1076064.6297985148,-425.3933186626432,-60412.922556459205,-169.74283276555693,0.00837077684931736,1.1887894598933684,0.0033401544230136446,6728.831871568217,-1929.461490719049,0 +248280,979504.6242139527,-0.000000000951097483669392,-56302.900287721364,0.0000000014060817282669836,0.000000000000019616253066345735,1.161239472690148,-0.00000000000002900023970964227,6931.876481190949,-974.2117067207714,0 +248400,882022.6568713216,-0.0000000008321976435418995,-52047.53491856169,0.0000000013624136562917388,0.000000000000018087596750304277,1.131239472690148,-0.000000000000029611702236058853,7000,-0.00000000017834323687150357,0 +248520,785258.9998739961,-363.3941945746925,-47703.735137207885,-145.00359383073612,0.00837077684931278,1.0988544332130576,0.0033401544230118223,6931.876481190998,974.2117067204182,0 +248640,691339.9770501339,-1021.2516697470949,-43346.725582334,-405.52025457415846,0.025071548964518086,1.0641544930429792,0.009955450962618814,6728.831871568314,1929.4614907187058,0 +248760,602622.8850107912,-1902.3068114094972,-39065.18462085988,-749.8464155097474,0.05002095186265119,1.0272148045234393,0.01971713039643876,6394.81820349811,2847.156501530817,0 +248880,521437.365439391,-2939.642514098839,-34955.42272968189,-1147.4225652066386,0.0830974345606909,0.988115370794152,0.03243519273803561,5936.336673094994,3709.434849632415,0 +249000,449862.3748081396,-4079.0301971358867,-31114.910797495828,-1572.6692882823852,0.12413985175976885,0.9469408725220284,0.04786209537051181,5362.311101833029,4499.513267805558,0 +249120,389580.332155891,-5288.354750200046,-27635.502804764445,-2008.8787529712092,0.17294824892886373,0.90378048450171,0.06569757118196894,4683.914244512116,5202.013778341662,0 +249240,341846.60583252995,-6567.452019173275,-24596.71097094276,-2451.699827609093,0.22928483646317058,0.8587276825228198,0.08559447292328992,3914.350324295234,5803.263007885287,0 +249360,307603.34534797905,-7957.635132311153,-22059.383246438298,-2911.766983645475,0.29287514817115323,0.8118800409222204,0.10716553003446953,3068.598027523782,6291.558324094052,0 +249480,287752.72932902415,-9550.186546248106,-20060.104343562143,-3416.0846921010734,0.3634093784462491,0.763339021259724,0.1299908864255531,2163.1189606247544,6657.395614066035,0 +249600,283587.61960881593,-11493.143288221507,-18606.59524972571,-4007.883882366113,0.4405438916086339,0.7132097525749479,0.1536262724978461,1215.5372436685034,6893.654271085457,0 +249720,297359.43683055014,-13995.797426996993,-17674.326474833357,-4744.804286424068,0.5239028960637144,0.6616008037012259,0.1776116523463044,244.2964769173596,6995.735789133675,0 +249840,332945.955776052,-17330.462884300938,-17204.492089517196,-5695.411980437844,0.613080275121001,0.6086239481296905,0.20148017783514302,-731.6992428734625,6961.653267577925,0 +249960,396567.5922390226,-21831.211622353534,-17103.420179097422,-6934.219513047621,0.7076415655538058,0.5543939219327796,0.22476727526576726,-1693.453269197313,6792.070083932065,0 +250080,497491.07327088533,-27889.444412353056,-17243.425777297834,-8535.521364838534,0.8071260742604115,0.4990281752714532,0.24701968777536995,-2622.246153911536,6490.286981967451,0 +250200,648654.9652241558,-35946.32163476095,-17465.049145353438,-10566.476792390662,0.9110491227145437,0.4426466180242987,0.26780429746619666,-3499.999999999917,6062.177826491118,0 +250320,867152.5126113297,-46482.22736535313,-17580.568927147076,-13079.955309288289,1.0189044082704424,0.38537136008943496,0.28671655555275877,-4309.6303272793275,5516.075275247273,0 +250440,1174513.1379839869,-60003.56743730147,-17378.638491772508,-16107.701100336692,1.1301664708184576,0.32732644692166313,0.30338835644377427,-5035.378602370683,4862.608593212851,0 +250560,1596733.843854045,-77027.3044810875,-16629.865557390367,-19654.36972324681,1.2442932527738757,0.2686375908776349,0.3174952024987938,-5663.118960624585,4114.496766047377,0 +250680,2164024.485321094,-98063.7086769508,-15093.139524253616,-23692.945581104254,1.3607287399269954,0.20943189895088016,0.32876252000565503,-6180.633150012516,3286.3009395011836,0 +250800,2910245.2810100694,-123597.85366456892,-12522.506214989382,-28161.967061045143,1.47890567028846,0.14983759748636363,0.3369710034454717,-6577.84834550129,2394.1410032798703,0 +250920,3872030.0139537985,-154070.41663404173,-8674.393435160004,-32964.87532571437,1.5982482977326526,0.08998375447077418,0.34196088402509817,-6847.033205136627,1455.381835724377,0 +251040,5087603.456789879,-189858.3553496579,-3314.9999316247195,-37971.67106992806,1.7181751969749441,0.0300000000000065,0.34363503939495693,-6982.948351818774,488.2953162088022,0 +251160,6595316.285971449,-231256.03830733616,3772.328145840365,-43022.91992292716,1.8381020962172356,-0.02998375447076121,0.34196088402509855,-6982.948351818783,-488.29531620869284,0 +251280,8431935.061351867,-278457.4021882869,12779.898054078036,-47935.99997893819,1.9574447236614285,-0.08983759748635066,0.3369710034454725,-6847.0332051366495,-1455.3818357242696,0 +251400,10630738.837520242,-331539.70633581525,23868.804702124115,-52513.341786371464,2.0756216540228936,-0.14943189895086728,0.32876252000565614,-6577.8483455013275,-2394.141003279767,0 +251520,13219487.736175807,-390449.44791605126,37162.54957158659,-56552.27877186771,2.1920571411760137,-0.20863759087762215,0.31749520249879526,-6180.633150012567,-3286.3009395010868,0 +251640,16218342.26093768,-454990.9919290791,52741.29441011882,-59856.010552121304,2.306183923131432,-0.2673264469216506,0.303388356443776,-5663.11896062465,-4114.496766047288,0 +251760,19637824.8658534,-524818.453135515,70636.90146885939,-62245.08843834654,2.4174459856794464,-0.3253713600894224,0.28671655555275977,-5035.378602370483,-4862.608593213058,0 +251880,23476926.466941096,-599431.3362871024,90828.91462523682,-63568.76691194214,2.525301271235347,-0.38264661802428646,0.26780429746619877,-4309.630327279728,-5516.07527524696,0 +252000,27721468.958343245,-678174.3899727075,113241.63659824361,-63715.53192087238,2.6292243196894796,-0.4390281752714413,0.24701968777537225,-3500.000000000012,-6062.177826491064,0 +252120,32342838.77315585,-760242.051383946,137742.4536801346,-62622.12100236015,2.728708828396084,-0.49439392193276765,0.2247672752657692,-2622.2461539112687,-6490.286981967559,0 +252240,37297204.377815925,-844687.7493622787,164141.54809392925,-60280.395000701246,2.823270118828891,-0.548623948129679,0.2014801778351454,-1693.4532691978054,-6792.0700839319425,0 +252360,42525320.68788272,-930438.1888677657,192193.11682817034,-56741.50838799513,2.9124474978861783,-0.6016008037012148,0.17761165234630685,-731.6992428735716,-6961.6532675779135,0 +252480,47953004.54641851,-1016312.5627151631,221598.18303056317,-52116.9543428929,2.9958065023412597,-0.6532097525749373,0.15362627249784852,244.29647691724995,-6995.735789133679,0 +252600,53492337.15150091,-1101046.431320496,252009.04132536234,-46576.22807627894,3.072941015503645,-0.7033390212597134,0.12999088642555545,1215.5372436683954,-6893.654271085477,0 +252720,59043612.184255436,-1183319.7876522816,283035.3226286176,-40341.050057366265,3.143475245778742,-0.7518800409222104,0.10716553003447178,2163.1189606246503,-6657.395614066069,0 +252840,64498004.04392436,-1261788.5955762754,314251.599386746,-33676.308713691484,3.2070655574867284,-0.7987276825228103,0.08559447292329142,3068.598027523326,-6291.558324094274,0 +252960,69740881.86303143,-1335118.8709930961,345206.3821042365,-26878.105475689605,3.263402145021036,-0.8437804845017,0.06569757118197023,3914.350324295143,-5803.263007885349,0 +253080,74655645.66208827,-1402022.1836050285,375432.28698246466,-20259.496975973103,3.312210542190132,-0.8869408725220189,0.04786209537051285,4683.914244512034,-5202.013778341736,0 +253200,79127915.57229069,-1461291.3095583827,404457.08750110934,-14134.712127586154,3.3532529593892137,-0.9281153707941432,0.032435192738035315,5362.311101832703,-4499.513267805947,0 +253320,83049868.14957286,-1511834.6763808322,431815.30503604026,-8802.758846075483,3.3863294420872543,-0.9672148045234311,0.019717130396438146,5936.3366730949365,-3709.4348496325074,0 +253440,86324489.68899429,-1552708.222805455,457059.94999700563,-4531.412198713152,3.411278844985385,-1.0041544930429702,0.009955450962619104,6394.818203498227,-2847.1565015305537,0 +253560,88869508.44301058,-1583143.3536093598,479773.9995606848,-1542.583056341757,3.4279796171005947,-1.0388544332130494,0.003340154423010439,6728.831871568174,-1929.4614907191938,0 +253680,90620777.63079245,-1602569.804102767,499581.19373353524,0.000000016626954773939218,3.4363503939498905,-1.0712394726901406,-0.00000000000003136770357348162,6931.876481190982,-974.2117067205269,0 +253800,91534909.20500286,-1610632.4348929566,516155.7495481124,0.000000021265095888991366,3.43635039394989,-1.1012394726901407,-0.00000000000003113239312162199,7000,0.0000000000686322151257252,0 +253920,91591002.73245253,-1607201.2436789242,529230.6333276054,-1566.0245807652195,3.4279796171005965,-1.128789459893361,0.0033401544230097896,6931.876481191019,974.2117067202688,0 +254040,90791370.89829811,-1592374.190759043,538604.0910902388,-4647.173066347689,3.411278844985389,-1.1538297671622701,0.009955450962617594,6728.831871568246,1929.4614907189432,0 +254160,89161228.11651489,-1566472.7686365366,544144.2136883247,-9120.89280439361,3.3863294420872605,-1.1763061627672253,0.01971713039643582,6394.818203498334,2847.156501530316,0 +254280,86747375.74120441,-1530030.5816097734,545791.4012941723,-14799.610232400662,3.353252959389222,-1.196169967840323,0.032435192738032234,5936.336673095074,3709.434849632287,0 +254400,83615980.47690874,-1483775.5165128896,543558.6856034275,-21440.84875498552,3.3122105421901424,-1.2133781618029882,0.04786209537050908,5362.311101832869,4499.513267805748,0 +254520,79849596.35744545,-1428606.3606672667,537529.9615014172,-28760.160072254454,3.2634021450210486,-1.2278934755389685,0.06569757118196587,4683.914244512228,5202.013778341561,0 +254640,75543620.80883452,-1365564.9410378481,527856.2669577447,-36446.03120064604,3.20706555748674,-1.2396844721109384,0.08559447292328733,3914.350324295029,5803.263007885425,0 +254760,70802399.11358418,-1295805.0079087103,514750.32526313025,-44175.83077211316,3.1434752457787556,-1.2487256148459076,0.1071655300344673,3068.59802752356,6291.55832409416,0 +254880,65735198.128157996,-1220559.1612191955,498479.62317791174,-51631.8297361531,3.0729410155036607,-1.2549973226419668,0.12999088642555068,2163.118960624898,6657.395614065988,0 +255000,60452260.228196055,-1141105.1181895717,479358.3393221837,-58516.371367331776,2.995806502341277,-1.2584860123765957,0.15362627249784358,1215.537243668652,6893.654271085432,0 +255120,55061124.55950862,-1058732.552870547,457738.45800922863,-64565.36581161789,2.9124474978861974,-1.2591841283246796,0.17761165234630188,244.29647691751043,6995.735789133671,0 +255240,49663368.27352179,-974711.6124643398,434000.40515244834,-69559.43312244947,2.8232701188289115,-1.25709015852253,0.20148017783514055,-731.6992428733123,6961.653267577941,0 +255360,44351879.650250666,-890264.0459039015,408543.5268206149,-73332.20084992173,2.7287088283961056,-1.2522086380424586,0.22476727526576457,-1693.4532691975526,6792.070083932005,0 +255480,39208732.062384196,-806537.6834064103,381776.70068429294,-75775.46169877297,2.6292243196895004,-1.2445501391708227,0.24701968777536745,-2622.246153911396,6490.286981967507,0 +255600,34303686.409339756,-724584.7979712775,354109.3300661067,-76841.09812388921,2.5253012712353673,-1.234131248510807,0.2678042974661937,-3500.0000000001305,6062.177826490994,0 +255720,29693312.978927404,-645344.6761876541,325942.92408089497,-76539.87050669391,2.4174459856794677,-1.2209745310595332,0.28671655555275527,-4309.630327279522,5516.075275247121,0 +255840,25420693.71748804,-569630.5387211372,297663.4198843333,-74937.33313695437,2.3061839231314543,-1.2051084813373012,0.3033883564437721,-5035.378602370301,4862.608593213246,0 +255960,21515643.60001923,-498120.7893534807,269634.3583057839,-72147.28024826337,2.1920571411760355,-1.186567461674804,0.317495202498791,-5663.11896062473,4114.496766047177,0 +256080,17995375.21789403,-431354.440306983,242190.9852262028,-68323.22862699587,2.075621654022916,-1.1653916277919723,0.32876252000565265,-6180.633150012445,3286.300939501317,0 +256200,14865523.100109952,-369730.4616646454,215635.3199536996,-63648.51235157453,1.9574447236614518,-1.1416268418296236,0.3369710034454698,-6577.848345501238,2394.1410032800122,0 +256320,12121442.401259668,-313510.7313968851,190232.20927321268,-58325.59958473656,1.838102096217259,-1.1153245730222785,0.34196088402509545,-6847.033205136678,1455.3818357241355,0 +256440,9749698.944289984,-262826.21465050156,166206.37129233748,-52565.24293009273,1.7181751969749675,-1.0865417862272637,0.3436350393949547,-6982.948351818764,488.2953162089528,0 +256560,7729672.749738997,-217685.9699392405,143740.42508211208,-46576.04630387324,1.598248297732676,-1.0553408185515112,0.3419608840250955,-6982.948351818765,-488.2953162089392,0 +256680,6035203.903711453,-177988.55888883345,122973.89802643207,-40554.975544101704,1.478905670288483,-1.021789244343267,0.33697100344546993,-6847.03320513668,-1455.381835724122,0 +256800,4636217.0663995575,-143535.41937542,104003.19991335881,-34679.26031051818,1.360728739927018,-0.9859597288410995,0.3287625200056541,-6577.848345501379,-2394.1410032796252,0 +256920,3500268.657363437,-114045.74527715122,86882.54826146027,-29100.03482713909,1.2442932527738986,-0.9479298707971769,0.3174952024987925,-6180.633150012452,-3286.3009395013046,0 +257040,2593968.690337618,-89172.39812347297,71625.8206842961,-23937.948970683494,1.1301664708184798,-0.9077820344156459,0.30338835644377365,-5663.118960624739,-4114.496766047165,0 +257160,1884237.5388427763,-68518.3578061499,58209.29549941062,-19280.854398949396,1.018904408270465,-0.8656031709701062,0.2867165555527578,-5035.378602370588,-4862.608593212951,0 +257280,1339366.8666183765,-51653.2047332602,46575.22052961881,-15183.539351041385,0.9110491227145654,-0.8214846304865163,0.2678042974661963,-4309.630327279533,-5516.075275247113,0 +257400,929863.7681582691,-38129.11964116321,36636.1225202198,-11669.358145244243,0.807126074260432,-0.7755219638993778,0.24701968777537003,-3500.0000000001423,-6062.177826490989,0 +257520,629067.852118379,-27495.895836001346,28279.737364492918,-8733.485833626122,0.7076415655538268,-0.7278147161096873,0.22476727526576717,-2622.246153911409,-6490.286981967502,0 +257640,413542.2965066694,-19314.487755892485,21374.406982564687,-6347.433746883694,0.6130802751210208,-0.6784662103928477,0.20148017783514316,-1693.4532691975658,-6792.0700839320025,0 +257760,263251.23741053895,-13168.673895889217,15774.755601768964,-4464.395878380526,0.5239028960637326,-0.6275833246234621,0.17761165234630466,-731.6992428737217,-6961.653267577897,0 +257880,161546.40331991581,-8674.493450903425,11327.430122541908,-3024.9655483887177,0.4405438916086529,-0.5752762598016565,0.15362627249784636,244.2964769174968,-6995.735789133671,0 +258000,94994.7333480767,-5487.22361230742,7876.669999929829,-1962.7700980879595,0.363409378446269,-0.5216583013822518,0.12999088642555343,1215.5372436686387,-6893.654271085435,0 +258120,53084.92623134718,-3305.7940719442176,5269.464959479492,-1209.6184197153596,0.29287514817117133,-0.46684557392369586,0.1071655300344696,2163.1189606245066,-6657.395614066116,0 +258240,27853.7937810338,-1874.6795020322857,3360.066376589852,-699.8378364297656,0.2292848364631868,-0.4109567895881273,0.0855944729232896,3068.5980275235474,-6291.558324094166,0 +258360,13472.65718954647,-983.4594966749574,2013.6415724844321,-373.58516601087695,0.17294824892887797,-0.3541129910372677,0.06569757118196812,3914.350324295018,-5803.263007885434,0 +258480,5830.022419001471,-464.37686799874575,1108.8995032853202,-179.04040990014897,0.12413985175978104,-0.2964372892809686,0.047862095370510394,4683.914244511922,-5202.013778341837,0 +258600,2140.07665333763,-188.34696620826543,539.569739819423,-73.51695251345502,0.08309743456070098,-0.23805459704617926,0.03243519273803351,5362.311101832861,-4499.513267805758,0 +258720,598.2253939864221,-59.96135133268544,214.6812376099619,-23.635411541531116,0.05002095186265913,-0.17909135824379446,0.019717130396435904,5936.336673094856,-3709.4348496326356,0 +258840,96.21939592850431,-12.079350269075244,57.65896461682316,-4.796487821083199,0.025071548964527183,-0.11967527411930019,0.00995545096261639,6394.818203498166,-2847.1565015306915,0 +258960,1.6746420831471966,-0.6047352431760729,4.329923445185218,-0.24130485540393687,0.008370776849319663,-0.05993502668031194,0.0033401544230085393,6728.8318715682435,-1929.4614907189564,0 +259080,1,0.0000000000013644294027947979,-0.00000000000002955968803064479,-0.0000000000020267901940096422,0.000000000000022740490046579964,-0.0000000000000004926614671774132,-0.00000000000003377983656682737,6931.876481190961,-974.2117067206765,0