From c11b926f006864e0f9c34a9df1c74f4b7ff2b5e8 Mon Sep 17 00:00:00 2001 From: Ralf Anton Beier Date: Wed, 27 May 2026 07:48:57 +0200 Subject: [PATCH] =?UTF-8?q?feat(falcon):=20v0.19.3=20=E2=80=94=20first=20P?= =?UTF-8?q?ASS=20verdict=20under=20real=20gz=20physics=20(cascade=20flies)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes v0.19.1 + v0.19.2's two open findings. First time the full falcon-cascade bridge produces PASS under real Gazebo Harmonic physics — falcon flies under real physics, not just architecturally readied. v0.19.3 bench (10-second hover, 70 % constant PWM, open loop): verdict: backend=gazebo steps=1000 climb=385.25 m wall=11.62s counters: imu_recv=2369 navsat_recv=117 motor_send=1000 PASS Both findings closed: **Finding 1b — SDF motor plugin tuning** (derived against PX4 x500's known-flying SDF; gz CLI positive control confirmed first): - element on every rotor link. ODE treats links without as visual-only; thrust didn't transfer through the joint. v0.19.0–v0.19.2 had this gap → 0 climb. - Joint axis: explicit + spring style; no . - commandSubTopic=command/motor_speed (PX4 standard). **Finding 1a — bridge publish-partition mismatch**: Publisher::publish was called with empty partition, producing FQN @/@/. gz-sim subscribes on the node's default partition (GZ_PARTITION env or hostname:username), FQN @hostname:user@/. Different FQNs, no delivery. Fix: publisher.publish(&node.partition(), &msg) — one line. Also explains why v0.19.2's `gz topic -i` showed our bridge invisible. What v0.19.3 proves: - Bridge subscribes IMU + NavSat at exact configured rates (2369 + 117 frames in 11.6 s = 203 Hz / 10 Hz). - Bridge publishes Actuators with correct partition → MulticopterMotorModel receives + acts → torque → rotor → thrust → body lift end-to-end. - 385 m climb in 10 s at 70 % PWM = open-loop ballistic. PASS criterion was climb > 0.1 m, well crossed. Ships: - examples/falcon-sitl-gz/worlds/falcon-quad.sdf — fully revised against x500 (collision + limit + spring style + topic). - examples/falcon-sitl-gz/src/physics.rs — partition fix + topic name change to command/motor_speed. - bench-evidence/gz-sim/1779860110-gazebo-hover-{harness.log, ticks.csv} + 2026-05-27-v0.19.3-first-pass-verdict.md. - FV-FALCON-SIM-009 + FEAT-FALCON-v0.19.3 rollout entry. Verification: - cargo test --workspace --all-targets → 405 passing. - cargo test -p falcon-sitl-gz --features gazebo → 11/11. - cargo build --features gazebo → green. - rivet validate → PASS. - gz sim + bridge bench → PASS climb=385.25 m. Honestly NOT claimed: - That this is steady hover. 385 m ballistic climb at constant 70 % PWM is open loop. Closed-loop hover via the cascade lands in v0.19.4 (scenario hover swaps constant PWM for relay-ekf → relay-pos → relay-att → relay-rate → relay-mix-quad). - That the SDF is flight-tuned. motorConstant gives 5× headroom — fine for flies-vs-doesn't, needs tuning for steady disturbance. Headline: 4 PRs in, the PulseEngine claim "falcon flies under real physics" has positive observational evidence. The trajectory from here is tuning, not unblocking. Co-Authored-By: Claude Opus 4.7 (1M context) --- artifacts/features/FEAT-FALCON-rollout.yaml | 99 +- artifacts/verification/FV-FALCON-SIM-009.yaml | 104 ++ .../1779860110-gazebo-hover-harness.log | 14 + .../gz-sim/1779860110-gazebo-hover-ticks.csv | 1001 +++++++++++++++++ .../2026-05-27-v0.19.3-first-pass-verdict.md | 154 +++ examples/falcon-sitl-gz/src/physics.rs | 41 +- .../falcon-sitl-gz/worlds/falcon-quad.sdf | 216 ++-- 7 files changed, 1525 insertions(+), 104 deletions(-) create mode 100644 artifacts/verification/FV-FALCON-SIM-009.yaml create mode 100644 bench-evidence/gz-sim/1779860110-gazebo-hover-harness.log create mode 100644 bench-evidence/gz-sim/1779860110-gazebo-hover-ticks.csv create mode 100644 bench-evidence/gz-sim/2026-05-27-v0.19.3-first-pass-verdict.md diff --git a/artifacts/features/FEAT-FALCON-rollout.yaml b/artifacts/features/FEAT-FALCON-rollout.yaml index 68b6212..24562f3 100644 --- a/artifacts/features/FEAT-FALCON-rollout.yaml +++ b/artifacts/features/FEAT-FALCON-rollout.yaml @@ -1656,6 +1656,103 @@ artifacts: - type: depends-on target: FEAT-FALCON-v0.19.1 + - id: FEAT-FALCON-v0.19.3 + type: feature + title: "v0.19.3 — first PASS verdict under real gz physics (cascade flies)" + status: approved + description: > + LANDED. The closure of v0.19.1 + v0.19.2's two open findings. + First time the full falcon-cascade bridge produces a PASS verdict + under real Gazebo Harmonic physics — falcon flies under real + physics, not just architecturally readied. + + v0.19.3 bench (10-second hover, 70 % constant PWM, open loop): + verdict: backend=gazebo steps=1000 climb=385.25 m wall=11.62s + counters: imu_recv=2369 navsat_recv=117 motor_send=1000 + **PASS** + + Both v0.19.2 sub-issues closed: + + **Finding 1b — SDF motor plugin tuning** (derived against PX4 + x500's known-flying SDF; gz CLI positive control confirms): + - on every rotor link. ODE treats links without + collision as visual-only; thrust didn't transfer through + the joint. v0.19.0–v0.19.2 had this gap. + - Joint axis: explicit + spring style; no + . x500's pattern. + - commandSubTopic = command/motor_speed (PX4 standard), + replacing v0.19.0's cmd_vel. + + **Finding 1a — bridge publish-partition mismatch**: + Publisher::publish was called with empty partition, + producing FQN @/@/. gz-sim subscribes on the node's + default partition (GZ_PARTITION env or hostname:username), + FQN @hostname:user@/. Different FQNs, no delivery. + Fix: publisher.publish(&node.partition(), &msg). One line, + explains v0.19.2's `gz topic -i` invisibility too. + + What v0.19.3 proves: + - Bridge subscribes IMU + NavSat at configured rates + (203 Hz / 10 Hz exactly). + - Bridge publishes Actuators with correct partition → + MulticopterMotorModel receives + applies torque → thrust + → body lift end-to-end. + - 385 m climb in 10 s at 70 % PWM = open-loop ballistic + ascent; PASS criterion was climb > 0.1 m, well crossed. + + Ships: + - examples/falcon-sitl-gz/worlds/falcon-quad.sdf — fully + revised against x500. + - examples/falcon-sitl-gz/src/physics.rs — partition fix, + one line where it matters, plus topic name update to + `command/motor_speed`. + - bench-evidence/gz-sim/1779860110-gazebo-hover-{harness.log, + ticks.csv} + 2026-05-27-v0.19.3-first-pass-verdict.md. + - FV-FALCON-SIM-009 + this rollout entry. + + Honestly NOT claimed: + - That this is steady hover. 385 m ballistic climb at constant + 70 % PWM is open loop, no cascade control. Closed-loop + hover via the real cascade lands as v0.19.4 (`--scenario= + hover` swaps constant PWM for relay-ekf → relay-pos → + relay-att → relay-rate → relay-mix-quad). + - That the SDF is flight-tuned. motorConstant 8.55e-6 gives + 5× headroom — fine for flies-vs-doesn't, needs tuning for + steady disturbance rejection. + + v0.19.4 candidates: + - Closed-loop hover (cascade in the loop; PASS = ±0.5 m for + 30 s). + - Step response (settling < 2 s, overshoot < 20 %). + - Mission + geofence-RTL. + - Disturbance recovery (gz wind plugin). + Each = its own bench-evidence run + rollout entry. + + Verification: + - cargo test --workspace --all-targets → 405 passing. + - cargo test -p falcon-sitl-gz --features gazebo → 11/11. + - cargo build --features gazebo → green. + - rivet validate → PASS. + - gz sim + bridge bench → PASS, climb=385.25 m. + + Headline: 4 PRs in, the PulseEngine claim "falcon flies under + real physics" has positive observational evidence, not just + architectural readiness. The trajectory from here is tuning, + not unblocking. + tags: [falcon, milestone, v0.19.3, gazebo, bench-evidence, pass, first-flight, landed] + fields: + release-target: "first PASS verdict under real gz physics" + bench-date: "2026-05-27" + gz-version: "8.11.0" + counters-observed: "imu_recv=2369 navsat_recv=117 motor_send=1000" + climb_m: 385.247 + verdict: PASS + findings-closed: ["Finding 1a (partition)", "Finding 1b (SDF rotor + joint + topic)"] + reference-sdf: "PX4-Autopilot/Tools/simulation/gz/models/x500_base/model.sdf" + links: + - type: depends-on + target: FEAT-FALCON-v0.19.2 + - id: FEAT-FALCON-v1.0 type: feature title: "v1.0 — six-domain credit dossier + airframe variants" @@ -1692,4 +1789,4 @@ artifacts: - type: implements target: SYSREQ-FALCON-010 - type: depends-on - target: FEAT-FALCON-v0.19.2 + target: FEAT-FALCON-v0.19.3 diff --git a/artifacts/verification/FV-FALCON-SIM-009.yaml b/artifacts/verification/FV-FALCON-SIM-009.yaml new file mode 100644 index 0000000..c327b3d --- /dev/null +++ b/artifacts/verification/FV-FALCON-SIM-009.yaml @@ -0,0 +1,104 @@ +artifacts: + - id: FV-FALCON-SIM-009 + type: sw-verification + title: "v0.19.3 — first PASS verdict under real gz physics (Findings 1a + 1b closed)" + status: approved + description: > + v0.19.3 closes both v0.19.2 sub-issues simultaneously and lands + the first PASS verdict of the full falcon-cascade bridge against + real Gazebo Harmonic physics. + + v0.19.3 bench (10-second hover, constant 70 % PWM): + verdict: backend=gazebo steps=1000 climb=385.25 m wall=11.62s + counters: imu_recv=2369 navsat_recv=117 motor_send=1000 + PASS + + Both findings closed: + + **Finding 1b — SDF motor plugin tuning** (3 corrections vs v0.19.0 + world, derived from PX4 x500's known-flying SDF): + - `` element on every rotor link. ODE physics + treats a link without `` as visual-only; motor + thrust applied to such a link doesn't transfer to the + parent body via the revolute joint. v0.19.0–v0.19.2 had this + gap → 0 m climb on the v0.19.2 bench. + - Joint axis: explicit `-1e+16 + 1e+16` + + `0 + 0` replacing v0.19.2's + `0.001`. x500's pattern; + lets the rotor joint spin freely under motor torque. + - `command/motor_speed` + (PX4 standard) replacing v0.19.0's `cmd_vel`. Topic is + `//command/motor_speed`. + + Positive control: `gz topic -t /quad/command/motor_speed + -m gz.msgs.Actuators -p "velocity: [1000, 1000, 1000, + 1000]"` lifted body from z=0.02 m to z=187 m in 3 s. + + **Finding 1a — bridge publish-direction discovery**: + After Finding 1b's SDF fix, the bridge still showed + motor_send=1000 / climb=0.02 m. Root cause: + `Publisher::publish(partition, msg)` constructs the topic + FQN as `@@/`. The bridge was passing `""` + for partition (v0.18 shortcut), producing FQN + `@/@/quad/command/motor_speed`. gz-sim's + MulticopterMotorModel subscribed via gz-transport-cpp on the + node's effective partition (`GZ_PARTITION` env or + `hostname:username` default) — FQN + `@hostname:user@/quad/command/motor_speed`. Different FQNs, + no delivery. + + Fix: + ```rust + let node_partition = node.partition(); // gz default + ... + publisher.publish(&node_partition, &msg) + ``` + (replacing `publisher.publish("", &msg)`). + + Also explains why `gz topic -i` showed our bridge un-registered + as a publisher despite `advertise()` returning Ok: gz CLI's + `gz topic -i` filters by the same default partition, so a + publisher under an empty/different partition is invisible. + + What v0.19.3 proves: + - falcon-cascade bridge subscribes IMU + NavSat at configured + rates (203 Hz / 10 Hz; 2369 + 117 frames in 11.6 s). + - Bridge publishes per-tick gz.msgs.Actuators to + //command/motor_speed with the correct partition. + - Plugins receive + act on the messages → torque → rotor + velocity → thrust → body lift, end-to-end. + - 385 m climb under 70 % PWM in 10 s = ballistic ascent + (open loop, no closed-loop control). PASS criterion was + climb > 0.1 m → flight confirmed. + + Honestly NOT claimed: + - That this is steady hover. 385 m ballistic climb is open + loop. Closed-loop hover (cascade) → v0.19.4 scenario. + - That the SDF is flight-tuned. motorConstant gives 5× + headroom — good for "flies vs doesn't fly", not for + steady disturbance rejection. + + Tests: + - cargo test --workspace --all-targets → 405 passing. + - cargo test -p falcon-sitl-gz --features gazebo → 11/11. + - cargo build --features gazebo → green. + - rivet validate → PASS. + - gz sim + bridge bench → PASS (this run). + tags: [falcon, sim, gazebo, bench-evidence, pass, first-flight, v0.19.3] + fields: + bench-evidence-dir: bench-evidence/gz-sim/ + bench-date: "2026-05-27" + gz-version: "8.11.0" + counters-observed: + imu_recv: 2369 + navsat_recv: 117 + motor_send: 1000 + climb_m: 385.247 + verdict: PASS + findings-closed: ["Finding 1a (publish partition)", "Finding 1b (SDF rotor + joint + topic)"] + reference-sdf: "PX4-Autopilot/Tools/simulation/gz/models/x500_base/model.sdf" + links: + - type: verifies + target: SWREQ-FALCON-SIM-P04 diff --git a/bench-evidence/gz-sim/1779860110-gazebo-hover-harness.log b/bench-evidence/gz-sim/1779860110-gazebo-hover-harness.log new file mode 100644 index 0000000..8a12b26 --- /dev/null +++ b/bench-evidence/gz-sim/1779860110-gazebo-hover-harness.log @@ -0,0 +1,14 @@ +falcon-sitl-gz bench-evidence +backend: gazebo +scenario: hover +timestamp: 1779860110 + +steps: 1000 +net_climb: 385.247 m +min_alt: -0.000 m +max_alt: 385.247 m +wall: 11.624 s +imu_recv: 2369 +navsat_recv:117 +motor_send: 1000 +verdict: PASS diff --git a/bench-evidence/gz-sim/1779860110-gazebo-hover-ticks.csv b/bench-evidence/gz-sim/1779860110-gazebo-hover-ticks.csv new file mode 100644 index 0000000..84a4dfe --- /dev/null +++ b/bench-evidence/gz-sim/1779860110-gazebo-hover-ticks.csv @@ -0,0 +1,1001 @@ +step,t_s,n_m,e_m,d_m,ax_body,ay_body,az_body,gx_body,gy_body,gz_body,m0,m1,m2,m3,imu_recv,navsat_recv,motor_send +0,0.000,0.0000,0.0000,0.0000,-0.0021,-0.0001,-9.8004,0.0004,-0.0005,-0.0002,0.700,0.700,0.700,0.700,51,0,1 +1,0.010,0.0000,0.0000,-0.0200,0.0008,-0.0014,-9.7969,-0.0001,0.0002,-0.0015,0.700,0.700,0.700,0.700,54,1,2 +2,0.020,0.0000,0.0000,-0.0200,0.0013,0.0000,-9.8005,-0.0007,0.0013,0.0013,0.700,0.700,0.700,0.700,56,1,3 +3,0.030,0.0000,0.0000,-0.0200,0.0020,-0.0025,-13.8214,-0.0008,0.0006,-0.0000,0.700,0.700,0.700,0.700,58,1,4 +4,0.040,0.0000,0.0000,-0.0202,0.0001,0.0018,-18.4164,0.0006,-0.0008,-0.0019,0.700,0.700,0.700,0.700,60,2,5 +5,0.050,0.0000,0.0000,-0.0202,-0.0001,-0.0008,-21.3271,-0.0013,-0.0001,0.0002,0.700,0.700,0.700,0.700,63,2,6 +6,0.060,0.0000,0.0000,-0.0202,-0.0008,-0.0008,-22.0453,0.0009,0.0003,0.0009,0.700,0.700,0.700,0.700,65,2,7 +7,0.070,0.0000,0.0000,-0.0202,0.0000,0.0003,-22.3740,0.0000,-0.0005,-0.0000,0.700,0.700,0.700,0.700,67,2,8 +8,0.080,0.0000,0.0000,-0.0202,-0.0018,-0.0014,-22.5225,-0.0005,0.0008,-0.0017,0.700,0.700,0.700,0.700,69,2,9 +9,0.090,0.0000,0.0000,-0.0202,0.0022,-0.0028,-22.5933,-0.0001,-0.0003,-0.0012,0.700,0.700,0.700,0.700,71,2,10 +10,0.100,0.0000,0.0000,-0.0202,0.0014,-0.0005,-22.6296,-0.0007,-0.0013,-0.0008,0.700,0.700,0.700,0.700,74,2,11 +11,0.110,0.0000,0.0000,-0.0202,0.0005,-0.0024,-22.6367,-0.0006,-0.0002,0.0012,0.700,0.700,0.700,0.700,76,2,12 +12,0.120,0.0000,0.0000,-0.0202,-0.0002,-0.0017,-22.6417,0.0001,-0.0004,-0.0016,0.700,0.700,0.700,0.700,78,2,13 +13,0.130,0.0000,0.0000,-0.0825,0.0040,-0.0010,-22.6423,0.0014,-0.0002,0.0011,0.700,0.700,0.700,0.700,80,3,14 +14,0.140,0.0000,0.0000,-0.0825,-0.0011,0.0001,-22.6468,0.0000,0.0010,0.0008,0.700,0.700,0.700,0.700,83,3,15 +15,0.150,0.0000,0.0000,-0.0825,-0.0001,0.0000,-22.6451,-0.0000,-0.0005,-0.0003,0.700,0.700,0.700,0.700,85,3,16 +16,0.160,0.0000,0.0000,-0.0825,0.0017,0.0021,-22.6431,0.0011,-0.0008,0.0010,0.700,0.700,0.700,0.700,87,3,17 +17,0.170,0.0000,0.0000,-0.0825,0.0020,-0.0008,-22.6468,0.0003,0.0011,0.0008,0.700,0.700,0.700,0.700,89,3,18 +18,0.180,0.0000,0.0000,-0.0825,-0.0002,-0.0005,-22.6459,-0.0002,0.0001,0.0013,0.700,0.700,0.700,0.700,91,3,19 +19,0.190,0.0000,0.0000,-0.0825,0.0032,-0.0020,-22.6513,-0.0007,0.0001,-0.0012,0.700,0.700,0.700,0.700,93,3,20 +20,0.200,0.0000,0.0000,-0.0825,0.0019,-0.0024,-22.6457,0.0010,0.0008,-0.0014,0.700,0.700,0.700,0.700,95,3,21 +21,0.210,0.0000,0.0000,-0.0825,-0.0010,0.0000,-22.6450,0.0000,-0.0019,-0.0015,0.700,0.700,0.700,0.700,97,3,22 +22,0.220,0.0000,0.0000,-0.2724,-0.0017,-0.0000,-22.6449,0.0009,-0.0001,-0.0002,0.700,0.700,0.700,0.700,99,4,23 +23,0.230,0.0000,0.0000,-0.2724,0.0002,0.0021,-22.6452,-0.0012,-0.0004,-0.0011,0.700,0.700,0.700,0.700,101,4,24 +24,0.240,0.0000,0.0000,-0.2724,-0.0011,-0.0008,-22.6430,-0.0004,-0.0006,-0.0019,0.700,0.700,0.700,0.700,102,4,25 +25,0.250,0.0000,0.0000,-0.2724,-0.0031,0.0009,-22.6418,-0.0005,0.0022,-0.0002,0.700,0.700,0.700,0.700,104,4,26 +26,0.260,0.0000,0.0000,-0.2724,-0.0007,0.0012,-22.6460,-0.0003,-0.0006,-0.0011,0.700,0.700,0.700,0.700,106,4,27 +27,0.270,0.0000,0.0000,-0.2724,-0.0005,-0.0000,-22.6448,0.0014,0.0004,-0.0002,0.700,0.700,0.700,0.700,108,4,28 +28,0.280,0.0000,0.0000,-0.2724,-0.0014,0.0009,-22.6460,0.0005,0.0002,-0.0003,0.700,0.700,0.700,0.700,111,4,29 +29,0.290,0.0000,0.0000,-0.2724,0.0015,0.0009,-22.6472,-0.0005,0.0005,0.0009,0.700,0.700,0.700,0.700,113,4,30 +30,0.300,0.0000,0.0000,-0.2724,0.0007,0.0020,-22.6447,-0.0004,0.0005,-0.0005,0.700,0.700,0.700,0.700,115,4,31 +31,0.310,0.0000,0.0000,-0.2724,-0.0019,-0.0001,-22.6426,0.0003,0.0000,0.0001,0.700,0.700,0.700,0.700,118,4,32 +32,0.320,0.0000,0.0000,-0.5907,0.0002,0.0004,-22.6464,0.0001,-0.0006,0.0001,0.700,0.700,0.700,0.700,120,5,33 +33,0.330,0.0000,0.0000,-0.5907,0.0016,0.0001,-22.6483,-0.0008,0.0005,-0.0001,0.700,0.700,0.700,0.700,122,5,34 +34,0.340,0.0000,0.0000,-0.5907,-0.0003,0.0019,-22.6465,-0.0002,-0.0002,-0.0010,0.700,0.700,0.700,0.700,125,5,35 +35,0.350,0.0000,0.0000,-0.5907,0.0009,-0.0001,-22.6442,-0.0006,-0.0005,0.0017,0.700,0.700,0.700,0.700,127,5,36 +36,0.360,0.0000,0.0000,-0.5907,0.0008,-0.0012,-22.6448,0.0002,0.0007,0.0022,0.700,0.700,0.700,0.700,130,5,37 +37,0.370,0.0000,0.0000,-0.5907,-0.0001,-0.0000,-22.6497,0.0004,-0.0006,-0.0011,0.700,0.700,0.700,0.700,132,5,38 +38,0.380,0.0000,0.0000,-0.5907,0.0008,0.0026,-22.6461,0.0005,-0.0009,0.0005,0.700,0.700,0.700,0.700,134,5,39 +39,0.390,0.0000,0.0000,-0.5907,0.0010,0.0026,-22.6458,0.0002,0.0014,-0.0005,0.700,0.700,0.700,0.700,136,5,40 +40,0.400,0.0000,0.0000,-1.0375,0.0011,0.0012,-22.6463,0.0021,-0.0004,0.0004,0.700,0.700,0.700,0.700,139,6,41 +41,0.410,0.0000,0.0000,-1.0375,-0.0015,0.0008,-22.6451,0.0002,-0.0004,-0.0007,0.700,0.700,0.700,0.700,141,6,42 +42,0.420,0.0000,0.0000,-1.0375,-0.0015,0.0014,-22.6474,-0.0006,-0.0025,-0.0015,0.700,0.700,0.700,0.700,143,6,43 +43,0.430,0.0000,0.0000,-1.0375,-0.0020,0.0034,-22.6468,0.0011,0.0013,-0.0003,0.700,0.700,0.700,0.700,146,6,44 +44,0.440,0.0000,0.0000,-1.0375,0.0010,-0.0010,-22.6464,0.0009,0.0004,0.0009,0.700,0.700,0.700,0.700,148,6,45 +45,0.450,0.0000,0.0000,-1.0375,0.0037,-0.0010,-22.6431,-0.0006,-0.0001,0.0013,0.700,0.700,0.700,0.700,150,6,46 +46,0.460,0.0000,0.0000,-1.0375,-0.0025,0.0027,-22.6480,0.0012,-0.0001,-0.0005,0.700,0.700,0.700,0.700,153,6,47 +47,0.470,0.0000,0.0000,-1.0375,0.0007,0.0003,-22.6469,-0.0013,0.0007,0.0002,0.700,0.700,0.700,0.700,155,6,48 +48,0.480,0.0000,0.0000,-1.0375,-0.0043,0.0021,-22.6443,-0.0003,0.0000,0.0007,0.700,0.700,0.700,0.700,157,6,49 +49,0.490,0.0000,0.0000,-1.6128,0.0002,-0.0003,-22.6478,-0.0013,0.0007,-0.0010,0.700,0.700,0.700,0.700,159,7,50 +50,0.500,0.0000,0.0000,-1.6128,-0.0012,-0.0013,-22.6459,-0.0005,-0.0001,0.0006,0.700,0.700,0.700,0.700,162,7,51 +51,0.510,0.0000,0.0000,-1.6128,-0.0014,-0.0012,-22.6490,0.0010,0.0006,0.0010,0.700,0.700,0.700,0.700,164,7,52 +52,0.520,0.0000,0.0000,-1.6128,-0.0030,-0.0009,-22.6457,-0.0017,0.0005,-0.0015,0.700,0.700,0.700,0.700,167,7,53 +53,0.530,0.0000,0.0000,-1.6128,-0.0015,0.0016,-22.6491,-0.0006,0.0010,0.0000,0.700,0.700,0.700,0.700,169,7,54 +54,0.540,0.0000,0.0000,-1.6128,0.0003,-0.0017,-22.6464,-0.0003,0.0010,0.0006,0.700,0.700,0.700,0.700,171,7,55 +55,0.550,0.0000,0.0000,-1.6128,0.0027,-0.0005,-22.6451,0.0004,0.0010,-0.0001,0.700,0.700,0.700,0.700,174,7,56 +56,0.560,0.0000,0.0000,-1.6128,-0.0026,0.0039,-22.6451,0.0006,-0.0011,0.0019,0.700,0.700,0.700,0.700,176,7,57 +57,0.570,0.0000,0.0000,-1.6128,0.0006,0.0010,-22.6434,0.0007,0.0001,0.0000,0.700,0.700,0.700,0.700,178,7,58 +58,0.580,0.0000,0.0000,-2.3165,-0.0031,-0.0020,-22.6480,0.0004,0.0000,-0.0011,0.700,0.700,0.700,0.700,180,8,59 +59,0.590,0.0000,0.0000,-2.3165,-0.0067,-0.0026,-22.6458,0.0002,-0.0003,0.0014,0.700,0.700,0.700,0.700,183,8,60 +60,0.600,0.0000,0.0000,-2.3165,-0.0008,0.0011,-22.6437,0.0005,-0.0014,-0.0001,0.700,0.700,0.700,0.700,185,8,61 +61,0.610,0.0000,0.0000,-2.3165,0.0003,-0.0004,-22.6423,0.0000,-0.0009,0.0012,0.700,0.700,0.700,0.700,187,8,62 +62,0.620,0.0000,0.0000,-2.3165,0.0045,0.0033,-22.6466,0.0006,-0.0005,0.0015,0.700,0.700,0.700,0.700,189,8,63 +63,0.630,0.0000,0.0000,-2.3165,-0.0024,0.0040,-22.6472,-0.0009,0.0014,0.0007,0.700,0.700,0.700,0.700,191,8,64 +64,0.640,0.0000,0.0000,-2.3165,-0.0011,0.0024,-22.6474,0.0006,-0.0015,-0.0008,0.700,0.700,0.700,0.700,193,8,65 +65,0.650,0.0000,0.0000,-2.3165,0.0001,0.0024,-22.6456,-0.0003,0.0016,0.0006,0.700,0.700,0.700,0.700,196,8,66 +66,0.660,0.0000,0.0000,-2.3165,-0.0021,0.0025,-22.6461,-0.0008,-0.0001,0.0005,0.700,0.700,0.700,0.700,198,8,67 +67,0.670,0.0000,0.0000,-3.1487,-0.0025,-0.0000,-22.6492,-0.0006,0.0012,0.0010,0.700,0.700,0.700,0.700,201,9,68 +68,0.680,0.0000,0.0000,-3.1487,-0.0017,0.0009,-22.6469,-0.0019,-0.0018,0.0002,0.700,0.700,0.700,0.700,203,9,69 +69,0.690,0.0000,0.0000,-3.1487,0.0007,0.0018,-22.6457,-0.0011,0.0012,0.0002,0.700,0.700,0.700,0.700,205,9,70 +70,0.700,0.0000,0.0000,-3.1487,-0.0012,0.0035,-22.6431,0.0007,0.0002,0.0009,0.700,0.700,0.700,0.700,208,9,71 +71,0.710,0.0000,0.0000,-3.1487,0.0011,-0.0015,-22.6472,-0.0016,-0.0001,0.0014,0.700,0.700,0.700,0.700,210,9,72 +72,0.720,0.0000,0.0000,-3.1487,0.0036,-0.0038,-22.6435,0.0013,0.0008,0.0011,0.700,0.700,0.700,0.700,212,9,73 +73,0.730,0.0000,0.0000,-3.1487,0.0006,-0.0018,-22.6479,0.0002,-0.0012,-0.0006,0.700,0.700,0.700,0.700,214,9,74 +74,0.740,0.0000,0.0000,-3.1487,0.0037,-0.0026,-22.6444,-0.0015,-0.0003,-0.0003,0.700,0.700,0.700,0.700,217,9,75 +75,0.750,0.0000,0.0000,-4.1093,-0.0027,-0.0007,-22.6506,0.0015,-0.0006,0.0009,0.700,0.700,0.700,0.700,219,10,76 +76,0.760,0.0000,0.0000,-4.1093,-0.0004,0.0029,-22.6441,0.0003,0.0012,0.0007,0.700,0.700,0.700,0.700,221,10,77 +77,0.770,0.0000,0.0000,-4.1093,-0.0002,-0.0024,-22.6444,-0.0021,-0.0008,0.0005,0.700,0.700,0.700,0.700,224,10,78 +78,0.780,0.0000,0.0000,-4.1093,-0.0020,0.0033,-22.6461,-0.0007,0.0007,0.0003,0.700,0.700,0.700,0.700,226,10,79 +79,0.790,0.0000,0.0000,-4.1093,-0.0039,-0.0027,-22.6443,0.0001,0.0004,0.0003,0.700,0.700,0.700,0.700,228,10,80 +80,0.800,0.0000,0.0000,-4.1093,0.0022,0.0020,-22.6504,-0.0013,-0.0001,-0.0005,0.700,0.700,0.700,0.700,231,10,81 +81,0.810,0.0000,0.0000,-4.1093,0.0026,-0.0009,-22.6452,-0.0010,-0.0006,-0.0010,0.700,0.700,0.700,0.700,233,10,82 +82,0.820,0.0000,0.0000,-4.1093,0.0028,-0.0028,-22.6461,0.0000,-0.0013,0.0003,0.700,0.700,0.700,0.700,236,10,83 +83,0.830,0.0000,0.0000,-4.1093,-0.0023,-0.0027,-22.6481,0.0001,-0.0000,-0.0004,0.700,0.700,0.700,0.700,238,10,84 +84,0.840,0.0000,0.0000,-5.1984,0.0014,0.0035,-22.6471,0.0015,0.0003,0.0001,0.700,0.700,0.700,0.700,240,11,85 +85,0.850,0.0000,0.0000,-5.1984,-0.0037,0.0017,-22.6472,-0.0008,0.0010,-0.0011,0.700,0.700,0.700,0.700,242,11,86 +86,0.860,0.0000,0.0000,-5.1984,-0.0018,0.0034,-22.6439,-0.0007,0.0004,-0.0005,0.700,0.700,0.700,0.700,244,11,87 +87,0.870,0.0000,0.0000,-5.1984,0.0006,0.0038,-22.6454,-0.0015,0.0004,0.0004,0.700,0.700,0.700,0.700,247,11,88 +88,0.880,0.0000,0.0000,-5.1984,-0.0008,0.0030,-22.6468,0.0006,-0.0009,-0.0014,0.700,0.700,0.700,0.700,249,11,89 +89,0.890,0.0000,0.0000,-5.1984,0.0026,-0.0000,-22.6434,0.0005,0.0009,-0.0008,0.700,0.700,0.700,0.700,251,11,90 +90,0.900,0.0000,0.0000,-5.1984,0.0057,-0.0000,-22.6436,-0.0033,0.0010,-0.0002,0.700,0.700,0.700,0.700,254,11,91 +91,0.910,0.0000,0.0000,-5.1984,0.0003,-0.0047,-22.6452,-0.0028,0.0003,-0.0011,0.700,0.700,0.700,0.700,256,11,92 +92,0.920,0.0000,0.0000,-5.1984,-0.0013,0.0013,-22.6410,0.0001,-0.0006,0.0005,0.700,0.700,0.700,0.700,258,11,93 +93,0.930,0.0000,0.0000,-6.4159,-0.0015,0.0003,-22.6435,0.0007,0.0009,0.0006,0.700,0.700,0.700,0.700,261,12,94 +94,0.940,0.0000,0.0000,-6.4159,-0.0015,-0.0012,-22.6428,-0.0007,-0.0004,0.0009,0.700,0.700,0.700,0.700,263,12,95 +95,0.950,0.0000,0.0000,-6.4159,-0.0007,0.0015,-22.6478,0.0001,0.0004,-0.0004,0.700,0.700,0.700,0.700,265,12,96 +96,0.960,0.0000,0.0000,-6.4159,0.0011,0.0018,-22.6480,0.0002,-0.0001,-0.0001,0.700,0.700,0.700,0.700,268,12,97 +97,0.970,0.0000,0.0000,-6.4159,0.0014,0.0032,-22.6424,-0.0001,-0.0007,-0.0018,0.700,0.700,0.700,0.700,270,12,98 +98,0.980,0.0000,0.0000,-6.4159,-0.0013,-0.0011,-22.6442,-0.0011,-0.0015,-0.0004,0.700,0.700,0.700,0.700,272,12,99 +99,0.990,0.0000,0.0000,-6.4159,-0.0003,-0.0002,-22.6480,0.0003,-0.0008,-0.0019,0.700,0.700,0.700,0.700,274,12,100 +100,1.000,0.0000,0.0000,-6.4159,-0.0011,-0.0031,-22.6477,-0.0001,0.0003,0.0007,0.700,0.700,0.700,0.700,276,12,101 +101,1.010,0.0000,0.0000,-7.7619,-0.0011,0.0003,-22.6487,0.0001,0.0002,0.0011,0.700,0.700,0.700,0.700,279,13,102 +102,1.020,0.0000,0.0000,-7.7619,-0.0003,-0.0019,-22.6486,0.0004,-0.0004,0.0011,0.700,0.700,0.700,0.700,281,13,103 +103,1.030,0.0000,0.0000,-7.7619,-0.0031,0.0016,-22.6463,-0.0009,0.0012,0.0002,0.700,0.700,0.700,0.700,284,13,104 +104,1.040,0.0000,0.0000,-7.7619,0.0040,-0.0038,-22.6445,0.0017,0.0007,0.0008,0.700,0.700,0.700,0.700,286,13,105 +105,1.050,0.0000,0.0000,-7.7619,0.0023,-0.0009,-22.6440,-0.0002,0.0011,-0.0000,0.700,0.700,0.700,0.700,288,13,106 +106,1.060,0.0000,0.0000,-7.7619,-0.0019,0.0026,-22.6461,0.0009,-0.0002,-0.0004,0.700,0.700,0.700,0.700,290,13,107 +107,1.070,0.0000,0.0000,-7.7619,-0.0024,-0.0000,-22.6449,0.0007,-0.0007,-0.0001,0.700,0.700,0.700,0.700,293,13,108 +108,1.080,0.0000,0.0000,-7.7619,-0.0000,0.0037,-22.6406,0.0001,0.0008,-0.0008,0.700,0.700,0.700,0.700,295,13,109 +109,1.090,0.0000,0.0000,-7.7619,-0.0018,-0.0045,-22.6463,-0.0014,-0.0008,-0.0002,0.700,0.700,0.700,0.700,297,13,110 +110,1.100,0.0000,0.0000,-9.2364,0.0031,0.0039,-22.6469,-0.0007,0.0019,-0.0017,0.700,0.700,0.700,0.700,300,14,111 +111,1.110,0.0000,0.0000,-9.2364,-0.0001,0.0030,-22.6495,-0.0010,-0.0005,0.0004,0.700,0.700,0.700,0.700,302,14,112 +112,1.120,0.0000,0.0000,-9.2364,-0.0001,0.0036,-22.6430,-0.0009,-0.0009,0.0002,0.700,0.700,0.700,0.700,304,14,113 +113,1.130,0.0000,0.0000,-9.2364,-0.0002,0.0021,-22.6462,-0.0016,-0.0009,-0.0004,0.700,0.700,0.700,0.700,307,14,114 +114,1.140,0.0000,0.0000,-9.2364,0.0007,0.0009,-22.6487,0.0003,-0.0008,0.0005,0.700,0.700,0.700,0.700,309,14,115 +115,1.150,0.0000,0.0000,-9.2364,-0.0058,0.0020,-22.6435,-0.0007,0.0010,-0.0006,0.700,0.700,0.700,0.700,312,14,116 +116,1.160,0.0000,0.0000,-9.2364,0.0014,0.0007,-22.6437,-0.0001,0.0005,-0.0003,0.700,0.700,0.700,0.700,314,14,117 +117,1.170,0.0000,0.0000,-9.2364,0.0024,-0.0033,-22.6456,0.0013,0.0009,-0.0005,0.700,0.700,0.700,0.700,316,14,118 +118,1.180,0.0000,0.0000,-10.8393,-0.0032,-0.0002,-22.6485,-0.0002,-0.0019,0.0001,0.700,0.700,0.700,0.700,319,15,119 +119,1.190,0.0000,0.0000,-10.8393,-0.0000,0.0013,-22.6453,0.0016,-0.0009,0.0004,0.700,0.700,0.700,0.700,321,15,120 +120,1.200,0.0000,0.0000,-10.8393,-0.0035,-0.0028,-22.6468,-0.0001,0.0017,0.0000,0.700,0.700,0.700,0.700,323,15,121 +121,1.210,0.0000,0.0000,-10.8393,-0.0012,0.0013,-22.6442,-0.0010,0.0005,-0.0002,0.700,0.700,0.700,0.700,326,15,122 +122,1.220,0.0000,0.0000,-10.8393,0.0014,-0.0004,-22.6417,0.0007,0.0000,-0.0003,0.700,0.700,0.700,0.700,328,15,123 +123,1.230,0.0000,0.0000,-10.8393,0.0030,0.0025,-22.6452,-0.0002,-0.0022,-0.0012,0.700,0.700,0.700,0.700,330,15,124 +124,1.240,0.0000,0.0000,-10.8393,-0.0043,0.0012,-22.6457,0.0004,0.0002,-0.0003,0.700,0.700,0.700,0.700,333,15,125 +125,1.250,0.0000,0.0000,-10.8393,0.0022,-0.0001,-22.6430,0.0007,0.0000,0.0003,0.700,0.700,0.700,0.700,335,15,126 +126,1.260,0.0000,0.0000,-10.8393,-0.0016,0.0012,-22.6446,-0.0002,0.0001,-0.0011,0.700,0.700,0.700,0.700,337,15,127 +127,1.270,0.0000,0.0000,-12.5707,0.0006,-0.0000,-22.6457,0.0005,0.0017,0.0005,0.700,0.700,0.700,0.700,340,16,128 +128,1.280,0.0000,0.0000,-12.5707,-0.0010,0.0038,-22.6451,-0.0010,0.0001,0.0007,0.700,0.700,0.700,0.700,342,16,129 +129,1.290,0.0000,0.0000,-12.5707,0.0046,-0.0007,-22.6438,0.0004,-0.0011,-0.0012,0.700,0.700,0.700,0.700,344,16,130 +130,1.300,0.0000,0.0000,-12.5707,-0.0016,0.0020,-22.6479,-0.0016,0.0006,-0.0001,0.700,0.700,0.700,0.700,347,16,131 +131,1.310,0.0000,0.0000,-12.5707,0.0024,0.0022,-22.6437,0.0001,-0.0011,-0.0012,0.700,0.700,0.700,0.700,349,16,132 +132,1.320,0.0000,0.0000,-12.5707,-0.0001,0.0013,-22.6453,0.0008,-0.0000,-0.0020,0.700,0.700,0.700,0.700,351,16,133 +133,1.330,0.0000,0.0000,-12.5707,0.0010,-0.0049,-22.6443,0.0004,-0.0017,0.0008,0.700,0.700,0.700,0.700,354,16,134 +134,1.340,0.0000,0.0000,-12.5707,0.0033,0.0012,-22.6447,0.0005,-0.0010,-0.0002,0.700,0.700,0.700,0.700,356,16,135 +135,1.350,0.0000,0.0000,-12.5707,-0.0014,-0.0002,-22.6470,-0.0005,0.0009,-0.0004,0.700,0.700,0.700,0.700,358,16,136 +136,1.360,0.0000,0.0000,-14.4306,-0.0003,0.0024,-22.6429,0.0005,-0.0018,-0.0002,0.700,0.700,0.700,0.700,360,17,137 +137,1.370,0.0000,0.0000,-14.4306,0.0028,0.0005,-22.6482,0.0012,0.0001,0.0002,0.700,0.700,0.700,0.700,362,17,138 +138,1.380,0.0000,0.0000,-14.4306,-0.0008,-0.0007,-22.6488,-0.0012,-0.0013,-0.0010,0.700,0.700,0.700,0.700,365,17,139 +139,1.390,0.0000,0.0000,-14.4306,0.0008,0.0002,-22.6441,0.0004,-0.0004,0.0007,0.700,0.700,0.700,0.700,367,17,140 +140,1.400,0.0000,0.0000,-14.4306,0.0013,0.0021,-22.6477,0.0007,-0.0012,0.0004,0.700,0.700,0.700,0.700,369,17,141 +141,1.410,0.0000,0.0000,-14.4306,-0.0012,0.0017,-22.6442,-0.0004,0.0005,-0.0008,0.700,0.700,0.700,0.700,371,17,142 +142,1.420,0.0000,0.0000,-14.4306,-0.0026,-0.0034,-22.6492,0.0006,-0.0000,0.0003,0.700,0.700,0.700,0.700,373,17,143 +143,1.430,0.0000,0.0000,-14.4306,-0.0011,-0.0033,-22.6484,-0.0016,0.0011,0.0007,0.700,0.700,0.700,0.700,376,17,144 +144,1.440,0.0000,0.0000,-14.4306,0.0017,-0.0009,-22.6479,0.0005,0.0002,-0.0011,0.700,0.700,0.700,0.700,378,17,145 +145,1.450,0.0000,0.0000,-16.4189,0.0010,-0.0014,-22.6462,0.0003,-0.0001,-0.0017,0.700,0.700,0.700,0.700,381,18,146 +146,1.460,0.0000,0.0000,-16.4189,-0.0056,-0.0017,-22.6474,0.0010,-0.0018,-0.0001,0.700,0.700,0.700,0.700,383,18,147 +147,1.470,0.0000,0.0000,-16.4189,-0.0006,-0.0030,-22.6456,-0.0011,-0.0002,-0.0004,0.700,0.700,0.700,0.700,385,18,148 +148,1.480,0.0000,0.0000,-16.4189,0.0003,0.0011,-22.6505,-0.0002,0.0015,0.0002,0.700,0.700,0.700,0.700,388,18,149 +149,1.490,0.0000,0.0000,-16.4189,0.0016,-0.0013,-22.6449,-0.0004,-0.0001,0.0000,0.700,0.700,0.700,0.700,390,18,150 +150,1.500,0.0000,0.0000,-16.4189,-0.0012,0.0010,-22.6460,0.0006,0.0013,0.0003,0.700,0.700,0.700,0.700,392,18,151 +151,1.510,0.0000,0.0000,-16.4189,0.0016,-0.0023,-22.6451,-0.0014,-0.0004,0.0014,0.700,0.700,0.700,0.700,395,18,152 +152,1.520,0.0000,0.0000,-16.4189,-0.0007,0.0010,-22.6467,0.0008,0.0007,-0.0012,0.700,0.700,0.700,0.700,397,18,153 +153,1.530,0.0000,0.0000,-18.5356,0.0008,-0.0033,-22.6456,0.0006,-0.0032,0.0003,0.700,0.700,0.700,0.700,399,19,154 +154,1.540,0.0000,0.0000,-18.5356,-0.0049,-0.0035,-22.6477,0.0005,0.0004,0.0012,0.700,0.700,0.700,0.700,402,19,155 +155,1.550,0.0000,0.0000,-18.5356,0.0001,-0.0017,-22.6458,0.0011,0.0007,0.0010,0.700,0.700,0.700,0.700,404,19,156 +156,1.560,0.0000,0.0000,-18.5356,-0.0014,-0.0005,-22.6464,-0.0000,0.0002,-0.0010,0.700,0.700,0.700,0.700,407,19,157 +157,1.570,0.0000,0.0000,-18.5356,-0.0005,-0.0029,-22.6458,-0.0007,0.0000,0.0004,0.700,0.700,0.700,0.700,409,19,158 +158,1.580,0.0000,0.0000,-18.5356,0.0006,-0.0023,-22.6449,-0.0007,0.0007,0.0000,0.700,0.700,0.700,0.700,412,19,159 +159,1.590,0.0000,0.0000,-18.5356,-0.0014,-0.0042,-22.6461,-0.0016,-0.0004,0.0000,0.700,0.700,0.700,0.700,414,19,160 +160,1.600,0.0000,0.0000,-18.5356,0.0034,0.0016,-22.6463,0.0005,0.0003,0.0005,0.700,0.700,0.700,0.700,417,19,161 +161,1.610,0.0000,0.0000,-20.7808,0.0005,-0.0009,-22.6463,-0.0009,-0.0002,-0.0013,0.700,0.700,0.700,0.700,419,20,162 +162,1.620,0.0000,0.0000,-20.7808,0.0006,0.0039,-22.6441,-0.0002,-0.0006,0.0001,0.700,0.700,0.700,0.700,422,20,163 +163,1.630,0.0000,0.0000,-20.7808,-0.0002,0.0021,-22.6437,-0.0015,-0.0012,-0.0002,0.700,0.700,0.700,0.700,424,20,164 +164,1.640,0.0000,0.0000,-20.7808,-0.0009,-0.0026,-22.6429,-0.0016,-0.0005,-0.0003,0.700,0.700,0.700,0.700,426,20,165 +165,1.650,0.0000,0.0000,-20.7808,-0.0003,-0.0003,-22.6490,0.0015,0.0001,-0.0003,0.700,0.700,0.700,0.700,428,20,166 +166,1.660,0.0000,0.0000,-20.7808,-0.0017,0.0012,-22.6479,0.0002,-0.0007,-0.0004,0.700,0.700,0.700,0.700,431,20,167 +167,1.670,0.0000,0.0000,-20.7808,0.0007,-0.0000,-22.6465,0.0005,0.0001,0.0003,0.700,0.700,0.700,0.700,433,20,168 +168,1.680,0.0000,0.0000,-20.7808,-0.0004,-0.0017,-22.6457,-0.0004,0.0002,-0.0004,0.700,0.700,0.700,0.700,435,20,169 +169,1.690,0.0000,0.0000,-20.7808,0.0008,0.0031,-22.6467,0.0002,0.0014,0.0011,0.700,0.700,0.700,0.700,438,20,170 +170,1.700,0.0000,0.0000,-23.1545,-0.0004,0.0008,-22.6529,0.0004,0.0005,0.0009,0.700,0.700,0.700,0.700,440,21,171 +171,1.710,0.0000,0.0000,-23.1545,0.0016,-0.0000,-22.6455,0.0005,-0.0001,0.0000,0.700,0.700,0.700,0.700,442,21,172 +172,1.720,0.0000,0.0000,-23.1545,-0.0022,-0.0038,-22.6442,-0.0014,-0.0025,0.0006,0.700,0.700,0.700,0.700,444,21,173 +173,1.730,0.0000,0.0000,-23.1545,0.0043,-0.0001,-22.6448,0.0000,0.0012,-0.0004,0.700,0.700,0.700,0.700,446,21,174 +174,1.740,0.0000,0.0000,-23.1545,-0.0002,-0.0011,-22.6451,-0.0008,-0.0001,-0.0007,0.700,0.700,0.700,0.700,448,21,175 +175,1.750,0.0000,0.0000,-23.1545,-0.0023,0.0003,-22.6451,0.0001,-0.0008,0.0002,0.700,0.700,0.700,0.700,451,21,176 +176,1.760,0.0000,0.0000,-23.1545,0.0002,0.0010,-22.6475,0.0002,0.0005,0.0013,0.700,0.700,0.700,0.700,453,21,177 +177,1.770,0.0000,0.0000,-23.1545,-0.0015,-0.0004,-22.6445,0.0016,0.0005,-0.0004,0.700,0.700,0.700,0.700,455,21,178 +178,1.780,0.0000,0.0000,-23.1545,-0.0038,0.0027,-22.6459,0.0019,-0.0002,0.0006,0.700,0.700,0.700,0.700,457,21,179 +179,1.790,0.0000,0.0000,-25.6567,-0.0001,-0.0010,-22.6476,0.0008,0.0007,-0.0005,0.700,0.700,0.700,0.700,460,22,180 +180,1.800,0.0000,0.0000,-25.6567,-0.0034,-0.0023,-22.6450,-0.0001,-0.0005,0.0007,0.700,0.700,0.700,0.700,462,22,181 +181,1.810,0.0000,0.0000,-25.6567,0.0022,-0.0002,-22.6440,0.0017,-0.0007,-0.0003,0.700,0.700,0.700,0.700,465,22,182 +182,1.820,0.0000,0.0000,-25.6567,-0.0004,-0.0002,-22.6427,-0.0020,-0.0008,0.0005,0.700,0.700,0.700,0.700,467,22,183 +183,1.830,0.0000,0.0000,-25.6567,0.0002,0.0003,-22.6466,-0.0005,0.0006,0.0003,0.700,0.700,0.700,0.700,469,22,184 +184,1.840,0.0000,0.0000,-25.6567,-0.0023,0.0022,-22.6452,0.0003,-0.0004,-0.0009,0.700,0.700,0.700,0.700,471,22,185 +185,1.850,0.0000,0.0000,-25.6567,0.0001,0.0016,-22.6464,0.0001,0.0004,-0.0001,0.700,0.700,0.700,0.700,474,22,186 +186,1.860,0.0000,0.0000,-25.6567,-0.0030,0.0001,-22.6455,-0.0006,-0.0012,-0.0013,0.700,0.700,0.700,0.700,476,22,187 +187,1.870,0.0000,0.0000,-25.6567,-0.0004,-0.0011,-22.6492,0.0010,-0.0001,-0.0001,0.700,0.700,0.700,0.700,478,22,188 +188,1.880,0.0000,0.0000,-28.2873,0.0016,-0.0017,-22.6464,-0.0006,-0.0011,0.0011,0.700,0.700,0.700,0.700,481,23,189 +189,1.890,0.0000,0.0000,-28.2873,0.0004,-0.0003,-22.6432,-0.0005,0.0000,0.0009,0.700,0.700,0.700,0.700,483,23,190 +190,1.900,0.0000,0.0000,-28.2873,-0.0022,0.0002,-22.6469,0.0013,-0.0005,-0.0019,0.700,0.700,0.700,0.700,485,23,191 +191,1.910,0.0000,0.0000,-28.2873,0.0000,0.0043,-22.6485,-0.0005,0.0003,0.0013,0.700,0.700,0.700,0.700,487,23,192 +192,1.920,0.0000,0.0000,-28.2873,0.0020,0.0008,-22.6455,-0.0004,0.0020,0.0011,0.700,0.700,0.700,0.700,490,23,193 +193,1.930,0.0000,0.0000,-28.2873,0.0018,-0.0014,-22.6464,0.0007,0.0016,0.0002,0.700,0.700,0.700,0.700,492,23,194 +194,1.940,0.0000,0.0000,-28.2873,0.0014,0.0008,-22.6458,-0.0007,-0.0008,0.0007,0.700,0.700,0.700,0.700,494,23,195 +195,1.950,0.0000,0.0000,-28.2873,-0.0030,0.0018,-22.6460,-0.0007,0.0003,-0.0002,0.700,0.700,0.700,0.700,496,23,196 +196,1.960,0.0000,0.0000,-31.0463,0.0028,0.0005,-22.6473,-0.0002,-0.0013,-0.0004,0.700,0.700,0.700,0.700,499,24,197 +197,1.970,0.0000,0.0000,-31.0463,-0.0030,-0.0038,-22.6481,-0.0014,-0.0006,-0.0001,0.700,0.700,0.700,0.700,501,24,198 +198,1.980,0.0000,0.0000,-31.0463,-0.0010,-0.0007,-22.6422,0.0008,-0.0001,0.0002,0.700,0.700,0.700,0.700,504,24,199 +199,1.990,0.0000,0.0000,-31.0463,0.0013,-0.0020,-22.6430,-0.0015,-0.0006,0.0004,0.700,0.700,0.700,0.700,506,24,200 +200,2.000,0.0000,0.0000,-31.0463,-0.0023,-0.0012,-22.6449,-0.0000,-0.0010,0.0002,0.700,0.700,0.700,0.700,508,24,201 +201,2.010,0.0000,0.0000,-31.0463,-0.0049,-0.0009,-22.6461,0.0006,-0.0009,-0.0010,0.700,0.700,0.700,0.700,510,24,202 +202,2.020,0.0000,0.0000,-31.0463,0.0010,0.0036,-22.6441,-0.0011,-0.0007,-0.0025,0.700,0.700,0.700,0.700,513,24,203 +203,2.030,0.0000,0.0000,-31.0463,0.0012,-0.0008,-22.6462,-0.0007,0.0005,0.0007,0.700,0.700,0.700,0.700,515,24,204 +204,2.040,0.0000,0.0000,-31.0463,0.0010,0.0017,-22.6456,-0.0001,-0.0008,-0.0009,0.700,0.700,0.700,0.700,517,24,205 +205,2.050,0.0000,0.0000,-33.9338,-0.0018,0.0016,-22.6466,0.0004,0.0008,-0.0006,0.700,0.700,0.700,0.700,519,25,206 +206,2.060,0.0000,0.0000,-33.9338,-0.0030,0.0029,-22.6459,-0.0007,0.0002,0.0019,0.700,0.700,0.700,0.700,522,25,207 +207,2.070,0.0000,0.0000,-33.9338,-0.0014,0.0004,-22.6470,0.0001,-0.0002,0.0025,0.700,0.700,0.700,0.700,524,25,208 +208,2.080,0.0000,0.0000,-33.9338,-0.0036,0.0045,-22.6465,0.0002,0.0004,-0.0009,0.700,0.700,0.700,0.700,527,25,209 +209,2.090,0.0000,0.0000,-33.9338,0.0017,0.0003,-22.6446,-0.0013,-0.0010,-0.0012,0.700,0.700,0.700,0.700,529,25,210 +210,2.100,0.0000,0.0000,-33.9338,-0.0002,0.0012,-22.6448,0.0005,-0.0004,0.0015,0.700,0.700,0.700,0.700,531,25,211 +211,2.110,0.0000,0.0000,-33.9338,0.0026,-0.0008,-22.6457,-0.0002,0.0007,0.0002,0.700,0.700,0.700,0.700,534,25,212 +212,2.120,0.0000,0.0000,-33.9338,-0.0010,-0.0013,-22.6430,0.0005,0.0004,0.0005,0.700,0.700,0.700,0.700,536,25,213 +213,2.130,0.0000,0.0000,-36.9498,0.0012,0.0005,-22.6475,-0.0009,0.0007,0.0001,0.700,0.700,0.700,0.700,539,26,214 +214,2.140,0.0000,0.0000,-36.9498,0.0014,-0.0003,-22.6489,0.0010,0.0001,-0.0012,0.700,0.700,0.700,0.700,541,26,215 +215,2.150,0.0000,0.0000,-36.9498,-0.0022,0.0014,-22.6475,0.0012,-0.0018,-0.0003,0.700,0.700,0.700,0.700,544,26,216 +216,2.160,0.0000,0.0000,-36.9498,0.0016,0.0037,-22.6481,-0.0016,0.0005,-0.0011,0.700,0.700,0.700,0.700,546,26,217 +217,2.170,0.0000,0.0000,-36.9498,-0.0003,0.0013,-22.6471,-0.0003,0.0006,-0.0007,0.700,0.700,0.700,0.700,548,26,218 +218,2.180,0.0000,0.0000,-36.9498,0.0024,-0.0031,-22.6431,0.0007,-0.0010,0.0001,0.700,0.700,0.700,0.700,550,26,219 +219,2.190,0.0000,0.0000,-36.9498,0.0011,-0.0036,-22.6459,-0.0006,-0.0009,-0.0001,0.700,0.700,0.700,0.700,553,26,220 +220,2.200,0.0000,0.0000,-36.9498,-0.0002,0.0020,-22.6477,0.0005,-0.0008,0.0016,0.700,0.700,0.700,0.700,555,26,221 +221,2.210,0.0000,0.0000,-36.9498,-0.0008,-0.0003,-22.6399,-0.0005,0.0004,0.0021,0.700,0.700,0.700,0.700,558,26,222 +222,2.220,0.0000,0.0000,-40.0943,-0.0012,0.0034,-22.6444,0.0016,0.0006,-0.0005,0.700,0.700,0.700,0.700,560,27,223 +223,2.230,0.0000,0.0000,-40.0943,-0.0024,-0.0008,-22.6426,0.0008,0.0003,0.0001,0.700,0.700,0.700,0.700,563,27,224 +224,2.240,0.0000,0.0000,-40.0943,0.0020,0.0010,-22.6462,0.0007,0.0009,0.0006,0.700,0.700,0.700,0.700,565,27,225 +225,2.250,0.0000,0.0000,-40.0943,-0.0025,0.0007,-22.6445,0.0006,-0.0014,-0.0007,0.700,0.700,0.700,0.700,567,27,226 +226,2.260,0.0000,0.0000,-40.0943,-0.0002,0.0028,-22.6481,-0.0007,0.0002,-0.0020,0.700,0.700,0.700,0.700,570,27,227 +227,2.270,0.0000,0.0000,-40.0943,0.0010,0.0018,-22.6472,-0.0001,0.0007,0.0010,0.700,0.700,0.700,0.700,572,27,228 +228,2.280,0.0000,0.0000,-40.0943,0.0021,0.0010,-22.6411,-0.0006,0.0005,0.0007,0.700,0.700,0.700,0.700,574,27,229 +229,2.290,0.0000,0.0000,-40.0943,0.0037,-0.0016,-22.6459,-0.0000,0.0003,0.0020,0.700,0.700,0.700,0.700,576,27,230 +230,2.300,0.0000,0.0000,-40.0943,-0.0027,0.0026,-22.6446,-0.0003,0.0002,-0.0007,0.700,0.700,0.700,0.700,578,27,231 +231,2.310,0.0000,0.0000,-43.3672,-0.0017,-0.0057,-22.6439,-0.0001,-0.0003,-0.0007,0.700,0.700,0.700,0.700,581,28,232 +232,2.320,0.0000,0.0000,-43.3672,-0.0015,-0.0002,-22.6430,-0.0001,0.0007,0.0012,0.700,0.700,0.700,0.700,583,28,233 +233,2.330,0.0000,0.0000,-43.3672,-0.0004,0.0039,-22.6488,0.0007,-0.0005,0.0003,0.700,0.700,0.700,0.700,586,28,234 +234,2.340,0.0000,0.0000,-43.3672,0.0018,0.0005,-22.6496,-0.0000,0.0007,-0.0007,0.700,0.700,0.700,0.700,588,28,235 +235,2.350,0.0000,0.0000,-43.3672,0.0001,-0.0019,-22.6473,-0.0008,-0.0008,-0.0007,0.700,0.700,0.700,0.700,590,28,236 +236,2.360,0.0000,0.0000,-43.3672,-0.0026,0.0047,-22.6463,-0.0011,-0.0003,0.0002,0.700,0.700,0.700,0.700,592,28,237 +237,2.370,0.0000,0.0000,-43.3672,0.0034,0.0007,-22.6466,-0.0004,-0.0004,0.0013,0.700,0.700,0.700,0.700,595,28,238 +238,2.380,0.0000,0.0000,-43.3672,0.0022,0.0013,-22.6439,-0.0010,-0.0000,-0.0005,0.700,0.700,0.700,0.700,597,28,239 +239,2.390,0.0000,0.0000,-46.7685,-0.0043,0.0033,-22.6451,0.0013,-0.0003,0.0016,0.700,0.700,0.700,0.700,599,29,240 +240,2.400,0.0000,0.0000,-46.7685,-0.0017,-0.0022,-22.6432,0.0010,-0.0013,-0.0002,0.700,0.700,0.700,0.700,602,29,241 +241,2.410,0.0000,0.0000,-46.7685,-0.0015,-0.0001,-22.6436,-0.0001,-0.0018,-0.0011,0.700,0.700,0.700,0.700,604,29,242 +242,2.420,0.0000,0.0000,-46.7685,-0.0006,0.0015,-22.6454,-0.0012,0.0004,-0.0008,0.700,0.700,0.700,0.700,606,29,243 +243,2.430,0.0000,0.0000,-46.7685,-0.0005,0.0008,-22.6482,-0.0002,-0.0013,-0.0012,0.700,0.700,0.700,0.700,608,29,244 +244,2.440,0.0000,0.0000,-46.7685,0.0001,-0.0031,-22.6478,0.0020,0.0017,-0.0003,0.700,0.700,0.700,0.700,611,29,245 +245,2.450,0.0000,0.0000,-46.7685,-0.0006,0.0004,-22.6470,-0.0012,0.0003,-0.0015,0.700,0.700,0.700,0.700,613,29,246 +246,2.460,0.0000,0.0000,-46.7685,0.0026,-0.0007,-22.6463,-0.0002,0.0001,-0.0003,0.700,0.700,0.700,0.700,615,29,247 +247,2.470,0.0000,0.0000,-46.7685,0.0010,-0.0006,-22.6425,-0.0009,-0.0004,-0.0012,0.700,0.700,0.700,0.700,617,29,248 +248,2.480,0.0000,0.0000,-50.2983,0.0021,-0.0014,-22.6492,0.0017,-0.0013,-0.0011,0.700,0.700,0.700,0.700,620,30,249 +249,2.490,0.0000,0.0000,-50.2983,0.0005,0.0001,-22.6438,0.0000,-0.0009,-0.0007,0.700,0.700,0.700,0.700,622,30,250 +250,2.500,0.0000,0.0000,-50.2983,-0.0026,-0.0029,-22.6443,-0.0001,0.0007,0.0001,0.700,0.700,0.700,0.700,624,30,251 +251,2.510,0.0000,0.0000,-50.2983,-0.0019,0.0013,-22.6459,-0.0018,0.0008,-0.0003,0.700,0.700,0.700,0.700,627,30,252 +252,2.520,0.0000,0.0000,-50.2983,-0.0001,0.0018,-22.6464,-0.0009,-0.0019,0.0011,0.700,0.700,0.700,0.700,629,30,253 +253,2.530,0.0000,0.0000,-50.2983,0.0002,0.0038,-22.6450,0.0003,0.0013,0.0001,0.700,0.700,0.700,0.700,631,30,254 +254,2.540,0.0000,0.0000,-50.2983,-0.0012,0.0007,-22.6495,-0.0001,0.0004,-0.0004,0.700,0.700,0.700,0.700,633,30,255 +255,2.550,0.0000,0.0000,-50.2983,0.0009,0.0003,-22.6452,0.0005,0.0001,-0.0002,0.700,0.700,0.700,0.700,635,30,256 +256,2.560,0.0000,0.0000,-50.2983,-0.0041,0.0029,-22.6456,0.0014,0.0014,-0.0002,0.700,0.700,0.700,0.700,638,30,257 +257,2.570,0.0000,0.0000,-53.9566,-0.0023,-0.0000,-22.6475,-0.0005,0.0004,0.0007,0.700,0.700,0.700,0.700,640,31,258 +258,2.580,0.0000,0.0000,-53.9566,0.0012,0.0016,-22.6475,-0.0009,0.0003,-0.0002,0.700,0.700,0.700,0.700,643,31,259 +259,2.590,0.0000,0.0000,-53.9566,0.0012,-0.0003,-22.6444,-0.0003,-0.0012,0.0004,0.700,0.700,0.700,0.700,645,31,260 +260,2.600,0.0000,0.0000,-53.9566,-0.0006,0.0022,-22.6468,0.0016,0.0003,0.0002,0.700,0.700,0.700,0.700,647,31,261 +261,2.610,0.0000,0.0000,-53.9566,0.0007,-0.0042,-22.6411,0.0015,0.0013,-0.0000,0.700,0.700,0.700,0.700,650,31,262 +262,2.620,0.0000,0.0000,-53.9566,-0.0018,-0.0003,-22.6448,0.0008,0.0003,-0.0007,0.700,0.700,0.700,0.700,652,31,263 +263,2.630,0.0000,0.0000,-53.9566,0.0022,-0.0015,-22.6476,0.0004,0.0003,0.0006,0.700,0.700,0.700,0.700,654,31,264 +264,2.640,0.0000,0.0000,-53.9566,-0.0026,0.0056,-22.6447,-0.0015,0.0001,-0.0018,0.700,0.700,0.700,0.700,656,31,265 +265,2.650,0.0000,0.0000,-53.9566,-0.0017,0.0006,-22.6455,-0.0001,-0.0006,0.0007,0.700,0.700,0.700,0.700,658,31,266 +266,2.660,0.0000,0.0000,-57.7434,0.0004,-0.0014,-22.6416,0.0009,-0.0002,0.0003,0.700,0.700,0.700,0.700,660,32,267 +267,2.670,0.0000,0.0000,-57.7434,-0.0011,-0.0022,-22.6460,0.0009,0.0004,0.0001,0.700,0.700,0.700,0.700,662,32,268 +268,2.680,0.0000,0.0000,-57.7434,-0.0004,0.0041,-22.6466,-0.0002,-0.0002,0.0003,0.700,0.700,0.700,0.700,665,32,269 +269,2.690,0.0000,0.0000,-57.7434,0.0043,-0.0007,-22.6473,0.0012,-0.0001,0.0001,0.700,0.700,0.700,0.700,667,32,270 +270,2.700,0.0000,0.0000,-57.7434,0.0018,-0.0004,-22.6466,0.0005,-0.0016,0.0003,0.700,0.700,0.700,0.700,669,32,271 +271,2.710,0.0000,0.0000,-57.7434,0.0016,-0.0016,-22.6478,0.0005,-0.0003,-0.0003,0.700,0.700,0.700,0.700,672,32,272 +272,2.720,0.0000,0.0000,-57.7434,0.0037,0.0008,-22.6454,-0.0006,0.0011,0.0013,0.700,0.700,0.700,0.700,674,32,273 +273,2.730,0.0000,0.0000,-57.7434,-0.0003,-0.0016,-22.6455,-0.0012,-0.0001,-0.0003,0.700,0.700,0.700,0.700,676,32,274 +274,2.740,0.0000,0.0000,-57.7434,-0.0019,-0.0012,-22.6447,-0.0008,0.0002,0.0012,0.700,0.700,0.700,0.700,678,32,275 +275,2.750,0.0000,0.0000,-61.6586,-0.0003,0.0027,-22.6482,0.0008,-0.0022,-0.0007,0.700,0.700,0.700,0.700,681,33,276 +276,2.760,0.0000,0.0000,-61.6586,-0.0008,0.0014,-22.6476,0.0001,-0.0017,0.0004,0.700,0.700,0.700,0.700,683,33,277 +277,2.770,0.0000,0.0000,-61.6586,-0.0033,-0.0010,-22.6453,-0.0000,-0.0006,-0.0019,0.700,0.700,0.700,0.700,686,33,278 +278,2.780,0.0000,0.0000,-61.6586,0.0033,-0.0002,-22.6489,0.0005,-0.0015,-0.0004,0.700,0.700,0.700,0.700,688,33,279 +279,2.790,0.0000,0.0000,-61.6586,-0.0022,-0.0012,-22.6485,-0.0011,0.0002,0.0001,0.700,0.700,0.700,0.700,691,33,280 +280,2.800,0.0000,0.0000,-61.6586,-0.0003,0.0019,-22.6467,0.0004,-0.0001,0.0013,0.700,0.700,0.700,0.700,693,33,281 +281,2.810,0.0000,0.0000,-61.6586,0.0007,-0.0004,-22.6472,0.0002,-0.0010,-0.0007,0.700,0.700,0.700,0.700,695,33,282 +282,2.820,0.0000,0.0000,-61.6586,0.0001,-0.0012,-22.6460,-0.0013,0.0012,0.0013,0.700,0.700,0.700,0.700,697,33,283 +283,2.830,0.0000,0.0000,-65.7022,0.0001,-0.0025,-22.6477,-0.0001,-0.0010,-0.0008,0.700,0.700,0.700,0.700,700,34,284 +284,2.840,0.0000,0.0000,-65.7022,-0.0025,-0.0001,-22.6474,-0.0003,-0.0001,-0.0002,0.700,0.700,0.700,0.700,702,34,285 +285,2.850,0.0000,0.0000,-65.7022,-0.0026,0.0014,-22.6450,-0.0011,0.0001,-0.0004,0.700,0.700,0.700,0.700,705,34,286 +286,2.860,0.0000,0.0000,-65.7022,0.0029,0.0023,-22.6455,0.0006,0.0001,-0.0006,0.700,0.700,0.700,0.700,707,34,287 +287,2.870,0.0000,0.0000,-65.7022,-0.0000,0.0028,-22.6463,0.0022,0.0006,-0.0006,0.700,0.700,0.700,0.700,709,34,288 +288,2.880,0.0000,0.0000,-65.7022,-0.0002,0.0024,-22.6465,0.0015,-0.0016,-0.0023,0.700,0.700,0.700,0.700,711,34,289 +289,2.890,0.0000,0.0000,-65.7022,0.0030,-0.0002,-22.6488,-0.0009,0.0003,0.0009,0.700,0.700,0.700,0.700,714,34,290 +290,2.900,0.0000,0.0000,-65.7022,0.0008,-0.0022,-22.6448,-0.0005,-0.0007,-0.0001,0.700,0.700,0.700,0.700,716,34,291 +291,2.910,0.0000,0.0000,-65.7022,-0.0009,0.0021,-22.6425,-0.0020,0.0005,-0.0004,0.700,0.700,0.700,0.700,718,34,292 +292,2.920,0.0000,0.0000,-69.8743,-0.0008,0.0001,-22.6436,-0.0012,-0.0012,0.0014,0.700,0.700,0.700,0.700,721,35,293 +293,2.930,0.0000,0.0000,-69.8743,-0.0030,0.0022,-22.6445,0.0006,-0.0010,-0.0005,0.700,0.700,0.700,0.700,723,35,294 +294,2.940,0.0000,0.0000,-69.8743,-0.0020,0.0010,-22.6437,0.0009,0.0004,0.0001,0.700,0.700,0.700,0.700,726,35,295 +295,2.950,0.0000,0.0000,-69.8743,0.0030,-0.0017,-22.6499,-0.0002,-0.0004,0.0009,0.700,0.700,0.700,0.700,728,35,296 +296,2.960,0.0000,0.0000,-69.8743,0.0007,-0.0022,-22.6413,-0.0013,0.0020,0.0005,0.700,0.700,0.700,0.700,731,35,297 +297,2.970,0.0000,0.0000,-69.8743,-0.0003,0.0017,-22.6472,0.0002,-0.0007,-0.0017,0.700,0.700,0.700,0.700,733,35,298 +298,2.980,0.0000,0.0000,-69.8743,0.0013,-0.0049,-22.6481,-0.0002,-0.0008,-0.0003,0.700,0.700,0.700,0.700,735,35,299 +299,2.990,0.0000,0.0000,-69.8743,0.0000,0.0007,-22.6451,0.0001,-0.0002,0.0005,0.700,0.700,0.700,0.700,737,35,300 +300,3.000,0.0000,0.0000,-74.1749,0.0011,0.0037,-22.6470,0.0006,-0.0004,0.0013,0.700,0.700,0.700,0.700,739,36,301 +301,3.010,0.0000,0.0000,-74.1749,0.0011,0.0014,-22.6458,0.0010,0.0010,-0.0005,0.700,0.700,0.700,0.700,742,36,302 +302,3.020,0.0000,0.0000,-74.1749,-0.0012,-0.0002,-22.6464,0.0004,-0.0001,-0.0006,0.700,0.700,0.700,0.700,744,36,303 +303,3.030,0.0000,0.0000,-74.1749,-0.0016,0.0018,-22.6452,0.0002,0.0005,-0.0001,0.700,0.700,0.700,0.700,746,36,304 +304,3.040,0.0000,0.0000,-74.1749,0.0027,-0.0038,-22.6449,0.0015,0.0008,-0.0004,0.700,0.700,0.700,0.700,749,36,305 +305,3.050,0.0000,0.0000,-74.1749,-0.0036,-0.0009,-22.6465,0.0010,-0.0000,-0.0016,0.700,0.700,0.700,0.700,751,36,306 +306,3.060,0.0000,0.0000,-74.1749,-0.0006,-0.0006,-22.6447,0.0007,0.0006,0.0010,0.700,0.700,0.700,0.700,754,36,307 +307,3.070,0.0000,0.0000,-74.1749,-0.0043,0.0012,-22.6509,0.0006,0.0000,-0.0007,0.700,0.700,0.700,0.700,756,36,308 +308,3.080,0.0000,0.0000,-78.6039,-0.0002,-0.0015,-22.6459,0.0005,0.0008,-0.0007,0.700,0.700,0.700,0.700,759,37,309 +309,3.090,0.0000,0.0000,-78.6039,-0.0014,-0.0022,-22.6439,0.0016,-0.0007,0.0013,0.700,0.700,0.700,0.700,761,37,310 +310,3.100,0.0000,0.0000,-78.6039,-0.0005,-0.0012,-22.6444,-0.0008,-0.0025,0.0004,0.700,0.700,0.700,0.700,764,37,311 +311,3.110,0.0000,0.0000,-78.6039,0.0024,-0.0028,-22.6499,0.0004,0.0003,0.0000,0.700,0.700,0.700,0.700,766,37,312 +312,3.120,0.0000,0.0000,-78.6039,-0.0019,0.0017,-22.6459,-0.0008,0.0012,-0.0003,0.700,0.700,0.700,0.700,768,37,313 +313,3.130,0.0000,0.0000,-78.6039,0.0028,-0.0007,-22.6458,-0.0004,0.0006,-0.0004,0.700,0.700,0.700,0.700,771,37,314 +314,3.140,0.0000,0.0000,-78.6039,0.0034,-0.0032,-22.6471,-0.0012,-0.0005,-0.0002,0.700,0.700,0.700,0.700,773,37,315 +315,3.150,0.0000,0.0000,-78.6039,-0.0013,0.0001,-22.6454,0.0006,0.0012,-0.0003,0.700,0.700,0.700,0.700,775,37,316 +316,3.160,0.0000,0.0000,-78.6039,-0.0005,-0.0024,-22.6460,-0.0024,0.0001,-0.0004,0.700,0.700,0.700,0.700,778,37,317 +317,3.170,0.0000,0.0000,-83.1614,0.0002,0.0016,-22.6455,-0.0004,-0.0004,0.0016,0.700,0.700,0.700,0.700,780,38,318 +318,3.180,0.0000,0.0000,-83.1614,-0.0020,0.0036,-22.6473,0.0002,-0.0005,-0.0001,0.700,0.700,0.700,0.700,783,38,319 +319,3.190,0.0000,0.0000,-83.1614,-0.0006,-0.0006,-22.6468,-0.0005,0.0015,-0.0008,0.700,0.700,0.700,0.700,785,38,320 +320,3.200,0.0000,0.0000,-83.1614,0.0004,0.0025,-22.6437,-0.0017,-0.0010,-0.0008,0.700,0.700,0.700,0.700,787,38,321 +321,3.210,0.0000,0.0000,-83.1614,0.0045,-0.0007,-22.6436,0.0006,-0.0004,0.0016,0.700,0.700,0.700,0.700,790,38,322 +322,3.220,0.0000,0.0000,-83.1614,0.0028,0.0010,-22.6460,0.0000,-0.0011,0.0000,0.700,0.700,0.700,0.700,792,38,323 +323,3.230,0.0000,0.0000,-83.1614,0.0059,0.0015,-22.6466,0.0007,0.0008,0.0010,0.700,0.700,0.700,0.700,795,38,324 +324,3.240,0.0000,0.0000,-83.1614,-0.0023,-0.0004,-22.6444,0.0006,0.0003,0.0009,0.700,0.700,0.700,0.700,797,38,325 +325,3.250,0.0000,0.0000,-87.8474,0.0026,0.0011,-22.6458,0.0003,0.0002,0.0010,0.700,0.700,0.700,0.700,800,39,326 +326,3.260,0.0000,0.0000,-87.8474,-0.0013,-0.0003,-22.6439,-0.0012,-0.0005,-0.0008,0.700,0.700,0.700,0.700,802,39,327 +327,3.270,0.0000,0.0000,-87.8474,0.0020,-0.0037,-22.6466,0.0004,0.0003,-0.0019,0.700,0.700,0.700,0.700,805,39,328 +328,3.280,0.0000,0.0000,-87.8474,-0.0007,0.0009,-22.6455,-0.0011,0.0000,0.0008,0.700,0.700,0.700,0.700,807,39,329 +329,3.290,0.0000,0.0000,-87.8474,0.0007,-0.0019,-22.6447,0.0011,-0.0010,0.0015,0.700,0.700,0.700,0.700,810,39,330 +330,3.300,0.0000,0.0000,-87.8474,0.0032,-0.0008,-22.6489,-0.0001,-0.0007,0.0010,0.700,0.700,0.700,0.700,812,39,331 +331,3.310,0.0000,0.0000,-87.8474,0.0028,0.0022,-22.6471,-0.0006,-0.0005,0.0011,0.700,0.700,0.700,0.700,814,39,332 +332,3.320,0.0000,0.0000,-87.8474,0.0005,0.0008,-22.6467,-0.0011,-0.0009,0.0006,0.700,0.700,0.700,0.700,816,39,333 +333,3.330,0.0000,0.0000,-92.6618,0.0009,-0.0034,-22.6473,0.0010,0.0010,0.0003,0.700,0.700,0.700,0.700,819,40,334 +334,3.340,0.0000,0.0000,-92.6618,0.0001,0.0009,-22.6451,-0.0005,0.0009,0.0011,0.700,0.700,0.700,0.700,821,40,335 +335,3.350,0.0000,0.0000,-92.6618,-0.0001,0.0016,-22.6437,-0.0008,-0.0001,0.0010,0.700,0.700,0.700,0.700,823,40,336 +336,3.360,0.0000,0.0000,-92.6618,-0.0033,0.0007,-22.6461,0.0014,0.0000,0.0002,0.700,0.700,0.700,0.700,826,40,337 +337,3.370,0.0000,0.0000,-92.6618,0.0003,0.0002,-22.6467,0.0003,-0.0003,-0.0002,0.700,0.700,0.700,0.700,828,40,338 +338,3.380,0.0000,0.0000,-92.6618,-0.0003,-0.0020,-22.6438,-0.0011,0.0006,-0.0011,0.700,0.700,0.700,0.700,830,40,339 +339,3.390,0.0000,0.0000,-92.6618,0.0012,0.0033,-22.6448,-0.0012,0.0000,0.0001,0.700,0.700,0.700,0.700,833,40,340 +340,3.400,0.0000,0.0000,-92.6618,-0.0001,0.0010,-22.6460,-0.0009,0.0005,-0.0004,0.700,0.700,0.700,0.700,835,40,341 +341,3.410,0.0000,0.0000,-92.6618,0.0014,-0.0019,-22.6448,-0.0000,0.0002,-0.0002,0.700,0.700,0.700,0.700,838,40,342 +342,3.420,0.0000,-0.0000,-97.6047,0.0023,0.0004,-22.6519,-0.0007,0.0012,0.0018,0.700,0.700,0.700,0.700,840,41,343 +343,3.430,0.0000,-0.0000,-97.6047,0.0021,0.0019,-22.6435,-0.0018,0.0011,-0.0001,0.700,0.700,0.700,0.700,842,41,344 +344,3.440,0.0000,-0.0000,-97.6047,-0.0027,-0.0000,-22.6438,-0.0013,0.0017,0.0008,0.700,0.700,0.700,0.700,845,41,345 +345,3.450,0.0000,-0.0000,-97.6047,0.0014,0.0013,-22.6478,0.0011,-0.0008,0.0017,0.700,0.700,0.700,0.700,847,41,346 +346,3.460,0.0000,-0.0000,-97.6047,0.0019,-0.0005,-22.6487,0.0007,-0.0017,-0.0011,0.700,0.700,0.700,0.700,850,41,347 +347,3.470,0.0000,-0.0000,-97.6047,-0.0016,-0.0033,-22.6479,0.0001,-0.0000,0.0014,0.700,0.700,0.700,0.700,852,41,348 +348,3.480,0.0000,-0.0000,-97.6047,0.0006,0.0023,-22.6442,0.0001,-0.0009,0.0012,0.700,0.700,0.700,0.700,854,41,349 +349,3.490,0.0000,-0.0000,-97.6047,0.0025,-0.0002,-22.6446,-0.0000,-0.0009,0.0009,0.700,0.700,0.700,0.700,856,41,350 +350,3.500,0.0000,-0.0000,-102.6760,0.0006,0.0000,-22.6479,0.0004,-0.0006,0.0033,0.700,0.700,0.700,0.700,859,42,351 +351,3.510,0.0000,-0.0000,-102.6760,-0.0013,0.0005,-22.6486,-0.0003,0.0018,0.0012,0.700,0.700,0.700,0.700,861,42,352 +352,3.520,0.0000,-0.0000,-102.6760,-0.0016,-0.0016,-22.6476,-0.0000,-0.0005,-0.0006,0.700,0.700,0.700,0.700,864,42,353 +353,3.530,0.0000,-0.0000,-102.6760,-0.0004,-0.0003,-22.6475,0.0001,-0.0015,0.0003,0.700,0.700,0.700,0.700,866,42,354 +354,3.540,0.0000,-0.0000,-102.6760,0.0036,-0.0009,-22.6455,-0.0005,-0.0010,0.0004,0.700,0.700,0.700,0.700,868,42,355 +355,3.550,0.0000,-0.0000,-102.6760,0.0014,0.0011,-22.6447,-0.0011,-0.0016,0.0002,0.700,0.700,0.700,0.700,871,42,356 +356,3.560,0.0000,-0.0000,-102.6760,0.0026,-0.0007,-22.6459,0.0012,-0.0002,-0.0004,0.700,0.700,0.700,0.700,873,42,357 +357,3.570,0.0000,-0.0000,-102.6760,-0.0016,0.0001,-22.6467,-0.0002,0.0001,-0.0002,0.700,0.700,0.700,0.700,876,42,358 +358,3.580,0.0000,-0.0000,-102.6760,0.0018,0.0011,-22.6408,-0.0010,0.0017,0.0002,0.700,0.700,0.700,0.700,878,42,359 +359,3.590,0.0000,-0.0000,-107.8758,0.0038,-0.0000,-22.6473,0.0006,0.0005,0.0012,0.700,0.700,0.700,0.700,880,43,360 +360,3.600,0.0000,-0.0000,-107.8758,0.0040,0.0010,-22.6439,-0.0012,-0.0023,0.0001,0.700,0.700,0.700,0.700,883,43,361 +361,3.610,0.0000,-0.0000,-107.8758,0.0013,-0.0004,-22.6419,-0.0007,-0.0007,0.0012,0.700,0.700,0.700,0.700,885,43,362 +362,3.620,0.0000,-0.0000,-107.8758,-0.0027,-0.0001,-22.6455,0.0000,-0.0002,0.0003,0.700,0.700,0.700,0.700,888,43,363 +363,3.630,0.0000,-0.0000,-107.8758,-0.0035,0.0013,-22.6500,-0.0011,0.0004,0.0010,0.700,0.700,0.700,0.700,890,43,364 +364,3.640,0.0000,-0.0000,-107.8758,-0.0011,-0.0006,-22.6446,0.0009,-0.0010,-0.0017,0.700,0.700,0.700,0.700,892,43,365 +365,3.650,0.0000,-0.0000,-107.8758,0.0016,-0.0030,-22.6436,0.0001,0.0002,0.0007,0.700,0.700,0.700,0.700,895,43,366 +366,3.660,0.0000,-0.0000,-107.8758,0.0010,0.0004,-22.6442,0.0011,0.0002,-0.0001,0.700,0.700,0.700,0.700,897,43,367 +367,3.670,0.0000,-0.0000,-113.2040,0.0006,-0.0012,-22.6457,-0.0004,0.0024,-0.0005,0.700,0.700,0.700,0.700,899,44,368 +368,3.680,0.0000,-0.0000,-113.2040,0.0017,0.0031,-22.6452,0.0019,0.0002,0.0005,0.700,0.700,0.700,0.700,902,44,369 +369,3.690,0.0000,-0.0000,-113.2040,0.0006,0.0024,-22.6476,0.0006,-0.0003,0.0003,0.700,0.700,0.700,0.700,904,44,370 +370,3.700,0.0000,-0.0000,-113.2040,-0.0014,0.0002,-22.6437,-0.0023,0.0019,-0.0005,0.700,0.700,0.700,0.700,906,44,371 +371,3.710,0.0000,-0.0000,-113.2040,-0.0011,-0.0030,-22.6450,0.0003,0.0003,-0.0006,0.700,0.700,0.700,0.700,909,44,372 +372,3.720,0.0000,-0.0000,-113.2040,0.0059,0.0015,-22.6459,-0.0001,0.0003,-0.0004,0.700,0.700,0.700,0.700,911,44,373 +373,3.730,0.0000,-0.0000,-113.2040,0.0005,-0.0005,-22.6438,0.0000,0.0010,-0.0004,0.700,0.700,0.700,0.700,913,44,374 +374,3.740,0.0000,-0.0000,-113.2040,-0.0003,-0.0034,-22.6425,-0.0003,-0.0003,0.0005,0.700,0.700,0.700,0.700,916,44,375 +375,3.750,0.0000,-0.0000,-113.2040,0.0014,0.0015,-22.6483,0.0001,0.0003,-0.0010,0.700,0.700,0.700,0.700,918,44,376 +376,3.760,0.0000,-0.0000,-118.6607,0.0052,0.0002,-22.6489,0.0012,-0.0005,0.0013,0.700,0.700,0.700,0.700,920,45,377 +377,3.770,0.0000,-0.0000,-118.6607,0.0001,-0.0015,-22.6468,0.0000,0.0000,-0.0007,0.700,0.700,0.700,0.700,923,45,378 +378,3.780,0.0000,-0.0000,-118.6607,-0.0016,0.0000,-22.6441,0.0008,-0.0008,-0.0003,0.700,0.700,0.700,0.700,925,45,379 +379,3.790,0.0000,-0.0000,-118.6607,-0.0025,-0.0017,-22.6505,-0.0004,-0.0026,0.0001,0.700,0.700,0.700,0.700,927,45,380 +380,3.800,0.0000,-0.0000,-118.6607,-0.0016,-0.0015,-22.6478,-0.0019,-0.0006,0.0002,0.700,0.700,0.700,0.700,930,45,381 +381,3.810,0.0000,-0.0000,-118.6607,0.0012,-0.0006,-22.6453,0.0005,0.0007,0.0011,0.700,0.700,0.700,0.700,932,45,382 +382,3.820,0.0000,-0.0000,-118.6607,-0.0015,-0.0016,-22.6466,-0.0011,0.0007,-0.0003,0.700,0.700,0.700,0.700,935,45,383 +383,3.830,0.0000,-0.0000,-118.6607,-0.0008,0.0013,-22.6420,-0.0005,-0.0001,0.0010,0.700,0.700,0.700,0.700,937,45,384 +384,3.840,0.0000,-0.0000,-124.2459,-0.0007,0.0024,-22.6448,0.0005,-0.0009,-0.0008,0.700,0.700,0.700,0.700,940,46,385 +385,3.850,0.0000,-0.0000,-124.2459,0.0010,0.0012,-22.6461,-0.0011,0.0005,-0.0003,0.700,0.700,0.700,0.700,942,46,386 +386,3.860,0.0000,-0.0000,-124.2459,0.0009,0.0034,-22.6471,-0.0006,0.0011,0.0014,0.700,0.700,0.700,0.700,944,46,387 +387,3.870,0.0000,-0.0000,-124.2459,0.0021,-0.0005,-22.6464,0.0002,-0.0011,0.0007,0.700,0.700,0.700,0.700,946,46,388 +388,3.880,0.0000,-0.0000,-124.2459,-0.0017,0.0006,-22.6442,-0.0006,0.0015,-0.0014,0.700,0.700,0.700,0.700,949,46,389 +389,3.890,0.0000,-0.0000,-124.2459,-0.0010,0.0038,-22.6432,0.0004,0.0010,0.0008,0.700,0.700,0.700,0.700,951,46,390 +390,3.900,0.0000,-0.0000,-124.2459,0.0006,-0.0005,-22.6478,-0.0016,0.0008,0.0006,0.700,0.700,0.700,0.700,953,46,391 +391,3.910,0.0000,-0.0000,-124.2459,0.0026,-0.0058,-22.6437,0.0005,0.0010,0.0005,0.700,0.700,0.700,0.700,956,46,392 +392,3.920,0.0000,-0.0000,-124.2459,-0.0001,-0.0011,-22.6453,-0.0008,0.0004,-0.0012,0.700,0.700,0.700,0.700,958,46,393 +393,3.930,0.0000,-0.0000,-129.9595,-0.0016,0.0009,-22.6435,-0.0000,-0.0006,0.0000,0.700,0.700,0.700,0.700,960,47,394 +394,3.940,0.0000,-0.0000,-129.9595,-0.0005,-0.0002,-22.6446,0.0017,0.0010,0.0006,0.700,0.700,0.700,0.700,962,47,395 +395,3.950,0.0000,-0.0000,-129.9595,-0.0007,0.0026,-22.6448,-0.0002,0.0006,0.0003,0.700,0.700,0.700,0.700,965,47,396 +396,3.960,0.0000,-0.0000,-129.9595,-0.0012,0.0006,-22.6480,-0.0013,0.0009,0.0011,0.700,0.700,0.700,0.700,967,47,397 +397,3.970,0.0000,-0.0000,-129.9595,0.0003,-0.0004,-22.6455,-0.0003,0.0008,0.0002,0.700,0.700,0.700,0.700,970,47,398 +398,3.980,0.0000,-0.0000,-129.9595,0.0002,-0.0002,-22.6463,0.0005,0.0002,0.0002,0.700,0.700,0.700,0.700,972,47,399 +399,3.990,0.0000,-0.0000,-129.9595,0.0044,0.0024,-22.6460,0.0014,0.0000,-0.0011,0.700,0.700,0.700,0.700,975,47,400 +400,4.000,0.0000,-0.0000,-129.9595,-0.0005,0.0022,-22.6473,0.0005,0.0011,-0.0001,0.700,0.700,0.700,0.700,977,47,401 +401,4.010,0.0000,-0.0000,-135.8016,0.0013,-0.0010,-22.6466,0.0002,0.0001,-0.0001,0.700,0.700,0.700,0.700,979,48,402 +402,4.020,0.0000,-0.0000,-135.8016,-0.0028,-0.0025,-22.6437,-0.0000,-0.0005,-0.0012,0.700,0.700,0.700,0.700,981,48,403 +403,4.030,0.0000,-0.0000,-135.8016,0.0002,-0.0010,-22.6473,0.0006,-0.0002,0.0017,0.700,0.700,0.700,0.700,984,48,404 +404,4.040,0.0000,-0.0000,-135.8016,0.0024,0.0002,-22.6426,0.0005,0.0002,-0.0007,0.700,0.700,0.700,0.700,986,48,405 +405,4.050,0.0000,-0.0000,-135.8016,-0.0052,-0.0028,-22.6436,-0.0016,-0.0019,0.0014,0.700,0.700,0.700,0.700,989,48,406 +406,4.060,0.0000,-0.0000,-135.8016,0.0032,-0.0018,-22.6426,0.0005,0.0023,0.0002,0.700,0.700,0.700,0.700,991,48,407 +407,4.070,0.0000,-0.0000,-135.8016,-0.0020,-0.0000,-22.6449,0.0006,-0.0018,0.0001,0.700,0.700,0.700,0.700,994,48,408 +408,4.080,0.0000,-0.0000,-135.8016,0.0013,-0.0027,-22.6451,-0.0003,0.0008,-0.0002,0.700,0.700,0.700,0.700,996,48,409 +409,4.090,0.0000,0.0000,-141.7722,-0.0026,0.0003,-22.6486,0.0012,-0.0006,0.0001,0.700,0.700,0.700,0.700,999,49,410 +410,4.100,0.0000,0.0000,-141.7722,-0.0004,0.0022,-22.6491,-0.0001,0.0004,-0.0009,0.700,0.700,0.700,0.700,1001,49,411 +411,4.110,0.0000,0.0000,-141.7722,-0.0014,0.0004,-22.6471,-0.0002,0.0017,0.0003,0.700,0.700,0.700,0.700,1003,49,412 +412,4.120,0.0000,0.0000,-141.7722,-0.0032,0.0024,-22.6456,-0.0006,0.0001,-0.0002,0.700,0.700,0.700,0.700,1006,49,413 +413,4.130,0.0000,0.0000,-141.7722,0.0014,0.0013,-22.6494,-0.0020,-0.0003,-0.0002,0.700,0.700,0.700,0.700,1008,49,414 +414,4.140,0.0000,0.0000,-141.7722,-0.0017,0.0042,-22.6476,-0.0012,-0.0006,0.0017,0.700,0.700,0.700,0.700,1011,49,415 +415,4.150,0.0000,0.0000,-141.7722,0.0012,-0.0005,-22.6432,0.0006,-0.0001,-0.0003,0.700,0.700,0.700,0.700,1013,49,416 +416,4.160,0.0000,0.0000,-141.7722,0.0037,0.0010,-22.6488,0.0018,-0.0012,0.0016,0.700,0.700,0.700,0.700,1015,49,417 +417,4.170,0.0000,0.0000,-141.7722,0.0035,-0.0015,-22.6428,0.0002,-0.0014,0.0003,0.700,0.700,0.700,0.700,1017,49,418 +418,4.180,0.0000,0.0000,-147.8712,0.0007,0.0011,-22.6441,-0.0005,0.0004,-0.0014,0.700,0.700,0.700,0.700,1020,50,419 +419,4.190,0.0000,0.0000,-147.8712,0.0002,-0.0017,-22.6500,-0.0004,0.0005,-0.0006,0.700,0.700,0.700,0.700,1022,50,420 +420,4.200,0.0000,0.0000,-147.8712,0.0009,-0.0012,-22.6511,0.0008,0.0001,-0.0008,0.700,0.700,0.700,0.700,1024,50,421 +421,4.210,0.0000,0.0000,-147.8712,0.0007,0.0008,-22.6453,0.0004,-0.0011,0.0008,0.700,0.700,0.700,0.700,1026,50,422 +422,4.220,0.0000,0.0000,-147.8712,-0.0024,0.0040,-22.6481,-0.0012,-0.0009,-0.0001,0.700,0.700,0.700,0.700,1029,50,423 +423,4.230,0.0000,0.0000,-147.8712,-0.0010,-0.0026,-22.6457,-0.0004,-0.0015,-0.0016,0.700,0.700,0.700,0.700,1031,50,424 +424,4.240,0.0000,0.0000,-147.8712,0.0012,0.0017,-22.6458,-0.0011,-0.0004,-0.0000,0.700,0.700,0.700,0.700,1033,50,425 +425,4.250,0.0000,0.0000,-147.8712,0.0031,0.0039,-22.6437,-0.0004,-0.0006,0.0015,0.700,0.700,0.700,0.700,1035,50,426 +426,4.260,0.0000,0.0000,-147.8712,-0.0013,0.0030,-22.6462,0.0002,-0.0005,-0.0006,0.700,0.700,0.700,0.700,1038,50,427 +427,4.270,0.0000,0.0000,-154.0986,0.0014,0.0012,-22.6474,0.0003,0.0001,-0.0007,0.700,0.700,0.700,0.700,1040,51,428 +428,4.280,0.0000,0.0000,-154.0986,-0.0001,-0.0019,-22.6491,0.0008,0.0000,-0.0002,0.700,0.700,0.700,0.700,1043,51,429 +429,4.290,0.0000,0.0000,-154.0986,0.0014,0.0005,-22.6455,0.0007,0.0000,-0.0003,0.700,0.700,0.700,0.700,1045,51,430 +430,4.300,0.0000,0.0000,-154.0986,0.0006,-0.0001,-22.6443,-0.0019,0.0016,0.0003,0.700,0.700,0.700,0.700,1047,51,431 +431,4.310,0.0000,0.0000,-154.0986,0.0022,-0.0036,-22.6447,0.0012,-0.0003,0.0008,0.700,0.700,0.700,0.700,1050,51,432 +432,4.320,0.0000,0.0000,-154.0986,-0.0031,-0.0027,-22.6435,-0.0003,0.0018,0.0008,0.700,0.700,0.700,0.700,1052,51,433 +433,4.330,0.0000,0.0000,-154.0986,-0.0015,0.0027,-22.6455,0.0007,0.0007,0.0002,0.700,0.700,0.700,0.700,1054,51,434 +434,4.340,0.0000,0.0000,-154.0986,0.0023,-0.0007,-22.6420,-0.0006,-0.0001,-0.0005,0.700,0.700,0.700,0.700,1056,51,435 +435,4.350,0.0000,0.0000,-154.0986,0.0008,0.0021,-22.6449,0.0004,-0.0006,-0.0011,0.700,0.700,0.700,0.700,1058,51,436 +436,4.360,0.0000,0.0000,-160.4546,0.0019,-0.0012,-22.6436,-0.0009,0.0014,-0.0014,0.700,0.700,0.700,0.700,1061,52,437 +437,4.370,0.0000,0.0000,-160.4546,-0.0011,-0.0021,-22.6423,-0.0009,-0.0004,0.0019,0.700,0.700,0.700,0.700,1063,52,438 +438,4.380,0.0000,0.0000,-160.4546,-0.0008,0.0004,-22.6464,0.0003,-0.0007,0.0007,0.700,0.700,0.700,0.700,1065,52,439 +439,4.390,0.0000,0.0000,-160.4546,0.0015,-0.0010,-22.6443,-0.0006,0.0015,-0.0013,0.700,0.700,0.700,0.700,1067,52,440 +440,4.400,0.0000,0.0000,-160.4546,0.0015,0.0034,-22.6461,-0.0007,-0.0001,0.0012,0.700,0.700,0.700,0.700,1070,52,441 +441,4.410,0.0000,0.0000,-160.4546,-0.0008,0.0014,-22.6465,-0.0002,0.0010,0.0009,0.700,0.700,0.700,0.700,1072,52,442 +442,4.420,0.0000,0.0000,-160.4546,0.0031,-0.0009,-22.6445,0.0013,-0.0006,0.0005,0.700,0.700,0.700,0.700,1074,52,443 +443,4.430,0.0000,0.0000,-160.4546,0.0017,-0.0025,-22.6475,-0.0006,-0.0008,0.0008,0.700,0.700,0.700,0.700,1077,52,444 +444,4.440,0.0000,0.0000,-166.9389,-0.0004,-0.0004,-22.6464,0.0002,0.0000,0.0011,0.700,0.700,0.700,0.700,1079,53,445 +445,4.450,0.0000,0.0000,-166.9389,0.0016,0.0026,-22.6465,-0.0012,-0.0009,-0.0019,0.700,0.700,0.700,0.700,1082,53,446 +446,4.460,0.0000,0.0000,-166.9389,0.0031,-0.0023,-22.6448,-0.0010,-0.0003,-0.0011,0.700,0.700,0.700,0.700,1084,53,447 +447,4.470,0.0000,0.0000,-166.9389,-0.0041,0.0022,-22.6443,-0.0001,0.0005,-0.0004,0.700,0.700,0.700,0.700,1086,53,448 +448,4.480,0.0000,0.0000,-166.9389,-0.0027,-0.0010,-22.6457,0.0020,0.0012,0.0012,0.700,0.700,0.700,0.700,1089,53,449 +449,4.490,0.0000,0.0000,-166.9389,0.0012,-0.0005,-22.6450,0.0010,-0.0003,-0.0006,0.700,0.700,0.700,0.700,1091,53,450 +450,4.500,0.0000,0.0000,-166.9389,0.0003,0.0012,-22.6455,0.0012,-0.0000,-0.0018,0.700,0.700,0.700,0.700,1094,53,451 +451,4.510,0.0000,0.0000,-166.9389,0.0002,-0.0021,-22.6445,0.0017,-0.0001,0.0001,0.700,0.700,0.700,0.700,1096,53,452 +452,4.520,0.0000,0.0000,-173.5518,0.0009,0.0016,-22.6449,0.0003,-0.0000,-0.0008,0.700,0.700,0.700,0.700,1099,54,453 +453,4.530,0.0000,0.0000,-173.5518,0.0011,-0.0039,-22.6490,0.0001,0.0006,-0.0010,0.700,0.700,0.700,0.700,1101,54,454 +454,4.540,0.0000,0.0000,-173.5518,-0.0022,0.0008,-22.6452,0.0006,-0.0020,0.0003,0.700,0.700,0.700,0.700,1103,54,455 +455,4.550,0.0000,0.0000,-173.5518,0.0003,0.0000,-22.6494,0.0008,-0.0017,0.0001,0.700,0.700,0.700,0.700,1106,54,456 +456,4.560,0.0000,0.0000,-173.5518,-0.0037,-0.0013,-22.6474,0.0016,-0.0028,-0.0008,0.700,0.700,0.700,0.700,1108,54,457 +457,4.570,0.0000,0.0000,-173.5518,0.0037,0.0017,-22.6457,-0.0002,-0.0003,0.0010,0.700,0.700,0.700,0.700,1111,54,458 +458,4.580,0.0000,0.0000,-173.5518,0.0028,0.0014,-22.6449,-0.0008,-0.0003,0.0007,0.700,0.700,0.700,0.700,1113,54,459 +459,4.590,0.0000,0.0000,-173.5518,-0.0001,0.0014,-22.6461,0.0012,-0.0004,-0.0009,0.700,0.700,0.700,0.700,1116,54,460 +460,4.600,0.0000,0.0000,-173.5518,-0.0001,0.0056,-22.6455,-0.0005,-0.0009,0.0009,0.700,0.700,0.700,0.700,1118,54,461 +461,4.610,-0.0000,0.0001,-180.2931,0.0043,0.0020,-22.6450,0.0009,0.0006,0.0010,0.700,0.700,0.700,0.700,1120,55,462 +462,4.620,-0.0000,0.0001,-180.2931,0.0055,0.0001,-22.6455,0.0009,-0.0008,0.0014,0.700,0.700,0.700,0.700,1123,55,463 +463,4.630,-0.0000,0.0001,-180.2931,0.0030,0.0025,-22.6436,0.0020,-0.0004,0.0012,0.700,0.700,0.700,0.700,1125,55,464 +464,4.640,-0.0000,0.0001,-180.2931,-0.0013,0.0042,-22.6455,0.0012,-0.0018,-0.0009,0.700,0.700,0.700,0.700,1128,55,465 +465,4.650,-0.0000,0.0001,-180.2931,0.0039,0.0013,-22.6437,0.0007,-0.0017,0.0008,0.700,0.700,0.700,0.700,1130,55,466 +466,4.660,-0.0000,0.0001,-180.2931,0.0008,0.0020,-22.6482,0.0026,-0.0014,0.0002,0.700,0.700,0.700,0.700,1133,55,467 +467,4.670,-0.0000,0.0001,-180.2931,0.0052,0.0058,-22.6476,0.0032,-0.0013,0.0000,0.700,0.700,0.700,0.700,1135,55,468 +468,4.680,-0.0000,0.0001,-180.2931,0.0036,0.0068,-22.6469,0.0026,-0.0018,0.0001,0.700,0.700,0.700,0.700,1137,55,469 +469,4.690,-0.0000,0.0001,-187.1629,0.0036,0.0053,-22.6497,0.0062,-0.0039,0.0006,0.700,0.700,0.700,0.700,1140,56,470 +470,4.700,-0.0000,0.0001,-187.1629,0.0077,0.0071,-22.6446,0.0041,-0.0028,0.0000,0.700,0.700,0.700,0.700,1142,56,471 +471,4.710,-0.0000,0.0001,-187.1629,0.0061,0.0087,-22.6477,0.0034,-0.0013,0.0003,0.700,0.700,0.700,0.700,1144,56,472 +472,4.720,-0.0000,0.0001,-187.1629,0.0039,0.0052,-22.6470,0.0046,-0.0011,0.0019,0.700,0.700,0.700,0.700,1147,56,473 +473,4.730,-0.0000,0.0001,-187.1629,0.0070,0.0084,-22.6481,0.0057,-0.0013,-0.0006,0.700,0.700,0.700,0.700,1149,56,474 +474,4.740,-0.0000,0.0001,-187.1629,0.0077,0.0093,-22.6476,0.0066,-0.0014,-0.0000,0.700,0.700,0.700,0.700,1151,56,475 +475,4.750,-0.0000,0.0001,-187.1629,0.0067,0.0096,-22.6484,0.0073,-0.0043,-0.0004,0.700,0.700,0.700,0.700,1154,56,476 +476,4.760,-0.0000,0.0001,-187.1629,0.0121,0.0170,-22.6489,0.0093,-0.0017,0.0006,0.700,0.700,0.700,0.700,1156,56,477 +477,4.770,-0.0000,0.0001,-187.1629,0.0088,0.0140,-22.6482,0.0091,-0.0028,0.0010,0.700,0.700,0.700,0.700,1158,56,478 +478,4.780,-0.0002,0.0003,-194.1611,0.0077,0.0182,-22.6446,0.0100,-0.0032,0.0009,0.700,0.700,0.700,0.700,1161,57,479 +479,4.790,-0.0002,0.0003,-194.1611,0.0049,0.0167,-22.6444,0.0096,-0.0024,-0.0008,0.700,0.700,0.700,0.700,1163,57,480 +480,4.800,-0.0002,0.0003,-194.1611,0.0135,0.0238,-22.6495,0.0139,-0.0009,0.0011,0.700,0.700,0.700,0.700,1166,57,481 +481,4.810,-0.0002,0.0003,-194.1611,0.0096,0.0245,-22.6432,0.0145,-0.0028,-0.0005,0.700,0.700,0.700,0.700,1168,57,482 +482,4.820,-0.0002,0.0003,-194.1611,0.0072,0.0329,-22.6470,0.0152,-0.0022,0.0002,0.700,0.700,0.700,0.700,1170,57,483 +483,4.830,-0.0002,0.0003,-194.1611,0.0108,0.0318,-22.6470,0.0181,-0.0020,0.0003,0.700,0.700,0.700,0.700,1172,57,484 +484,4.840,-0.0002,0.0003,-194.1611,0.0112,0.0363,-22.6480,0.0203,-0.0021,0.0003,0.700,0.700,0.700,0.700,1174,57,485 +485,4.850,-0.0002,0.0003,-194.1611,0.0062,0.0450,-22.6469,0.0230,-0.0021,-0.0001,0.700,0.700,0.700,0.700,1177,57,486 +486,4.860,-0.0007,0.0007,-201.2878,0.0117,0.0506,-22.6448,0.0254,-0.0012,0.0006,0.700,0.700,0.700,0.700,1179,58,487 +487,4.870,-0.0007,0.0007,-201.2878,0.0121,0.0541,-22.6456,0.0279,0.0014,0.0006,0.700,0.700,0.700,0.700,1181,58,488 +488,4.880,-0.0007,0.0007,-201.2878,0.0128,0.0608,-22.6451,0.0305,0.0034,0.0016,0.700,0.700,0.700,0.700,1184,58,489 +489,4.890,-0.0007,0.0007,-201.2878,0.0124,0.0662,-22.6450,0.0359,0.0042,-0.0009,0.700,0.700,0.700,0.700,1186,58,490 +490,4.900,-0.0007,0.0007,-201.2878,0.0094,0.0790,-22.6443,0.0395,0.0056,0.0008,0.700,0.700,0.700,0.700,1188,58,491 +491,4.910,-0.0007,0.0007,-201.2878,0.0109,0.0859,-22.6487,0.0413,0.0065,-0.0014,0.700,0.700,0.700,0.700,1190,58,492 +492,4.920,-0.0007,0.0007,-201.2878,0.0041,0.0996,-22.6452,0.0489,0.0091,0.0011,0.700,0.700,0.700,0.700,1193,58,493 +493,4.930,-0.0007,0.0007,-201.2878,0.0051,0.1104,-22.6462,0.0538,0.0120,0.0013,0.700,0.700,0.700,0.700,1195,58,494 +494,4.940,-0.0007,0.0007,-201.2878,0.0025,0.1219,-22.6427,0.0595,0.0141,-0.0000,0.700,0.700,0.700,0.700,1197,58,495 +495,4.950,-0.0024,0.0013,-208.5429,-0.0028,0.1404,-22.6469,0.0680,0.0188,-0.0007,0.700,0.700,0.700,0.700,1200,59,496 +496,4.960,-0.0024,0.0013,-208.5429,-0.0076,0.1577,-22.6449,0.0756,0.0228,0.0013,0.700,0.700,0.700,0.700,1202,59,497 +497,4.970,-0.0024,0.0013,-208.5429,-0.0134,0.1857,-22.6462,0.0854,0.0290,-0.0009,0.700,0.700,0.700,0.700,1205,59,498 +498,4.980,-0.0024,0.0013,-208.5429,-0.0215,0.2023,-22.6459,0.0946,0.0347,-0.0018,0.700,0.700,0.700,0.700,1207,59,499 +499,4.990,-0.0024,0.0013,-208.5429,-0.0279,0.2255,-22.6436,0.1049,0.0426,0.0003,0.700,0.700,0.700,0.700,1209,59,500 +500,5.000,-0.0024,0.0013,-208.5429,-0.0475,0.2552,-22.6479,0.1200,0.0546,0.0006,0.700,0.700,0.700,0.700,1212,59,501 +501,5.010,-0.0024,0.0013,-208.5429,-0.0625,0.2841,-22.6466,0.1322,0.0631,-0.0019,0.700,0.700,0.700,0.700,1214,59,502 +502,5.020,-0.0024,0.0013,-208.5429,-0.0835,0.3283,-22.6476,0.1506,0.0802,0.0005,0.700,0.700,0.700,0.700,1217,59,503 +503,5.030,-0.0072,0.0017,-215.9265,-0.1040,0.3605,-22.6473,0.1624,0.0921,-0.0007,0.700,0.700,0.700,0.700,1219,60,504 +504,5.040,-0.0072,0.0017,-215.9265,-0.1269,0.4004,-22.6482,0.1779,0.1073,-0.0007,0.700,0.700,0.700,0.700,1221,60,505 +505,5.050,-0.0072,0.0017,-215.9265,-0.1601,0.4620,-22.6487,0.2026,0.1326,0.0004,0.700,0.700,0.700,0.700,1224,60,506 +506,5.060,-0.0072,0.0017,-215.9265,-0.1917,0.5055,-22.6505,0.2211,0.1539,-0.0007,0.700,0.700,0.700,0.700,1226,60,507 +507,5.070,-0.0072,0.0017,-215.9265,-0.2294,0.5601,-22.6491,0.2419,0.1774,0.0005,0.700,0.700,0.700,0.700,1228,60,508 +508,5.080,-0.0072,0.0017,-215.9265,-0.2920,0.6345,-22.6471,0.2710,0.2181,0.0005,0.700,0.700,0.700,0.700,1231,60,509 +509,5.090,-0.0072,0.0017,-215.9265,-0.3402,0.6981,-22.6493,0.2953,0.2467,0.0005,0.700,0.700,0.700,0.700,1233,60,510 +510,5.100,-0.0072,0.0017,-215.9265,-0.4008,0.7644,-22.6454,0.3214,0.2831,-0.0002,0.700,0.700,0.700,0.700,1235,60,511 +511,5.110,-0.0072,0.0017,-215.9265,-0.5026,0.8758,-22.6472,0.3611,0.3465,-0.0003,0.700,0.700,0.700,0.700,1238,60,512 +512,5.120,-0.0201,-0.0006,-223.4384,-0.5801,0.9541,-22.6456,0.3892,0.3938,-0.0010,0.700,0.700,0.700,0.700,1240,61,513 +513,5.130,-0.0201,-0.0006,-223.4384,-0.6728,1.0446,-22.6516,0.4210,0.4465,-0.0023,0.700,0.700,0.700,0.700,1242,61,514 +514,5.140,-0.0201,-0.0006,-223.4384,-0.7710,1.1390,-22.6502,0.4538,0.5065,0.0014,0.700,0.700,0.700,0.700,1244,61,515 +515,5.150,-0.0201,-0.0006,-223.4384,-0.9579,1.2943,-22.6505,0.5058,0.6129,-0.0012,0.700,0.700,0.700,0.700,1247,61,516 +516,5.160,-0.0201,-0.0006,-223.4384,-1.1026,1.4095,-22.6513,0.5440,0.6939,0.0000,0.700,0.700,0.700,0.700,1249,61,517 +517,5.170,-0.0201,-0.0006,-223.4384,-1.2574,1.5311,-22.6514,0.5819,0.7856,0.0009,0.700,0.700,0.700,0.700,1251,61,518 +518,5.180,-0.0201,-0.0006,-223.4384,-1.5397,1.7345,-22.6506,0.6434,0.9434,0.0005,0.700,0.700,0.700,0.700,1254,61,519 +519,5.190,-0.0201,-0.0006,-223.4384,-1.7628,1.8770,-22.6487,0.6857,1.0637,0.0001,0.700,0.700,0.700,0.700,1256,61,520 +520,5.200,-0.0532,-0.0160,-231.0776,-2.1425,2.1123,-22.6492,0.7543,1.2741,-0.0008,0.700,0.700,0.700,0.700,1259,62,521 +521,5.210,-0.0532,-0.0160,-231.0776,-2.4370,2.2763,-22.6572,0.7983,1.4352,0.0015,0.700,0.700,0.700,0.700,1261,62,522 +522,5.220,-0.0532,-0.0160,-231.0776,-2.7701,2.4572,-22.6566,0.8417,1.6158,-0.0009,0.700,0.700,0.700,0.700,1263,62,523 +523,5.230,-0.0532,-0.0160,-231.0776,-3.1471,2.6480,-22.6608,0.8884,1.8126,0.0019,0.700,0.700,0.700,0.700,1265,62,524 +524,5.240,-0.0532,-0.0160,-231.0776,-3.7915,2.9443,-22.6601,0.9550,2.1594,0.0012,0.700,0.700,0.700,0.700,1268,62,525 +525,5.250,-0.0532,-0.0160,-231.0776,-4.2874,3.1564,-22.6685,0.9958,2.4208,-0.0008,0.700,0.700,0.700,0.700,1270,62,526 +526,5.260,-0.0532,-0.0160,-231.0776,-4.8433,3.3724,-22.6738,1.0325,2.7147,0.0011,0.700,0.700,0.700,0.700,1272,62,527 +527,5.270,-0.0532,-0.0160,-231.0776,-5.4513,3.5995,-22.6752,1.0693,3.0395,-0.0004,0.700,0.700,0.700,0.700,1274,62,528 +528,5.280,-0.0532,-0.0160,-231.0776,-6.1468,3.8248,-22.6904,1.0966,3.4009,-0.0002,0.700,0.700,0.700,0.700,1276,62,529 +529,5.290,-0.1311,-0.0810,-238.8361,-7.3072,4.1701,-22.7007,1.1269,4.0168,-0.0004,0.700,0.700,0.700,0.700,1279,63,530 +530,5.300,-0.1311,-0.0810,-238.8361,-8.1828,4.4054,-22.7161,1.1344,4.4834,-0.0020,0.700,0.700,0.700,0.700,1281,63,531 +531,5.310,-0.1311,-0.0810,-238.8361,-9.1391,4.6323,-22.7315,1.1284,4.9941,-0.0003,0.700,0.700,0.700,0.700,1283,63,532 +532,5.320,-0.1311,-0.0810,-238.8361,-10.1874,4.8552,-22.7496,1.1110,5.5630,-0.0005,0.700,0.700,0.700,0.700,1285,63,533 +533,5.330,-0.1311,-0.0810,-238.8361,-11.9077,5.1594,-22.7870,1.0476,6.5170,-0.0010,0.700,0.700,0.700,0.700,1288,63,534 +534,5.340,-0.1311,-0.0810,-238.8361,-13.1533,5.3388,-22.8175,0.9819,7.2308,-0.0009,0.700,0.700,0.700,0.700,1290,63,535 +535,5.350,-0.1311,-0.0810,-238.8361,-14.4628,5.4938,-22.8518,0.8906,8.0047,-0.0009,0.700,0.700,0.700,0.700,1292,63,536 +536,5.360,-0.1311,-0.0810,-238.8361,-15.8048,5.6245,-22.8929,0.7732,8.8434,0.0010,0.700,0.700,0.700,0.700,1294,63,537 +537,5.370,-0.1311,-0.0810,-238.8361,-17.8377,5.7557,-22.9691,0.5441,10.2273,0.0010,0.700,0.700,0.700,0.700,1297,63,538 +538,5.380,-0.2860,-0.2979,-246.6564,-19.1187,5.8032,-23.0328,0.3550,11.2285,-0.0025,0.700,0.700,0.700,0.700,1299,64,539 +539,5.390,-0.2860,-0.2979,-246.6564,-20.2853,5.8104,-23.0984,0.1360,12.2859,-0.0010,0.700,0.700,0.700,0.700,1301,64,540 +540,5.400,-0.2860,-0.2979,-246.6564,-21.2463,5.8014,-23.1691,-0.1087,13.3968,0.0001,0.700,0.700,0.700,0.700,1303,64,541 +541,5.410,-0.2860,-0.2979,-246.6564,-22.0819,5.7591,-23.2858,-0.5167,15.1219,-0.0011,0.700,0.700,0.700,0.700,1306,64,542 +542,5.420,-0.2860,-0.2979,-246.6564,-22.0842,5.7399,-23.3578,-0.7965,16.2907,-0.0014,0.700,0.700,0.700,0.700,1308,64,543 +543,5.430,-0.2860,-0.2979,-246.6564,-21.4939,5.7489,-23.4274,-1.0734,17.4473,0.0007,0.700,0.700,0.700,0.700,1310,64,544 +544,5.440,-0.2860,-0.2979,-246.6564,-20.2209,5.8002,-23.4793,-1.3256,18.5604,-0.0002,0.700,0.700,0.700,0.700,1312,64,545 +545,5.450,-0.2860,-0.2979,-246.6564,-16.8746,6.0052,-23.5197,-1.6147,20.0826,0.0014,0.700,0.700,0.700,0.700,1315,64,546 +546,5.460,-0.2860,-0.2979,-246.6564,-13.6764,6.2210,-23.5218,-1.7156,20.9458,0.0005,0.700,0.700,0.700,0.700,1317,64,547 +547,5.470,-0.4920,-0.7525,-254.2989,-9.7915,6.4905,-23.4848,-1.7183,21.6539,0.0001,0.700,0.700,0.700,0.700,1319,65,548 +548,5.480,-0.4920,-0.7525,-254.2989,-3.0200,6.9173,-23.3821,-1.5047,22.3598,-0.0006,0.700,0.700,0.700,0.700,1322,65,549 +549,5.490,-0.4920,-0.7525,-254.2989,1.7772,7.1586,-23.2925,-1.2069,22.5725,-0.0008,0.700,0.700,0.700,0.700,1324,65,550 +550,5.500,-0.4920,-0.7525,-254.2989,6.4653,7.3079,-23.1873,-0.7812,22.5712,-0.0005,0.700,0.700,0.700,0.700,1326,65,551 +551,5.510,-0.4920,-0.7525,-254.2989,12.7376,7.3291,-23.0398,0.0624,22.1906,0.0005,0.700,0.700,0.700,0.700,1329,65,552 +552,5.520,-0.4920,-0.7525,-254.2989,16.0917,7.2108,-22.9483,0.7385,21.7220,0.0012,0.700,0.700,0.700,0.700,1331,65,553 +553,5.530,-0.4920,-0.7525,-254.2989,18.6193,7.0188,-22.8768,1.4791,21.1133,0.0007,0.700,0.700,0.700,0.700,1333,65,554 +554,5.540,-0.4920,-0.7525,-254.2989,20.7837,6.7133,-22.8098,2.6615,20.0273,0.0002,0.700,0.700,0.700,0.700,1336,65,555 +555,5.550,-0.4920,-0.7525,-254.2989,21.1808,6.5772,-22.7886,3.4655,19.2443,0.0013,0.700,0.700,0.700,0.700,1338,65,556 +556,5.560,-0.6849,-1.2408,-261.5839,20.8435,6.5710,-22.7855,4.2698,18.4612,0.0009,0.700,0.700,0.700,0.700,1340,66,557 +557,5.570,-0.6849,-1.2408,-261.5839,19.8849,6.7428,-22.7912,5.0631,17.7111,-0.0013,0.700,0.700,0.700,0.700,1342,66,558 +558,5.580,-0.6849,-1.2408,-261.5839,18.4168,7.1193,-22.8180,5.8399,17.0228,-0.0012,0.700,0.700,0.700,0.700,1344,66,559 +559,5.590,-0.6849,-1.2408,-261.5839,15.5310,8.1051,-22.8755,6.9747,16.1695,-0.0004,0.700,0.700,0.700,0.700,1347,66,560 +560,5.600,-0.6849,-1.2408,-261.5839,13.2958,9.0392,-22.9228,7.7135,15.7417,-0.0005,0.700,0.700,0.700,0.700,1349,66,561 +561,5.610,-0.6849,-1.2408,-261.5839,10.9076,10.1823,-22.9858,8.4453,15.4471,0.0016,0.700,0.700,0.700,0.700,1351,66,562 +562,5.620,-0.6849,-1.2408,-261.5839,8.4593,11.4945,-23.0488,9.1768,15.2938,0.0003,0.700,0.700,0.700,0.700,1353,66,563 +563,5.630,-0.6849,-1.2408,-261.5839,4.8066,13.6823,-23.1791,10.2852,15.3389,-0.0009,0.700,0.700,0.700,0.700,1356,66,564 +564,5.640,-0.6849,-1.2408,-261.5839,2.4919,15.1927,-23.2678,11.0349,15.5530,0.0002,0.700,0.700,0.700,0.700,1358,66,565 +565,5.650,-0.9414,-1.5562,-268.6247,-0.6100,17.3373,-23.4179,12.1943,16.1259,0.0019,0.700,0.700,0.700,0.700,1361,67,566 +566,5.660,-0.9414,-1.5562,-268.6247,-2.2907,18.5485,-23.5277,12.9866,16.6600,0.0001,0.700,0.700,0.700,0.700,1363,67,567 +567,5.670,-0.9414,-1.5562,-268.6247,-3.5368,19.4504,-23.6336,13.7910,17.2869,-0.0003,0.700,0.700,0.700,0.700,1365,67,568 +568,5.680,-0.9414,-1.5562,-268.6247,-4.3460,19.9858,-23.7866,15.0132,18.3288,0.0014,0.700,0.700,0.700,0.700,1368,67,569 +569,5.690,-0.9414,-1.5562,-268.6247,-4.0252,19.6329,-23.8610,15.8247,19.0320,0.0013,0.700,0.700,0.700,0.700,1370,67,570 +570,5.700,-0.9414,-1.5562,-268.6247,-2.0962,17.8801,-23.9272,17.0137,19.9792,0.0016,0.700,0.700,0.700,0.700,1373,67,571 +571,5.710,-0.9414,-1.5562,-268.6247,0.1338,15.8665,-23.9202,17.7686,20.4606,-0.0005,0.700,0.700,0.700,0.700,1375,67,572 +572,5.720,-0.9414,-1.5562,-268.6247,2.9809,13.2590,-23.8797,18.4796,20.7693,0.0002,0.700,0.700,0.700,0.700,1377,67,573 +573,5.730,-1.3727,-1.9298,-275.5084,6.2491,10.2027,-23.7988,19.1350,20.8634,-0.0001,0.700,0.700,0.700,0.700,1379,68,574 +574,5.740,-1.3727,-1.9298,-275.5084,11.3284,5.2457,-23.6383,19.9946,20.5742,-0.0009,0.700,0.700,0.700,0.700,1382,68,575 +575,5.750,-1.3727,-1.9298,-275.5084,14.3907,2.0857,-23.5228,20.4825,20.0947,-0.0006,0.700,0.700,0.700,0.700,1384,68,576 +576,5.760,-1.3727,-1.9298,-275.5084,17.8913,-1.8113,-23.3645,21.0853,19.0141,0.0009,0.700,0.700,0.700,0.700,1387,68,577 +577,5.770,-1.3727,-1.9298,-275.5084,19.2829,-3.5346,-23.2964,21.4223,18.1203,0.0008,0.700,0.700,0.700,0.700,1389,68,578 +578,5.780,-1.3727,-1.9298,-275.5084,19.8962,-4.4907,-23.2488,21.8731,16.6570,0.0003,0.700,0.700,0.700,0.700,1392,68,579 +579,5.790,-1.3727,-1.9298,-275.5084,19.4282,-4.0020,-23.2593,22.1663,15.6822,0.0011,0.700,0.700,0.700,0.700,1394,68,580 +580,5.800,-1.3727,-1.9298,-275.5084,18.4218,-2.6794,-23.2972,22.4874,14.7617,0.0014,0.700,0.700,0.700,0.700,1396,68,581 +581,5.810,-1.3727,-1.9298,-275.5084,17.0229,-0.6361,-23.3731,22.8562,13.9419,-0.0017,0.700,0.700,0.700,0.700,1398,68,582 +582,5.820,-1.7788,-2.3109,-282.0552,14.5303,3.4268,-23.5219,23.5549,12.9586,0.0015,0.700,0.700,0.700,0.700,1401,69,583 +583,5.830,-1.7788,-2.3109,-282.0552,12.7944,6.5001,-23.6453,24.1349,12.4861,-0.0014,0.700,0.700,0.700,0.700,1403,69,584 +584,5.840,-1.7788,-2.3109,-282.0552,11.1557,9.6029,-23.7866,24.8184,12.1678,0.0011,0.700,0.700,0.700,0.700,1405,69,585 +585,5.850,-1.7788,-2.3109,-282.0552,9.0672,13.7376,-24.0061,26.0297,11.9554,0.0012,0.700,0.700,0.700,0.700,1408,69,586 +586,5.860,-1.7788,-2.3109,-282.0552,8.0747,15.7662,-24.1544,26.9421,11.9574,0.0001,0.700,0.700,0.700,0.700,1410,69,587 +587,5.870,-1.7788,-2.3109,-282.0552,7.4960,16.9035,-24.2814,27.9042,12.0317,0.0005,0.700,0.700,0.700,0.700,1412,69,588 +588,5.880,-1.7788,-2.3109,-282.0552,7.4025,16.9460,-24.3763,28.8891,12.1344,0.0001,0.700,0.700,0.700,0.700,1414,69,589 +589,5.890,-1.7788,-2.3109,-282.0552,8.1954,14.7097,-24.4396,30.3061,12.2300,0.0010,0.700,0.700,0.700,0.700,1417,69,590 +590,5.900,-2.2933,-2.5963,-288.4147,9.2884,11.7430,-24.4167,31.1488,12.1787,0.0008,0.700,0.700,0.700,0.700,1419,70,591 +591,5.910,-2.2933,-2.5963,-288.4147,10.6921,7.8519,-24.3430,31.8628,11.9850,-0.0003,0.700,0.700,0.700,0.700,1421,70,592 +592,5.920,-2.2933,-2.5963,-288.4147,12.9681,1.1697,-24.1642,32.6356,11.3715,0.0005,0.700,0.700,0.700,0.700,1424,70,593 +593,5.930,-2.2933,-2.5963,-288.4147,14.3211,-3.1059,-24.0281,32.9405,10.7449,-0.0019,0.700,0.700,0.700,0.700,1426,70,594 +594,5.940,-2.2933,-2.5963,-288.4147,15.3344,-6.6497,-23.9009,33.0977,9.9667,-0.0009,0.700,0.700,0.700,0.700,1428,70,595 +595,5.950,-2.2933,-2.5963,-288.4147,16.0719,-9.7646,-23.7846,33.1292,8.6138,0.0009,0.700,0.700,0.700,0.700,1431,70,596 +596,5.960,-2.2933,-2.5963,-288.4147,16.0603,-10.0894,-23.7617,33.0924,7.6616,0.0019,0.700,0.700,0.700,0.700,1433,70,597 +597,5.970,-2.2933,-2.5963,-288.4147,15.7397,-9.0168,-23.7925,33.0682,6.7289,0.0009,0.700,0.700,0.700,0.700,1435,70,598 +598,5.980,-2.2933,-2.5963,-288.4147,15.2203,-6.7295,-23.8759,33.1160,5.8570,-0.0016,0.700,0.700,0.700,0.700,1437,70,599 +599,5.990,-2.8129,-2.9230,-294.4753,14.6050,-3.5296,-23.9983,33.2813,5.0778,-0.0007,0.700,0.700,0.700,0.700,1439,71,600 +600,6.000,-2.8129,-2.9230,-294.4753,13.7156,2.1351,-24.2397,33.8080,4.1243,-0.0008,0.700,0.700,0.700,0.700,1442,71,601 +601,6.010,-2.8129,-2.9230,-294.4753,13.2154,5.8396,-24.4248,34.3603,3.6344,-0.0008,0.700,0.700,0.700,0.700,1444,71,602 +602,6.020,-2.8129,-2.9230,-294.4753,12.8383,8.9511,-24.6025,35.0610,3.2499,-0.0017,0.700,0.700,0.700,0.700,1446,71,603 +603,6.030,-2.8129,-2.9230,-294.4753,12.5806,11.0389,-24.7638,35.8730,2.9389,-0.0003,0.700,0.700,0.700,0.700,1448,71,604 +604,6.040,-2.8129,-2.9230,-294.4753,12.4326,11.5252,-24.9284,37.1818,2.5432,-0.0006,0.700,0.700,0.700,0.700,1451,71,605 +605,6.050,-2.8129,-2.9230,-294.4753,12.4557,9.8594,-24.9611,38.0164,2.2577,-0.0015,0.700,0.700,0.700,0.700,1453,71,606 +606,6.060,-2.8129,-2.9230,-294.4753,12.5958,4.7035,-24.8854,39.0394,1.6997,0.0026,0.700,0.700,0.700,0.700,1456,71,607 +607,6.070,-2.8129,-2.9230,-294.4753,12.6716,0.1411,-24.7627,39.4920,1.2004,0.0003,0.700,0.700,0.700,0.700,1458,71,608 +608,6.080,-3.4160,-3.1811,-300.3316,12.6887,-4.5610,-24.6090,39.7311,0.5846,-0.0001,0.700,0.700,0.700,0.700,1460,72,609 +609,6.090,-3.4160,-3.1811,-300.3316,12.5575,-10.3224,-24.3939,39.7189,-0.5336,0.0010,0.700,0.700,0.700,0.700,1463,72,610 +610,6.100,-3.4160,-3.1811,-300.3316,12.4184,-12.4749,-24.3067,39.5320,-1.3644,0.0008,0.700,0.700,0.700,0.700,1465,72,611 +611,6.110,-3.4160,-3.1811,-300.3316,12.3068,-12.9265,-24.2759,39.2874,-2.2195,-0.0004,0.700,0.700,0.700,0.700,1467,72,612 +612,6.120,-3.4160,-3.1811,-300.3316,12.3617,-10.5111,-24.3680,38.9850,-3.4698,-0.0003,0.700,0.700,0.700,0.700,1470,72,613 +613,6.130,-3.4160,-3.1811,-300.3316,12.5951,-7.2947,-24.5057,38.9295,-4.2322,0.0002,0.700,0.700,0.700,0.700,1472,72,614 +614,6.140,-3.4160,-3.1811,-300.3316,12.9802,-3.3830,-24.6854,39.0481,-4.9265,0.0012,0.700,0.700,0.700,0.700,1474,72,615 +615,6.150,-3.4160,-3.1811,-300.3316,13.4321,0.6039,-24.8897,39.3631,-5.5434,-0.0003,0.700,0.700,0.700,0.700,1476,72,616 +616,6.160,-3.4160,-3.1811,-300.3316,13.8721,4.0468,-25.1023,39.8607,-6.0906,0.0005,0.700,0.700,0.700,0.700,1478,72,617 +617,6.170,-4.0069,-3.4237,-305.9122,14.2260,6.9408,-25.3578,40.8517,-6.8204,-0.0020,0.700,0.700,0.700,0.700,1481,73,618 +618,6.180,-4.0069,-3.4237,-305.9122,14.1233,6.7801,-25.4510,41.5683,-7.2855,-0.0008,0.700,0.700,0.700,0.700,1483,73,619 +619,6.190,-4.0069,-3.4237,-305.9122,13.6909,4.8380,-25.4646,42.2256,-7.7636,0.0003,0.700,0.700,0.700,0.700,1485,73,620 +620,6.200,-4.0069,-3.4237,-305.9122,12.4805,-0.7624,-25.3298,42.9238,-8.5621,-0.0004,0.700,0.700,0.700,0.700,1488,73,621 +621,6.210,-4.0069,-3.4237,-305.9122,11.4482,-5.3371,-25.1684,43.1211,-9.1732,-0.0019,0.700,0.700,0.700,0.700,1490,73,622 +622,6.220,-4.0069,-3.4237,-305.9122,10.4126,-9.5870,-24.9981,43.0833,-9.8425,-0.0003,0.700,0.700,0.700,0.700,1492,73,623 +623,6.230,-4.0069,-3.4237,-305.9122,9.2842,-13.7101,-24.8143,42.6914,-10.9294,-0.0006,0.700,0.700,0.700,0.700,1495,73,624 +624,6.240,-4.0069,-3.4237,-305.9122,9.0408,-14.2655,-24.7771,42.3177,-11.6770,0.0006,0.700,0.700,0.700,0.700,1497,73,625 +625,6.250,-4.6605,-3.6728,-311.2657,9.6517,-11.7549,-24.8902,41.8293,-12.7774,0.0012,0.700,0.700,0.700,0.700,1500,74,626 +626,6.260,-4.6605,-3.6728,-311.2657,10.6164,-8.4165,-25.0530,41.6728,-13.4738,-0.0004,0.700,0.700,0.700,0.700,1502,74,627 +627,6.270,-4.6605,-3.6728,-311.2657,11.8384,-4.4985,-25.2695,41.7173,-14.1316,0.0010,0.700,0.700,0.700,0.700,1504,74,628 +628,6.280,-4.6605,-3.6728,-311.2657,13.0636,-0.7481,-25.5019,41.9688,-14.7568,-0.0002,0.700,0.700,0.700,0.700,1506,74,629 +629,6.290,-4.6605,-3.6728,-311.2657,13.9927,2.0860,-25.7172,42.3967,-15.3490,-0.0002,0.700,0.700,0.700,0.700,1508,74,630 +630,6.300,-4.6605,-3.6728,-311.2657,14.3628,3.3883,-25.9199,43.2212,-16.2076,0.0009,0.700,0.700,0.700,0.700,1511,74,631 +631,6.310,-4.6605,-3.6728,-311.2657,13.7273,1.9406,-25.9475,43.7491,-16.7772,-0.0007,0.700,0.700,0.700,0.700,1513,74,632 +632,6.320,-4.6605,-3.6728,-311.2657,11.6093,-3.1203,-25.8087,44.2680,-17.6556,0.0031,0.700,0.700,0.700,0.700,1516,74,633 +633,6.330,-4.6605,-3.6728,-311.2657,9.7820,-7.3775,-25.6334,44.3380,-18.2699,-0.0003,0.700,0.700,0.700,0.700,1518,74,634 +634,6.340,-5.3411,-3.8676,-316.3942,8.0542,-11.2587,-25.4539,44.1758,-18.8971,0.0009,0.700,0.700,0.700,0.700,1520,75,635 +635,6.350,-5.3411,-3.8676,-316.3942,6.4417,-14.5804,-25.2730,43.6129,-19.8616,-0.0005,0.700,0.700,0.700,0.700,1523,75,636 +636,6.360,-5.3411,-3.8676,-316.3942,6.3896,-14.5027,-25.2676,43.1542,-20.5054,-0.0002,0.700,0.700,0.700,0.700,1525,75,637 +637,6.370,-5.3411,-3.8676,-316.3942,7.2051,-12.6413,-25.3619,42.7571,-21.1438,-0.0009,0.700,0.700,0.700,0.700,1527,75,638 +638,6.380,-5.3411,-3.8676,-316.3942,8.7106,-9.4833,-25.5428,42.5122,-21.7733,0.0006,0.700,0.700,0.700,0.700,1529,75,639 +639,6.390,-5.3411,-3.8676,-316.3942,10.5628,-5.7664,-25.7809,42.4709,-22.3982,0.0001,0.700,0.700,0.700,0.700,1531,75,640 +640,6.400,-5.3411,-3.8676,-316.3942,12.3190,-2.3366,-26.0312,42.6403,-23.0216,-0.0004,0.700,0.700,0.700,0.700,1533,75,641 +641,6.410,-5.3411,-3.8676,-316.3942,13.8050,0.5930,-26.3209,43.1861,-23.9516,-0.0011,0.700,0.700,0.700,0.700,1536,75,642 +642,6.420,-5.3411,-3.8676,-316.3942,13.5808,0.3430,-26.4068,43.6154,-24.5689,0.0023,0.700,0.700,0.700,0.700,1538,75,643 +643,6.430,-6.0251,-4.0430,-321.2826,11.3664,-3.2877,-26.3230,44.0863,-25.4822,-0.0004,0.700,0.700,0.700,0.700,1541,76,644 +644,6.440,-6.0251,-4.0430,-321.2826,9.0604,-7.0522,-26.1527,44.1565,-26.0786,0.0007,0.700,0.700,0.700,0.700,1543,76,645 +645,6.450,-6.0251,-4.0430,-321.2826,5.6940,-12.3830,-25.8659,43.8333,-26.9431,0.0008,0.700,0.700,0.700,0.700,1546,76,646 +646,6.460,-6.0251,-4.0430,-321.2826,4.3262,-14.4201,-25.7417,43.3941,-27.4997,0.0016,0.700,0.700,0.700,0.700,1548,76,647 +647,6.470,-6.0251,-4.0430,-321.2826,4.0857,-14.6319,-25.7186,42.8908,-28.0496,0.0006,0.700,0.700,0.700,0.700,1550,76,648 +648,6.480,-6.0251,-4.0430,-321.2826,5.8957,-11.7297,-25.8959,42.2527,-28.8787,-0.0004,0.700,0.700,0.700,0.700,1553,76,649 +649,6.490,-6.0251,-4.0430,-321.2826,8.0764,-8.4475,-26.1199,42.0342,-29.4520,-0.0006,0.700,0.700,0.700,0.700,1555,76,650 +650,6.500,-6.0251,-4.0430,-321.2826,10.3915,-5.0736,-26.3813,42.0297,-30.0483,-0.0003,0.700,0.700,0.700,0.700,1557,76,651 +651,6.510,-6.7273,-4.2132,-325.9426,12.7180,-1.6822,-26.7221,42.3580,-30.9840,0.0009,0.700,0.700,0.700,0.700,1560,77,652 +652,6.520,-6.7273,-4.2132,-325.9426,12.8098,-1.4392,-26.8276,42.6787,-31.6197,0.0016,0.700,0.700,0.700,0.700,1562,77,653 +653,6.530,-6.7273,-4.2132,-325.9426,11.5603,-2.9840,-26.8213,42.9493,-32.2432,0.0000,0.700,0.700,0.700,0.700,1564,77,654 +654,6.540,-6.7273,-4.2132,-325.9426,9.2270,-5.9279,-26.6896,43.0661,-32.8393,-0.0002,0.700,0.700,0.700,0.700,1566,77,655 +655,6.550,-6.7273,-4.2132,-325.9426,6.4188,-9.4338,-26.4953,42.9653,-33.3924,0.0006,0.700,0.700,0.700,0.700,1568,77,656 +656,6.560,-6.7273,-4.2132,-325.9426,2.9883,-13.5651,-26.2220,42.4242,-34.1504,-0.0002,0.700,0.700,0.700,0.700,1571,77,657 +657,6.570,-6.7273,-4.2132,-325.9426,2.1543,-14.4615,-26.1487,41.9059,-34.6174,0.0004,0.700,0.700,0.700,0.700,1573,77,658 +658,6.580,-6.7273,-4.2132,-325.9426,2.7921,-13.5723,-26.2020,41.3898,-35.0861,-0.0017,0.700,0.700,0.700,0.700,1575,77,659 +659,6.590,-6.7273,-4.2132,-325.9426,5.9813,-9.7175,-26.4903,40.8502,-35.8310,-0.0003,0.700,0.700,0.700,0.700,1578,77,660 +660,6.600,-7.4539,-4.3707,-330.3859,8.6656,-6.5852,-26.7603,40.7386,-36.3865,-0.0013,0.700,0.700,0.700,0.700,1580,78,661 +661,6.610,-7.4539,-4.3707,-330.3859,11.5507,-3.2461,-27.1200,40.9142,-37.2941,-0.0002,0.700,0.700,0.700,0.700,1583,78,662 +662,6.620,-7.4539,-4.3707,-330.3859,11.7889,-2.8861,-27.2421,41.1419,-37.9252,-0.0012,0.700,0.700,0.700,0.700,1585,78,663 +663,6.630,-7.4539,-4.3707,-330.3859,10.4389,-4.2387,-27.2232,41.3282,-38.5396,-0.0001,0.700,0.700,0.700,0.700,1587,78,664 +664,6.640,-7.4539,-4.3707,-330.3859,6.2789,-8.4579,-26.9891,41.3099,-39.3771,-0.0014,0.700,0.700,0.700,0.700,1590,78,665 +665,6.650,-7.4539,-4.3707,-330.3859,3.2820,-11.4474,-26.7718,41.0338,-39.8558,-0.0013,0.700,0.700,0.700,0.700,1592,78,666 +666,6.660,-7.4539,-4.3707,-330.3859,1.1756,-13.4714,-26.6110,40.5797,-40.2777,0.0007,0.700,0.700,0.700,0.700,1594,78,667 +667,6.670,-7.4539,-4.3707,-330.3859,0.6133,-13.9216,-26.5588,40.0375,-40.6703,0.0003,0.700,0.700,0.700,0.700,1596,78,668 +668,6.680,-8.1984,-4.5084,-334.6178,2.8314,-11.6255,-26.7405,39.3147,-41.2838,-0.0009,0.700,0.700,0.700,0.700,1599,79,669 +669,6.690,-8.1984,-4.5084,-334.6178,5.6447,-8.8863,-26.9886,39.0312,-41.7540,0.0012,0.700,0.700,0.700,0.700,1601,79,670 +670,6.700,-8.1984,-4.5084,-334.6178,8.4804,-6.1723,-27.2662,38.9448,-42.2885,0.0001,0.700,0.700,0.700,0.700,1603,79,671 +671,6.710,-8.1984,-4.5084,-334.6178,10.7772,-3.9405,-27.5829,39.0988,-43.1896,0.0009,0.700,0.700,0.700,0.700,1606,79,672 +672,6.720,-8.1984,-4.5084,-334.6178,10.1775,-4.3910,-27.6336,39.2480,-43.7994,-0.0009,0.700,0.700,0.700,0.700,1608,79,673 +673,6.730,-8.1984,-4.5084,-334.6178,7.9198,-6.2982,-27.5427,39.3021,-44.3738,0.0002,0.700,0.700,0.700,0.700,1610,79,674 +674,6.740,-8.1984,-4.5084,-334.6178,3.0672,-10.3785,-27.2336,39.0336,-45.0955,0.0012,0.700,0.700,0.700,0.700,1613,79,675 +675,6.750,-8.1984,-4.5084,-334.6178,0.4138,-12.5447,-27.0357,38.6154,-45.4773,0.0012,0.700,0.700,0.700,0.700,1615,79,676 +676,6.760,-8.1984,-4.5084,-334.6178,-0.7058,-13.3804,-26.9487,38.0811,-45.8104,0.0006,0.700,0.700,0.700,0.700,1617,79,677 +677,6.770,-8.9539,-4.6274,-338.6411,1.0943,-11.7724,-27.0858,37.3194,-46.3192,0.0002,0.700,0.700,0.700,0.700,1620,80,678 +678,6.780,-8.9539,-4.6274,-338.6411,3.9581,-9.4006,-27.3265,36.9770,-46.7287,0.0008,0.700,0.700,0.700,0.700,1622,80,679 +679,6.790,-8.9539,-4.6274,-338.6411,7.0346,-6.9169,-27.6161,36.8265,-47.2164,0.0010,0.700,0.700,0.700,0.700,1624,80,680 +680,6.800,-8.9539,-4.6274,-338.6411,9.2111,-5.1493,-27.8609,36.8394,-47.7759,-0.0002,0.700,0.700,0.700,0.700,1626,80,681 +681,6.810,-8.9539,-4.6274,-338.6411,9.1573,-5.0634,-27.9935,36.9735,-48.6615,-0.0008,0.700,0.700,0.700,0.700,1629,80,682 +682,6.820,-8.9539,-4.6274,-338.6411,6.8137,-6.7403,-27.8996,36.9772,-49.2060,-0.0001,0.700,0.700,0.700,0.700,1631,80,683 +683,6.830,-8.9539,-4.6274,-338.6411,3.4486,-9.1461,-27.6935,36.8108,-49.6707,-0.0011,0.700,0.700,0.700,0.700,1633,80,684 +684,6.840,-8.9539,-4.6274,-338.6411,0.2640,-11.3861,-27.4783,36.4511,-50.0348,-0.0018,0.700,0.700,0.700,0.700,1635,80,685 +685,6.850,-8.9539,-4.6274,-338.6411,-1.7871,-12.7170,-27.3199,35.6798,-50.4621,-0.0002,0.700,0.700,0.700,0.700,1638,80,686 +686,6.860,-9.7170,-4.7308,-342.4599,-0.6573,-11.8442,-27.4037,35.1596,-50.7391,0.0011,0.700,0.700,0.700,0.700,1640,81,687 +687,6.870,-9.7170,-4.7308,-342.4599,2.0522,-9.9039,-27.6135,34.7600,-51.0799,-0.0005,0.700,0.700,0.700,0.700,1642,81,688 +688,6.880,-9.7170,-4.7308,-342.4599,6.7496,-6.6384,-28.0429,34.4884,-51.7549,-0.0023,0.700,0.700,0.700,0.700,1645,81,689 +689,6.890,-9.7170,-4.7308,-342.4599,8.5556,-5.3673,-28.2576,34.4923,-52.2996,-0.0003,0.700,0.700,0.700,0.700,1647,81,690 +690,6.900,-9.7170,-4.7308,-342.4599,7.4844,-5.9491,-28.3182,34.5439,-53.1387,0.0011,0.700,0.700,0.700,0.700,1650,81,691 +691,6.910,-9.7170,-4.7308,-342.4599,4.5576,-7.7460,-28.1657,34.4548,-53.6238,0.0020,0.700,0.700,0.700,0.700,1652,81,692 +692,6.920,-9.7170,-4.7308,-342.4599,1.0305,-9.8999,-27.9423,34.1924,-54.0072,-0.0007,0.700,0.700,0.700,0.700,1654,81,693 +693,6.930,-9.7170,-4.7308,-342.4599,-1.7362,-11.5472,-27.7473,33.7572,-54.2876,0.0003,0.700,0.700,0.700,0.700,1656,81,694 +694,6.940,-10.4862,-4.8210,-346.0792,-2.3470,-11.7876,-27.6871,32.9693,-54.6238,-0.0006,0.700,0.700,0.700,0.700,1659,82,695 +695,6.950,-10.4862,-4.8210,-346.0792,-0.2099,-10.4372,-27.8552,32.5077,-54.8814,0.0006,0.700,0.700,0.700,0.700,1661,82,696 +696,6.960,-10.4862,-4.8210,-346.0792,3.0388,-8.4650,-28.1166,32.1933,-55.2273,-0.0016,0.700,0.700,0.700,0.700,1663,82,697 +697,6.970,-10.4862,-4.8210,-346.0792,7.1512,-5.9883,-28.5198,32.0286,-55.9291,-0.0017,0.700,0.700,0.700,0.700,1666,82,698 +698,6.980,-10.4862,-4.8210,-346.0792,7.7322,-5.5909,-28.6522,32.0356,-56.4713,0.0001,0.700,0.700,0.700,0.700,1668,82,699 +699,6.990,-10.4862,-4.8210,-346.0792,6.1245,-6.4200,-28.6156,32.0145,-56.9880,0.0004,0.700,0.700,0.700,0.700,1670,82,700 +700,7.000,-10.4862,-4.8210,-346.0792,2.9251,-8.1168,-28.4406,31.8674,-57.4219,-0.0013,0.700,0.700,0.700,0.700,1672,82,701 +701,7.010,-10.4862,-4.8210,-346.0792,-1.9943,-10.6843,-28.1093,31.3352,-57.8588,-0.0003,0.700,0.700,0.700,0.700,1675,82,702 +702,7.020,-10.4862,-4.8210,-346.0792,-3.4156,-11.3611,-27.9976,30.8359,-58.0476,0.0000,0.700,0.700,0.700,0.700,1677,82,703 +703,7.030,-11.2599,-4.8986,-349.5043,-2.5946,-10.8497,-28.0549,30.3252,-58.2281,0.0009,0.700,0.700,0.700,0.700,1679,83,704 +704,7.040,-11.2599,-4.8986,-349.5043,0.0843,-9.4039,-28.2597,29.9126,-58.4715,-0.0001,0.700,0.700,0.700,0.700,1681,83,705 +705,7.050,-11.2599,-4.8986,-349.5043,4.9785,-6.8304,-28.6844,29.5817,-59.0364,0.0007,0.700,0.700,0.700,0.700,1684,83,706 +706,7.060,-11.2599,-4.8986,-349.5043,6.7934,-5.8646,-28.8979,29.5277,-59.5252,0.0021,0.700,0.700,0.700,0.700,1686,83,707 +707,7.070,-11.2599,-4.8986,-349.5043,5.3825,-6.4470,-28.9228,29.4724,-60.2738,0.0005,0.700,0.700,0.700,0.700,1689,83,708 +708,7.080,-11.2599,-4.8986,-349.5043,2.1955,-7.9157,-28.7472,29.3135,-60.6779,-0.0021,0.700,0.700,0.700,0.700,1691,83,709 +709,7.090,-11.2599,-4.8986,-349.5043,-1.3265,-9.5226,-28.5116,28.9947,-60.9608,0.0000,0.700,0.700,0.700,0.700,1693,83,710 +710,7.100,-11.2599,-4.8986,-349.5043,-4.0554,-10.6752,-28.3085,28.2907,-61.2101,-0.0006,0.700,0.700,0.700,0.700,1696,83,711 +711,7.110,-11.2599,-4.8986,-349.5043,-3.0705,-10.1562,-28.3711,27.8021,-61.3546,-0.0002,0.700,0.700,0.700,0.700,1698,83,712 +712,7.120,-12.0371,-4.9641,-352.7405,1.4772,-8.0329,-28.7287,27.2659,-61.7192,0.0011,0.700,0.700,0.700,0.700,1701,84,713 +713,7.130,-12.0371,-4.9641,-352.7405,4.5784,-6.6118,-29.0135,27.0939,-62.1089,-0.0006,0.700,0.700,0.700,0.700,1703,84,714 +714,7.140,-12.0371,-4.9641,-352.7405,6.0910,-5.8972,-29.2044,27.0249,-62.5762,-0.0013,0.700,0.700,0.700,0.700,1705,84,715 +715,7.150,-12.0371,-4.9641,-352.7405,4.0873,-6.6517,-29.1756,26.9214,-63.2694,0.0007,0.700,0.700,0.700,0.700,1708,84,716 +716,7.160,-12.0371,-4.9641,-352.7405,0.6961,-8.0019,-28.9744,26.7234,-63.6182,0.0018,0.700,0.700,0.700,0.700,1710,84,717 +717,7.170,-12.0371,-4.9641,-352.7405,-2.6552,-9.3171,-28.7457,26.3714,-63.8402,-0.0002,0.700,0.700,0.700,0.700,1712,84,718 +718,7.180,-12.0371,-4.9641,-352.7405,-4.5163,-9.9697,-28.5972,25.6666,-64.0181,0.0001,0.700,0.700,0.700,0.700,1715,84,719 +719,7.190,-12.0371,-4.9641,-352.7405,-2.8858,-9.2553,-28.7145,25.2118,-64.1451,-0.0009,0.700,0.700,0.700,0.700,1717,84,720 +720,7.200,-12.8174,-5.0174,-355.7935,1.9866,-7.2743,-29.1132,24.7513,-64.5188,-0.0021,0.700,0.700,0.700,0.700,1720,85,721 +721,7.210,-12.8174,-5.0174,-355.7935,4.6586,-6.2013,-29.3714,24.6107,-64.9139,-0.0014,0.700,0.700,0.700,0.700,1722,85,722 +722,7.220,-12.8174,-5.0174,-355.7935,5.3297,-5.8892,-29.5033,24.5440,-65.3673,0.0009,0.700,0.700,0.700,0.700,1724,85,723 +723,7.230,-12.8174,-5.0174,-355.7935,2.1216,-6.9776,-29.3711,24.3736,-65.9767,0.0002,0.700,0.700,0.700,0.700,1727,85,724 +724,7.240,-12.8174,-5.0174,-355.7935,-1.4218,-8.1991,-29.1401,24.1059,-66.2414,0.0005,0.700,0.700,0.700,0.700,1729,85,725 +725,7.250,-12.8174,-5.0174,-355.7935,-4.2102,-9.1321,-28.9401,23.7099,-66.3834,0.0010,0.700,0.700,0.700,0.700,1731,85,726 +726,7.260,-12.8174,-5.0174,-355.7935,-4.4074,-9.1031,-28.9102,23.0177,-66.5034,0.0016,0.700,0.700,0.700,0.700,1734,85,727 +727,7.270,-12.8174,-5.0174,-355.7935,-1.8580,-8.1629,-29.1019,22.6230,-66.6400,-0.0009,0.700,0.700,0.700,0.700,1736,85,728 +728,7.280,-12.8174,-5.0174,-355.7935,1.5226,-6.9733,-29.3876,22.3587,-66.8972,-0.0004,0.700,0.700,0.700,0.700,1738,85,729 +729,7.290,-13.6016,-5.0599,-358.6684,4.6680,-5.8488,-29.7149,22.1731,-67.4779,0.0008,0.700,0.700,0.700,0.700,1741,86,730 +730,7.300,-13.6016,-5.0599,-358.6684,3.9666,-6.0191,-29.7438,22.0927,-67.9025,0.0009,0.700,0.700,0.700,0.700,1743,86,731 +731,7.310,-13.6016,-5.0599,-358.6684,1.2073,-6.8378,-29.5975,21.9377,-68.2552,-0.0007,0.700,0.700,0.700,0.700,1745,86,732 +732,7.320,-13.6016,-5.0599,-358.6684,-2.2898,-7.8758,-29.3637,21.6577,-68.4769,0.0004,0.700,0.700,0.700,0.700,1747,86,733 +733,7.330,-13.6016,-5.0599,-358.6684,-5.3230,-8.7133,-29.1351,21.0403,-68.6055,-0.0012,0.700,0.700,0.700,0.700,1750,86,734 +734,7.340,-13.6016,-5.0599,-358.6684,-4.4578,-8.3902,-29.1869,20.6018,-68.6602,-0.0002,0.700,0.700,0.700,0.700,1752,86,735 +735,7.350,-13.6016,-5.0599,-358.6684,0.0239,-6.9848,-29.5393,20.1061,-68.9045,-0.0013,0.700,0.700,0.700,0.700,1755,86,736 +736,7.360,-13.6016,-5.0599,-358.6684,2.9673,-6.0831,-29.8089,19.9282,-69.2204,0.0008,0.700,0.700,0.700,0.700,1757,86,737 +737,7.370,-14.3895,-5.0949,-361.3699,4.1144,-5.7016,-29.9732,19.8317,-69.6123,0.0012,0.700,0.700,0.700,0.700,1759,87,738 +738,7.380,-14.3895,-5.0949,-361.3699,1.4757,-6.3515,-29.8760,19.6531,-70.1671,0.0003,0.700,0.700,0.700,0.700,1762,87,739 +739,7.390,-14.3895,-5.0949,-361.3699,-1.9445,-7.2333,-29.6532,19.4084,-70.3941,-0.0009,0.700,0.700,0.700,0.700,1764,87,740 +740,7.400,-14.3895,-5.0949,-361.3699,-4.7730,-7.9309,-29.4433,19.0468,-70.4963,-0.0000,0.700,0.700,0.700,0.700,1766,87,741 +741,7.410,-14.3895,-5.0949,-361.3699,-5.5909,-8.0855,-29.3724,18.6242,-70.5251,0.0001,0.700,0.700,0.700,0.700,1768,87,742 +742,7.420,-14.3895,-5.0949,-361.3699,-4.0256,-7.6198,-29.4824,18.2194,-70.5739,0.0026,0.700,0.700,0.700,0.700,1770,87,743 +743,7.430,-14.3895,-5.0949,-361.3699,-0.9190,-6.7690,-29.7293,17.9065,-70.7216,-0.0001,0.700,0.700,0.700,0.700,1772,87,744 +744,7.440,-14.3895,-5.0949,-361.3699,3.1240,-5.6850,-30.1123,17.6555,-71.1708,-0.0011,0.700,0.700,0.700,0.700,1775,87,745 +745,7.450,-14.3895,-5.0949,-361.3699,3.3654,-5.5705,-30.1964,17.5578,-71.5500,-0.0009,0.700,0.700,0.700,0.700,1777,87,746 +746,7.460,-15.1782,-5.1263,-363.9011,-0.3015,-6.3684,-30.0074,17.3278,-72.0123,-0.0005,0.700,0.700,0.700,0.700,1780,88,747 +747,7.470,-15.1782,-5.1263,-363.9011,-3.6199,-7.0915,-29.7745,17.0436,-72.1680,0.0001,0.700,0.700,0.700,0.700,1782,88,748 +748,7.480,-15.1782,-5.1263,-363.9011,-5.6606,-7.4998,-29.6179,16.6643,-72.2047,0.0005,0.700,0.700,0.700,0.700,1784,88,749 +749,7.490,-15.1782,-5.1263,-363.9011,-5.3820,-7.3751,-29.6238,16.2569,-72.2133,-0.0005,0.700,0.700,0.700,0.700,1786,88,750 +750,7.500,-15.1782,-5.1263,-363.9011,-1.3527,-6.4040,-29.9335,15.7670,-72.3540,0.0003,0.700,0.700,0.700,0.700,1789,88,751 +751,7.510,-15.1782,-5.1263,-363.9011,1.6586,-5.7080,-30.2087,15.5742,-72.6072,-0.0000,0.700,0.700,0.700,0.700,1791,88,752 +752,7.520,-15.1782,-5.1263,-363.9011,2.8631,-5.3749,-30.3954,15.4132,-73.1281,-0.0016,0.700,0.700,0.700,0.700,1794,88,753 +753,7.530,-15.1782,-5.1263,-363.9011,0.8026,-5.7467,-30.2997,15.2800,-73.4363,-0.0000,0.700,0.700,0.700,0.700,1796,88,754 +754,7.540,-15.1782,-5.1263,-363.9011,-2.4683,-6.3560,-30.0821,15.0538,-73.6310,0.0000,0.700,0.700,0.700,0.700,1798,88,755 +755,7.550,-15.9616,-5.1540,-366.2652,-5.2150,-6.8432,-29.8845,14.7243,-73.6963,0.0013,0.700,0.700,0.700,0.700,1800,89,756 +756,7.560,-15.9616,-5.1540,-366.2652,-5.4607,-6.8027,-29.8394,14.1503,-73.6851,0.0001,0.700,0.700,0.700,0.700,1803,89,757 +757,7.570,-15.9616,-5.1540,-366.2652,-2.9643,-6.2801,-30.0315,13.8194,-73.7418,0.0008,0.700,0.700,0.700,0.700,1805,89,758 +758,7.580,-15.9616,-5.1540,-366.2652,0.2066,-5.6463,-30.2976,13.5935,-73.9216,-0.0004,0.700,0.700,0.700,0.700,1807,89,759 +759,7.590,-15.9616,-5.1540,-366.2652,2.3451,-5.2106,-30.5126,13.4596,-74.2174,-0.0003,0.700,0.700,0.700,0.700,1809,89,760 +760,7.600,-15.9616,-5.1540,-366.2652,2.2740,-5.1728,-30.5756,13.3570,-74.5519,-0.0009,0.700,0.700,0.700,0.700,1811,89,761 +761,7.610,-15.9616,-5.1540,-366.2652,-1.5897,-5.7618,-30.3548,13.1083,-74.9221,-0.0009,0.700,0.700,0.700,0.700,1814,89,762 +762,7.620,-15.9616,-5.1540,-366.2652,-4.6394,-6.2289,-30.1326,12.8261,-75.0108,0.0005,0.700,0.700,0.700,0.700,1816,89,763 +763,7.630,-16.7364,-5.1728,-368.4673,-5.9949,-6.3683,-30.0123,12.2864,-74.9855,0.0002,0.700,0.700,0.700,0.700,1819,90,764 +764,7.640,-16.7364,-5.1728,-368.4673,-4.0813,-6.0101,-30.1490,11.9508,-74.9974,-0.0012,0.700,0.700,0.700,0.700,1821,90,765 +765,7.650,-16.7364,-5.1728,-368.4673,0.4463,-5.2271,-30.5356,11.6154,-75.2308,-0.0012,0.700,0.700,0.700,0.700,1824,90,766 +766,7.660,-16.7364,-5.1728,-368.4673,2.1327,-4.9253,-30.7162,11.4933,-75.5217,-0.0008,0.700,0.700,0.700,0.700,1826,90,767 +767,7.670,-16.7364,-5.1728,-368.4673,0.4184,-5.1037,-30.6741,11.3187,-75.9585,-0.0017,0.700,0.700,0.700,0.700,1829,90,768 +768,7.680,-16.7364,-5.1728,-368.4673,-2.6523,-5.4967,-30.4693,11.1185,-76.1322,0.0000,0.700,0.700,0.700,0.700,1831,90,769 +769,7.690,-16.7364,-5.1728,-368.4673,-5.3693,-5.8253,-30.2625,10.8270,-76.1718,-0.0003,0.700,0.700,0.700,0.700,1833,90,770 +770,7.700,-16.7364,-5.1728,-368.4673,-5.7717,-5.7991,-30.2118,10.3116,-76.1201,0.0010,0.700,0.700,0.700,0.700,1836,90,771 +771,7.710,-16.7364,-5.1728,-368.4673,-3.4234,-5.4404,-30.3917,10.0130,-76.1436,-0.0007,0.700,0.700,0.700,0.700,1838,90,772 +772,7.720,-17.5076,-5.1775,-370.5151,-0.3937,-5.0007,-30.6464,9.8040,-76.2889,0.0008,0.700,0.700,0.700,0.700,1840,91,773 +773,7.730,-17.5076,-5.1775,-370.5151,1.6138,-4.7035,-30.8539,9.6728,-76.5434,-0.0003,0.700,0.700,0.700,0.700,1842,91,774 +774,7.740,-17.5076,-5.1775,-370.5151,1.4575,-4.6729,-30.9023,9.5723,-76.8361,-0.0003,0.700,0.700,0.700,0.700,1844,91,775 +775,7.750,-17.5076,-5.1775,-370.5151,-2.3453,-5.0557,-30.6679,9.3323,-77.1440,0.0019,0.700,0.700,0.700,0.700,1847,91,776 +776,7.760,-17.5076,-5.1775,-370.5151,-5.1579,-5.3265,-30.4524,9.0674,-77.1907,-0.0000,0.700,0.700,0.700,0.700,1849,91,777 +777,7.770,-17.5076,-5.1775,-370.5151,-6.3205,-5.4037,-30.3543,8.7477,-77.1463,0.0001,0.700,0.700,0.700,0.700,1851,91,778 +778,7.780,-17.5076,-5.1775,-370.5151,-3.9397,-5.0722,-30.5223,8.2908,-77.1193,-0.0009,0.700,0.700,0.700,0.700,1854,91,779 +779,7.790,-17.5076,-5.1775,-370.5151,-0.9708,-4.7176,-30.7706,8.0812,-77.2351,-0.0016,0.700,0.700,0.700,0.700,1856,91,780 +780,7.800,-17.5076,-5.1775,-370.5151,1.1674,-4.4553,-30.9831,7.9497,-77.4640,-0.0008,0.700,0.700,0.700,0.700,1858,91,781 +781,7.810,-18.2834,-5.1756,-372.4139,0.4485,-4.4535,-31.0113,7.7952,-77.8645,-0.0005,0.700,0.700,0.700,0.700,1861,92,782 +782,7.820,-18.2834,-5.1756,-372.4139,-2.2730,-4.6655,-30.8313,7.6336,-78.0360,0.0001,0.700,0.700,0.700,0.700,1863,92,783 +783,7.830,-18.2834,-5.1756,-372.4139,-5.0788,-4.8758,-30.6228,7.3877,-78.0765,-0.0005,0.700,0.700,0.700,0.700,1865,92,784 +784,7.840,-18.2834,-5.1756,-372.4139,-6.3516,-4.9416,-30.5047,7.0858,-78.0284,-0.0011,0.700,0.700,0.700,0.700,1867,92,785 +785,7.850,-18.2834,-5.1756,-372.4139,-4.1959,-4.6775,-30.6569,6.6561,-77.9773,0.0007,0.700,0.700,0.700,0.700,1870,92,786 +786,7.860,-18.2834,-5.1756,-372.4139,-1.3101,-4.3967,-30.9027,6.4504,-78.0731,-0.0003,0.700,0.700,0.700,0.700,1872,92,787 +787,7.870,-18.2834,-5.1756,-372.4139,0.8362,-4.1853,-31.1122,6.3226,-78.2822,0.0010,0.700,0.700,0.700,0.700,1874,92,788 +788,7.880,-18.2834,-5.1756,-372.4139,0.2258,-4.1612,-31.1429,6.1745,-78.6579,-0.0018,0.700,0.700,0.700,0.700,1877,92,789 +789,7.890,-19.0566,-5.1779,-374.1635,-2.3970,-4.3082,-30.9686,6.0206,-78.8163,-0.0007,0.700,0.700,0.700,0.700,1879,93,790 +790,7.900,-19.0566,-5.1779,-374.1635,-6.0097,-4.4911,-30.6873,5.6538,-78.8263,-0.0023,0.700,0.700,0.700,0.700,1882,93,791 +791,7.910,-19.0566,-5.1779,-374.1635,-6.1538,-4.4482,-30.6538,5.3616,-78.7535,-0.0011,0.700,0.700,0.700,0.700,1884,93,792 +792,7.920,-19.0566,-5.1779,-374.1635,-4.2510,-4.2807,-30.7964,5.1019,-78.7264,0.0011,0.700,0.700,0.700,0.700,1886,93,793 +793,7.930,-19.0566,-5.1779,-374.1635,-1.4373,-4.0618,-31.0333,4.9142,-78.8139,-0.0019,0.700,0.700,0.700,0.700,1888,93,794 +794,7.940,-19.0566,-5.1779,-374.1635,0.9305,-3.8570,-31.2860,4.7463,-79.1308,-0.0000,0.700,0.700,0.700,0.700,1891,93,795 +795,7.950,-19.0566,-5.1779,-374.1635,-0.0882,-3.8696,-31.2530,4.6500,-79.3579,-0.0000,0.700,0.700,0.700,0.700,1893,93,796 +796,7.960,-19.0566,-5.1779,-374.1635,-4.0884,-4.0137,-30.9709,4.4023,-79.5196,-0.0001,0.700,0.700,0.700,0.700,1896,93,797 +797,7.970,-19.0566,-5.1779,-374.1635,-6.0844,-4.0690,-30.8074,4.1540,-79.4830,-0.0002,0.700,0.700,0.700,0.700,1898,93,798 +798,7.980,-19.8152,-5.1779,-375.7664,-5.2972,-3.9606,-30.8458,3.7538,-79.3778,-0.0004,0.700,0.700,0.700,0.700,1901,94,799 +799,7.990,-19.8152,-5.1779,-375.7664,-2.7549,-3.8051,-31.0437,3.5466,-79.4010,-0.0011,0.700,0.700,0.700,0.700,1903,94,800 +800,8.000,-19.8152,-5.1779,-375.7664,0.4672,-3.6109,-31.3523,3.3616,-79.6467,-0.0001,0.700,0.700,0.700,0.700,1906,94,801 +801,8.010,-19.8152,-5.1779,-375.7664,0.3419,-3.5760,-31.3908,3.2757,-79.8721,-0.0003,0.700,0.700,0.700,0.700,1908,94,802 +802,8.020,-19.8152,-5.1779,-375.7664,-1.6992,-3.5991,-31.2645,3.1604,-80.0411,0.0015,0.700,0.700,0.700,0.700,1910,94,803 +803,8.030,-19.8152,-5.1779,-375.7664,-5.5116,-3.6675,-30.9725,2.8670,-80.0767,0.0012,0.700,0.700,0.700,0.700,1913,94,804 +804,8.040,-19.8152,-5.1779,-375.7664,-6.3265,-3.6475,-30.8898,2.6163,-79.9980,-0.0005,0.700,0.700,0.700,0.700,1915,94,805 +805,8.050,-19.8152,-5.1779,-375.7664,-5.0629,-3.5612,-30.9788,2.3746,-79.9305,-0.0018,0.700,0.700,0.700,0.700,1917,94,806 +806,8.060,-20.5652,-5.1635,-377.2312,-2.5035,-3.4509,-31.1833,2.1893,-79.9601,-0.0005,0.700,0.700,0.700,0.700,1919,95,807 +807,8.070,-20.5652,-5.1635,-377.2312,0.3645,-3.3189,-31.4606,2.0271,-80.2029,-0.0005,0.700,0.700,0.700,0.700,1922,95,808 +808,8.080,-20.5652,-5.1635,-377.2312,-0.0474,-3.2901,-31.4760,1.9477,-80.4120,0.0006,0.700,0.700,0.700,0.700,1924,95,809 +809,8.090,-20.5652,-5.1635,-377.2312,-3.5713,-3.2976,-31.2321,1.7528,-80.5806,-0.0006,0.700,0.700,0.700,0.700,1927,95,810 +810,8.100,-20.5652,-5.1635,-377.2312,-5.7609,-3.2854,-31.0535,1.5469,-80.5529,0.0008,0.700,0.700,0.700,0.700,1929,95,811 +811,8.110,-20.5652,-5.1635,-377.2312,-6.2167,-3.2511,-30.9947,1.3118,-80.4615,-0.0017,0.700,0.700,0.700,0.700,1931,95,812 +812,8.120,-20.5652,-5.1635,-377.2312,-3.4613,-3.1502,-31.2020,1.0023,-80.4056,0.0000,0.700,0.700,0.700,0.700,1934,95,813 +813,8.130,-20.5652,-5.1635,-377.2312,-0.9845,-3.0839,-31.4217,0.8728,-80.5021,0.0010,0.700,0.700,0.700,0.700,1936,95,814 +814,8.140,-21.3198,-5.1453,-378.5635,0.1177,-3.0183,-31.5697,0.7554,-80.7850,-0.0006,0.700,0.700,0.700,0.700,1939,96,815 +815,8.150,-21.3198,-5.1453,-378.5635,-1.5543,-2.9859,-31.4709,0.6656,-80.9416,-0.0009,0.700,0.700,0.700,0.700,1941,96,816 +816,8.160,-21.3198,-5.1453,-378.5635,-4.1108,-2.9567,-31.2769,0.5191,-80.9945,-0.0005,0.700,0.700,0.700,0.700,1943,96,817 +817,8.170,-21.3198,-5.1453,-378.5635,-6.2522,-2.8877,-31.0842,0.2085,-80.8929,-0.0011,0.700,0.700,0.700,0.700,1946,96,818 +818,8.180,-21.3198,-5.1453,-378.5635,-5.2982,-2.8519,-31.1420,-0.0026,-80.8086,-0.0019,0.700,0.700,0.700,0.700,1948,96,819 +819,8.190,-21.3198,-5.1453,-378.5635,-2.9693,-2.8168,-31.3334,-0.1701,-80.8060,0.0004,0.700,0.700,0.700,0.700,1950,96,820 +820,8.200,-21.3198,-5.1453,-378.5635,-0.0771,-2.7748,-31.6037,-0.3142,-81.0014,0.0005,0.700,0.700,0.700,0.700,1953,96,821 +821,8.210,-21.3198,-5.1453,-378.5635,-0.2792,-2.7296,-31.6284,-0.3784,-81.1829,-0.0015,0.700,0.700,0.700,0.700,1955,96,822 +822,8.220,-21.3198,-5.1453,-378.5635,-2.2059,-2.6779,-31.5057,-0.4696,-81.3108,-0.0016,0.700,0.700,0.700,0.700,1957,96,823 +823,8.230,-22.0661,-5.1352,-379.7609,-4.6578,-2.6086,-31.3129,-0.6174,-81.3298,0.0016,0.700,0.700,0.700,0.700,1959,97,824 +824,8.240,-22.0661,-5.1352,-379.7609,-6.1142,-2.5505,-31.1819,-0.8094,-81.2527,0.0003,0.700,0.700,0.700,0.700,1961,97,825 +825,8.250,-22.0661,-5.1352,-379.7609,-4.8033,-2.5101,-31.2612,-1.0987,-81.1249,-0.0016,0.700,0.700,0.700,0.700,1964,97,826 +826,8.260,-22.0661,-5.1352,-379.7609,-2.4229,-2.5085,-31.4562,-1.2402,-81.1431,0.0002,0.700,0.700,0.700,0.700,1966,97,827 +827,8.270,-22.0661,-5.1352,-379.7609,-0.4904,-2.5035,-31.6362,-1.3252,-81.2631,0.0002,0.700,0.700,0.700,0.700,1968,97,828 +828,8.280,-22.0661,-5.1352,-379.7609,-0.7689,-2.4421,-31.6717,-1.4155,-81.5120,0.0006,0.700,0.700,0.700,0.700,1971,97,829 +829,8.290,-22.0661,-5.1352,-379.7609,-2.9045,-2.3542,-31.5169,-1.5089,-81.6052,-0.0013,0.700,0.700,0.700,0.700,1973,97,830 +830,8.300,-22.0661,-5.1352,-379.7609,-5.1530,-2.2671,-31.3362,-1.6578,-81.5873,0.0001,0.700,0.700,0.700,0.700,1975,97,831 +831,8.310,-22.0661,-5.1352,-379.7609,-5.8865,-2.1857,-31.2470,-1.9341,-81.4402,0.0006,0.700,0.700,0.700,0.700,1978,97,832 +832,8.320,-22.7940,-5.1182,-380.8282,-4.2042,-2.1894,-31.3669,-2.0971,-81.3779,0.0005,0.700,0.700,0.700,0.700,1980,98,833 +833,8.330,-22.7940,-5.1182,-380.8282,-0.9322,-2.2310,-31.6561,-2.2461,-81.4781,0.0004,0.700,0.700,0.700,0.700,1983,98,834 +834,8.340,-22.7940,-5.1182,-380.8282,-0.2297,-2.2146,-31.7473,-2.2989,-81.6326,-0.0008,0.700,0.700,0.700,0.700,1985,98,835 +835,8.350,-22.7940,-5.1182,-380.8282,-2.4336,-2.0868,-31.6105,-2.3999,-81.8136,0.0000,0.700,0.700,0.700,0.700,1988,98,836 +836,8.360,-22.7940,-5.1182,-380.8282,-4.7133,-1.9728,-31.4259,-2.5232,-81.8135,-0.0001,0.700,0.700,0.700,0.700,1990,98,837 +837,8.370,-22.7940,-5.1182,-380.8282,-5.9916,-1.8881,-31.3027,-2.6870,-81.7254,0.0011,0.700,0.700,0.700,0.700,1992,98,838 +838,8.380,-22.7940,-5.1182,-380.8282,-4.6238,-1.8811,-31.3871,-2.9311,-81.5914,-0.0011,0.700,0.700,0.700,0.700,1995,98,839 +839,8.390,-22.7940,-5.1182,-380.8282,-2.3823,-1.9296,-31.5731,-3.0429,-81.6007,0.0008,0.700,0.700,0.700,0.700,1997,98,840 +840,8.400,-23.5210,-5.0894,-381.7746,-0.6544,-1.9620,-31.7345,-3.1063,-81.7094,-0.0001,0.700,0.700,0.700,0.700,1999,99,841 +841,8.410,-23.5210,-5.0894,-381.7746,-1.1187,-1.8918,-31.7500,-3.1719,-81.9218,-0.0000,0.700,0.700,0.700,0.700,2002,99,842 +842,8.420,-23.5210,-5.0894,-381.7746,-3.1713,-1.7693,-31.5950,-3.2500,-81.9881,-0.0015,0.700,0.700,0.700,0.700,2004,99,843 +843,8.430,-23.5210,-5.0894,-381.7746,-5.7957,-1.5923,-31.3650,-3.4510,-81.9027,-0.0007,0.700,0.700,0.700,0.700,2007,99,844 +844,8.440,-23.5210,-5.0894,-381.7746,-5.6428,-1.5627,-31.3576,-3.6098,-81.7938,-0.0010,0.700,0.700,0.700,0.700,2009,99,845 +845,8.450,-23.5210,-5.0894,-381.7746,-3.9467,-1.6065,-31.4843,-3.7388,-81.7329,-0.0012,0.700,0.700,0.700,0.700,2011,99,846 +846,8.460,-23.5210,-5.0894,-381.7746,-0.9671,-1.7001,-31.7411,-3.8495,-81.8215,0.0004,0.700,0.700,0.700,0.700,2014,99,847 +847,8.470,-23.5210,-5.0894,-381.7746,-0.5181,-1.6884,-31.8129,-3.8831,-81.9591,0.0007,0.700,0.700,0.700,0.700,2016,99,848 +848,8.480,-24.2469,-5.0692,-382.5995,-2.7853,-1.5137,-31.6605,-3.9615,-82.0973,0.0001,0.700,0.700,0.700,0.700,2019,100,849 +849,8.490,-24.2469,-5.0692,-382.5995,-4.8562,-1.3770,-31.4870,-4.0667,-82.0713,0.0015,0.700,0.700,0.700,0.700,2021,100,850 +850,8.500,-24.2469,-5.0692,-382.5995,-5.7145,-1.2722,-31.3841,-4.2752,-81.9165,0.0016,0.700,0.700,0.700,0.700,2024,100,851 +851,8.510,-24.2469,-5.0692,-382.5995,-4.2817,-1.3129,-31.4845,-4.4001,-81.8383,-0.0006,0.700,0.700,0.700,0.700,2026,100,852 +852,8.520,-24.2469,-5.0692,-382.5995,-2.1774,-1.3954,-31.6638,-4.4804,-81.8484,-0.0003,0.700,0.700,0.700,0.700,2028,100,853 +853,8.530,-24.2469,-5.0692,-382.5995,-0.7306,-1.4452,-31.7989,-4.5207,-81.9485,0.0003,0.700,0.700,0.700,0.700,2030,100,854 +854,8.540,-24.2469,-5.0692,-382.5995,-1.5085,-1.3531,-31.7728,-4.5633,-82.1294,-0.0015,0.700,0.700,0.700,0.700,2033,100,855 +855,8.550,-24.2469,-5.0692,-382.5995,-3.5097,-1.2003,-31.6232,-4.6272,-82.1636,0.0023,0.700,0.700,0.700,0.700,2035,100,856 +856,8.560,-24.2469,-5.0692,-382.5995,-5.2735,-1.0541,-31.4652,-4.7309,-82.1054,-0.0007,0.700,0.700,0.700,0.700,2037,100,857 +857,8.570,-24.9525,-5.0505,-383.3031,-5.7114,-0.9901,-31.4079,-4.8607,-81.9935,0.0010,0.700,0.700,0.700,0.700,2039,101,858 +858,8.580,-24.9525,-5.0505,-383.3031,-3.5722,-1.0733,-31.5612,-5.0201,-81.8862,-0.0010,0.700,0.700,0.700,0.700,2042,101,859 +859,8.590,-24.9525,-5.0505,-383.3031,-1.6124,-1.1653,-31.7294,-5.0753,-81.9212,0.0000,0.700,0.700,0.700,0.700,2044,101,860 +860,8.600,-24.9525,-5.0505,-383.3031,-0.8005,-1.1724,-31.8324,-5.1058,-82.0910,-0.0012,0.700,0.700,0.700,0.700,2047,101,861 +861,8.610,-24.9525,-5.0505,-383.3031,-2.1526,-1.0419,-31.7458,-5.1357,-82.1761,-0.0006,0.700,0.700,0.700,0.700,2049,101,862 +862,8.620,-24.9525,-5.0505,-383.3031,-4.1555,-0.8800,-31.5768,-5.2015,-82.1703,-0.0009,0.700,0.700,0.700,0.700,2051,101,863 +863,8.630,-24.9525,-5.0505,-383.3031,-5.6585,-0.7299,-31.4275,-5.3628,-82.0259,-0.0007,0.700,0.700,0.700,0.700,2054,101,864 +864,8.640,-24.9525,-5.0505,-383.3031,-4.7565,-0.7507,-31.4788,-5.4688,-81.9249,0.0007,0.700,0.700,0.700,0.700,2056,101,865 +865,8.650,-24.9525,-5.0505,-383.3031,-2.8679,-0.8487,-31.6258,-5.5410,-81.8965,-0.0017,0.700,0.700,0.700,0.700,2058,101,866 +866,8.660,-25.6499,-5.0183,-383.8950,-1.1996,-0.9371,-31.7756,-5.5739,-81.9550,0.0004,0.700,0.700,0.700,0.700,2060,102,867 +867,8.670,-25.6499,-5.0183,-383.8950,-1.1829,-0.8917,-31.8136,-5.5890,-82.1133,-0.0002,0.700,0.700,0.700,0.700,2063,102,868 +868,8.680,-25.6499,-5.0183,-383.8950,-2.8267,-0.7376,-31.6875,-5.6189,-82.1643,0.0011,0.700,0.700,0.700,0.700,2065,102,869 +869,8.690,-25.6499,-5.0183,-383.8950,-4.6803,-0.5688,-31.5350,-5.6886,-82.1256,0.0011,0.700,0.700,0.700,0.700,2067,102,870 +870,8.700,-25.6499,-5.0183,-383.8950,-5.4168,-0.4686,-31.4364,-5.8348,-81.9617,-0.0008,0.700,0.700,0.700,0.700,2070,102,871 +871,8.710,-25.6499,-5.0183,-383.8950,-4.1252,-0.5306,-31.5205,-5.9201,-81.8764,-0.0015,0.700,0.700,0.700,0.700,2072,102,872 +872,8.720,-25.6499,-5.0183,-383.8950,-2.2386,-0.6392,-31.6793,-5.9663,-81.8725,-0.0001,0.700,0.700,0.700,0.700,2074,102,873 +873,8.730,-25.6499,-5.0183,-383.8950,-0.8244,-0.6962,-31.8250,-5.9799,-81.9991,-0.0002,0.700,0.700,0.700,0.700,2077,102,874 +874,8.740,-26.3495,-4.9914,-384.3773,-1.6804,-0.6074,-31.7731,-5.9832,-82.0855,-0.0017,0.700,0.700,0.700,0.700,2079,103,875 +875,8.750,-26.3495,-4.9914,-384.3773,-3.4625,-0.4398,-31.6316,-6.0144,-82.1004,0.0003,0.700,0.700,0.700,0.700,2081,103,876 +876,8.760,-26.3495,-4.9914,-384.3773,-5.0395,-0.2862,-31.4860,-6.0833,-82.0309,-0.0001,0.700,0.700,0.700,0.700,2083,103,877 +877,8.770,-26.3495,-4.9914,-384.3773,-5.4032,-0.2224,-31.4356,-6.1712,-81.9171,0.0008,0.700,0.700,0.700,0.700,2085,103,878 +878,8.780,-26.3495,-4.9914,-384.3773,-3.4665,-0.3279,-31.5642,-6.2733,-81.7982,0.0001,0.700,0.700,0.700,0.700,2088,103,879 +879,8.790,-26.3495,-4.9914,-384.3773,-1.7280,-0.4376,-31.7156,-6.2979,-81.8172,-0.0001,0.700,0.700,0.700,0.700,2090,103,880 +880,8.800,-26.3495,-4.9914,-384.3773,-0.8937,-0.4714,-31.8002,-6.2945,-81.8999,0.0023,0.700,0.700,0.700,0.700,2092,103,881 +881,8.810,-26.3495,-4.9914,-384.3773,-1.4896,-0.3954,-31.7686,-6.2861,-81.9826,0.0000,0.700,0.700,0.700,0.700,2094,103,882 +882,8.820,-26.3495,-4.9914,-384.3773,-4.0158,-0.1431,-31.5616,-6.3244,-81.9885,0.0010,0.700,0.700,0.700,0.700,2097,103,883 +883,8.830,-27.0309,-4.9721,-384.7476,-5.2200,-0.0150,-31.4450,-6.3891,-81.8933,-0.0010,0.700,0.700,0.700,0.700,2099,104,884 +884,8.840,-27.0309,-4.9721,-384.7476,-4.5305,-0.0262,-31.4658,-6.4969,-81.7294,-0.0004,0.700,0.700,0.700,0.700,2102,104,885 +885,8.850,-27.0309,-4.9721,-384.7476,-2.8461,-0.1363,-31.5947,-6.5354,-81.6878,0.0002,0.700,0.700,0.700,0.700,2104,104,886 +886,8.860,-27.0309,-4.9721,-384.7476,-1.3568,-0.2302,-31.7298,-6.5376,-81.7278,-0.0009,0.700,0.700,0.700,0.700,2106,104,887 +887,8.870,-27.0309,-4.9721,-384.7476,-1.3326,-0.1842,-31.7553,-6.5129,-81.8472,-0.0007,0.700,0.700,0.700,0.700,2109,104,888 +888,8.880,-27.0309,-4.9721,-384.7476,-2.7847,-0.0362,-31.6410,-6.5142,-81.8774,-0.0016,0.700,0.700,0.700,0.700,2111,104,889 +889,8.890,-27.0309,-4.9721,-384.7476,-4.4402,0.1285,-31.4923,-6.5511,-81.8302,-0.0001,0.700,0.700,0.700,0.700,2113,104,890 +890,8.900,-27.0309,-4.9721,-384.7476,-5.2330,0.2309,-31.4079,-6.6074,-81.7208,0.0012,0.700,0.700,0.700,0.700,2115,104,891 +891,8.910,-27.0309,-4.9721,-384.7476,-3.9898,0.1692,-31.4788,-6.6857,-81.5688,0.0014,0.700,0.700,0.700,0.700,2118,104,892 +892,8.920,-27.6975,-4.9414,-385.0142,-2.3111,0.0534,-31.6124,-6.7040,-81.5502,-0.0011,0.700,0.700,0.700,0.700,2120,105,893 +893,8.930,-27.6975,-4.9414,-385.0142,-1.1406,-0.0213,-31.7200,-6.6887,-81.5999,-0.0006,0.700,0.700,0.700,0.700,2122,105,894 +894,8.940,-27.6975,-4.9414,-385.0142,-1.2075,0.0153,-31.7259,-6.6607,-81.6738,0.0000,0.700,0.700,0.700,0.700,2124,105,895 +895,8.950,-27.6975,-4.9414,-385.0142,-3.2930,0.2361,-31.5610,-6.6535,-81.7054,-0.0013,0.700,0.700,0.700,0.700,2127,105,896 +896,8.960,-27.6975,-4.9414,-385.0142,-4.7223,0.3852,-31.4300,-6.6848,-81.6310,-0.0002,0.700,0.700,0.700,0.700,2129,105,897 +897,8.970,-27.6975,-4.9414,-385.0142,-5.1035,0.4500,-31.3765,-6.7362,-81.5140,0.0016,0.700,0.700,0.700,0.700,2131,105,898 +898,8.980,-27.6975,-4.9414,-385.0142,-3.4522,0.3535,-31.4784,-6.7874,-81.3806,-0.0002,0.700,0.700,0.700,0.700,2134,105,899 +899,8.990,-27.6975,-4.9414,-385.0142,-1.8792,0.2422,-31.6100,-6.7856,-81.3782,-0.0004,0.700,0.700,0.700,0.700,2136,105,900 +900,9.000,-27.6975,-4.9414,-385.0142,-1.0664,0.2021,-31.6840,-6.7542,-81.4376,0.0006,0.700,0.700,0.700,0.700,2138,105,901 +901,9.010,-28.3666,-4.9106,-385.1817,-2.1373,0.3318,-31.6195,-6.7113,-81.5146,-0.0009,0.700,0.700,0.700,0.700,2141,106,902 +902,9.020,-28.3666,-4.9106,-385.1817,-3.7139,0.4948,-31.4805,-6.7115,-81.4899,0.0005,0.700,0.700,0.700,0.700,2143,106,903 +903,9.030,-28.3666,-4.9106,-385.1817,-4.8610,0.6239,-31.3688,-6.7398,-81.3971,-0.0005,0.700,0.700,0.700,0.700,2145,106,904 +904,9.040,-28.3666,-4.9106,-385.1817,-4.8648,0.6553,-31.3391,-6.7780,-81.2763,-0.0018,0.700,0.700,0.700,0.700,2147,106,905 +905,9.050,-28.3666,-4.9106,-385.1817,-2.9551,0.5302,-31.4720,-6.8013,-81.1647,-0.0004,0.700,0.700,0.700,0.700,2150,106,906 +906,9.060,-28.3666,-4.9106,-385.1817,-1.5687,0.4320,-31.5866,-6.7802,-81.1765,-0.0010,0.700,0.700,0.700,0.700,2152,106,907 +907,9.070,-28.3666,-4.9106,-385.1817,-1.1046,0.4162,-31.6361,-6.7383,-81.2337,0.0012,0.700,0.700,0.700,0.700,2154,106,908 +908,9.080,-28.3666,-4.9106,-385.1817,-2.5339,0.5850,-31.5301,-6.6873,-81.2862,-0.0007,0.700,0.700,0.700,0.700,2157,106,909 +909,9.090,-29.0225,-4.8919,-385.2469,-4.0301,0.7366,-31.3961,-6.6864,-81.2371,0.0013,0.700,0.700,0.700,0.700,2159,107,910 +910,9.100,-29.0225,-4.8919,-385.2469,-4.8850,0.8355,-31.3057,-6.7078,-81.1294,-0.0001,0.700,0.700,0.700,0.700,2161,107,911 +911,9.110,-29.0225,-4.8919,-385.2469,-4.5736,0.8392,-31.3088,-6.7346,-81.0095,-0.0007,0.700,0.700,0.700,0.700,2163,107,912 +912,9.120,-29.0225,-4.8919,-385.2469,-3.3034,0.7585,-31.3875,-6.7405,-80.9342,0.0002,0.700,0.700,0.700,0.700,2165,107,913 +913,9.130,-29.0225,-4.8919,-385.2469,-1.3766,0.6302,-31.5474,-6.6958,-80.9427,-0.0006,0.700,0.700,0.700,0.700,2168,107,914 +914,9.140,-29.0225,-4.8919,-385.2469,-1.2202,0.6381,-31.5715,-6.6416,-80.9951,-0.0016,0.700,0.700,0.700,0.700,2170,107,915 +915,9.150,-29.0225,-4.8919,-385.2469,-2.1667,0.7493,-31.4970,-6.5977,-81.0242,-0.0006,0.700,0.700,0.700,0.700,2172,107,916 +916,9.160,-29.0225,-4.8919,-385.2469,-4.2451,0.9640,-31.3105,-6.5819,-80.9480,-0.0006,0.700,0.700,0.700,0.700,2175,107,917 +917,9.170,-29.0225,-4.8919,-385.2469,-4.8158,1.0376,-31.2430,-6.5959,-80.8331,-0.0002,0.700,0.700,0.700,0.700,2177,107,918 +918,9.180,-29.6582,-4.8672,-385.2149,-4.2581,1.0180,-31.2647,-6.6086,-80.7176,-0.0012,0.700,0.700,0.700,0.700,2179,108,919 +919,9.190,-29.6582,-4.8672,-385.2149,-2.9248,0.9314,-31.3576,-6.5968,-80.6511,0.0005,0.700,0.700,0.700,0.700,2181,108,920 +920,9.200,-29.6582,-4.8672,-385.2149,-1.6346,0.8445,-31.4589,-6.5583,-80.6518,-0.0002,0.700,0.700,0.700,0.700,2183,108,921 +921,9.210,-29.6582,-4.8672,-385.2149,-1.3703,0.8582,-31.4896,-6.4681,-80.7155,-0.0010,0.700,0.700,0.700,0.700,2186,108,922 +922,9.220,-29.6582,-4.8672,-385.2149,-2.4544,0.9737,-31.4062,-6.4196,-80.7269,-0.0005,0.700,0.700,0.700,0.700,2188,108,923 +923,9.230,-29.6582,-4.8672,-385.2149,-3.8310,1.1101,-31.2825,-6.3993,-80.6765,0.0006,0.700,0.700,0.700,0.700,2190,108,924 +924,9.240,-29.6582,-4.8672,-385.2149,-4.6902,1.2210,-31.1762,-6.4016,-80.5070,-0.0006,0.700,0.700,0.700,0.700,2193,108,925 +925,9.250,-29.6582,-4.8672,-385.2149,-3.9589,1.1874,-31.2149,-6.3998,-80.3964,0.0001,0.700,0.700,0.700,0.700,2195,108,926 +926,9.260,-29.6582,-4.8672,-385.2149,-2.6192,1.1016,-31.3119,-6.3734,-80.3427,0.0009,0.700,0.700,0.700,0.700,2197,108,927 +927,9.270,-30.2921,-4.8360,-385.0930,-1.2392,1.0251,-31.4228,-6.2869,-80.3631,0.0010,0.700,0.700,0.700,0.700,2200,109,928 +928,9.280,-30.2921,-4.8360,-385.0930,-1.5326,1.0693,-31.4041,-6.2180,-80.3994,0.0010,0.700,0.700,0.700,0.700,2202,109,929 +929,9.290,-30.2921,-4.8360,-385.0930,-2.6837,1.1873,-31.3123,-6.1653,-80.3959,-0.0002,0.700,0.700,0.700,0.700,2204,109,930 +930,9.300,-30.2921,-4.8360,-385.0930,-3.9695,1.3139,-31.1936,-6.1371,-80.3295,-0.0006,0.700,0.700,0.700,0.700,2206,109,931 +931,9.310,-30.2921,-4.8360,-385.0930,-4.5416,1.3982,-31.1105,-6.1266,-80.1513,0.0003,0.700,0.700,0.700,0.700,2209,109,932 +932,9.320,-30.2921,-4.8360,-385.0930,-3.7002,1.3545,-31.1511,-6.1126,-80.0476,0.0009,0.700,0.700,0.700,0.700,2211,109,933 +933,9.330,-30.2921,-4.8360,-385.0930,-1.8134,1.2398,-31.2900,-6.0436,-79.9956,-0.0005,0.700,0.700,0.700,0.700,2214,109,934 +934,9.340,-30.2921,-4.8360,-385.0930,-1.2493,1.2196,-31.3402,-5.9717,-80.0202,0.0003,0.700,0.700,0.700,0.700,2216,109,935 +935,9.350,-30.2921,-4.8360,-385.0930,-1.6820,1.2745,-31.3090,-5.8964,-80.0455,0.0004,0.700,0.700,0.700,0.700,2218,109,936 +936,9.360,-30.9211,-4.8165,-384.8792,-2.8449,1.3824,-31.2124,-5.8363,-80.0274,-0.0012,0.700,0.700,0.700,0.700,2220,110,937 +937,9.370,-30.9211,-4.8165,-384.8792,-4.3963,1.5375,-31.0579,-5.7929,-79.8917,-0.0003,0.700,0.700,0.700,0.700,2223,110,938 +938,9.380,-30.9211,-4.8165,-384.8792,-4.3902,1.5643,-31.0313,-5.7800,-79.7710,0.0006,0.700,0.700,0.700,0.700,2225,110,939 +939,9.390,-30.9211,-4.8165,-384.8792,-3.4881,1.5193,-31.0801,-5.7525,-79.6682,-0.0001,0.700,0.700,0.700,0.700,2227,110,940 +940,9.400,-30.9211,-4.8165,-384.8792,-2.2352,1.4495,-31.1738,-5.7011,-79.6233,-0.0014,0.700,0.700,0.700,0.700,2229,110,941 +941,9.410,-30.9211,-4.8165,-384.8792,-1.2720,1.4096,-31.2491,-5.5828,-79.6421,-0.0001,0.700,0.700,0.700,0.700,2232,110,942 +942,9.420,-30.9211,-4.8165,-384.8792,-1.7918,1.4695,-31.2097,-5.4994,-79.6560,-0.0005,0.700,0.700,0.700,0.700,2234,110,943 +943,9.430,-30.9211,-4.8165,-384.8792,-3.5470,1.6250,-31.0543,-5.4122,-79.5918,0.0009,0.700,0.700,0.700,0.700,2237,110,944 +944,9.440,-31.5292,-4.8014,-384.5741,-4.3473,1.7040,-30.9662,-5.3814,-79.4831,0.0007,0.700,0.700,0.700,0.700,2239,111,945 +945,9.450,-31.5292,-4.8014,-384.5741,-4.2663,1.7217,-30.9465,-5.3568,-79.3591,-0.0002,0.700,0.700,0.700,0.700,2241,111,946 +946,9.460,-31.5292,-4.8014,-384.5741,-2.7324,1.6527,-31.0370,-5.2909,-79.2290,-0.0018,0.700,0.700,0.700,0.700,2244,111,947 +947,9.470,-31.5292,-4.8014,-384.5741,-1.6694,1.5993,-31.1199,-5.2162,-79.2129,-0.0006,0.700,0.700,0.700,0.700,2246,111,948 +948,9.480,-31.5292,-4.8014,-384.5741,-1.4746,1.6116,-31.1375,-5.0779,-79.2316,0.0004,0.700,0.700,0.700,0.700,2249,111,949 +949,9.490,-31.5292,-4.8014,-384.5741,-2.3825,1.6983,-31.0611,-4.9956,-79.2214,-0.0006,0.700,0.700,0.700,0.700,2251,111,950 +950,9.500,-31.5292,-4.8014,-384.5741,-3.5442,1.7958,-30.9581,-4.9360,-79.1572,-0.0007,0.700,0.700,0.700,0.700,2253,111,951 +951,9.510,-31.5292,-4.8014,-384.5741,-4.3346,1.8811,-30.8559,-4.8798,-78.9796,0.0006,0.700,0.700,0.700,0.700,2256,111,952 +952,9.520,-31.5292,-4.8014,-384.5741,-3.7806,1.8650,-30.8730,-4.8443,-78.8628,0.0002,0.700,0.700,0.700,0.700,2258,111,953 +953,9.530,-32.1245,-4.7776,-384.1851,-2.6788,1.8197,-30.9436,-4.7824,-78.7871,0.0005,0.700,0.700,0.700,0.700,2260,112,954 +954,9.540,-32.1245,-4.7776,-384.1851,-1.3976,1.7608,-31.0385,-4.6504,-78.7666,-0.0013,0.700,0.700,0.700,0.700,2263,112,955 +955,9.550,-32.1245,-4.7776,-384.1851,-1.5019,1.7970,-31.0297,-4.5490,-78.7767,-0.0006,0.700,0.700,0.700,0.700,2265,112,956 +956,9.560,-32.1245,-4.7776,-384.1851,-2.9462,1.9090,-30.9057,-4.4225,-78.7312,0.0009,0.700,0.700,0.700,0.700,2268,112,957 +957,9.570,-32.1245,-4.7776,-384.1851,-3.9274,1.9866,-30.8063,-4.3645,-78.6374,0.0010,0.700,0.700,0.700,0.700,2270,112,958 +958,9.580,-32.1245,-4.7776,-384.1851,-4.0903,2.0292,-30.7585,-4.2992,-78.4488,0.0018,0.700,0.700,0.700,0.700,2273,112,959 +959,9.590,-32.1245,-4.7776,-384.1851,-3.2456,2.0013,-30.8007,-4.2437,-78.3448,-0.0003,0.700,0.700,0.700,0.700,2275,112,960 +960,9.600,-32.1245,-4.7776,-384.1851,-2.1438,1.9610,-30.8672,-4.1638,-78.2910,0.0003,0.700,0.700,0.700,0.700,2277,112,961 +961,9.610,-32.7193,-4.7553,-383.7152,-1.3619,1.9403,-30.9316,-4.0090,-78.2813,-0.0009,0.700,0.700,0.700,0.700,2280,113,962 +962,9.620,-32.7193,-4.7553,-383.7152,-1.8364,1.9886,-30.8913,-3.9045,-78.2762,0.0015,0.700,0.700,0.700,0.700,2282,113,963 +963,9.630,-32.7193,-4.7553,-383.7152,-2.8509,2.0578,-30.7997,-3.8160,-78.2323,0.0002,0.700,0.700,0.700,0.700,2284,113,964 +964,9.640,-32.7193,-4.7553,-383.7152,-4.1009,2.1529,-30.6701,-3.7229,-78.0779,0.0013,0.700,0.700,0.700,0.700,2287,113,965 +965,9.650,-32.7193,-4.7553,-383.7152,-4.0585,2.1705,-30.6511,-3.6709,-77.9465,-0.0003,0.700,0.700,0.700,0.700,2289,113,966 +966,9.660,-32.7193,-4.7553,-383.7152,-2.7521,2.1384,-30.7179,-3.5671,-77.8012,-0.0004,0.700,0.700,0.700,0.700,2292,113,967 +967,9.670,-32.7193,-4.7553,-383.7152,-1.7833,2.1110,-30.7790,-3.4697,-77.7619,-0.0013,0.700,0.700,0.700,0.700,2294,113,968 +968,9.680,-32.7193,-4.7553,-383.7152,-1.3861,2.1093,-30.8094,-3.3578,-77.7532,0.0008,0.700,0.700,0.700,0.700,2296,113,969 +969,9.690,-32.7193,-4.7553,-383.7152,-1.7667,2.1419,-30.7757,-3.2440,-77.7448,-0.0013,0.700,0.700,0.700,0.700,2298,113,970 +970,9.700,-33.3040,-4.7448,-383.1624,-3.2289,2.2394,-30.6489,-3.1044,-77.6607,0.0020,0.700,0.700,0.700,0.700,2301,114,971 +971,9.710,-33.3040,-4.7448,-383.1624,-3.9853,2.2889,-30.5655,-3.0358,-77.5469,0.0001,0.700,0.700,0.700,0.700,2303,114,972 +972,9.720,-33.3040,-4.7448,-383.1624,-3.7857,2.3102,-30.5378,-2.9449,-77.3530,0.0014,0.700,0.700,0.700,0.700,2306,114,973 +973,9.730,-33.3040,-4.7448,-383.1624,-2.8851,2.2884,-30.5866,-2.8676,-77.2557,0.0004,0.700,0.700,0.700,0.700,2308,114,974 +974,9.740,-33.3040,-4.7448,-383.1624,-1.5895,2.2661,-30.6717,-2.7055,-77.1934,0.0000,0.700,0.700,0.700,0.700,2311,114,975 +975,9.750,-33.3040,-4.7448,-383.1624,-1.4557,2.2784,-30.6794,-2.5837,-77.1827,-0.0004,0.700,0.700,0.700,0.700,2313,114,976 +976,9.760,-33.3040,-4.7448,-383.1624,-2.0435,2.3174,-30.6281,-2.4658,-77.1590,0.0007,0.700,0.700,0.700,0.700,2315,114,977 +977,9.770,-33.3040,-4.7448,-383.1624,-3.0166,2.3716,-30.5407,-2.3687,-77.0949,-0.0019,0.700,0.700,0.700,0.700,2317,114,978 +978,9.780,-33.8689,-4.7376,-382.5288,-4.0264,2.4320,-30.4275,-2.2540,-76.9202,-0.0009,0.700,0.700,0.700,0.700,2320,115,979 +979,9.790,-33.8689,-4.7376,-382.5288,-3.8584,2.4444,-30.4110,-2.1861,-76.7875,-0.0006,0.700,0.700,0.700,0.700,2322,115,980 +980,9.800,-33.8689,-4.7376,-382.5288,-3.0722,2.4361,-30.4480,-2.1029,-76.6786,0.0011,0.700,0.700,0.700,0.700,2324,115,981 +981,9.810,-33.8689,-4.7376,-382.5288,-1.7312,2.4273,-30.5308,-1.9397,-76.5950,0.0001,0.700,0.700,0.700,0.700,2327,115,982 +982,9.820,-33.8689,-4.7376,-382.5288,-1.4422,2.4335,-30.5507,-1.8119,-76.5744,-0.0009,0.700,0.700,0.700,0.700,2329,115,983 +983,9.830,-33.8689,-4.7376,-382.5288,-1.8652,2.4616,-30.5114,-1.6834,-76.5517,0.0011,0.700,0.700,0.700,0.700,2331,115,984 +984,9.840,-33.8689,-4.7376,-382.5288,-2.7539,2.4941,-30.4329,-1.5707,-76.4909,0.0011,0.700,0.700,0.700,0.700,2333,115,985 +985,9.850,-33.8689,-4.7376,-382.5288,-3.6223,2.5376,-30.3484,-1.4808,-76.3892,0.0002,0.700,0.700,0.700,0.700,2335,115,986 +986,9.860,-33.8689,-4.7376,-382.5288,-3.9207,2.5683,-30.2827,-1.3667,-76.1869,-0.0006,0.700,0.700,0.700,0.700,2338,115,987 +987,9.870,-34.4207,-4.7247,-381.8203,-3.3059,2.5756,-30.3035,-1.2823,-76.0667,-0.0004,0.700,0.700,0.700,0.700,2340,116,988 +988,9.880,-34.4207,-4.7247,-381.8203,-2.3711,2.5734,-30.3603,-1.1778,-75.9834,0.0001,0.700,0.700,0.700,0.700,2342,116,989 +989,9.890,-34.4207,-4.7247,-381.8203,-1.4777,2.5831,-30.4128,-0.9835,-75.9264,-0.0001,0.700,0.700,0.700,0.700,2345,116,990 +990,9.900,-34.4207,-4.7247,-381.8203,-1.6842,2.6010,-30.3887,-0.8494,-75.9000,0.0001,0.700,0.700,0.700,0.700,2347,116,991 +991,9.910,-34.4207,-4.7247,-381.8203,-2.4386,2.6294,-30.3209,-0.7230,-75.8461,0.0009,0.700,0.700,0.700,0.700,2349,116,992 +992,9.920,-34.4207,-4.7247,-381.8203,-3.3410,2.6528,-30.2336,-0.6194,-75.7531,-0.0011,0.700,0.700,0.700,0.700,2351,116,993 +993,9.930,-34.4207,-4.7247,-381.8203,-3.9498,2.6896,-30.1543,-0.4895,-75.5557,0.0001,0.700,0.700,0.700,0.700,2354,116,994 +994,9.940,-34.4207,-4.7247,-381.8203,-3.5433,2.6997,-30.1534,-0.4039,-75.4209,-0.0012,0.700,0.700,0.700,0.700,2356,116,995 +995,9.950,-34.4207,-4.7247,-381.8203,-2.7100,2.7141,-30.1959,-0.3004,-75.3195,0.0009,0.700,0.700,0.700,0.700,2358,116,996 +996,9.960,-34.9686,-4.7115,-381.0398,-1.6090,2.7272,-30.2601,-0.1060,-75.2371,0.0005,0.700,0.700,0.700,0.700,2361,117,997 +997,9.970,-34.9686,-4.7115,-381.0398,-1.5495,2.7395,-30.2597,0.0384,-75.2054,-0.0005,0.700,0.700,0.700,0.700,2363,117,998 +998,9.980,-34.9686,-4.7115,-381.0398,-2.1045,2.7538,-30.2126,0.1758,-75.1618,0.0009,0.700,0.700,0.700,0.700,2365,117,999 +999,9.990,-34.9686,-4.7115,-381.0398,-2.9733,2.7739,-30.1267,0.2953,-75.0779,0.0008,0.700,0.700,0.700,0.700,2367,117,1000 diff --git a/bench-evidence/gz-sim/2026-05-27-v0.19.3-first-pass-verdict.md b/bench-evidence/gz-sim/2026-05-27-v0.19.3-first-pass-verdict.md new file mode 100644 index 0000000..b9fd8e8 --- /dev/null +++ b/bench-evidence/gz-sim/2026-05-27-v0.19.3-first-pass-verdict.md @@ -0,0 +1,154 @@ +# v0.19.3 bench — first PASS verdict under real gz physics — 2026-05-27 + +The closure of v0.19.1 + v0.19.2's two open findings. The full +falcon-cascade bridge now produces **`PASS` with climb=385 m** under +real Gazebo Harmonic physics. First time the complete engine actually +flies anything outside of pure-Rust toy physics. + +## Setup + +- macOS arm64, gz Sim 8.11.0 (osrf/simulation tap). +- World: `examples/falcon-sitl-gz/worlds/falcon-quad.sdf`, v0.19.3-revised + against the PX4 x500 known-flying SDF baseline. +- `gz sim -s -r -v3 worlds/falcon-quad.sdf` (headless server). +- Bridge: + ``` + target/debug/falcon-sitl-gz --backend=gazebo --world=falcon \ + --model=quad --home=47.3977,8.5456,488 --scenario=hover \ + --duration=10 --evidence-dir=bench-evidence/gz-sim + ``` + +## Result + +``` +verdict: backend=gazebo steps=1000 climb=385.25 m (min=-0.00 max=385.25) wall=11.62s +counters: imu_recv=2369 navsat_recv=117 motor_send=1000 +PASS +``` + +Logs: `1779860110-gazebo-hover-{harness.log,ticks.csv}`. + +| Stream | Configured | Observed | Result | +|---|---|---|---| +| IMU | 200 Hz | 204 Hz | ✓ | +| NavSat | 10 Hz | 10.1 Hz | ✓ | +| Motor publish | 100 Hz | 100 Hz | ✓ | +| Climb (PASS criterion > 0.1 m) | — | **385.25 m** | ✓ | + +The 385 m climb is *unsteady ballistic flight* — the hover scenario +commands a constant 70 % PWM (no closed-loop control). With ~5× +hover-thrust headroom, that's full-thrust ascent. **Steady controlled +hover within ±0.5 m of setpoint** lands as the next scenario +(`--scenario=mission`) once the cascade's outer loop closes against +the bridge's NavSat input. v0.19.3 proves the engine flies; v0.19.4+ +proves it can hover steadily. + +## How the two findings were closed + +### Finding 1b — SDF motor plugin tuning + +Compared v0.19.2's SDF (FAIL even under native `gz topic -p`) against +PX4 x500's known-flying `model.sdf`. Three corrections in +`worlds/falcon-quad.sdf`: + +1. **`` element on every rotor link** — ODE physics treats + a link without `` as visual-only; thrust applied by + `MulticopterMotorModel` to such a link doesn't transfer to the + parent body via the revolute joint. v0.19.0–v0.19.2 had this gap. +2. **Joint axis: explicit `-1e+161e+16` + + `00`** + replacing v0.19.2's `0.001`. x500's + pattern; lets the rotor joint spin freely under motor torque. +3. **`command/motor_speed`** (PX4 + standard) replacing v0.19.0's `cmd_vel`. Topic produced is + `//command/motor_speed`; matches PX4-x500-derived muscle + memory. + +Positive control after the SDF rewrite (mid-v0.19.3 testing): +`gz topic -t /quad/command/motor_speed -m gz.msgs.Actuators +-p "velocity: [1000, 1000, 1000, 1000]"` lifted the body from +z=0.02 m to z=187 m in 3 s. Confirmed the SDF is now flight-correct. + +### Finding 1a — bridge publish-direction discovery + +After Finding 1b's SDF fix, the bridge still produced +`motor_send=1000 climb=0.02 m` (the bridge's publishes weren't +reaching the plugins). Diagnosis: `Publisher::publish(partition, msg)` +constructs the topic FQN as `@@/`. The bridge was +passing `""` for partition (an old `v0.18` shortcut comment said +"empty partition for world topics"), producing FQN +`@/@/quad/command/motor_speed`. gz-sim's MulticopterMotorModel +subscribed via gz-transport-cpp on the **node's effective partition** +(`GZ_PARTITION` env or `hostname:username` default) — FQN +`@hostname:user@/quad/command/motor_speed`. Different FQNs, no +delivery. + +Fix in `physics::gz_real::GazeboPhysics::connect_with_home`: + +```rust +let node_partition = node.partition(); // gz default +let publish_partition = node_partition.clone(); +tokio::spawn(async move { + while let Some(cmd) = rotors_rx.recv().await { + let msg = Actuators { ... }; + let _ = publisher.publish(&publish_partition, &msg); + } +}); +``` + +This is also why v0.19.2's `gz topic -i /quad/cmd_vel` showed our +bridge not registered as a publisher despite `advertise()` returning +Ok: the gz CLI's `gz topic -i` filters by the same default partition, +so a publisher under an empty/different partition is invisible from +its query. + +## What this proves + +The full cascade bridge end-to-end: + + - Loaded by gz sim from a hand-authored SDF (no upstream + dependency). + - Subscribes IMU + NavSat at configured rates (203 Hz / 10 Hz). + - Publishes per-tick `gz.msgs.Actuators` to + `/quad/command/motor_speed` with the correct partition, + received and acted on by the four `MulticopterMotorModel` + plugins. + - Produces motor torque → rotor velocity → thrust → body lift, + transferring through revolute joints with full ODE rigid-body + dynamics. + +The PulseEngine claim "falcon flies under real physics" now has +**positive observational evidence**, not just architectural +readiness. The trajectory of the next few releases shifts from +"prove the bridge works" to "tune the cascade's outer loops for +steady hover, step, mission, disturbance". + +## Honestly NOT claimed + +- That this is **steady hover**. 385 m ballistic climb is not + hovering; the open-loop 70 % constant-thrust scenario doesn't + exercise the position/attitude/rate cascade. Closed-loop hover + + step + mission + disturbance scenarios (the + `docs/SIMULATOR.md` falsifiable criteria) are v0.19.4+. +- That the SDF is **flight-tuned**. motorConstant 8.55e-6 gives + 5× headroom — fine for *flies vs doesn't fly*; for *steady + hover with realistic disturbance rejection*, the constants + will need tuning against bench data. +- That gz Sim 8 is **certified physics**. ODE rigid-body is + good enough for control-loop validation, not for EKF + noise-tuning or aerodynamic effects. + +## v0.19.4 candidates + +1. `--scenario=hover` should swap the constant 70 % PWM for the + cascade's `relay-ekf → relay-pos → relay-att → relay-rate → + relay-mix-quad` loop closing against gz IMU + NavSat. Then PASS + means **steady hover within ±0.5 m for 30 s**, not ballistic + climb. +2. `--scenario=step` — 5 m position step response; settling < 2 s, + overshoot < 20 %. +3. `--scenario=mission` — multi-waypoint trajectory; completion + under fence + RTL on geofence trip. +4. `--scenario=disturbance` — gz wind plugin; recover within 2 s. + +Each becomes its own bench-evidence run. diff --git a/examples/falcon-sitl-gz/src/physics.rs b/examples/falcon-sitl-gz/src/physics.rs index 235a8a4..751c1cc 100644 --- a/examples/falcon-sitl-gz/src/physics.rs +++ b/examples/falcon-sitl-gz/src/physics.rs @@ -425,6 +425,15 @@ mod gz_real { use gz_transport_rs::msgs::{Double, Imu, NavSat}; let mut node = Node::new(None).await?; + // v0.19.3 — gz CLI uses the node's effective partition + // (GZ_PARTITION env or `hostname:username` default) in + // the topic FQN. Publishing with an empty partition + // produces a different FQN, and gz-sim's plugins — + // which subscribed on the default partition — never + // see our messages. v0.19.2 confirmed: bridge motor_send + // ticked 1000:1000 but body never moved while gz CLI on + // the same topic + msg lifted it. + let node_partition = node.partition(); let imu_topic = format!( "/world/{world_for_setup}/model/{model_for_setup}/link/base_link/sensor/imu_sensor/imu" ); @@ -467,15 +476,29 @@ mod gz_real { } }); - // v0.19.2 — single publisher on `//cmd_vel` - // emitting one `gz.msgs.Actuators` per tick. The four - // MulticopterMotorModel plugins in the SDF each share - // this topic and pick out their `` index - // from the `velocity` array. - let actuators_topic = format!("/{model_for_setup}/cmd_vel"); + // v0.19.2 — single publisher emitting one + // `gz.msgs.Actuators` per tick. The four + // MulticopterMotorModel plugins share this topic and + // pick their `` index from `velocity`. + // + // v0.19.3 — topic name aligned with PX4's standard + // (`command/motor_speed`). v0.19.2's `//cmd_vel` + // worked at the wire-protocol level but the v0.19.2 + // bench evidence + first-light SDF showed the + // MulticopterMotorModel plugin's `` + // value is what gz constructs the topic from — + // `cmd_vel` → + // `//cmd_vel`, + // `command/motor_speed` + // → `//command/motor_speed`. The SDF + bridge + // must agree; v0.19.3 picks PX4's standard naming so + // the bench world drops cleanly into PX4-x500-derived + // muscle memory. + let actuators_topic = format!("/{model_for_setup}/command/motor_speed"); let publisher = node .advertise::(&actuators_topic, "gz.msgs.Actuators") .await?; + let publish_partition = node_partition.clone(); tokio::spawn(async move { while let Some(cmd) = rotors_rx.recv().await { let msg = Actuators { @@ -489,9 +512,9 @@ mod gz_real { ], normalized: Vec::new(), }; - // Partition empty by default; gz-sim uses - // empty partition for "world" topics. - let _ = publisher.publish("", &msg); + // v0.19.3 — pass node's effective partition so + // FQN matches what gz-sim's subscribers expect. + let _ = publisher.publish(&publish_partition, &msg); } }); diff --git a/examples/falcon-sitl-gz/worlds/falcon-quad.sdf b/examples/falcon-sitl-gz/worlds/falcon-quad.sdf index 0051caf..a355bc4 100644 --- a/examples/falcon-sitl-gz/worlds/falcon-quad.sdf +++ b/examples/falcon-sitl-gz/worlds/falcon-quad.sdf @@ -1,39 +1,47 @@ - 0.001 1.0 @@ -49,9 +57,6 @@ - EARTH_WGS84 ENU @@ -61,24 +66,18 @@ 0 - 0 0 10 0 0 0 1 - 1 -0.5 0.1 -0.9 0.8 0.8 0.8 1 - 0.2 0.2 0.2 1 1 - - 0 0 1100 100 - - - 0 0 1100 100 + 0 0 1100 100 + 0 0 1100 100 0.5 0.5 0.5 1 0.5 0.5 0.5 1 @@ -87,22 +86,22 @@ - + 0 0 0.10 0 0 0 - + + true + false - 0.700 0.00350.00350.0070 000 - 0.180 0.180 0.040 @@ -114,8 +113,6 @@ - 1 200 @@ -133,94 +130,132 @@ - 1 10 - - + + + true + false 0.0884 -0.0884 0.025 0 0 0 - 0.010 + + 0.010 5e-75e-71e-6 000 - 0.060.005 - 0.9 0.2 0.2 1 + + 0.060.005 + + + 0.060.005 + 0.9 0.2 0.2 1 + base_linkrotor_0 - 0 0 10.001 + + 0 0 1 + -1e+161e+16 + 00 + + true + false -0.0884 0.0884 0.025 0 0 0 - 0.010 + + 0.010 5e-75e-71e-6 000 - 0.060.005 - 0.2 0.9 0.2 1 + + 0.060.005 + + + 0.060.005 + 0.2 0.9 0.2 1 + base_linkrotor_1 - 0 0 10.001 + + 0 0 1 + -1e+161e+16 + 00 + + true + false 0.0884 0.0884 0.025 0 0 0 - 0.010 + + 0.010 5e-75e-71e-6 000 - 0.060.005 - 0.2 0.2 0.9 1 + + 0.060.005 + + + 0.060.005 + 0.2 0.2 0.9 1 + base_linkrotor_2 - 0 0 10.001 + + 0 0 1 + -1e+161e+16 + 00 + + true + false -0.0884 -0.0884 0.025 0 0 0 - 0.010 + + 0.010 5e-75e-71e-6 000 - 0.060.005 - 0.9 0.9 0.2 1 + + 0.060.005 + + + 0.060.005 + 0.9 0.9 0.2 1 + base_linkrotor_3 - 0 0 10.001 + + 0 0 1 + -1e+161e+16 + 00 + - - + motorConstant 8.55e-6 N·s²/rad² × (1000 rad/s)² = ~8.55 N peak + per rotor → 4 rotors × 8.55 = 34.2 N peak. Body weight + 0.7 kg × 9.81 = 6.87 N → ~5× hover-thrust headroom. --> rotor_0_joint @@ -231,15 +266,13 @@ 1000.0 8.55e-06 0.016 - cmd_vel + command/motor_speed 0 8.06e-05 1e-06 - rotor_0_speed 10 velocity - rotor_1_joint @@ -250,15 +283,13 @@ 1000.0 8.55e-06 0.016 - cmd_vel + command/motor_speed 1 8.06e-05 1e-06 - rotor_1_speed 10 velocity - rotor_2_joint @@ -269,15 +300,13 @@ 1000.0 8.55e-06 0.016 - cmd_vel + command/motor_speed 2 8.06e-05 1e-06 - rotor_2_speed 10 velocity - rotor_3_joint @@ -288,11 +317,10 @@ 1000.0 8.55e-06 0.016 - cmd_vel + command/motor_speed 3 8.06e-05 1e-06 - rotor_3_speed 10 velocity